From b183354cdb078ff8e20d855dd7c6ba5dc0c01942 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 15 May 2023 14:34:55 -0700 Subject: [PATCH 001/217] Stub new geothermal loop classes in hpxml resource file. --- HPXMLtoOpenStudio/resources/hpxml.rb | 66 +++++++++++++++++++++++++++- 1 file changed, 64 insertions(+), 2 deletions(-) diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 3a32443300..76edb750b4 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -52,7 +52,7 @@ class HPXML < Object :climate_and_risk_zones, :air_infiltration, :air_infiltration_measurements, :attics, :foundations, :roofs, :rim_joists, :walls, :foundation_walls, :floors, :slabs, :windows, :skylights, :doors, :partition_wall_mass, :furniture_mass, :heating_systems, - :cooling_systems, :heat_pumps, :hvac_plant, :hvac_controls, :hvac_distributions, + :cooling_systems, :heat_pumps, :geothermal_loops, :hvac_plant, :hvac_controls, :hvac_distributions, :ventilation_fans, :water_heating_systems, :hot_water_distributions, :water_fixtures, :water_heating, :solar_thermal_systems, :pv_systems, :inverters, :generators, :batteries, :clothes_washers, :clothes_dryers, :dishwashers, :refrigerators, @@ -734,6 +734,7 @@ def to_oga() @heating_systems.to_oga(@doc) @cooling_systems.to_oga(@doc) @heat_pumps.to_oga(@doc) + @geothermal_loops.to_oga(@doc) @hvac_plant.to_oga(@doc) @hvac_controls.to_oga(@doc) @hvac_distributions.to_oga(@doc) @@ -790,6 +791,7 @@ def from_oga(hpxml) @heating_systems = HeatingSystems.new(self, hpxml) @cooling_systems = CoolingSystems.new(self, hpxml) @heat_pumps = HeatPumps.new(self, hpxml) + @geothermal_loops = GeothermalLoops.new(self, hpxml) @hvac_plant = HVACPlant.new(self, hpxml) @hvac_controls = HVACControls.new(self, hpxml) @hvac_distributions = HVACDistributions.new(self, hpxml) @@ -3970,6 +3972,49 @@ def from_oga(cooling_system) end end + class GeothermalLoops < BaseArrayElement + def add(**kwargs) + self << GeothermalLoop.new(@hpxml_object, **kwargs) + end + + def from_oga(hpxml) + return if hpxml.nil? + + XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop').each do |geothermal_loop| + self << HeatPump.new(@hpxml_object, geothermal_loop) + end + end + end + + class GeothermalLoop < BaseElement + ATTRS = [:id] + attr_accessor(*ATTRS) + + def delete + @hpxml_object.geothermal_loops.delete(self) + end + + def check_for_errors + errors = [] + return errors + end + + def to_oga(doc) + return if nil? + + hvac_plant = XMLHelper.create_elements_as_needed(doc, ['HPXML', 'Building', 'BuildingDetails', 'Systems', 'HVAC', 'HVACPlant']) + geothermal_loop = XMLHelper.add_element(hvac_plant, 'GeothermalLoop') + sys_id = XMLHelper.add_element(geothermal_loop, 'SystemIdentifier') + XMLHelper.add_attribute(sys_id, 'id', @id) + end + + def from_oga(geothermal_loop) + return if geothermal_loop.nil? + + @id = HPXML::get_id(geothermal_loop) + end + end + class HeatPumps < BaseArrayElement def add(**kwargs) self << HeatPump.new(@hpxml_object, **kwargs) @@ -4003,9 +4048,21 @@ class HeatPump < BaseElement :pump_watts_per_ton, :fan_watts_per_cfm, :is_shared_system, :number_of_units_served, :shared_loop_watts, :shared_loop_motor_efficiency, :airflow_defect_ratio, :charge_defect_ratio, :heating_airflow_cfm, :cooling_airflow_cfm, :location, :primary_heating_system, :primary_cooling_system, - :heating_capacity_retention_fraction, :heating_capacity_retention_temp] + :heating_capacity_retention_fraction, :heating_capacity_retention_temp, + :geothermal_loop_idref] attr_accessor(*ATTRS) + def geothermal_loop + return if @geothermal_loop_idref.nil? + + @hpxml.geothermal_loops.each do |geothermal_loop| + next unless geothermal_loop.id == @geothermal_loop_idref + + return geothermal_loop + end + fail "Attached geothermal loop '#{@geothermal_loop_idref}' not found for heat pump '#{@id}'." + end + def distribution_system return if @distribution_system_idref.nil? @@ -4140,6 +4197,10 @@ def to_oga(doc) XMLHelper.add_element(annual_efficiency, 'Units', UnitsCOP, :string) XMLHelper.add_element(annual_efficiency, 'Value', @heating_efficiency_cop, :float, @heating_efficiency_cop_isdefaulted) end + if not @geothermal_loop_idref.nil? + attached_to_geothermal_loop = XMLHelper.add_element(heat_pump, 'AttachedToGeothermalLoop') + XMLHelper.add_attribute(attached_to_geothermal_loop, 'idref', @geothermal_loop_idref) + end XMLHelper.add_extension(heat_pump, 'AirflowDefectRatio', @airflow_defect_ratio, :float, @airflow_defect_ratio_isdefaulted) unless @airflow_defect_ratio.nil? XMLHelper.add_extension(heat_pump, 'ChargeDefectRatio', @charge_defect_ratio, :float, @charge_defect_ratio_isdefaulted) unless @charge_defect_ratio.nil? XMLHelper.add_extension(heat_pump, 'FanPowerWattsPerCFM', @fan_watts_per_cfm, :float, @fan_watts_per_cfm_isdefaulted) unless @fan_watts_per_cfm.nil? @@ -4200,6 +4261,7 @@ def from_oga(heat_pump) @heating_efficiency_hspf = XMLHelper.get_value(heat_pump, "AnnualHeatingEfficiency[Units='#{UnitsHSPF}']/Value", :float) @heating_efficiency_hspf2 = XMLHelper.get_value(heat_pump, "AnnualHeatingEfficiency[Units='#{UnitsHSPF2}']/Value", :float) @heating_efficiency_cop = XMLHelper.get_value(heat_pump, "AnnualHeatingEfficiency[Units='#{UnitsCOP}']/Value", :float) + @geothermal_loop_idref = HPXML::get_idref(XMLHelper.get_element(heat_pump, 'AttachedToGeothermalLoop')) @airflow_defect_ratio = XMLHelper.get_value(heat_pump, 'extension/AirflowDefectRatio', :float) @charge_defect_ratio = XMLHelper.get_value(heat_pump, 'extension/ChargeDefectRatio', :float) @fan_watts_per_cfm = XMLHelper.get_value(heat_pump, 'extension/FanPowerWattsPerCFM', :float) From 5ce9ecb46329d81ed1a125d0de96b3fb7487733e Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 15 May 2023 14:35:25 -0700 Subject: [PATCH 002/217] Update epvalidator for the new geothermal loop fields. --- HPXMLtoOpenStudio/measure.xml | 28 +++++++++---------- .../hpxml_schematron/EPvalidator.xml | 8 ++++++ 2 files changed, 22 insertions(+), 14 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index b2e6da698d..384685ecb2 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - ab456464-1e07-4beb-9f4a-20152e4ea25f - 20230515T151948Z + c1d26b94-6cce-48a7-a93c-65567b6ae37c + 20230515T213339Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -540,18 +540,6 @@ test E1E09B3C - - hpxml_schematron/EPvalidator.xml - xml - resource - 4716FCEF - - - hpxml.rb - rb - resource - 678DC986 - hvac.rb rb @@ -582,5 +570,17 @@ test D6D366C0 + + hpxml_schematron/EPvalidator.xml + xml + resource + 9322302B + + + hpxml.rb + rb + resource + 9107D5DE + diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 87dcec0ac9..50935d2ffb 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -242,6 +242,7 @@ Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/HeatingSystem Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/CoolingSystem Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/HeatPump + Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/GeothermalLoop Expected 0 or 1 element(s) for xpath: Systems/HVAC/HVACControl Expected 0 or more element(s) for xpath: Systems/HVAC/HVACDistribution Expected 0 or more element(s) for xpath: Systems/MechanicalVentilation/VentilationFans/VentilationFan @@ -1193,6 +1194,7 @@ Expected 1 element(s) for xpath: ../../../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] Expected 1 element(s) for xpath: NumberofUnitsServed Expected NumberofUnitsServed to be greater than 1 + Expected 1 element(s) for xpath: AttachedToGeothermalLoop Expected 1 element(s) for xpath: extension/SharedLoopWatts Expected extension/SharedLoopWatts to be greater than or equal to 0 @@ -1275,6 +1277,12 @@ + + [GeothermalLoop] + + + + [AirflowDefectRatio] From 4e93fb13b19df00f2dfcce837d76c9707c5e8e1c Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 15 May 2023 14:35:58 -0700 Subject: [PATCH 003/217] Demonstrate new geothermal loop fields in existing shared ground loop sample file. --- tasks.rb | 4 +++- ...multifamily-shared-ground-loop-ground-to-air-heat-pump.xml | 4 ++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/tasks.rb b/tasks.rb index 8f93be7fed..2f40fe3dab 100644 --- a/tasks.rb +++ b/tasks.rb @@ -1295,6 +1295,7 @@ def apply_hpxml_modification(hpxml_file, hpxml) hpxml.cooling_systems.reverse_each do |cooling_system| cooling_system.delete end + hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}") hpxml.heat_pumps.add(id: "HeatPump#{hpxml.heat_pumps.size + 1}", distribution_system_idref: hpxml.hvac_distributions[-1].id, heat_pump_type: HPXML::HVACTypeHeatPumpGroundToAir, @@ -1314,7 +1315,8 @@ def apply_hpxml_modification(hpxml_file, hpxml) cooling_shr: 0.73, primary_heating_system: true, primary_cooling_system: true, - pump_watts_per_ton: 0.0) + pump_watts_per_ton: 0.0, + geothermal_loop_idref: hpxml.geothermal_loops[-1].id) end if hpxml_file.include? 'eae' diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml index ea602a02b7..d1843d42b5 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml @@ -254,11 +254,15 @@ COP 3.6 + 0.0 600.0 + + + From ab6bd542431aa855eba905c87659322a0133dbdc Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 15 May 2023 15:04:08 -0700 Subject: [PATCH 004/217] Typo. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/hpxml.rb | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 384685ecb2..05d0cc4699 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - c1d26b94-6cce-48a7-a93c-65567b6ae37c - 20230515T213339Z + 0adb62af-272f-49be-b529-7a10e9a4596f + 20230515T220350Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -580,7 +580,7 @@ hpxml.rb rb resource - 9107D5DE + 01BB1709 diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 76edb750b4..05483007ed 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -3981,7 +3981,7 @@ def from_oga(hpxml) return if hpxml.nil? XMLHelper.get_elements(hpxml, 'Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop').each do |geothermal_loop| - self << HeatPump.new(@hpxml_object, geothermal_loop) + self << GeothermalLoop.new(@hpxml_object, geothermal_loop) end end end From 8276e7e2d605ec51df999bd5cd5e012bb265da56 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 15 May 2023 15:43:05 -0700 Subject: [PATCH 005/217] Demonstrate loop properties defaulted in resource file. --- HPXMLtoOpenStudio/measure.xml | 42 +++++++++---------- HPXMLtoOpenStudio/resources/hpxml.rb | 9 +++- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 9 ++++ .../hpxml_schematron/EPvalidator.xml | 1 + HPXMLtoOpenStudio/resources/hvac.rb | 3 +- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 8 ++-- 6 files changed, 44 insertions(+), 28 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 05d0cc4699..b24d10ca1b 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 0adb62af-272f-49be-b529-7a10e9a4596f - 20230515T220350Z + aeb08e5c-4ab8-4ee4-b64f-ca032a1e0ce9 + 20230515T224117Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -499,12 +499,6 @@ resource E0A455E1 - - hvac_sizing.rb - rb - resource - 9C7DC22E - OpenStudio @@ -541,46 +535,52 @@ E1E09B3C - hvac.rb + test_defaults.rb + rb + test + AEAA87D4 + + + geometry.rb rb resource - F97C75BD + A7C12876 - test_defaults.rb + test_hvac_sizing.rb rb test - AEAA87D4 + D6D366C0 - hpxml_defaults.rb + hvac_sizing.rb rb resource - 07649DDA + 3A05D86A - geometry.rb + hvac.rb rb resource - A7C12876 + 4A298D8D - test_hvac_sizing.rb + hpxml_defaults.rb rb - test - D6D366C0 + resource + 2AB19652 hpxml_schematron/EPvalidator.xml xml resource - 9322302B + A9CA0110 hpxml.rb rb resource - 01BB1709 + 5C21FDB4 diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 05483007ed..b9433e0fd2 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -3987,7 +3987,7 @@ def from_oga(hpxml) end class GeothermalLoop < BaseElement - ATTRS = [:id] + ATTRS = [:id, :pipe_cond] attr_accessor(*ATTRS) def delete @@ -4006,12 +4006,17 @@ def to_oga(doc) geothermal_loop = XMLHelper.add_element(hvac_plant, 'GeothermalLoop') sys_id = XMLHelper.add_element(geothermal_loop, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) + if not @pipe_cond.nil? + pipe = XMLHelper.add_element(geothermal_loop, 'Pipe') + XMLHelper.add_element(pipe, 'Conductivity', @pipe_cond, :float, @pipe_cond_isdefaulted) unless @pipe_cond.nil? + end end def from_oga(geothermal_loop) return if geothermal_loop.nil? @id = HPXML::get_id(geothermal_loop) + @pipe_cond = XMLHelper.get_value(geothermal_loop, 'Pipe/Conductivity', :float) end end @@ -4055,7 +4060,7 @@ class HeatPump < BaseElement def geothermal_loop return if @geothermal_loop_idref.nil? - @hpxml.geothermal_loops.each do |geothermal_loop| + @hpxml_object.geothermal_loops.each do |geothermal_loop| next unless geothermal_loop.id == @geothermal_loop_idref return geothermal_loop diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index d185f80b49..dbbd08da18 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1486,6 +1486,15 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) HVAC.set_gshp_assumptions(heat_pump, weather) HVAC.set_curves_gshp(heat_pump) + if heat_pump.geothermal_loop.nil? + hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}") + heat_pump.geothermal_loop_idref = hpxml.geothermal_loops[-1].id + end + + if heat_pump.geothermal_loop.pipe_cond.nil? + heat_pump.geothermal_loop.pipe_cond = 0.23 # Btu/h-ft-R; Pipe thermal conductivity, default to high density polyethylene + heat_pump.geothermal_loop.pipe_cond_isdefaulted = true + end elsif [HPXML::HVACTypeHeatPumpWaterLoopToAir].include? heat_pump.heat_pump_type HVAC.set_heat_pump_temperatures(heat_pump, runner) diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 50935d2ffb..bc31b810c6 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1280,6 +1280,7 @@ [GeothermalLoop] + Expected 0 or 1 element(s) for xpath: Pipe/Conductivity diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index 4e3f73f1fd..1094f0ea87 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -278,7 +278,7 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, ground_heat_exch_vert.setGroundThermalHeatCapacity(UnitConversions.convert(ground_conductivity / hp_ap.ground_diffusivity, 'Btu/(ft^3*F)', 'J/(m^3*K)')) ground_heat_exch_vert.setGroundTemperature(UnitConversions.convert(weather.data.AnnualAvgDrybulb, 'F', 'C')) ground_heat_exch_vert.setGroutThermalConductivity(UnitConversions.convert(hp_ap.grout_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) - ground_heat_exch_vert.setPipeThermalConductivity(UnitConversions.convert(hp_ap.pipe_cond, 'Btu/(hr*ft*R)', 'W/(m*K)')) + ground_heat_exch_vert.setPipeThermalConductivity(UnitConversions.convert(heat_pump.geothermal_loop.pipe_cond, 'Btu/(hr*ft*R)', 'W/(m*K)')) ground_heat_exch_vert.setPipeOutDiameter(UnitConversions.convert(hp_ap.pipe_od, 'in', 'm')) ground_heat_exch_vert.setUTubeDistance(UnitConversions.convert(hp_ap.shank_spacing, 'in', 'm')) ground_heat_exch_vert.setPipeThickness(UnitConversions.convert((hp_ap.pipe_od - hp_ap.pipe_id) / 2.0, 'in', 'm')) @@ -3396,7 +3396,6 @@ def self.set_gshp_assumptions(heat_pump, weather) hp_ap.pipe_od = 1.660 # in hp_ap.pipe_id = 1.358 # in end - hp_ap.pipe_cond = 0.23 # Btu/h-ft-R; Pipe thermal conductivity, default to high density polyethylene hp_ap.u_tube_spacing_type = 'b' # Calculate distance between pipes if hp_ap.u_tube_spacing_type == 'as' diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index c25be3ad2f..6da95325d4 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1886,7 +1886,7 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) # Autosize ground loop heat exchanger length bore_spacing = 20.0 # ft, distance between bores - pipe_r_value = gshp_hx_pipe_rvalue(hvac_cooling_ap) + pipe_r_value = gshp_hx_pipe_rvalue(hvac_cooling) nom_length_heat, nom_length_cool = gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, pipe_r_value) bore_length_heat = nom_length_heat * hvac_sizing_values.Heat_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') @@ -2653,9 +2653,11 @@ def self.gshp_coil_bf_ft_spec return [1.21005458, -0.00664200, 0.00000000, 0.00348246, 0.00000000, 0.00000000] end - def self.gshp_hx_pipe_rvalue(hvac_cooling_ap) + def self.gshp_hx_pipe_rvalue(hvac_cooling) + hvac_cooling_ap = hvac_cooling.additional_properties + # Thermal Resistance of Pipe - return Math.log(hvac_cooling_ap.pipe_od / hvac_cooling_ap.pipe_id) / 2.0 / Math::PI / hvac_cooling_ap.pipe_cond + return Math.log(hvac_cooling_ap.pipe_od / hvac_cooling_ap.pipe_id) / 2.0 / Math::PI / hvac_cooling.geothermal_loop.pipe_cond end def self.gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, pipe_r_value) From 8784ec639cde1164808408c65fb41dc22ae442a2 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 18 May 2023 14:21:56 -0700 Subject: [PATCH 006/217] Move ground conductivity over to new soil element. --- .../resources/hpxml_schematron/EPvalidator.xml | 11 +++++++++-- docs/source/workflow_inputs.rst | 13 +++++++++++-- .../sample_files/base-misc-ground-conductivity.xml | 6 +++--- 3 files changed, 23 insertions(+), 7 deletions(-) diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 1cc6fec3b7..8b3e8a5ea0 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -298,12 +298,19 @@ Expected 0 or 1 element(s) for xpath: SiteType Expected 0 or 1 element(s) for xpath: ShieldingofHome - Expected 0 or 1 element(s) for xpath: extension/GroundConductivity - Expected extension/GroundConductivity to be greater than 0 + Expected 0 or 1 element(s) for xpath: Soil Expected 0 or 1 element(s) for xpath: extension/Neighbors + + [Soil] + + Expected 0 or 1 element(s) for xpath: Conductivity + Expected Conductivity to be greater than 0 + + + [Neighbors] diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index d0e7d3263d..e7c1e95ad2 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -537,13 +537,22 @@ Site information is entered in ``/HPXML/Building/BuildingDetails/BuildingSummary ================================ ======== =========== =========== ======== ======== ============================================================ ``SiteType`` string See [#]_ No suburban Terrain type for infiltration model ``ShieldingofHome`` string See [#]_ No normal Presence of nearby buildings, trees, obstructions for infiltration model - ``extension/GroundConductivity`` double Btu/hr-ft-F > 0 No 1.0 Thermal conductivity of the ground soil [#]_ + ``Soil`` element 0 - 1 No Soil properties ``extension/Neighbors`` element >= 0 No Presence of neighboring buildings for solar shading ================================ ======== =========== =========== ======== ======== ============================================================ .. [#] SiteType choices are "rural", "suburban", or "urban". .. [#] ShieldingofHome choices are "normal", "exposed", or "well-shielded". - .. [#] GroundConductivity used for foundation heat transfer and ground source heat pumps. + +Soil information is entered in ``Soil``. + + ================================ ======== =========== =========== ======== ======== ============================================================ + Element Type Units Constraints Required Default Notes + ================================ ======== =========== =========== ======== ======== ============================================================ + ``Conductivity`` double Btu/hr-ft-F > 0 No 1.0 Thermal conductivity of the ground soil [#]_ + ================================ ======== =========== =========== ======== ======== ============================================================ + + .. [#] Conductivity used for foundation heat transfer and ground source heat pumps. For each neighboring building defined, additional information is entered in a ``extension/Neighbors/NeighborBuilding``. diff --git a/workflow/sample_files/base-misc-ground-conductivity.xml b/workflow/sample_files/base-misc-ground-conductivity.xml index 63eac1cbe8..b83e30e406 100644 --- a/workflow/sample_files/base-misc-ground-conductivity.xml +++ b/workflow/sample_files/base-misc-ground-conductivity.xml @@ -40,9 +40,9 @@ electricity natural gas - - 0.8 - + + 0.8 + single-family detached From adf6584519508c84ea99272195ef730852ce87b8 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 18 May 2023 15:59:22 -0700 Subject: [PATCH 007/217] Minor fixes to epvalidator. --- HPXMLtoOpenStudio/measure.xml | 24 +++++++++---------- .../hpxml_schematron/EPvalidator.xml | 6 ++--- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index c82a42703e..54f8e1759e 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 72ea7c49-dc1a-4c45-938d-4d7180dbf4f9 - 20230518T205224Z + bfdc1187-9269-4ec9-a715-a7b59307f5f4 + 20230518T225902Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -559,28 +559,28 @@ 3A05D86A - hpxml.rb + hvac.rb rb resource - 9C72A39E + BD583A4C - hpxml_schematron/EPvalidator.xml - xml + hpxml_defaults.rb + rb resource - FF60A534 + B1083836 - hvac.rb + hpxml.rb rb resource - BD583A4C + 64945CEA - hpxml_defaults.rb - rb + hpxml_schematron/EPvalidator.xml + xml resource - B1083836 + 589B89C8 diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 8b3e8a5ea0..7303ddc397 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -298,7 +298,7 @@ Expected 0 or 1 element(s) for xpath: SiteType Expected 0 or 1 element(s) for xpath: ShieldingofHome - Expected 0 or 1 element(s) for xpath: Soil + Expected 0 or 1 element(s) for xpath: Soil Expected 0 or 1 element(s) for xpath: extension/Neighbors @@ -306,8 +306,8 @@ [Soil] - Expected 0 or 1 element(s) for xpath: Conductivity - Expected Conductivity to be greater than 0 + Expected 1 element(s) for xpath: Conductivity + Expected Conductivity to be greater than 0 From 9aa87785a77e64a370bd14b24e528cbced21d14d Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 18 May 2023 16:55:07 -0700 Subject: [PATCH 008/217] Update ground conductivity is zero validation test. --- HPXMLtoOpenStudio/measure.xml | 16 ++++++++-------- HPXMLtoOpenStudio/tests/test_validation.rb | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 54f8e1759e..58137c5ca9 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - bfdc1187-9269-4ec9-a715-a7b59307f5f4 - 20230518T225902Z + df6725bf-bef9-417c-aac3-4f53bcdbdfa7 + 20230518T235438Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -546,12 +546,6 @@ resource 8B587D3F - - test_validation.rb - rb - test - 84F9B6C3 - hvac_sizing.rb rb @@ -582,5 +576,11 @@ resource 589B89C8 + + test_validation.rb + rb + test + 9A8CB3A9 + diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index c2b15560d0..92f020f4fc 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -137,7 +137,7 @@ def test_schema_schematron_error_messages 'invalid-foundation-wall-properties' => ['Expected DepthBelowGrade to be less than or equal to Height [context: /HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall, id: "FoundationWall1"]', 'Expected DistanceToBottomOfInsulation to be greater than or equal to DistanceToTopOfInsulation [context: /HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall/Insulation/Layer[InstallationType="continuous - exterior" or InstallationType="continuous - interior"], id: "FoundationWall1Insulation"]', 'Expected DistanceToBottomOfInsulation to be less than or equal to ../../Height [context: /HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall/Insulation/Layer[InstallationType="continuous - exterior" or InstallationType="continuous - interior"], id: "FoundationWall1Insulation"]'], - 'invalid-ground-conductivity' => ['Expected extension/GroundConductivity to be greater than 0'], + 'invalid-ground-conductivity' => ['Expected Conductivity to be greater than 0'], 'invalid-heat-pump-capacity-retention' => ['Expected Fraction to be less than 1', 'Expected Temperature to be less than or equal to 17'], 'invalid-heat-pump-capacity-retention2' => ['Expected Fraction to be greater than or equal to 0'], From 0c460bea2df6992167f17e18a1c1c9cf0a05f180 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 25 May 2023 16:37:27 -0700 Subject: [PATCH 009/217] Add some geothermal loop args to build measure. --- BuildResidentialHPXML/measure.rb | 65 +++++++++++++++++++++++++++ BuildResidentialHPXML/measure.xml | 73 +++++++++++++++++++++++++------ 2 files changed, 124 insertions(+), 14 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 41db0b187d..0aec54085f 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1349,6 +1349,36 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setUnits('W') args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_loop_flow', false) + arg.setDisplayName('Geothermal Loop: Loop Flow') + arg.setDescription("Water flow rate through the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default is used.") + arg.setUnits('gpm') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('geothermal_loop_boreholes_or_trenches_count', false) + arg.setDisplayName('Geothermal Loop: Boreholes or Trenches Count') + arg.setDescription("Number of boreholes or trenches. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default is used.") + arg.setUnits('#') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_boreholes_or_trenches_length', false) + arg.setDisplayName('Geothermal Loop: Boreholes or Trenches Length') + arg.setDescription("Length of each borehole (vertical) or trench (horizontal). Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default is used.") + arg.setUnits('ft') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_boreholes_or_trenches_spacing', false) + arg.setDisplayName('Geothermal Loop: Boreholes or Trenches Spacing') + arg.setDescription("Distance between bores/trenches. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") + arg.setUnits('ft') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_pipe_conductivity', false) + arg.setDisplayName('Geothermal Loop: Boreholes or Trenches Conductivity') + arg.setDescription("Pipe conductivity of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") + arg.setUnits('Btu/hr-ft-F') + args << arg + heating_system_2_type_choices = OpenStudio::StringVector.new heating_system_2_type_choices << 'none' heating_system_2_type_choices << HPXML::HVACTypeFurnace @@ -3393,6 +3423,7 @@ def self.create(runner, model, args, epw_path, hpxml_path) set_heating_systems(hpxml, args) set_cooling_systems(hpxml, args) set_heat_pumps(hpxml, args) + set_geothermal_loop(hpxml, args) set_secondary_heating_systems(hpxml, args) set_hvac_distribution(hpxml, args) set_hvac_control(hpxml, args, epw_file, weather) @@ -4923,6 +4954,40 @@ def self.set_heat_pumps(hpxml, args) primary_cooling_system: primary_cooling_system) end + def self.set_geothermal_loop(hpxml, args) + heat_pump_type = args[:heat_pump_type] + + return if heat_pump_type != HPXML::HVACTypeHeatPumpGroundToAir + + if args[:geothermal_loop_loop_flow].is_initialized + loop_flow = args[:geothermal_loop_loop_flow].get + end + + if args[:geothermal_loop_boreholes_or_trenches_count].is_initialized + num_bore_holes = args[:geothermal_loop_boreholes_or_trenches_count].get + end + + if args[:geothermal_loop_boreholes_or_trenches_length].is_initialized + bore_length = args[:geothermal_loop_boreholes_or_trenches_length].get + end + + if args[:geothermal_loop_boreholes_or_trenches_spacing].is_initialized + bore_spacing = args[:geothermal_loop_boreholes_or_trenches_spacing].get + end + + if args[:geothermal_loop_pipe_conductivity].is_initialized + pipe_cond = args[:geothermal_loop_pipe_conductivity].get + end + + hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}", + loop_flow: loop_flow, + num_bore_holes: num_bore_holes, + bore_length: bore_length, + bore_spacing: bore_spacing, + pipe_cond: pipe_cond) + hpxml.heat_pumps[-1].geothermal_loop_idref = hpxml.geothermal_loops[-1].id + end + def self.set_secondary_heating_systems(hpxml, args) heating_system_type = args[:heating_system_2_type] heating_system_is_heatpump_backup = (args[:heat_pump_type] != 'none' && args[:heat_pump_backup_type] == HPXML::HeatPumpBackupTypeSeparate) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 45eb7f8820..11aac64856 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -1,10 +1,10 @@ - 3.0 + 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 61a17495-a6d8-4328-a2c6-341c8ef4300c - 20230519T183248Z + 67fb50c6-1ec6-4422-968a-ab87ac8e29d3 + 2023-05-25T23:36:41Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -2764,6 +2764,51 @@ false false + + geothermal_loop_loop_flow + Geothermal Loop: Loop Flow + Water flow rate through the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default is used. + Double + gpm + false + false + + + geothermal_loop_boreholes_or_trenches_count + Geothermal Loop: Boreholes or Trenches Count + Number of boreholes or trenches. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default is used. + Integer + # + false + false + + + geothermal_loop_boreholes_or_trenches_length + Geothermal Loop: Boreholes or Trenches Length + Length of each borehole (vertical) or trench (horizontal). Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default is used. + Double + ft + false + false + + + geothermal_loop_boreholes_or_trenches_spacing + Geothermal Loop: Boreholes or Trenches Spacing + Distance between bores/trenches. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. + Double + ft + false + false + + + geothermal_loop_pipe_conductivity + Geothermal Loop: Boreholes or Trenches Conductivity + Pipe conductivity of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. + Double + Btu/hr-ft-F + false + false + heating_system_2_type Heating System 2: Type @@ -6670,6 +6715,17 @@ + + + OpenStudio + 2.9.0 + 2.9.0 + + measure.rb + rb + script + CD7250AB + geometry.rb rb @@ -6682,16 +6738,5 @@ test 010244DB - - - OpenStudio - 2.9.0 - 2.9.0 - - measure.rb - rb - script - AE26AEE7 - From a5d62bf62138afcf36ff9a9a6cc0c517dab236b8 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 25 May 2023 16:38:13 -0700 Subject: [PATCH 010/217] Allow ground loop to be hardsized. --- HPXMLtoOpenStudio/measure.xml | 10 ++++---- HPXMLtoOpenStudio/resources/hpxml.rb | 13 +++++++++- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 15 ++++++++++++ HPXMLtoOpenStudio/resources/hvac_sizing.rb | 24 ++++++++++++++----- 4 files changed, 50 insertions(+), 12 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index ddb2d6716a..300fe92cd1 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - a7771314-c376-4158-8b66-458f24a647a2 - 2023-05-23T21:07:01Z + 9bebe351-6ab5-4d90-9d13-09c45692b539 + 2023-05-25T23:36:43Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -238,13 +238,13 @@ hpxml.rb rb resource - 64945CEA + 11DCF4E9 hpxml_defaults.rb rb resource - 417A989F + DC22B597 hpxml_schema/HPXML.xsd @@ -280,7 +280,7 @@ hvac_sizing.rb rb resource - 47E1B6BF + FF22B64A lighting.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index a215d920e9..b789ce9e68 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -3992,7 +3992,7 @@ def from_oga(hpxml) end class GeothermalLoop < BaseElement - ATTRS = [:id, :pipe_cond] + ATTRS = [:id, :loop_flow, :num_bore_holes, :bore_spacing, :bore_length, :pipe_cond] attr_accessor(*ATTRS) def delete @@ -4011,6 +4011,13 @@ def to_oga(doc) geothermal_loop = XMLHelper.add_element(hvac_plant, 'GeothermalLoop') sys_id = XMLHelper.add_element(geothermal_loop, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) + XMLHelper.add_element(geothermal_loop, 'LoopFlow', @loop_flow, :float, @loop_flow_isdefaulted) unless @loop_flow.nil? + if (not @num_bore_holes.nil?) || (not @bore_spacing.nil?) || (not @bore_length.nil?) + boreholes_or_trenches = XMLHelper.add_element(geothermal_loop, 'BoreholesOrTrenches') + XMLHelper.add_element(boreholes_or_trenches, 'Count', @num_bore_holes, :integer, @num_bore_holes_isdefaulted) unless @num_bore_holes.nil? + XMLHelper.add_element(boreholes_or_trenches, 'Length', @bore_length, :float, @bore_length_isdefaulted) unless @bore_length.nil? + XMLHelper.add_element(boreholes_or_trenches, 'Spacing', @bore_spacing, :float, @bore_spacing_isdefaulted) unless @bore_spacing.nil? + end if not @pipe_cond.nil? pipe = XMLHelper.add_element(geothermal_loop, 'Pipe') XMLHelper.add_element(pipe, 'Conductivity', @pipe_cond, :float, @pipe_cond_isdefaulted) unless @pipe_cond.nil? @@ -4021,6 +4028,10 @@ def from_oga(geothermal_loop) return if geothermal_loop.nil? @id = HPXML::get_id(geothermal_loop) + @loop_flow = XMLHelper.get_value(geothermal_loop, 'LoopFlow', :float) + @num_bore_holes = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Count', :integer) + @bore_length = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Length', :float) + @bore_spacing = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Spacing', :float) @pipe_cond = XMLHelper.get_value(geothermal_loop, 'Pipe/Conductivity', :float) end end diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 967b2f147c..0b94be72b5 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1507,6 +1507,11 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) heat_pump.geothermal_loop_idref = hpxml.geothermal_loops[-1].id end + if heat_pump.geothermal_loop.bore_spacing.nil? + heat_pump.geothermal_loop.bore_spacing = 20.0 # ft, distance between bores + heat_pump.geothermal_loop.bore_spacing_isdefaulted = true + end + if heat_pump.geothermal_loop.pipe_cond.nil? heat_pump.geothermal_loop.pipe_cond = 0.23 # Btu/h-ft-R; Pipe thermal conductivity, default to high density polyethylene heat_pump.geothermal_loop.pipe_cond_isdefaulted = true @@ -2902,6 +2907,16 @@ def self.apply_hvac_sizing(hpxml, weather, cfa) htg_sys.additional_properties.GSHP_Bore_Depth = hvac_sizing_values.GSHP_Bore_Depth htg_sys.additional_properties.GSHP_Bore_Holes = hvac_sizing_values.GSHP_Bore_Holes htg_sys.additional_properties.GSHP_G_Functions = hvac_sizing_values.GSHP_G_Functions + + geothermal_loop = htg_sys.geothermal_loop + if geothermal_loop.loop_flow.nil? + geothermal_loop.loop_flow = hvac_sizing_values.GSHP_Loop_flow + geothermal_loop.loop_flow_isdefaulted = true + end + if geothermal_loop.num_bore_holes.nil? + geothermal_loop.num_bore_holes = hvac_sizing_values.GSHP_Bore_Holes + geothermal_loop.num_bore_holes_isdefaulted = true + end end end diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index ad423b62f4..550d65de31 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1885,17 +1885,29 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) hvac_cooling_ap = hvac_cooling.additional_properties # Autosize ground loop heat exchanger length - bore_spacing = 20.0 # ft, distance between bores + geothermal_loop = hvac_cooling.geothermal_loop + bore_spacing = geothermal_loop.bore_spacing pipe_r_value = gshp_hx_pipe_rvalue(hvac_cooling) nom_length_heat, nom_length_cool = gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, pipe_r_value) - bore_length_heat = nom_length_heat * hvac_sizing_values.Heat_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') - bore_length_cool = nom_length_cool * hvac_sizing_values.Cool_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') - bore_length = [bore_length_heat, bore_length_cool].max + bore_length = geothermal_loop.bore_length + if bore_length.nil? + bore_length_heat = nom_length_heat * hvac_sizing_values.Heat_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') + bore_length_cool = nom_length_cool * hvac_sizing_values.Cool_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') + bore_length = [bore_length_heat, bore_length_cool].max + geothermal_loop.bore_length_isdefaulted = true + end - loop_flow = [1.0, UnitConversions.convert([hvac_sizing_values.Heat_Capacity, hvac_sizing_values.Cool_Capacity].max, 'Btu/hr', 'ton')].max.floor * 3.0 + loop_flow = geothermal_loop.loop_flow + if loop_flow.nil? + loop_flow = [1.0, UnitConversions.convert([hvac_sizing_values.Heat_Capacity, hvac_sizing_values.Cool_Capacity].max, 'Btu/hr', 'ton')].max.floor * 3.0 + end - num_bore_holes = [1, (UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') + 0.5).floor].max + num_bore_holes = geothermal_loop.num_bore_holes + if num_bore_holes.nil? + num_bore_holes = [1, (UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') + 0.5).floor].max + geothermal_loop.num_bore_holes_isdefaulted = true + end bore_depth = (bore_length / num_bore_holes).floor # ft min_bore_depth = 0.15 * bore_spacing # 0.15 is the maximum Spacing2DepthRatio defined for the G-function From b99479fbffa53ad14217151317ed66acfc8246fc Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 25 May 2023 16:38:34 -0700 Subject: [PATCH 011/217] Add a ground loop sample file with hardset properties. --- ReportUtilityBills/measure.xml | 176 +++---- tasks.rb | 42 +- workflow/hpxml_inputs.json | 13 +- ...d-ground-loop-ground-to-air-heat-pump2.xml | 476 ++++++++++++++++++ 4 files changed, 598 insertions(+), 109 deletions(-) create mode 100644 workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml diff --git a/ReportUtilityBills/measure.xml b/ReportUtilityBills/measure.xml index 9cae6a3bdd..9f9047d0dd 100644 --- a/ReportUtilityBills/measure.xml +++ b/ReportUtilityBills/measure.xml @@ -1,10 +1,10 @@ - 3.0 + 3.1 report_utility_bills ca88a425-e59a-4bc4-af51-c7e7d1e960fe - 10456a16-b1fc-449f-b7f8-71fbcdabb1c9 - 20230401T012721Z + 86301666-d671-409e-bf03-1d4bba6b2a93 + 2023-05-25T23:36:47Z 15BF4E57 ReportUtilityBills Utility Bills Report @@ -49,58 +49,63 @@ - Contains Demand Charges.json - json - test - 31A7BE3B + + OpenStudio + 3.3.0 + 3.3.0 + + measure.rb + rb + script + 13808DAA - Invalid Fixed Charge Units.json + detailed_rates/Sample Flat Rate Min Annual Charge.json json - test - 6CDC3F13 + resource + 453ED6BD - Invalid Min Charge Units.json + detailed_rates/Sample Flat Rate Min Monthly Charge.json json - test - 32FB5BA8 + resource + A39362E3 - Missing Required Fields.json + detailed_rates/Sample Flat Rate.json json - test - 3DCED656 + resource + C0FCBE3B - Jackson Electric Member Corp - A Residential Service Senior Citizen Low Income Assistance (Effective 2017-01-01).json + detailed_rates/Sample Real-Time Pricing Rate Min Annual Charge.json json - test - 953EE2AC + resource + 12C12981 - data.csv - csv - test - F96CB80F + detailed_rates/Sample Real-Time Pricing Rate Min Monthly Charge.json + json + resource + DE28BDA1 - detailed_rates/openei_rates.zip - zip + detailed_rates/Sample Real-Time Pricing Rate.json + json resource - 56DDA6EC + 40D684ED - detailed_rates/Sample Flat Rate.json + detailed_rates/Sample Tiered Rate Min Annual Charge.json json resource - C0FCBE3B + 05C5F7BD - detailed_rates/Sample Real-Time Pricing Rate.json + detailed_rates/Sample Tiered Rate Min Monthly Charge.json json resource - 40D684ED + 9177D651 detailed_rates/Sample Tiered Rate.json @@ -108,18 +113,48 @@ resource 27936FC1 + + detailed_rates/Sample Tiered Time-of-Use Rate Min Annual Charge.json + json + resource + E59E9AEE + + + detailed_rates/Sample Tiered Time-of-Use Rate Min Monthly Charge.json + json + resource + 75AD92DF + detailed_rates/Sample Tiered Time-of-Use Rate.json json resource 4508028D + + detailed_rates/Sample Time-of-Use Rate Min Annual Charge.json + json + resource + 2CC2386E + + + detailed_rates/Sample Time-of-Use Rate Min Monthly Charge.json + json + resource + 387337AD + detailed_rates/Sample Time-of-Use Rate.json json resource AD93D08A + + detailed_rates/openei_rates.zip + zip + resource + 56DDA6EC + simple_rates/Average_retail_price_of_electricity.csv csv @@ -157,70 +192,52 @@ D9D25D07 - detailed_rates/Sample Flat Rate Min Annual Charge.json - json - resource - 453ED6BD - - - detailed_rates/Sample Flat Rate Min Monthly Charge.json - json - resource - A39362E3 - - - detailed_rates/Sample Real-Time Pricing Rate Min Annual Charge.json - json - resource - 12C12981 - - - detailed_rates/Sample Real-Time Pricing Rate Min Monthly Charge.json - json + util.rb + rb resource - DE28BDA1 + 041AE7DE - detailed_rates/Sample Tiered Rate Min Annual Charge.json + Contains Demand Charges.json json - resource - 05C5F7BD + test + 31A7BE3B - detailed_rates/Sample Tiered Rate Min Monthly Charge.json + Invalid Fixed Charge Units.json json - resource - 9177D651 + test + 6CDC3F13 - detailed_rates/Sample Tiered Time-of-Use Rate Min Annual Charge.json + Invalid Min Charge Units.json json - resource - E59E9AEE + test + 32FB5BA8 - detailed_rates/Sample Tiered Time-of-Use Rate Min Monthly Charge.json + Jackson Electric Member Corp - A Residential Service Senior Citizen Low Income Assistance (Effective 2017-01-01).json json - resource - 75AD92DF + test + 953EE2AC - detailed_rates/Sample Time-of-Use Rate Min Annual Charge.json + Missing Required Fields.json json - resource - 2CC2386E + test + 3DCED656 - detailed_rates/Sample Time-of-Use Rate Min Monthly Charge.json - json - resource - 387337AD + data.csv + csv + test + F96CB80F - util.rb - rb - resource - 041AE7DE + results_bills.csv + csv + test + ED0D6618 utility_bills_test.rb @@ -228,16 +245,5 @@ test 08FABF5F - - - OpenStudio - 3.3.0 - 3.3.0 - - measure.rb - rb - script - 13808DAA - diff --git a/tasks.rb b/tasks.rb index 252fc53e8a..67f5bbac4d 100644 --- a/tasks.rb +++ b/tasks.rb @@ -1295,29 +1295,25 @@ def apply_hpxml_modification(hpxml_file, hpxml) hpxml.cooling_systems.reverse_each do |cooling_system| cooling_system.delete end - hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}") - hpxml.heat_pumps.add(id: "HeatPump#{hpxml.heat_pumps.size + 1}", - distribution_system_idref: hpxml.hvac_distributions[-1].id, - heat_pump_type: HPXML::HVACTypeHeatPumpGroundToAir, - heat_pump_fuel: HPXML::FuelTypeElectricity, - backup_type: HPXML::HeatPumpBackupTypeIntegrated, - backup_heating_fuel: HPXML::FuelTypeElectricity, - is_shared_system: true, - number_of_units_served: 6, - backup_heating_efficiency_percent: 1.0, - fraction_heat_load_served: 1, - fraction_cool_load_served: 1, - heating_efficiency_cop: 3.6, - cooling_efficiency_eer: 16.6, - heating_capacity: 12000, - cooling_capacity: 12000, - backup_heating_capacity: 12000, - cooling_shr: 0.73, - primary_heating_system: true, - primary_cooling_system: true, - pump_watts_per_ton: 0.0, - geothermal_loop_idref: hpxml.geothermal_loops[-1].id) - + hpxml.heat_pumps[0].distribution_system_idref = hpxml.hvac_distributions[-1].id + hpxml.heat_pumps[0].heat_pump_type = HPXML::HVACTypeHeatPumpGroundToAir + hpxml.heat_pumps[0].heat_pump_fuel = HPXML::FuelTypeElectricity + hpxml.heat_pumps[0].backup_type = HPXML::HeatPumpBackupTypeIntegrated + hpxml.heat_pumps[0].backup_heating_fuel = HPXML::FuelTypeElectricity + hpxml.heat_pumps[0].is_shared_system = true + hpxml.heat_pumps[0].number_of_units_served = 6 + hpxml.heat_pumps[0].backup_heating_efficiency_percent = 1.0 + hpxml.heat_pumps[0].fraction_heat_load_served = 1 + hpxml.heat_pumps[0].fraction_cool_load_served = 1 + hpxml.heat_pumps[0].heating_efficiency_cop = 3.6 + hpxml.heat_pumps[0].cooling_efficiency_eer = 16.6 + hpxml.heat_pumps[0].heating_capacity = 12000 + hpxml.heat_pumps[0].cooling_capacity = 12000 + hpxml.heat_pumps[0].backup_heating_capacity = 12000 + hpxml.heat_pumps[0].cooling_shr = 0.73 + hpxml.heat_pumps[0].primary_heating_system = true + hpxml.heat_pumps[0].primary_cooling_system = true + hpxml.heat_pumps[0].pump_watts_per_ton = 0.0 end if hpxml_file.include? 'eae' hpxml.heating_systems[0].electric_auxiliary_energy = 500.0 diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 9522873489..c0776a281c 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -923,7 +923,18 @@ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml" }, "sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml" + "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml", + "heat_pump_type": "ground-to-air", + "heat_pump_heating_efficiency_type": "COP", + "heat_pump_cooling_efficiency_type": "EER" + }, + "sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml": { + "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml", + "geothermal_loop_loop_flow": 12.3, + "geothermal_loop_boreholes_or_trenches_count": 5, + "geothermal_loop_boreholes_or_trenches_length": 23.4, + "geothermal_loop_boreholes_or_trenches_spacing": 34.5, + "geothermal_loop_pipe_conductivity": 0.25 }, "sample_files/base-bldgtype-multifamily-shared-laundry-room.xml": { "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml" diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml new file mode 100644 index 0000000000..e1c4ca92c3 --- /dev/null +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml @@ -0,0 +1,476 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + attached on one side + unit above and below + 180 + + electricity + natural gas + + + + apartment unit + 1.0 + 1.0 + 8.0 + 3 + 2 + 900.0 + 7200.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + unit exterior only + 50.0 + + ACH + 3.0 + + 7200.0 + + + + + + + + + + + + + + + + + + + + + + outside + living space + + + + 685.9 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + other housing unit + living space + + + + 293.9 + 0.7 + 0.92 + + gypsum board + + + + 4.0 + + + + + + + other housing unit + living space + floor + + + + 900.0 + + + 2.1 + + + + + other housing unit + living space + ceiling + + + + 900.0 + + gypsum board + + + + 2.1 + + + + + + + 35.3 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 35.3 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 52.9 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 20.0 + 180 + 4.4 + + + + + + + + + + + + + + true + 6 + ground-to-air + electricity + 12000.0 + 12000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 12000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 0.0 + 600.0 + + + + + 12.3 + + 5 + 23.4 + 34.5 + + + 0.25 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 0.0 + living space + 150.0 + + + + return + 0.0 + living space + 50.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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 819.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file From 708cf6d5d6145a145449c796688ea17a04ad2146 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 30 May 2023 08:26:19 -0700 Subject: [PATCH 012/217] Default geothermal sizing properties only if loop exists. --- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 0b94be72b5..4873dcced7 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -2909,13 +2909,15 @@ def self.apply_hvac_sizing(hpxml, weather, cfa) htg_sys.additional_properties.GSHP_G_Functions = hvac_sizing_values.GSHP_G_Functions geothermal_loop = htg_sys.geothermal_loop - if geothermal_loop.loop_flow.nil? - geothermal_loop.loop_flow = hvac_sizing_values.GSHP_Loop_flow - geothermal_loop.loop_flow_isdefaulted = true - end - if geothermal_loop.num_bore_holes.nil? - geothermal_loop.num_bore_holes = hvac_sizing_values.GSHP_Bore_Holes - geothermal_loop.num_bore_holes_isdefaulted = true + if not geothermal_loop.nil? + if geothermal_loop.loop_flow.nil? + geothermal_loop.loop_flow = hvac_sizing_values.GSHP_Loop_flow + geothermal_loop.loop_flow_isdefaulted = true + end + if geothermal_loop.num_bore_holes.nil? + geothermal_loop.num_bore_holes = hvac_sizing_values.GSHP_Bore_Holes + geothermal_loop.num_bore_holes_isdefaulted = true + end end end end From 66b963609996544547091313f19a7fdafe607794 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 30 May 2023 08:26:35 -0700 Subject: [PATCH 013/217] Regenerate sample files. --- workflow/sample_files/base-dhw-desuperheater-gshp.xml | 4 ++++ ...ase-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml | 4 ++++ ...ase-hvac-autosize-ground-to-air-heat-pump-heating-only.xml | 4 ++++ ...tosize-ground-to-air-heat-pump-sizing-methodology-acca.xml | 4 ++++ ...tosize-ground-to-air-heat-pump-sizing-methodology-hers.xml | 4 ++++ ...ize-ground-to-air-heat-pump-sizing-methodology-maxload.xml | 4 ++++ .../base-hvac-ground-to-air-heat-pump-cooling-only.xml | 4 ++++ .../base-hvac-ground-to-air-heat-pump-heating-only.xml | 4 ++++ workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml | 4 ++++ .../base-hvac-install-quality-ground-to-air-heat-pump.xml | 4 ++++ 10 files changed, 40 insertions(+) diff --git a/workflow/sample_files/base-dhw-desuperheater-gshp.xml b/workflow/sample_files/base-dhw-desuperheater-gshp.xml index 84dd838c08..d4b092a3be 100644 --- a/workflow/sample_files/base-dhw-desuperheater-gshp.xml +++ b/workflow/sample_files/base-dhw-desuperheater-gshp.xml @@ -346,10 +346,14 @@ COP 3.6 + 30.0 + + + diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml index a6ba4e98c7..072e6414be 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml @@ -339,10 +339,14 @@ COP 3.6 + 30.0 + + + diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml index 107f7a7aaf..6a6ce62d6a 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml @@ -345,10 +345,14 @@ COP 3.6 + 30.0 + + + diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml index 0c016a936d..41c2f17534 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml @@ -346,10 +346,14 @@ COP 3.6 + 30.0 + + + diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml index e999e701c8..c3c87d828d 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml @@ -346,10 +346,14 @@ COP 3.6 + 30.0 + + + diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml index 60edeb3602..0d648a0617 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml @@ -346,10 +346,14 @@ COP 3.6 + 30.0 + + + diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml index 64c6d30070..ee599a97b4 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml @@ -338,10 +338,14 @@ COP 3.6 + 30.0 + + + diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml index 543fe2bcbc..3bad38bfff 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml @@ -345,10 +345,14 @@ COP 3.6 + 30.0 + + + diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml index 29af0aa9e6..eeaf1d5857 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml @@ -346,10 +346,14 @@ COP 3.6 + 30.0 + + + diff --git a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml index cb0e40bf5c..23347d1ebd 100644 --- a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml @@ -346,6 +346,7 @@ COP 3.6 + -0.25 -0.25 @@ -353,6 +354,9 @@ 30.0 + + + From 4ac46f79e272ea04dae5a1a3aba65e8263f15dad Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 30 May 2023 12:57:59 -0700 Subject: [PATCH 014/217] Add more geothermal loop arguments to build measure. --- BuildResidentialHPXML/measure.rb | 61 +++++++++++++++++++++++++++++-- BuildResidentialHPXML/measure.xml | 60 +++++++++++++++++++++++++++--- 2 files changed, 113 insertions(+), 8 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 0aec54085f..d0becc6431 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -135,6 +135,12 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setUnits('Btu/hr-ft-F') args << arg + arg = OpenStudio::Measure::OSArgument.makeDoubleArgument('site_ground_diffusivity', false) + arg.setDisplayName('Site: Ground Diffusivity') + arg.setDescription('Diffusivity of the ground soil. If not provided, the OS-HPXML default is used.') + arg.setUnits('TODO') + args << arg + arg = OpenStudio::Measure::OSArgument.makeStringArgument('site_zip_code', false) arg.setDisplayName('Site: Zip Code') arg.setDescription('Zip code of the home address.') @@ -1363,7 +1369,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_boreholes_or_trenches_length', false) arg.setDisplayName('Geothermal Loop: Boreholes or Trenches Length') - arg.setDescription("Length of each borehole (vertical) or trench (horizontal). Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default is used.") + arg.setDescription("Total length of boreholes (vertical) or trenches (horizontal). Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default is used.") arg.setUnits('ft') args << arg @@ -1373,12 +1379,35 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setUnits('ft') args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_boreholes_or_trenches_diameter', false) + arg.setDisplayName('Geothermal Loop: Boreholes or Trenches Diameter') + arg.setDescription("Diameter of bores/trenches. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") + arg.setUnits('in') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_grout_conductivity', false) + arg.setDisplayName('Geothermal Loop: Grout Conductivity') + arg.setDescription("Grout conductivity of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") + arg.setUnits('Btu/hr-ft-F') + args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_pipe_conductivity', false) - arg.setDisplayName('Geothermal Loop: Boreholes or Trenches Conductivity') + arg.setDisplayName('Geothermal Loop: Pipe Conductivity') arg.setDescription("Pipe conductivity of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") arg.setUnits('Btu/hr-ft-F') args << arg + geothermal_loop_pipe_diameter_choices = OpenStudio::StringVector.new + geothermal_loop_pipe_diameter_choices << '3/4" pipe' + geothermal_loop_pipe_diameter_choices << '1" pipe' + geothermal_loop_pipe_diameter_choices << '1-1/4" pipe' + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_pipe_diameter', geothermal_loop_pipe_diameter_choices, false) + arg.setDisplayName('Geothermal Loop: Pipe Diameter') + arg.setDescription("Pipe diameter of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") + arg.setUnits('in') + args << arg + heating_system_2_type_choices = OpenStudio::StringVector.new heating_system_2_type_choices << 'none' heating_system_2_type_choices << HPXML::HVACTypeFurnace @@ -3896,6 +3925,10 @@ def self.set_site(hpxml, args) hpxml.site.ground_conductivity = args[:site_ground_conductivity].get end + if args[:site_ground_diffusivity].is_initialized + hpxml.site.ground_diffusivity = args[:site_ground_diffusivity].get + end + if args[:site_type].is_initialized hpxml.site.site_type = args[:site_type].get end @@ -4975,16 +5008,38 @@ def self.set_geothermal_loop(hpxml, args) bore_spacing = args[:geothermal_loop_boreholes_or_trenches_spacing].get end + if args[:geothermal_loop_boreholes_or_trenches_diameter].is_initialized + bore_diameter = args[:geothermal_loop_boreholes_or_trenches_diameter].get + end + + if args[:geothermal_loop_grout_conductivity].is_initialized + grout_conductivity = args[:geothermal_loop_grout_conductivity].get + end + if args[:geothermal_loop_pipe_conductivity].is_initialized pipe_cond = args[:geothermal_loop_pipe_conductivity].get end + if args[:geothermal_loop_pipe_diameter].is_initialized + pipe_size = args[:geothermal_loop_pipe_diameter].get + if pipe_size == '3/4" pipe' + pipe_size = 0.75 + elsif pipe_size == '1" pipe' + pipe_size = 1.0 + elsif pipe_size == '1-1/4" pipe' + pipe_size = 1.25 + end + end + hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}", loop_flow: loop_flow, num_bore_holes: num_bore_holes, bore_length: bore_length, bore_spacing: bore_spacing, - pipe_cond: pipe_cond) + bore_diameter: bore_diameter, + grout_conductivity: grout_conductivity, + pipe_cond: pipe_cond, + pipe_size: pipe_size) hpxml.heat_pumps[-1].geothermal_loop_idref = hpxml.geothermal_loops[-1].id end diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 11aac64856..838489ee22 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 67fb50c6-1ec6-4422-968a-ab87ac8e29d3 - 2023-05-25T23:36:41Z + b6f74f20-3400-46fd-adb9-a9a7efee46a3 + 2023-05-30T19:57:20Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -194,6 +194,15 @@ false false + + site_ground_diffusivity + Site: Ground Diffusivity + Diffusivity of the ground soil. If not provided, the OS-HPXML default is used. + Double + TODO + false + false + site_zip_code Site: Zip Code @@ -2785,7 +2794,7 @@ geothermal_loop_boreholes_or_trenches_length Geothermal Loop: Boreholes or Trenches Length - Length of each borehole (vertical) or trench (horizontal). Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default is used. + Total length of boreholes (vertical) or trenches (horizontal). Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default is used. Double ft false @@ -2800,15 +2809,56 @@ false false + + geothermal_loop_boreholes_or_trenches_diameter + Geothermal Loop: Boreholes or Trenches Diameter + Diameter of bores/trenches. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. + Double + in + false + false + + + geothermal_loop_grout_conductivity + Geothermal Loop: Grout Conductivity + Grout conductivity of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. + Double + Btu/hr-ft-F + false + false + geothermal_loop_pipe_conductivity - Geothermal Loop: Boreholes or Trenches Conductivity + Geothermal Loop: Pipe Conductivity Pipe conductivity of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. Double Btu/hr-ft-F false false + + geothermal_loop_pipe_diameter + Geothermal Loop: Pipe Diameter + Pipe diameter of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. + Choice + in + false + false + + + 3/4" pipe + 3/4" pipe + + + 1" pipe + 1" pipe + + + 1-1/4" pipe + 1-1/4" pipe + + + heating_system_2_type Heating System 2: Type @@ -6724,7 +6774,7 @@ measure.rb rb script - CD7250AB + CF9A4983
geometry.rb From a8338fe3163cb86ac83e691bea9d029caba36966 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 30 May 2023 12:58:31 -0700 Subject: [PATCH 015/217] Update translator measure, resource files, and epvalidator. --- HPXMLtoOpenStudio/measure.rb | 3 +- HPXMLtoOpenStudio/measure.xml | 16 +++++----- HPXMLtoOpenStudio/resources/hpxml.rb | 22 +++++++++++--- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 30 +++++++++++++++++-- .../hpxml_schematron/EPvalidator.xml | 13 ++++++-- HPXMLtoOpenStudio/resources/hvac.rb | 20 ++++++------- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 12 ++++---- 7 files changed, 81 insertions(+), 35 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.rb b/HPXMLtoOpenStudio/measure.rb index f3b2afe5bc..2960b6d497 100644 --- a/HPXMLtoOpenStudio/measure.rb +++ b/HPXMLtoOpenStudio/measure.rb @@ -1519,7 +1519,8 @@ def self.add_heat_pump(runner, model, weather, spaces, airloop_map) airloop_map[sys_id] = HVAC.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, sequential_heat_load_fracs, sequential_cool_load_fracs, - living_zone, @hpxml.site.ground_conductivity, @hvac_unavailable_periods) + living_zone, @hpxml.site.ground_conductivity, @hpxml.site.ground_diffusivity, + @hvac_unavailable_periods) end diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 300fe92cd1..fa58e450b1 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 9bebe351-6ab5-4d90-9d13-09c45692b539 - 2023-05-25T23:36:43Z + 176e5157-cafc-4351-a63c-22d07916aaa3 + 2023-05-30T19:57:22Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -130,7 +130,7 @@ measure.rb rb script - 2E1DFFAC + 1AFF8044 airflow.rb @@ -238,13 +238,13 @@ hpxml.rb rb resource - 11DCF4E9 + E5CD6A60 hpxml_defaults.rb rb resource - DC22B597 + 53F2972F hpxml_schema/HPXML.xsd @@ -262,7 +262,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 589B89C8 + 07FC197B hpxml_schematron/iso-schematron.xsd @@ -274,13 +274,13 @@ hvac.rb rb resource - B4A2F9B1 + D3136606 hvac_sizing.rb rb resource - FF22B64A + E1A0EE29 lighting.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index b789ce9e68..aaf65bf1c4 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -1442,7 +1442,7 @@ def from_oga(unavailable_period) class Site < BaseElement ATTRS = [:site_type, :surroundings, :vertical_surroundings, :shielding_of_home, :orientation_of_front_of_home, :azimuth_of_front_of_home, :fuels, - :ground_conductivity] + :ground_conductivity, :ground_diffusivity] attr_accessor(*ATTRS) def check_for_errors @@ -1466,9 +1466,13 @@ def to_oga(doc) XMLHelper.add_element(fuel_types_available, 'Fuel', fuel, :string) end end - if not @ground_conductivity.nil? + if (not @ground_conductivity.nil?) || (not @ground_diffusivity.nil?) soil = XMLHelper.add_element(site, 'Soil') XMLHelper.add_element(soil, 'Conductivity', @ground_conductivity, :float, @ground_conductivity_isdefaulted) unless @ground_conductivity.nil? + if not @ground_diffusivity.nil? + extension = XMLHelper.create_elements_as_needed(soil, ['extension']) + XMLHelper.add_element(extension, 'Diffusivity', @ground_diffusivity, :float, @ground_diffusivity_isdefaulted) unless @ground_diffusivity.nil? + end end if site.children.size == 0 @@ -1491,6 +1495,7 @@ def from_oga(hpxml) @azimuth_of_front_of_home = XMLHelper.get_value(site, 'AzimuthOfFrontOfHome', :integer) @fuels = XMLHelper.get_values(site, 'FuelTypesAvailable/Fuel', :string) @ground_conductivity = XMLHelper.get_value(site, 'Soil/Conductivity', :float) + @ground_diffusivity = XMLHelper.get_value(site, 'Soil/extension/Diffusivity', :float) end end @@ -3992,7 +3997,7 @@ def from_oga(hpxml) end class GeothermalLoop < BaseElement - ATTRS = [:id, :loop_flow, :num_bore_holes, :bore_spacing, :bore_length, :pipe_cond] + ATTRS = [:id, :loop_flow, :num_bore_holes, :bore_spacing, :bore_length, :bore_diameter, :grout_conductivity, :pipe_cond, :pipe_size] attr_accessor(*ATTRS) def delete @@ -4017,10 +4022,16 @@ def to_oga(doc) XMLHelper.add_element(boreholes_or_trenches, 'Count', @num_bore_holes, :integer, @num_bore_holes_isdefaulted) unless @num_bore_holes.nil? XMLHelper.add_element(boreholes_or_trenches, 'Length', @bore_length, :float, @bore_length_isdefaulted) unless @bore_length.nil? XMLHelper.add_element(boreholes_or_trenches, 'Spacing', @bore_spacing, :float, @bore_spacing_isdefaulted) unless @bore_spacing.nil? + XMLHelper.add_element(boreholes_or_trenches, 'Diameter', @bore_diameter, :float, @bore_diameter_isdefaulted) unless @bore_diameter.nil? + end + if not @grout_conductivity.nil? + grout = XMLHelper.add_element(geothermal_loop, 'Grout') + XMLHelper.add_element(grout, 'Conductivity', @grout_conductivity, :float, @grout_conductivity_isdefaulted) unless @grout_conductivity.nil? end - if not @pipe_cond.nil? + if (not @pipe_cond.nil?) || (not @pipe_size.nil?) pipe = XMLHelper.add_element(geothermal_loop, 'Pipe') XMLHelper.add_element(pipe, 'Conductivity', @pipe_cond, :float, @pipe_cond_isdefaulted) unless @pipe_cond.nil? + XMLHelper.add_element(pipe, 'Diameter', @pipe_size, :float, @pipe_size_isdefaulted) unless @pipe_size.nil? end end @@ -4032,7 +4043,10 @@ def from_oga(geothermal_loop) @num_bore_holes = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Count', :integer) @bore_length = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Length', :float) @bore_spacing = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Spacing', :float) + @bore_diameter = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Diameter', :float) + @grout_conductivity = XMLHelper.get_value(geothermal_loop, 'Grout/Conductivity', :float) @pipe_cond = XMLHelper.get_value(geothermal_loop, 'Pipe/Conductivity', :float) + @pipe_size = XMLHelper.get_value(geothermal_loop, 'Pipe/Diameter', :float) end end diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 4873dcced7..85050564b7 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -488,6 +488,11 @@ def self.apply_site(hpxml) hpxml.site.ground_conductivity_isdefaulted = true end + if hpxml.site.ground_diffusivity.nil? + hpxml.site.ground_diffusivity = 0.0208 # TODO + hpxml.site.ground_diffusivity_isdefaulted = true + end + hpxml.site.additional_properties.aim2_shelter_coeff = Airflow.get_aim2_shelter_coefficient(hpxml.site.shielding_of_home) end @@ -1499,9 +1504,6 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) HVAC.set_mshp_downselected_speed_indices(heat_pump) elsif [HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type - HVAC.set_gshp_assumptions(heat_pump, weather) - HVAC.set_curves_gshp(heat_pump) - if heat_pump.geothermal_loop.nil? hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}") heat_pump.geothermal_loop_idref = hpxml.geothermal_loops[-1].id @@ -1512,10 +1514,28 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) heat_pump.geothermal_loop.bore_spacing_isdefaulted = true end + if heat_pump.geothermal_loop.bore_diameter.nil? + heat_pump.geothermal_loop.bore_diameter = 5.0 # in + heat_pump.geothermal_loop.bore_diameter_isdefaulted = true + end + + if heat_pump.geothermal_loop.grout_conductivity.nil? + heat_pump.geothermal_loop.grout_conductivity = 0.4 # Btu/h-ft-R + heat_pump.geothermal_loop.grout_conductivity_isdefaulted = true + end + if heat_pump.geothermal_loop.pipe_cond.nil? heat_pump.geothermal_loop.pipe_cond = 0.23 # Btu/h-ft-R; Pipe thermal conductivity, default to high density polyethylene heat_pump.geothermal_loop.pipe_cond_isdefaulted = true end + + if heat_pump.geothermal_loop.pipe_size.nil? + heat_pump.geothermal_loop.pipe_size = 0.75 # in + heat_pump.geothermal_loop.pipe_size_isdefaulted = true + end + + HVAC.set_gshp_assumptions(heat_pump, weather) + HVAC.set_curves_gshp(heat_pump) elsif [HPXML::HVACTypeHeatPumpWaterLoopToAir].include? heat_pump.heat_pump_type HVAC.set_heat_pump_temperatures(heat_pump, runner) @@ -2918,6 +2938,10 @@ def self.apply_hvac_sizing(hpxml, weather, cfa) geothermal_loop.num_bore_holes = hvac_sizing_values.GSHP_Bore_Holes geothermal_loop.num_bore_holes_isdefaulted = true end + if geothermal_loop.bore_length.nil? + geothermal_loop.bore_length = hvac_sizing_values.GSHP_Bore_Depth # this is the length (i.e., depth) of each borehole? + geothermal_loop.bore_length_isdefaulted = true + end end end end diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 7303ddc397..c054114b84 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -306,8 +306,9 @@ [Soil] - Expected 1 element(s) for xpath: Conductivity - Expected Conductivity to be greater than 0 + Expected 1 or more element(s) for xpath: Conductivity | extension/Diffusivity + Expected Conductivity to be greater than 0 + Expected extension/Diffusivity to be greater than 0 @@ -1297,7 +1298,15 @@ [GeothermalLoop] + Expected 0 or 1 element(s) for xpath: LoopFlow + Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Count + Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Length + Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Spacing + Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Diameter + Expected 0 or 1 element(s) for xpath: Grout/Conductivity Expected 0 or 1 element(s) for xpath: Pipe/Conductivity + Expected 0 or 1 element(s) for xpath: Pipe/Diameter + Expected Pipe/Diameter to be 0.75, 1.0, or 1.25 diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index f169b4921c..ba1bb45b9e 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -226,7 +226,8 @@ def self.apply_evaporative_cooler(model, cooling_system, sequential_cool_load_fr def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, sequential_heat_load_fracs, sequential_cool_load_fracs, - control_zone, ground_conductivity, hvac_unavailable_periods) + control_zone, ground_conductivity, ground_diffusivity, + hvac_unavailable_periods) obj_name = Constants.ObjectNameGroundSourceHeatPump @@ -273,11 +274,11 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, # Ground Heat Exchanger ground_heat_exch_vert = OpenStudio::Model::GroundHeatExchangerVertical.new(model) ground_heat_exch_vert.setName(obj_name + ' exchanger') - ground_heat_exch_vert.setBoreHoleRadius(UnitConversions.convert(hp_ap.bore_diameter / 2.0, 'in', 'm')) + ground_heat_exch_vert.setBoreHoleRadius(UnitConversions.convert(heat_pump.geothermal_loop.bore_diameter / 2.0, 'in', 'm')) ground_heat_exch_vert.setGroundThermalConductivity(UnitConversions.convert(ground_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) - ground_heat_exch_vert.setGroundThermalHeatCapacity(UnitConversions.convert(ground_conductivity / hp_ap.ground_diffusivity, 'Btu/(ft^3*F)', 'J/(m^3*K)')) + ground_heat_exch_vert.setGroundThermalHeatCapacity(UnitConversions.convert(ground_conductivity / ground_diffusivity, 'Btu/(ft^3*F)', 'J/(m^3*K)')) ground_heat_exch_vert.setGroundTemperature(UnitConversions.convert(weather.data.AnnualAvgDrybulb, 'F', 'C')) - ground_heat_exch_vert.setGroutThermalConductivity(UnitConversions.convert(hp_ap.grout_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) + ground_heat_exch_vert.setGroutThermalConductivity(UnitConversions.convert(heat_pump.geothermal_loop.grout_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) ground_heat_exch_vert.setPipeThermalConductivity(UnitConversions.convert(heat_pump.geothermal_loop.pipe_cond, 'Btu/(hr*ft*R)', 'W/(m*K)')) ground_heat_exch_vert.setPipeOutDiameter(UnitConversions.convert(hp_ap.pipe_od, 'in', 'm')) ground_heat_exch_vert.setUTubeDistance(UnitConversions.convert(hp_ap.shank_spacing, 'in', 'm')) @@ -3359,19 +3360,16 @@ def self.set_gshp_assumptions(heat_pump, weather) else hp_ap.design_hw = [35.0, weather.design.HeatingDrybulb + 35.0, weather.data.AnnualAvgDrybulb - 10.0].min # Temperature of fluid entering indoor coil, use 35F as upper bound end - hp_ap.ground_diffusivity = 0.0208 - hp_ap.grout_conductivity = 0.4 # Btu/h-ft-R - hp_ap.bore_diameter = 5.0 # in - hp_ap.pipe_size = 0.75 # in + pipe_size = heat_pump.geothermal_loop.pipe_size # Pipe nominal size conversion to pipe outside diameter and inside diameter, # only pipe sizes <= 2" are used here with DR11 (dimension ratio), - if hp_ap.pipe_size == 0.75 # 3/4" pipe + if pipe_size == 0.75 # 3/4" pipe hp_ap.pipe_od = 1.050 # in hp_ap.pipe_id = 0.859 # in - elsif hp_ap.pipe_size == 1.0 # 1" pipe + elsif pipe_size == 1.0 # 1" pipe hp_ap.pipe_od = 1.315 # in hp_ap.pipe_id = 1.076 # in - elsif hp_ap.pipe_size == 1.25 # 1-1/4" pipe + elsif pipe_size == 1.25 # 1-1/4" pipe hp_ap.pipe_od = 1.660 # in hp_ap.pipe_id = 1.358 # in end diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 550d65de31..bb1213287b 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1887,15 +1887,16 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) # Autosize ground loop heat exchanger length geothermal_loop = hvac_cooling.geothermal_loop bore_spacing = geothermal_loop.bore_spacing + bore_diameter = geothermal_loop.bore_diameter + grout_conductivity = geothermal_loop.grout_conductivity pipe_r_value = gshp_hx_pipe_rvalue(hvac_cooling) - nom_length_heat, nom_length_cool = gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, pipe_r_value) + nom_length_heat, nom_length_cool = gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, bore_diameter, grout_conductivity, pipe_r_value) bore_length = geothermal_loop.bore_length if bore_length.nil? bore_length_heat = nom_length_heat * hvac_sizing_values.Heat_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') bore_length_cool = nom_length_cool * hvac_sizing_values.Cool_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') bore_length = [bore_length_heat, bore_length_cool].max - geothermal_loop.bore_length_isdefaulted = true end loop_flow = geothermal_loop.loop_flow @@ -1906,7 +1907,6 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) num_bore_holes = geothermal_loop.num_bore_holes if num_bore_holes.nil? num_bore_holes = [1, (UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') + 0.5).floor].max - geothermal_loop.num_bore_holes_isdefaulted = true end bore_depth = (bore_length / num_bore_holes).floor # ft min_bore_depth = 0.15 * bore_spacing # 0.15 is the maximum Spacing2DepthRatio defined for the G-function @@ -2672,7 +2672,7 @@ def self.gshp_hx_pipe_rvalue(hvac_cooling) return Math.log(hvac_cooling_ap.pipe_od / hvac_cooling_ap.pipe_id) / 2.0 / Math::PI / hvac_cooling.geothermal_loop.pipe_cond end - def self.gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, pipe_r_value) + def self.gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, bore_diameter, grout_conductivity, pipe_r_value) if hvac_cooling_ap.u_tube_spacing_type == 'b' beta_0 = 17.4427 beta_1 = -0.6052 @@ -2684,8 +2684,8 @@ def self.gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, pipe_r_v beta_1 = -0.94467 end - r_value_ground = Math.log(bore_spacing / hvac_cooling_ap.bore_diameter * 12.0) / 2.0 / Math::PI / @hpxml.site.ground_conductivity - r_value_grout = 1.0 / hvac_cooling_ap.grout_conductivity / beta_0 / ((hvac_cooling_ap.bore_diameter / hvac_cooling_ap.pipe_od)**beta_1) + r_value_ground = Math.log(bore_spacing / bore_diameter * 12.0) / 2.0 / Math::PI / @hpxml.site.ground_conductivity + r_value_grout = 1.0 / grout_conductivity / beta_0 / ((bore_diameter / hvac_cooling_ap.pipe_od)**beta_1) r_value_bore = r_value_grout + pipe_r_value / 2.0 # Note: Convection resistance is negligible when calculated against Glhepro (Jeffrey D. Spitler, 2000) rtf_DesignMon_Heat = [0.25, (71.0 - weather.data.MonthlyAvgDrybulbs[0]) / @htd].max From 59f2479f686e60f499bf042bcc443fabf317a9e2 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 30 May 2023 12:58:50 -0700 Subject: [PATCH 016/217] Update hpxml inputs json and sample files. --- workflow/hpxml_inputs.json | 6 +++++- ...ily-shared-ground-loop-ground-to-air-heat-pump2.xml | 10 ++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index c0776a281c..e0d796eaa0 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -930,11 +930,15 @@ }, "sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml": { "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml", + "site_ground_diffusivity": 0.03, "geothermal_loop_loop_flow": 12.3, "geothermal_loop_boreholes_or_trenches_count": 5, "geothermal_loop_boreholes_or_trenches_length": 23.4, "geothermal_loop_boreholes_or_trenches_spacing": 34.5, - "geothermal_loop_pipe_conductivity": 0.25 + "geothermal_loop_boreholes_or_trenches_diameter": 6.0, + "geothermal_loop_grout_conductivity": 0.5, + "geothermal_loop_pipe_conductivity": 0.25, + "geothermal_loop_pipe_diameter": "1\" pipe" }, "sample_files/base-bldgtype-multifamily-shared-laundry-room.xml": { "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml" diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml index e1c4ca92c3..6b24607741 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml @@ -40,6 +40,11 @@ electricity natural gas + + + 0.03 + + apartment unit @@ -267,9 +272,14 @@ 5 23.4 34.5 + 6.0 + + 0.5 + 0.25 + 1.0 From 8409a550abe4709477fc457f88dba32e4a19cb28 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 30 May 2023 12:58:56 -0700 Subject: [PATCH 017/217] Update the docs. --- docs/source/workflow_inputs.rst | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index e7c1e95ad2..7578b4fbf0 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -550,9 +550,11 @@ Soil information is entered in ``Soil``. Element Type Units Constraints Required Default Notes ================================ ======== =========== =========== ======== ======== ============================================================ ``Conductivity`` double Btu/hr-ft-F > 0 No 1.0 Thermal conductivity of the ground soil [#]_ + ``extension/Diffusivity double TODO > 0 No 0.0208 Diffusivity of the ground soil [#]_ ================================ ======== =========== =========== ======== ======== ============================================================ .. [#] Conductivity used for foundation heat transfer and ground source heat pumps. + .. [#] Diffusivity used for ground source heat pumps. For each neighboring building defined, additional information is entered in a ``extension/Neighbors/NeighborBuilding``. @@ -1923,6 +1925,7 @@ If a ground-to-air heat pump is specified, additional information is entered in ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served + ``AttachedToGeothermalLoop`` idref TODO ID of attached geothermal loop ``extension/PumpPowerWattsPerTon`` double W/ton >= 0 No See [#]_ Pump power [#]_ ``extension/SharedLoopWatts`` double W >= 0 See [#]_ Shared pump power [#]_ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed @@ -2031,6 +2034,29 @@ If a backup type of "separate" is provided, additional information is entered in - The conditioned space cannot be partially heated (i.e., the sum of all ``FractionHeatLoadServed`` must be 1). - There cannot be multiple backup heating systems. +.. _geothermal_loops: + +HPXML Geothermal Loops +********************** + +Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop``. + + ================================= ======== =========== =========== ======== ========= =============================================== + Element Type Units Constraints Required Default Notes + ================================= ======== =========== =========== ======== ========= =============================================== + ``SystemIdentifier`` id Yes Unique identifier + ``LoopFlow`` double No autosized + ``BoreholesOrTrenches/Count`` integer No autosized + ``BoreholesOrTrenches/Length`` double No autosized + ``BoreholesOrTrenches/Spacing`` double ft No 20.0 + ``BoreholesOrTrenches/Diameter`` double in No 5.0 + ``Grout/Conductivity`` double Btu/hr-ft-F No 0.4 + ``Pipe/Conductivity`` double Btu/hr-ft-F No 0.23 + ``Pipe/Diameter`` double in [#]_ No 0.75 + ================================= ======== =========== =========== ======== ========= =============================================== + + .. [#] Pipe diameter must be either 3/4", 1", or 1-1/4". + .. _hvac_control: HPXML HVAC Control From a8afefd65ad02e952ecac173a62f88cb50738006 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 30 May 2023 14:40:15 -0700 Subject: [PATCH 018/217] Update build description, hvac sizing, and docs. --- BuildResidentialHPXML/measure.rb | 2 +- BuildResidentialHPXML/measure.xml | 8 +++---- HPXMLtoOpenStudio/measure.xml | 6 ++--- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 28 ++++++++++++---------- docs/source/workflow_inputs.rst | 21 +++++++++------- 5 files changed, 35 insertions(+), 30 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index d0becc6431..df9e4e34ac 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1369,7 +1369,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_boreholes_or_trenches_length', false) arg.setDisplayName('Geothermal Loop: Boreholes or Trenches Length') - arg.setDescription("Total length of boreholes (vertical) or trenches (horizontal). Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default is used.") + arg.setDescription("Length of each borehole (vertical) or trench (horizontal). Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default is used.") arg.setUnits('ft') args << arg diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 838489ee22..00c27f36e3 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - b6f74f20-3400-46fd-adb9-a9a7efee46a3 - 2023-05-30T19:57:20Z + 421aacf4-f3c3-44d1-bfa0-191d16a6b3ff + 2023-05-30T21:35:37Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -2794,7 +2794,7 @@ geothermal_loop_boreholes_or_trenches_length Geothermal Loop: Boreholes or Trenches Length - Total length of boreholes (vertical) or trenches (horizontal). Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default is used. + Length of each borehole (vertical) or trench (horizontal). Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default is used. Double ft false @@ -6774,7 +6774,7 @@ measure.rb rb script - CF9A4983 + B8515628 geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index fa58e450b1..f3c800dc3b 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 176e5157-cafc-4351-a63c-22d07916aaa3 - 2023-05-30T19:57:22Z + 93057d5e-826c-483a-81d7-ac909198c565 + 2023-05-30T21:35:39Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -280,7 +280,7 @@ hvac_sizing.rb rb resource - E1A0EE29 + D622830E lighting.rb diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index bb1213287b..5e9f6013d2 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1892,8 +1892,8 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) pipe_r_value = gshp_hx_pipe_rvalue(hvac_cooling) nom_length_heat, nom_length_cool = gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, bore_diameter, grout_conductivity, pipe_r_value) - bore_length = geothermal_loop.bore_length - if bore_length.nil? + bore_depth = geothermal_loop.bore_length + if bore_depth.nil? bore_length_heat = nom_length_heat * hvac_sizing_values.Heat_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') bore_length_cool = nom_length_cool * hvac_sizing_values.Cool_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') bore_length = [bore_length_heat, bore_length_cool].max @@ -1908,21 +1908,23 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) if num_bore_holes.nil? num_bore_holes = [1, (UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') + 0.5).floor].max end - bore_depth = (bore_length / num_bore_holes).floor # ft - min_bore_depth = 0.15 * bore_spacing # 0.15 is the maximum Spacing2DepthRatio defined for the G-function - for _i in 0..4 - if (bore_depth < min_bore_depth) && (num_bore_holes > 1) - num_bore_holes -= 1 - bore_depth = (bore_length / num_bore_holes).floor - elsif bore_depth > 345 - num_bore_holes += 1 - bore_depth = (bore_length / num_bore_holes).floor + if bore_depth.nil? + bore_depth = (bore_length / num_bore_holes).floor # ft + min_bore_depth = 0.15 * bore_spacing # 0.15 is the maximum Spacing2DepthRatio defined for the G-function + + for _i in 0..4 + if (bore_depth < min_bore_depth) && (num_bore_holes > 1) + num_bore_holes -= 1 + bore_depth = (bore_length / num_bore_holes).floor + elsif bore_depth > 345 + num_bore_holes += 1 + bore_depth = (bore_length / num_bore_holes).floor + end end + bore_depth = (bore_length / num_bore_holes).floor + 5 end - bore_depth = (bore_length / num_bore_holes).floor + 5 - if num_bore_holes == 1 bore_config = 'single' elsif num_bore_holes == 2 diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 7578b4fbf0..31738ee193 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -550,7 +550,7 @@ Soil information is entered in ``Soil``. Element Type Units Constraints Required Default Notes ================================ ======== =========== =========== ======== ======== ============================================================ ``Conductivity`` double Btu/hr-ft-F > 0 No 1.0 Thermal conductivity of the ground soil [#]_ - ``extension/Diffusivity double TODO > 0 No 0.0208 Diffusivity of the ground soil [#]_ + ``extension/Diffusivity`` double TODO > 0 No 0.0208 Diffusivity of the ground soil [#]_ ================================ ======== =========== =========== ======== ======== ============================================================ .. [#] Conductivity used for foundation heat transfer and ground source heat pumps. @@ -2041,20 +2041,23 @@ HPXML Geothermal Loops Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop``. - ================================= ======== =========== =========== ======== ========= =============================================== - Element Type Units Constraints Required Default Notes - ================================= ======== =========== =========== ======== ========= =============================================== - ``SystemIdentifier`` id Yes Unique identifier - ``LoopFlow`` double No autosized - ``BoreholesOrTrenches/Count`` integer No autosized - ``BoreholesOrTrenches/Length`` double No autosized + ================================= ======== =========== =========== ======== ============== =============================================== + Element Type Units Constraints Required Default Notes + ================================= ======== =========== =========== ======== ============== =============================================== + ``SystemIdentifier`` id Yes Unique identifier + ``LoopFlow`` double gal/min No autosized [#]_ + ``BoreholesOrTrenches/Count`` integer No autosized [#]_ + ``BoreholesOrTrenches/Length`` double ft No autosized [#]_ ``BoreholesOrTrenches/Spacing`` double ft No 20.0 ``BoreholesOrTrenches/Diameter`` double in No 5.0 ``Grout/Conductivity`` double Btu/hr-ft-F No 0.4 ``Pipe/Conductivity`` double Btu/hr-ft-F No 0.23 ``Pipe/Diameter`` double in [#]_ No 0.75 - ================================= ======== =========== =========== ======== ========= =============================================== + ================================= ======== =========== =========== ======== ============== =============================================== + .. [#] Loop flow autosized per TODO. + .. [#] Number of boreholes/trenches autosized per TODO. + .. [#] Borehole/trench length autosized per TODO. .. [#] Pipe diameter must be either 3/4", 1", or 1-1/4". .. _hvac_control: From e1c508c8a0eca2a55a12503e478497ce64ac1815 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 30 May 2023 22:26:01 +0000 Subject: [PATCH 019/217] Latest results. --- workflow/tests/base_results/results.csv | 1 + workflow/tests/base_results/results_bills.csv | 1 + 2 files changed, 2 insertions(+) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 0d797ab8bd..8d44a73b69 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -48,6 +48,7 @@ base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.969,27.969,27.969,27.969,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.818,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.9,1820.0,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml,28.552,28.552,28.552,28.552,0.0,0.0,0.0,0.0,0.0,0.0,0.186,0.289,0.0,0.0,2.384,2.926,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1736.9,2012.0,3.454,7.015,0.0,-0.014,2.531,0.0,0.0,0.423,4.098,-2.655,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.694,0.0,0.0,-4.703,-0.801,0.0,-0.009,-1.022,0.0,0.0,-0.04,-1.605,5.502,0.0,0.0,-0.005,0.0,-0.337,-0.495,-1.325,-0.37,0.0,0.0,7.264,1.226,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.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 bb6e9cb791..686bc0a7d0 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -48,6 +48,7 @@ base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1214.92,1 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1047.71,144.0,903.71,0.0,1047.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-generator.xml,1545.52,144.0,873.25,0.0,1017.25,144.0,4.85,148.85,0.0,0.0,0.0,0.0,379.42,379.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,1075.4,144.0,931.4,0.0,1075.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml,1094.81,144.0,950.81,0.0,1094.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,950.2,144.0,553.02,0.0,697.02,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,930.16,144.0,546.72,0.0,690.72,144.0,95.44,239.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,1456.89,144.0,1023.58,0.0,1167.58,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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 7725cac5c3f4b7ecac3e43b569463aa680427a4d Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 30 May 2023 16:55:17 -0700 Subject: [PATCH 020/217] Updates for shank spacing. --- BuildResidentialHPXML/measure.rb | 15 +++++++++++++-- BuildResidentialHPXML/measure.xml | 17 +++++++++++++---- HPXMLtoOpenStudio/measure.xml | 12 ++++++------ HPXMLtoOpenStudio/resources/hpxml.rb | 8 +++++--- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 18 ++++++++++++------ .../resources/hpxml_schematron/EPvalidator.xml | 2 ++ HPXMLtoOpenStudio/resources/hvac.rb | 8 ++++---- 7 files changed, 55 insertions(+), 25 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index df9e4e34ac..517a912762 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1369,7 +1369,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_boreholes_or_trenches_length', false) arg.setDisplayName('Geothermal Loop: Boreholes or Trenches Length') - arg.setDescription("Length of each borehole (vertical) or trench (horizontal). Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default is used.") + arg.setDescription("Average length of each borehole (vertical) or trench (horizontal). Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default is used.") arg.setUnits('ft') args << arg @@ -1408,6 +1408,12 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setUnits('in') args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_pipe_shank_spacing', false) + arg.setDisplayName('Geothermal Loop: Pipe Shank Spacing') + arg.setDescription("Measured as center-to-center (not edge-to-edge) distance between two branches of a vertical U-tube. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") + arg.setUnits('in') + args << arg + heating_system_2_type_choices = OpenStudio::StringVector.new heating_system_2_type_choices << 'none' heating_system_2_type_choices << HPXML::HVACTypeFurnace @@ -5031,6 +5037,10 @@ def self.set_geothermal_loop(hpxml, args) end end + if args[:geothermal_loop_pipe_shank_spacing].is_initialized + shank_spacing = args[:geothermal_loop_pipe_shank_spacing].get + end + hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}", loop_flow: loop_flow, num_bore_holes: num_bore_holes, @@ -5039,7 +5049,8 @@ def self.set_geothermal_loop(hpxml, args) bore_diameter: bore_diameter, grout_conductivity: grout_conductivity, pipe_cond: pipe_cond, - pipe_size: pipe_size) + pipe_size: pipe_size, + shank_spacing: shank_spacing) hpxml.heat_pumps[-1].geothermal_loop_idref = hpxml.geothermal_loops[-1].id end diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 00c27f36e3..5c8f4622ba 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 421aacf4-f3c3-44d1-bfa0-191d16a6b3ff - 2023-05-30T21:35:37Z + 1f47efbe-ac4a-4b60-a74a-32f38838a872 + 2023-05-30T23:54:52Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -2794,7 +2794,7 @@ geothermal_loop_boreholes_or_trenches_length Geothermal Loop: Boreholes or Trenches Length - Length of each borehole (vertical) or trench (horizontal). Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default is used. + Average length of each borehole (vertical) or trench (horizontal). Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default is used. Double ft false @@ -2859,6 +2859,15 @@ + + geothermal_loop_pipe_shank_spacing + Geothermal Loop: Pipe Shank Spacing + Measured as center-to-center (not edge-to-edge) distance between two branches of a vertical U-tube. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. + Double + in + false + false + heating_system_2_type Heating System 2: Type @@ -6774,7 +6783,7 @@ measure.rb rb script - B8515628 + FF2EA4BF geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index f3c800dc3b..7204cf0e06 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 93057d5e-826c-483a-81d7-ac909198c565 - 2023-05-30T21:35:39Z + 932b5d8a-7521-482c-b8d8-602fea5b6fc8 + 2023-05-30T23:54:54Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -238,13 +238,13 @@ hpxml.rb rb resource - E5CD6A60 + 11694549 hpxml_defaults.rb rb resource - 53F2972F + 163A552B hpxml_schema/HPXML.xsd @@ -262,7 +262,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 07FC197B + FB8E5479 hpxml_schematron/iso-schematron.xsd @@ -274,7 +274,7 @@ hvac.rb rb resource - D3136606 + 967CF4C1 hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index aaf65bf1c4..670896e174 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -3997,7 +3997,7 @@ def from_oga(hpxml) end class GeothermalLoop < BaseElement - ATTRS = [:id, :loop_flow, :num_bore_holes, :bore_spacing, :bore_length, :bore_diameter, :grout_conductivity, :pipe_cond, :pipe_size] + ATTRS = [:id, :loop_flow, :num_bore_holes, :bore_spacing, :bore_length, :bore_diameter, :grout_conductivity, :pipe_cond, :pipe_size, :shank_spacing] attr_accessor(*ATTRS) def delete @@ -4017,7 +4017,7 @@ def to_oga(doc) sys_id = XMLHelper.add_element(geothermal_loop, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) XMLHelper.add_element(geothermal_loop, 'LoopFlow', @loop_flow, :float, @loop_flow_isdefaulted) unless @loop_flow.nil? - if (not @num_bore_holes.nil?) || (not @bore_spacing.nil?) || (not @bore_length.nil?) + if (not @num_bore_holes.nil?) || (not @bore_spacing.nil?) || (not @bore_length.nil?) || (not @bore_diameter.nil?) boreholes_or_trenches = XMLHelper.add_element(geothermal_loop, 'BoreholesOrTrenches') XMLHelper.add_element(boreholes_or_trenches, 'Count', @num_bore_holes, :integer, @num_bore_holes_isdefaulted) unless @num_bore_holes.nil? XMLHelper.add_element(boreholes_or_trenches, 'Length', @bore_length, :float, @bore_length_isdefaulted) unless @bore_length.nil? @@ -4028,10 +4028,11 @@ def to_oga(doc) grout = XMLHelper.add_element(geothermal_loop, 'Grout') XMLHelper.add_element(grout, 'Conductivity', @grout_conductivity, :float, @grout_conductivity_isdefaulted) unless @grout_conductivity.nil? end - if (not @pipe_cond.nil?) || (not @pipe_size.nil?) + if (not @pipe_cond.nil?) || (not @pipe_size.nil?) || (not @shank_spacing.nil?) pipe = XMLHelper.add_element(geothermal_loop, 'Pipe') XMLHelper.add_element(pipe, 'Conductivity', @pipe_cond, :float, @pipe_cond_isdefaulted) unless @pipe_cond.nil? XMLHelper.add_element(pipe, 'Diameter', @pipe_size, :float, @pipe_size_isdefaulted) unless @pipe_size.nil? + XMLHelper.add_element(pipe, 'ShankSpacing', @shank_spacing, :float, @shank_spacing_isdefaulted) unless @shank_spacing.nil? end end @@ -4047,6 +4048,7 @@ def from_oga(geothermal_loop) @grout_conductivity = XMLHelper.get_value(geothermal_loop, 'Grout/Conductivity', :float) @pipe_cond = XMLHelper.get_value(geothermal_loop, 'Pipe/Conductivity', :float) @pipe_size = XMLHelper.get_value(geothermal_loop, 'Pipe/Diameter', :float) + @shank_spacing = XMLHelper.get_value(geothermal_loop, 'Pipe/ShankSpacing', :float) end end diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 85050564b7..46d20a49c5 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1504,6 +1504,14 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) HVAC.set_mshp_downselected_speed_indices(heat_pump) elsif [HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type + if heat_pump.geothermal_loop.pipe_size.nil? + heat_pump.geothermal_loop.pipe_size = 0.75 # in + heat_pump.geothermal_loop.pipe_size_isdefaulted = true + end + + HVAC.set_gshp_assumptions(heat_pump, weather) + HVAC.set_curves_gshp(heat_pump) + if heat_pump.geothermal_loop.nil? hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}") heat_pump.geothermal_loop_idref = hpxml.geothermal_loops[-1].id @@ -1529,13 +1537,11 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) heat_pump.geothermal_loop.pipe_cond_isdefaulted = true end - if heat_pump.geothermal_loop.pipe_size.nil? - heat_pump.geothermal_loop.pipe_size = 0.75 # in - heat_pump.geothermal_loop.pipe_size_isdefaulted = true + if heat_pump.geothermal_loop.shank_spacing.nil? + hp_ap = heat_pump.additional_properties + heat_pump.geothermal_loop.shank_spacing = hp_ap.u_tube_spacing + hp_ap.pipe_od # Distance from center of pipe to center of pipe + heat_pump.geothermal_loop.shank_spacing_isdefaulted = true end - - HVAC.set_gshp_assumptions(heat_pump, weather) - HVAC.set_curves_gshp(heat_pump) elsif [HPXML::HVACTypeHeatPumpWaterLoopToAir].include? heat_pump.heat_pump_type HVAC.set_heat_pump_temperatures(heat_pump, runner) diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index c054114b84..38ccb9e1f2 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1186,6 +1186,7 @@ Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="EER"]/Value Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="COP"]/Value + Expected 1 element(s) for xpath: AttachedToGeothermalLoop Expected 0 or 1 element(s) for xpath: extension/PumpPowerWattsPerTon Expected extension/PumpPowerWattsPerTon to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM @@ -1307,6 +1308,7 @@ Expected 0 or 1 element(s) for xpath: Pipe/Conductivity Expected 0 or 1 element(s) for xpath: Pipe/Diameter Expected Pipe/Diameter to be 0.75, 1.0, or 1.25 + Expected 0 or 1 element(s) for xpath: Pipe/ShankSpacing diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index ba1bb45b9e..19e7536de7 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -281,7 +281,7 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, ground_heat_exch_vert.setGroutThermalConductivity(UnitConversions.convert(heat_pump.geothermal_loop.grout_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) ground_heat_exch_vert.setPipeThermalConductivity(UnitConversions.convert(heat_pump.geothermal_loop.pipe_cond, 'Btu/(hr*ft*R)', 'W/(m*K)')) ground_heat_exch_vert.setPipeOutDiameter(UnitConversions.convert(hp_ap.pipe_od, 'in', 'm')) - ground_heat_exch_vert.setUTubeDistance(UnitConversions.convert(hp_ap.shank_spacing, 'in', 'm')) + ground_heat_exch_vert.setUTubeDistance(UnitConversions.convert(heat_pump.geothermal_loop.shank_spacing, 'in', 'm')) ground_heat_exch_vert.setPipeThickness(UnitConversions.convert((hp_ap.pipe_od - hp_ap.pipe_id) / 2.0, 'in', 'm')) ground_heat_exch_vert.setMaximumLengthofSimulation(1) ground_heat_exch_vert.setGFunctionReferenceRatio(0.0005) @@ -3350,6 +3350,7 @@ def self.set_heat_rated_eirs_mshp(heat_pump, num_speeds) def self.set_gshp_assumptions(heat_pump, weather) hp_ap = heat_pump.additional_properties + geothermal_loop = heat_pump.geothermal_loop hp_ap.design_chw = [85.0, weather.design.CoolingDrybulb - 15.0, weather.data.AnnualAvgDrybulb + 10.0].max # Temperature of water entering indoor coil,use 85F as lower bound hp_ap.design_delta_t = 10.0 @@ -3360,7 +3361,7 @@ def self.set_gshp_assumptions(heat_pump, weather) else hp_ap.design_hw = [35.0, weather.design.HeatingDrybulb + 35.0, weather.data.AnnualAvgDrybulb - 10.0].min # Temperature of fluid entering indoor coil, use 35F as upper bound end - pipe_size = heat_pump.geothermal_loop.pipe_size + pipe_size = geothermal_loop.pipe_size # Pipe nominal size conversion to pipe outside diameter and inside diameter, # only pipe sizes <= 2" are used here with DR11 (dimension ratio), if pipe_size == 0.75 # 3/4" pipe @@ -3383,9 +3384,8 @@ def self.set_gshp_assumptions(heat_pump, weather) hp_ap.u_tube_spacing = 0.9661 elsif hp_ap.u_tube_spacing_type == 'c' # Both tubes placed against outer edge of borehole - hp_ap.u_tube_spacing = hp_ap.bore_diameter - 2 * hp_ap.pipe_od + hp_ap.u_tube_spacing = geothermal_loop.bore_diameter - 2 * hp_ap.pipe_od end - hp_ap.shank_spacing = hp_ap.u_tube_spacing + hp_ap.pipe_od # Distance from center of pipe to center of pipe end def self.calc_mshp_hspf(cop_47, c_d, capacity_ratio, cfm_tons, fan_power_rated, heat_eir_ft_spec, heat_cap_ft_spec) From 1e190b28ad5b793f626a326194f355486d2f344b Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 30 May 2023 16:56:28 -0700 Subject: [PATCH 021/217] Sample files for testing individual loop arguments. --- workflow/hpxml_inputs.json | 52 +- ...e-hvac-geothermal-loop-boreholes-count.xml | 561 +++++++++++++++++ ...ac-geothermal-loop-boreholes-diameter.xml} | 215 ++++--- ...-hvac-geothermal-loop-boreholes-length.xml | 561 +++++++++++++++++ ...hvac-geothermal-loop-boreholes-spacing.xml | 561 +++++++++++++++++ ...vac-geothermal-loop-ground-diffusivity.xml | 563 ++++++++++++++++++ ...vac-geothermal-loop-grout-conductivity.xml | 561 +++++++++++++++++ .../base-hvac-geothermal-loop-loop-flow.xml | 559 +++++++++++++++++ ...hvac-geothermal-loop-pipe-conductivity.xml | 561 +++++++++++++++++ ...ase-hvac-geothermal-loop-pipe-diameter.xml | 561 +++++++++++++++++ ...vac-geothermal-loop-pipe-shank-spacing.xml | 561 +++++++++++++++++ 11 files changed, 5234 insertions(+), 82 deletions(-) create mode 100644 workflow/sample_files/base-hvac-geothermal-loop-boreholes-count.xml rename workflow/sample_files/{base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml => base-hvac-geothermal-loop-boreholes-diameter.xml} (72%) create mode 100644 workflow/sample_files/base-hvac-geothermal-loop-boreholes-length.xml create mode 100644 workflow/sample_files/base-hvac-geothermal-loop-boreholes-spacing.xml create mode 100644 workflow/sample_files/base-hvac-geothermal-loop-ground-diffusivity.xml create mode 100644 workflow/sample_files/base-hvac-geothermal-loop-grout-conductivity.xml create mode 100644 workflow/sample_files/base-hvac-geothermal-loop-loop-flow.xml create mode 100644 workflow/sample_files/base-hvac-geothermal-loop-pipe-conductivity.xml create mode 100644 workflow/sample_files/base-hvac-geothermal-loop-pipe-diameter.xml create mode 100644 workflow/sample_files/base-hvac-geothermal-loop-pipe-shank-spacing.xml diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index e0d796eaa0..db33ab3033 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -928,18 +928,6 @@ "heat_pump_heating_efficiency_type": "COP", "heat_pump_cooling_efficiency_type": "EER" }, - "sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml": { - "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml", - "site_ground_diffusivity": 0.03, - "geothermal_loop_loop_flow": 12.3, - "geothermal_loop_boreholes_or_trenches_count": 5, - "geothermal_loop_boreholes_or_trenches_length": 23.4, - "geothermal_loop_boreholes_or_trenches_spacing": 34.5, - "geothermal_loop_boreholes_or_trenches_diameter": 6.0, - "geothermal_loop_grout_conductivity": 0.5, - "geothermal_loop_pipe_conductivity": 0.25, - "geothermal_loop_pipe_diameter": "1\" pipe" - }, "sample_files/base-bldgtype-multifamily-shared-laundry-room.xml": { "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml" }, @@ -2359,6 +2347,46 @@ "sample_files/base-hvac-furnace-x3-dse.xml": { "parent_hpxml": "sample_files/base.xml" }, + "sample_files/base-hvac-geothermal-loop-ground-diffusivity.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_ground_diffusivity": 0.03 + }, + "sample_files/base-hvac-geothermal-loop-loop-flow.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_loop_flow": 10.0 + }, + "sample_files/base-hvac-geothermal-loop-boreholes-count.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_boreholes_or_trenches_count": 4 + }, + "sample_files/base-hvac-geothermal-loop-boreholes-length.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_boreholes_or_trenches_length": 350.0 + }, + "sample_files/base-hvac-geothermal-loop-boreholes-spacing.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_boreholes_or_trenches_spacing": 25.0 + }, + "sample_files/base-hvac-geothermal-loop-boreholes-diameter.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_boreholes_or_trenches_diameter": 6.0 + }, + "sample_files/base-hvac-geothermal-loop-grout-conductivity.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_grout_conductivity": 0.5 + }, + "sample_files/base-hvac-geothermal-loop-pipe-conductivity.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_pipe_conductivity": 0.3 + }, + "sample_files/base-hvac-geothermal-loop-pipe-diameter.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_pipe_diameter": "1\" pipe" + }, + "sample_files/base-hvac-geothermal-loop-pipe-shank-spacing.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_pipe_shank_spacing": 2.5 + }, "sample_files/base-hvac-ground-to-air-heat-pump.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_type": "none", diff --git a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-count.xml b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-count.xml new file mode 100644 index 0000000000..742035c4c9 --- /dev/null +++ b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-count.xml @@ -0,0 +1,561 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + + 4 + + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-diameter.xml similarity index 72% rename from workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml rename to workflow/sample_files/base-hvac-geothermal-loop-boreholes-diameter.xml index 6b24607741..5d5e64dade 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-diameter.xml @@ -33,28 +33,23 @@ suburban - attached on one side - unit above and below + stand-alone + no units above or below 180 electricity natural gas - - - 0.03 - - - apartment unit - 1.0 + single-family detached + 2.0 1.0 8.0 3 2 - 900.0 - 7200.0 + 2700.0 + 21600.0 @@ -74,31 +69,72 @@ - unit exterior only 50.0 ACH 3.0 - 7200.0 + 21600.0 - + + false + + false + + + - + + true + + + + + + + + attic - unvented + 1509.3 + 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 + + + @@ -107,7 +143,7 @@ - 685.9 + 1200.0 wood siding 0.7 0.92 @@ -121,60 +157,99 @@ - other housing unit - living space + outside + attic - unvented + gable - 293.9 + 225.0 + wood siding 0.7 0.92 - - gypsum board - 4.0 - - - - other housing unit - living space - floor - - - - 900.0 + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + - - 2.1 + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + - + + + - - other housing unit + + attic - unvented living space ceiling - 900.0 + 1350.0 gypsum board - - 2.1 + + 39.3 + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + - 35.3 + 108.0 0 0.33 0.45 @@ -188,8 +263,8 @@ - 35.3 - 180 + 72.0 + 90 0.33 0.45 @@ -202,8 +277,8 @@ - 52.9 - 270 + 108.0 + 180 0.33 0.45 @@ -214,12 +289,26 @@ 0.67 + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + - 20.0 + 40.0 180 4.4 @@ -235,12 +324,10 @@ - true - 6 ground-to-air electricity - 12000.0 - 12000.0 + 36000.0 + 36000.0 0.73 integrated electricity @@ -248,7 +335,7 @@ Percent 1.0 - 12000.0 + 36000.0 1.0 1.0 @@ -261,26 +348,14 @@ - 0.0 - 600.0 + 30.0 - 12.3 - 5 - 23.4 - 34.5 6.0 - - 0.5 - - - 0.25 - 1.0 - @@ -297,7 +372,7 @@ supply CFM25 - 0.0 + 75.0 to outside @@ -305,22 +380,22 @@ return CFM25 - 0.0 + 25.0 to outside supply - 0.0 - living space + 4.0 + attic - unvented 150.0 return 0.0 - living space + attic - unvented 50.0 @@ -473,7 +548,7 @@ other kWh/year - 819.0 + 2457.0 0.855 diff --git a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-length.xml b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-length.xml new file mode 100644 index 0000000000..c7d2518871 --- /dev/null +++ b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-length.xml @@ -0,0 +1,561 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + + 350.0 + + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-spacing.xml b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-spacing.xml new file mode 100644 index 0000000000..b39f329e1f --- /dev/null +++ b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-spacing.xml @@ -0,0 +1,561 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + + 25.0 + + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-ground-diffusivity.xml b/workflow/sample_files/base-hvac-geothermal-loop-ground-diffusivity.xml new file mode 100644 index 0000000000..4b000cd87e --- /dev/null +++ b/workflow/sample_files/base-hvac-geothermal-loop-ground-diffusivity.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + 0.03 + + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-grout-conductivity.xml b/workflow/sample_files/base-hvac-geothermal-loop-grout-conductivity.xml new file mode 100644 index 0000000000..faf25efccc --- /dev/null +++ b/workflow/sample_files/base-hvac-geothermal-loop-grout-conductivity.xml @@ -0,0 +1,561 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + + 0.5 + + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-loop-flow.xml b/workflow/sample_files/base-hvac-geothermal-loop-loop-flow.xml new file mode 100644 index 0000000000..c2aab45481 --- /dev/null +++ b/workflow/sample_files/base-hvac-geothermal-loop-loop-flow.xml @@ -0,0 +1,559 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + 10.0 + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-pipe-conductivity.xml b/workflow/sample_files/base-hvac-geothermal-loop-pipe-conductivity.xml new file mode 100644 index 0000000000..726c7487ca --- /dev/null +++ b/workflow/sample_files/base-hvac-geothermal-loop-pipe-conductivity.xml @@ -0,0 +1,561 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + + 0.3 + + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-pipe-diameter.xml b/workflow/sample_files/base-hvac-geothermal-loop-pipe-diameter.xml new file mode 100644 index 0000000000..a3bf01af7c --- /dev/null +++ b/workflow/sample_files/base-hvac-geothermal-loop-pipe-diameter.xml @@ -0,0 +1,561 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + + 1.0 + + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-pipe-shank-spacing.xml b/workflow/sample_files/base-hvac-geothermal-loop-pipe-shank-spacing.xml new file mode 100644 index 0000000000..eeb56cf45d --- /dev/null +++ b/workflow/sample_files/base-hvac-geothermal-loop-pipe-shank-spacing.xml @@ -0,0 +1,561 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + + 2.5 + + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file From 65af2416f5d7b3dbbdc50b270ee0406c638de345 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 30 May 2023 16:56:36 -0700 Subject: [PATCH 022/217] Update the docs. --- docs/source/workflow_inputs.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 31738ee193..4031d84fbd 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2050,15 +2050,17 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ``BoreholesOrTrenches/Length`` double ft No autosized [#]_ ``BoreholesOrTrenches/Spacing`` double ft No 20.0 ``BoreholesOrTrenches/Diameter`` double in No 5.0 - ``Grout/Conductivity`` double Btu/hr-ft-F No 0.4 - ``Pipe/Conductivity`` double Btu/hr-ft-F No 0.23 + ``Grout/Conductivity`` double Btu/hr-ft-F > 0 No 0.4 + ``Pipe/Conductivity`` double Btu/hr-ft-F > 0 No 0.23 ``Pipe/Diameter`` double in [#]_ No 0.75 + ``Pipe/ShankSpacing`` double in No [#]_ ================================= ======== =========== =========== ======== ============== =============================================== .. [#] Loop flow autosized per TODO. .. [#] Number of boreholes/trenches autosized per TODO. .. [#] Borehole/trench length autosized per TODO. .. [#] Pipe diameter must be either 3/4", 1", or 1-1/4". + .. [#] Sum of U-tube spacing and pipe outer diameter. .. _hvac_control: From c7271cc2f0225d9382312216ac02bb8a8c887d36 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 31 May 2023 08:13:50 -0700 Subject: [PATCH 023/217] Add loop before anything else in defaults resource. --- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 46d20a49c5..bdc4b9fbb3 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1504,6 +1504,11 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) HVAC.set_mshp_downselected_speed_indices(heat_pump) elsif [HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type + if heat_pump.geothermal_loop.nil? + hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}") + heat_pump.geothermal_loop_idref = hpxml.geothermal_loops[-1].id + end + if heat_pump.geothermal_loop.pipe_size.nil? heat_pump.geothermal_loop.pipe_size = 0.75 # in heat_pump.geothermal_loop.pipe_size_isdefaulted = true @@ -1512,11 +1517,6 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) HVAC.set_gshp_assumptions(heat_pump, weather) HVAC.set_curves_gshp(heat_pump) - if heat_pump.geothermal_loop.nil? - hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}") - heat_pump.geothermal_loop_idref = hpxml.geothermal_loops[-1].id - end - if heat_pump.geothermal_loop.bore_spacing.nil? heat_pump.geothermal_loop.bore_spacing = 20.0 # ft, distance between bores heat_pump.geothermal_loop.bore_spacing_isdefaulted = true From e67bba00032ba38b65e530c8325114eddd5a7f93 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 31 May 2023 08:14:06 -0700 Subject: [PATCH 024/217] Updates to epvalidator. --- HPXMLtoOpenStudio/measure.xml | 8 ++++---- .../resources/hpxml_schematron/EPvalidator.xml | 17 +++++++++++++---- 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 7204cf0e06..deca98c588 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 932b5d8a-7521-482c-b8d8-602fea5b6fc8 - 2023-05-30T23:54:54Z + 17e118fb-d464-4b91-a757-783170f60b3f + 2023-05-31T15:12:01Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -244,7 +244,7 @@ hpxml_defaults.rb rb resource - 163A552B + AC6EAE27
hpxml_schema/HPXML.xsd @@ -262,7 +262,7 @@ hpxml_schematron/EPvalidator.xml xml resource - FB8E5479 + 48651563 hpxml_schematron/iso-schematron.xsd diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 38ccb9e1f2..c93cf8385f 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -306,8 +306,9 @@ [Soil] - Expected 1 or more element(s) for xpath: Conductivity | extension/Diffusivity + Expected 0 or 1 element(s) for xpath: Conductivity Expected Conductivity to be greater than 0 + Expected 0 or 1 element(s) for xpath: extension/Diffusivity Expected extension/Diffusivity to be greater than 0 @@ -1186,7 +1187,7 @@ Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="EER"]/Value Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="COP"]/Value - Expected 1 element(s) for xpath: AttachedToGeothermalLoop + Expected 0 or 1 element(s) for xpath: AttachedToGeothermalLoop Expected 0 or 1 element(s) for xpath: extension/PumpPowerWattsPerTon Expected extension/PumpPowerWattsPerTon to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM @@ -1211,7 +1212,7 @@ Expected 1 element(s) for xpath: ../../../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] Expected 1 element(s) for xpath: NumberofUnitsServed Expected NumberofUnitsServed to be greater than 1 - Expected 1 element(s) for xpath: AttachedToGeothermalLoop + Expected 0 or 1 element(s) for xpath: AttachedToGeothermalLoop Expected 1 element(s) for xpath: extension/SharedLoopWatts Expected extension/SharedLoopWatts to be greater than or equal to 0 @@ -1300,15 +1301,23 @@ [GeothermalLoop] Expected 0 or 1 element(s) for xpath: LoopFlow + Expected LoopFlow to be greater than 0 Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Count + Expected BoreholesOrTrenches/Count to be greater than 0 Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Length + Expected BoreholesOrTrenches/Length to be greater than 0 Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Spacing + Expected BoreholesOrTrenches/Spacing to be greater than 0 Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Diameter + Expected BoreholesOrTrenches/Diameter to be greater than 0 Expected 0 or 1 element(s) for xpath: Grout/Conductivity - Expected 0 or 1 element(s) for xpath: Pipe/Conductivity + Expected Grout/Conductivity to be greater than 0 + Expected 0 or 1 element(s) for xpath: Pipe/Conductivity| + Expected Pipe/Conductivity to be greater than 0| Expected 0 or 1 element(s) for xpath: Pipe/Diameter Expected Pipe/Diameter to be 0.75, 1.0, or 1.25 Expected 0 or 1 element(s) for xpath: Pipe/ShankSpacing + Expected Pipe/ShankSpacing to be greater than 0 From c0fcdbc00da5f694ab784de6dddc075ee8a32d61 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 31 May 2023 08:14:11 -0700 Subject: [PATCH 025/217] Updates to docs. --- docs/source/workflow_inputs.rst | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 4031d84fbd..d4e77a01ea 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -1925,7 +1925,7 @@ If a ground-to-air heat pump is specified, additional information is entered in ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served - ``AttachedToGeothermalLoop`` idref TODO ID of attached geothermal loop + ``AttachedToGeothermalLoop`` idref See [#]_ No ID of attached geothermal loop ``extension/PumpPowerWattsPerTon`` double W/ton >= 0 No See [#]_ Pump power [#]_ ``extension/SharedLoopWatts`` double W >= 0 See [#]_ Shared pump power [#]_ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed @@ -1940,6 +1940,7 @@ If a ground-to-air heat pump is specified, additional information is entered in .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1. + .. [#] AttachedToGeothermalLoop must reference a ``GeothermalLoop``. .. [#] If PumpPowerWattsPerTon not provided, defaults to 30 W/ton per `ANSI/RESNET/ICC 301-2019 `_ for a closed loop system. .. [#] Pump power is calculated using PumpPowerWattsPerTon and the cooling capacity in tons, unless the system only provides heating, in which case the heating capacity in tons is used instead. Any pump power that is shared by multiple dwelling units should be included in SharedLoopWatts, *not* PumpPowerWattsPerTon, so that shared loop pump power attributed to the dwelling unit is calculated. @@ -2045,21 +2046,21 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ Element Type Units Constraints Required Default Notes ================================= ======== =========== =========== ======== ============== =============================================== ``SystemIdentifier`` id Yes Unique identifier - ``LoopFlow`` double gal/min No autosized [#]_ - ``BoreholesOrTrenches/Count`` integer No autosized [#]_ - ``BoreholesOrTrenches/Length`` double ft No autosized [#]_ - ``BoreholesOrTrenches/Spacing`` double ft No 20.0 - ``BoreholesOrTrenches/Diameter`` double in No 5.0 + ``LoopFlow`` double gal/min > 0 No autosized [#]_ + ``BoreholesOrTrenches/Count`` integer > 0 No autosized [#]_ + ``BoreholesOrTrenches/Length`` double ft > 0 No autosized [#]_ + ``BoreholesOrTrenches/Spacing`` double ft > 0 No 20.0 + ``BoreholesOrTrenches/Diameter`` double in > 0 No 5.0 ``Grout/Conductivity`` double Btu/hr-ft-F > 0 No 0.4 ``Pipe/Conductivity`` double Btu/hr-ft-F > 0 No 0.23 - ``Pipe/Diameter`` double in [#]_ No 0.75 - ``Pipe/ShankSpacing`` double in No [#]_ + ``Pipe/Diameter`` double in See [#]_ No 0.75 + ``Pipe/ShankSpacing`` double in > 0 No See [#]_ ================================= ======== =========== =========== ======== ============== =============================================== .. [#] Loop flow autosized per TODO. .. [#] Number of boreholes/trenches autosized per TODO. .. [#] Borehole/trench length autosized per TODO. - .. [#] Pipe diameter must be either 3/4", 1", or 1-1/4". + .. [#] Pipe diameter must be either 3/4", 1", or 1-1/4" (i.e, 0.75, 1.0, or 1.25). .. [#] Sum of U-tube spacing and pipe outer diameter. .. _hvac_control: From 9564143fb384f80c85788b2b8aae0886110a919d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 31 May 2023 16:11:16 +0000 Subject: [PATCH 026/217] Latest results. --- workflow/tests/base_results/results.csv | 11 ++++++++++- workflow/tests/base_results/results_bills.csv | 11 ++++++++++- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 8d44a73b69..da47948cec 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -48,7 +48,6 @@ base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.969,27.969,27.969,27.969,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.818,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.9,1820.0,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml,28.552,28.552,28.552,28.552,0.0,0.0,0.0,0.0,0.0,0.0,0.186,0.289,0.0,0.0,2.384,2.926,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1736.9,2012.0,3.454,7.015,0.0,-0.014,2.531,0.0,0.0,0.423,4.098,-2.655,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.694,0.0,0.0,-4.703,-0.801,0.0,-0.009,-1.022,0.0,0.0,-0.04,-1.605,5.502,0.0,0.0,-0.005,0.0,-0.337,-0.495,-1.325,-0.37,0.0,0.0,7.264,1.226,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 @@ -286,6 +285,16 @@ base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0 base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-count.xml,39.585,39.585,39.585,39.585,0.0,0.0,0.0,0.0,0.0,0.0,5.258,0.368,0.0,0.0,2.495,1.023,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.563,0.0,12.686,9.233,0.614,0.0,0.0,0.0,0.0,3219.1,2591.6,20.983,14.721,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.071,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.774,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-diameter.xml,39.58,39.58,39.58,39.58,0.0,0.0,0.0,0.0,0.0,0.0,5.26,0.368,0.0,0.0,2.489,1.022,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.564,0.0,12.685,9.233,0.614,0.0,0.0,0.0,0.0,3218.5,2590.6,20.926,14.72,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.072,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.773,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-length.xml,39.518,39.518,39.518,39.518,0.0,0.0,0.0,0.0,0.0,0.0,5.238,0.365,0.0,0.0,2.456,1.018,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,12.68,9.233,0.614,0.0,0.0,0.0,0.0,3206.9,2571.3,20.866,14.696,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.058,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.768,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-spacing.xml,39.539,39.539,39.539,39.539,0.0,0.0,0.0,0.0,0.0,0.0,5.246,0.366,0.0,0.0,2.467,1.02,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.555,0.0,12.682,9.233,0.614,0.0,0.0,0.0,0.0,3211.0,2577.1,20.886,14.703,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.063,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-ground-diffusivity.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.26,0.368,0.0,0.0,2.488,1.022,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.564,0.0,12.684,9.233,0.614,0.0,0.0,0.0,0.0,3218.3,2588.5,20.921,14.717,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.072,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.772,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-grout-conductivity.xml,39.577,39.577,39.577,39.577,0.0,0.0,0.0,0.0,0.0,0.0,5.26,0.368,0.0,0.0,2.487,1.022,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.563,0.0,12.684,9.233,0.614,0.0,0.0,0.0,0.0,3218.8,2584.8,20.916,14.712,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.072,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.772,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-loop-flow.xml,39.58,39.58,39.58,39.58,0.0,0.0,0.0,0.0,0.0,0.0,5.262,0.368,0.0,0.0,2.488,1.022,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.564,0.0,12.684,9.233,0.614,0.0,0.0,0.0,0.0,3214.8,2586.6,20.906,14.715,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.072,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.772,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-conductivity.xml,39.558,39.558,39.558,39.558,0.0,0.0,0.0,0.0,0.0,0.0,5.253,0.367,0.0,0.0,2.477,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.559,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3214.9,2581.5,20.902,14.709,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.067,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-diameter.xml,39.561,39.561,39.561,39.561,0.0,0.0,0.0,0.0,0.0,0.0,5.251,0.367,0.0,0.0,2.481,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.558,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3214.2,2578.9,20.949,14.704,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.066,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.527,39.527,39.527,39.527,0.0,0.0,0.0,0.0,0.0,0.0,5.242,0.365,0.0,0.0,2.46,1.019,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.552,0.0,12.681,9.233,0.614,0.0,0.0,0.0,0.0,3209.1,2572.6,20.874,14.698,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.06,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.834,33.834,33.834,33.834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.571,0.777,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.556,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2618.9,0.0,14.783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.993,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-heating-only.xml,36.574,36.574,36.574,36.574,0.0,0.0,0.0,0.0,0.0,0.0,5.394,0.763,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,0.0,20.341,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3367.4,1637.3,22.277,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.035,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump.xml,39.556,39.556,39.556,39.556,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.367,0.0,0.0,2.476,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.559,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3214.4,2581.7,20.901,14.709,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.067,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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 686bc0a7d0..a886b2d263 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -48,7 +48,6 @@ base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1214.92,1 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1047.71,144.0,903.71,0.0,1047.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-generator.xml,1545.52,144.0,873.25,0.0,1017.25,144.0,4.85,148.85,0.0,0.0,0.0,0.0,379.42,379.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,1075.4,144.0,931.4,0.0,1075.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump2.xml,1094.81,144.0,950.81,0.0,1094.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,950.2,144.0,553.02,0.0,697.02,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,930.16,144.0,546.72,0.0,690.72,144.0,95.44,239.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,1456.89,144.0,1023.58,0.0,1167.58,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -286,6 +285,16 @@ base-hvac-furnace-oil-only.xml,1760.65,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1798.62,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,621.61,621.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-wood-only.xml,1525.16,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-count.xml,1462.2,144.0,1318.2,0.0,1462.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-diameter.xml,1462.05,144.0,1318.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-length.xml,1459.99,144.0,1315.99,0.0,1459.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-spacing.xml,1460.69,144.0,1316.69,0.0,1460.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-ground-diffusivity.xml,1462.0,144.0,1318.0,0.0,1462.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-grout-conductivity.xml,1461.95,144.0,1317.95,0.0,1461.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-loop-flow.xml,1462.04,144.0,1318.04,0.0,1462.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-conductivity.xml,1461.33,144.0,1317.33,0.0,1461.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-diameter.xml,1461.41,144.0,1317.41,0.0,1461.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-shank-spacing.xml,1460.27,144.0,1316.27,0.0,1460.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,1270.71,144.0,1126.71,0.0,1270.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-heating-only.xml,1361.93,144.0,1217.93,0.0,1361.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump.xml,1461.26,144.0,1317.26,0.0,1461.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 3a3c7d1a1384fd9dd8aa59f0675f7ae40bf93c3f Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 31 May 2023 09:18:34 -0700 Subject: [PATCH 027/217] Typos in epvalidator. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- .../resources/hpxml_schematron/EPvalidator.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index deca98c588..2ae2fc509b 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 17e118fb-d464-4b91-a757-783170f60b3f - 2023-05-31T15:12:01Z + 08d005e6-845b-4a2d-8c7f-f203b8c220a2 + 2023-05-31T16:18:15Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -262,7 +262,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 48651563 + 88D506F4 hpxml_schematron/iso-schematron.xsd diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index c93cf8385f..5bb1fb4219 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1312,8 +1312,8 @@ Expected BoreholesOrTrenches/Diameter to be greater than 0 Expected 0 or 1 element(s) for xpath: Grout/Conductivity Expected Grout/Conductivity to be greater than 0 - Expected 0 or 1 element(s) for xpath: Pipe/Conductivity| - Expected Pipe/Conductivity to be greater than 0| + Expected 0 or 1 element(s) for xpath: Pipe/Conductivity + Expected Pipe/Conductivity to be greater than 0 Expected 0 or 1 element(s) for xpath: Pipe/Diameter Expected Pipe/Diameter to be 0.75, 1.0, or 1.25 Expected 0 or 1 element(s) for xpath: Pipe/ShankSpacing From 2a3a6abb8d59d6834a8212d82967d5040e5572f4 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 1 Jun 2023 14:11:10 -0700 Subject: [PATCH 028/217] Updates for vertical and grout type. --- BuildResidentialHPXML/measure.rb | 1 + BuildResidentialHPXML/measure.xml | 6 +-- HPXMLtoOpenStudio/measure.xml | 10 ++--- HPXMLtoOpenStudio/resources/hpxml.rb | 17 ++++++- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 19 ++++++-- .../hpxml_schematron/EPvalidator.xml | 5 ++- docs/source/workflow_inputs.rst | 44 +++++++++++-------- ...ed-ground-loop-ground-to-air-heat-pump.xml | 1 + .../base-dhw-desuperheater-gshp.xml | 1 + ...e-ground-to-air-heat-pump-cooling-only.xml | 1 + ...e-ground-to-air-heat-pump-heating-only.xml | 1 + ...-air-heat-pump-sizing-methodology-acca.xml | 1 + ...-air-heat-pump-sizing-methodology-hers.xml | 1 + ...r-heat-pump-sizing-methodology-maxload.xml | 1 + ...e-hvac-geothermal-loop-boreholes-count.xml | 1 + ...vac-geothermal-loop-boreholes-diameter.xml | 1 + ...-hvac-geothermal-loop-boreholes-length.xml | 1 + ...hvac-geothermal-loop-boreholes-spacing.xml | 1 + ...vac-geothermal-loop-ground-diffusivity.xml | 1 + ...vac-geothermal-loop-grout-conductivity.xml | 1 + .../base-hvac-geothermal-loop-loop-flow.xml | 1 + ...hvac-geothermal-loop-pipe-conductivity.xml | 1 + ...ase-hvac-geothermal-loop-pipe-diameter.xml | 1 + ...vac-geothermal-loop-pipe-shank-spacing.xml | 1 + ...c-ground-to-air-heat-pump-cooling-only.xml | 1 + ...c-ground-to-air-heat-pump-heating-only.xml | 1 + .../base-hvac-ground-to-air-heat-pump.xml | 1 + ...nstall-quality-ground-to-air-heat-pump.xml | 1 + 28 files changed, 88 insertions(+), 35 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 517a912762..c32a83b51f 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -5042,6 +5042,7 @@ def self.set_geothermal_loop(hpxml, args) end hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}", + loop_configuration: HPXML::GeothermalLoopLoopConfigurationVertical, loop_flow: loop_flow, num_bore_holes: num_bore_holes, bore_length: bore_length, diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 5c8f4622ba..0876df4ebe 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 1f47efbe-ac4a-4b60-a74a-32f38838a872 - 2023-05-30T23:54:52Z + 80c3ed1d-1b8d-4c9f-b804-29343eeba900 + 2023-06-01T20:56:43Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6783,7 +6783,7 @@ measure.rb rb script - FF2EA4BF + 1CFA5DEE geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 2ae2fc509b..3df0d496b4 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 08d005e6-845b-4a2d-8c7f-f203b8c220a2 - 2023-05-31T16:18:15Z + 1d0807e9-b4da-45cb-9ea6-1d259b8f6acc + 2023-06-01T20:56:47Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -238,13 +238,13 @@ hpxml.rb rb resource - 11694549 + CDEEA034 hpxml_defaults.rb rb resource - AC6EAE27 + 0CA8AA9A hpxml_schema/HPXML.xsd @@ -262,7 +262,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 88D506F4 + FBDCF128 hpxml_schematron/iso-schematron.xsd diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 670896e174..72534ddf45 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -156,6 +156,12 @@ class HPXML < Object FuelTypeWoodPellets = 'wood pellets' FurnitureMassTypeLightWeight = 'light-weight' FurnitureMassTypeHeavyWeight = 'heavy-weight' + GeothermalLoopLoopConfigurationDiagonal = 'diagonal' + GeothermalLoopLoopConfigurationHorizontal = 'horizontal' + GeothermalLoopLoopConfigurationOther = 'other' + GeothermalLoopLoopConfigurationVertical = 'vertical' + GeothermalLoopGroutTypeStandard = 'standard' + GeothermalLoopGroutTypeThermallyEnhanced = 'thermally enhanced' HeaterTypeElectricResistance = 'electric resistance' HeaterTypeGas = 'gas fired' HeaterTypeHeatPump = 'heat pump' @@ -3997,7 +4003,10 @@ def from_oga(hpxml) end class GeothermalLoop < BaseElement - ATTRS = [:id, :loop_flow, :num_bore_holes, :bore_spacing, :bore_length, :bore_diameter, :grout_conductivity, :pipe_cond, :pipe_size, :shank_spacing] + ATTRS = [:id, :loop_configuration, :loop_flow, + :num_bore_holes, :bore_spacing, :bore_length, :bore_diameter, + :grout_type, :grout_conductivity, + :pipe_cond, :pipe_size, :shank_spacing] attr_accessor(*ATTRS) def delete @@ -4016,6 +4025,7 @@ def to_oga(doc) geothermal_loop = XMLHelper.add_element(hvac_plant, 'GeothermalLoop') sys_id = XMLHelper.add_element(geothermal_loop, 'SystemIdentifier') XMLHelper.add_attribute(sys_id, 'id', @id) + XMLHelper.add_element(geothermal_loop, 'LoopConfiguration', @loop_configuration, :string, @loop_configuration_isdefaulted) unless @loop_configuration.nil? XMLHelper.add_element(geothermal_loop, 'LoopFlow', @loop_flow, :float, @loop_flow_isdefaulted) unless @loop_flow.nil? if (not @num_bore_holes.nil?) || (not @bore_spacing.nil?) || (not @bore_length.nil?) || (not @bore_diameter.nil?) boreholes_or_trenches = XMLHelper.add_element(geothermal_loop, 'BoreholesOrTrenches') @@ -4024,8 +4034,9 @@ def to_oga(doc) XMLHelper.add_element(boreholes_or_trenches, 'Spacing', @bore_spacing, :float, @bore_spacing_isdefaulted) unless @bore_spacing.nil? XMLHelper.add_element(boreholes_or_trenches, 'Diameter', @bore_diameter, :float, @bore_diameter_isdefaulted) unless @bore_diameter.nil? end - if not @grout_conductivity.nil? + if (not @grout_type.nil?) || (not @grout_conductivity.nil?) grout = XMLHelper.add_element(geothermal_loop, 'Grout') + XMLHelper.add_element(grout, 'Type', @grout_type, :string, @grout_type_isdefaulted) unless @grout_type.nil? XMLHelper.add_element(grout, 'Conductivity', @grout_conductivity, :float, @grout_conductivity_isdefaulted) unless @grout_conductivity.nil? end if (not @pipe_cond.nil?) || (not @pipe_size.nil?) || (not @shank_spacing.nil?) @@ -4040,11 +4051,13 @@ def from_oga(geothermal_loop) return if geothermal_loop.nil? @id = HPXML::get_id(geothermal_loop) + @loop_configuration = XMLHelper.get_value(geothermal_loop, 'LoopConfiguration', :string) @loop_flow = XMLHelper.get_value(geothermal_loop, 'LoopFlow', :float) @num_bore_holes = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Count', :integer) @bore_length = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Length', :float) @bore_spacing = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Spacing', :float) @bore_diameter = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Diameter', :float) + @grout_type = XMLHelper.get_value(geothermal_loop, 'Grout/Type', :string) @grout_conductivity = XMLHelper.get_value(geothermal_loop, 'Grout/Conductivity', :float) @pipe_cond = XMLHelper.get_value(geothermal_loop, 'Pipe/Conductivity', :float) @pipe_size = XMLHelper.get_value(geothermal_loop, 'Pipe/Diameter', :float) diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index bdc4b9fbb3..8c094d1474 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -489,7 +489,7 @@ def self.apply_site(hpxml) end if hpxml.site.ground_diffusivity.nil? - hpxml.site.ground_diffusivity = 0.0208 # TODO + hpxml.site.ground_diffusivity = 0.0208 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true end @@ -1505,7 +1505,8 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) elsif [HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type if heat_pump.geothermal_loop.nil? - hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}") + hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}", + loop_configuration: HPXML::GeothermalLoopLoopConfigurationVertical) heat_pump.geothermal_loop_idref = hpxml.geothermal_loops[-1].id end @@ -1527,9 +1528,19 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) heat_pump.geothermal_loop.bore_diameter_isdefaulted = true end + if heat_pump.geothermal_loop.grout_type.nil? && heat_pump.geothermal_loop.grout_conductivity.nil? + heat_pump.geothermal_loop.grout_type = HPXML::GeothermalLoopGroutTypeStandard + heat_pump.geothermal_loop.grout_type_isdefaulted = true + end + if heat_pump.geothermal_loop.grout_conductivity.nil? - heat_pump.geothermal_loop.grout_conductivity = 0.4 # Btu/h-ft-R - heat_pump.geothermal_loop.grout_conductivity_isdefaulted = true + if heat_pump.geothermal_loop.grout_type == HPXML::GeothermalLoopGroutTypeStandard + heat_pump.geothermal_loop.grout_conductivity = 0.4 # Btu/h-ft-R + heat_pump.geothermal_loop.grout_conductivity_isdefaulted = true + elsif heat_pump.geothermal_loop.grout_type == HPXML::GeothermalLoopGroutTypeThermalEnhanced + heat_pump.geothermal_loop.grout_conductivity = 0.8 # Btu/h-ft-R + heat_pump.geothermal_loop.grout_conductivity_isdefaulted = true + end end if heat_pump.geothermal_loop.pipe_cond.nil? diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 5bb1fb4219..9a14cabb9a 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1300,6 +1300,8 @@ [GeothermalLoop] + Expected 1 element(s) for xpath: LoopConfiguration + Expected LoopConfiguration to be 'vertical' Expected 0 or 1 element(s) for xpath: LoopFlow Expected LoopFlow to be greater than 0 Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Count @@ -1310,8 +1312,7 @@ Expected BoreholesOrTrenches/Spacing to be greater than 0 Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Diameter Expected BoreholesOrTrenches/Diameter to be greater than 0 - Expected 0 or 1 element(s) for xpath: Grout/Conductivity - Expected Grout/Conductivity to be greater than 0 + Expected 0 or more element(s) for xpath: Grout/Type | Grout/Conductivity Expected 0 or 1 element(s) for xpath: Pipe/Conductivity Expected Pipe/Conductivity to be greater than 0 Expected 0 or 1 element(s) for xpath: Pipe/Diameter diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index d4e77a01ea..c2aab63ee4 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -550,7 +550,7 @@ Soil information is entered in ``Soil``. Element Type Units Constraints Required Default Notes ================================ ======== =========== =========== ======== ======== ============================================================ ``Conductivity`` double Btu/hr-ft-F > 0 No 1.0 Thermal conductivity of the ground soil [#]_ - ``extension/Diffusivity`` double TODO > 0 No 0.0208 Diffusivity of the ground soil [#]_ + ``extension/Diffusivity`` double ft2/hr > 0 No 0.0208 Diffusivity of the ground soil [#]_ ================================ ======== =========== =========== ======== ======== ============================================================ .. [#] Conductivity used for foundation heat transfer and ground source heat pumps. @@ -2042,24 +2042,30 @@ HPXML Geothermal Loops Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop``. - ================================= ======== =========== =========== ======== ============== =============================================== - Element Type Units Constraints Required Default Notes - ================================= ======== =========== =========== ======== ============== =============================================== - ``SystemIdentifier`` id Yes Unique identifier - ``LoopFlow`` double gal/min > 0 No autosized [#]_ - ``BoreholesOrTrenches/Count`` integer > 0 No autosized [#]_ - ``BoreholesOrTrenches/Length`` double ft > 0 No autosized [#]_ - ``BoreholesOrTrenches/Spacing`` double ft > 0 No 20.0 - ``BoreholesOrTrenches/Diameter`` double in > 0 No 5.0 - ``Grout/Conductivity`` double Btu/hr-ft-F > 0 No 0.4 - ``Pipe/Conductivity`` double Btu/hr-ft-F > 0 No 0.23 - ``Pipe/Diameter`` double in See [#]_ No 0.75 - ``Pipe/ShankSpacing`` double in > 0 No See [#]_ - ================================= ======== =========== =========== ======== ============== =============================================== - - .. [#] Loop flow autosized per TODO. - .. [#] Number of boreholes/trenches autosized per TODO. - .. [#] Borehole/trench length autosized per TODO. + ======================================== ================ =========== =============== ======== ============== =============================================== + Element Type Units Constraints Required Default Notes + ======================================== ================ =========== =============== ======== ============== =============================================== + ``SystemIdentifier`` id Yes Unique identifier + ``LoopConfiguration`` string See [#]_ Yes + ``LoopFlow`` double gal/min > 0 No autosized [#]_ + ``BoreholesOrTrenches/Count`` integer > 0 No autosized [#]_ + ``BoreholesOrTrenches/Length`` double ft > 0 No autosized [#]_ + ``BoreholesOrTrenches/Spacing`` double ft > 0 No 20.0 + ``BoreholesOrTrenches/Diameter`` double in > 0 No 5.0 + ``Grout/Type`` or ``Grout/Conductivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No standard Grout type or conductivity [#]_ + ``Pipe/Conductivity`` double Btu/hr-ft-F > 0 No 0.23 + ``Pipe/Diameter`` double in See [#]_ No 0.75 + ``Pipe/ShankSpacing`` double in > 0 No See [#]_ + ======================================== ================ =========== =============== ======== ============== =============================================== + + .. [#] LoopConfiguration must be "vertical". + .. [#] Looplow autosized per TODO. + .. [#] BoreholesOrTrenches/Count autosized per TODO. + .. [#] BoreholesOrTrenches/Length autosized per TODO. + .. [#] GroutType choices are "standard" or "thermally enhanced". + .. [#] | If Grout/Conductivity not provided, defaults based on Grout/Type: + | - **standard**: 0.4 Btu/hr-ft-F + | - **thermally enhanced**: 0.8 Btu/hr-ft-F .. [#] Pipe diameter must be either 3/4", 1", or 1-1/4" (i.e, 0.75, 1.0, or 1.25). .. [#] Sum of U-tube spacing and pipe outer diameter. diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml index d1843d42b5..3dbb24a65b 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml @@ -262,6 +262,7 @@ + vertical diff --git a/workflow/sample_files/base-dhw-desuperheater-gshp.xml b/workflow/sample_files/base-dhw-desuperheater-gshp.xml index d4b092a3be..4a7e25ebab 100644 --- a/workflow/sample_files/base-dhw-desuperheater-gshp.xml +++ b/workflow/sample_files/base-dhw-desuperheater-gshp.xml @@ -353,6 +353,7 @@ + vertical diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml index 072e6414be..039b182e84 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml @@ -346,6 +346,7 @@ + vertical diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml index 6a6ce62d6a..d33e9cc9b0 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml @@ -352,6 +352,7 @@ + vertical diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml index 41c2f17534..edf1abea31 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml @@ -353,6 +353,7 @@ + vertical diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml index c3c87d828d..3e2630f46e 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml @@ -353,6 +353,7 @@ + vertical diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml index 0d648a0617..7d54aaeb6b 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml @@ -353,6 +353,7 @@ + vertical diff --git a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-count.xml b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-count.xml index 742035c4c9..690ab4ee3a 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-count.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-count.xml @@ -353,6 +353,7 @@ + vertical 4 diff --git a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-diameter.xml b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-diameter.xml index 5d5e64dade..f7534f1170 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-diameter.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-diameter.xml @@ -353,6 +353,7 @@ + vertical 6.0 diff --git a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-length.xml b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-length.xml index c7d2518871..f564b311c4 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-length.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-length.xml @@ -353,6 +353,7 @@ + vertical 350.0 diff --git a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-spacing.xml b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-spacing.xml index b39f329e1f..23d61450a0 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-spacing.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-spacing.xml @@ -353,6 +353,7 @@ + vertical 25.0 diff --git a/workflow/sample_files/base-hvac-geothermal-loop-ground-diffusivity.xml b/workflow/sample_files/base-hvac-geothermal-loop-ground-diffusivity.xml index 4b000cd87e..569c963b01 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop-ground-diffusivity.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop-ground-diffusivity.xml @@ -358,6 +358,7 @@ + vertical diff --git a/workflow/sample_files/base-hvac-geothermal-loop-grout-conductivity.xml b/workflow/sample_files/base-hvac-geothermal-loop-grout-conductivity.xml index faf25efccc..3dfd18fc7c 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop-grout-conductivity.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop-grout-conductivity.xml @@ -353,6 +353,7 @@ + vertical 0.5 diff --git a/workflow/sample_files/base-hvac-geothermal-loop-loop-flow.xml b/workflow/sample_files/base-hvac-geothermal-loop-loop-flow.xml index c2aab45481..3dc8f3d1fd 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop-loop-flow.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop-loop-flow.xml @@ -353,6 +353,7 @@ + vertical 10.0 diff --git a/workflow/sample_files/base-hvac-geothermal-loop-pipe-conductivity.xml b/workflow/sample_files/base-hvac-geothermal-loop-pipe-conductivity.xml index 726c7487ca..d2c91d1d60 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop-pipe-conductivity.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop-pipe-conductivity.xml @@ -353,6 +353,7 @@ + vertical 0.3 diff --git a/workflow/sample_files/base-hvac-geothermal-loop-pipe-diameter.xml b/workflow/sample_files/base-hvac-geothermal-loop-pipe-diameter.xml index a3bf01af7c..b10c733f0a 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop-pipe-diameter.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop-pipe-diameter.xml @@ -353,6 +353,7 @@ + vertical 1.0 diff --git a/workflow/sample_files/base-hvac-geothermal-loop-pipe-shank-spacing.xml b/workflow/sample_files/base-hvac-geothermal-loop-pipe-shank-spacing.xml index eeb56cf45d..bb94fea4c5 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop-pipe-shank-spacing.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop-pipe-shank-spacing.xml @@ -353,6 +353,7 @@ + vertical 2.5 diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml index ee599a97b4..3b82253963 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml @@ -345,6 +345,7 @@ + vertical diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml index 3bad38bfff..39631644f8 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml @@ -352,6 +352,7 @@ + vertical diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml index eeaf1d5857..71573d2136 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml @@ -353,6 +353,7 @@ + vertical diff --git a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml index 23347d1ebd..22e026d14d 100644 --- a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml @@ -356,6 +356,7 @@ + vertical From 4db5f0cd465b2b8d3b8614cd8ce2a055d495097b Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 2 Jun 2023 08:20:19 -0700 Subject: [PATCH 029/217] Add a defaults test for geothermal loops. --- HPXMLtoOpenStudio/measure.xml | 10 +-- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 2 +- HPXMLtoOpenStudio/resources/hvac.rb | 2 + HPXMLtoOpenStudio/tests/test_defaults.rb | 77 ++++++++++++++++++- 4 files changed, 82 insertions(+), 9 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 3df0d496b4..cafe495d62 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 1d0807e9-b4da-45cb-9ea6-1d259b8f6acc - 2023-06-01T20:56:47Z + 53d0c300-2209-4f1b-82ae-15e94f7b7124 + 2023-06-02T15:19:48Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -244,7 +244,7 @@ hpxml_defaults.rb rb resource - 0CA8AA9A + D505E854 hpxml_schema/HPXML.xsd @@ -274,7 +274,7 @@ hvac.rb rb resource - 967CF4C1 + 2E5F671A hvac_sizing.rb @@ -490,7 +490,7 @@ test_defaults.rb rb test - 9F95A6CF + DE2BD63C test_enclosure.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 8c094d1474..76e2cd55b1 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1537,7 +1537,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) if heat_pump.geothermal_loop.grout_type == HPXML::GeothermalLoopGroutTypeStandard heat_pump.geothermal_loop.grout_conductivity = 0.4 # Btu/h-ft-R heat_pump.geothermal_loop.grout_conductivity_isdefaulted = true - elsif heat_pump.geothermal_loop.grout_type == HPXML::GeothermalLoopGroutTypeThermalEnhanced + elsif heat_pump.geothermal_loop.grout_type == HPXML::GeothermalLoopGroutTypeThermallyEnhanced heat_pump.geothermal_loop.grout_conductivity = 0.8 # Btu/h-ft-R heat_pump.geothermal_loop.grout_conductivity_isdefaulted = true end diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index 19e7536de7..8ea689ac73 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -3373,6 +3373,8 @@ def self.set_gshp_assumptions(heat_pump, weather) elsif pipe_size == 1.25 # 1-1/4" pipe hp_ap.pipe_od = 1.660 # in hp_ap.pipe_id = 1.358 # in + else + fail "Unexpected pipe size: #{pipe_size}" end hp_ap.u_tube_spacing_type = 'b' # Calculate distance between pipes diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 721c795227..4ffbe987c2 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -322,17 +322,19 @@ def test_site hpxml.site.site_type = HPXML::SiteTypeRural hpxml.site.shielding_of_home = HPXML::ShieldingExposed hpxml.site.ground_conductivity = 0.8 + hpxml.site.ground_diffusivity = 0.9 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, HPXML::SiteTypeRural, HPXML::ShieldingExposed, 0.8) + _test_default_site_values(hpxml_default, HPXML::SiteTypeRural, HPXML::ShieldingExposed, 0.8, 0.9) # Test defaults hpxml.site.site_type = nil hpxml.site.shielding_of_home = nil hpxml.site.ground_conductivity = nil + hpxml.site.ground_diffusivity = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.0) + _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.0, 0.0208) end def test_neighbor_buildings @@ -1676,6 +1678,46 @@ def test_ground_source_heat_pumps _test_default_ground_to_air_heat_pump_values(hpxml_default.heat_pumps[0], 30.0, 0.375, 0, nil, nil, nil) end + def test_geothermal_loops + # Test inputs not overridden by defaults + hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml.geothermal_loops[0].loop_configuration = HPXML::GeothermalLoopLoopConfigurationVertical + hpxml.geothermal_loops[0].loop_flow = 1 + hpxml.geothermal_loops[0].num_bore_holes = 2 + hpxml.geothermal_loops[0].bore_spacing = 3 + hpxml.geothermal_loops[0].bore_length = 4 + hpxml.geothermal_loops[0].bore_diameter = 5 + hpxml.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutTypeThermallyEnhanced + hpxml.geothermal_loops[0].grout_conductivity = 6 + hpxml.geothermal_loops[0].pipe_cond = 7 + hpxml.geothermal_loops[0].pipe_size = 1.0 + hpxml.geothermal_loops[0].shank_spacing = 9 + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + hpxml_default = _test_measure() + _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, 2, 3, 4, 5, HPXML::GeothermalLoopGroutTypeThermallyEnhanced, 6, 7, 1.0, 9) + + # Test defaults + hpxml.geothermal_loops[0].loop_flow = nil + hpxml.geothermal_loops[0].num_bore_holes = nil + hpxml.geothermal_loops[0].bore_spacing = nil + hpxml.geothermal_loops[0].bore_length = nil + hpxml.geothermal_loops[0].bore_diameter = nil + hpxml.geothermal_loops[0].grout_type = nil + hpxml.geothermal_loops[0].grout_conductivity = nil + hpxml.geothermal_loops[0].pipe_cond = nil + hpxml.geothermal_loops[0].pipe_size = nil + hpxml.geothermal_loops[0].shank_spacing = nil + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + hpxml_default = _test_measure() + _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 20.0, nil, 5.0, HPXML::GeothermalLoopGroutTypeStandard, 0.4, 0.23, 0.75, 2.0161) + + # Test defaults w/ thermally enhanced grout type + hpxml.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutTypeThermallyEnhanced + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + hpxml_default = _test_measure() + _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 20.0, nil, 5.0, HPXML::GeothermalLoopGroutTypeThermallyEnhanced, 0.8, 0.23, 0.75, 2.0161) + end + def test_hvac_location # Test inputs not overridden by defaults hpxml = _create_hpxml('base-foundation-unconditioned-basement.xml') @@ -3690,10 +3732,11 @@ def _test_default_bills_values(scenario, end end - def _test_default_site_values(hpxml, site_type, shielding_of_home, ground_conductivity) + def _test_default_site_values(hpxml, site_type, shielding_of_home, ground_conductivity, ground_diffusivity) assert_equal(site_type, hpxml.site.site_type) assert_equal(shielding_of_home, hpxml.site.shielding_of_home) assert_equal(ground_conductivity, hpxml.site.ground_conductivity) + assert_equal(ground_diffusivity, hpxml.site.ground_diffusivity) end def _test_default_neighbor_building_values(hpxml, azimuths) @@ -4225,6 +4268,34 @@ def _test_default_ground_to_air_heat_pump_values(heat_pump, pump_watts_per_ton, end end + def _test_default_geothermal_loop_values(geothermal_loop, loop_configuration, loop_flow, + num_bore_holes, bore_spacing, bore_length, bore_diameter, + grout_type, grout_conductivity, pipe_cond, pipe_size, shank_spacing) + assert_equal(loop_configuration, geothermal_loop.loop_configuration) + if loop_flow.nil? + assert(geothermal_loop.loop_flow > 0) + else + assert_equal(loop_flow, geothermal_loop.loop_flow) + end + if num_bore_holes.nil? + assert(geothermal_loop.num_bore_holes > 0) + else + assert_equal(num_bore_holes, geothermal_loop.num_bore_holes) + end + assert_equal(bore_spacing, geothermal_loop.bore_spacing) + if bore_length.nil? + assert(geothermal_loop.bore_length > 0) + else + assert_equal(bore_length, geothermal_loop.bore_length) + end + assert_equal(bore_diameter, geothermal_loop.bore_diameter) + assert_equal(grout_type, geothermal_loop.grout_type) + assert_equal(grout_conductivity, geothermal_loop.grout_conductivity) + assert_equal(pipe_cond, geothermal_loop.pipe_cond) + assert_equal(pipe_size, geothermal_loop.pipe_size) + assert_equal(shank_spacing, geothermal_loop.shank_spacing) + end + def _test_default_hvac_location_values(hvac_system, location) assert_equal(location, hvac_system.location) end From 9e6f27e0fb2e38028ad09ae2f978fa34ffe330f0 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 2 Jun 2023 08:23:06 -0700 Subject: [PATCH 030/217] Typo in 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 c2aab63ee4..5ad38ba87e 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2059,7 +2059,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ======================================== ================ =========== =============== ======== ============== =============================================== .. [#] LoopConfiguration must be "vertical". - .. [#] Looplow autosized per TODO. + .. [#] LoopFlow autosized per TODO. .. [#] BoreholesOrTrenches/Count autosized per TODO. .. [#] BoreholesOrTrenches/Length autosized per TODO. .. [#] GroutType choices are "standard" or "thermally enhanced". From 10c048ff2b2a0a3ad938bfe3a4de583a059603bb Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 2 Jun 2023 10:37:56 -0700 Subject: [PATCH 031/217] Add units for diffusivity in build measure. --- BuildResidentialHPXML/measure.rb | 2 +- BuildResidentialHPXML/measure.xml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index c32a83b51f..16dba6cb8f 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -138,7 +138,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument.makeDoubleArgument('site_ground_diffusivity', false) arg.setDisplayName('Site: Ground Diffusivity') arg.setDescription('Diffusivity of the ground soil. If not provided, the OS-HPXML default is used.') - arg.setUnits('TODO') + arg.setUnits('ft^2/hr') args << arg arg = OpenStudio::Measure::OSArgument.makeStringArgument('site_zip_code', false) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 0876df4ebe..deeec85437 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 80c3ed1d-1b8d-4c9f-b804-29343eeba900 - 2023-06-01T20:56:43Z + 851e34f3-856b-4e96-a25e-4d3387f718de + 2023-06-02T17:35:13Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -199,7 +199,7 @@ Site: Ground Diffusivity Diffusivity of the ground soil. If not provided, the OS-HPXML default is used. Double - TODO + ft^2/hr false false @@ -6783,7 +6783,7 @@ measure.rb rb script - 1CFA5DEE + 37959DC0 geometry.rb From fbe83f1fd20ade13ba2e1b375161f934d6b1fae3 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 8 Jun 2023 09:35:18 -0700 Subject: [PATCH 032/217] Minor typo in 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 5ad38ba87e..fe8adacd7f 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2062,7 +2062,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ .. [#] LoopFlow autosized per TODO. .. [#] BoreholesOrTrenches/Count autosized per TODO. .. [#] BoreholesOrTrenches/Length autosized per TODO. - .. [#] GroutType choices are "standard" or "thermally enhanced". + .. [#] Grout/Type choices are "standard" or "thermally enhanced". .. [#] | If Grout/Conductivity not provided, defaults based on Grout/Type: | - **standard**: 0.4 Btu/hr-ft-F | - **thermally enhanced**: 0.8 Btu/hr-ft-F From 71da38a2f7da0f599c9398545120ddcfa4c4c616 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 12 Jun 2023 15:18:18 -0700 Subject: [PATCH 033/217] Add borefield config arg to build measure. --- BuildResidentialHPXML/measure.rb | 21 ++++++++++++++- BuildResidentialHPXML/measure.xml | 44 ++++++++++++++++++++++++++++--- 2 files changed, 61 insertions(+), 4 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 16dba6cb8f..0626ce6197 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1414,6 +1414,20 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setUnits('in') args << arg + geothermal_loop_borefield_configuration_choices = OpenStudio::StringVector.new + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationSingle + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationLine + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationLConfig + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationRectangle + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationUConfig + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfiguration12Config + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_borefield_configuration', geothermal_loop_borefield_configuration_choices, false) + arg.setDisplayName('Geothermal Loop: Borefield Configuration') + arg.setDescription("Borefield configuration of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") + args << arg + heating_system_2_type_choices = OpenStudio::StringVector.new heating_system_2_type_choices << 'none' heating_system_2_type_choices << HPXML::HVACTypeFurnace @@ -5041,6 +5055,10 @@ def self.set_geothermal_loop(hpxml, args) shank_spacing = args[:geothermal_loop_pipe_shank_spacing].get end + if args[:geothermal_loop_borefield_configuration].is_initialized + bore_config = args[:geothermal_loop_borefield_configuration].get + end + hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}", loop_configuration: HPXML::GeothermalLoopLoopConfigurationVertical, loop_flow: loop_flow, @@ -5051,7 +5069,8 @@ def self.set_geothermal_loop(hpxml, args) grout_conductivity: grout_conductivity, pipe_cond: pipe_cond, pipe_size: pipe_size, - shank_spacing: shank_spacing) + shank_spacing: shank_spacing, + bore_config: bore_config) hpxml.heat_pumps[-1].geothermal_loop_idref = hpxml.geothermal_loops[-1].id end diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index deeec85437..87327261b3 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 851e34f3-856b-4e96-a25e-4d3387f718de - 2023-06-02T17:35:13Z + 263685b3-188f-46cc-a9b4-a5009ecc5e43 + 2023-06-12T22:17:30Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -2868,6 +2868,44 @@ false false + + geothermal_loop_borefield_configuration + Geothermal Loop: Borefield Configuration + Borefield configuration of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. + Choice + false + false + + + single + single + + + line + line + + + l-config + l-config + + + rectangle + rectangle + + + u-config + u-config + + + 12-config + 12-config + + + open-rectangle + open-rectangle + + + heating_system_2_type Heating System 2: Type @@ -6783,7 +6821,7 @@ measure.rb rb script - 37959DC0 + 1FC643FD geometry.rb From bc908f5c1b00f6a5af3daf4caa504546350a8b7c Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 12 Jun 2023 15:18:39 -0700 Subject: [PATCH 034/217] Update translator resources for borefield config arg. --- HPXMLtoOpenStudio/measure.xml | 12 +-- HPXMLtoOpenStudio/resources/hpxml.rb | 38 +++++--- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 4 + HPXMLtoOpenStudio/resources/hvac.rb | 11 +++ HPXMLtoOpenStudio/resources/hvac_sizing.rb | 88 ++++++++++--------- 5 files changed, 93 insertions(+), 60 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index cafe495d62..8866b78153 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 53d0c300-2209-4f1b-82ae-15e94f7b7124 - 2023-06-02T15:19:48Z + 87b766f4-fc3c-476a-87cf-0e1314c18c75 + 2023-06-12T22:17:31Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -238,13 +238,13 @@ hpxml.rb rb resource - CDEEA034 + 27FBDE98 hpxml_defaults.rb rb resource - D505E854 + AA7E448C hpxml_schema/HPXML.xsd @@ -274,13 +274,13 @@ hvac.rb rb resource - 2E5F671A + 420D0DA4 hvac_sizing.rb rb resource - D622830E + 7613E200 lighting.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 72534ddf45..f61602b3ca 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -156,6 +156,13 @@ class HPXML < Object FuelTypeWoodPellets = 'wood pellets' FurnitureMassTypeLightWeight = 'light-weight' FurnitureMassTypeHeavyWeight = 'heavy-weight' + GeothermalLoopBorefieldConfigurationSingle = 'single' + GeothermalLoopBorefieldConfigurationLine = 'line' + GeothermalLoopBorefieldConfigurationLConfig = 'l-config' + GeothermalLoopBorefieldConfigurationRectangle = 'rectangle' + GeothermalLoopBorefieldConfigurationUConfig = 'u-config' + GeothermalLoopBorefieldConfiguration12Config = '12-config' + GeothermalLoopBorefieldConfigurationOpenRectangle = 'open-rectangle' GeothermalLoopLoopConfigurationDiagonal = 'diagonal' GeothermalLoopLoopConfigurationHorizontal = 'horizontal' GeothermalLoopLoopConfigurationOther = 'other' @@ -4006,7 +4013,8 @@ class GeothermalLoop < BaseElement ATTRS = [:id, :loop_configuration, :loop_flow, :num_bore_holes, :bore_spacing, :bore_length, :bore_diameter, :grout_type, :grout_conductivity, - :pipe_cond, :pipe_size, :shank_spacing] + :pipe_cond, :pipe_size, :shank_spacing, + :bore_config] attr_accessor(*ATTRS) def delete @@ -4045,6 +4053,10 @@ def to_oga(doc) XMLHelper.add_element(pipe, 'Diameter', @pipe_size, :float, @pipe_size_isdefaulted) unless @pipe_size.nil? XMLHelper.add_element(pipe, 'ShankSpacing', @shank_spacing, :float, @shank_spacing_isdefaulted) unless @shank_spacing.nil? end + if not @bore_config.nil? + extension = XMLHelper.create_elements_as_needed(geothermal_loop, ['extension']) + XMLHelper.add_element(extension, 'BorefieldConfiguration', @bore_config, :string, @bore_config_isdefaulted) unless @bore_config.nil? + end end def from_oga(geothermal_loop) @@ -4062,6 +4074,7 @@ def from_oga(geothermal_loop) @pipe_cond = XMLHelper.get_value(geothermal_loop, 'Pipe/Conductivity', :float) @pipe_size = XMLHelper.get_value(geothermal_loop, 'Pipe/Diameter', :float) @shank_spacing = XMLHelper.get_value(geothermal_loop, 'Pipe/ShankSpacing', :float) + @bore_config = XMLHelper.get_value(geothermal_loop, 'extension/BorefieldConfiguration', :string) end end @@ -4102,17 +4115,6 @@ class HeatPump < BaseElement :geothermal_loop_idref] attr_accessor(*ATTRS) - def geothermal_loop - return if @geothermal_loop_idref.nil? - - @hpxml_object.geothermal_loops.each do |geothermal_loop| - next unless geothermal_loop.id == @geothermal_loop_idref - - return geothermal_loop - end - fail "Attached geothermal loop '#{@geothermal_loop_idref}' not found for heat pump '#{@id}'." - end - def distribution_system return if @distribution_system_idref.nil? @@ -4124,6 +4126,17 @@ def distribution_system fail "Attached HVAC distribution system '#{@distribution_system_idref}' not found for HVAC system '#{@id}'." end + def geothermal_loop + return if @geothermal_loop_idref.nil? + + @hpxml_object.geothermal_loops.each do |geothermal_loop| + next unless geothermal_loop.id == @geothermal_loop_idref + + return geothermal_loop + end + fail "Attached geothermal loop '#{@geothermal_loop_idref}' not found for heat pump '#{@id}'." + end + def is_dual_fuel if @backup_heating_fuel.nil? return false @@ -4163,6 +4176,7 @@ def delete def check_for_errors errors = [] begin; distribution_system; rescue StandardError => e; errors << e.message; end + begin; geothermal_loop; rescue StandardError => e; errors << e.message; end return errors end diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 76e2cd55b1..c9887b6176 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -2959,6 +2959,10 @@ def self.apply_hvac_sizing(hpxml, weather, cfa) geothermal_loop.bore_length = hvac_sizing_values.GSHP_Bore_Depth # this is the length (i.e., depth) of each borehole? geothermal_loop.bore_length_isdefaulted = true end + if geothermal_loop.bore_config.nil? + geothermal_loop.bore_config = hvac_sizing_values.GSHP_Bore_Config + geothermal_loop.bore_config_isdefaulted = true + end end end end diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index 8ea689ac73..644e5d3733 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -3390,6 +3390,17 @@ def self.set_gshp_assumptions(heat_pump, weather) end end + def self.valid_borefield_configs + valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationSingle => [1], + HPXML::GeothermalLoopBorefieldConfigurationLine => [2, 3, 4, 5, 6, 7, 8, 9, 10], + HPXML::GeothermalLoopBorefieldConfigurationLConfig => [3, 4, 5, 6], + HPXML::GeothermalLoopBorefieldConfigurationRectangle => [2, 4, 6, 8], + HPXML::GeothermalLoopBorefieldConfigurationUConfig => [5, 7, 9], + HPXML::GeothermalLoopBorefieldConfiguration12Config => [8], + HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => [8] } + return valid_configs + end + def self.calc_mshp_hspf(cop_47, c_d, capacity_ratio, cfm_tons, fan_power_rated, heat_eir_ft_spec, heat_cap_ft_spec) n_max = (cop_47.length - 1.0) #-3 # Don't use max speed; FIXME: this is different than calc_mshp_seer? n_min = 0 diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 5e9f6013d2..1b69f29f53 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1925,52 +1925,55 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) bore_depth = (bore_length / num_bore_holes).floor + 5 end - if num_bore_holes == 1 - bore_config = 'single' - elsif num_bore_holes == 2 - bore_config = 'line' - elsif num_bore_holes == 3 - bore_config = 'line' - elsif num_bore_holes == 4 - bore_config = 'rectangle' - elsif num_bore_holes == 5 - bore_config = 'u-config' - elsif num_bore_holes > 5 - bore_config = 'line' - end - - # Test for valid GSHP bore field configurations - valid_configs = { 'single' => [1], - 'line' => [2, 3, 4, 5, 6, 7, 8, 9, 10], - 'l-config' => [3, 4, 5, 6], - 'rectangle' => [2, 4, 6, 8], - 'u-config' => [5, 7, 9], - 'l2-config' => [8], - 'open-rectangle' => [8] } - valid_num_bores = valid_configs[bore_config] - max_valid_configs = { 'line' => 10, 'l-config' => 6 } - unless valid_num_bores.include? num_bore_holes - # Any configuration with a max_valid_configs value can accept any number of bores up to the maximum - if max_valid_configs.keys.include? bore_config - max_num_bore_holes = max_valid_configs[bore_config] - num_bore_holes = max_num_bore_holes - else - # Search for first valid bore field - new_bore_config = nil - valid_configs.keys.each do |bore_config| - next unless valid_configs[bore_config].include? num_bore_holes - - new_bore_config = bore_config - break - end - if not new_bore_config.nil? - bore_config = new_bore_config + valid_configs = HVAC.valid_borefield_configs + bore_config = geothermal_loop.bore_config + if bore_config.nil? + if num_bore_holes == 1 + bore_config = HPXML::GeothermalLoopBorefieldConfigurationSingle + elsif num_bore_holes == 2 + bore_config = HPXML::GeothermalLoopBorefieldConfigurationLine + elsif num_bore_holes == 3 + bore_config = HPXML::GeothermalLoopBorefieldConfigurationLine + elsif num_bore_holes == 4 + bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle + elsif num_bore_holes == 5 + bore_config = HPXML::GeothermalLoopBorefieldConfigurationUConfig + elsif num_bore_holes > 5 + bore_config = HPXML::GeothermalLoopBorefieldConfigurationLine + end + + # Test for valid GSHP bore field configurations + valid_num_bores = valid_configs[bore_config] + max_valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationLine => 10, + HPXML::GeothermalLoopBorefieldConfigurationLConfig => 6 } + unless valid_num_bores.include? num_bore_holes + # Any configuration with a max_valid_configs value can accept any number of bores up to the maximum + if max_valid_configs.keys.include? bore_config + max_num_bore_holes = max_valid_configs[bore_config] + num_bore_holes = max_num_bore_holes else - fail 'Could not construct a valid GSHP bore field configuration.' + # Search for first valid bore field + new_bore_config = nil + valid_configs.keys.each do |bore_config| + next unless valid_configs[bore_config].include? num_bore_holes + + new_bore_config = bore_config + break + end + if not new_bore_config.nil? + bore_config = new_bore_config + else + fail 'Could not construct a valid GSHP bore field configuration.' + end end end end + valid_num_bores = valid_configs[bore_config] + unless valid_num_bores.include? num_bore_holes + fail "Number of bore holes (#{num_bore_holes}) with borefield configuration '#{bore_config}' not supported." + end + spacing_to_depth_ratio = bore_spacing / bore_depth lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] @@ -1980,6 +1983,7 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) hvac_sizing_values.GSHP_Bore_Depth = bore_depth hvac_sizing_values.GSHP_Bore_Holes = num_bore_holes hvac_sizing_values.GSHP_G_Functions = [lntts, gfnc_coeff] + hvac_sizing_values.GSHP_Bore_Config = bore_config end def self.apply_hvac_finalize_airflows(hvac_sizing_values, hvac_heating, hvac_cooling) @@ -3197,7 +3201,7 @@ def initialize :Cool_Capacity, :Cool_Capacity_Sens, :Cool_Airflow, :Heat_Load, :Heat_Load_Supp, :Heat_Capacity, :Heat_Capacity_Supp, :Heat_Airflow, :Heat_Airflow_Supp, - :GSHP_Loop_flow, :GSHP_Bore_Holes, :GSHP_Bore_Depth, :GSHP_G_Functions) + :GSHP_Loop_flow, :GSHP_Bore_Holes, :GSHP_Bore_Depth, :GSHP_G_Functions, :GSHP_Bore_Config) end class Numeric From b96bb57d78e1f5eb7068e67b7b9b68e88237b21e Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 12 Jun 2023 15:19:04 -0700 Subject: [PATCH 035/217] Add borefield config sample hpxml file. --- workflow/hpxml_inputs.json | 4 + ...eothermal-loop-borefield-configuration.xml | 562 ++++++++++++++++++ 2 files changed, 566 insertions(+) create mode 100644 workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index db33ab3033..756e65b899 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2387,6 +2387,10 @@ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "geothermal_loop_pipe_shank_spacing": 2.5 }, + "sample_files/base-hvac-geothermal-loop-borefield-configuration.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_borefield_configuration": "l-config" + }, "sample_files/base-hvac-ground-to-air-heat-pump.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_type": "none", diff --git a/workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml b/workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml new file mode 100644 index 0000000000..b768d3327c --- /dev/null +++ b/workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml @@ -0,0 +1,562 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + l-config + + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file From 2096f4463cfef2cc341a0074992857e525fa612c Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 12 Jun 2023 16:17:56 -0700 Subject: [PATCH 036/217] Update defaults test and other minor edits. --- HPXMLtoOpenStudio/measure.xml | 12 ++++++------ HPXMLtoOpenStudio/resources/hpxml.rb | 2 +- .../hpxml_schematron/EPvalidator.xml | 2 ++ HPXMLtoOpenStudio/resources/hvac.rb | 2 +- HPXMLtoOpenStudio/tests/test_defaults.rb | 12 ++++++++---- docs/source/workflow_inputs.rst | 19 ++++++++++++++++++- workflow/hpxml_inputs.json | 1 + ...eothermal-loop-borefield-configuration.xml | 3 +++ 8 files changed, 40 insertions(+), 13 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 8866b78153..6185482cb9 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 87b766f4-fc3c-476a-87cf-0e1314c18c75 - 2023-06-12T22:17:31Z + efb094c4-a6bb-4e72-af7a-3f853128344b + 2023-06-12T23:16:05Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -238,7 +238,7 @@ hpxml.rb rb resource - 27FBDE98 + BBE2E750
hpxml_defaults.rb @@ -262,7 +262,7 @@ hpxml_schematron/EPvalidator.xml xml resource - FBDCF128 + 3495BEA9 hpxml_schematron/iso-schematron.xsd @@ -274,7 +274,7 @@ hvac.rb rb resource - 420D0DA4 + 4D5F1922 hvac_sizing.rb @@ -490,7 +490,7 @@ test_defaults.rb rb test - DE2BD63C + 93E74F6F test_enclosure.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index f61602b3ca..7b8a45cf88 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -161,7 +161,7 @@ class HPXML < Object GeothermalLoopBorefieldConfigurationLConfig = 'l-config' GeothermalLoopBorefieldConfigurationRectangle = 'rectangle' GeothermalLoopBorefieldConfigurationUConfig = 'u-config' - GeothermalLoopBorefieldConfiguration12Config = '12-config' + GeothermalLoopBorefieldConfigurationl2Config = 'l2-config' GeothermalLoopBorefieldConfigurationOpenRectangle = 'open-rectangle' GeothermalLoopLoopConfigurationDiagonal = 'diagonal' GeothermalLoopLoopConfigurationHorizontal = 'horizontal' diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 9a14cabb9a..52021b9923 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1319,6 +1319,8 @@ Expected Pipe/Diameter to be 0.75, 1.0, or 1.25 Expected 0 or 1 element(s) for xpath: Pipe/ShankSpacing Expected Pipe/ShankSpacing to be greater than 0 + Expected 0 or 2 element(s) for xpath: BoreholesOrTrenches/Count | extension/BorefieldConfiguration + Expected BorefieldConfiguration to be 'single' or 'line' or 'l-config' or 'rectangle' or 'u-config' or '12-config' or 'open-rectangle' diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index 644e5d3733..4d0fef8b1d 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -3396,7 +3396,7 @@ def self.valid_borefield_configs HPXML::GeothermalLoopBorefieldConfigurationLConfig => [3, 4, 5, 6], HPXML::GeothermalLoopBorefieldConfigurationRectangle => [2, 4, 6, 8], HPXML::GeothermalLoopBorefieldConfigurationUConfig => [5, 7, 9], - HPXML::GeothermalLoopBorefieldConfiguration12Config => [8], + HPXML::GeothermalLoopBorefieldConfigurationl2Config => [8], HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => [8] } return valid_configs end diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 4ffbe987c2..efec2bb47c 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1692,9 +1692,10 @@ def test_geothermal_loops hpxml.geothermal_loops[0].pipe_cond = 7 hpxml.geothermal_loops[0].pipe_size = 1.0 hpxml.geothermal_loops[0].shank_spacing = 9 + hpxml.geothermal_loops[0].bore_config = HPXML::GeothermalLoopBorefieldConfigurationLine XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, 2, 3, 4, 5, HPXML::GeothermalLoopGroutTypeThermallyEnhanced, 6, 7, 1.0, 9) + _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, 2, 3, 4, 5, HPXML::GeothermalLoopGroutTypeThermallyEnhanced, 6, 7, 1.0, 9, HPXML::GeothermalLoopBorefieldConfigurationLine) # Test defaults hpxml.geothermal_loops[0].loop_flow = nil @@ -1707,15 +1708,16 @@ def test_geothermal_loops hpxml.geothermal_loops[0].pipe_cond = nil hpxml.geothermal_loops[0].pipe_size = nil hpxml.geothermal_loops[0].shank_spacing = nil + hpxml.geothermal_loops[0].bore_config = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 20.0, nil, 5.0, HPXML::GeothermalLoopGroutTypeStandard, 0.4, 0.23, 0.75, 2.0161) + _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 20.0, nil, 5.0, HPXML::GeothermalLoopGroutTypeStandard, 0.4, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationLine) # Test defaults w/ thermally enhanced grout type hpxml.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutTypeThermallyEnhanced XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 20.0, nil, 5.0, HPXML::GeothermalLoopGroutTypeThermallyEnhanced, 0.8, 0.23, 0.75, 2.0161) + _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 20.0, nil, 5.0, HPXML::GeothermalLoopGroutTypeThermallyEnhanced, 0.8, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationLine) end def test_hvac_location @@ -4270,7 +4272,8 @@ def _test_default_ground_to_air_heat_pump_values(heat_pump, pump_watts_per_ton, def _test_default_geothermal_loop_values(geothermal_loop, loop_configuration, loop_flow, num_bore_holes, bore_spacing, bore_length, bore_diameter, - grout_type, grout_conductivity, pipe_cond, pipe_size, shank_spacing) + grout_type, grout_conductivity, pipe_cond, pipe_size, shank_spacing, + bore_config) assert_equal(loop_configuration, geothermal_loop.loop_configuration) if loop_flow.nil? assert(geothermal_loop.loop_flow > 0) @@ -4294,6 +4297,7 @@ def _test_default_geothermal_loop_values(geothermal_loop, loop_configuration, lo assert_equal(pipe_cond, geothermal_loop.pipe_cond) assert_equal(pipe_size, geothermal_loop.pipe_size) assert_equal(shank_spacing, geothermal_loop.shank_spacing) + assert_equal(bore_config, geothermal_loop.bore_config) end def _test_default_hvac_location_values(hvac_system, location) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index fe8adacd7f..d2b1134c25 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2048,7 +2048,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ``SystemIdentifier`` id Yes Unique identifier ``LoopConfiguration`` string See [#]_ Yes ``LoopFlow`` double gal/min > 0 No autosized [#]_ - ``BoreholesOrTrenches/Count`` integer > 0 No autosized [#]_ + ``BoreholesOrTrenches/Count`` integer > 0 No [#]_ autosized [#]_ ``BoreholesOrTrenches/Length`` double ft > 0 No autosized [#]_ ``BoreholesOrTrenches/Spacing`` double ft > 0 No 20.0 ``BoreholesOrTrenches/Diameter`` double in > 0 No 5.0 @@ -2056,10 +2056,19 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ``Pipe/Conductivity`` double Btu/hr-ft-F > 0 No 0.23 ``Pipe/Diameter`` double in See [#]_ No 0.75 ``Pipe/ShankSpacing`` double in > 0 No See [#]_ + ``extension/BorefieldConfiguration`` string See [#]_ No See [#]_ ======================================== ================ =========== =============== ======== ============== =============================================== .. [#] LoopConfiguration must be "vertical". .. [#] LoopFlow autosized per TODO. + .. [#] | If extension/BorefieldConfiguration provided, a valid BoreholesOrTrenches/Count must also be provided: + | - **single**: 1 + | - **line**: 2, 3, 4, 5, 6, 7, 8, 9, or 10 + | - **l-config**: 3, 4, 5, or 6 + | - **rectangle**: 2, 4, 6, or 8 + | - **u-config**: 5, 7, or 9 + | - **l2-config**: 8 + | - **open-rectangle**: 8 .. [#] BoreholesOrTrenches/Count autosized per TODO. .. [#] BoreholesOrTrenches/Length autosized per TODO. .. [#] Grout/Type choices are "standard" or "thermally enhanced". @@ -2068,6 +2077,14 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ | - **thermally enhanced**: 0.8 Btu/hr-ft-F .. [#] Pipe diameter must be either 3/4", 1", or 1-1/4" (i.e, 0.75, 1.0, or 1.25). .. [#] Sum of U-tube spacing and pipe outer diameter. + .. [#] extension/BorefieldConfiguration choices are "single", "line", "l-config", "rectangle", "u-config", "l2-config", or "open-rectangle". + .. [#] | If extension/BorefieldConfiguration not provided, defaults based on BoreholesOrTrenches/Count: + | - **1**: single + | - **2**: line + | - **3**: line + | - **4**: rectangle + | - **5**: u-config + | - **6+**: line .. _hvac_control: diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 756e65b899..3ad0f97eef 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2389,6 +2389,7 @@ }, "sample_files/base-hvac-geothermal-loop-borefield-configuration.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_boreholes_or_trenches_count": 5, "geothermal_loop_borefield_configuration": "l-config" }, "sample_files/base-hvac-ground-to-air-heat-pump.xml": { diff --git a/workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml b/workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml index b768d3327c..9bb010874b 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml @@ -354,6 +354,9 @@ vertical + + 5 + l-config From 2517f8c5a87016411c9634bd92bdfc08d91583c2 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 12 Jun 2023 17:16:19 -0700 Subject: [PATCH 037/217] Another hpxml constants update. --- BuildResidentialHPXML/measure.rb | 2 +- BuildResidentialHPXML/measure.xml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 0626ce6197..5b3e7d7e32 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1420,7 +1420,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationLConfig geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationRectangle geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationUConfig - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfiguration12Config + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationl2Config geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_borefield_configuration', geothermal_loop_borefield_configuration_choices, false) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 87327261b3..099ab7175d 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 263685b3-188f-46cc-a9b4-a5009ecc5e43 - 2023-06-12T22:17:30Z + 7c50e224-07c8-4724-a6d6-1df0364e1993 + 2023-06-13T00:16:02Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -2897,8 +2897,8 @@ u-config - 12-config - 12-config + l2-config + l2-config open-rectangle @@ -6821,7 +6821,7 @@ measure.rb rb script - 1FC643FD + 595F4F68 geometry.rb From fdc4e4143a15b11d532223fc7df371a1d45d8fd8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 13 Jun 2023 01:10:55 +0000 Subject: [PATCH 038/217] Latest results. --- workflow/tests/base_results/results.csv | 1 + workflow/tests/base_results/results_bills.csv | 1 + 2 files changed, 2 insertions(+) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index da47948cec..69dfc4d83d 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -285,6 +285,7 @@ base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0 base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-borefield-configuration.xml,39.609,39.609,39.609,39.609,0.0,0.0,0.0,0.0,0.0,0.0,5.264,0.368,0.0,0.0,2.512,1.025,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.567,0.0,12.689,9.233,0.614,0.0,0.0,0.0,0.0,3222.5,2612.4,21.004,14.741,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.075,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.777,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-geothermal-loop-boreholes-count.xml,39.585,39.585,39.585,39.585,0.0,0.0,0.0,0.0,0.0,0.0,5.258,0.368,0.0,0.0,2.495,1.023,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.563,0.0,12.686,9.233,0.614,0.0,0.0,0.0,0.0,3219.1,2591.6,20.983,14.721,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.071,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.774,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-geothermal-loop-boreholes-diameter.xml,39.58,39.58,39.58,39.58,0.0,0.0,0.0,0.0,0.0,0.0,5.26,0.368,0.0,0.0,2.489,1.022,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.564,0.0,12.685,9.233,0.614,0.0,0.0,0.0,0.0,3218.5,2590.6,20.926,14.72,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.072,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.773,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-geothermal-loop-boreholes-length.xml,39.518,39.518,39.518,39.518,0.0,0.0,0.0,0.0,0.0,0.0,5.238,0.365,0.0,0.0,2.456,1.018,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,12.68,9.233,0.614,0.0,0.0,0.0,0.0,3206.9,2571.3,20.866,14.696,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.058,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.768,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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 a886b2d263..6777b17517 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -285,6 +285,7 @@ base-hvac-furnace-oil-only.xml,1760.65,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1798.62,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,621.61,621.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-wood-only.xml,1525.16,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-borefield-configuration.xml,1463.02,144.0,1319.02,0.0,1463.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-geothermal-loop-boreholes-count.xml,1462.2,144.0,1318.2,0.0,1462.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-geothermal-loop-boreholes-diameter.xml,1462.05,144.0,1318.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-geothermal-loop-boreholes-length.xml,1459.99,144.0,1315.99,0.0,1459.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 149c957dbc5d79a6ae47e1cc3ebbf6d3851485a8 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 15 Jun 2023 11:09:44 -0700 Subject: [PATCH 039/217] Add new task for downloading gfunction zip. --- tasks.rb | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/tasks.rb b/tasks.rb index 67f5bbac4d..49d4710ef0 100644 --- a/tasks.rb +++ b/tasks.rb @@ -2212,7 +2212,38 @@ def download_utility_rates exit! end -command_list = [:update_measures, :update_hpxmls, :create_release_zips, :download_utility_rates] +def download_g_functions + require_relative 'HPXMLtoOpenStudio/resources/g_functions/util' + + g_functions_dir = File.join(File.dirname(__FILE__), 'HPXMLtoOpenStudio/resources/g_functions') + FileUtils.mkdir(g_functions_dir) if !File.exist?(g_functions_dir) + filepath = File.join(g_functions_dir, 'g-function_library_1.0') + + if !File.exist?(filepath) + require 'tempfile' + tmpfile = Tempfile.new('functions') + + UrlResolver.fetch('https://gdr.openei.org/files/1325/g-function_library_1.0.zip', tmpfile) + + puts 'Extracting g-functions...' + require 'zip' + Zip::File.open(tmpfile.path.to_s) do |zipfile| + zipfile.each do |file| + fpath = File.join(g_functions_dir, file.name) + FileUtils.mkdir_p(File.dirname(fpath)) + zipfile.extract(file, fpath) unless File.exist?(fpath) + end + end + end + + num_configs_actual = process_g_functions(filepath) + + puts "#{num_configs_actual} config files are available in #{g_functions_dir}." + puts 'Completed.' + exit! +end + +command_list = [:update_measures, :update_hpxmls, :create_release_zips, :download_utility_rates, :download_g_functions] def display_usage(command_list) puts "Usage: openstudio #{File.basename(__FILE__)} [COMMAND]\nCommands:\n " + command_list.join("\n ") @@ -2333,6 +2364,10 @@ def display_usage(command_list) download_utility_rates end +if ARGV[0].to_sym == :download_g_functions + download_g_functions +end + if ARGV[0].to_sym == :create_release_zips if ENV['CI'] # CI doesn't have git, so default to everything From c3e42e32e1e5b47c5ad02949de5c3762169fcd72 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 15 Jun 2023 11:10:39 -0700 Subject: [PATCH 040/217] Add g_functions util for processing contents. --- .../resources/g_functions/util.rb | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 HPXMLtoOpenStudio/resources/g_functions/util.rb diff --git a/HPXMLtoOpenStudio/resources/g_functions/util.rb b/HPXMLtoOpenStudio/resources/g_functions/util.rb new file mode 100644 index 0000000000..85b1c43b01 --- /dev/null +++ b/HPXMLtoOpenStudio/resources/g_functions/util.rb @@ -0,0 +1,34 @@ +# frozen_string_literal: true + +def process_g_functions(filepath) + # Downselect jsons found at https://gdr.openei.org/files/1325/g-function_library_1.0.zip + require 'json' + require 'zip' + + # downselect criteria + n_x_m = 20 # for example, upper bound on number of boreholes + + g_functions_path = File.dirname(filepath) + Dir[File.join(filepath, '*.json')].each do |config_json| + file = File.open(config_json) + json = JSON.load(file) + + # downselect the File + json.keys.each do |n_m| + n, m = n_m.split('_') + json.delete(n_m) if (Float(n) * Float(m) > n_x_m) + end + + configpath = File.join(g_functions_path, File.basename(config_json)) + File.open(configpath, 'w') do |f| + json = JSON.pretty_generate(json) + f.write(json) + end + end + + FileUtils.rm_rf(filepath) + + num_configs_actual = Dir[File.join(g_functions_path, '*.json')].count + + return num_configs_actual +end From 38c6b01135e6c1fc1421c876c0a8ee10679f2f2c Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 15 Jun 2023 11:11:13 -0700 Subject: [PATCH 041/217] Add example processed gfunction json files. --- .../g_functions/C_configurations_5m_v1.0.json | 1350 +++ .../g_functions/L_configurations_5m_v1.0.json | 2926 ++++++ .../LopU_configurations_5m_v1.0.json | 3262 +++++++ .../Open_configurations_5m_v1.0.json | 1374 +++ .../g_functions/U_configurations_5m_v1.0.json | 1342 +++ .../g_functions/rectangle_5m_v1.0.json | 7934 +++++++++++++++++ .../g_functions/zoned_rectangle_5m_v1.0.json | 1210 +++ 7 files changed, 19398 insertions(+) create mode 100644 HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json create mode 100644 HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json create mode 100644 HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json create mode 100644 HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json create mode 100644 HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json create mode 100644 HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json create mode 100644 HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json diff --git a/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json new file mode 100644 index 0000000000..bba943ab04 --- /dev/null +++ b/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json @@ -0,0 +1,1350 @@ +{ + "3_3": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 5.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835163556833926, + 3.186859876491747, + 3.519434116875382, + 4.021964695453298, + 4.625373168858599, + 5.6312132037030205, + 7.017734131113874, + 8.301128331626508, + 10.117778789699049, + 11.210610651605974, + 11.97658350477523, + 13.028692005585272, + 13.742865870882119, + 15.311494952074165, + 16.61816940081541, + 16.973709806949675, + 17.29235193442953, + 17.602231685890917, + 17.842328567513636, + 18.047436530328454, + 18.223984896573953, + 18.371696735221363, + 18.48184538753946, + 18.607667583380575, + 18.69355241378807, + 18.73567064555173, + 18.803797793376233 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.111467924224727, + 2.4511928330881476, + 2.7884188390440285, + 3.0449438060593743, + 3.3868270121676414, + 3.6139397405790423, + 3.7971850654668233, + 4.09898609446547, + 4.348346130685021, + 5.0915638566345125, + 6.003348584673112, + 6.3086916925566205, + 6.606373821842277, + 6.918310269197572, + 7.176309365099969, + 7.407231942536658, + 7.614477838086075, + 7.793880568509996, + 7.9307745563154795, + 8.090147260210864, + 8.200733499237527, + 8.255609007591945, + 8.345178145421311 + ], + "5._384._0.0875": [ + 3.488828808642262, + 4.016644434684759, + 4.656097350048849, + 5.724643914605981, + 6.959907389349166, + 8.718829385823268, + 10.692998326451791, + 12.268677784338754, + 14.289104442978173, + 15.439317116143103, + 16.228160365480026, + 17.29573152921697, + 18.01381604634192, + 19.58236916077018, + 20.886702784603077, + 21.241361732916197, + 21.559695690469507, + 21.869461495310855, + 22.109738789160478, + 22.315010727642687, + 22.491842188196383, + 22.639906318278136, + 22.7503158438333, + 22.87650847004607, + 22.962608610868013, + 23.00480252216641, + 23.07299590032039 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656476, + 2.506080868699679, + 2.8001338633225847, + 3.143164725862182, + 3.5104718549266534, + 3.8548454175422537, + 4.451018321828258, + 4.911677689209101, + 5.297016704953428, + 5.926406904662141, + 6.42363687282888, + 7.719212181270854, + 8.980633064022445, + 9.346857075629215, + 9.682185873929486, + 10.014312896496607, + 10.275472721434394, + 10.500494849414343, + 10.695612308471507, + 10.859690701170845, + 10.982362439165625, + 11.12255814267523, + 11.218429945956188, + 11.265557218538143, + 11.341930946657229 + ], + "5._96._0.075": [ + 2.2092619209324713, + 2.5553055502990434, + 2.8518822508487425, + 3.1999858528748244, + 3.522272820624551, + 3.998433491444854, + 4.675890638522394, + 5.397602630870329, + 6.630658201542149, + 7.489891206956371, + 8.13793378006344, + 9.080671485080156, + 9.74838555993002, + 11.273174243711194, + 12.580380605681448, + 12.940043372325281, + 13.262876866410467, + 13.577523541572692, + 13.821599056356833, + 14.030346435181029, + 14.21009292948024, + 14.36049327970005, + 14.472700352633982, + 14.600821880462632, + 14.688349595590939, + 14.731324538344229, + 14.800941414503153 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351656362397346, + 3.1870222148932092, + 3.520674363862824, + 4.0264279051145735, + 4.637320591731866, + 5.681918628105053, + 7.195928057608826, + 8.667652969634457, + 10.835407948040462, + 12.17313876658168, + 13.120915089648694, + 14.431210692905513, + 15.324414951512091, + 17.287810340267846, + 18.921004062740323, + 19.36491546608122, + 19.762051084570377, + 20.147743937846332, + 20.44602162176634, + 20.70070964136171, + 20.919651129829095, + 21.102616404070183, + 21.23902136310015, + 21.394731378971578, + 21.50103309397409, + 21.553187409637513, + 21.637628767055283 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.4511928331220942, + 2.788419317683002, + 3.044973112248845, + 3.3874436711912677, + 3.615661212012368, + 3.800050369353508, + 4.104157202838955, + 4.356442100688683, + 5.12205707751613, + 6.104951371039292, + 6.446639974674841, + 6.785677489291673, + 7.14704327959393, + 7.450449873105475, + 7.725362085869953, + 7.974617851085698, + 8.192173659856739, + 8.359201726136602, + 8.554505711034817, + 8.690545155519857, + 8.758244872089577, + 8.869012063214859 + ], + "5._384._0.0875": [ + 3.49036660596901, + 4.021766894917606, + 4.670398135472843, + 5.785876730623253, + 7.138255086355541, + 9.165208843721057, + 11.541605088064465, + 13.48737679446265, + 16.016925846737212, + 17.466322475408763, + 18.46211624061257, + 19.809514025003885, + 20.71551095088742, + 22.689183383189555, + 24.325042046727248, + 24.769175716459035, + 25.16730866035988, + 25.554315529732776, + 25.854096076383122, + 26.110133317947074, + 26.330508557731115, + 26.51489398108105, + 26.652379210936964, + 26.809464413649252, + 26.91666630006337, + 26.96922193140444, + 27.05422647074861 + ], + "5._48._0.075": [ + 1.5268463243731403, + 1.8679037053125447, + 2.1622431316564747, + 2.5060808688610527, + 2.8001342903818083, + 3.1432338679800567, + 3.5114733483441682, + 3.857857357850316, + 4.459751399181277, + 4.9307123214898665, + 5.331458857871278, + 6.002224412369842, + 6.547004846721879, + 8.022439927539539, + 9.52315275020389, + 9.968067991414454, + 10.377948331831623, + 10.785910363406488, + 11.107625004661795, + 11.385384317551141, + 11.626367553184362, + 11.828974735668197, + 11.98043089448376, + 12.153298933490644, + 12.271491966315507, + 12.329622690516775, + 12.42391440421234 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235626058277, + 2.851913830622353, + 3.2001519267074148, + 3.523359938286808, + 4.002550681065331, + 4.688607687930474, + 5.435519397369628, + 6.769739711868012, + 7.743407290903215, + 8.498819340733247, + 9.625393320231394, + 10.439696691725631, + 12.336240074219331, + 13.984730545681584, + 14.440147371236215, + 14.848759407552242, + 15.246859877582578, + 15.555285881043151, + 15.818798499910438, + 16.04531949178444, + 16.234511881534374, + 16.375485158212747, + 16.536146203601948, + 16.645795872234547, + 16.699618718001776, + 16.78681672438809 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351669594995696, + 3.187125521522209, + 3.521463685390284, + 4.029270810107842, + 4.644904567747854, + 5.713128198797925, + 7.307316673339804, + 8.909872319261455, + 11.35072167018287, + 12.895494747737077, + 14.003407905474932, + 15.547938805845172, + 16.607217973416407, + 18.94266334993788, + 20.886424154713033, + 21.414574413114515, + 21.886368397670783, + 22.344045572738665, + 22.697394497134898, + 22.998976881618418, + 23.257918860895764, + 23.474073345498056, + 23.63518508430463, + 23.818982153138492, + 23.944474714533293, + 24.006070079545328, + 24.105886879805396 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.451192833143695, + 2.788419622271439, + 3.044991761646356, + 3.387836099630224, + 3.616756840104146, + 3.8018743251439537, + 4.107449030686346, + 4.36157985013461, + 5.1408932143801875, + 6.1675657364881555, + 6.532939316352237, + 6.90021776244336, + 7.296936524147337, + 7.634356648978209, + 7.943557694081457, + 8.226800511414554, + 8.47628359622688, + 8.669254929778113, + 8.896318374617808, + 9.055405913116935, + 9.134903266625965, + 9.265449892837752 + ], + "5._384._0.0875": [ + 3.491345865963805, + 4.025031445778256, + 4.679459748673603, + 5.82351492252652, + 7.249685133953091, + 9.465709095419136, + 12.162871522713194, + 14.43017861955112, + 17.426918448409655, + 19.159291413800595, + 20.353054328217997, + 21.96960205243791, + 23.056963869277343, + 25.421183037493762, + 27.37565506564622, + 27.90561126103131, + 28.38011764620802, + 28.840909851662424, + 29.197383891971185, + 29.501762256131418, + 29.763531311969682, + 29.982392436026263, + 30.14557233212953, + 30.33195394648352, + 30.45917312773902, + 30.52156412806964, + 30.62254759778572 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.506080868963746, + 2.8001345621467664, + 3.143277867550196, + 3.512110701279522, + 3.8597749208835053, + 4.465308288754423, + 4.942628589301531, + 5.352657638814722, + 6.048496013896072, + 6.623113848411964, + 8.22198755505713, + 9.908799233756632, + 10.419596527986892, + 10.893552161184353, + 11.368272036526347, + 11.744278866087646, + 12.069981280671438, + 12.353067937004342, + 12.591283097765531, + 12.769461842221778, + 12.972723000760597, + 13.111741413849154, + 13.180171278848512, + 13.291295356631528 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323563035405, + 2.8519144504397964, + 3.200220678037872, + 3.5239856416868593, + 4.0050212111086045, + 4.696255292797879, + 5.457946788580218, + 6.852322959652057, + 7.899174082572376, + 8.727630982952414, + 9.986721281780241, + 10.912700366416585, + 13.10865099403437, + 15.04793483199602, + 15.586871383611609, + 16.070555900739027, + 16.54188047264967, + 16.90670497627415, + 17.218339711615116, + 17.48591723255255, + 17.709122540263703, + 17.875366776212047, + 18.064622313136542, + 18.193781801854332, + 18.25720919402969, + 18.360067072826148 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351678756032523, + 3.187197041666315, + 3.5220101721476054, + 4.031240028495608, + 4.650163195545352, + 5.734783968720359, + 7.384632084417681, + 9.081261546042475, + 11.733937470740653, + 13.450913327561588, + 14.697409931934857, + 16.451209927017835, + 17.662793068404085, + 20.34688380076406, + 22.586110573451347, + 23.194772299633314, + 23.737831944817643, + 24.264149555190492, + 24.669876455789215, + 25.016033964075223, + 25.312916016634926, + 25.560485255147615, + 25.7449721774163, + 25.95530942131922, + 26.09893990755411, + 26.169465466711337, + 26.2838522954619 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.451192833158654, + 2.788419833140358, + 3.0450046727696316, + 3.3881077849846046, + 3.6175154184662173, + 3.803137335074187, + 4.109729271823221, + 4.3651397599100425, + 5.153955597194154, + 6.210853926422764, + 6.5926916446571635, + 6.980022527987566, + 7.402501435070899, + 7.7655015746654525, + 8.101268216962444, + 8.411675246313923, + 8.687475025368178, + 8.902437505358286, + 9.157209865225672, + 9.337000197656067, + 9.427306815703629, + 9.576316229475234 + ], + "5._384._0.0875": [ + 3.492024137406453, + 4.027293311777627, + 4.685745220359757, + 5.8496304713082665, + 7.327017149653586, + 9.680469594956923, + 12.631347164771578, + 15.17309515053647, + 18.592251105784506, + 20.589800303714075, + 21.971822171812732, + 23.846439642542194, + 25.108661724952608, + 27.849785182011207, + 30.11131312932821, + 30.72386699048168, + 31.27172829327736, + 31.803265511092665, + 32.21396119315492, + 32.56454795365729, + 32.86581826712148, + 33.11752957669362, + 33.30518717222429, + 33.51945801338999, + 33.665737731685816, + 33.73749947899058, + 33.85372710274115 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.5060808690348377, + 2.8001347502917393, + 3.143308328809554, + 3.512551963340744, + 3.8611028394834017, + 4.469159939592605, + 4.950889951527636, + 5.367335572984743, + 6.080440244925048, + 6.675641613648751, + 8.362820264510766, + 10.193789641219754, + 10.758918683989547, + 11.287067530551075, + 11.819679136119719, + 12.243765332769714, + 12.612647330757948, + 12.934155065922809, + 13.205195379931938, + 13.408188977655687, + 13.639811538319776, + 13.798359480325088, + 13.87648989469043, + 14.003540968323318 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235633328075, + 2.8519148795441804, + 3.200268275165374, + 3.5244188384440176, + 4.006732310496648, + 4.701558385188678, + 5.4735055032008715, + 6.909503153296634, + 8.007896097083323, + 8.889537380460425, + 10.249462852845705, + 11.26435140672784, + 13.71303721307781, + 15.914149688864596, + 16.530489051192, + 17.084309756106943, + 17.624452349705088, + 18.042427326254828, + 18.399510986938072, + 18.70586720633645, + 18.961176691326557, + 19.151272739043552, + 19.367482378572095, + 19.515042862574578, + 19.58754125184746, + 19.705224061076326 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351669612369923, + 3.187131809821055, + 3.5217574552296442, + 4.031860000556221, + 4.642789924984922, + 5.664050926695616, + 7.177536839227692, + 8.73205712185217, + 11.14645622530254, + 12.68750861068738, + 13.794921102061611, + 15.339985850260671, + 16.399605548253966, + 18.73422495054544, + 20.675477814061185, + 21.20270161298177, + 21.673507036497224, + 22.130117723325338, + 22.48254787979569, + 22.783313445882108, + 23.041506933773235, + 23.25700176539784, + 23.417612525329186, + 23.600819999746907, + 23.725907494602644, + 23.78730535626037, + 23.886809623125316 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.4511928331436965, + 2.7884196223805504, + 3.044992027085384, + 3.38791749451322, + 3.6173418260566677, + 3.803349868661866, + 4.110060121199708, + 4.362469622374145, + 5.11332117909886, + 6.085104560190628, + 6.434924828625525, + 6.7899634813382646, + 7.177169255216708, + 7.509350469809416, + 7.815605489491669, + 8.097485888963899, + 8.346592396306441, + 8.539609729993684, + 8.766974322953123, + 8.926316375019143, + 9.005943772244606, + 9.13667321203526 + ], + "5._384._0.0875": [ + 3.4917854785249274, + 4.027892682863467, + 4.674512332290674, + 5.76433018715352, + 7.118823424030785, + 9.27496727848396, + 11.950748739554333, + 14.215514760326917, + 17.213590667732912, + 18.94650290689656, + 20.1401514543864, + 21.755871343338576, + 22.842316077409556, + 25.203207795314178, + 27.15383368215816, + 27.68261441976035, + 28.155994660819886, + 28.615633613620084, + 28.971159712344004, + 29.274716510103367, + 29.535753696189534, + 29.753984531395947, + 29.91669228327421, + 30.102527311648508, + 30.229375158748294, + 30.29158608804928, + 30.39228523455161 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.5060808689637457, + 2.800134562232989, + 3.14327916441727, + 3.5123102532597708, + 3.861332630541545, + 4.46625801003282, + 4.930366410124289, + 5.320873222479279, + 5.977986165022717, + 6.523082498661355, + 8.070512526217932, + 9.74033387825479, + 10.249977839170032, + 10.72380344038845, + 11.198839359120816, + 11.575308318512594, + 11.901326389413148, + 12.18463074954121, + 12.42294215151655, + 12.601109309351095, + 12.804250491457228, + 12.943133129933976, + 13.011482757605545, + 13.122456061328451 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.5553235630354036, + 2.85191445085216, + 3.2002236321495934, + 3.5241752721853348, + 4.0072483561728, + 4.693830270584265, + 5.424314266196199, + 6.744298970435425, + 7.750465107474564, + 8.557800527938326, + 9.799245263410551, + 10.719250086160097, + 12.912412337145456, + 14.85221260258157, + 15.391211680617198, + 15.87463723683865, + 16.34552964897247, + 16.709868891192656, + 17.02099235650318, + 17.288039892312778, + 17.51073252615451, + 17.67656252866379, + 17.865298415493864, + 17.99408591656644, + 18.057328074885103, + 18.159887791902026 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351678770733755, + 3.187202360842244, + 3.5222558951808356, + 4.033001480958287, + 4.64282847825528, + 5.658749749401029, + 7.180451156340128, + 8.792647613304357, + 11.396386191115555, + 13.108044712131049, + 14.35553574266794, + 16.113330138517803, + 17.32739253678775, + 20.01267682522805, + 22.247947491528564, + 22.854879473699143, + 23.396018982536418, + 23.920222244172166, + 24.324104590001333, + 24.66861275115878, + 24.96397783422694, + 25.21020822306621, + 25.393677703397284, + 25.60281885520403, + 25.745626917382793, + 25.815750974401922, + 25.929501898575484 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.4511928331586543, + 2.7884198332326826, + 3.045004897367837, + 3.3881764117636184, + 3.617997972654443, + 3.804287760326047, + 4.111048434608664, + 4.362992513447313, + 5.11016852521276, + 6.0823655856408045, + 6.438280156515094, + 6.804360914987624, + 7.209761383441146, + 7.563068641706794, + 7.893389830525229, + 8.201390950021436, + 8.476747535956298, + 8.69210657983334, + 8.947878709814887, + 9.128428140011792, + 9.21909198419426, + 9.368561189426797 + ], + "5._384._0.0875": [ + 3.4923899597134294, + 4.029040072276986, + 4.6741343169428085, + 5.758331223450796, + 7.121224431188424, + 9.36822059802616, + 12.27988789238486, + 14.820180426978071, + 18.247407763100583, + 20.24848504178485, + 21.631563003465224, + 23.505756990273504, + 24.766687298672714, + 27.50173694297232, + 29.755679052510942, + 30.365871703720572, + 30.911469168650672, + 31.440685174920556, + 31.849473536539573, + 32.19840747924487, + 32.498207264933384, + 32.74865418987794, + 32.935365356564304, + 33.14854266213893, + 33.294079625377435, + 33.36548101987627, + 33.48113930887647 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.506080869034838, + 2.800134750364696, + 3.1433094260752195, + 3.512719450033114, + 3.8623170774725897, + 4.4668128760826, + 4.928967502931451, + 5.317180793432326, + 5.971980540499062, + 6.5200866085609634, + 8.117954025217072, + 9.917694334766331, + 10.481136526359018, + 11.009779202169527, + 11.543864331667741, + 11.969543704904865, + 12.339609533251991, + 12.661968911851094, + 12.933481519286822, + 13.136605430208776, + 13.368095393353892, + 13.526402212564701, + 13.60437395778915, + 13.731107324489717 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.5553235633328057, + 2.851914879893103, + 3.2002707743981924, + 3.524578082112754, + 4.008353700802753, + 4.693820220569501, + 5.420426385271752, + 6.741261908314919, + 7.770553372372415, + 8.614352087103972, + 9.94155380015661, + 10.945645852155918, + 13.392310279714764, + 15.597831649139092, + 16.215002367149157, + 16.768829694968566, + 17.30849014135084, + 17.725699027950938, + 18.081873254990406, + 18.387222587582094, + 18.641521896006108, + 18.830786411387095, + 19.04593977463032, + 19.192736721945092, + 19.26485238297267, + 19.381916346387253 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + } +} \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json new file mode 100644 index 0000000000..2a6efba931 --- /dev/null +++ b/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json @@ -0,0 +1,2926 @@ +{ + "3_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 5.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835159810088887, + 3.186553817896705, + 3.516527838262404, + 4.004329837473649, + 4.563116154725879, + 5.422730649791384, + 6.515803491910567, + 7.482956710803077, + 8.821023313877978, + 9.6182191663194, + 10.175664703095364, + 10.941363073004217, + 11.461472146417226, + 12.608257361815083, + 13.568342463717922, + 13.830179312701365, + 14.065319930740815, + 14.294348922588275, + 14.472150360525662, + 14.62411713920069, + 14.755089916843, + 14.86479421584671, + 14.946616058533072, + 15.040137216786091, + 15.103960182529738, + 15.135243749367413, + 15.185795927543893 + ], + "5._24._0.075": [ + 0.8740013793970969, + 1.1957934696806858, + 1.4813667488882372, + 1.819785366250676, + 2.111404434180714, + 2.4510705251726415, + 2.7881845096187328, + 3.044509593245944, + 3.3847903095492087, + 3.6083035325207624, + 3.7863073570514962, + 4.073420909415854, + 4.303528018870766, + 4.946650857734783, + 5.6693569965691, + 5.9013084226992705, + 6.123950179738185, + 6.354536856156806, + 6.543591291544423, + 6.712003311328731, + 6.862701672318173, + 6.993032655361014, + 7.092573856085612, + 7.208783610032469, + 7.289678619678314, + 7.329892641652891, + 7.395672028234926 + ], + "5._384._0.0875": [ + 3.485048260731776, + 3.9951071279520405, + 4.581851301847068, + 5.484808169649971, + 6.455104578968857, + 7.775372616018783, + 9.22199936245641, + 10.365908886904977, + 11.82883492358668, + 12.661581403425886, + 13.23319009931225, + 14.008316381993554, + 14.530522093813575, + 15.675495110327816, + 16.63142732476554, + 16.89179450610136, + 17.125793127388665, + 17.353729855179026, + 17.530765771001807, + 17.682044232641264, + 17.812464911292064, + 17.921742819595384, + 18.003230911309156, + 18.096394037225632, + 18.159940527464432, + 18.191068435625677, + 18.24133759731324 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125445, + 2.162243131656477, + 2.5060808684092084, + 2.800133094426295, + 3.1430374163007104, + 3.5082169030632127, + 3.8450275342479676, + 4.406534046169518, + 4.816288079387438, + 5.143866301845898, + 5.65606519988429, + 6.046495444259167, + 7.030090060237974, + 7.966007100338916, + 8.235929869051896, + 8.483170856797145, + 8.728158996337275, + 8.921112444405356, + 9.087562420507037, + 9.232205464733582, + 9.354129986505788, + 9.445427943510513, + 9.550041570574544, + 9.621668042054347, + 9.656881667288603, + 9.713926996862321 + ], + "5._96._0.075": [ + 2.2092619209324704, + 2.555305549083987, + 2.851880496820393, + 3.199784898670547, + 3.52007441535427, + 3.984136432946034, + 4.613165252686054, + 5.236232350959428, + 6.22360987846198, + 6.880193152459714, + 7.366198391381113, + 8.065015871363219, + 8.556594005322559, + 9.676987132273267, + 10.639766269340903, + 10.905167610733255, + 11.144072739107475, + 11.377399385181416, + 11.558888935284472, + 11.714267141061399, + 11.848328964404903, + 11.960713056407453, + 12.044610223908563, + 12.14053053593925, + 12.206065808619332, + 12.23822816706263, + 12.290272439934673 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 5.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351565340840654, + 3.186294678741936, + 3.5144109644730803, + 3.995439251104943, + 4.540054979569839, + 5.353103468826478, + 6.338557682853676, + 7.175644263582237, + 8.300018094772028, + 8.95825975403952, + 9.415339886150417, + 10.040686729759392, + 10.464389965358135, + 11.398422195838442, + 12.181295381120544, + 12.394954611632901, + 12.587053316477114, + 12.774322378435347, + 12.9198790390213, + 13.04432381553385, + 13.151666275296192, + 13.24164740649804, + 13.308770317159306, + 13.385528170620196, + 13.437906679454773, + 13.463572869649013, + 13.505022546131494 + ], + "5._24._0.075": [ + 0.874001379397096, + 1.1957934696806856, + 1.481366748888237, + 1.8197853662506764, + 2.1114044341807157, + 2.451070525119184, + 2.7881837559656337, + 3.044463314569365, + 3.3837752049736625, + 3.6052626282529983, + 3.7808850342249296, + 4.062850526656146, + 4.287173959398183, + 4.900757002121434, + 5.559857029797825, + 5.764587946944072, + 5.958448455056103, + 6.1566606616146045, + 6.317427227631378, + 6.4594026896501004, + 6.585572806050645, + 6.694097761730789, + 6.776645767697963, + 6.872735660118553, + 6.939435155205178, + 6.972521380956327, + 7.02653942906457 + ], + "5._384._0.0875": [ + 3.4823994761887773, + 3.9848262284880747, + 4.555179718646517, + 5.404715728587619, + 6.277318639068673, + 7.415941427751029, + 8.623924248681595, + 9.562805804136447, + 10.753149302763997, + 11.428110159901493, + 11.890961006550969, + 12.518785405045108, + 12.941903106666471, + 13.871456847280529, + 14.649379566430458, + 14.861481795023234, + 15.05227676777121, + 15.238263204563578, + 15.382850967157188, + 15.506425265511714, + 15.613023847945573, + 15.70238848204994, + 15.76903100298123, + 15.845242134255502, + 15.89721792111516, + 15.922670854730866, + 15.963754000577815 + ], + "5._48._0.075": [ + 1.5268359332879176, + 1.867883938514738, + 2.1622087383456443, + 2.506015109960689, + 2.8000188522237432, + 3.1427108866736058, + 3.5060986477767258, + 3.838544450552084, + 4.387051823461636, + 4.779681099553516, + 5.087048257250629, + 5.555234983642199, + 5.902478640976778, + 6.746305648050327, + 7.520034677798101, + 7.739757236794212, + 7.939975736139153, + 8.13764341906379, + 8.292951958392333, + 8.426822026199208, + 8.543135382483195, + 8.641236746959452, + 8.714776488918025, + 8.799196310069604, + 8.857085366459035, + 8.885567456031344, + 8.93174626548206 + ], + "5._96._0.075": [ + 2.2092619209324695, + 2.5553055480208147, + 2.8518789626125645, + 3.1996131291742733, + 3.5184210872676602, + 3.976538634666165, + 4.590026741342543, + 5.182023608336045, + 6.081979246107727, + 6.658142816068973, + 7.075882331699295, + 7.666879556882379, + 8.077358544183552, + 9.003240254562144, + 9.793289043391548, + 10.010580720922956, + 10.206299718151746, + 10.397526436776573, + 10.546421057404947, + 10.673923694180173, + 10.784036508256804, + 10.876432045080968, + 10.945427632519772, + 11.02437236750136, + 11.078310702275603, + 11.104773400439738, + 11.147566477076325 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351619940963437, + 3.1867265785500734, + 3.517939064186244, + 4.010138551230323, + 4.576291588076084, + 5.455044208906557, + 6.600975167484662, + 7.649772284219236, + 9.14934968837866, + 10.063857164096989, + 10.710146938865867, + 11.604140247325471, + 12.214402814710182, + 13.56347254307444, + 14.693817434625865, + 15.00208648237771, + 15.278653289269412, + 15.547835844558206, + 15.756579124539229, + 15.93494441325526, + 16.088544751837524, + 16.217104047249517, + 16.312972046145962, + 16.42249378959499, + 16.497241448969145, + 16.533890372501336, + 16.593147644087402 + ], + "5._24._0.075": [ + 0.8740059532267962, + 1.1958031759615424, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247276, + 2.4511928330626853, + 2.7884184798647675, + 3.0449213397455503, + 3.3862129873393996, + 3.611462070674867, + 3.7914510567110744, + 4.082678848046977, + 4.31684348037127, + 4.9772959513826285, + 5.738584084401636, + 5.989253979063876, + 6.23334177329425, + 6.489858040662278, + 6.703119888040274, + 6.895278018666497, + 7.068988968785528, + 7.220519810348074, + 7.336979263921885, + 7.473656308122835, + 7.569188413539111, + 7.61680335666292, + 7.694850505823601 + ], + "5._384._0.0875": [ + 3.4868221254020995, + 4.001784930550749, + 4.596673773043294, + 5.521665948466438, + 6.540439532142497, + 7.977512581636011, + 9.610904130639307, + 10.9333347273021, + 12.648054089886527, + 13.631008058550055, + 14.307291859475942, + 15.224995190752944, + 15.843459817922156, + 17.19766002629546, + 18.326147574478423, + 18.6332414737864, + 18.908992063919293, + 19.177410310732977, + 19.38569525993438, + 19.56364167675798, + 19.716962108500727, + 19.845358360487722, + 19.941096166408666, + 20.05051971773102, + 20.125166859502414, + 20.161741855562525, + 20.22083721520326 + ], + "5._48._0.075": [ + 1.5268463243731434, + 1.8679037053125458, + 2.1622431316564765, + 2.506080868578651, + 2.800133542870094, + 3.1431104909437595, + 3.5093422402107293, + 3.8488065872303174, + 4.417007137769795, + 4.833524538210346, + 5.168561858065412, + 5.698283073774795, + 6.108422194827479, + 7.16973404414734, + 8.217325109845467, + 8.525494050029078, + 8.809680065211936, + 9.092885964465491, + 9.316854548088468, + 9.510655082390995, + 9.679389102065697, + 9.821789543310542, + 9.928514440070055, + 10.050817206373901, + 10.134608666237124, + 10.175835404712222, + 10.242681818413955 + ], + "5._96._0.075": [ + 2.209261920932471, + 2.555305549792769, + 2.8518815196256133, + 3.1998994120329356, + 3.5211766712637163, + 3.9891348905024158, + 4.626334080989386, + 5.262063095260086, + 6.289867551825011, + 6.992805162264005, + 7.523625491011389, + 8.301141948345355, + 8.857142967903947, + 10.144929297532864, + 11.26645577577747, + 11.577167894037178, + 11.856964508026879, + 12.130317747234228, + 12.342847312936236, + 12.524813135310088, + 12.681713811351326, + 12.813146370843763, + 12.911244963986244, + 13.023325280110544, + 13.09990529951879, + 13.137501383651404, + 13.19837972697988 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351598100889333, + 3.186553818148467, + 3.5165275544690586, + 4.004177645649153, + 4.560394454126767, + 5.404528488427205, + 6.4653163271605445, + 7.404585892224184, + 8.713630746034905, + 9.499265828769046, + 10.050772272258875, + 10.81060963096323, + 11.327939670983994, + 12.470999774199317, + 13.429543110934176, + 13.691116415222478, + 13.926042423824137, + 14.154881488399482, + 14.332539416005197, + 14.484387322063652, + 14.615254941541213, + 14.724867276896992, + 14.806619383894027, + 14.900056480632026, + 14.963821589679382, + 14.995077134890897, + 15.045585208373184 + ], + "5._24._0.075": [ + 0.8740013793970969, + 1.1957934696806858, + 1.4813667488882372, + 1.819785366250676, + 2.111404434180714, + 2.451070525172642, + 2.7881845096187314, + 3.0445095932465436, + 3.384790296235433, + 3.608300621406263, + 3.786273721257274, + 4.07301640831534, + 4.302065179681548, + 4.935772034824665, + 5.638206968148548, + 5.863131365768318, + 6.079316125340249, + 6.30377249695898, + 6.4883945079474055, + 6.653403306693699, + 6.801559221982691, + 6.930117662415666, + 7.028593162702971, + 7.14390134679195, + 7.224391738886363, + 7.2644765822766555, + 7.330156502198911 + ], + "5._384._0.0875": [ + 3.485055176339726, + 3.9948779409843476, + 4.578180805322111, + 5.463181880462131, + 6.404471751073209, + 7.687504422577824, + 9.105446021739699, + 10.235251652057219, + 11.687801303678873, + 12.517170268501882, + 13.087167190880338, + 13.860738320190483, + 14.382188791054638, + 15.525936111919222, + 16.481052762689274, + 16.741212284529773, + 16.975012236622444, + 17.20274676321629, + 17.379613992616175, + 17.530745227021544, + 17.66103175266864, + 17.77019117769277, + 17.851589168090307, + 17.944645188758894, + 18.008118008718142, + 18.039210073885545, + 18.089422568697874 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125445, + 2.162243131656477, + 2.5060808684092075, + 2.800133094426294, + 3.143037416319103, + 3.5082167989791517, + 3.8449979972918684, + 4.405045143172387, + 4.810218367067714, + 5.13140424265868, + 5.630094799486316, + 6.008744769770279, + 6.96377483838737, + 7.880183754499313, + 8.146223448273616, + 8.390584335792338, + 8.633328634331779, + 8.824925283462456, + 8.990473257774013, + 9.134529390090313, + 9.256094738091658, + 9.34719690795095, + 9.451661694965424, + 9.523231617056346, + 9.558432117031195, + 9.615476530679963 + ], + "5._96._0.075": [ + 2.2092619209324704, + 2.555305549083986, + 2.8518804968203932, + 3.1997848987366826, + 3.5200743285659075, + 3.9840494720502555, + 4.610370935559913, + 5.223164440535002, + 6.182812654544711, + 6.819567758248685, + 7.292181190209109, + 7.9747459149291355, + 8.457294789286404, + 9.563952017788186, + 10.520943224372829, + 10.785451486715994, + 11.02375683154072, + 11.25665338358628, + 11.437898537738, + 11.593116330195803, + 11.72707190614617, + 11.839385472209404, + 11.923238750645988, + 12.019114387336861, + 12.084624468367993, + 12.11677662922516, + 12.16880739574567 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351635541037297, + 3.186849979510023, + 3.518947187268089, + 4.014292028071848, + 4.585693984965083, + 5.47662620581322, + 6.65252383238329, + 7.752302566384251, + 9.369687760612193, + 10.379876959713483, + 11.102615861697226, + 12.111419104447132, + 12.804768700638656, + 14.344764454967244, + 15.63853918222764, + 15.991628852186004, + 16.308165133612942, + 16.61607825040545, + 16.85462331913323, + 17.058409505600206, + 17.23376895988989, + 17.380433703881895, + 17.489785106660282, + 17.61465059133886, + 17.69987594451136, + 17.741673732606074, + 17.809295202974706 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.111467924224727, + 2.4511928330881463, + 2.788418838872571, + 3.04494338890382, + 3.3866968888717226, + 3.6129109162980844, + 3.794019913702326, + 4.087495314485644, + 4.323798689445163, + 4.992415353091028, + 5.770450347075793, + 6.029980354006727, + 6.284950578872866, + 6.555689070980721, + 6.783272504606113, + 6.990486322674785, + 7.179712465107697, + 7.346362483190661, + 7.475512469634818, + 7.6282903330976355, + 7.7359046761766255, + 7.7898277793711825, + 7.878657540979085 + ], + "5._384._0.0875": [ + 3.488090242741065, + 4.006562640195193, + 4.60723236457645, + 5.545948102354269, + 6.592153924974582, + 8.103802003990616, + 9.878074970451863, + 11.35124307566803, + 13.294081558009292, + 14.418478695359125, + 15.194816201875662, + 16.249993114896373, + 16.961811500838287, + 18.5193268308439, + 19.815465143210997, + 20.167929527103556, + 20.48415585252447, + 20.791767580202052, + 21.030250675169665, + 21.233957239087434, + 21.40936902954627, + 21.556186574615282, + 21.665651453469863, + 21.79072861511742, + 21.87606378193884, + 21.917885753753957, + 21.9854913646596 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656476, + 2.50608086869968, + 2.8001338631870927, + 3.143162687170529, + 3.5101461072902103, + 3.851507302333954, + 4.424494935538146, + 4.845640040874877, + 5.185333911685885, + 5.725076038864624, + 6.146257385216429, + 7.255415003269011, + 8.384583170407717, + 8.723638670921712, + 9.038763241579039, + 9.355055132144983, + 9.606600705756405, + 9.825219506898199, + 10.016163098004855, + 10.177674106850537, + 10.298925671761397, + 10.437998985474305, + 10.533399804001847, + 10.580393534633425, + 10.656683544738016 + ], + "5._96._0.075": [ + 2.2092619209324713, + 2.555305550299042, + 2.8518822502007706, + 3.1999812074434995, + 3.5219640505794545, + 3.992708163473018, + 4.635730507333138, + 5.279686565712511, + 6.3304273153770065, + 7.060808440787523, + 7.620464860508507, + 8.453419308198125, + 9.058631507594365, + 10.486053680311809, + 11.75115282217733, + 12.104190661029175, + 12.422525146114898, + 12.733857115503065, + 12.975953848100746, + 13.183319218679237, + 13.36206352483977, + 13.511720897506361, + 13.623415056183813, + 13.750958288341046, + 13.838116051517467, + 13.880922733835177, + 13.950287628918725 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351619940963793, + 3.1867265787598766, + 3.517938827823941, + 4.010011985064884, + 4.5739773106417, + 5.437822339492953, + 6.545092002654102, + 7.553221051849516, + 9.003343860312144, + 9.895835631208817, + 10.530206286769207, + 11.412004908900458, + 12.016353640827127, + 13.357460812438733, + 14.484648029499324, + 14.792415778035394, + 15.06859690120631, + 15.337456768724529, + 15.545968489710484, + 15.724147736351181, + 15.877587457301269, + 16.006008240009738, + 16.101771983474293, + 16.211168019203264, + 16.285829696281947, + 16.32243726603191, + 16.381629911143744 + ], + "5._24._0.075": [ + 0.8740059532267962, + 1.1958031759615424, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247276, + 2.4511928330626853, + 2.7884184798647667, + 3.044921339746049, + 3.386212976218488, + 3.611459640524993, + 3.791422955323033, + 4.082338928094801, + 4.315596738504908, + 4.967209808569391, + 5.705018411233426, + 5.946080600381087, + 6.1806949483592994, + 6.427516201125567, + 6.633276029335952, + 6.819305409184126, + 6.98817118078535, + 7.136139921672738, + 7.250357372116546, + 7.385045152874297, + 7.479639891207736, + 7.52693886121219, + 7.6047125206766095 + ], + "5._384._0.0875": [ + 3.486827853668699, + 4.0015945570979445, + 4.593531379709532, + 5.500840072661439, + 6.484526342125646, + 7.866528502324645, + 9.449441829715646, + 10.74421352705269, + 12.437240427641948, + 13.412920626045588, + 14.085720036843934, + 15.000102531413289, + 15.61699255480704, + 16.968812473544713, + 18.095885325866256, + 18.40264023974615, + 18.678069136815523, + 18.946162608681455, + 19.154176981572345, + 19.3318875142385, + 19.484992453533845, + 19.6131977652149, + 19.708790150572465, + 19.818040238735623, + 19.892567943897237, + 19.929084838811917, + 19.98808843600117 + ], + "5._48._0.075": [ + 1.5268463243731434, + 1.8679037053125458, + 2.1622431316564765, + 2.50608086857865, + 2.8001335428700935, + 3.143110490959085, + 3.509342153515457, + 3.8487820134226576, + 4.415752879182001, + 4.828171133915402, + 5.157007744221532, + 5.672089446511082, + 6.067867329566422, + 7.0885368126822135, + 8.10262886356592, + 8.403445947230162, + 8.681935473725426, + 8.960555367197395, + 9.181675821104163, + 9.373550417604223, + 9.541014785108565, + 9.682632990789568, + 9.788932857974942, + 9.91091857517242, + 9.994593769790587, + 10.035795743265334, + 10.102647420012506 + ], + "5._96._0.075": [ + 2.209261920932471, + 2.555305549792769, + 2.851881519625615, + 3.199899412088046, + 3.5211765989687644, + 3.9890625780338977, + 4.623956644995129, + 5.250032184453519, + 6.246224197620236, + 6.922093841239779, + 7.432596076880929, + 8.18314583641468, + 8.722891639937862, + 9.98382672348065, + 11.093173116655235, + 11.401945286269772, + 11.68044551814865, + 11.952878676979147, + 12.16490061390705, + 12.346545044907298, + 12.5032471551335, + 12.634560806152546, + 12.732592762246725, + 12.84461418050184, + 12.92116759733883, + 12.95875578664787, + 13.019628147176219 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351647241103906, + 3.1869425304997328, + 3.51970333669905, + 4.017409381342081, + 4.592761141983563, + 5.492814504744574, + 6.689495588306474, + 7.8236525128326715, + 9.527525312022664, + 10.614603364274714, + 11.401982038305256, + 12.511925549354828, + 13.280918331600573, + 14.999846852017127, + 16.450230085945222, + 16.84660744374958, + 17.2017625307316, + 17.54711114586818, + 17.81443528245305, + 18.042770979470138, + 18.239120326806848, + 18.40322953076705, + 18.525569050833656, + 18.665201223233996, + 18.76051231737524, + 18.807269427324215, + 18.882957131489313 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247267, + 2.451192833107242, + 2.7884191081284255, + 3.0449599257755176, + 3.387059821766809, + 3.6139976649246206, + 3.7959470619006033, + 4.09111042131428, + 4.329021919919711, + 5.003771827000038, + 5.793598078690887, + 6.058987846887826, + 6.321187442146675, + 6.601566177332709, + 6.839219231921882, + 7.057429914366919, + 7.258473533262548, + 7.43713197332386, + 7.5767508041460765, + 7.743347488644804, + 7.861753363092563, + 7.921462645617128, + 8.020437964096304 + ], + "5._384._0.0875": [ + 3.489041936451172, + 4.01014984332906, + 4.615172066413848, + 5.564124448549441, + 6.629284244557979, + 8.191844278630679, + 10.072188129385793, + 11.670538312269553, + 13.817076524047918, + 15.073402620816044, + 15.944756726162234, + 17.131960879173562, + 17.934129706775984, + 19.689200170926988, + 21.148477098737533, + 21.545090505310306, + 21.900647913084416, + 22.246301873819924, + 22.51404530528171, + 22.74270245708443, + 22.93948480727029, + 23.10410212916965, + 23.226828055981198, + 23.36701770435847, + 23.462672886832742, + 23.5095633416657, + 23.585397452576547 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808687904523, + 2.8001341034248415, + 3.143201834369682, + 3.5107490375662254, + 3.8535335778335797, + 4.430120195636192, + 4.854747329748554, + 5.197911626569433, + 5.744865583427041, + 6.173591787333763, + 7.314996355605043, + 8.50396883318438, + 8.867593308757472, + 9.208173124541617, + 9.552610949607907, + 9.82829859058839, + 10.069146245335443, + 10.280358864879192, + 10.45957904566619, + 10.594447834183308, + 10.749391084662857, + 10.85587315294633, + 10.908405588879434, + 10.993817239597721 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.555323562310493, + 2.8519134039308645, + 3.200100594799831, + 3.522658579361698, + 3.995626535172526, + 4.643441155242728, + 5.294436652800354, + 6.3645711099416005, + 7.1170009436273265, + 7.700057616263231, + 8.580320198222447, + 9.229573083343842, + 10.792537341465938, + 12.207831461901034, + 12.60649463115101, + 12.966949536076955, + 13.320198130761362, + 13.59521676678403, + 13.830864477918645, + 14.033975422891942, + 14.203959900859317, + 14.330753464309911, + 14.475391667175074, + 14.574171669945711, + 14.62267704206443, + 14.701264511137577 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351635541037608, + 3.1868499796898493, + 3.5189469846624415, + 4.014183492659861, + 4.583708083053397, + 5.461715757777267, + 6.601623249728696, + 7.658584927950787, + 9.216613133727828, + 10.197383793482373, + 10.903262548575018, + 11.894051792753755, + 12.578381220493243, + 14.105975224106487, + 15.394881514482872, + 15.747228252624502, + 16.063219652495572, + 16.370698906675358, + 16.608948961682056, + 16.812506097301203, + 16.987674113764264, + 17.134177275237697, + 17.243408448711214, + 17.36812947732773, + 17.453257008203344, + 17.495008218336054, + 17.56255761015432 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.111467924224727, + 2.4511928330881463, + 2.788418838872571, + 3.044943388904247, + 3.386696879339401, + 3.612908833286856, + 3.7939958259040196, + 4.0872038732874625, + 4.322729396286495, + 4.983716791339078, + 5.740369049180017, + 5.990395033964955, + 6.235528344495617, + 6.495640318273675, + 6.714550360958844, + 6.914311374440025, + 7.0973542539053325, + 7.259239665407983, + 7.3852579206322275, + 7.5351290987870065, + 7.6413108865337716, + 7.6947328285506895, + 7.783103655228981 + ], + "5._384._0.0875": [ + 3.488095156501502, + 4.006399345464358, + 4.604535132364228, + 5.5278575486714745, + 6.541275284003912, + 7.994189724754988, + 9.706032011562456, + 11.141012660023293, + 13.051581036303604, + 14.164689560330734, + 14.935547656183253, + 15.98550333378015, + 16.694871535291153, + 18.248857801447702, + 19.543090637863447, + 19.895126302166243, + 20.210950770168594, + 20.518161337793057, + 20.75631158400182, + 20.959728645723647, + 21.13487563231254, + 21.28145802163463, + 21.390743634895472, + 21.515606343851896, + 21.60079378134247, + 21.64254392687713, + 21.710036249756072 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656476, + 2.50608086869968, + 2.800133863187093, + 3.143162687183668, + 3.510146032977504, + 3.851486234869099, + 4.423418808254974, + 4.841039169137343, + 5.175351784586534, + 5.702032657046611, + 6.109746622877348, + 7.176817558232127, + 8.265533199716703, + 8.594814502895684, + 8.902041395553331, + 9.21173151501808, + 9.459041687499841, + 9.674723445583117, + 9.8636880666599, + 10.023957625454718, + 10.144528104107826, + 10.283090712695762, + 10.378302067205007, + 10.425253947542222, + 10.501549128861813 + ], + "5._96._0.075": [ + 2.2092619209324713, + 2.5553055502990425, + 2.851882250200772, + 3.199981207490738, + 3.521963988610402, + 3.9926461588047273, + 4.633690222567384, + 5.269310577474503, + 6.29127521478352, + 6.994485603883118, + 7.532117737988499, + 8.333550322898612, + 8.918291861672152, + 10.308884719512793, + 11.555693075610362, + 11.905685145416689, + 12.221962792694049, + 12.531827448375841, + 12.773119438831772, + 12.979982591218523, + 13.158427246535258, + 13.307916541023099, + 13.419523920259403, + 13.54700142138784, + 13.634138120682078, + 13.67694316664571, + 13.746316629344221 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835164724110417, + 3.1869425306570798, + 3.5197031594129715, + 4.017314379991817, + 4.591021603689052, + 5.479729641024135, + 6.644309378444446, + 7.737970024348029, + 9.379993244536983, + 10.433420486716908, + 11.200425127235306, + 12.287589914945956, + 13.044739309289822, + 14.746864287817836, + 16.19057769487181, + 16.585952387863326, + 16.940398431603573, + 17.285204171607447, + 17.552177184662114, + 17.780249567982576, + 17.97638703214405, + 18.140322370839712, + 18.26253450503826, + 18.402014814708053, + 18.49722448937183, + 18.54393394869935, + 18.61954885642619 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247267, + 2.451192833107242, + 2.7884191081284264, + 3.0449599257758924, + 3.3870598134259553, + 3.6139958422729856, + 3.7959259844899678, + 4.090855355954206, + 4.328085902632857, + 4.99614454316554, + 5.767031415914315, + 6.0237554258262636, + 6.276742135957489, + 6.546823055703472, + 6.775729899547993, + 6.98611942839191, + 7.18040070054066, + 7.353622299934254, + 7.489517731956845, + 7.652497774439099, + 7.769031455414064, + 7.828059947783528, + 7.926378215590658 + ], + "5._384._0.0875": [ + 3.4890462383357663, + 4.010006885815276, + 4.612808844139491, + 5.548240506790002, + 6.584128859379111, + 8.09058484853538, + 9.904229934763753, + 11.457464651399238, + 13.562809669980599, + 14.80398140705099, + 15.667833682263575, + 16.847832039219643, + 17.646624098227893, + 19.396979858302497, + 20.853901338859608, + 21.25001621145673, + 21.605113826953453, + 21.950315168563716, + 22.21768555179701, + 22.44601932527093, + 22.64250590281244, + 22.806860239293698, + 22.92938559052063, + 23.069334725443337, + 23.164824226277748, + 23.211634194381308, + 23.287341556593137 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808687904523, + 2.8001341034248406, + 3.143201834381177, + 3.5107489725409935, + 3.8535151410695883, + 4.4291777964576315, + 4.850716379011286, + 5.189159426973418, + 5.72460050465167, + 6.141295114985283, + 7.243236222409192, + 8.389901558885215, + 8.742397860656046, + 9.073647118597224, + 9.409985313683212, + 9.68029774197312, + 9.917308444028043, + 10.125867245850877, + 10.303382760527716, + 10.43730039875768, + 10.59151829692153, + 10.697723425382671, + 10.750190081686736, + 10.835597135841203 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235623104933, + 2.8519134039308662, + 3.2001005948411696, + 3.5226585251201725, + 3.995572245846752, + 4.641652506578933, + 5.285325415238077, + 6.329876603947273, + 7.057147548559297, + 7.618802589602592, + 8.466546770316551, + 9.093260602497462, + 10.611940396190457, + 12.00266189142421, + 12.396947900034078, + 12.754349959152949, + 13.105350279279282, + 13.379090985028006, + 13.613920045875313, + 13.816523112824909, + 13.98620876452944, + 14.112840296675621, + 14.257349476900792, + 14.356078589484664, + 14.404572250382838, + 14.483158287276947 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351656341162688, + 3.187014514902558, + 3.52029132918205, + 4.019750852814792, + 4.59671906444828, + 5.493795375644857, + 6.677773013554782, + 7.80028340298142, + 9.509270025813493, + 10.622755868377311, + 11.441851262384343, + 12.613701980692431, + 13.436675454364746, + 15.301239108689966, + 16.89283281328606, + 17.329724666914696, + 17.72133369942285, + 18.10225486482879, + 18.397013615778047, + 18.648810535730295, + 18.86522686258618, + 19.046005723801954, + 19.1807593497808, + 19.334489014106907, + 19.43943565290628, + 19.490936858801586, + 19.57435615239791 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.4511928331220942, + 2.7884193175496446, + 3.044972787788944, + 3.3873420994908936, + 3.6148413615105537, + 3.7974275186219506, + 4.0936970425653065, + 4.332256234003077, + 5.005838525360041, + 5.787891324965242, + 6.049862649022653, + 6.30899489941187, + 6.586878544944042, + 6.823640061919987, + 7.0424486694287065, + 7.245758186155466, + 7.428260828983332, + 7.572415599655878, + 7.746655549277552, + 7.8723733846825965, + 7.93650250906297, + 8.044118191543102 + ], + "5._384._0.0875": [ + 3.489786327302739, + 4.012815093557255, + 4.619256359453849, + 5.564164586364483, + 6.6177229227216845, + 8.166359770634953, + 10.0618492666004, + 11.714753610719608, + 13.993324257810821, + 15.353032417115449, + 16.30460116933125, + 17.608866586522343, + 18.49393131562233, + 20.434906393077974, + 22.050292729364497, + 22.48937537485782, + 22.882713476721904, + 23.264873590709865, + 23.56062691045814, + 23.813155932364168, + 24.030340752808428, + 24.21191468618051, + 24.347265845815002, + 24.501821105143996, + 24.607286182825405, + 24.658997666344757, + 24.742670308676313 + ], + "5._48._0.075": [ + 1.5268463243731403, + 1.8679037053125447, + 2.1622431316564747, + 2.5060808688610523, + 2.800134290276426, + 3.143232282218692, + 3.511217943293835, + 3.85509361794084, + 4.433662673623664, + 4.858258649864619, + 5.199928634369217, + 5.742229639220482, + 6.165966239648325, + 7.295311285704614, + 8.4880483423562, + 8.859568533166238, + 9.210899517706705, + 9.56999968927831, + 9.860395443458279, + 10.116385807694828, + 10.342686925283301, + 10.536062214803941, + 10.682411781643394, + 10.8513792263002, + 10.968053804316082, + 11.02581134242857, + 11.12002153436252 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235626058255, + 2.8519138301183564, + 3.200148312744838, + 3.5231179361303773, + 3.997665303859524, + 4.647355395013649, + 5.296664718684403, + 6.356574542303333, + 7.100033924305929, + 7.67782196205872, + 8.556777769307798, + 9.212518632559622, + 10.82339449233578, + 12.32563468021876, + 12.7557981924154, + 13.146889768232766, + 13.531965007610241, + 13.832760090176686, + 14.091139443124778, + 14.314190391531291, + 14.501047055620633, + 14.64053897145148, + 14.799701673722534, + 14.908486600320177, + 14.961949635632973, + 15.048656069603421 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_9": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835166362121371, + 3.1870721023996467, + 3.5207618863251002, + 4.02170087462969, + 4.601282817916865, + 5.505082573034636, + 6.704717379704928, + 7.85060989299981, + 9.614261909674306, + 10.777848147736364, + 11.641412962268987, + 12.88748751495244, + 13.769674474688928, + 15.78472026592574, + 17.517262787312823, + 17.994187037719634, + 18.421714068792646, + 18.837602286300164, + 19.159271643952945, + 19.43406047254468, + 19.670121033962634, + 19.867205726549333, + 20.014100444734638, + 20.181616128199728, + 20.29598680843991, + 20.35212910172427, + 20.44311692803543 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331339754, + 2.7884194850866204, + 3.044983077400507, + 3.387567930861378, + 3.6155178196183373, + 3.7986289347389706, + 4.0959714283112145, + 4.3355951216797886, + 5.013611356722251, + 5.804657896312386, + 6.070861986481936, + 6.334955370621566, + 6.619142720593268, + 6.862257170090246, + 7.087897183772772, + 7.298585811629542, + 7.488764991913078, + 7.639855513781372, + 7.8237583190536935, + 7.95758826571103, + 8.026333617570037, + 8.142603850908452 + ], + "5._384._0.0875": [ + 3.4903786245746553, + 4.015063137242643, + 4.624422203792356, + 5.576948284395749, + 6.644771518119655, + 8.227652735855717, + 10.190268594089307, + 11.927534242307571, + 14.359624278859046, + 15.82846991517414, + 16.86238213607518, + 18.28496494239438, + 19.253064490336243, + 21.378919280414966, + 23.148739352527084, + 23.62975169918626, + 24.060372016624545, + 24.478537821281076, + 24.80190307797188, + 25.077963642060336, + 25.31525717864904, + 25.51354323707528, + 25.66133994888567, + 25.830060141365113, + 25.945200921751553, + 26.00166853467933, + 26.093077162882803 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.506080868917535, + 2.8001344397576906, + 3.143256640499559, + 3.5115931310846906, + 3.8563566758908636, + 4.437254148587237, + 4.864302284678646, + 5.208562910826154, + 5.756381580353319, + 6.1857926005487744, + 7.337330238270234, + 8.567581722870012, + 8.954847786024212, + 9.323052309234136, + 9.701604720403258, + 10.009494717520367, + 10.282305041660479, + 10.524596033362078, + 10.732490097771077, + 10.89037421424799, + 11.073201284849146, + 11.199834342135524, + 11.262666802739936, + 11.36538800092124 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235628420947, + 2.8519141710683504, + 3.200186487098755, + 3.523485475893614, + 3.9993403213266188, + 4.651923652860672, + 5.305758331648472, + 6.378046160191411, + 7.134590785514151, + 7.725435284205993, + 8.629750656246474, + 9.309274653579335, + 10.997773089836935, + 12.59877061512886, + 13.061802525733123, + 13.484135840622404, + 13.901171107067803, + 14.227567121836408, + 14.508382687448611, + 14.751009036814555, + 14.954362194194278, + 15.106241390492103, + 15.279540941309058, + 15.39804872230359, + 15.456326565581994, + 15.550918954480004 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_10": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351669577621887, + 3.187119219509302, + 3.521146901725514, + 4.0232969049947265, + 4.605020627809571, + 5.514340513841544, + 6.726877275282211, + 7.8921298587691116, + 9.701330443375044, + 10.907187514953236, + 11.808905225300558, + 13.1200566355876, + 14.055370017370823, + 16.209317491258144, + 18.075905638541528, + 18.5913961340587, + 19.053630937929825, + 19.5033864075882, + 19.851141109592582, + 20.148236718209006, + 20.403353360604523, + 20.616248966334116, + 20.774917313569585, + 20.95579515727327, + 21.079304347573146, + 21.139950545512576, + 21.23829257400556 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.4511928331436974, + 2.78841962216233, + 3.0449914961743447, + 3.3877527036478456, + 3.6160713135866716, + 3.7996120364040933, + 4.097832974846676, + 4.338328673821448, + 5.019982642854625, + 5.818427922248824, + 6.088119631180642, + 6.356306759200354, + 6.6457038069872265, + 6.89407484257732, + 7.125376887279729, + 7.342203737080431, + 7.538812842780145, + 7.695771660682166, + 7.88798618730781, + 8.028966701838211, + 8.101873982390954, + 8.226171196960308 + ], + "5._384._0.0875": [ + 3.490863380997827, + 4.016903423296357, + 4.628653990401495, + 5.587437160221426, + 6.667016626125836, + 8.27829920537412, + 10.297005834613547, + 12.106193907207574, + 14.674217480693907, + 16.2431594510763, + 17.354060339892516, + 18.888920278994842, + 19.936749899092774, + 22.241737718147327, + 24.16211255960555, + 24.684077082877714, + 25.151083980635715, + 25.604369463133498, + 25.954632376000323, + 26.253610384170077, + 26.51046778843936, + 26.724997299442535, + 26.884888448159067, + 27.067366271118225, + 27.191905970055284, + 27.252995550018444, + 27.35192865952233 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.5060808689637466, + 2.800134562060546, + 3.1432765700092626, + 3.5119001103111995, + 3.857390269752563, + 4.440194993117297, + 4.86925357889055, + 5.215639849243575, + 5.7679927005232345, + 6.202073865457495, + 7.3719705733840595, + 8.63341344413291, + 9.033876416210582, + 9.416375044812213, + 9.811615512242199, + 10.134753579622966, + 10.42244477486815, + 10.679103821348756, + 10.90024331848022, + 11.068793543096524, + 11.264610027367295, + 11.4007018782669, + 11.468399196382867, + 11.579351496477585 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235630354036, + 2.851914450027435, + 3.200217720681533, + 3.5237861974885587, + 4.000711167852405, + 4.655665255980722, + 5.313213257703904, + 6.395688641557916, + 7.163034986597039, + 7.764682257379073, + 8.690054380778047, + 9.389414690111023, + 11.143841673849362, + 12.832197043497489, + 13.32523828290522, + 13.776439800561162, + 14.223355461574988, + 14.573917792488018, + 14.876071998107493, + 15.137422083383003, + 15.356622108704888, + 15.520438634607439, + 15.707391208874618, + 15.835313712711088, + 15.898264566107825, + 16.00052970862282 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835163554103729, + 3.1868499795100256, + 3.5189471871417144, + 4.014291734689392, + 4.585729983426826, + 5.4783782331097886, + 6.664875308975525, + 7.78095954436287, + 9.422622271115944, + 10.444946568635388, + 11.174586733117547, + 12.190679309604377, + 12.887629509317616, + 14.432466371861755, + 15.72804732473775, + 16.081392778821243, + 16.398108012781965, + 16.706154923196785, + 16.94478515960347, + 17.148634374775696, + 17.324044660244187, + 17.470751596521854, + 17.580134119683894, + 17.70503746479188, + 17.790288291349594, + 17.832098064054087, + 17.899737843068284 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.111467924224727, + 2.4511928330881467, + 2.788418838872571, + 3.04494338890382, + 3.3866968888704605, + 3.612910916227809, + 3.7940199256554292, + 4.0874967512700415, + 4.323817801662154, + 4.993223862336138, + 5.776939636452273, + 6.0398329147115115, + 6.298516420435058, + 6.573466422852641, + 6.804579954700581, + 7.014876393828088, + 7.206675627757325, + 7.375307882595491, + 7.505754432240141, + 7.659723925184936, + 7.76791724765261, + 7.822040894389363, + 7.911051827069974 + ], + "5._384._0.0875": [ + 3.4880902775716516, + 4.0065619525134215, + 4.607298279466111, + 5.548353958156116, + 6.604415106939941, + 8.13860019568434, + 9.938536968136697, + 11.427377002248585, + 13.383231984894984, + 14.512099196220316, + 15.29057972183952, + 16.347765426714993, + 17.06050692000972, + 18.619290778574012, + 19.916053673254428, + 20.2686496512593, + 20.584999002677907, + 20.892732872471324, + 21.13131773958098, + 21.335112938000275, + 21.510606445342315, + 21.65749717959913, + 21.767018104919572, + 21.892162864981678, + 21.977544756334243, + 22.019389460008043, + 22.08703090750865 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656476, + 2.506080868699681, + 2.800133863187092, + 3.1431626871705314, + 3.5101461072512348, + 3.8515072619323156, + 4.424504911378015, + 4.845886343624489, + 5.186331552272661, + 5.729058529452128, + 6.1543553311536385, + 7.279215244517337, + 8.425007491615851, + 8.768101772829569, + 9.08648777576615, + 9.405485053350356, + 9.65874977692766, + 9.87854736747751, + 10.070275097983433, + 10.232270081471812, + 10.353782216544758, + 10.493043905742333, + 10.588509080770054, + 10.635513887026178, + 10.711792810255785 + ], + "5._96._0.075": [ + 2.2092619209324718, + 2.555305550299043, + 2.8518822502007706, + 3.1999812074434986, + 3.5219640505521346, + 3.9927079992711505, + 4.635768436942492, + 5.280652168885683, + 6.338984165530696, + 7.079120833009518, + 7.647405762106008, + 8.493199493397391, + 9.106886336359855, + 10.549497600871693, + 11.821945288975535, + 12.176179524294474, + 12.495306427173027, + 12.807191058501216, + 13.049579738950227, + 13.257119802438721, + 13.435959943893337, + 13.585663292927912, + 13.697375965540715, + 13.824926149001566, + 13.912078874142695, + 13.95487960916011, + 14.02423056578889 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516472411039, + 3.1869425304997336, + 3.519703336588499, + 4.017409124634149, + 4.592792127320395, + 5.494435370274548, + 6.702922623181757, + 7.859047111999608, + 9.601273766609378, + 10.709893884541724, + 11.510288742748434, + 12.634631898016757, + 13.410995173686615, + 15.140112325896753, + 16.59431376284061, + 16.991218622233816, + 17.346724733781354, + 17.692319667585423, + 17.959786862066252, + 18.188220856046517, + 18.384643002748486, + 18.54880887859812, + 18.671188673718667, + 18.810869505477182, + 18.906212251366096, + 18.952983693185324, + 19.0286924400906 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247267, + 2.451192833107243, + 2.788419108128426, + 3.044959925775519, + 3.387059821765704, + 3.613997664863135, + 3.7959470723593096, + 4.09111167742486, + 4.329038708345258, + 5.004506770243227, + 5.800396675051319, + 6.069930680934847, + 6.337044137013024, + 6.623399632901891, + 6.866397000242412, + 7.089548465426775, + 7.294940305254195, + 7.477122120182745, + 7.619155348518463, + 7.7880816786592515, + 7.907676077545279, + 7.967812952154061, + 8.067196242249718 + ], + "5._384._0.0875": [ + 3.489041966728529, + 4.0101492446674785, + 4.615228891631927, + 5.566384478985521, + 6.642584303912649, + 8.23605088452842, + 10.158307320185152, + 11.785471693976609, + 13.957916675535065, + 15.2235651708415, + 16.099466100365742, + 17.290954676319654, + 18.09508402875218, + 19.852744524299638, + 21.313164415062523, + 21.70999507573438, + 22.065750787889225, + 22.41159715450544, + 22.679499567017082, + 22.908294539148603, + 23.10520435766242, + 23.269936461997787, + 23.392750503414597, + 23.53304715405481, + 23.628776387136153, + 23.675702827788015, + 23.751593525065417 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808687904528, + 2.800134103424843, + 3.1432018343696826, + 3.510749037532128, + 3.8535335425120447, + 4.430128801236172, + 4.854966963284894, + 5.198834780785669, + 5.748826061535993, + 6.182200108369144, + 7.344326849292377, + 8.559766854482477, + 8.930536691975924, + 9.277137603746795, + 9.626775473927715, + 9.905883724809348, + 10.149145007609818, + 10.36200401620384, + 10.542263530840383, + 10.677700598499671, + 10.833061729053647, + 10.939691930072817, + 10.992253400925039, + 11.077649233553439 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.555323562310494, + 2.851913403930866, + 3.2001005947998324, + 3.522658579337796, + 3.9956263916358847, + 4.643473862001433, + 5.295314181512427, + 6.373564059926124, + 7.138360360544258, + 7.733580791206114, + 8.633729955517238, + 9.297305182392362, + 10.888688183108068, + 12.31939479443607, + 12.720736736508375, + 13.083024543099366, + 13.437593746774013, + 13.71333786799934, + 13.94943383896836, + 14.152804847143246, + 14.322925976753803, + 14.449783003015684, + 14.594457028247186, + 14.693237854773255, + 14.741735431737363, + 14.820299846760408 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } +} \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json new file mode 100644 index 0000000000..3c9992b013 --- /dev/null +++ b/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json @@ -0,0 +1,3262 @@ +{ + "3_3": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 5.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835161997281606, + 3.1867381215993795, + 3.5185012299806, + 4.018207786059317, + 4.611522668745683, + 5.568874333577036, + 6.836004531526947, + 7.978299130155127, + 9.570415520364628, + 10.520896803633871, + 11.18544985901755, + 12.097405831623279, + 12.716235837830903, + 14.07725035550396, + 15.213319321255456, + 15.522748827071853, + 15.80034181189145, + 16.07050627680383, + 16.280037127094857, + 16.459078496899767, + 16.613289570046533, + 16.742387429210957, + 16.83866562742485, + 16.948678542981284, + 17.023764953816947, + 17.060578709692493, + 17.120096580000425 + ], + "5._24._0.075": [ + 0.8740059532267962, + 1.1958031759615424, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247276, + 2.4511928330626858, + 2.7884184800648018, + 3.0449218264187192, + 3.386364280881006, + 3.6126359926321863, + 3.79493625768915, + 4.0942333792300625, + 4.339565387102509, + 5.053252662684951, + 5.894012861764751, + 6.1692141208801, + 6.435226672929396, + 6.712013855754454, + 6.939696560132331, + 7.142722227418524, + 7.324454940554824, + 7.481516452586633, + 7.601263550955875, + 7.740691200095479, + 7.837447432025986, + 7.885451054843903, + 7.963799083051462 + ], + "5._384._0.0875": [ + 3.487676594523292, + 4.012185032955957, + 4.638991756254868, + 5.650757679606887, + 6.777540858363599, + 8.339511000564395, + 10.06403347788277, + 11.430320362694669, + 13.177079418495522, + 14.170574715111272, + 14.85199509982566, + 15.774897364964186, + 16.396068715012934, + 17.75531845133708, + 18.88778916602398, + 19.195974193826814, + 19.472773346818215, + 19.742264669315524, + 19.951442256252957, + 20.130167143011494, + 20.284192158815404, + 20.41320584056457, + 20.50941106115381, + 20.619385591773217, + 20.69441029551412, + 20.731168833205384, + 20.790554342739927 + ], + "5._48._0.075": [ + 1.5268463243731434, + 1.8679037053125458, + 2.1622431316564765, + 2.5060808685786506, + 2.800133543028167, + 3.143112869251154, + 3.5097194414253443, + 3.8524859183350393, + 4.4415995372614185, + 4.887846226044234, + 5.253753432356401, + 5.838743693471681, + 6.29209176602508, + 7.449697318082022, + 8.558482540732482, + 8.878533630401094, + 9.171342722519933, + 9.46119737649092, + 9.689161582709286, + 9.885614939036083, + 10.056085649132992, + 10.19957044968913, + 10.306910365238013, + 10.429725598821319, + 10.513752096461245, + 10.555055713326075, + 10.621974307027209 + ], + "5._96._0.075": [ + 2.209261920932471, + 2.555305549792771, + 2.8518815203815793, + 3.199904830892763, + 3.5215343812829234, + 3.9952719923023134, + 4.66186444813755, + 5.351993135595755, + 6.488295510404913, + 7.259472987067756, + 7.834204841495573, + 8.66345327529774, + 9.24755331352351, + 10.57717049982773, + 11.716213988672793, + 12.029679779226603, + 12.311388397526304, + 12.586192359395307, + 12.799629631929328, + 12.982255958122945, + 13.139662793793335, + 13.271490872531489, + 13.369871810100756, + 13.482278880094826, + 13.55907450090211, + 13.596771446779838, + 13.657804648035198 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835164726499315, + 3.1869511904253844, + 3.520129819831777, + 4.024256961679788, + 4.629858717255186, + 5.648051992538193, + 7.08547570178617, + 8.452315749499057, + 10.433448692094192, + 11.644470751378343, + 12.499298574531974, + 13.678710219767217, + 14.481733250158136, + 16.247551183295478, + 17.718230806950928, + 18.118256572514444, + 18.476444828956904, + 18.824545824258124, + 19.093993560187933, + 19.324118207719224, + 19.522063456725174, + 19.68757222773616, + 19.810975387432244, + 19.95188484610551, + 20.048074698996366, + 20.095257762736964, + 20.1716158070638 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247267, + 2.451192833107242, + 2.7884191082784517, + 3.044960290786688, + 3.387173702734947, + 3.614900226285844, + 3.7987419510265603, + 4.101475091242637, + 4.35167815109667, + 5.101635349720609, + 6.040855465868692, + 6.361709221219803, + 6.677622439243028, + 7.011983809339578, + 7.291041171739627, + 7.542739170676823, + 7.770121576039311, + 7.96804797895654, + 8.119729000978506, + 8.29691882694332, + 8.420244452163404, + 8.481574325287443, + 8.581867423562938 + ], + "5._384._0.0875": [ + 3.4896895110389377, + 4.019193933286457, + 4.661230290795835, + 5.745245803570798, + 7.027551856685918, + 8.905955441235022, + 11.070206812379547, + 12.825689606638033, + 15.097220897548903, + 16.39617074503923, + 17.288242105512616, + 18.49574172345241, + 19.307956504952568, + 21.07981946949136, + 22.550776145291668, + 22.950430542179113, + 23.308900480500842, + 23.657522066231788, + 23.927737142188516, + 24.15855023232541, + 24.357290456117752, + 24.52362950007569, + 24.647660988315558, + 24.78939444803149, + 24.886108814198227, + 24.933514220975347, + 25.010161614654855 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.506080868790454, + 2.8001341035433973, + 3.1432036182270733, + 3.5110342438515465, + 3.8564813903405875, + 4.454595052029148, + 4.918118600670651, + 5.308384713508876, + 5.953001712399312, + 6.469438265498537, + 7.844046133696996, + 9.218117427371904, + 9.622406933852037, + 9.994178106008798, + 10.36368562414281, + 10.654901329712077, + 10.90623858545078, + 11.124348955728625, + 11.307818890454374, + 11.445018857063635, + 11.601753264010817, + 11.708948220839979, + 11.761663583031304, + 11.84714285442662 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235623104937, + 2.851913404497863, + 3.200104659902106, + 3.5229289437109417, + 4.000714782099825, + 4.681054276345045, + 5.411125656814106, + 6.685475931250212, + 7.596532845655835, + 8.295465778809493, + 9.328498025684635, + 10.070012324731001, + 11.787302919098854, + 13.274902049366501, + 13.685525901098016, + 14.05421038583564, + 14.413596369121933, + 14.692285876859039, + 14.930479312943792, + 15.135401160272473, + 15.306688528208682, + 15.434358421957747, + 15.579946835626505, + 15.679317300339774, + 15.728085714005035, + 15.80705905351386 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351635568339573, + 3.1868598735748215, + 3.5194290681832854, + 4.021215776573264, + 4.616239622033629, + 5.580527594948293, + 6.886757925331612, + 8.102402891324095, + 9.848969549339516, + 10.914023333414947, + 11.665845238209974, + 12.70405152754737, + 13.411636254581845, + 14.971285177128056, + 16.273870495274725, + 16.628617526580097, + 16.94656632737682, + 17.255789079639893, + 17.4953605991317, + 17.700017921596878, + 17.8761581852407, + 18.02350888512317, + 18.13338184361064, + 18.258872539998166, + 18.34452835340044, + 18.38653511656617, + 18.454486098620468 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.111467924224727, + 2.4511928330881467, + 2.7884188390440294, + 3.0449438060522946, + 3.3868265705450313, + 3.6139171948981765, + 3.797008023792123, + 4.097421273811351, + 4.343420562160816, + 5.06067735236564, + 5.921512662885295, + 6.2096823959292475, + 6.491585746037957, + 6.788627405753115, + 7.035854456882252, + 7.2585781577537105, + 7.459736933149296, + 7.634937673400807, + 7.7693448917186, + 7.9266638395361575, + 8.036358297073287, + 8.090960297672977, + 8.180339759630305 + ], + "5._384._0.0875": [ + 3.488823180241217, + 4.015491627743904, + 4.644049804566187, + 5.664887785374351, + 6.828078586331115, + 8.495972601782967, + 10.40061790092734, + 11.942248115479982, + 13.937715725979558, + 15.079771443806013, + 15.864687169096046, + 16.928355427067483, + 17.64445063363839, + 19.2094088997771, + 20.510983319015434, + 20.8648924298736, + 21.18250382474677, + 21.491528964823722, + 21.731188221946866, + 21.935920431091155, + 22.11226212755728, + 22.25989607984245, + 22.36997954530051, + 22.495787152267788, + 22.58162318422042, + 22.62368864843897, + 22.691678975213264 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656476, + 2.506080868699681, + 2.8001338633225847, + 3.1431647257211064, + 3.510469433833876, + 3.854662132773821, + 4.445721725047285, + 4.893415321844213, + 5.262063562931771, + 5.857431077176044, + 6.32570919204886, + 7.552126277602157, + 8.76742460372293, + 9.12457279066319, + 9.453324000199377, + 9.780401879257456, + 10.0385536408539, + 10.261605909086278, + 10.45546077978633, + 10.618775396056128, + 10.741029642541099, + 10.88089904623256, + 10.97663676170107, + 11.023727684922786, + 11.100081773956372 + ], + "5._96._0.075": [ + 2.2092619209324718, + 2.555305550299043, + 2.8518822508487425, + 3.199985852185907, + 3.5222706691873875, + 3.9979722527360244, + 4.666548991876653, + 5.360575959217437, + 6.524154888194886, + 7.335118528132172, + 7.9509318116016505, + 8.854766208963815, + 9.50103701453585, + 10.99371369513925, + 12.287660294371463, + 12.645293059709312, + 12.966761598429807, + 13.280407476715753, + 13.523883308480196, + 13.732208640752027, + 13.911643648215778, + 14.061807567222088, + 14.17384824876507, + 14.301777590719725, + 14.389179865712343, + 14.43209691027277, + 14.501625885881069 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351663640324904, + 3.1870790324400735, + 3.521106948654561, + 4.027817004712404, + 4.639702914792701, + 5.689701897839143, + 7.230782415357917, + 8.75558382299333, + 11.04534208095427, + 12.480341222531724, + 13.504959222351479, + 14.929271926552433, + 15.90416568507156, + 18.052354448368966, + 19.84102393386483, + 20.327235221316858, + 20.761895731724405, + 21.183796554426188, + 21.50979223532669, + 21.788087698807278, + 22.02717090155069, + 22.22685011514924, + 22.37569660323061, + 22.54554863066446, + 22.66151184676179, + 22.71841874632137, + 22.810598479283108 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331339754, + 2.7884194852066426, + 3.0449833694144575, + 3.387659363565028, + 3.6162575473325336, + 3.8010097195037105, + 4.105632061379055, + 4.358290331495015, + 5.126739920153362, + 6.123511711967509, + 6.474167991903697, + 6.824559479788833, + 7.200859154778787, + 7.51918464818536, + 7.8095967640619985, + 8.074594572877569, + 8.307247584849724, + 8.486753152771184, + 8.697580121703579, + 8.845046400408721, + 8.918645101319749, + 9.039379340040094 + ], + "5._384._0.0875": [ + 3.4909018152157616, + 4.023297059681693, + 4.673051152210945, + 5.795451136308289, + 7.172990691082887, + 9.27752412726072, + 11.799413284844766, + 13.898070984778059, + 16.65542163277132, + 18.244596278442476, + 19.338696289586718, + 20.820234685526085, + 21.816848225257285, + 23.98610111341166, + 25.781787275544815, + 26.268999130971455, + 26.705469137801593, + 27.12951686995272, + 27.45775893894551, + 27.738063457318646, + 27.97921715827073, + 28.18090672411815, + 28.331287344632564, + 28.503073216115972, + 28.62031847221074, + 28.677808555516858, + 28.77082914464509 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.506080868917536, + 2.800134439852536, + 3.1432580676862703, + 3.511823135144772, + 3.8588654894808214, + 4.4617389401300285, + 4.933850249217447, + 5.336702101199807, + 6.014768882401431, + 6.56981612520555, + 8.094628831272521, + 9.679052963838439, + 10.15497603436222, + 10.595511839800375, + 11.03584132783747, + 11.384157796199728, + 11.685603030677242, + 11.947529059178052, + 12.167948960854657, + 12.332828130807757, + 12.521023741928575, + 12.649751408274382, + 12.713101012338704, + 12.81593200056931 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235628420974, + 2.851914171521948, + 3.200189739673925, + 3.5237033987871773, + 4.0037986560526875, + 4.6909871677691255, + 5.4410229845215765, + 6.794282739628035, + 7.796138722634701, + 8.58200482025275, + 9.766864543211586, + 10.632303268710091, + 12.671167543550263, + 14.462326312183167, + 14.95921757641907, + 15.405288400514571, + 15.840049953956868, + 16.176793719534082, + 16.464510668512997, + 16.71171590552714, + 16.9180654486089, + 17.071794231061588, + 17.24689658823532, + 17.3664028454089, + 17.42507872180411, + 17.52018832485266 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835165636239735, + 3.1870222124846106, + 3.5206705943239536, + 4.025926919590956, + 4.6314813851815915, + 5.647608103249758, + 7.095010549843221, + 8.49874387545537, + 10.583925916535861, + 11.88496121503498, + 12.813050821314832, + 14.103307886213111, + 14.986830741348886, + 16.93714274612754, + 18.564767392055334, + 19.007681979280203, + 19.40398485786481, + 19.78891593966005, + 20.086599119614256, + 20.34078278794741, + 20.559270533789313, + 20.741835181134128, + 20.87793445962735, + 21.033275921601348, + 21.13932329047935, + 21.191354079605386, + 21.27560078129397 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.451192833122094, + 2.788419317683002, + 3.044973112243008, + 3.387443335114759, + 3.615645288876461, + 3.7999310832230444, + 4.1031517104865625, + 4.353324166142386, + 5.101672277675225, + 6.04429213301694, + 6.370223740032843, + 6.693775415382339, + 7.03944103230249, + 7.330725489055097, + 7.595856753169673, + 7.837464836137955, + 8.049490997916033, + 8.213121314804473, + 8.405525962499153, + 8.54027402895797, + 8.607567886188919, + 8.718041973504523 + ], + "5._384._0.0875": [ + 3.490358350826967, + 4.020991337431924, + 4.662672415770914, + 5.744820338581088, + 7.036835424820224, + 8.970879981106723, + 11.262539992919834, + 13.161918009757274, + 15.65519170743656, + 17.09242028149083, + 18.082377421761176, + 19.42410197524493, + 20.327301536975842, + 22.296280621945826, + 23.92882543342862, + 24.37208776527693, + 24.76938241540891, + 25.155531910712668, + 25.45459596488941, + 25.710007203575426, + 25.929812946366734, + 26.113696919837288, + 26.25080162287551, + 26.40743659061555, + 26.514329358432732, + 26.566734621647846, + 26.6515015938595 + ], + "5._48._0.075": [ + 1.5268463243731403, + 1.8679037053125447, + 2.1622431316564747, + 2.5060808688610527, + 2.800134290381807, + 3.143233867860115, + 3.511471522971886, + 3.85773094328742, + 4.45635937394046, + 4.91896788599688, + 5.308326522755804, + 5.953500182691239, + 6.473994624578587, + 7.881731189334298, + 9.327939811341983, + 9.76100225041961, + 10.161929304323298, + 10.562808261876501, + 10.880198348756178, + 11.155099045573097, + 11.394243278833923, + 11.595747631820618, + 11.7466156505331, + 11.919050266295013, + 12.037083025278562, + 12.095179432658108, + 12.189474660384846 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235626058277, + 2.851913830622354, + 3.200151926134801, + 3.5233583128290906, + 4.002238851000056, + 4.682631571885546, + 5.410982393352187, + 6.6900137440739496, + 7.61807222418404, + 8.339510183791871, + 9.420787147913943, + 10.207745392714164, + 12.05911815511066, + 13.687117151265026, + 14.139214155154402, + 14.545598903211589, + 14.942060670415813, + 15.24951583191688, + 15.512358878101542, + 15.73840357229015, + 15.927251078270425, + 16.06799001534853, + 16.228392560914656, + 16.337879397679057, + 16.39162908576207, + 16.47871880482759 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351647264993427, + 3.1869511878212227, + 3.5201249983906053, + 4.023470079702086, + 4.619524785372806, + 5.584545593963873, + 6.902998972422947, + 8.155904940893874, + 10.006528962240383, + 11.16170003625414, + 11.986974515245103, + 13.136623801624237, + 13.925333660666091, + 15.671735435511286, + 17.1340203549757, + 17.532518375469383, + 17.889415118045637, + 18.23632689494733, + 18.504843326064247, + 18.73417706088744, + 18.931410764343546, + 19.09629166601863, + 19.219216066324133, + 19.359548955270924, + 19.455341030942233, + 19.502330894291646, + 19.57838437472881 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247267, + 2.451192833107243, + 2.788419108278451, + 3.044960290780462, + 3.3871732942098673, + 3.614878191681364, + 3.798561923606987, + 4.099798817689642, + 4.346204423109484, + 5.0638487371527745, + 5.929805278718577, + 6.22322066037185, + 6.512793735041919, + 6.821078439869845, + 7.080477625470557, + 7.316596245578598, + 7.5319896110242, + 7.721355916594392, + 7.867814484475438, + 8.040562621314637, + 8.161904750914392, + 8.222608336043283, + 8.322439798383627 + ], + "5._384._0.0875": [ + 3.489683589771105, + 4.017967599197538, + 4.647442660449867, + 5.669373078133689, + 6.844173285124341, + 8.568315624757192, + 10.600325302446251, + 12.285956420132523, + 14.50391745257, + 15.785022788972071, + 16.66850472887037, + 17.867605872287033, + 18.675648388339898, + 20.440392189102354, + 21.906234553527053, + 22.30453566581824, + 22.661703721743674, + 23.008993916246247, + 23.278097402970836, + 23.5079397293719, + 23.70579759625243, + 23.87136028787809, + 23.994802872374056, + 24.13583986208106, + 24.232076226197314, + 24.27924916673364, + 24.35552928806487 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808687904528, + 2.800134103543397, + 3.1432036181023424, + 3.5110319556108176, + 3.856294585090341, + 4.448712071203283, + 4.896663484070969, + 5.265482167329142, + 5.862815261657757, + 6.335812501032133, + 7.595904693848572, + 8.883398496081888, + 9.26944545987664, + 9.627564185735551, + 9.986341976740128, + 10.271050934788345, + 10.51807909571091, + 10.733413583748808, + 10.91521048071942, + 11.051509376411044, + 11.207568046937224, + 11.314506489535042, + 11.367163181316018, + 11.452637549232263 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.555323562310494, + 2.851913404497863, + 3.200104659290397, + 3.5229269138451977, + 4.00023531180506, + 4.670461603314755, + 5.365717978056104, + 6.539952403820654, + 7.372629218740075, + 8.015251443192655, + 8.975750960964822, + 9.674681292633684, + 11.323447198341958, + 12.780484859565997, + 13.186189941782086, + 13.551532266121763, + 13.90844179346905, + 14.185650595153058, + 14.422812690740665, + 14.626992690023075, + 14.797737206217507, + 14.92503622603366, + 15.07021388451685, + 15.169324486840765, + 15.217975563750672, + 15.296774485018966 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516745572232, + 3.187164260697038, + 3.521758416458107, + 4.030192088364172, + 4.646261439772235, + 5.717017129287225, + 7.326925568466069, + 8.964052055136339, + 11.494452283070519, + 13.11755294031725, + 14.290489131104076, + 15.935284500994108, + 17.06867013884871, + 19.57613757874065, + 21.667295260273, + 22.23577657579997, + 22.743312883021048, + 23.23544694047426, + 23.61510653171925, + 23.9390858679325, + 24.217094784163827, + 24.4490377281152, + 24.621896556369855, + 24.819028616092265, + 24.95363345137911, + 25.019715006464775, + 25.12685029937191 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224729, + 2.4511928331517985, + 2.7884197364921035, + 3.044998755169091, + 3.3879831434472933, + 3.6171625248370622, + 3.8025219530689567, + 4.108404491973627, + 4.362693427139959, + 5.143229554676166, + 6.177681975189291, + 6.548521111803748, + 6.923074596436025, + 7.329829984678422, + 7.677778041624229, + 7.998395186609383, + 8.293726715607674, + 8.55527353948324, + 8.758573478036444, + 8.998951887409529, + 9.16819131835536, + 9.253053425877663, + 9.392863975729556 + ], + "5._384._0.0875": [ + 3.491710465871128, + 4.026035533467984, + 4.680920515487365, + 5.8283546849630925, + 7.269189491499992, + 9.536593628946806, + 12.343414828336613, + 14.737842091886716, + 17.93766330587933, + 19.799997074155428, + 21.086745960507205, + 22.831420327845183, + 24.005903966594747, + 26.558475549794636, + 28.666717573290178, + 29.238068155841532, + 29.749335464589432, + 30.24558118269299, + 30.62922578437871, + 30.956757436194383, + 31.238315952502962, + 31.473631335535135, + 31.64907020143248, + 31.849416218392747, + 31.98617813031912, + 32.05326048057017, + 32.161875608595565 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125465, + 2.1622431316564765, + 2.506080869002254, + 2.800134664058627, + 3.143294367352589, + 3.512349088440217, + 3.860455459422509, + 4.466503665989877, + 4.94425444877083, + 5.3552535928960845, + 6.0550055406660555, + 6.63558598747089, + 8.266286581061992, + 10.014613979720165, + 10.550168492821417, + 11.049393739174036, + 11.551631821022077, + 11.950834077563234, + 12.297617811472632, + 12.599641441194837, + 12.854162925852604, + 13.044740184638021, + 13.262248090401393, + 13.411118182916624, + 13.48445358765977, + 13.603646146572514 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235631964974, + 2.851914682871338, + 3.2002464595981492, + 3.5242197275795712, + 4.005855741520878, + 4.697604632445609, + 5.46067034629398, + 6.865747285132757, + 7.930182502539429, + 8.778983703410592, + 10.079745645873826, + 11.044664129078168, + 13.357474364166736, + 15.423526095226146, + 16.000592635654204, + 16.519061617563818, + 17.024678065340005, + 17.416087335220762, + 17.750509741068264, + 18.037571302822197, + 18.27693255143384, + 18.45519008943787, + 18.65803083778368, + 18.796469452588028, + 18.864472463413147, + 18.974808350579053 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351669594995705, + 3.1871255195515285, + 3.5214606010282887, + 4.028860574040354, + 4.640139789976533, + 5.6855301755258685, + 7.224788808799227, + 8.765730992384217, + 11.121951415872221, + 12.624896776721515, + 13.709052762329016, + 15.228301311489313, + 16.274969837559663, + 18.593123132350712, + 20.5297214047708, + 21.056652167597928, + 21.527471569648217, + 21.98428716961077, + 22.336982011304297, + 22.638016649474473, + 22.896470926527048, + 23.112197168799547, + 23.272982801651697, + 23.45638647809579, + 23.58160819264383, + 23.643072400044673, + 23.74268320527873 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.4511928331436965, + 2.788419622271439, + 3.04499176164158, + 3.3878358246552183, + 3.6167438118471473, + 3.8017767305706642, + 4.106626996090231, + 4.35903807227182, + 5.124484333900309, + 6.118509907347482, + 6.470447565692236, + 6.823961641305865, + 7.2060384025324655, + 7.531564117082935, + 7.830695007415974, + 8.105679728978645, + 8.34890616130733, + 8.537866227900754, + 8.761354392208329, + 8.91878033792957, + 8.997735606352277, + 9.127863658462704 + ], + "5._384._0.0875": [ + 3.491339130289053, + 4.024396087245562, + 4.673161854643847, + 5.79049468996096, + 7.166781443617395, + 9.29737019147199, + 11.905034530314955, + 14.117619684144572, + 17.068140567212215, + 18.78433735068927, + 19.97027047424311, + 21.57925464964123, + 22.66295082246786, + 25.021347711871943, + 26.972003445301997, + 27.500990039720914, + 27.974567697802453, + 28.434413818732544, + 28.790097469443545, + 29.093785417797058, + 29.35492548648835, + 29.573231942213752, + 29.735990637922527, + 29.921873226746005, + 30.04874964072656, + 30.110973909237668, + 30.21169413593424 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.5060808689637466, + 2.800134562146768, + 3.1432778674520634, + 3.5121092077278506, + 3.8596714483420556, + 4.462535799663829, + 4.933118411144865, + 5.334066014510715, + 6.009413967551311, + 6.564042491155406, + 8.102435130910944, + 9.733326228002188, + 10.230745085424598, + 10.69417206066978, + 11.160248797692535, + 11.530797494586517, + 11.85280997855399, + 12.133476068681912, + 12.370220658058537, + 12.547615268397065, + 12.750307112458126, + 12.889120094394757, + 12.957508350756225, + 13.068644886547432 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235630354045, + 2.851914450439796, + 3.2002206775693653, + 3.5239843117173613, + 4.0047658987097305, + 4.691378947272907, + 5.438183359450301, + 6.787713819202035, + 7.7949573598475785, + 8.591907330314857, + 9.805862703501584, + 10.702562480190728, + 12.845867771815946, + 14.759078055805874, + 15.293618792217112, + 15.77436093343031, + 16.243534834763093, + 16.607111039654754, + 16.917908151266136, + 17.18491426424339, + 17.40772603619222, + 17.57371259314274, + 17.76269507112566, + 17.891689197196865, + 17.955044994103073, + 18.057800582396776 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516636403249, + 3.1870790302308603, + 3.52110323294467, + 4.0272606825767205, + 4.632594093904775, + 5.644117747547356, + 7.086573106252476, + 8.501767051361133, + 10.647623960640018, + 12.014244333079917, + 13.00075525046395, + 14.38519206960164, + 15.340409912929541, + 17.461765862586756, + 19.239311809479954, + 19.723623192995195, + 20.15674745111677, + 20.577284005395544, + 20.902240513968025, + 21.179664671137026, + 21.41797114070974, + 21.61696776263659, + 21.765294415529393, + 21.934519151835357, + 22.050050407459302, + 22.106748111158083, + 22.198599228598425 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331339776, + 2.788419485206643, + 3.044983369409179, + 3.3876590434118263, + 3.6162413708106658, + 3.800882278563511, + 4.104482448644332, + 4.354564786512482, + 5.1001214814662585, + 6.038343389107608, + 6.364506765624053, + 6.690040468379364, + 7.04024677791614, + 7.337769493121808, + 7.610844488162148, + 7.861863789567409, + 8.084091949142115, + 8.256992112386138, + 8.46199456506864, + 8.606773687937611, + 8.679499726008759, + 8.799561413029197 + ], + "5._384._0.0875": [ + 3.4908936121199377, + 4.022424539131292, + 4.663536443113108, + 5.740399901736935, + 7.028231813658576, + 8.982120713256503, + 11.353720201632566, + 13.364160490281378, + 16.04908715803697, + 17.61328882916323, + 18.69531524091682, + 20.16518531856478, + 21.156131313683577, + 23.316285789652603, + 25.105930509878185, + 25.591598611852813, + 26.02658774023382, + 26.44912593996043, + 26.776106840254027, + 27.055309816052098, + 27.295460176648927, + 27.49626506349677, + 27.645973963474155, + 27.816963999038112, + 27.933662709918377, + 27.99088699062648, + 28.08348795972977 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.5060808689175356, + 2.8001344398525347, + 3.1432580675772903, + 3.5118213564664083, + 3.858730547510315, + 4.457693328675814, + 4.919022966389919, + 5.30643593578104, + 5.948070264236493, + 6.466864025589569, + 7.88363599511452, + 9.372348320880324, + 9.826134107844839, + 10.249474144712513, + 10.675850509835309, + 11.015470477271405, + 11.31106303503287, + 11.569175611468845, + 11.787291122783323, + 11.950942735420842, + 12.138249564943735, + 12.266662026307541, + 12.329951485035787, + 12.432812427812886 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.555323562842096, + 2.8519141715219485, + 3.2001897391514844, + 3.5237018182002977, + 4.0034572989200115, + 4.683699012112496, + 5.408958358973542, + 6.682074136726317, + 7.612557277089576, + 8.34258291384699, + 9.4496440089788, + 10.265920197582076, + 12.21921053220615, + 13.969251302932754, + 14.459329902784615, + 14.900818693831958, + 15.332233212930783, + 15.667036278656198, + 15.953446567869575, + 16.19975887210169, + 16.405491965102666, + 16.558816668723292, + 16.73348993732047, + 16.85273658734177, + 16.911300150959878, + 17.0062494743056 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835165636239759, + 3.187022210169797, + 3.5206663081531597, + 4.025224283894344, + 4.622077772031539, + 5.587175138595497, + 6.909989498572901, + 8.182188320770596, + 10.102054411705197, + 11.326533300357722, + 12.212283813917772, + 13.458521557327469, + 14.32037175488087, + 16.241002171927374, + 17.856184122964102, + 18.296950909559296, + 18.691502153463155, + 19.074872424233195, + 19.371366132871266, + 19.62455307746462, + 19.842153743936443, + 20.023940231895985, + 20.15944769144576, + 20.31407619587312, + 20.419633034498688, + 20.471426339422703, + 20.55529997759825 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.4511928331220942, + 2.788419317683001, + 3.044973112237475, + 3.387442971975651, + 3.615625694910013, + 3.7997707593049777, + 4.101648960845369, + 4.34836954604059, + 5.066118036485306, + 5.933521514355644, + 6.2291087469816935, + 6.5224140838669875, + 6.8368844710999905, + 7.103736932792778, + 7.348748218479838, + 7.574296932072467, + 7.77442839556125, + 7.930537826400502, + 8.116295945506439, + 8.247952338508437, + 8.314231046970024, + 8.423896238090979 + ], + "5._384._0.0875": [ + 3.490353090798699, + 4.01989472538979, + 4.650074683074909, + 5.672125359474291, + 6.851109527908576, + 8.605795148967628, + 10.726413387549108, + 12.527769778654351, + 14.941544308345266, + 16.35146455474905, + 17.32816812875873, + 18.657029011167825, + 19.553950365843278, + 21.512748567086167, + 23.13847206968575, + 23.579986475811147, + 23.97560570996832, + 24.360048690298953, + 24.657688897332072, + 24.911857324443865, + 25.130532160172837, + 25.31341974287475, + 25.449768224585068, + 25.60550761633395, + 25.711785578392167, + 25.76389192002599, + 25.848187015341434 + ], + "5._48._0.075": [ + 1.5268463243731403, + 1.8679037053125447, + 2.1622431316564747, + 2.506080868861052, + 2.8001342903818065, + 3.1432338677492435, + 3.511469488861613, + 3.8575646038809466, + 4.451038848086397, + 4.899145773043867, + 5.267882191665814, + 5.865545758718084, + 6.340141487782927, + 7.61724884488431, + 8.95284488200989, + 9.360857610428852, + 9.742383602138412, + 10.127555206657638, + 10.435186609953409, + 10.70349157744128, + 10.938321853770459, + 11.137200606447122, + 11.286654365773371, + 11.458045442468519, + 11.575696113672798, + 11.633712476115646, + 11.728024113960053 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235626058277, + 2.8519138306223537, + 3.2001519255910544, + 3.5233565084083582, + 4.00181125843581, + 4.672987175882655, + 5.3682469758532685, + 6.544602607778377, + 7.385263379073412, + 8.04019388525306, + 9.031168848487088, + 9.762167087463515, + 11.517742074213341, + 13.100100303440724, + 13.544657580295446, + 13.945906693404545, + 14.338593534708988, + 14.643844782270019, + 14.905192372169658, + 15.130207249306137, + 15.318339057420017, + 15.4586077895531, + 15.618511102003728, + 15.727695750445458, + 15.781314384988681, + 15.868216755236118 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835165636239734, + 3.187022207622659, + 3.520662700126178, + 4.024811706360364, + 4.618246492085718, + 5.577602357189488, + 6.930593362977536, + 8.27013730911453, + 10.305799407868758, + 11.592006196271335, + 12.513529975375201, + 13.79808800355458, + 14.678979018204332, + 16.62480215658412, + 18.2488264768942, + 18.690716626034398, + 19.085984722477804, + 19.46983352268822, + 19.76659712159539, + 20.019967202996902, + 20.237708518807462, + 20.41961226179577, + 20.555207696500926, + 20.709951202677345, + 20.81558646499876, + 20.867416249016795, + 20.951344739626176 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.451192833122094, + 2.7884193176830028, + 3.0449731122312995, + 3.3874426433772196, + 3.6156114031501847, + 3.7996703668647145, + 4.100882362106419, + 4.346224898925525, + 5.058431311244528, + 5.938205478332148, + 6.2454712872914175, + 6.553322425438452, + 6.885623183027443, + 7.168405190432672, + 7.427814593237117, + 7.66575546132917, + 7.875646469458194, + 8.038201801611946, + 8.229905687023377, + 8.364436565153676, + 8.43170041321568, + 8.542218918216287 + ], + "5._384._0.0875": [ + 3.490341452425285, + 4.019256693703507, + 4.645242475571041, + 5.663015696969794, + 6.870961396281224, + 8.722045952534526, + 10.968017694918828, + 12.850605315815251, + 15.333821659373363, + 16.76783249479386, + 17.755971993298417, + 19.095372128092308, + 19.99702132365333, + 21.961932120277055, + 23.590345099332236, + 24.032380773467327, + 24.428493817447, + 24.813430064076773, + 25.11149023696463, + 25.366028392849262, + 25.58505101682981, + 25.76825577351642, + 25.904849535939963, + 26.06088890444515, + 26.16737568079158, + 26.21958387181005, + 26.304039577016905 + ], + "5._48._0.075": [ + 1.5268463243731403, + 1.8679037053125447, + 2.1622431316564747, + 2.5060808688610523, + 2.800134290381807, + 3.1432338676191445, + 3.51146772321088, + 3.8574550748275773, + 4.448646633722987, + 4.892881358644619, + 5.259328855039348, + 5.860557995824219, + 6.346883434753211, + 7.687273576885126, + 9.101118153759293, + 9.529338705689813, + 9.927289641778144, + 10.326192135238777, + 10.642615140692383, + 10.916900159028845, + 11.15566961322875, + 11.356928805832112, + 11.507619363301462, + 11.67983744328869, + 11.797719211064464, + 11.855743645066019, + 11.949922092002977 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235626058273, + 2.8519138306223555, + 3.2001519249819794, + 3.523354932375397, + 4.001549412014162, + 4.669089316628495, + 5.359101946268944, + 6.552379489671893, + 7.429815477491777, + 8.121820314543074, + 9.173143912712952, + 9.946213029499233, + 11.781039134458084, + 13.403268695619028, + 13.854454372473098, + 14.260003929688882, + 14.655669234316463, + 14.962475413080817, + 15.224731293240202, + 15.450225154706388, + 15.638568709166531, + 15.778910465988814, + 15.938820677805234, + 16.047959625600665, + 16.1015379064994, + 16.188353466015815 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351647264993423, + 3.186951185113044, + 3.520120762095406, + 4.022908840457471, + 4.613192189018059, + 5.553357119545568, + 6.836941764565307, + 8.072417777476293, + 9.917034103843235, + 11.073390796484931, + 11.900087116780503, + 13.051737859601054, + 13.84151299956939, + 15.58897243519494, + 17.050915239385326, + 17.44916920093101, + 17.805773444528953, + 18.152349245604196, + 18.42056433245828, + 18.649624669380906, + 18.846603680143236, + 19.011257479437973, + 19.134008158091746, + 19.27413530400662, + 19.369785226120584, + 19.41670551318206, + 19.49264845544399 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247267, + 2.451192833107242, + 2.7884191082784517, + 3.044960290773892, + 3.3871729161976023, + 3.6148602890949224, + 3.798427780692208, + 4.098671421766258, + 4.342760701025555, + 5.044196907034894, + 5.885761165493484, + 6.173109241648802, + 6.458187213329125, + 6.763304769544556, + 7.021219579646446, + 7.256751563518459, + 7.472114549141299, + 7.661736239898098, + 7.808486494653682, + 7.981608972488866, + 8.103176704421157, + 8.1639743328458, + 8.263914864157965 + ], + "5._384._0.0875": [ + 3.4896748046623505, + 4.0171018504542335, + 4.6391649603613345, + 5.633334582359261, + 6.777423354182605, + 8.48011743093466, + 10.508676150536084, + 12.196848641332405, + 14.418505687057298, + 15.700982948369044, + 16.585012703238007, + 17.784388376412807, + 18.59237334378901, + 20.356297930357258, + 21.820925841542255, + 22.218835703293472, + 22.575624522310008, + 22.922522909474765, + 23.191302577308537, + 23.42086333314305, + 23.61846985157123, + 23.783815779548103, + 23.907095834432504, + 24.04794453869986, + 24.14405292279984, + 24.19116378321505, + 24.267345824271224 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.506080868790454, + 2.8001341035433973, + 3.143203617967474, + 3.511029904247479, + 3.856152805478866, + 4.444974647594222, + 4.884466201927085, + 5.243246979981296, + 5.8227560139656775, + 6.283297777362145, + 7.524103840428952, + 8.807945512182934, + 9.194384924931446, + 9.553166658512048, + 9.912687850486941, + 10.197983773814087, + 10.445428388178932, + 10.661051157114642, + 10.843018763232672, + 10.979390883733371, + 11.135467248125636, + 11.242381692801242, + 11.295016290117196, + 11.380439148692652 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235623104933, + 2.8519134044978625, + 3.2001046586465205, + 3.522925086582346, + 3.9998856532802853, + 4.663987000362338, + 5.342182722576681, + 6.4831737142367984, + 7.300051390954155, + 7.935454728449091, + 8.891221455834549, + 9.589548472760537, + 11.240752602456341, + 12.699955368817093, + 13.106043498915271, + 13.471550686224996, + 13.828500722672317, + 14.10565082229637, + 14.342706531216326, + 14.546746378452665, + 14.717337608943652, + 14.844505073188188, + 14.989509482128286, + 15.088491705043397, + 15.137077502637203, + 15.215769375587161 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351669594995696, + 3.1871255135651895, + 3.521450763630739, + 4.027440927131935, + 4.622901064505621, + 5.590842323594143, + 6.994013251503387, + 8.440417815809157, + 10.728184854157313, + 12.214306632006716, + 13.292549745887117, + 14.80816776521213, + 15.853513199927047, + 18.168200857384697, + 20.099784066308047, + 20.625001327106478, + 21.09399959055764, + 21.548853866921366, + 21.899853567786867, + 22.199376563300056, + 22.456438843198356, + 22.670932167342954, + 22.83077815451506, + 23.0130704568225, + 23.137526387217555, + 23.19861671795847, + 23.297635289834563 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.451192833143696, + 2.78841962227144, + 3.0449917616272018, + 3.3878349676301713, + 3.616701375947365, + 3.801447409704434, + 4.103722699832003, + 4.349851754894547, + 5.066561474113735, + 5.971024315259826, + 6.2955218819689645, + 6.62582828289826, + 6.9882906596436865, + 7.30163597242899, + 7.592950879193618, + 7.863343356618984, + 8.104295595873035, + 8.292390753883636, + 8.515662382368468, + 8.673235627317126, + 8.752330139054957, + 8.882718003075793 + ], + "5._384._0.0875": [ + 3.4913178637505475, + 4.022181073829324, + 4.650368377493574, + 5.679273898695907, + 6.934048801514182, + 8.942879221488022, + 11.489485114208524, + 13.684995808311337, + 16.62944860524694, + 18.344229320003887, + 19.52898140146531, + 21.13567017703279, + 22.217371498825415, + 24.569254502705515, + 26.51258654834882, + 27.039341438027172, + 27.510770170273112, + 27.968408466397904, + 28.322269114374457, + 28.624373254589987, + 28.884097145454795, + 29.10117967968234, + 29.263019527746835, + 29.447835148184783, + 29.5739852640785, + 29.635856995184252, + 29.73602027391017 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.5060808689637466, + 2.800134562146767, + 3.143277867155833, + 3.5121044816704936, + 3.8593228688016947, + 4.4525539637029485, + 4.898703068591462, + 5.26838558887342, + 5.881864911229149, + 6.3870005881946526, + 7.8263540122829225, + 9.412926489035238, + 9.9048563976805, + 10.36562493821697, + 10.83047667908275, + 11.20084087218063, + 11.522844256185813, + 11.80358597118042, + 12.040355409554644, + 12.217672829146709, + 12.42013260243858, + 12.558710792834725, + 12.626965836083905, + 12.73785532838156 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235630354045, + 2.8519144504397986, + 3.200220676151204, + 3.523980108850833, + 4.003890726776593, + 4.6737315111805815, + 5.368629519144982, + 6.595906981770949, + 7.528573477316917, + 8.282223236150426, + 9.45367860913557, + 10.332264553318971, + 12.458704367017562, + 14.368556747552583, + 14.902671587749616, + 15.382706738935145, + 15.850985855448844, + 16.213657057920507, + 16.523527691355074, + 16.7895865650334, + 17.01148425955976, + 17.176729811423197, + 17.364776703032707, + 17.4930992608774, + 17.556120493846507, + 17.6583368081961 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351663640324896, + 3.187079025855097, + 3.5210961280230464, + 4.026256801080415, + 4.620679596130408, + 5.581342227156848, + 6.943112631117537, + 8.3119061968232, + 10.437615443796641, + 11.805968769447427, + 12.795931741961128, + 14.185816514269026, + 15.144100752774316, + 17.26865417032703, + 19.045229973117674, + 19.528819270594727, + 19.96107115280859, + 20.380604312268346, + 20.70466083731581, + 20.98126901903915, + 21.218816320474723, + 21.417137287655024, + 21.564947879714698, + 21.73356300587548, + 21.848673489949775, + 21.905165277405725, + 21.996689417861297 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.451192833133975, + 2.7884194852066417, + 3.044983369398643, + 3.3876584208449128, + 3.6162108734136047, + 3.8006476284261015, + 4.102439785864223, + 4.3481743258226935, + 5.061270999247916, + 5.9447576180517485, + 6.255824443290809, + 6.569549262699487, + 6.910884687344959, + 7.203860980226212, + 7.474829914695701, + 7.725368144099679, + 7.948050522229073, + 8.121647028551868, + 8.327650099025401, + 8.473069945656743, + 8.546070023645806, + 8.666454143188732 + ], + "5._384._0.0875": [ + 3.4908783986811023, + 4.0208629086587555, + 4.647845957178613, + 5.667156867053966, + 6.883390991621373, + 8.779441562788344, + 11.137539539318718, + 13.153520996798933, + 15.848687597244828, + 17.416971545953995, + 18.50067665547721, + 19.971432282122446, + 20.962238600786442, + 23.11998407238362, + 24.906027031814602, + 25.39053284565908, + 25.824397830204305, + 26.2457760431702, + 26.571799833918924, + 26.85017140979974, + 27.089580764047856, + 27.28974768659247, + 27.43897869190371, + 27.609416113730724, + 27.725739368315388, + 27.782781485012812, + 27.875094586767542 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.506080868917536, + 2.8001344398525374, + 3.143258067360414, + 3.511817936630581, + 3.8584822442261126, + 4.450749723549048, + 4.8955487977683045, + 5.2624184546734085, + 5.865189593370569, + 6.354811377674212, + 7.721374527012855, + 9.197553106076711, + 9.651881985036304, + 10.076753245376496, + 10.50504496042398, + 10.846271743861031, + 11.143043320858995, + 11.401993276463116, + 11.620613290765638, + 11.78448197622543, + 11.971839724079764, + 12.100177919593024, + 12.163399901545597, + 12.266104330035484 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235628420974, + 2.85191417152195, + 3.2001897381139464, + 3.52369877575152, + 4.002836709034522, + 4.671507621026489, + 5.3623523958800625, + 6.5608116580657425, + 7.451349226135013, + 8.161408662969507, + 9.253641844400866, + 10.066866858982916, + 12.02528106121994, + 13.781310517260053, + 14.272509409273658, + 14.714493448326069, + 15.14603465003867, + 15.480665262111376, + 15.76675572180131, + 16.012645594548598, + 16.217916740710585, + 16.370845171140513, + 16.544997925700372, + 16.663859571792273, + 16.722227495861578, + 16.816856530786318 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351656362397586, + 3.1870222077625265, + 3.520662542462161, + 4.024725277625346, + 4.6164449457051955, + 5.559562301356887, + 6.854561927969589, + 8.120447900048557, + 10.055027159587599, + 11.293184233597465, + 12.188168530628072, + 13.44527637833843, + 14.31280639256918, + 16.240881996543386, + 17.858017819727984, + 18.2988286039526, + 18.69325791174862, + 19.07639207395043, + 19.37262662305555, + 19.625559559503333, + 19.842912486664606, + 20.024473426844295, + 20.159806725278344, + 20.314229974812832, + 20.419643910451875, + 20.471366570947602, + 20.55512695097287 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.451192833122094, + 2.7884193176830028, + 3.0449731122316335, + 3.3874426359626373, + 3.615609781338652, + 3.7996515176094663, + 4.100646660046628, + 4.345307621318644, + 5.048678100564503, + 5.895766901113474, + 6.187380376051302, + 6.4786400855583235, + 6.79296162577209, + 7.06110990306807, + 7.308183302247539, + 7.536108766536005, + 7.738506630386754, + 7.896321762757711, + 8.083851340310042, + 8.216459592889546, + 8.283096451816174, + 8.393124312240852 + ], + "5._384._0.0875": [ + 3.4903452786224256, + 4.019124865882309, + 4.642710893735971, + 5.64029173843186, + 6.795006074396598, + 8.544031062865198, + 10.684327333208312, + 12.50532190359343, + 14.938880153800072, + 16.35608654578909, + 17.33622230796111, + 18.66804850109008, + 19.56611746845016, + 21.525574457478477, + 23.150610404022757, + 23.59181021466942, + 23.98711759947602, + 24.371231143615073, + 24.668599501471192, + 24.92253152951065, + 25.14099835946385, + 25.32370979150895, + 25.4599275558376, + 25.61551875230526, + 25.7216968242016, + 25.773754741589535, + 25.857973142820374 + ], + "5._48._0.075": [ + 1.5268463243731403, + 1.8679037053125447, + 2.1622431316564747, + 2.5060808688610523, + 2.800134290381807, + 3.143233867629361, + 3.511467665393575, + 3.8574385634398944, + 4.447714789606452, + 4.888302448821012, + 5.248167997117308, + 5.830508297092652, + 6.295296586288774, + 7.56361887389745, + 8.90982360494905, + 9.322335114881888, + 9.708057004364308, + 10.09708949939826, + 10.407398184140611, + 10.677608220924602, + 10.913749061747826, + 11.113444149598129, + 11.263320515047692, + 11.434978919057615, + 11.552688041368015, + 11.610695030571737, + 11.704935810859379 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235626058277, + 2.851913830622356, + 3.200151925018721, + 3.5233548841477056, + 4.001500388394046, + 4.667227780746542, + 5.3473600962024905, + 6.496001656505285, + 7.327146079181405, + 7.981025431062503, + 8.977774653538907, + 9.716112080638158, + 11.490796485403289, + 13.084823547615835, + 13.531443597883513, + 13.93399452961531, + 14.327530265190676, + 14.633154342086335, + 14.89465024576998, + 15.1196599568755, + 15.307696682750466, + 15.447851464430137, + 15.607576325531452, + 15.716613494272394, + 15.770152218969342, + 15.85691750463027 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + } +} \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json new file mode 100644 index 0000000000..6c581ef1e8 --- /dev/null +++ b/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json @@ -0,0 +1,1374 @@ +{ + "3_3": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 10.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 10.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835172923739841, + 3.1876250174550504, + 3.5266762742768005, + 4.062573520333148, + 4.738748111382591, + 5.899230472048001, + 7.507146569270119, + 8.9887805639096, + 11.075021642471887, + 12.32543119965508, + 13.200153917342963, + 14.399404024928955, + 15.212247066977739, + 16.993642548532073, + 18.474243154489557, + 18.876740616001914, + 19.23725390288878, + 19.587693810843824, + 19.859069812721, + 20.09087299248157, + 20.29033701563567, + 20.457177964830557, + 20.58159140701033, + 20.723695185812733, + 20.820705076731922, + 20.868287158440452, + 20.945276166056832 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615428, + 1.481384749141307, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833240911, + 2.7884209935195257, + 3.0450771439551843, + 3.390053664197883, + 3.625097551783892, + 3.8196810869127296, + 4.149417820293751, + 4.428866511035236, + 5.282147815336435, + 6.337799706735208, + 6.690312410459378, + 7.032962569994954, + 7.390921014351625, + 7.686070670085695, + 7.949525709933702, + 8.185321736488111, + 8.388889855111131, + 8.543870120800028, + 8.723791926328296, + 8.848348061708858, + 8.910079460676386, + 9.01072789478447 + ], + "5._384._0.0875": [ + 3.4982581113162494, + 4.06512999294392, + 4.785673515255317, + 6.020960467502278, + 7.453715465747411, + 9.483922196132019, + 11.7506975693533, + 13.554037356141706, + 15.86079806366571, + 17.171938707660154, + 18.070390961707737, + 19.285131260472827, + 20.10163281612467, + 21.883024774974903, + 23.362625858633812, + 23.764754713612493, + 24.125588044401724, + 24.47662174823886, + 24.748825321642325, + 24.981365139913652, + 25.181653160603197, + 25.349334967787556, + 25.474376941071963, + 25.61728990580349, + 25.714808590647113, + 25.762604415182427, + 25.839868648003 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808694258587, + 2.800135785563308, + 3.143483000099373, + 3.5160979647842856, + 3.8785304918502423, + 4.537824916091951, + 5.064126234484706, + 5.509244802949968, + 6.239193858397087, + 6.815376669195569, + 8.308702765105174, + 9.750980846123925, + 10.167929617029431, + 10.548795317119502, + 10.925325370673912, + 11.220831819657937, + 11.475134296835684, + 11.695320633049596, + 11.880235770028115, + 12.018376464420529, + 12.176081131856115, + 12.283867438575376, + 12.33684462305628, + 12.42270852671529 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235649685013, + 2.8519172418862895, + 3.200546314114704, + 3.5278635615329472, + 4.032273186186682, + 4.79017412131366, + 5.622404082991505, + 7.057024475445821, + 8.05589545642321, + 8.808065780110283, + 9.90132526045556, + 10.674795465586877, + 12.439608731439382, + 13.948642344434687, + 14.363137292244204, + 14.734871788170292, + 15.096925834800645, + 15.377580363558257, + 15.617392285020719, + 15.823715932733156, + 15.99620505325167, + 16.12478148541285, + 16.27144867059056, + 16.371559599411892, + 16.420686739244598, + 16.500226266848518 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 15.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351729218286943, + 3.1876180928288775, + 3.526341223983386, + 4.058136460429089, + 4.723796571490863, + 5.882001293379037, + 7.567815808524175, + 9.205719752947793, + 11.614460804331705, + 13.098771059708497, + 14.149353882098195, + 15.600181350480975, + 16.58825991372467, + 18.756586493429555, + 20.557051768448197, + 21.046058035272516, + 21.483301357183464, + 21.907770151968396, + 22.235868704227247, + 22.515989963669288, + 22.75672264695844, + 22.957847700371698, + 23.10779055573236, + 23.278939033725102, + 23.395792268575804, + 23.453132102487334, + 23.545995917606437 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961543, + 1.4813847491413061, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833240912, + 2.788420993399505, + 3.045076851954058, + 3.3899630696528513, + 3.6244032864517, + 3.817675347036345, + 4.143341169059347, + 4.418256200344856, + 5.264549152497985, + 6.356693256737915, + 6.736213899951394, + 7.112488731615569, + 7.513052786788756, + 7.848935347194654, + 8.152826656325287, + 8.427935638442053, + 8.667657995867675, + 8.851421667018652, + 9.0658522449909, + 9.21495699756898, + 9.289092866864353, + 9.410292888034201 + ], + "5._384._0.0875": [ + 3.497752272301184, + 4.0595477291870266, + 4.768845444543897, + 6.007196057413258, + 7.513425415619092, + 9.769991925817497, + 12.411509024560182, + 14.57177014184268, + 17.376797996811998, + 18.982588199275245, + 20.08520024348314, + 21.576027159234805, + 22.577921475336638, + 24.758267440193467, + 26.563604656737198, + 27.053546205918725, + 27.492620943531588, + 27.919325066634627, + 28.24975820116258, + 28.531965805800176, + 28.77482685644166, + 28.97799869425728, + 29.129495282325408, + 29.302584340738044, + 29.4207187630176, + 29.478640641476183, + 29.572343507742822 + ], + "5._48._0.075": [ + 1.5268463243731425, + 1.8679037053125433, + 2.1622431316564765, + 2.5060808694258587, + 2.800135785468466, + 3.143481573173931, + 3.5158727005116153, + 3.8764149732552577, + 4.526419314930771, + 5.0455621857621376, + 5.489893874951987, + 6.235804220342747, + 6.841971449428507, + 8.481510305140135, + 10.143261278172627, + 10.634906554254599, + 11.087087111336059, + 11.536600513615973, + 11.890597962294285, + 12.195943348322809, + 12.46055632510651, + 12.682790353347995, + 12.848807809096153, + 13.038119522790163, + 13.167497525168343, + 13.231124630128225, + 13.334347980818151 + ], + "5._96._0.075": [ + 2.2092718103274014, + 2.5553235649685018, + 2.85191724143269, + 3.200543062810893, + 3.527649841190187, + 4.028832252092129, + 4.775220126986639, + 5.602269774542549, + 7.087170005954368, + 8.170888552088103, + 9.010894137306895, + 10.262154184817643, + 11.165444100361096, + 13.264570272043022, + 15.08392493735126, + 15.585852905533669, + 16.03573112323344, + 16.473712466474904, + 16.812742200533734, + 17.10229784107153, + 17.35105827444125, + 17.558717637610016, + 17.713426144082906, + 17.889685907654112, + 18.00998158617156, + 18.069037944354307, + 18.164745350416073 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351729205545966, + 3.1876134781815257, + 3.52612040778602, + 4.055459300295313, + 4.716264139443057, + 5.876509258213686, + 7.609471114736373, + 9.351026873638634, + 12.004060362056688, + 13.683090386653616, + 14.886973545664388, + 16.56452393352691, + 17.71453423119316, + 20.24711361547835, + 22.35214221535825, + 22.923766991041678, + 23.434146947495357, + 23.929070178250594, + 24.310993529312103, + 24.636931463928537, + 24.91670479538787, + 25.150191703086534, + 25.324220696801216, + 25.522736091286486, + 25.65829005115755, + 25.72483301903363, + 25.832696738109597 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615426, + 1.4813847491413068, + 1.8198213217004353, + 2.1114679242247276, + 2.451192833240911, + 2.7884209933194923, + 3.0450766572909966, + 3.389902910481726, + 3.623950827147713, + 3.816410626874652, + 4.139827127916242, + 4.412634936744756, + 5.257562153667253, + 6.371872626485972, + 6.7678964460500515, + 7.165970109754642, + 7.595755173534326, + 7.961160378669935, + 8.295764458410792, + 8.602061393982519, + 8.871615151851238, + 9.079922463122685, + 9.324698328552232, + 9.496002536749337, + 9.581558728195013, + 9.721984459912957 + ], + "5._384._0.0875": [ + 3.4974199567373274, + 4.056244959990871, + 4.760632887538217, + 6.004004860571218, + 7.554491520232059, + 9.964184408891521, + 12.897688541478386, + 15.364174499442019, + 18.62355820139788, + 20.50723190820899, + 21.8048530718321, + 23.561111303846936, + 24.741983378832323, + 27.30729869961155, + 29.426159837224063, + 30.000472896065098, + 30.51456176735112, + 31.01368078107411, + 31.39969515591717, + 31.72928506629475, + 32.012691057371256, + 32.249611077284754, + 32.42625838680088, + 32.628015971322924, + 32.76574137420197, + 32.83329175304543, + 32.942646405783584 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125467, + 2.1622431316564783, + 2.5060808694258587, + 2.8001357854052356, + 3.143480621979326, + 3.515723776906981, + 3.8750808388341094, + 4.520374089343204, + 5.0370872237644395, + 5.482261110629079, + 6.238242529326912, + 6.862204652871558, + 8.597557338778193, + 10.425649550281758, + 10.97892029188274, + 11.49173457965524, + 12.005026813976293, + 12.411240752061122, + 12.762888085692103, + 13.068271314256636, + 13.32503766473463, + 13.51699216912266, + 13.735799700106297, + 13.885399476061812, + 13.959036692164705, + 14.07864053397754 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235649685013, + 2.851917241130292, + 3.2005408956982033, + 3.5275084798309386, + 4.026718215677359, + 4.767720666054287, + 5.594434803922353, + 7.110002454112057, + 8.247233479557243, + 9.147106617798975, + 10.51467737447763, + 11.52018484023453, + 13.902563282693578, + 16.00338278355003, + 16.58675187880641, + 17.10987859745002, + 17.61934523636595, + 18.013407540767147, + 18.349915462634637, + 18.638698544669335, + 18.87948125141747, + 19.058791192949123, + 19.26286321909292, + 19.402135428074363, + 19.47053787272059, + 19.581498158341496 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351729196445214, + 3.187610182004973, + 3.5259626824014263, + 4.053548022173325, + 4.710951573561143, + 5.8734071778079535, + 7.640053420997824, + 9.455091216271416, + 12.29473286202236, + 14.133853791436968, + 15.469250904975931, + 17.34810747114205, + 18.64603022042545, + 21.51937306911535, + 23.914256514823947, + 24.564932004356127, + 25.145221450591123, + 25.70743268340367, + 26.14063755427492, + 26.51020405874999, + 26.82707566656593, + 27.091252395252713, + 27.28811278459882, + 27.51253749352492, + 27.665800016115323, + 27.741064776269823, + 27.863169713608485 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.195803175961542, + 1.4813847491413066, + 1.8198213217004344, + 2.1114679242247285, + 2.4511928332409116, + 2.7884209932623394, + 3.045076518245955, + 3.3898599396524416, + 3.623627644257527, + 3.815507323409033, + 4.137320633144267, + 4.40864736947764, + 5.253054855935139, + 6.383543245596532, + 6.790994138537986, + 7.20431703843826, + 7.655012824401349, + 8.042225700759282, + 8.400239553739137, + 8.731118270828675, + 9.024985349196797, + 9.253915758753177, + 9.525013530856556, + 9.716204385661712, + 9.812215445346036, + 9.970602486259743 + ], + "5._384._0.0875": [ + 3.4971826300813573, + 4.053888044407623, + 4.754872544393461, + 6.002682312676857, + 7.584667867534967, + 10.104119725304798, + 13.265237069812871, + 15.99051851427221, + 19.658368457086173, + 21.801669200114173, + 23.284409741808997, + 25.294964773646903, + 26.648369263968192, + 29.585392068085227, + 32.00671123507434, + 32.66232232360702, + 33.248549941913225, + 33.817188906822075, + 34.25643050536239, + 34.63137149588703, + 34.95351936363133, + 35.222638470008896, + 35.42327648141523, + 35.65236096118359, + 35.808764867687486, + 35.885500528774145, + 36.00980598694584 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125458, + 2.1622431316564765, + 2.5060808694258596, + 2.800135785360073, + 3.143479942554616, + 3.515617403112402, + 3.874127987733596, + 4.5160844794253565, + 5.031259045835945, + 5.47737559812762, + 6.240987187100199, + 6.877502836321844, + 8.680643313990617, + 10.635587627851816, + 11.239091522186893, + 11.80271219917238, + 12.370921958476035, + 12.823150272211574, + 13.216364976529492, + 13.558891797344021, + 13.847483083311447, + 14.063540379486573, + 14.309918500526134, + 14.478525973763313, + 14.561616918468143, + 14.696766171298517 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323564968502, + 2.8519172409142914, + 3.2005393477605955, + 3.527407507568092, + 4.025208623253943, + 4.762434980805928, + 5.589423543955042, + 7.127347649049229, + 8.30198232670713, + 9.2447081481088, + 10.699350229762292, + 11.785073389729774, + 14.40420425909021, + 16.75733659203168, + 17.41605185083613, + 18.00756639087347, + 18.584231103006086, + 19.030206060974727, + 19.41111793513842, + 19.73776967885598, + 20.0098817918209, + 20.212462826187775, + 20.442813613364656, + 20.600027851609173, + 20.677279431710527, + 20.80271617513507 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 15.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 15.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351729205545935, + 3.187613472729638, + 3.5261116642188135, + 4.054253597390166, + 4.70242914864568, + 5.8086030113135525, + 7.467549516284039, + 9.173910326217955, + 11.817549620297518, + 13.50063752774223, + 14.708245124966707, + 16.390506424244155, + 17.542754332347926, + 20.076562667192977, + 22.17930066733775, + 22.74990326709019, + 23.259177076033392, + 23.752891128976884, + 24.133769674524423, + 24.458778473467625, + 24.737703371030964, + 24.9704461779962, + 25.14391178539724, + 25.341768285828188, + 25.47687046952432, + 25.543193094793875, + 25.650707779981367 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615426, + 1.4813847491413068, + 1.8198213217004353, + 2.1114679242247276, + 2.451192833240911, + 2.7884209933194914, + 3.0450766572778396, + 3.389902139693359, + 3.623913486030334, + 3.8161259791525683, + 4.137388995029404, + 4.4051267851223574, + 5.214701703132842, + 6.276949476181331, + 6.660407431446878, + 7.049422589341101, + 7.473153414434007, + 7.836070348060081, + 8.170029988786352, + 8.476777753348607, + 8.747261338461222, + 8.956411097426855, + 9.202137045330364, + 9.37395002483599, + 9.459699491909076, + 9.600312664462594 + ], + "5._384._0.0875": [ + 3.4974014612635833, + 4.0543778177746645, + 4.742542311205488, + 5.925653912078285, + 7.411046933317475, + 9.777945928796772, + 12.707582672564504, + 15.18137338890359, + 18.44968333281755, + 20.336262258422025, + 21.634806948968798, + 23.391045748332242, + 24.57126459982887, + 27.13330643048112, + 29.248061666688077, + 29.821100755788592, + 30.333976575384245, + 30.83185682051092, + 31.216858652123662, + 31.545573045197322, + 31.828203059721602, + 32.064458178976366, + 32.24060869933254, + 32.4417938093029, + 32.57913099533268, + 32.646493139072525, + 32.75555033459801 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125467, + 2.1622431316564783, + 2.506080869425859, + 2.8001357854052342, + 3.143480621708681, + 3.5157195599231095, + 3.8747798570388277, + 4.512229192124728, + 5.010413764679055, + 5.4337256554705515, + 6.151298086195742, + 6.7488452499404605, + 8.445309591581669, + 10.268274360411876, + 10.822950270217252, + 11.337592629263623, + 11.85269991856157, + 12.260211639281591, + 12.612677176675874, + 12.918533381258486, + 13.17548225828373, + 13.367423393448528, + 13.586035310552214, + 13.735408064577877, + 13.808908278883589, + 13.928255410057844 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235649685027, + 2.85191724113029, + 3.200540894404338, + 3.5275047266417947, + 4.025970191286226, + 4.753579891339415, + 5.543082335133833, + 6.987551562749769, + 8.092101425207474, + 8.9776988236641, + 10.337085958191386, + 11.342491130110483, + 13.731702648068135, + 15.836916503083607, + 16.420819154043382, + 16.943922157361797, + 17.453033126848272, + 17.846569813436922, + 18.1824859274211, + 18.470631174105463, + 18.71078748729027, + 18.889590015481595, + 19.093028010450833, + 19.231845509633082, + 19.30002062517405, + 19.41061394306638 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83517291964452, + 3.1876101757539033, + 3.525952533029806, + 4.05211363467208, + 4.6938069440163, + 5.78058550436625, + 7.420593520479523, + 9.159622018026033, + 11.965509667083033, + 13.807711943883904, + 15.149082048919817, + 17.037210672860628, + 18.340130310898758, + 21.217473513072264, + 23.60864229366581, + 24.257427338066265, + 24.835595044653477, + 25.39544939590001, + 25.826593778720277, + 26.19431780813388, + 26.50949834289068, + 26.77218691852415, + 26.967918531277338, + 27.19102130267829, + 27.34337585972222, + 27.4181972247516, + 27.539599393683137 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.195803175961542, + 1.4813847491413066, + 1.8198213217004344, + 2.1114679242247285, + 2.4511928332409116, + 2.7884209932623367, + 3.045076518230904, + 3.38985905028238, + 3.6235840764481617, + 3.8151720590575846, + 4.134398178917575, + 4.399472215935768, + 5.196052968742087, + 6.241796315968224, + 6.625043308760825, + 7.019204966521843, + 7.455428246531946, + 7.8352792745551625, + 8.19000685408261, + 8.520338648061067, + 8.815217930037624, + 9.045500576623557, + 9.318444579888297, + 9.510760590633401, + 9.607234163454487, + 9.766125270029438 + ], + "5._384._0.0875": [ + 3.4971609162458233, + 4.051656615125228, + 4.732248351210825, + 5.893919652077772, + 7.3631917153337465, + 9.787660788126857, + 12.926033000028275, + 15.661017953707479, + 19.346600513663347, + 21.496639445791523, + 22.981860600869524, + 24.99308548712326, + 26.345530187761003, + 29.276388573997952, + 31.689549865259668, + 32.342595899677626, + 32.926373526045, + 33.4925044471273, + 33.92969208257005, + 34.30285565404692, + 34.62342694833785, + 34.89119459294894, + 35.09082250719603, + 35.31874308885447, + 35.47435720985385, + 35.550709681997546, + 35.67440933495609 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125458, + 2.1622431316564765, + 2.5060808694258614, + 2.8001357853600726, + 3.1434799422447908, + 3.515612517816602, + 3.873773290653522, + 4.506122795199485, + 4.997198890417131, + 5.41272372077986, + 6.11681051077621, + 6.707327803870584, + 8.429089305083417, + 10.36366447234366, + 10.968263993871286, + 11.534670954770592, + 12.10622150797133, + 12.561157983519418, + 12.95626052909181, + 13.300027412729714, + 13.589249498360601, + 13.805461423269591, + 14.051629097627456, + 14.219885773491233, + 14.302747448049644, + 14.437444554948076 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323564968504, + 2.851917240914291, + 3.200539346278396, + 3.5274031613593095, + 4.02432205207084, + 4.744889028751256, + 5.520988392549123, + 6.943133814435939, + 8.053168239942085, + 8.962949116562063, + 10.392868307378329, + 11.473530341995346, + 14.101483788574436, + 16.464069579688307, + 17.12428878395319, + 17.716151871093476, + 18.29245407136119, + 18.737611633137337, + 19.117499424844905, + 19.442986678155897, + 19.71391981844301, + 19.915529683643555, + 20.144650636173814, + 20.300975362123253, + 20.377780106752258, + 20.502493352845047 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + } +} \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json new file mode 100644 index 0000000000..7fe6ac7648 --- /dev/null +++ b/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json @@ -0,0 +1,1342 @@ +{ + "3_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351656362397346, + 3.187022214893212, + 3.5206743638628253, + 4.026427905114574, + 4.637320591731864, + 5.681918628105052, + 7.195928057608821, + 8.667652969634455, + 10.835407948040471, + 12.173138766581673, + 13.120915089648696, + 14.431210692905506, + 15.32441495151209, + 17.287810340267843, + 18.92100406274033, + 19.36491546608123, + 19.762051084570384, + 20.14774393784635, + 20.446021621766313, + 20.70070964136172, + 20.919651129829102, + 21.10261640407018, + 21.239021363100157, + 21.394731378971578, + 21.501033093974097, + 21.55318740963753, + 21.637628767055283 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.4511928331220942, + 2.7884193176830023, + 3.0449731122488464, + 3.387443671191268, + 3.615661212012367, + 3.8000503693535084, + 4.104157202838956, + 4.3564421006886835, + 5.12205707751613, + 6.104951371039292, + 6.44663997467484, + 6.785677489291669, + 7.147043279593926, + 7.450449873105472, + 7.72536208586995, + 7.9746178510857, + 8.192173659856735, + 8.359201726136606, + 8.554505711034814, + 8.690545155519855, + 8.758244872089582, + 8.86901206321486 + ], + "5._384._0.0875": [ + 3.4903666059690193, + 4.021766894917602, + 4.670398135472845, + 5.7858767306232455, + 7.138255086355538, + 9.165208843721064, + 11.541605088064461, + 13.487376794462662, + 16.01692584673723, + 17.46632247540876, + 18.46211624061258, + 19.809514025003864, + 20.715510950887428, + 22.689183383189555, + 24.32504204672725, + 24.76917571645905, + 25.167308660359872, + 25.55431552973275, + 25.85409607638312, + 26.110133317947092, + 26.330508557731093, + 26.514893981081084, + 26.652379210936996, + 26.809464413649263, + 26.916666300063365, + 26.96922193140446, + 27.054226470748603 + ], + "5._48._0.075": [ + 1.526846324373141, + 1.8679037053125445, + 2.1622431316564743, + 2.506080868861053, + 2.8001342903818096, + 3.1432338679800567, + 3.511473348344167, + 3.857857357850316, + 4.459751399181277, + 4.930712321489866, + 5.331458857871278, + 6.002224412369841, + 6.547004846721877, + 8.022439927539539, + 9.523152750203892, + 9.968067991414452, + 10.377948331831622, + 10.785910363406488, + 11.107625004661793, + 11.385384317551138, + 11.626367553184364, + 11.828974735668204, + 11.980430894483764, + 12.15329893349065, + 12.271491966315514, + 12.32962269051676, + 12.423914404212331 + ], + "5._96._0.075": [ + 2.2092718103274023, + 2.5553235626058304, + 2.851913830622354, + 3.2001519267074148, + 3.5233599382868084, + 4.0025506810653315, + 4.688607687930476, + 5.435519397369632, + 6.769739711868008, + 7.7434072909032166, + 8.498819340733252, + 9.62539332023139, + 10.439696691725628, + 12.336240074219319, + 13.984730545681584, + 14.440147371236217, + 14.848759407552247, + 15.246859877582565, + 15.555285881043151, + 15.818798499910445, + 16.045319491784436, + 16.234511881534367, + 16.37548515821274, + 16.536146203601948, + 16.64579587223455, + 16.69961871800177, + 16.78681672438808 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835166959499572, + 3.187125521522206, + 3.521463685390284, + 4.0292708101078425, + 4.644904567747859, + 5.71312819879793, + 7.307316673339804, + 8.909872319261455, + 11.35072167018288, + 12.895494747737084, + 14.003407905474937, + 15.547938805845172, + 16.60721797341642, + 18.942663349937895, + 20.88642415471305, + 21.414574413114533, + 21.88636839767081, + 22.344045572738686, + 22.697394497134884, + 22.998976881618432, + 23.25791886089577, + 23.474073345498063, + 23.63518508430462, + 23.818982153138496, + 23.944474714533282, + 24.006070079545342, + 24.10588687980541 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.111467924224729, + 2.451192833143698, + 2.7884196222714364, + 3.044991761646357, + 3.3878360996302237, + 3.6167568401041454, + 3.8018743251439515, + 4.107449030686344, + 4.36157985013461, + 5.140893214380187, + 6.167565736488154, + 6.532939316352233, + 6.900217762443361, + 7.296936524147332, + 7.634356648978209, + 7.943557694081454, + 8.226800511414552, + 8.476283596226876, + 8.669254929778113, + 8.89631837461781, + 9.05540591311694, + 9.134903266625964, + 9.265449892837756 + ], + "5._384._0.0875": [ + 3.4913458659637997, + 4.025031445778259, + 4.679459748673599, + 5.823514922526518, + 7.2496851339530926, + 9.465709095419118, + 12.162871522713194, + 14.430178619551123, + 17.426918448409662, + 19.15929141380058, + 20.353054328217997, + 21.969602052437914, + 23.0569638692773, + 25.421183037493776, + 27.375655065646225, + 27.905611261031314, + 28.380117646208024, + 28.840909851662392, + 29.197383891971214, + 29.5017622561314, + 29.763531311969654, + 29.982392436026295, + 30.145572332129515, + 30.331953946483488, + 30.459173127738946, + 30.521564128069652, + 30.62254759778572 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.8679037053125453, + 2.1622431316564765, + 2.5060808689637453, + 2.800134562146769, + 3.143277867550195, + 3.512110701279523, + 3.8597749208835066, + 4.465308288754424, + 4.94262858930153, + 5.352657638814721, + 6.048496013896075, + 6.623113848411969, + 8.221987555057126, + 9.908799233756627, + 10.419596527986892, + 10.893552161184349, + 11.368272036526335, + 11.744278866087644, + 12.069981280671444, + 12.353067937004344, + 12.591283097765539, + 12.769461842221771, + 12.972723000760597, + 13.111741413849153, + 13.180171278848512, + 13.291295356631528 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323563035404, + 2.851914450439797, + 3.2002206780378732, + 3.5239856416868593, + 4.0050212111086045, + 4.696255292797876, + 5.45794678858022, + 6.8523229596520485, + 7.899174082572373, + 8.727630982952416, + 9.986721281780245, + 10.912700366416587, + 13.108650994034377, + 15.04793483199602, + 15.586871383611614, + 16.070555900739027, + 16.541880472649677, + 16.906704976274135, + 17.218339711615098, + 17.485917232552556, + 17.709122540263706, + 17.87536677621204, + 18.064622313136528, + 18.19378180185433, + 18.25720919402969, + 18.360067072826144 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835167875603252, + 3.1871970416663165, + 3.5220101721476067, + 4.031240028495605, + 4.6501631955453515, + 5.734783968720361, + 7.384632084417677, + 9.08126154604247, + 11.733937470740669, + 13.450913327561594, + 14.697409931934853, + 16.45120992701785, + 17.66279306840409, + 20.3468838007641, + 22.586110573451368, + 23.194772299633314, + 23.737831944817636, + 24.26414955519051, + 24.669876455789225, + 25.016033964075223, + 25.31291601663492, + 25.56048525514763, + 25.744972177416336, + 25.95530942131925, + 26.098939907554126, + 26.169465466711348, + 26.283852295461894 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413072, + 1.8198213217004355, + 2.111467924224728, + 2.451192833158652, + 2.7884198331403582, + 3.045004672769633, + 3.388107784984605, + 3.6175154184662177, + 3.8031373350741844, + 4.109729271823215, + 4.365139759910043, + 5.153955597194153, + 6.210853926422769, + 6.592691644657162, + 6.980022527987565, + 7.4025014350709055, + 7.765501574665452, + 8.101268216962444, + 8.411675246313921, + 8.687475025368174, + 8.902437505358291, + 9.157209865225674, + 9.337000197656065, + 9.427306815703629, + 9.576316229475234 + ], + "5._384._0.0875": [ + 3.492024137406447, + 4.027293311777627, + 4.685745220359767, + 5.849630471308272, + 7.327017149653598, + 9.680469594956925, + 12.63134716477158, + 15.173095150536488, + 18.592251105784502, + 20.589800303714068, + 21.97182217181273, + 23.846439642542162, + 25.10866172495257, + 27.849785182011164, + 30.111313129328185, + 30.723866990481696, + 31.271728293277356, + 31.803265511092647, + 32.213961193154915, + 32.56454795365723, + 32.865818267121476, + 33.117529576693656, + 33.305187172224294, + 33.51945801339003, + 33.665737731685745, + 33.73749947899057, + 33.85372710274107 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125465, + 2.162243131656475, + 2.5060808690348377, + 2.8001347502917406, + 3.1433083288095505, + 3.512551963340742, + 3.861102839483403, + 4.469159939592605, + 4.950889951527631, + 5.367335572984737, + 6.080440244925044, + 6.6756416136487555, + 8.362820264510765, + 10.193789641219757, + 10.758918683989545, + 11.287067530551077, + 11.819679136119714, + 12.243765332769712, + 12.61264733075795, + 12.934155065922807, + 13.205195379931933, + 13.40818897765568, + 13.639811538319773, + 13.798359480325084, + 13.876489894690433, + 14.003540968323325 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235633328075, + 2.8519148795441818, + 3.200268275165373, + 3.5244188384440207, + 4.006732310496652, + 4.701558385188676, + 5.4735055032008715, + 6.909503153296633, + 8.007896097083322, + 8.889537380460428, + 10.249462852845713, + 11.264351406727839, + 13.713037213077811, + 15.914149688864603, + 16.530489051191996, + 17.084309756106933, + 17.624452349705088, + 18.042427326254813, + 18.39951098693807, + 18.705867206336457, + 18.961176691326557, + 19.15127273904355, + 19.36748237857211, + 19.515042862574564, + 19.58754125184745, + 19.705224061076315 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_3": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351635568339257, + 3.18685987649175, + 3.5194341168753853, + 4.021964695453296, + 4.625373168858598, + 5.631213203703021, + 7.017734131113873, + 8.301128331626503, + 10.117778789699045, + 11.210610651605968, + 11.976583504775217, + 13.028692005585269, + 13.742865870882106, + 15.311494952074163, + 16.618169400815415, + 16.97370980694966, + 17.292351934429536, + 17.602231685890924, + 17.842328567513636, + 18.047436530328493, + 18.223984896573956, + 18.37169673522136, + 18.48184538753949, + 18.60766758338057, + 18.693552413788066, + 18.735670645551725, + 18.803797793376237 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004349, + 2.1114679242247276, + 2.4511928330881463, + 2.7884188390440285, + 3.0449438060593743, + 3.3868270121676423, + 3.6139397405790454, + 3.7971850654668238, + 4.098986094465467, + 4.3483461306850195, + 5.091563856634515, + 6.003348584673112, + 6.30869169255662, + 6.606373821842283, + 6.918310269197569, + 7.176309365099972, + 7.407231942536657, + 7.614477838086076, + 7.793880568509998, + 7.930774556315486, + 8.090147260210866, + 8.200733499237531, + 8.255609007591945, + 8.345178145421313 + ], + "5._384._0.0875": [ + 3.4888288086422636, + 4.016644434684756, + 4.656097350048851, + 5.724643914605977, + 6.959907389349164, + 8.718829385823275, + 10.692998326451791, + 12.268677784338763, + 14.289104442978177, + 15.439317116143096, + 16.228160365480026, + 17.295731529216958, + 18.01381604634192, + 19.582369160770195, + 20.886702784603084, + 21.241361732916218, + 21.559695690469532, + 21.869461495310855, + 22.109738789160463, + 22.315010727642687, + 22.4918421881964, + 22.639906318278147, + 22.75031584383327, + 22.876508470046037, + 22.962608610867996, + 23.004802522166397, + 23.072995900320393 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656477, + 2.506080868699679, + 2.800133863322582, + 3.14316472586218, + 3.5104718549266547, + 3.854845417542254, + 4.451018321828257, + 4.9116776892091, + 5.297016704953429, + 5.92640690466214, + 6.423636872828878, + 7.719212181270855, + 8.980633064022445, + 9.346857075629213, + 9.682185873929484, + 10.01431289649661, + 10.275472721434395, + 10.500494849414341, + 10.695612308471505, + 10.859690701170848, + 10.982362439165628, + 11.122558142675226, + 11.218429945956188, + 11.265557218538145, + 11.341930946657234 + ], + "5._96._0.075": [ + 2.2092619209324726, + 2.5553055502990443, + 2.8518822508487456, + 3.199985852874824, + 3.5222728206245484, + 3.9984334914448545, + 4.675890638522396, + 5.39760263087033, + 6.630658201542146, + 7.489891206956369, + 8.137933780063445, + 9.080671485080162, + 9.748385559930018, + 11.273174243711193, + 12.580380605681452, + 12.94004337232528, + 13.262876866410474, + 13.577523541572688, + 13.821599056356835, + 14.03034643518104, + 14.210092929480233, + 14.360493279700068, + 14.472700352633987, + 14.600821880462636, + 14.688349595590935, + 14.731324538344243, + 14.800941414503159 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351663640324887, + 3.1870790258551014, + 3.5210961279932578, + 4.026258003624487, + 4.620874215132077, + 5.586704760859376, + 6.975975240133478, + 8.385515378636665, + 10.572004132104373, + 11.970612978165319, + 12.977584396047362, + 14.385269064815402, + 15.352257347698204, + 17.488292201888967, + 19.26916115727457, + 19.75338533767014, + 20.18611186851185, + 20.606034675672227, + 20.930371875826708, + 21.20720898473744, + 21.444958809834272, + 21.643459009031766, + 21.791407096906152, + 21.960191851340355, + 22.075419755393312, + 22.131968272416074, + 22.22358119190958 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961543, + 1.4813847491413061, + 1.8198213217004344, + 2.1114679242247276, + 2.4511928331339754, + 2.788419485206642, + 3.044983369398642, + 3.387658420844403, + 3.61621087467806, + 3.800647721718858, + 4.102447078162199, + 4.3482454201841785, + 5.063761085434357, + 5.961844910337476, + 6.281053980373686, + 6.603822067448765, + 6.95537175531292, + 7.256945499031273, + 7.535358466093733, + 7.792070377777192, + 8.019450760285471, + 8.19605530658293, + 8.404727988051604, + 8.551378686479197, + 8.624779509112326, + 8.745473319995293 + ], + "5._384._0.0875": [ + 3.490878423401478, + 4.020865767973589, + 4.648176032065668, + 5.674399499861875, + 6.916132435192409, + 8.869255322450169, + 11.291850797714199, + 13.34706889292032, + 16.074575342864755, + 17.653878358549843, + 18.74281157645554, + 20.218463293681307, + 21.211546808244698, + 23.372625740632863, + 25.160615694186212, + 25.645589407971297, + 26.07990639815786, + 26.50174629776772, + 26.828160051242154, + 27.10687395162787, + 27.34659864893684, + 27.547046683084734, + 27.69649241841502, + 27.867186693474277, + 27.983687149119135, + 28.040815557314513, + 28.133264868112562 + ], + "5._48._0.075": [ + 1.5268463243731425, + 1.8679037053125433, + 2.1622431316564765, + 2.5060808689175333, + 2.8001344398525356, + 3.143258067360416, + 3.511817936616393, + 3.8584823063559384, + 4.450820115805174, + 4.896372927658499, + 5.265314109663766, + 5.875866438354276, + 6.375812833672173, + 7.781652584834328, + 9.298539449880645, + 9.762692744890986, + 10.195323728092962, + 10.629929896539666, + 10.975093504823272, + 11.274487256102537, + 11.535122656382152, + 11.754735236467663, + 11.919110587980263, + 12.106800684140174, + 12.235228520520732, + 12.298450749380303, + 12.401097139217644 + ], + "5._96._0.075": [ + 2.2092718103274023, + 2.555323562842096, + 2.85191417152195, + 3.2001897381139504, + 3.523698775742411, + 4.002837144576757, + 4.67171432905596, + 5.3653840526168555, + 6.583808098627554, + 7.498820819534223, + 8.230410547630026, + 9.35496261489984, + 10.189524424276817, + 12.186066303279896, + 13.960309446498885, + 14.454460899435773, + 14.898355927882445, + 15.331231711411391, + 15.666581859040832, + 15.953119427418569, + 16.199278410806752, + 16.40470718918719, + 16.557725016433995, + 16.731959681699756, + 16.850860777538816, + 16.9092413045836, + 17.00388218199376 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835167455722321, + 3.187164253368536, + 3.5217463021757833, + 4.028427836363309, + 4.624684630082045, + 5.596396180422826, + 7.021654999732946, + 8.516485795859836, + 10.922679147334124, + 12.504736239346794, + 13.658836270238554, + 15.286897355848462, + 16.412526210829927, + 18.90716185189082, + 20.988260218620216, + 21.553888068081033, + 22.058549347226762, + 22.547678348313518, + 22.924785442127003, + 23.246506041112095, + 23.522444349706053, + 23.752556634864902, + 23.924021079341824, + 24.1195019132571, + 24.252969516975394, + 24.318496397162527, + 24.424754094441145 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615426, + 1.4813847491413068, + 1.8198213217004353, + 2.1114679242247276, + 2.4511928331518, + 2.7884197364921053, + 3.044998755151511, + 3.3879820910415375, + 3.617110145509905, + 3.802113944017799, + 4.104789809067644, + 4.35122359689819, + 5.069884325161107, + 5.985111909717598, + 6.3172037017256075, + 6.657572709404107, + 7.033770157964548, + 7.361258663222535, + 7.6675128839922255, + 7.953255729334022, + 8.209016631065653, + 8.409350881388876, + 8.647796141532217, + 8.816459337544055, + 8.901251809332873, + 9.041206675006105 + ], + "5._384._0.0875": [ + 3.491684148784791, + 4.023279636156971, + 4.652351039645069, + 5.686157113357087, + 6.961545153770087, + 9.042383172066298, + 11.731244489922352, + 14.07796471915153, + 17.247822837975477, + 19.100513820330104, + 20.381936081030982, + 22.119937946398608, + 23.290017266302243, + 25.831183370975197, + 27.927934039212506, + 28.49587688585577, + 29.00386861500027, + 29.496754840839348, + 29.877622933863588, + 30.202741434415195, + 30.48213787781195, + 30.715580588180487, + 30.889611742253454, + 31.088319475857705, + 31.22396489190118, + 31.290505095979746, + 31.39826375473448 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125467, + 2.1622431316564783, + 2.506080869002253, + 2.8001346640586293, + 3.14329436699023, + 3.5123432739000746, + 3.860023494374007, + 4.454035537585791, + 4.9009907314408885, + 5.272074128547903, + 5.890863348417758, + 6.40420697216, + 7.88824247911931, + 9.55575813824719, + 10.07810160532861, + 10.569009178861092, + 11.065616271434864, + 11.462006453770927, + 11.807038786816884, + 12.108016745187705, + 12.361872337880557, + 12.55197315674844, + 12.768899382365463, + 12.917354994433628, + 12.990490268666912, + 13.109354087626448 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235631964983, + 2.85191468287134, + 3.2002464578628005, + 3.524214557727399, + 4.004769247598286, + 4.675512731336439, + 5.372544388972258, + 6.614708573868588, + 7.572011644721387, + 8.35376448018417, + 9.581192812625266, + 10.509754370843844, + 12.776316922635896, + 14.825606887511555, + 15.399996571961866, + 15.916126916831454, + 16.41953050033167, + 16.809142704362785, + 17.141933975522175, + 17.427464202576427, + 17.66542391275424, + 17.842574560868197, + 18.04404421612049, + 18.181513505321565, + 18.249038785093575, + 18.358611225228167 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + } +} \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json new file mode 100644 index 0000000000..ddd791ffba --- /dev/null +++ b/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json @@ -0,0 +1,7934 @@ +{ + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351073750512206, + 3.1823384107431814, + 3.4793637721846546, + 3.824573927006054, + 4.118647691662306, + 4.458400737085891, + 4.792718667957521, + 5.043858479635356, + 5.358092050434088, + 5.5355352342420865, + 5.657280511508424, + 5.823127767908944, + 5.935296673791435, + 6.184188566144762, + 6.394899237912037, + 6.452659649124039, + 6.504837967338363, + 6.555882962526782, + 6.595740529929901, + 6.629855890066947, + 6.659374458008115, + 6.6841912736839175, + 6.702715960784362, + 6.723940913730224, + 6.738419656523404, + 6.745505802594398, + 6.756923301483297 + ], + "5._24._0.075": [ + 0.8740013793970964, + 1.1957934696806853, + 1.4813667488882374, + 1.819785366250676, + 2.1114044341807157, + 2.4510705243173234, + 2.788172449969529, + 3.043766216479798, + 3.367648957124977, + 3.5529468669966184, + 3.6812317987017793, + 3.8577729942466825, + 3.9783087636126115, + 4.249839434546521, + 4.484896812486125, + 4.550531113648316, + 4.610498478973528, + 4.669925364880608, + 4.7169884176525265, + 4.757794463311071, + 4.79358938564191, + 4.824095583714668, + 4.847141281098875, + 4.873886212327691, + 4.892373493826127, + 4.901508590660965, + 4.916370972434553 + ], + "5._384._0.0875": [ + 3.4377130144496473, + 3.7851129770524614, + 4.081944782750689, + 4.426491052002913, + 4.719576776545431, + 5.05759766005992, + 5.389547166170523, + 5.638545684094339, + 5.949746729555762, + 6.125412791692034, + 6.245932309635744, + 6.410082282013473, + 6.521104827150453, + 6.767431758419025, + 6.975877700758803, + 7.032964876011526, + 7.084510058414974, + 7.134900046460179, + 7.174216611280294, + 7.20784291192623, + 7.236916314764957, + 7.261340556065468, + 7.279558973754362, + 7.300418050625726, + 7.314635170344563, + 7.321589087814549, + 7.332789695599486 + ], + "5._48._0.075": [ + 1.5268359332879171, + 1.8678839385147372, + 2.1622087383456443, + 2.5060151061486278, + 2.800008762930101, + 3.141052950242086, + 3.478569670482136, + 3.733728785210966, + 4.055393091733762, + 4.238198333802362, + 4.3640995014474875, + 4.536313895807349, + 4.653173343629686, + 4.913843730424326, + 5.136271399232289, + 5.197697126476675, + 5.253436138896508, + 5.308256451702502, + 5.35131183428999, + 5.388362735652557, + 5.420602444996999, + 5.447858465927416, + 5.468304707059304, + 5.491852956053471, + 5.508005424847672, + 5.515942866950888, + 5.528784897513571 + ], + "5._96._0.075": [ + 2.209261920932467, + 2.5553055320732176, + 2.8518559449593543, + 3.1970040944822196, + 3.4915091924922974, + 3.832473850523141, + 4.168884219552001, + 4.422257845646842, + 4.74019836732957, + 4.920109053653755, + 5.043677712332421, + 5.212203964230534, + 5.32627049369432, + 5.579703803141708, + 5.794707343360083, + 5.853779385225841, + 5.907214127091892, + 5.959576040253434, + 6.0005363693633, + 6.035655289979041, + 6.066095737331607, + 6.091732022192163, + 6.110898235869238, + 6.13289344537047, + 6.147924068180829, + 6.1552900049824855, + 6.167174340112673 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_10": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835166360210207, + 3.1870651786929143, + 3.520427929950079, + 4.017301317342929, + 4.585142113766801, + 5.4623796250288885, + 6.62221980966105, + 7.730322221711961, + 9.43953625932803, + 10.571534994880482, + 11.414461521178996, + 12.635301774010772, + 13.503064635042858, + 15.495135227849376, + 17.21699879408359, + 17.69207714160723, + 18.118234783128496, + 18.53299942736411, + 18.8538956770968, + 19.1280793057583, + 19.363640014158186, + 19.56031153726085, + 19.70690226945229, + 19.8740627369843, + 19.988195478156836, + 20.044224795315227, + 20.135037970932906 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961543, + 1.4813847491413061, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833133977, + 2.7884194849666013, + 3.044982785401776, + 3.387477454249017, + 3.614827690511279, + 3.7966442379512735, + 4.089928532251308, + 4.324675842586559, + 4.983928959629237, + 5.749434756791854, + 6.007014487342433, + 6.2626130739909005, + 6.5378535150994095, + 6.773547858469689, + 6.992597196274157, + 7.197461637207968, + 7.382762632174667, + 7.53033578910038, + 7.710552109020643, + 7.842260502791387, + 7.9101598514808344, + 8.025510318428223 + ], + "5._384._0.0875": [ + 3.489872133852398, + 4.009502505330716, + 4.605575714166591, + 5.529329512458617, + 6.56159646019319, + 8.092078738474697, + 9.995258349766244, + 11.688013242065825, + 14.07301374772262, + 15.522031009807536, + 16.545404580822446, + 17.95720110588117, + 18.919950067818064, + 21.037803275245434, + 22.8032230050432, + 23.28324659288996, + 23.712965732269726, + 24.13024662143236, + 24.45289187100183, + 24.72833120590432, + 24.96506439576562, + 25.16285925726164, + 25.310284097404306, + 25.478564151571582, + 25.59340346768926, + 25.64972482205221, + 25.74090308234414 + ], + "5._48._0.075": [ + 1.5268463243731425, + 1.8679037053125433, + 2.1622431316564765, + 2.506080868917534, + 2.800134439662848, + 3.1432552136203307, + 3.511368430330626, + 3.8542610011695033, + 4.425442106216059, + 4.841405042535955, + 5.1754114652799315, + 5.7056714731588825, + 6.1209456324399305, + 7.234831270646256, + 8.42854777654169, + 8.805613601201784, + 9.164899348652693, + 9.53521080886889, + 9.837222911311251, + 10.105549552083284, + 10.344500277283151, + 10.550069419598813, + 10.706550860897421, + 10.888184618120631, + 11.01427278852377, + 11.07692871811408, + 11.179505137942169 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.555323562842094, + 2.85191417061475, + 3.2001832360175304, + 3.5232722633093347, + 3.995932621056376, + 4.6357033745907295, + 5.27079761737959, + 6.308013058828539, + 7.0394898491202715, + 7.611171950056899, + 8.487202466105845, + 9.146859813162125, + 10.792740920077868, + 12.365333495983705, + 12.822546068453015, + 13.24055702893739, + 13.654180733260864, + 13.978474452516222, + 14.25785085509138, + 14.499494835470502, + 14.702196204418257, + 14.853676926783182, + 15.026601660387092, + 15.144906172769483, + 15.20310358950625, + 15.297593239290679 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_11": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835166956024766, + 3.1871129252249464, + 3.520843299054095, + 4.0192963642906365, + 4.590334438698769, + 5.475419106160404, + 6.651437097298937, + 7.781707252434485, + 9.539612397137628, + 10.714860604134, + 11.596057820139029, + 12.881376704471217, + 13.801466856553454, + 15.930291065085985, + 17.78481570776504, + 18.298205124324884, + 18.758899195704362, + 19.20740690890415, + 19.554318975188675, + 19.85076401646089, + 20.105351947785028, + 20.317816434551347, + 20.476169935446862, + 20.656682390937068, + 20.779948391530255, + 20.840479732116055, + 20.93864505768389 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.111467924224729, + 2.4511928331436974, + 2.78841962205322, + 3.0449912307209437, + 3.387670451818616, + 3.615443910896892, + 3.7978076640254574, + 4.092338233006955, + 4.328397553193087, + 4.992949163085869, + 5.76801250736593, + 6.029781236270641, + 6.290135391262823, + 6.571245316238277, + 6.81270184564937, + 7.037818082041057, + 7.249121229528879, + 7.44103788897673, + 7.59455565827571, + 7.78307532107633, + 7.921856227626152, + 7.993858404082789, + 8.117132356045662 + ], + "5._384._0.0875": [ + 3.490402800913484, + 4.01184638147444, + 4.61150240798044, + 5.5440182526867305, + 6.590958810264655, + 8.153610793987403, + 10.115939649202868, + 11.881302724298786, + 14.400601805455599, + 15.948062110204873, + 17.047258461578473, + 18.569929296323494, + 19.611649701583907, + 21.907553994334226, + 23.823090499190428, + 24.343997291013615, + 24.810051963914674, + 25.262410766911263, + 25.611924188571084, + 25.9102572189314, + 26.166533977087592, + 26.380555036910398, + 26.540061430332216, + 26.722083883867462, + 26.84631186145688, + 26.907250299777406, + 27.005945547819984 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.8679037053125453, + 2.1622431316564765, + 2.5060808689637444, + 2.8001345619743248, + 3.14327527284599, + 3.5116958341447164, + 3.855484903543964, + 4.429449886630906, + 4.848413008221112, + 5.185448909371842, + 5.721751958757662, + 6.142872548854635, + 7.277962610524241, + 8.505039016569283, + 8.89568453247388, + 9.269454692924638, + 9.656471499211035, + 9.973615359309843, + 10.256638514920573, + 10.509744197690857, + 10.728356525703933, + 10.895352532006921, + 11.089821263683508, + 11.225285805796554, + 11.292776078789121, + 11.403553804962254 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323563035406, + 2.8519144496150726, + 3.2002147651518276, + 3.5235923654195167, + 3.9976127004527013, + 4.640906269211821, + 5.281367623165438, + 6.331716548673918, + 7.075964327686381, + 7.659847649426192, + 8.558731389182544, + 9.239232692351038, + 10.95194726014642, + 12.610870498066545, + 13.097618917410369, + 13.544065360682819, + 13.987168920322944, + 14.335354578843374, + 14.635872625326117, + 14.896104768736013, + 15.114567066122902, + 15.277937381557118, + 15.464478590925468, + 15.592182795289506, + 15.655049154130324, + 15.757209673764626 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_12": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351674525370814, + 3.187152714048253, + 3.5211894505807377, + 4.020959431047094, + 4.594665961213216, + 5.486316299317611, + 6.675928980232576, + 7.82492333886984, + 9.624313273684493, + 10.836778995141598, + 11.751284956543785, + 13.093603245703891, + 14.060783628630842, + 16.315702835289013, + 18.29611773236931, + 18.846364779514293, + 19.340406551264334, + 19.821590338999005, + 20.193730238626916, + 20.511789116350204, + 20.78485454615621, + 21.01265356198188, + 21.182430900893383, + 21.375906247964426, + 21.508044268134995, + 21.572952455517225, + 21.678274835451475 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615426, + 1.4813847491413068, + 1.8198213217004353, + 2.1114679242247276, + 2.4511928331517994, + 2.78841973629207, + 3.044998268487421, + 3.3878312843269467, + 3.61595744922661, + 3.7987772872559, + 4.094346971526464, + 4.331500858889003, + 5.000481535675707, + 5.783561432673244, + 6.048850056351318, + 6.3132080949251135, + 6.599270995069248, + 6.84560211086141, + 7.075864221877238, + 7.29264779833884, + 7.490223204534129, + 7.6488586426954726, + 7.844604797944689, + 7.989650766373584, + 8.065353950741912, + 8.19596159555141 + ], + "5._384._0.0875": [ + 3.490845146760672, + 4.013800576984361, + 4.616447685482763, + 5.556298589192033, + 6.6155718438411295, + 8.205446070411096, + 10.21831632655605, + 12.046615246052504, + 14.68555475001738, + 16.323272074299606, + 17.49319382401146, + 19.120782326846335, + 20.238141766254202, + 22.706320545580787, + 24.76820366937706, + 25.329065489369768, + 25.83061425677176, + 26.317224728454494, + 26.692943682322856, + 27.013601832688156, + 27.288918747243365, + 27.518733603976493, + 27.689997761870334, + 27.88538722626625, + 28.01874889739666, + 28.08418088612448, + 28.19019848615699 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125467, + 2.1622431316564783, + 2.506080869002254, + 2.8001346639005558, + 3.1432919888723587, + 3.5119686761631086, + 3.856504979554626, + 4.4327923790211194, + 4.854261236115371, + 5.193830143419228, + 5.735195756898862, + 6.16122348670068, + 7.314208483484153, + 8.569656313335456, + 8.971927090004087, + 9.358185604618605, + 9.759727997805836, + 10.090178290838885, + 10.386269367377167, + 10.652119263683115, + 10.882627338629803, + 11.059330076259018, + 11.265801397667284, + 11.410155234013164, + 11.482273819570151, + 11.600979927805605 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.5553235631964966, + 2.851914682115341, + 3.2002410394446894, + 3.5238591225316274, + 3.999013111517024, + 4.645246742910911, + 5.290195631950463, + 6.351566462172947, + 7.106568351530147, + 7.700757635882495, + 8.619040441855363, + 9.317323117487392, + 11.087804745581606, + 12.823525107995163, + 13.337238157917824, + 13.809921775601065, + 14.280525461161893, + 14.651213039501897, + 14.971798269216324, + 15.24978407875666, + 15.48337475815615, + 15.658200894683633, + 15.857899175248235, + 15.994714127890704, + 16.06211764890041, + 16.171752844075332 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_13": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835167872663028, + 3.1871863815472303, + 3.5214823555578953, + 4.022367016152781, + 4.598334354889267, + 5.4955590561422305, + 6.696755956292045, + 7.861774620507107, + 9.69693115383684, + 10.941721931534667, + 11.885403695052583, + 13.27827702288233, + 14.28786201533284, + 16.658889310291617, + 18.758565561855214, + 19.344236851889093, + 19.870461352435676, + 20.38328551672411, + 20.779898350722565, + 21.118955957936564, + 21.409981777397405, + 21.652687500813656, + 21.833573582954557, + 22.039651602239974, + 22.180420510309965, + 22.24959028613101, + 22.36189049207631 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413072, + 1.8198213217004355, + 2.111467924224728, + 2.4511928331586517, + 2.7884198329557117, + 3.0450042235209596, + 3.3879673742247722, + 3.6163919968135643, + 3.7995978097571586, + 4.096047138223399, + 4.334128068548515, + 5.006866139467722, + 5.796766371392239, + 6.0650541545499195, + 6.332829407521105, + 6.623127622742341, + 6.873635670032012, + 7.10831656766363, + 7.329818646947897, + 7.532282915710492, + 7.695359481580537, + 7.897427047661231, + 8.048031041316603, + 8.127069774893931, + 8.26445047623605 + ], + "5._384._0.0875": [ + 3.4912195269820585, + 4.01545481290049, + 4.620636677472281, + 5.566717952683127, + 6.636501504823167, + 8.249708950892252, + 10.306259867285037, + 12.189528252962543, + 14.935286344099918, + 16.65566289930807, + 17.891414395561412, + 19.618059217852274, + 20.807724507673704, + 23.44240787608797, + 25.646966615268383, + 26.246897065048557, + 26.783143508888283, + 27.303228637340194, + 27.704532810741817, + 28.04698473157598, + 28.3408721828442, + 28.5860779446347, + 28.768798278611836, + 28.977205245202754, + 29.119463312118796, + 29.189273922698433, + 29.302432892670183 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125465, + 2.1622431316564756, + 2.5060808690348395, + 2.800134750145825, + 3.143306133205904, + 3.5121995463964875, + 3.8573682325474326, + 4.435622543126915, + 4.859215607366215, + 5.2009338357739825, + 5.74660219449404, + 6.176807200826814, + 7.345095550275651, + 8.624966197136617, + 9.037289120058336, + 9.43440314533406, + 9.848652172295793, + 10.190846763722394, + 10.498577487908223, + 10.775903064501275, + 11.01724976589269, + 11.202898824820965, + 11.420574238336473, + 11.573343716214922, + 11.649889367609283, + 11.776258615251136 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.5553235633328053, + 2.851914878846339, + 3.2002632715487938, + 3.524084843889482, + 4.000198319686831, + 4.648922812711506, + 5.297679486622008, + 6.368431822809411, + 7.132613371363251, + 7.735622503083266, + 8.670576388448413, + 9.384199733351398, + 11.205025040342896, + 13.00920034546786, + 13.547507517930491, + 14.044362225422582, + 14.54057036604107, + 14.932413367974217, + 15.272017165308927, + 15.566941848969465, + 15.815046318043487, + 16.00091004159573, + 16.213327964554935, + 16.358981602902468, + 16.430799226610322, + 16.547727568787387 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_14": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168232771081, + 3.187215239427649, + 3.5217334224619536, + 4.023573791178922, + 4.6014810724421285, + 5.503497554915395, + 6.714683303304745, + 7.89357043757204, + 9.759880579201557, + 11.03299235138716, + 12.002400020203213, + 13.440296630532327, + 14.48812769554716, + 16.96600175290772, + 19.1784934244692, + 19.798177752783378, + 20.355441302131922, + 20.898896261853594, + 21.319254682235222, + 21.678723249299676, + 21.98722013576539, + 22.24443108069967, + 22.436131451112217, + 22.654477076955967, + 22.80365329199522, + 22.87697806509933, + 22.99609074636675 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.195803175961542, + 1.4813847491413066, + 1.8198213217004344, + 2.1114679242247285, + 2.451192833164531, + 2.7884199158102616, + 3.0450093278356825, + 3.388084023330471, + 3.6167644772302805, + 3.8003011673458533, + 4.097504763191927, + 4.336380937338536, + 5.012346740713731, + 5.808120179619418, + 6.078993930533342, + 6.3497197748766565, + 6.6436809162669475, + 6.897807761085545, + 7.136323878455932, + 7.361930063445901, + 7.568657635301319, + 7.735619231402951, + 7.943248658548291, + 8.09879613657327, + 8.180841390175354, + 8.324467314809317 + ], + "5._384._0.0875": [ + 3.4915404882342194, + 4.016873230041997, + 4.624230548279237, + 5.575669555781333, + 6.654516983841043, + 8.287945395167277, + 10.382623751070048, + 12.31426993708191, + 15.155693872554874, + 16.951753521601887, + 18.2486893280448, + 20.06868622816311, + 21.327350531742383, + 24.122788462956706, + 26.46643452588137, + 27.104582625129876, + 27.674769265210536, + 28.22759505377856, + 28.65390144279216, + 29.017648698758553, + 29.329667069297063, + 29.58988712085041, + 29.783781828338018, + 30.004879884742365, + 30.155812834757985, + 30.229894831858054, + 30.350026401871972 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125458, + 2.1622431316564765, + 2.5060808690627696, + 2.800134824070347, + 3.1433182569229547, + 3.512397438020802, + 3.8581082452270468, + 4.438049786267506, + 4.86346649954196, + 5.207031395809252, + 5.75640176150731, + 6.190205681638623, + 7.371730226802197, + 8.67284535479989, + 9.093941552362253, + 9.50056789345122, + 9.926004600959695, + 10.278611187797427, + 10.59673730579632, + 10.884407650442913, + 11.135628214012122, + 11.32951441903377, + 11.557633496196711, + 11.71835948686888, + 11.799135544739901, + 11.932908937110644 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323563449641, + 2.8519150474729065, + 3.2002823276454264, + 3.5242783221126226, + 4.00121439116372, + 4.652076184515599, + 5.304104455130177, + 6.382938640638393, + 7.155047335081405, + 7.7656896356862735, + 8.715123096184907, + 9.44211391608916, + 11.307166556476718, + 13.172540426147433, + 13.733276783069666, + 14.252380178574299, + 14.772394349337908, + 15.18409785722751, + 15.541701553333983, + 15.852770649385336, + 16.114790583669958, + 16.3112868541908, + 16.536005290945287, + 16.690239672830337, + 16.76635564404746, + 16.89040796030123 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_15": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168544864798, + 3.1872402496087084, + 3.5219510178818707, + 4.024619867134964, + 4.604210006215437, + 5.51038966387555, + 6.730277114927017, + 7.921284108210023, + 9.814972097607797, + 11.113094412952053, + 12.105334536619209, + 13.583509803831516, + 14.665915026769497, + 17.242116743141935, + 19.561196616706166, + 20.213508120096993, + 20.8006874532547, + 21.373786224556817, + 21.817186168510986, + 22.1965011318012, + 22.52200356120584, + 22.793340998638072, + 22.99557916527651, + 23.225879358377117, + 23.38325470001306, + 23.460635492789127, + 23.586407499567034 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004355, + 2.111467924224727, + 2.4511928331696202, + 2.788419987617539, + 3.045013751575309, + 3.38818511968639, + 3.6170873018470258, + 3.800910783189355, + 4.098768291494044, + 4.338334151692522, + 5.017102641248917, + 5.81798659581122, + 6.091112972862728, + 6.364412192937793, + 6.661572451971271, + 6.918864668623613, + 7.160740659407046, + 7.389948781942197, + 7.600425783334242, + 7.770812060636389, + 7.983364895457364, + 8.143324100462266, + 8.228081967016777, + 8.377460365559768 + ], + "5._384._0.0875": [ + 3.491818702392649, + 4.018102898862346, + 4.627347707412996, + 5.583443124942264, + 6.670187257070959, + 8.321307417970685, + 10.449554932817602, + 12.424086433077191, + 15.351501191566973, + 17.21688986943145, + 18.570645372479667, + 20.478496292684877, + 21.80290442778471, + 24.753384005042783, + 27.23259965067327, + 27.90814462738544, + 28.5115478147078, + 29.096418014759173, + 29.54717665378859, + 29.93175005518627, + 30.26148649911399, + 30.536367741639214, + 30.74117274333813, + 30.974656194065883, + 31.1340566857579, + 31.21230974578456, + 31.33925612146927 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125451, + 2.1622431316564765, + 2.506080869086979, + 2.8001348881382637, + 3.1433287641463257, + 3.512568946225356, + 3.858749650440403, + 4.440154434152093, + 4.867153811191537, + 5.212322438583283, + 5.76491165080864, + 6.2018484205203785, + 7.394933999789252, + 8.71469722294121, + 9.143515434537681, + 9.558540613011013, + 9.993891852575151, + 10.35577461600931, + 10.683216231423613, + 10.980229169564637, + 11.240449603806452, + 11.441916753239898, + 11.679760319943194, + 11.847999551268968, + 11.93281402315595, + 12.073737908458384 + ], + "5._96._0.075": [ + 2.2092718103274027, + 2.5553235635508993, + 2.8519151936159317, + 3.2002988429346937, + 3.5244460053102884, + 4.002095119942009, + 4.654810941263905, + 5.309680417353388, + 6.395549302123753, + 7.1745724521694845, + 7.791885389748233, + 8.754011608613151, + 9.492753082982883, + 11.396952459223979, + 13.317232898366825, + 13.898435593271188, + 14.438013553139642, + 14.980141471971496, + 15.410468734594135, + 15.785087764673625, + 16.11152854988615, + 16.38688118721623, + 16.59361657363124, + 16.830231863180607, + 16.99280095197227, + 17.073105670554494, + 17.204123255609414 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_16": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351688179468586, + 3.187262133530874, + 3.5221414169997245, + 4.025535339222074, + 4.606599178958763, + 5.516429477188771, + 6.743965140780842, + 7.945654210569434, + 9.863590332464337, + 11.183957984911705, + 12.196588493716607, + 13.71096705337824, + 14.824713259669757, + 17.491454754982396, + 19.91114320016257, + 20.59472497041603, + 21.210717501216095, + 21.812493486214496, + 22.278250946023377, + 22.676867632135043, + 23.018930577084788, + 23.304035524653422, + 23.516550699795705, + 23.75851179936078, + 23.92389166623181, + 24.00523622061856, + 24.137525180471517 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004342, + 2.111467924224728, + 2.4511928331740753, + 2.788420050448908, + 3.045017622347631, + 3.3882735793514955, + 3.6173697796751774, + 3.801444226963368, + 4.0998740717498166, + 4.340043768982335, + 5.021268666455174, + 5.826639922736297, + 6.101746112364224, + 6.3773094434263085, + 6.677287786387347, + 6.937372042389826, + 7.182215634901754, + 7.414610152926143, + 7.628409831028651, + 7.801836517664711, + 8.0187739954478, + 8.18268572331491, + 8.269895188689981, + 8.424569427195248 + ], + "5._384._0.0875": [ + 3.4920621761544317, + 4.019179144035874, + 4.630077105548222, + 5.590256842469188, + 6.683942243923466, + 8.350671063373984, + 10.508699644263562, + 12.521502058429295, + 15.526517926932568, + 17.455481600753973, + 18.861988531208997, + 20.852437748365947, + 22.239408544228443, + 25.339273385807644, + 27.95060270293323, + 28.662749726732404, + 29.298675331050447, + 29.91492694531209, + 30.389617241678245, + 30.79457369621703, + 31.141639361121943, + 31.430849835299398, + 31.646316998266908, + 31.89189881346806, + 32.05957228352458, + 32.14190231924791, + 32.27551561227403 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808691081564, + 2.800134944197689, + 3.1433379579682446, + 3.5127190175269383, + 3.859310926387652, + 4.4419967915031995, + 4.8703826523835385, + 5.216957051088386, + 5.77237072803716, + 6.212059284985178, + 7.415329590662027, + 8.75159245557415, + 9.187258920053583, + 9.60975183846644, + 10.053944454202847, + 10.424133269745642, + 10.759954403643556, + 11.065425253016377, + 11.33385819598319, + 11.542303046906923, + 11.78919522331024, + 11.964521601499293, + 12.053187410757682, + 12.201012967126601 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.555323563639499, + 2.8519153214910804, + 3.200313293817019, + 3.524592729685736, + 4.002865859327178, + 4.65720525184593, + 5.314565224975939, + 6.406612747444055, + 7.19171996673082, + 7.814912104944257, + 8.788255240748112, + 9.537406364315505, + 11.476494314006128, + 13.446230500775407, + 14.046129544729979, + 14.604555398702667, + 15.167215805002831, + 15.614993052560113, + 16.005680692537087, + 16.346743944170854, + 16.634862046513877, + 16.851453726570124, + 17.09957552366926, + 17.27024340909841, + 17.354632493131493, + 17.492465555796507 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_17": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351690589016614, + 3.1872814428846103, + 3.5223094186438755, + 4.026343229355509, + 4.608708323963619, + 5.521765881811545, + 6.756076611788821, + 7.967251312957956, + 9.906812542686033, + 11.247093174140165, + 12.278038423182068, + 13.825109084030867, + 14.967352240082077, + 17.717546797284673, + 20.232133224527203, + 20.94566096794357, + 21.58938581808407, + 22.218891603498477, + 22.706340240518937, + 23.12373122115777, + 23.481927414665734, + 23.78045809380737, + 24.0030032764878, + 24.25634874241662, + 24.429550558560233, + 24.514772572479192, + 24.65344567398278 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615428, + 1.481384749141308, + 1.8198213217004362, + 2.1114679242247285, + 2.4511928331780064, + 2.788420105888346, + 3.0450210377350913, + 3.388351632271312, + 3.6176190296918462, + 3.801914935830435, + 4.10084990981322, + 4.341552684889036, + 5.024948150542268, + 5.834290922722765, + 6.1111508263710395, + 6.388721566780078, + 6.691201159220184, + 6.953766422234156, + 7.201250156647216, + 7.436483375001985, + 7.653247661503421, + 7.829391187567958, + 8.050256200291084, + 8.21772388269435, + 8.307154058477826, + 8.466703591473225 + ], + "5._384._0.0875": [ + 3.4922770341425298, + 4.02012899306331, + 4.632486859291764, + 5.596278145614024, + 6.696112839492165, + 8.376714356967737, + 10.561341677109818, + 12.608504931522763, + 15.683837052054457, + 17.671185756460726, + 19.12667579376766, + 21.19473410892038, + 22.64117916293682, + 25.884849491647305, + 28.62489244093846, + 29.372869137619684, + 30.040648890943377, + 30.687648311201425, + 31.185775876470803, + 31.610695667944412, + 31.974723288138225, + 32.277950111584374, + 32.50384570723368, + 32.7612557415252, + 32.93701919351604, + 33.02333776629886, + 33.163479063047035 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125453, + 2.1622431316564774, + 2.5060808691268437, + 2.80013499366189, + 3.1433460701651925, + 3.5128514346389474, + 3.8598062058258567, + 4.443623013888008, + 4.873233525263319, + 5.221050255841933, + 5.778962302562658, + 6.221087105997153, + 7.4333976346872985, + 8.784362207472078, + 9.22614312011308, + 9.655318274451016, + 10.10744161540083, + 10.485104979323387, + 10.828493955601507, + 11.141643336312796, + 11.417582282826874, + 11.632453171433792, + 11.887762295998408, + 12.06976805740128, + 12.16210338056123, + 12.316586390040712 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235637176734, + 2.8519154343220916, + 3.200326044598801, + 3.524722193592667, + 4.003546002330923, + 4.659318963437549, + 5.3188798823630306, + 6.416397250672831, + 7.206899197478823, + 7.835311948164303, + 8.818639037856066, + 9.57707543473498, + 11.547450804359967, + 13.561916433207719, + 14.178921871017529, + 14.754711611968649, + 15.336435682657676, + 15.80055514492544, + 16.20640555029027, + 16.561367349484165, + 16.86169958035954, + 17.087774779945107, + 17.347024453353548, + 17.525563923786798, + 17.61393744351541, + 17.758443820562867 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_18": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351692730837423, + 3.187298606762966, + 3.522458755345322, + 4.027061448885452, + 4.610583947457378, + 5.52651499480654, + 6.7668690577360815, + 7.986523168712463, + 9.945489540603598, + 11.303698194546337, + 12.351181227263593, + 13.927906356309494, + 15.096143711793104, + 17.92336364870048, + 20.527420739654467, + 21.269606202744534, + 21.940005689337262, + 22.59631260124454, + 23.10480204177181, + 23.540455043047896, + 23.914372713649, + 24.226002396199565, + 24.458342735597878, + 24.72281121102384, + 24.903663092657645, + 24.992681563926993, + 25.13761451114891 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615422, + 1.4813847491413075, + 1.8198213217004355, + 2.1114679242247285, + 2.451192833181505, + 2.7884201551678527, + 3.0450240736351453, + 3.388421012860232, + 3.617840589098392, + 3.8023333619594015, + 4.101717439179855, + 4.3428942820167435, + 5.028221623461068, + 5.841104208397113, + 6.11952835591694, + 6.398891099642963, + 6.703605660887682, + 6.968390081255408, + 7.218237796175804, + 7.456015889045902, + 7.675441491684556, + 7.854027068103665, + 8.078429356470423, + 8.249109940536144, + 8.340557057811795, + 8.504596559438866 + ], + "5._384._0.0875": [ + 3.492468041218071, + 4.020973477239523, + 4.6346300134515745, + 5.6016376685401745, + 6.7069578710748265, + 8.399970251169869, + 10.608497187365451, + 12.686680278655265, + 15.825986523133219, + 17.86705085107303, + 19.368050353335466, + 21.509008923275072, + 23.011947512440027, + 26.393939664914026, + 29.259348324645806, + 30.042401941906093, + 30.741390330681945, + 31.418530004676605, + 31.939623899075194, + 32.38410832038698, + 32.76475011837596, + 33.08169768430379, + 33.317801041800934, + 33.58678447788876, + 33.77046542270937, + 33.86068922785991, + 34.00722777352846 + ], + "5._48._0.075": [ + 1.52684632437314, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808691434566, + 2.800135037630068, + 3.143353281007823, + 3.5129691397283414, + 3.860246482515314, + 4.44506902751722, + 4.875769127202337, + 5.224691685707922, + 5.784829391325068, + 6.229126218508878, + 7.449515014152312, + 8.813661636168035, + 9.260934871510416, + 9.69612391814712, + 10.15539973642802, + 10.539821701313398, + 10.890073238816777, + 11.210214903264593, + 11.493027544865335, + 11.713822022515926, + 11.976960588559795, + 12.165257190672044, + 12.26108582343124, + 12.421986650584406 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.555323563787166, + 2.8519155346163263, + 3.2003373786296203, + 3.5248372735833664, + 4.004150635947617, + 4.661198672301654, + 5.322718705181594, + 6.4251124552275956, + 7.220430615138642, + 7.8535101038914545, + 8.845780615646634, + 9.612550366949462, + 11.611141314569045, + 13.66622890712801, + 14.298916080959975, + 14.890720891876425, + 15.490150856504643, + 15.969572129177786, + 16.38972255095019, + 16.7578859167738, + 17.069897439253392, + 17.305093189827005, + 17.575102662476116, + 17.761294063056955, + 17.853555913286083, + 18.004599999183345 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_19": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351694647203747, + 3.1873139639239865, + 3.5225923739150744, + 4.027704142133235, + 4.612262797721352, + 5.530768708786782, + 6.776546817615984, + 8.003826069248145, + 9.980302249155868, + 11.354735837969141, + 12.417224683845912, + 14.020963763814295, + 15.212989636595125, + 18.11141747098906, + 20.799808841710586, + 21.569402824736645, + 22.265444163343734, + 22.94764236411192, + 23.47653703834465, + 23.929953308944043, + 24.31919431157749, + 24.64360949407731, + 24.885520886658927, + 25.16086452601835, + 25.34920413106403, + 25.441942790579557, + 25.593018899549524 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141308, + 1.8198213217004335, + 2.1114679242247276, + 2.4511928331846295, + 2.7884201992600426, + 3.0450267899668466, + 3.3884830904013934, + 3.6180388295226176, + 3.802707757790232, + 4.102493743617169, + 4.344094928527764, + 5.0311527726232, + 5.8472102182781915, + 6.127038263510064, + 6.40801049691517, + 6.714734094701957, + 6.98151516441067, + 7.233491826550191, + 7.473564274130246, + 7.695392081855646, + 7.876184460112501, + 8.103788638717877, + 8.277384497641398, + 8.370668879402892, + 8.53884674605867 + ], + "5._384._0.0875": [ + 3.492638959997171, + 4.021729207136158, + 4.636548491089315, + 5.606438827200345, + 6.716682704096039, + 8.42086344905772, + 10.650981102850826, + 12.757306931705557, + 15.955046336331753, + 18.045630868074465, + 19.588949382937457, + 21.798385036074308, + 23.35495524595839, + 26.869899740663218, + 29.857376288511514, + 30.674771406224043, + 31.40434302732167, + 32.11103857220592, + 32.65464889641591, + 33.11831817970246, + 33.5152440260034, + 33.845632420925064, + 34.091734744662695, + 34.37205072584209, + 34.56348624980439, + 34.65753666354015, + 34.81034914359852 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125427, + 2.1622431316564756, + 2.50608086915832, + 2.800135076970015, + 3.143359732815098, + 3.5130744555980176, + 3.860640436868563, + 4.446363214354356, + 4.878039015242469, + 5.2279522229643005, + 5.790085212520745, + 6.236330605202339, + 7.4639814181298565, + 8.840014168106686, + 9.292247757500606, + 9.73287749697581, + 10.198635997923388, + 10.589196922327671, + 10.945696321103062, + 11.27222560973697, + 11.561346841397315, + 11.787608661012374, + 12.058032438115518, + 12.252251150341785, + 12.351402859678249, + 12.518486570118924 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323563849339, + 2.8519156243532695, + 3.2003475196066087, + 3.524940240658566, + 4.00469167343449, + 4.6628811988220855, + 5.326156293868396, + 6.432924560501316, + 7.232568706607573, + 7.869844706270588, + 8.870172526624991, + 9.64446268725317, + 11.668627903906007, + 13.760755916047703, + 14.407850035469416, + 15.014447177596988, + 15.630332794069597, + 16.12408278510321, + 16.557714944932144, + 16.93841117116378, + 17.26158432186074, + 17.505547435996167, + 17.785958375958742, + 17.979588700653927, + 18.075646086329616, + 18.233097938689923 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835140144617679, + 3.1849643917020174, + 3.502165426925441, + 3.9301922546307075, + 4.362516256614647, + 4.930474121911802, + 5.538533506350954, + 6.014628289895621, + 6.622810334317273, + 6.969487915354439, + 7.207956408149328, + 7.5328400096669235, + 7.75247268244368, + 8.238002774495671, + 8.64704570804324, + 8.758946823716846, + 8.859835704138877, + 8.958391369204966, + 9.035204266339816, + 9.100920292313864, + 9.157710284461414, + 9.20539775508919, + 9.240984185845074, + 9.281724082545848, + 9.309518333012262, + 9.323128053749246, + 9.345076672378271 + ], + "5._24._0.075": [ + 0.8740013793970967, + 1.1957934696806858, + 1.4813667488882372, + 1.8197853662506762, + 2.1114044341807157, + 2.451070524851898, + 2.7881799871003565, + 3.044230462293286, + 3.3782486192021772, + 3.5866413599987026, + 3.74411106062757, + 3.9824685850393973, + 4.160322393737606, + 4.602146633625265, + 5.020983171670913, + 5.142411578682097, + 5.254586545541572, + 5.366786238317462, + 5.456237065826286, + 5.534186703990583, + 5.602785747046791, + 5.6613702351166975, + 5.70569649489467, + 5.757148217666041, + 5.792742473532685, + 5.810347556509697, + 5.839015563099657 + ], + "5._384._0.0875": [ + 3.466682955321226, + 3.9075976085194033, + 4.352889851862578, + 4.936605526584581, + 5.471776533129856, + 6.114911758424402, + 6.760965495692346, + 7.250135480426092, + 7.863263609642247, + 8.209452006454356, + 8.446764914353068, + 8.769298847382146, + 8.987050619959732, + 9.468043860391814, + 9.873074716597168, + 9.983788485375486, + 10.083594630400668, + 10.181047397631279, + 10.256969131093063, + 10.321883348146676, + 10.377954447427506, + 10.425017066023733, + 10.460117564935974, + 10.500283849242233, + 10.527666961819111, + 10.541067428758854, + 10.562670309595733 + ], + "5._48._0.075": [ + 1.5268359332879171, + 1.8678839385147372, + 2.162208738345644, + 2.506015108690003, + 2.800015488967817, + 3.142155865119192, + 3.4965449323272013, + 3.799865787506381, + 4.2507898166056, + 4.541446697892453, + 4.753927656129075, + 5.057673450312983, + 5.270631610442865, + 5.758786283451121, + 6.183706938120382, + 6.301893218645891, + 6.4091683251290315, + 6.514727559207145, + 6.597585833820916, + 6.668904620538769, + 6.7309060054309935, + 6.783262307486161, + 6.822521074175333, + 6.867673225089816, + 6.898636895106161, + 6.913858452525283, + 6.93850302308843 + ], + "5._96._0.075": [ + 2.209261920932469, + 2.555305542704949, + 2.8518712893055422, + 3.1987380359893054, + 3.50909251084119, + 3.9222326952815756, + 4.412264545566231, + 4.831434304741051, + 5.400936800325458, + 5.7374752125758075, + 5.972497848894372, + 6.296305409402205, + 6.516924423640519, + 7.008216169558008, + 7.424709235540797, + 7.539067708903202, + 7.6423144310817825, + 7.743353070829632, + 7.822238931842795, + 7.889838497084045, + 7.948346853021645, + 7.997549271904297, + 8.03431587002969, + 8.076458437227618, + 8.105253962886398, + 8.119371531258903, + 8.142168594180948 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_20": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351696371933612, + 3.187327785374286, + 3.522712631856148, + 4.028282627251103, + 4.613774296796671, + 5.534600695857525, + 6.785274097425122, + 8.019447060121017, + 10.011802087152398, + 11.400988564990218, + 12.477153653582594, + 14.105599690365294, + 15.319465772954857, + 18.283842597373344, + 21.051724794674406, + 21.847519652068293, + 22.56819669019607, + 23.275395640410945, + 23.824074045622737, + 24.294767103877632, + 24.69894538463728, + 25.035844240638838, + 25.2871121235497, + 25.573095142611177, + 25.76876867285362, + 25.86515549243738, + 26.022264906438036 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615422, + 1.4813847491413077, + 1.8198213217004353, + 2.1114679242247267, + 2.4511928331874437, + 2.7884202389430075, + 3.045029234665444, + 3.3885389603274243, + 3.6182172483757613, + 3.803044725793384, + 4.103192493482654, + 4.345175728555701, + 5.033792627276574, + 5.852713647326416, + 6.13380869145111, + 6.416234423232714, + 6.724773718343498, + 6.993360772003964, + 7.24726470440848, + 7.489416193510193, + 7.7134231117013945, + 7.896219386983844, + 8.126735335914299, + 8.302987274853425, + 8.397950434322713, + 8.569946852458507 + ], + "5._384._0.0875": [ + 3.4927928012025156, + 4.022409476141426, + 4.638275863163416, + 5.610764557058385, + 6.725452367098285, + 8.439736555775063, + 10.689454618942138, + 12.821427827304152, + 16.07273937222973, + 18.209076029559952, + 19.791790758107503, + 22.06556461205989, + 23.673030956543514, + 27.315688530530007, + 30.421984567679353, + 31.27300126386915, + 32.0325485759906, + 32.768236272396045, + 33.33393205439052, + 33.816423552430365, + 34.22931934379198, + 34.572882950467516, + 34.82878627644716, + 35.12020669909482, + 35.319242640314414, + 35.417045319051056, + 35.57601522343307 + ], + "5._48._0.075": [ + 1.5268463243731432, + 1.8679037053125407, + 2.1622431316564765, + 2.506080869171697, + 2.8001351123759695, + 3.1433655394422244, + 3.513169240518399, + 3.860995014019506, + 4.447528293634243, + 4.880082877180298, + 5.230888658689268, + 5.7948205621844115, + 6.242823852786144, + 7.47703814152145, + 8.863843024524652, + 9.320578569205251, + 9.766153789262525, + 10.237814619106857, + 10.633975301398785, + 10.996184794714795, + 11.328568058378279, + 11.623493042018161, + 11.854808769646617, + 12.132015291522608, + 12.331807482334483, + 12.43411831623204, + 12.607154884324519 + ], + "5._96._0.075": [ + 2.2092718103274107, + 2.555323563905299, + 2.851915705116521, + 3.200356646487551, + 3.5250329116461923, + 4.005178647159127, + 4.664396023452272, + 5.3292524291969805, + 6.439967020736217, + 7.243518124627034, + 7.884588029394886, + 8.892212383493149, + 9.673323234233981, + 11.72077502425112, + 13.846807939425775, + 14.507168795428955, + 15.127451660780915, + 15.758645155844816, + 16.265816875085804, + 16.712157550424337, + 17.104747180518274, + 17.43858211770684, + 17.690969302139187, + 17.98143258711328, + 18.18229476278173, + 18.282057777696462, + 18.44579236694323 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351510677223124, + 3.185839705255709, + 3.509771540026878, + 3.966330673031906, + 4.453898436646452, + 5.141063225581686, + 5.935299849182006, + 6.591064822401665, + 7.4573397084792585, + 7.960204506246263, + 8.308428386398862, + 8.784434241747197, + 9.106869195173443, + 9.819004468262776, + 10.417553200063558, + 10.581112939206577, + 10.728355197827176, + 10.872032730663653, + 10.983845567697387, + 11.079470322916373, + 11.162021309221977, + 11.23127300322087, + 11.282940091757375, + 11.342050731061262, + 11.382382337920458, + 11.402138935562201, + 11.434024927322461 + ], + "5._24._0.075": [ + 0.8740013793970963, + 1.1957934696806856, + 1.4813667488882378, + 1.819785366250676, + 2.1114044341807157, + 2.4510705250300893, + 2.788182499477228, + 3.0443852106901215, + 3.381782256847064, + 3.5979049641354917, + 3.7653169707122243, + 4.025976647688318, + 4.226681022892984, + 4.7519775047763355, + 5.289276786959019, + 5.452176058421596, + 5.605172805309302, + 5.760500989302295, + 5.885820943128873, + 5.9960544830599956, + 6.093756080482953, + 6.177649611559798, + 6.241387660406869, + 6.315575367344118, + 6.367049048904869, + 6.3925661935266564, + 6.434203924751947 + ], + "5._384._0.0875": [ + 3.4763066788959396, + 3.949772974187067, + 4.456260341450167, + 5.169408748681231, + 5.871115554030923, + 6.760870364124674, + 7.687802150819135, + 8.402209462252888, + 9.30497492062296, + 9.81638347479816, + 10.167150006594197, + 10.64346476548816, + 10.964771566054742, + 11.672408151280557, + 12.266242640000142, + 12.42833604434291, + 12.574279870681229, + 12.716647611846046, + 12.827426487106704, + 12.92212131446228, + 13.003853316799084, + 13.072405876226359, + 13.123529770395518, + 13.182008691940712, + 13.22188408446242, + 13.241405445087377, + 13.272897556367255 + ], + "5._48._0.075": [ + 1.5268359332879173, + 1.867883938514737, + 2.1622087383456456, + 2.5060151095371266, + 2.8000177309803878, + 3.1425235015701425, + 3.50253927551839, + 3.8221513912839025, + 4.3219203208202615, + 4.662094623549054, + 4.920779665355623, + 5.305197220055999, + 5.584574633595157, + 6.250240097046942, + 6.8508100598561175, + 7.02032416411666, + 7.174704624548563, + 7.3270420254642925, + 7.446781361568329, + 7.54998768102832, + 7.639728763200551, + 7.715491511685074, + 7.772309526957078, + 7.837607291416172, + 7.882394856115053, + 7.904425286274421, + 7.940124399290625 + ], + "5._96._0.075": [ + 2.2092619209324704, + 2.5553055462488583, + 2.8518764040875877, + 3.1993160118959567, + 3.514955741603026, + 3.9527389763946745, + 4.503681602688366, + 5.006861923779691, + 5.738944199243816, + 6.194547647991565, + 6.520747151603693, + 6.97831807732745, + 7.294240982610546, + 8.004586646061995, + 8.61032697321235, + 8.776955960336549, + 8.927246070742218, + 9.074228802677638, + 9.188836957686432, + 9.287022505975273, + 9.37190962826258, + 9.4432139118431, + 9.496477965097244, + 9.557471885031982, + 9.599147261960589, + 9.619587423820962, + 9.652619821039247 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351565293061927, + 3.186277369725293, + 3.5135763440050924, + 3.984482530615498, + 4.500328527187433, + 5.252929853813622, + 6.166049558164793, + 6.954818862458517, + 8.035329575127863, + 8.677316270389335, + 9.126260992463921, + 9.74365052040903, + 10.163560451553488, + 11.09224837617182, + 11.87253405098203, + 12.085668095178917, + 12.277305834288796, + 12.464136810401527, + 12.609345157930006, + 12.733492953922616, + 12.840568813105348, + 12.930315914522732, + 12.997261077795526, + 13.073806543685494, + 13.126038789048899, + 13.151633867822897, + 13.192971097467371 + ], + "5._24._0.075": [ + 0.8740013793970963, + 1.1957934696806856, + 1.4813667488882372, + 1.8197853662506762, + 2.1114044341807157, + 2.451070525119184, + 2.78818375566569, + 3.044462584972616, + 3.3835492733852717, + 3.6035402764592814, + 3.775936601553508, + 4.04783928375391, + 4.260199503376492, + 4.83026072820424, + 5.440316619613034, + 5.631817647925681, + 5.8144603766946545, + 6.002746075381008, + 6.15671652137846, + 6.293698523897438, + 6.416260465066006, + 6.522333986896158, + 6.603431531688164, + 6.698303675873532, + 6.764456015353557, + 6.797366566033298, + 6.851243600007028 + ], + "5._384._0.0875": [ + 3.4811393655885206, + 3.971010269644954, + 4.508976665415018, + 5.294251139816838, + 6.103114537954158, + 7.177936460766827, + 8.343480110490887, + 9.262841494572463, + 10.439178278648443, + 11.109549088367109, + 11.570154220595375, + 12.195693347635098, + 12.617618287524184, + 13.544949039519576, + 14.321132217443383, + 14.532760907779526, + 14.723102299691968, + 14.908625655760929, + 15.052829037332357, + 15.176068454958983, + 15.282364173235125, + 15.37146341955096, + 15.43790498694524, + 15.513878999541594, + 15.565692266203763, + 15.591066210539713, + 15.632024448327295 + ], + "5._48._0.075": [ + 1.5268359332879173, + 1.8678839385147374, + 2.1622087383456443, + 2.5060151099606895, + 2.8000188519866724, + 3.1427073206177853, + 3.5055373540001047, + 3.8333195360139745, + 4.357904355255417, + 4.7240568674260475, + 5.008175496203009, + 5.440407740861426, + 5.762629797534667, + 6.557057784804414, + 7.302738578001398, + 7.517295299755165, + 7.713813485892955, + 7.90866356380504, + 8.062297541151557, + 8.19505899526737, + 8.310650013821848, + 8.408302728791881, + 8.481590072964535, + 8.565802485788343, + 8.623600723744266, + 8.652055179321795, + 8.698212371267878 + ], + "5._96._0.075": [ + 2.2092619209324704, + 2.5553055480208138, + 2.851878961478617, + 3.199605002205937, + 3.5178882395629185, + 3.968046678185059, + 4.55014749155164, + 5.098742395066348, + 5.930851539740409, + 6.470185581628055, + 6.865730338663789, + 7.431794194211518, + 7.82918121122223, + 8.73596275485232, + 9.51800957209451, + 9.734023351563122, + 9.928834742576504, + 10.119361285092724, + 10.267811157313929, + 10.394989586500742, + 10.504853818991128, + 10.597056343718467, + 10.665915874567876, + 10.744705908389962, + 10.798543354928198, + 10.824959083605435, + 10.867680397495905 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351598062666232, + 3.186539970868435, + 3.5158597860966205, + 3.9954013132700497, + 4.528420506228125, + 5.3215759636561835, + 6.31279536227868, + 7.197643286509492, + 8.449802285616565, + 9.21208449967516, + 9.751349000396456, + 10.498844387141098, + 11.01019344790078, + 12.144898313237372, + 13.099625948047745, + 13.360473668577686, + 13.594785319219229, + 13.823057700360815, + 14.00027547815332, + 14.151752764767862, + 14.282290873883106, + 14.39161564155346, + 14.47315005172904, + 14.566327283043137, + 14.629913935163467, + 14.661082947670087, + 14.7114545821795 + ], + "5._24._0.075": [ + 0.8740013793970968, + 1.195793469680686, + 1.4813667488882376, + 1.8197853662506758, + 2.111404434180715, + 2.451070525172641, + 2.7881845093787754, + 3.0445090095690146, + 3.384609546576235, + 3.60692258803915, + 3.782313721304198, + 4.060991129105417, + 4.280408476405369, + 4.878001605922317, + 5.534874882442655, + 5.745943502422536, + 5.949666959848923, + 6.162379721752643, + 6.338479744874569, + 6.49689031949909, + 6.64004768398907, + 6.76506132893069, + 6.861365674024911, + 6.974792013370061, + 7.054411305581753, + 7.094208003200405, + 7.159645254280049 + ], + "5._384._0.0875": [ + 3.484045428228503, + 3.983803041186735, + 4.5409283279405095, + 5.371119867045962, + 6.250610707585901, + 7.460822088981469, + 8.822064064479669, + 9.923056162452188, + 11.35373942918458, + 12.175784657247368, + 12.742211991048363, + 13.512226599200405, + 14.031877063359648, + 15.172488335257922, + 16.125332896405297, + 16.38489296263954, + 16.618121258210458, + 16.84527448121368, + 17.021659665212646, + 17.17237123947259, + 17.30227791766592, + 17.41110415604465, + 17.492249758034, + 17.585007675061036, + 17.64827611166057, + 17.67926884036746, + 17.72932432908714 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125438, + 2.1622431316564774, + 2.506080868409208, + 2.800133094236608, + 3.1430345625688068, + 3.5077674641030474, + 3.8408116625904216, + 4.381586671332468, + 4.765025811641742, + 5.0664282724592455, + 5.532471379825891, + 5.886390053018073, + 6.785527080084026, + 7.663765491037, + 7.921985185406946, + 8.160457294662926, + 8.39852958441645, + 8.587237147922867, + 8.750825350971988, + 8.893568538257197, + 9.014297504376565, + 9.104922018464343, + 9.208990335965863, + 9.280380743302517, + 9.315523178898712, + 9.372516058367696 + ], + "5._96._0.075": [ + 2.209261920932471, + 2.5553055490839878, + 2.8518804959132367, + 3.199778397146007, + 3.519648020844696, + 3.977249406611028, + 4.578267520113382, + 5.154848731697201, + 6.051483672644926, + 6.64903109207958, + 7.095749573899366, + 7.746739141717749, + 8.21143309928475, + 9.290062728168119, + 10.234593250466354, + 10.497074014542322, + 10.733965995209655, + 10.965795245194869, + 11.1463870323713, + 11.301144547056056, + 11.434763905850694, + 11.546829250128546, + 11.630513785636808, + 11.726204400187711, + 11.791598239536073, + 11.82369792476395, + 11.875650777827616 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835161990911118, + 3.1867150393227837, + 3.517382314078809, + 4.002692053524816, + 4.547247743896627, + 5.367980602934978, + 6.413570897056565, + 7.368631251473461, + 8.756431479101177, + 9.620653096642311, + 10.239410857054358, + 11.104845246864013, + 11.701048412476972, + 13.030666099915301, + 14.15275812389436, + 14.459600600779275, + 14.73502536672501, + 15.003207714105734, + 15.211206411368803, + 15.388959622334651, + 15.54202512808495, + 15.670121922445576, + 15.765641438969773, + 15.874746584972375, + 15.949209240564953, + 15.985720622448445, + 16.044762103825423 + ], + "5._24._0.075": [ + 0.8740059532267962, + 1.1958031759615424, + 1.4813847491413075, + 1.8198213217004349, + 2.111467924224728, + 2.451192833062686, + 2.7884184796647324, + 3.0449208530816416, + 3.386062186750797, + 3.610309594636148, + 3.788116506186535, + 4.0722835555242085, + 4.297458391423497, + 4.918397013470395, + 5.61584433170168, + 5.843837463130339, + 6.066165491561771, + 6.300813022308235, + 6.497258102773271, + 6.675709755400152, + 6.838541308355629, + 6.982014684034514, + 7.0933559921619755, + 7.2254301846344235, + 7.318753499591462, + 7.365610745077294, + 7.442978084331978 + ], + "5._384._0.0875": [ + 3.4859855003899294, + 3.9923526176916058, + 4.562366681191675, + 5.423179572495527, + 6.351897707188339, + 7.662034742866547, + 9.181066820380732, + 10.43987096909204, + 12.103673142668287, + 13.069209871928068, + 13.737033095912324, + 14.646499652878957, + 15.260947136768802, + 16.60872995583057, + 17.733078357411195, + 18.03913778800683, + 18.313907521596736, + 18.5813341907395, + 18.78879675179029, + 18.966027440371185, + 19.118697950718726, + 19.246521975063747, + 19.341825483318093, + 19.450734107695883, + 19.525027676769373, + 19.561430791160035, + 19.620254657474046 + ], + "5._48._0.075": [ + 1.5268463243731434, + 1.8679037053125456, + 2.162243131656478, + 2.5060808685786498, + 2.8001335427120204, + 3.1431081128315754, + 3.508967689277732, + 3.8452920087841305, + 4.396158399568936, + 4.790341907673497, + 5.1024668122352, + 5.589462598819013, + 5.963237889259346, + 6.930182846399339, + 7.9023401724775715, + 8.193762340376306, + 8.464899445380386, + 8.737487450753207, + 8.95476995829216, + 9.143990687370689, + 9.309650406466377, + 9.450109469695633, + 9.555748290333073, + 9.677192905925992, + 9.76062836275538, + 9.801755151911522, + 9.86854588921472 + ], + "5._96._0.075": [ + 2.2092619209324704, + 2.5553055497927706, + 2.8518815188696505, + 3.1998939940869224, + 3.5208213260912595, + 3.9833921153927623, + 4.597116326255696, + 5.192666633794937, + 6.133875980646579, + 6.772999136289317, + 7.25762498277739, + 7.974401186413238, + 8.493701931753968, + 9.71993303662497, + 10.812582732567138, + 11.11854192062693, + 11.395086505922585, + 11.666052948584051, + 11.877194636648637, + 12.058233088047688, + 12.214508475351074, + 12.345520563404403, + 12.443354501252804, + 12.555167327733807, + 12.631594925930047, + 12.669128294461094, + 12.729922063086406 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351635513735327, + 3.1868400887210777, + 3.518469948327196, + 4.007905391760889, + 4.560744629535112, + 5.401449083758796, + 6.486976321316337, + 7.494819690011772, + 8.990031148978208, + 9.939742486515406, + 10.62756995709885, + 11.598631317944045, + 12.272809342815531, + 13.785766062801317, + 15.068231886920891, + 15.419442920350987, + 15.734535049510566, + 16.041230270215344, + 16.27890182163994, + 16.481985532426044, + 16.65674348422391, + 16.802895065437415, + 16.911862557914205, + 17.036270572370665, + 17.12118489782945, + 17.16283345665093, + 17.230222114881137 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004349, + 2.1114679242247276, + 2.4511928330881467, + 2.788418838701112, + 3.044942971763282, + 3.386567629728472, + 3.6119230278460517, + 3.7911613045797923, + 4.078580049636962, + 4.307163752177449, + 4.941677435556674, + 5.663027618983758, + 5.901361759594423, + 6.135247696883413, + 6.383886230396662, + 6.59370507369637, + 6.785803776503792, + 6.962509782107197, + 7.119485626994295, + 7.242243538718094, + 7.389029028716575, + 7.493643635612574, + 7.5465023506515365, + 7.634332582782971 + ], + "5._384._0.0875": [ + 3.487372589585155, + 3.998469801266941, + 4.5777474410051315, + 5.460776223461212, + 6.425674739213298, + 7.811448320008934, + 9.457393874786662, + 10.851633705797674, + 12.726622455189958, + 13.826818124689655, + 14.591252079696888, + 15.634857218384486, + 16.341099374278958, + 17.89012008611717, + 19.18120760165275, + 19.532466736275204, + 19.84756093006916, + 20.15403736620567, + 20.391581915199563, + 20.59447307028286, + 20.76914405185987, + 20.915308582552065, + 21.024277607388683, + 21.148765882915125, + 21.233696595705158, + 21.275322017056848, + 21.342617449775894 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656477, + 2.506080868699679, + 2.8001338630516033, + 3.14316064878727, + 3.509825052299018, + 3.848493949538661, + 4.406595353628653, + 4.808512554916006, + 5.128385046179502, + 5.630621991594365, + 6.018944136982413, + 7.036679243449652, + 8.083085612065275, + 8.402118479140187, + 8.701041197701302, + 9.003679581690063, + 9.246361952110863, + 9.458765264812914, + 9.64545370153571, + 9.80423770945946, + 9.923954658858502, + 10.061818993725646, + 10.156722307309312, + 10.203578162091253, + 10.279798091320455 + ], + "5._96._0.075": [ + 2.2092619209324726, + 2.555305550299042, + 2.8518822495528053, + 3.199976563484331, + 3.5216594589333883, + 3.987783469991948, + 4.610630051411952, + 5.219885841408891, + 6.193697119043065, + 6.863688145465759, + 7.37701355174114, + 8.145097648783063, + 8.708507627471517, + 10.06015942648566, + 11.28655314742143, + 11.632954167739143, + 11.94671528792384, + 12.254687309217946, + 12.494851774934968, + 12.700949413835472, + 12.87886828832538, + 13.02799852954206, + 13.13937721517926, + 13.266623199224691, + 13.353625807082219, + 13.396374577666606, + 13.465670536191942 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351647217214677, + 3.186933876044517, + 3.519285736505398, + 4.011818497662372, + 4.570894108303604, + 5.426728791536699, + 6.54283296440728, + 7.591620694148268, + 9.17287427882817, + 10.194107684929786, + 10.941523251610322, + 12.00638612842619, + 12.751640249349293, + 14.436094492467918, + 15.871970204591033, + 16.265984796584448, + 16.619382638898305, + 16.963296056123465, + 17.22962699562798, + 17.457181743403964, + 17.652877641644146, + 17.81643860401857, + 17.938371584706154, + 18.07752195433133, + 18.172508033742663, + 18.21911029705349, + 18.294558020175877 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615428, + 1.481384749141307, + 1.8198213217004344, + 2.1114679242247276, + 2.4511928331072417, + 2.788419107978398, + 3.0449595607775213, + 3.38694671903478, + 3.6131332285032456, + 3.793445501332113, + 4.083306271732066, + 4.314453820052616, + 4.959227826323579, + 5.698797092038951, + 5.945050639137389, + 6.187843159811322, + 6.447351967369248, + 6.667688198809891, + 6.870670508507129, + 7.058642033713825, + 7.226812270639648, + 7.359240903062616, + 7.518811155763976, + 7.633534711150006, + 7.691889342711376, + 7.78953283313596 + ], + "5._384._0.0875": [ + 3.4884136311046037, + 4.003063355715507, + 4.589320170805375, + 5.489201774443061, + 6.481812737411748, + 7.926527425106713, + 9.675279758487836, + 11.185093060011493, + 13.249766296660328, + 14.475431511368184, + 15.331419463282488, + 16.503586351457493, + 17.298532622656356, + 19.042952677600642, + 20.49631606502745, + 20.891580909268864, + 21.245886489210218, + 21.59029727570618, + 21.85701793916289, + 22.084788611103733, + 22.28076589101648, + 22.444673214799938, + 22.566859934104503, + 22.706408405934326, + 22.801623258318443, + 22.84829984392765, + 22.923796795536 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808687904506, + 2.800134103306287, + 3.143200050783419, + 3.510468107010462, + 3.8508963316091953, + 4.414438740817388, + 4.822188729027952, + 5.147920809779815, + 5.6617412665866, + 6.061172234912023, + 7.118222625355691, + 8.223977400646614, + 8.565926354152591, + 8.888368587760395, + 9.216982914172783, + 9.482070651932084, + 9.715283521502554, + 9.92114303118358, + 10.096861017270282, + 10.229732025255013, + 10.383086671728998, + 10.488908728979549, + 10.541255081907316, + 10.626567721596818 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323562310493, + 2.851913403363865, + 3.200096530994641, + 3.522392018642154, + 3.991314729739165, + 4.621427261157848, + 5.2418623011263055, + 6.243476466214302, + 6.940573200551681, + 7.479616008236281, + 8.295144787010088, + 8.900299636780371, + 10.376719238156289, + 11.74301450802422, + 12.132732242709551, + 12.486853442375677, + 12.835330841652922, + 13.10754000849982, + 13.341321271536831, + 13.543201038346496, + 13.71239405971962, + 13.838714322240936, + 13.982915022417407, + 14.08146763778019, + 14.129887734480553, + 14.208373458997382 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_9": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351656319927545, + 3.1870068219033163, + 3.519920275456365, + 4.014863864275213, + 4.578804079347618, + 5.446497302574992, + 6.5867638892224605, + 7.668210630295387, + 9.31948595678537, + 10.400751592603127, + 11.199460533416461, + 12.347208567557189, + 13.156859528019162, + 15.000946441179334, + 16.583279549015096, + 17.01857367752908, + 17.4089778114082, + 17.788893833730206, + 18.0829461087665, + 18.334181903923373, + 18.55012717027752, + 18.730511529439973, + 18.864972877443385, + 19.018358910344357, + 19.12307397596743, + 19.174464676721957, + 19.2577123592597 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833122094, + 2.7884193174162886, + 3.04497246334593, + 3.3872415704645307, + 3.6140745702022876, + 3.7952224531880465, + 4.086984505796733, + 4.320130426044472, + 4.9729318086172745, + 5.726847809033363, + 5.979358867048692, + 6.229217031584646, + 6.497391994910775, + 6.72617189207539, + 6.937966719710192, + 7.135171064256747, + 7.3126583934509215, + 7.4532752755923175, + 7.623914203819442, + 7.747637887561994, + 7.810998147346106, + 7.9178111669112 + ], + "5._384._0.0875": [ + 3.489223759869314, + 4.006639482911057, + 4.598343276007638, + 5.511446901966879, + 6.525963758174213, + 8.017847288010064, + 9.850905469534082, + 11.459298557513014, + 13.693400435541571, + 15.035278395984449, + 15.977598076151251, + 17.272541012503424, + 18.153014168043356, + 20.087039880660246, + 21.698451737439473, + 22.13661438713422, + 22.529104227366194, + 22.91042431111111, + 23.205490461365894, + 23.457425178969224, + 23.674073103378994, + 23.85517602846363, + 23.99017047005815, + 24.144303566541343, + 24.249479358635817, + 24.30105041601473, + 24.384501702015786 + ], + "5._48._0.075": [ + 1.526846324373141, + 1.8679037053125445, + 2.1622431316564743, + 2.5060808688610527, + 2.800134290171044, + 3.1432306967978354, + 3.510968279902779, + 3.8527654002068767, + 4.420548459229536, + 4.832854404892467, + 5.163173093427485, + 5.686094377701076, + 6.094284879986048, + 7.18264666289096, + 8.336585270179654, + 8.697625890919033, + 9.039982296550278, + 9.390985403061684, + 9.675748443344334, + 9.927540494293723, + 10.150785408708634, + 10.342080301255882, + 10.487197918838648, + 10.655135183964207, + 10.77134700075032, + 10.82895715943251, + 10.923049524254044 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235626058286, + 2.851913829614357, + 3.200144700434344, + 3.5228810369142374, + 3.9938798036542758, + 4.629352674794193, + 5.257913589969824, + 6.279213384934956, + 6.9952773092555445, + 7.552289038871843, + 8.401007319695614, + 9.035923080498607, + 10.603863876776305, + 12.079333118352304, + 12.504253880805331, + 12.891518221104416, + 13.273615481615817, + 13.572592520008799, + 13.829730304265892, + 14.051931208170306, + 14.238218102995257, + 14.377356608283858, + 14.536178758759824, + 14.64477430111061, + 14.698160519875215, + 14.784765590895411 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_10": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351991469769, + 3.1897534909045384, + 3.5462612127065505, + 4.165346312107027, + 5.002616329336359, + 6.470554507992012, + 8.571173310445168, + 10.65082372359197, + 13.905563753564394, + 16.071489070674993, + 17.684516279019636, + 20.014091404434257, + 21.66558600985996, + 25.423102269743364, + 28.633684825612843, + 29.514427826915952, + 30.30045824758507, + 31.0623256184991, + 31.648600086899247, + 32.148777787873556, + 32.5769929299841, + 32.93343246797113, + 33.198976834733706, + 33.50136861552825, + 33.70795368596633, + 33.80949652010646, + 33.974530352437924 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615422, + 1.4813847491413077, + 1.8198213217004353, + 2.1114679242247267, + 2.4511928336686477, + 2.7884270258106443, + 3.0454499053115835, + 3.3989047567863793, + 3.654887762132971, + 3.8782412065362943, + 4.274881577540001, + 4.621494849663018, + 5.696502493814167, + 7.055781734610631, + 7.527997342671619, + 8.000258200538303, + 8.511307146049397, + 8.94960365640068, + 9.356770526831879, + 9.736380136576985, + 10.07798774386081, + 10.348508748622342, + 10.675599750982503, + 10.912472275504095, + 11.034029278685303, + 11.239525434602365 + ], + "5._384._0.0875": [ + 3.5234313882275057, + 4.18621884622795, + 5.082828535054123, + 6.648539510592799, + 8.524672288795037, + 11.407014036342856, + 15.052051705930182, + 18.31371908314974, + 22.91322836951863, + 25.707205368568737, + 27.67810471640075, + 30.386095209426983, + 32.226928486167274, + 36.24259959767141, + 39.559600445103385, + 40.45769918609362, + 41.259258990121275, + 42.03557354772715, + 42.63380669065918, + 43.144213037543096, + 43.58202232326349, + 43.947207667040026, + 44.219398693423685, + 44.52993320177161, + 44.74199748090885, + 44.84610539171864, + 45.01497707169361 + ], + "5._48._0.075": [ + 1.5268463243731432, + 1.8679037053125407, + 2.1622431316564765, + 2.506080871459159, + 2.8001411676476406, + 3.1443713066571433, + 3.5313889767378863, + 3.940088503760774, + 4.7444982960048785, + 5.406355670159458, + 5.9696851789601215, + 6.903215173759388, + 7.656680527891103, + 9.722680603679587, + 11.955138820788742, + 12.659611735984495, + 13.327440806397332, + 14.012450060044808, + 14.567306504957273, + 15.057911845932214, + 15.491714460448948, + 15.862170885282818, + 16.14269238137118, + 16.46572995289578, + 16.688950295165203, + 16.79976400390867, + 16.9813285308534 + ], + "5._96._0.075": [ + 2.2092718103274116, + 2.5553235734741278, + 2.8519295197148, + 3.2019465798473306, + 3.5427882589935717, + 4.118194248576405, + 5.05407889856666, + 6.105211761938466, + 7.958297064223382, + 9.316513763584762, + 10.392361400931774, + 12.051416521178915, + 13.303983720198387, + 16.4144548178818, + 19.355442379883744, + 20.20550552660126, + 20.97775910486863, + 21.73795713551596, + 22.329783919789033, + 22.83792190039124, + 23.274953317284055, + 23.639637381018275, + 23.911551627956943, + 24.220802859709742, + 24.43222119458885, + 24.536319181072194, + 24.705808136247086 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351729237398393, + 3.187625001099388, + 3.526650044183149, + 4.058948328555595, + 4.695595826630846, + 5.645955947827803, + 6.75199902668803, + 7.654056125477437, + 8.8295373343034, + 9.505225082070822, + 9.970821690581543, + 10.604517453302051, + 11.032316935322866, + 11.972865896385606, + 12.759872798830232, + 12.974553793259052, + 13.167610267540615, + 13.355840260878113, + 13.502187407405124, + 13.627318928756589, + 13.735282746334141, + 13.825809741457272, + 13.893347166070974, + 13.970596790045226, + 14.023313509428306, + 14.049144330457892, + 14.090854715886588 + ], + "5._24._0.075": [ + 0.8740013793970963, + 1.1957934696806856, + 1.4813667488882372, + 1.8197853662506762, + 2.1114044341807157, + 2.4510705253864713, + 2.788187524831072, + 3.044696167323624, + 3.389301466509918, + 3.6238334445562486, + 3.8172234620513863, + 4.139359785435122, + 4.401879357678648, + 5.121352318381859, + 5.866280620300906, + 6.090065304640391, + 6.298807049848143, + 6.509232545774595, + 6.6778214753752865, + 6.825248855115401, + 6.955178640279667, + 7.066160722878991, + 7.150130631281159, + 7.247402603037865, + 7.314637831281445, + 7.347899492449007, + 7.402074061153792 + ], + "5._384._0.0875": [ + 3.498202657558257, + 4.059507710829742, + 4.728549908300283, + 5.718298478054254, + 6.695598384635395, + 7.918919559501185, + 9.175209287898596, + 10.134696989496492, + 11.3395882766406, + 12.019506670062515, + 12.48495026821673, + 13.115725677557018, + 13.540591400366639, + 14.474053667337763, + 15.255546352872228, + 15.468670821792806, + 15.660444883601343, + 15.847432011925115, + 15.992846228666961, + 16.117138946341278, + 16.22438283629357, + 16.31430880283502, + 16.381374505740233, + 16.45808138679694, + 16.51039562508549, + 16.536012812409567, + 16.577355525545745 + ], + "5._48._0.075": [ + 1.5268359332879173, + 1.8678839385147374, + 2.1622087383456443, + 2.506015111231376, + 2.800022215479672, + 3.143265912621415, + 3.5156496031342086, + 3.876810167448651, + 4.510598902563926, + 4.97292547403106, + 5.3314780742753, + 5.86690818888861, + 6.254410228495219, + 7.165237276197894, + 7.97067816717318, + 8.195759462193532, + 8.399726151723728, + 8.600223537255848, + 8.757233427901257, + 8.892268671966473, + 9.009391745097531, + 9.108052422862833, + 9.181950800737681, + 9.266735500969588, + 9.324840376214043, + 9.353415812152894, + 9.399728543565555 + ], + "5._96._0.075": [ + 2.209261920932471, + 2.555305553336681, + 2.8518866359196213, + 3.2004882339226746, + 3.5277476508021492, + 4.02978044724101, + 4.745286216946609, + 5.439130433328325, + 6.459200418166225, + 7.08807746324128, + 7.534287055485237, + 8.154677466719678, + 8.57963145524655, + 9.525731186489454, + 10.324498118789299, + 10.543323487480553, + 10.740258694731052, + 10.932543867544993, + 11.082214965494755, + 11.210350854440943, + 11.321010221886622, + 11.413873719757635, + 11.483221068226714, + 11.562584991721117, + 11.616811000251728, + 11.64341307682708, + 11.68642648116794 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835189313206151, + 3.1889552931299114, + 3.538903600312914, + 4.125245273292659, + 4.885340092341224, + 6.143016730599865, + 7.795423613565886, + 9.27950543596083, + 11.353436747367905, + 12.596840822504834, + 13.468067160431177, + 14.664470966131761, + 15.476574467940123, + 17.259801418963622, + 18.744684236603973, + 19.148663438954305, + 19.510655248879416, + 19.862646518364635, + 20.135320763803648, + 20.368260758547958, + 20.56874655291972, + 20.73647327867843, + 20.86155289126196, + 21.004430911305807, + 21.101968292861095, + 21.14980656381263, + 21.2272004431566 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615428, + 1.481384749141307, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833508249, + 2.7884247637014252, + 3.045310119636185, + 3.3955843569013524, + 3.6436674974056684, + 3.855925700780031, + 4.224811171067863, + 4.5397453647967625, + 5.475296090778514, + 6.570578898325478, + 6.92687615541592, + 7.270320655734392, + 7.627303621650882, + 7.920731222490932, + 8.182500131978642, + 8.41680285150039, + 8.619260142203307, + 8.773624250962664, + 8.953159155105311, + 9.077674641056438, + 9.139455677919402, + 9.240304416029538 + ], + "5._384._0.0875": [ + 3.513927363245156, + 4.138323236620862, + 4.946934659382122, + 6.276023786386213, + 7.745123433015339, + 9.775152078177463, + 12.027507501059624, + 13.821671148549264, + 16.122385823361906, + 17.4324968039469, + 18.331112481880304, + 19.547113368196523, + 20.364969660768274, + 22.15086918925759, + 23.635424304237905, + 24.039034587050264, + 24.401264702494476, + 24.753712834574596, + 25.027064089428094, + 25.260592821811322, + 25.461753936083383, + 25.63018173599274, + 25.755780013529776, + 25.899333215570362, + 25.997285001804187, + 26.04529040415504, + 26.122885369700576 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808706966746, + 2.800139149366015, + 3.1440381898974845, + 3.5256483410086874, + 3.916608969868303, + 4.6564326435683565, + 5.2408522575199115, + 5.722156280418049, + 6.488021692642983, + 7.078108817637764, + 8.576263856323838, + 10.010562551630642, + 10.425304910732308, + 10.804721194183715, + 11.180326309928033, + 11.475509468067585, + 11.729855694876939, + 11.950339156563452, + 12.135706243920572, + 12.274298805136475, + 12.43266659756452, + 12.540977602810342, + 12.594230671057593, + 12.680561756879944 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.5553235702845147, + 2.851924915529097, + 3.201421474439214, + 3.5371855730616306, + 4.085002516161643, + 4.9363362454780155, + 5.844581988979856, + 7.333675535782044, + 8.340589006658128, + 9.091921499272008, + 10.179343803963988, + 10.948160171270874, + 12.705528852454755, + 14.213545899477472, + 14.628526877105443, + 15.001108095533844, + 15.364261803956104, + 15.645980395169984, + 15.886802623855722, + 16.09410089941256, + 16.267481710205853, + 16.396752054083837, + 16.544255556142314, + 16.644951440401478, + 16.694366889837227, + 16.774367453977067 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351925911221576, + 3.1892213571751724, + 3.541355680931138, + 4.138584767756017, + 4.9241374783226926, + 6.249826317837372, + 8.042260934494504, + 9.703216610321878, + 12.09809062521322, + 13.56908007334359, + 14.612006032564038, + 16.055720129237326, + 17.041446513509268, + 19.21235807125101, + 21.021394579795135, + 21.51348253987512, + 21.953838825026494, + 22.381596137133617, + 22.71246057740695, + 22.995009669704974, + 23.237929131473347, + 23.440952165864083, + 23.592323435875723, + 23.765132002398985, + 23.883117319556238, + 23.9410075258365, + 24.034741663406493 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961543, + 1.4813847491413061, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833561717, + 2.788425517737825, + 3.045356714841056, + 3.3966911071229466, + 3.6474066614447547, + 3.8633595181679907, + 4.24146678775765, + 4.566884714356566, + 5.547880470514063, + 6.726814251230247, + 7.118959710629289, + 7.50128704873647, + 7.9035098800175545, + 8.238003360525568, + 8.5395714881233, + 8.812074243127194, + 9.049545264964225, + 9.231894169168777, + 9.445246167913844, + 9.59406803876897, + 9.66821594998837, + 9.789711570773129 + ], + "5._384._0.0875": [ + 3.517089669530491, + 4.154236578069029, + 4.991813562490588, + 6.397124777871605, + 7.993192537890449, + 10.273204407311878, + 12.894363852555866, + 15.03591773423202, + 17.826301894246654, + 19.428894473358316, + 20.531330089142955, + 22.024350568112386, + 23.028917741747733, + 25.218676239030803, + 27.034574164062334, + 27.527694270576607, + 27.969766769490864, + 28.399509205537253, + 28.732408761913508, + 29.016742293317094, + 29.261480255157917, + 29.466255352215995, + 29.61894760132361, + 29.793411897991778, + 29.91247707075819, + 29.970849669315502, + 30.06526432438584 + ], + "5._48._0.075": [ + 1.5268463243731425, + 1.8679037053125433, + 2.1622431316564765, + 2.5060808709508366, + 2.8001398221265577, + 3.1441492286179065, + 3.527561651194066, + 3.9244278621678506, + 4.685625175731641, + 5.295453920390567, + 5.803427043965115, + 6.6229181920128095, + 7.264275168426223, + 8.932368370759292, + 10.58456660789766, + 11.071975122419524, + 11.520931091653425, + 11.96807575491938, + 12.320962857674967, + 12.626044874588079, + 12.890997615805377, + 13.113976808931236, + 13.280824408999106, + 13.471430249883822, + 13.601864227263004, + 13.666054533956704, + 13.770242133670214 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.555323571347717, + 2.8519264502576633, + 3.20159650900156, + 3.539052908031279, + 4.096048940752249, + 4.975279344723372, + 5.929988032282506, + 7.533985925741476, + 8.64781926922027, + 9.494276092360495, + 10.740984617263898, + 11.637037095800018, + 13.720762587803135, + 15.536368860385512, + 16.03891768592228, + 16.490303967511636, + 16.930398915078918, + 17.271561697172185, + 17.563187144528, + 17.81397563275722, + 18.023509191350684, + 18.179684517471944, + 18.35771990199947, + 18.47926197550023, + 18.538934132395124, + 18.635627554320685 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835194776403702, + 3.189398734249572, + 3.5429906551271997, + 4.147493036610092, + 4.950165526407451, + 6.322325947945721, + 8.213140523575431, + 10.00404673135627, + 12.651839280952673, + 14.314270284959207, + 15.507089118840375, + 17.173211426297815, + 18.318916424353645, + 20.854215039208412, + 22.97220757935492, + 23.548640740966395, + 24.06392881596858, + 24.564066263714846, + 24.950393726779343, + 25.280205384945937, + 25.563473873179056, + 25.799997143659894, + 25.976312530096294, + 26.17748488544885, + 26.314852124828327, + 26.382277368678544, + 26.491536968616256 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615426, + 1.4813847491413068, + 1.8198213217004353, + 2.1114679242247276, + 2.4511928335973625, + 2.788426020428762, + 3.04538777832223, + 3.39742896823682, + 3.6498999508935053, + 3.8683179986236484, + 4.252589697250231, + 4.585038912230555, + 5.596902232638405, + 6.833949903612745, + 7.251586682059921, + 7.662168207694794, + 8.098052429433398, + 8.46398881849528, + 8.796861276508569, + 9.100273090291651, + 9.366884545269267, + 9.573131053829176, + 9.816132842538343, + 9.986844739411623, + 10.072338303554865, + 10.213112455870055 + ], + "5._384._0.0875": [ + 3.519201037735992, + 4.1648742333474305, + 5.021964575889329, + 6.479529112750988, + 8.164916022435744, + 10.630335740400797, + 13.54754130003539, + 15.988556742531603, + 19.224440531444987, + 21.10214682620412, + 22.39892239656571, + 24.158089937150905, + 25.342956130398463, + 27.92303179392658, + 30.058740712492458, + 30.63815212060242, + 31.15705060709677, + 31.66104776330363, + 32.0510235263629, + 32.384028781889945, + 32.67044998779967, + 32.90994501000154, + 33.088512792653496, + 33.29247820507928, + 33.431698508036504, + 33.49997326323534, + 33.61047259070623 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125467, + 2.1622431316564783, + 2.506080871120279, + 2.800140270633584, + 3.1442232545423314, + 3.528837321897716, + 3.929644688159898, + 4.705176992300043, + 5.3321680348045115, + 5.858291153692439, + 6.714771973749863, + 7.392082765391023, + 9.184216030899579, + 11.007835289852359, + 11.555817753283268, + 12.064102628815379, + 12.573710137268211, + 12.977960802632031, + 13.328917619045004, + 13.634567638782286, + 13.892292968473821, + 14.085424182697414, + 14.30615918712256, + 14.457372546436877, + 14.531880291070685, + 14.652988007211588 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235720565195, + 2.851927473410041, + 3.2017131990285077, + 3.5402979241200945, + 4.103422930866219, + 5.001409883129368, + 5.987732431051312, + 7.671784593185418, + 8.862593624388174, + 9.779801614056705, + 11.149820778158503, + 12.14859515300512, + 14.510485397336991, + 16.604474674321583, + 17.188433137775124, + 17.7136216535764, + 18.22617257113618, + 18.623459282003946, + 18.96315582480573, + 19.25510392043533, + 19.49883596128978, + 19.68046561589149, + 19.887355846574007, + 20.028612014935717, + 20.097996583186443, + 20.210531112544956 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351963373211526, + 3.189525432671323, + 3.5441586181564264, + 4.153863578420259, + 4.968837350679872, + 6.374765189955052, + 8.338435532940242, + 10.227924235923822, + 13.07667744467613, + 14.899216964004614, + 16.22157557832085, + 18.085611206462346, + 19.3773839575985, + 22.253326929252243, + 24.665607531774025, + 25.32290199772217, + 25.910008879139216, + 26.4794990185844, + 26.91887561651495, + 27.293881055164704, + 27.61566790717984, + 27.88411833618692, + 28.08419851671805, + 28.312364693175297, + 28.46818244123285, + 28.544691410541315, + 28.668765753189405 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.195803175961542, + 1.4813847491413066, + 1.8198213217004344, + 2.1114679242247285, + 2.451192833622822, + 2.7884263794937194, + 3.045409966528578, + 3.397956025424473, + 3.651681123419255, + 3.871861045175125, + 4.260544029058912, + 4.598036282181444, + 5.632233733917122, + 6.911990032935292, + 7.348562914574632, + 7.78038615503268, + 8.241930786777354, + 8.632288563414834, + 8.98993245080486, + 9.31834432206036, + 9.60908718406086, + 9.835583579650885, + 10.10436619003651, + 10.294663417617404, + 10.390522851782857, + 10.549284342416126 + ], + "5._384._0.0875": [ + 3.5207107105767967, + 4.172486685832283, + 5.04361535233427, + 6.539238771629346, + 8.290823424995548, + 10.897851125859063, + 14.053556094702584, + 16.750421010307743, + 20.387366959629162, + 22.52182567501487, + 24.0028806054672, + 26.016906929358765, + 27.37561986803111, + 30.333082187151593, + 32.77808502329351, + 33.4408977970093, + 34.033921738549736, + 34.609458476118434, + 35.05430372502859, + 35.43407705021292, + 35.76049119191312, + 36.03325310775754, + 36.236608202722216, + 36.46881511674917, + 36.62733410445668, + 36.705095253830414, + 36.831022119800515 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125458, + 2.1622431316564765, + 2.5060808712413083, + 2.800140590995746, + 3.1442761302569138, + 3.5297485792209886, + 3.9333730661275474, + 4.719186917317336, + 5.358546917521309, + 5.897818294295266, + 6.781339816883465, + 7.485187602696929, + 9.37107376118838, + 11.330559442278814, + 11.928785231530378, + 12.48730495904651, + 13.05095909356793, + 13.500543415541326, + 13.892672496932104, + 14.235364076732068, + 14.52508549238362, + 14.742640279650308, + 14.991570236901701, + 15.16236207344109, + 15.246643307399514, + 15.383865538978908 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.555323572562807, + 2.851928204233168, + 3.2017965492038645, + 3.541187283099064, + 4.108694827048994, + 5.020157591633424, + 6.0293823589962185, + 7.772395988356641, + 9.020893246502068, + 9.992125954630469, + 11.458833301601528, + 12.540663840621466, + 15.137968789154458, + 17.481764918967876, + 18.140996507450293, + 18.73505764069588, + 19.315730519637945, + 19.76601839452198, + 20.151266342940364, + 20.482270484553275, + 20.758468346547456, + 20.96427808400023, + 21.19856448999212, + 21.358556705411893, + 21.437185909378837, + 21.56483305389653 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351975080103657, + 3.1896204567673427, + 3.5450346584205175, + 4.158645586977014, + 4.982885349041962, + 6.414457224860929, + 8.434260555603638, + 10.4009213179499, + 13.41176726606915, + 15.368452215986, + 16.802330909530166, + 18.841384554308217, + 20.26561355395392, + 23.458439082609456, + 26.150709208225802, + 26.885581925639688, + 27.54163574143345, + 28.17772807252831, + 28.66798691944528, + 29.086338063810278, + 29.445016368135864, + 29.74400096673775, + 29.96680277464305, + 30.22075259479998, + 30.394198976970667, + 30.47939383405256, + 30.617657151921577 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004342, + 2.111467924224728, + 2.4511928336419166, + 2.7884266487924356, + 3.0454266076863563, + 3.398351325717276, + 3.6530171403547804, + 3.8745190273400456, + 4.266514920247846, + 4.607800786511952, + 5.658906817890103, + 6.97137719342753, + 7.422553385002921, + 7.870877175482006, + 8.352526094457385, + 8.762239856677033, + 9.139756733004683, + 9.488541614977851, + 9.799310885445944, + 10.04293370014671, + 10.33403068586692, + 10.54175862779562, + 10.64704793916489, + 10.822560261357017 + ], + "5._384._0.0875": [ + 3.521843815484846, + 4.178203766401465, + 5.059916289769679, + 6.584493394590957, + 8.387110607219094, + 11.105528291689232, + 14.455516162254296, + 17.37051570657643, + 21.36607785316105, + 23.73859073927171, + 25.39348869281476, + 27.65073505691816, + 29.176769303984504, + 32.49910864788708, + 35.24368633771473, + 35.98727554907545, + 36.65198172234362, + 37.296608957568495, + 37.7943357856378, + 38.219163059929286, + 38.58404830143178, + 38.88876891818065, + 39.115931429479964, + 39.37524549113963, + 39.55229168840916, + 39.639164660112286, + 39.779927116162895 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808713320784, + 2.80014083126737, + 3.1443157870725327, + 3.530432057195756, + 3.93617048414868, + 4.729718687744946, + 5.378416024939635, + 5.927650167082058, + 6.831797854977626, + 7.556026218629943, + 9.515121535061022, + 11.583871445050967, + 12.223865385593657, + 12.824870765046922, + 13.435095381146187, + 13.924486882948283, + 14.353363915378884, + 14.729608312946509, + 15.048691240780647, + 15.288897090394657, + 15.564212942873112, + 15.753484460131938, + 15.847049602754923, + 15.999675657394397 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.555323572942525, + 2.8519287523505126, + 3.201859061920749, + 3.5418543361171233, + 4.112651354784914, + 5.034263989539381, + 6.060842911721544, + 7.849093185252161, + 9.14236624190215, + 10.156017221383621, + 11.699967632878995, + 12.8495813191719, + 15.646072480134803, + 18.212739171423223, + 18.941239075007537, + 19.599334474182076, + 20.243910047272013, + 20.744216038223744, + 21.172648244032946, + 21.540772175137285, + 21.84787026063639, + 22.076721059740787, + 22.337114812401982, + 22.51498546269777, + 22.602451514080382, + 22.74457961479501 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_9": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835198418547093, + 3.1896943645633273, + 3.545716063364626, + 4.162367359950148, + 4.993837801795569, + 6.445545831743682, + 8.509920678607969, + 10.538617685064448, + 13.682447511574487, + 15.752224503905364, + 17.282177876097418, + 19.47559514513419, + 21.01939914915772, + 24.505794584289276, + 27.46406311323045, + 28.273380035511796, + 28.995693679826125, + 29.695854532997593, + 30.235026179564322, + 30.695052984414993, + 31.089161790852845, + 31.417435244433054, + 31.662027415434142, + 31.940682448256794, + 32.13102606331549, + 32.22455320303138, + 32.3764500545759 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615422, + 1.4813847491413075, + 1.8198213217004355, + 2.1114679242247285, + 2.4511928336567665, + 2.788426858246996, + 3.0454395508108583, + 3.3986587858870467, + 3.6540563461469944, + 3.8765867600299537, + 4.271161995637254, + 4.615405175484388, + 5.679756664442103, + 7.018085006853974, + 7.48086287452734, + 7.942362725697819, + 8.440161375337219, + 8.865539150725466, + 9.25926528960598, + 9.624846063864272, + 9.952346659195861, + 10.210490003647902, + 10.520878090072602, + 10.744064497108202, + 10.857899584318131, + 11.048973887632274 + ], + "5._384._0.0875": [ + 3.522725623674997, + 4.1826549787548455, + 5.072632188592192, + 6.619974580091965, + 8.463131086967564, + 11.271425810809793, + 14.781921603063866, + 17.883370250368863, + 22.198461731165903, + 24.790578981186382, + 26.608735188663495, + 29.09733118292373, + 30.78408865582497, + 34.45909150998949, + 37.49416295960211, + 38.31612082778855, + 39.0502792708857, + 39.76176991589837, + 40.31057401883343, + 40.77890042412573, + 41.18087695465329, + 41.516370466928876, + 41.766452127657075, + 42.051845066198084, + 42.24671906842188, + 42.342364272199916, + 42.49742578082318 + ], + "5._48._0.075": [ + 1.52684632437314, + 1.8679037053125456, + 2.1622431316564765, + 2.506080871402683, + 2.800141018145298, + 3.144346631280049, + 3.5309636719073954, + 3.9383469262623554, + 4.737924514571376, + 5.3939203096996176, + 5.950963882047983, + 6.87136170113179, + 7.611730315035198, + 9.629562641841172, + 11.787686421025292, + 12.462636985661309, + 13.099692223816705, + 13.750038685728187, + 14.274313235840253, + 14.735879222325778, + 15.142407828124924, + 15.488351037826146, + 15.749517321062976, + 16.049507592930876, + 16.25623567729539, + 16.358634985170532, + 16.526024259848008 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235732378576, + 2.8519291786640055, + 3.2019076829733635, + 3.542373175152058, + 4.1157301991876505, + 5.0452627549044005, + 6.085445400890604, + 7.909495952865928, + 9.238517507415333, + 10.286309160851365, + 11.89318186739695, + 13.098818792766913, + 16.064542838393542, + 18.829420127710723, + 19.621422679970937, + 20.338851908077856, + 21.043225025641945, + 21.59067698646771, + 22.060041420722968, + 22.463475028896674, + 22.800035447222456, + 23.050893457286666, + 23.336239786241798, + 23.53122685607122, + 23.62716968819104, + 23.783224284174963 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352002410885504, + 3.189847920478392, + 3.5473525792099516, + 4.173513343591349, + 5.031103387411992, + 6.549814266069877, + 8.69442879239438, + 10.721324554732862, + 13.65066964685244, + 15.44052750504318, + 16.70336338021932, + 18.442387607021207, + 19.624242629285188, + 22.21124949222853, + 24.354935950516587, + 24.93652914059481, + 25.45632976083144, + 25.960761123219662, + 26.35050366363597, + 26.683238448122456, + 26.969127500138683, + 27.207942691806487, + 27.384862363531592, + 27.58807304902318, + 27.726771272570428, + 27.794843355039397, + 27.90509303114989 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615426, + 1.4813847491413068, + 1.8198213217004353, + 2.1114679242247276, + 2.451192833686473, + 2.7884272772560266, + 3.0454656800625717, + 3.3993485393835376, + 3.6567087082817475, + 3.8824142106708246, + 4.285999244949475, + 4.64140506131016, + 5.752918587514246, + 7.150877891153093, + 7.625157114941832, + 8.089389542953798, + 8.578662964181403, + 8.985091297075328, + 9.350608889757698, + 9.679499813117744, + 9.964576379686473, + 10.182272185752982, + 10.435156613231342, + 10.610355923351054, + 10.697293161936095, + 10.839197931839957 + ], + "5._384._0.0875": [ + 3.524813013470324, + 4.196082597982126, + 5.115976700938693, + 6.735607643646009, + 8.64884312392933, + 11.433330763113077, + 14.640392275429818, + 17.244403752490573, + 20.612198870306447, + 22.53576380936692, + 23.85529131495063, + 25.637609078985058, + 26.834547309355262, + 29.43671810893321, + 31.589403095738646, + 32.17341065027805, + 32.69669213307692, + 33.205149395583696, + 33.59881448123163, + 33.93502709709848, + 34.22433851221049, + 34.46635467357401, + 34.64682518692814, + 34.85302282193397, + 34.99376891856543, + 35.06278474363444, + 35.174454122124004 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125467, + 2.1622431316564783, + 2.506080871543884, + 2.800141391980189, + 3.144409505548065, + 3.532211674254694, + 3.9444357938732804, + 4.765296944453598, + 5.448739751006118, + 6.033258183172322, + 6.998288087184899, + 7.7674948917547475, + 9.79428865808197, + 11.802490368795349, + 12.390872724774988, + 12.930279814376554, + 13.464929069909926, + 13.884729934838585, + 14.246253191878566, + 14.55894010657095, + 14.821120177884682, + 15.016811451464584, + 15.23971426470978, + 15.391971646535712, + 15.466843972899632, + 15.588341534532205 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235738285265, + 2.851930031668963, + 3.202007625224777, + 3.543586030366084, + 4.124736958241059, + 5.082713019435455, + 6.171003447660342, + 8.075248025750884, + 9.427832536161716, + 10.462184889371523, + 11.986453113820447, + 13.078953428323361, + 15.599578889002377, + 17.769616806353657, + 18.366645113318807, + 18.901131312514813, + 19.42097004808437, + 19.82294703284428, + 20.166134149668775, + 20.460792123371245, + 20.706648075957443, + 20.889798157998282, + 21.09842186937948, + 21.240818571675668, + 21.31073706027092, + 21.424089701005023 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352035193230685, + 3.190115138800661, + 3.5498609390674054, + 4.187688439336998, + 5.074041478141767, + 6.674851559973054, + 9.000044409053602, + 11.265363589488713, + 14.640705302321196, + 16.753121867319063, + 18.261395800878635, + 20.355240076506362, + 21.78665838351262, + 24.92844738952389, + 27.5317040745881, + 28.23775895426794, + 28.8677789647084, + 29.478403256846654, + 29.94933188617236, + 30.351197015774652, + 30.69604102364139, + 30.983769286271553, + 31.19824205188385, + 31.44289297464086, + 31.609982581668845, + 31.692023877482363, + 31.825060805735905 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004355, + 2.111467924224727, + 2.451192833739939, + 2.7884280313124297, + 3.045512323934649, + 3.400470421944272, + 3.660565779681686, + 3.8902025074456943, + 4.303887086797668, + 4.671126564722622, + 5.836664507123772, + 7.340846191318556, + 7.862325920906742, + 8.378434762821415, + 8.928717654497387, + 9.390964497926422, + 9.810888100082494, + 10.192152505169856, + 10.525265720066491, + 10.781314206342634, + 11.080292619880323, + 11.288426782296373, + 11.392078377270282, + 11.561816421662916 + ], + "5._384._0.0875": [ + 3.5280599856953785, + 4.213080973607932, + 5.165964107748593, + 6.878390066508662, + 8.955789180466084, + 12.078589755638017, + 15.802405759794022, + 18.903720339012498, + 22.98036958608921, + 25.329307120729734, + 26.94539178766916, + 29.12973200874632, + 30.597052358018693, + 33.78032438092293, + 36.406449930074466, + 37.1179215124281, + 37.75463540337469, + 38.3726714132892, + 38.85052568468331, + 39.25853134546095, + 39.6093215162144, + 39.9025466523854, + 40.12118910579749, + 40.37091898315502, + 40.54141449038774, + 40.62504903311347, + 40.76047255508587 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125451, + 2.162243131656477, + 2.506080871798045, + 2.800142064756538, + 3.144520782096798, + 3.534162728595581, + 3.952628090970952, + 4.797262842492293, + 5.5104147945451665, + 6.127267242589088, + 7.159631758201581, + 7.995211026076231, + 10.248998514382093, + 12.556617414498104, + 13.24599147390895, + 13.882164392659803, + 14.51636929107626, + 15.016212753998312, + 15.447931515019524, + 15.82181908321612, + 16.135455325602557, + 16.369632358543218, + 16.636147059457226, + 16.81822829471624, + 16.907840987543533, + 17.0534457869186 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.55532357489173, + 2.851931566473131, + 3.202183201710241, + 3.54548916192579, + 4.136413501500515, + 5.125849398712307, + 6.269765395047149, + 8.32027253206208, + 9.8149750604999, + 10.97845798628486, + 12.722398994312112, + 13.992652563395433, + 16.97356671612827, + 19.578683271043086, + 20.29937994043897, + 20.944626862714102, + 21.572169037324258, + 22.05685533073115, + 22.47052748366812, + 22.8252259401652, + 23.120766658247714, + 23.34082659747316, + 23.591209104025143, + 23.762105877575106, + 23.846059645802825, + 23.982316413754653 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835205704816959, + 3.190293285399311, + 3.5515334397035314, + 4.19715513589494, + 5.102856999602241, + 6.759849032154584, + 9.212342591476311, + 11.65329422908895, + 15.379832421395756, + 17.762546930011908, + 19.484068428300247, + 21.895402312117103, + 23.55565494352747, + 27.21634362064644, + 30.255883688788987, + 31.080452306813484, + 31.815263715778293, + 32.52671775525227, + 33.07450510088772, + 33.54177168256636, + 33.942257965367105, + 34.27604754317096, + 34.52480137724168, + 34.80838532926366, + 35.0020923195893, + 35.097242840611095, + 35.25168166225623 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615422, + 1.4813847491413075, + 1.8198213217004355, + 2.1114679242247285, + 2.451192833775585, + 2.7884285340166994, + 3.0455434198606337, + 3.4012183716952746, + 3.6631376890722773, + 3.895397436319461, + 4.3158332530702035, + 4.691010151229295, + 5.89328012010944, + 7.4714612866346615, + 8.026604691859681, + 8.580512360129228, + 9.1762579817188, + 9.681254889734719, + 10.143911497686958, + 10.567432226228624, + 10.940357945620761, + 11.228984748685384, + 11.568123077498209, + 11.805700190015722, + 11.924564375597381, + 12.120071229868115 + ], + "5._384._0.0875": [ + 3.53022795930162, + 4.2244448279434845, + 5.199561646858205, + 6.975714944684915, + 9.168995707213172, + 12.543370473894523, + 16.681275678101866, + 20.2094096446599, + 24.92799701261454, + 27.6755069399848, + 29.573397725890672, + 32.14270118970849, + 33.87025443341328, + 37.613002937038466, + 40.694046012280246, + 41.527794262549854, + 42.27309038330444, + 42.995821292705266, + 43.5538972802211, + 44.03027369131587, + 44.439507992169546, + 44.78133754053311, + 45.036202338067945, + 45.3272113694606, + 45.52592424418663, + 45.62343329258464, + 45.78143339885348 + ], + "5._48._0.075": [ + 1.52684632437314, + 1.8679037053125456, + 2.1622431316564765, + 2.506080871967489, + 2.8001425132741034, + 3.144594966573821, + 3.535463565273232, + 3.9580941285098836, + 4.818676511301623, + 5.551905165101823, + 6.190784885090294, + 7.269689573977297, + 8.15195325978915, + 10.57190391575667, + 13.114786056846384, + 13.88801224236919, + 14.606358313810917, + 15.327027223147484, + 15.897704379180679, + 16.392499684667463, + 16.82202224253226, + 17.18284914035004, + 17.452544174931923, + 17.75946151517089, + 17.96928823640093, + 18.072670614473463, + 18.240900765698264 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235756005317, + 2.8519325896759065, + 3.2023002530207605, + 3.546758045225016, + 4.144208344536223, + 5.154803547420688, + 6.336612534881606, + 8.489323728253032, + 10.086688355252646, + 11.346424983670472, + 13.260460519421951, + 14.673903856811481, + 18.045400892386333, + 21.042239152299054, + 21.87731014069735, + 22.62574246274712, + 23.35415088489598, + 23.916447514396122, + 24.396374340196605, + 24.807482872044265, + 25.149651158090396, + 25.404341483409727, + 25.693844446082803, + 25.89145399417834, + 25.988581225612954, + 26.146391301460568 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352057050613384, + 3.190294242055475, + 3.551579047869279, + 4.197770654769028, + 5.1054120007203085, + 6.7678989750914, + 9.223529620147279, + 11.643191719638494, + 15.264731051826653, + 17.53099848045213, + 19.146834311027266, + 21.385549244341814, + 22.91296317062012, + 26.25623404457498, + 29.018865847773657, + 29.76728194372418, + 30.43471243912256, + 31.081298204444867, + 31.579710618632273, + 32.00497113457921, + 32.36978762980547, + 32.674111151169065, + 32.9009496756597, + 33.15968804910977, + 33.33640963015014, + 33.42318886201574, + 33.56393896764539 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004342, + 2.111467924224728, + 2.4511928337755844, + 2.7884285340333554, + 3.045543460360317, + 3.4012308424856124, + 3.6632333298732687, + 3.895679416225261, + 4.31675891175422, + 4.692833948174316, + 5.899118182564597, + 7.48182609108996, + 8.036130969316716, + 8.586360956960199, + 9.174427810982532, + 9.668875717075965, + 10.118139436466775, + 10.525684289909554, + 10.881172619214876, + 11.153862223043946, + 11.471314013282175, + 11.691614772754814, + 11.801113409711034, + 11.980093093119201 + ], + "5._384._0.0875": [ + 3.5302822737344224, + 4.225196089371995, + 5.202543479706359, + 6.9845076031642765, + 9.180197396034956, + 12.517560061523431, + 16.51590495451879, + 19.843103403321294, + 24.204871060071238, + 26.712008336560274, + 28.43468369345217, + 30.76023182086211, + 32.321016474020226, + 35.70296883297569, + 38.4899869029692, + 39.24471154047153, + 39.91998782836852, + 40.575325478060925, + 41.081902738143405, + 41.51441975468773, + 41.886238751676515, + 42.19701198353821, + 42.42874356296075, + 42.693420979465074, + 42.87413361981612, + 42.96278712311065, + 43.10635847412245 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808719674896, + 2.8001425132872746, + 3.1445951642087775, + 3.5354943555535385, + 3.958383257412994, + 4.82049654334741, + 5.55608555439892, + 6.197585289305629, + 7.280477073704636, + 8.164075596561373, + 10.566510726760388, + 13.03739726929072, + 13.774655267379785, + 14.454030782462283, + 15.130054743922495, + 15.661707506033217, + 16.12007990765267, + 16.516291073142064, + 16.84806774892725, + 17.095482272655033, + 17.376664199368363, + 17.56859366785283, + 17.66301600159165, + 17.816417053290447 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.555323575600532, + 2.8519325897389014, + 3.2023007030249224, + 3.546787236114989, + 4.144682387847334, + 5.157372873719228, + 6.343302644340462, + 8.50140385797139, + 10.092625153883795, + 11.33723466762142, + 13.206986255752291, + 14.569711913815667, + 17.761408408023094, + 20.53774599629982, + 21.30372051619266, + 21.98844832655775, + 22.653610907399276, + 23.166744166689213, + 23.604428796379032, + 23.97942908490322, + 24.291686885464387, + 24.524133862685446, + 24.78851590779729, + 24.96894880690779, + 25.05758985180375, + 25.2014847208316 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351838500296616, + 3.1885118572313673, + 3.534817814223326, + 4.1030737424674095, + 4.821317420742483, + 5.969919191578708, + 7.41028413925126, + 8.648650678142598, + 10.318019242462421, + 11.295421939311396, + 11.97337743517005, + 12.898811056559623, + 13.524508345420257, + 14.897437624552998, + 16.042123430945267, + 16.35383097791215, + 16.633592896224254, + 16.90595883307184, + 17.117309952985618, + 17.297937101829362, + 17.45358097851654, + 17.58393310527604, + 17.6811611636915, + 17.79229429280022, + 17.868148885395772, + 17.905336255686425, + 17.965445068310917 + ], + "5._24._0.075": [ + 0.8740059532267962, + 1.1958031759615424, + 1.4813847491413075, + 1.8198213217004349, + 2.111467924224728, + 2.4511928334191357, + 2.788423506974107, + 3.0452324610064143, + 3.3937398837242934, + 3.637437610795647, + 3.843546410724326, + 4.197128320327028, + 4.494757418969375, + 5.356757547871304, + 6.322806150411278, + 6.626738081951607, + 6.915404542282874, + 7.21101958981349, + 7.450860982652266, + 7.66246734371669, + 7.850165882224263, + 8.011164200847652, + 8.133224321258036, + 8.274627098240014, + 8.37233003387617, + 8.420668855356707, + 8.49937572606141 + ], + "5._384._0.0875": [ + 3.508669460749622, + 4.111915670923915, + 4.873040032123389, + 6.080558225789574, + 7.357967553781383, + 9.04485058828995, + 10.84277364416776, + 12.241098615273712, + 14.011222366677718, + 15.01309719121016, + 15.699134890832847, + 16.62764066517033, + 17.252332732919882, + 18.619928993318393, + 19.76028670279949, + 20.070751033016197, + 20.34972432420409, + 20.621432400545174, + 20.832432856467467, + 21.012738747514504, + 21.168177723656544, + 21.298415605446706, + 21.395540979639048, + 21.50658808640696, + 21.58234324516048, + 21.619456039757466, + 21.679401052203215 + ], + "5._48._0.075": [ + 1.5268463243731434, + 1.8679037053125456, + 2.162243131656478, + 2.5060808702730704, + 2.8001380280984436, + 3.1438531258067117, + 3.5224600129449035, + 3.9035943923639613, + 4.608135080323152, + 5.1510836559379705, + 5.589462884077594, + 6.27130271990618, + 6.783963554912862, + 8.04316830464235, + 9.202414931053042, + 9.53127928011967, + 9.83044491677738, + 10.125260643940114, + 10.356342764412293, + 10.555043007864295, + 10.727181907122153, + 10.87191268601469, + 10.980113122105404, + 11.103877010708246, + 11.188516611811483, + 11.230104665601413, + 11.297459077760191 + ], + "5._96._0.075": [ + 2.2092619209324718, + 2.555305556880593, + 2.8518917514576345, + 3.201071628572207, + 3.5339683812307245, + 4.066374782143852, + 4.871306856588727, + 5.703345918840731, + 7.011014828442001, + 7.859290682278471, + 8.476335068125367, + 9.349652040268383, + 9.955723894960455, + 11.316721448596432, + 12.4702954875727, + 12.786558094229333, + 13.070633086294775, + 13.347621860741711, + 13.562753164373564, + 13.746815702553597, + 13.905500700816589, + 14.038445223288367, + 14.137675478115584, + 14.251099311683415, + 14.328597138129837, + 14.366636071121864, + 14.428211518355958 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835194777381192, + 3.1894025608097913, + 3.5431730221711955, + 4.14995457114244, + 4.9602850236753655, + 6.347578461069761, + 8.219303063204094, + 9.914516638470111, + 12.278861307216795, + 13.689375428116989, + 14.674344858546927, + 16.022611202493785, + 16.935365383865182, + 18.932857449180446, + 20.590866358188737, + 21.041366524348163, + 21.444770448561922, + 21.836821848945775, + 22.14035060837515, + 22.399611200201736, + 22.622676684137772, + 22.809243153220393, + 22.948370714060438, + 23.107281147415655, + 23.21577422790068, + 23.26899392646864, + 23.35511895816213 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.4511928335973607, + 2.7884260204953697, + 3.04538794032085, + 3.397478847285279, + 3.65028236953504, + 3.8694446367968838, + 4.256269763172383, + 4.592145183247248, + 5.616342141065902, + 6.8505258017449835, + 7.255864594819363, + 7.646968809849212, + 8.053276846734915, + 8.386585501883108, + 8.683166345880695, + 8.947757383742928, + 9.175550285120444, + 9.348629321286626, + 9.549090750604586, + 9.687603583920982, + 9.75618204850785, + 9.867903170019959 + ], + "5._384._0.0875": [ + 3.519414642750923, + 4.167877970390456, + 5.033726376163877, + 6.505666850113914, + 8.171517377809307, + 10.490884518790367, + 13.057641798784514, + 15.091596800768148, + 17.68751684607798, + 19.161074457078783, + 20.170244304416116, + 21.533887452770426, + 22.450098703200283, + 24.44785294350101, + 26.106290008466924, + 26.556935572090406, + 26.961259778317036, + 27.354567382479086, + 27.659517769608016, + 27.920033833407945, + 28.144407005050972, + 28.332246401451023, + 28.47232450648087, + 28.632424722805496, + 28.741678395827968, + 28.795229262854185, + 28.881805767853283 + ], + "5._48._0.075": [ + 1.526846324373141, + 1.8679037053125445, + 2.1622431316564743, + 2.5060808711202784, + 2.8001402706862746, + 3.144224045078283, + 3.5289604520774644, + 3.9307999739317094, + 4.712428254185614, + 5.347418921621241, + 5.879965415980396, + 6.739706948129181, + 7.408865386614326, + 9.11626514200392, + 10.744546670597042, + 11.212791446300308, + 11.639773033803978, + 12.061220509658641, + 12.391458830061971, + 12.675406212948246, + 12.921007864313719, + 13.127088899769337, + 13.280972380875744, + 13.456545976421273, + 13.576513141553155, + 13.63547462786866, + 13.731049929860575 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323572056519, + 2.851927473662024, + 3.2017149990298575, + 3.5404146600729027, + 4.105317906966819, + 5.011588848511913, + 6.010214756195945, + 7.689683107068938, + 8.83802759134417, + 9.696161835980128, + 10.936159020578424, + 11.810006714617264, + 13.795953525503256, + 15.487658517857962, + 15.951619872839778, + 16.36743918194945, + 16.772210126218116, + 17.08580136939843, + 17.353701914617353, + 17.584116928288115, + 17.77669672785507, + 17.92024261930604, + 18.08396769607562, + 18.195727750777714, + 18.25057695718145, + 18.33939900223481 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352089834551246, + 3.1905620375303294, + 3.5541155630814143, + 4.212366550930244, + 5.15047814406547, + 6.902871843758689, + 9.564513771873905, + 12.266296781738957, + 16.432694787061884, + 19.10240290594075, + 21.02871255029554, + 23.71920535187863, + 25.565709407027192, + 29.61725703981457, + 32.964188487014965, + 33.87013355528035, + 34.676553587978695, + 35.45664494444173, + 36.05669385665616, + 36.5684003114769, + 37.006732485832885, + 37.37190294616794, + 37.64403020332212, + 37.95421715632263, + 38.16611622258322, + 38.27022080724798, + 38.43925987136973 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615422, + 1.4813847491413077, + 1.8198213217004353, + 2.1114679242247267, + 2.4511928338290536, + 2.788429288099758, + 3.045590128566022, + 3.4023602921425917, + 3.6671493891795928, + 3.9036452487826288, + 4.335267048257785, + 4.7238667888472845, + 5.988828129009444, + 7.691476783111234, + 8.30056976292707, + 8.911790503155604, + 9.572413103798613, + 10.133915427880254, + 10.649072931963232, + 11.120439346334004, + 11.534706208075443, + 11.85442068431646, + 12.228298348869451, + 12.48878711498404, + 12.618654746153297, + 12.83150959363346 + ], + "5._384._0.0875": [ + 3.5335719772357534, + 4.24274330748113, + 5.255172065366526, + 7.139241180076386, + 9.522530514477932, + 13.261720368104003, + 17.896552088599943, + 21.85208563675306, + 27.123351982778942, + 30.18046047540108, + 32.28729804723092, + 35.132970697287575, + 37.04313155935796, + 41.172031063620665, + 44.5639854287393, + 45.4810776979844, + 46.30054458736149, + 47.094899784321136, + 47.70800890408918, + 48.23132892108421, + 48.680784746995094, + 49.056141185640584, + 49.33601167651269, + 49.655565860331066, + 49.87379582749348, + 49.980896995355636, + 50.15448605455635 + ], + "5._48._0.075": [ + 1.5268463243731432, + 1.8679037053125407, + 2.1622431316564765, + 2.5060808722216517, + 2.8001431860715305, + 3.144706559672528, + 3.5374642892328367, + 3.966762877330371, + 4.8538772214145105, + 5.621452645062008, + 6.298425543328302, + 7.4567656654115835, + 8.416317198568095, + 11.085640177313419, + 13.920099971496448, + 14.781976315269302, + 15.581289769997717, + 16.38106072731364, + 17.01216034706201, + 17.557674585374972, + 18.02960217636503, + 18.42475977521135, + 18.719405342894085, + 19.05379996134803, + 19.28200397573608, + 19.394351723211262, + 19.577123887082962 + ], + "5._96._0.075": [ + 2.2092718103274094, + 2.5553235766637368, + 2.851934124580871, + 3.2024765504753168, + 3.5487082723421532, + 4.156675708712891, + 5.202665948278876, + 6.449215563353447, + 8.772685597331476, + 10.52999756347063, + 11.928525829270317, + 14.064647460451033, + 15.64628460332434, + 19.41325548986843, + 22.738703725682267, + 23.660981520446935, + 24.485271804283713, + 25.285748092487932, + 25.902272969545734, + 26.427846943292803, + 26.877382961272005, + 27.251068866867534, + 27.529072150446442, + 27.844853717677722, + 28.060351048648688, + 28.16627390291646, + 28.338442870475888 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } +} \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json new file mode 100644 index 0000000000..609a3002a0 --- /dev/null +++ b/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json @@ -0,0 +1,1210 @@ +{ + "4_4": { + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 15.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 15.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 7.5, + 7.5 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351678798604345, + 3.1872177656117713, + 3.5232854354783685, + 4.052438428723101, + 4.737474926415511, + 5.977489432905987, + 7.856754647922466, + 9.757886641432913, + 12.65721965944212, + 14.489023102379893, + 15.799787506923897, + 17.621687420628838, + 18.867683164022797, + 21.602860244685026, + 23.86907055587442, + 24.48364661201678, + 25.03200961694053, + 25.563482964117686, + 25.973372450536573, + 26.32312358373291, + 26.623239533466247, + 26.873638232417136, + 27.060269509428625, + 27.27314400577993, + 27.418514658262378, + 27.48988549628561, + 27.605605098659062 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413072, + 1.8198213217004355, + 2.111467924224728, + 2.451192833158653, + 2.7884198333956856, + 3.0450054383047207, + 3.388423414909576, + 3.620332527088513, + 3.8120682594158315, + 4.140041187434159, + 4.422886678754824, + 5.321234989615849, + 6.5263437404866025, + 6.957686304348439, + 7.391567154083204, + 7.860314222708644, + 8.258606025392256, + 8.623043600790599, + 8.956058309223891, + 9.248420146003598, + 9.473772823909444, + 9.737610667646901, + 9.921562602400382, + 10.01322191695006, + 10.163325953713956 + ], + "5._384._0.0875": [ + 3.493996636696855, + 4.054659256266985, + 4.78875306945473, + 6.121025206876537, + 7.80352951065869, + 10.433901019383976, + 13.640941694839348, + 16.331370561092573, + 19.87431599525205, + 21.916007808617138, + 23.320390687400792, + 25.218451029282615, + 26.493354059266988, + 29.259069977783355, + 31.540586806336844, + 32.158670408518, + 32.711800316168194, + 33.24870064288903, + 33.66382260617443, + 34.018254057586034, + 34.32297815575483, + 34.577691682824415, + 34.76761085869214, + 34.98452514114636, + 35.13260942703353, + 35.205247646838394, + 35.322859512661175 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125465, + 2.1622431316564756, + 2.5060808690348377, + 2.8001347504925422, + 3.143312305355372, + 3.5133861797008517, + 3.8705310824159427, + 4.531769197972898, + 5.077899785965173, + 5.55462300227648, + 6.3711748012195075, + 7.048675915142177, + 8.939167539808523, + 10.931806169001842, + 11.533159553013329, + 12.089419777562865, + 12.64489905654875, + 13.083338715281778, + 13.462104966217911, + 13.790303957182326, + 14.065688463472014, + 14.271267984243181, + 14.505221390976585, + 14.665007991014143, + 14.743623198045242, + 14.871293402214993 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323563332806, + 2.8519148805355723, + 3.2002776648469786, + 3.525206128924598, + 4.022767075983574, + 4.789456780493782, + 5.670963648218378, + 7.310927123196966, + 8.550282587645464, + 9.533176072028752, + 11.027135098862418, + 12.124848504513153, + 14.717167899186993, + 16.98976615396995, + 17.618790577984015, + 18.181887823775902, + 18.729541065237587, + 19.15255691604014, + 19.51353906417054, + 19.82305155110091, + 20.080928561476814, + 20.27291183541213, + 20.491317598553422, + 20.640355442461797, + 20.71355755380681, + 20.832334532578137 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 15.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 15.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 7.5, + 5.0 + ], + [ + 7.5, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351711814013543, + 3.1877619161150377, + 3.5300521987323443, + 4.092350053972336, + 4.846045715867644, + 6.226030365575266, + 8.301646015806089, + 10.37896592317485, + 13.521464069334, + 15.498792833674043, + 16.91154931578895, + 18.872602017133534, + 20.21246432782293, + 23.15028892524921, + 25.581789694205543, + 26.240913949035075, + 26.828903751768717, + 27.39868300301964, + 27.838026505409367, + 28.212900954378327, + 28.534542552922407, + 28.80288099513015, + 29.002888521067113, + 29.231021045823017, + 29.386821853893696, + 29.46331909418647, + 29.587366908436255 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.195803175961542, + 1.4813847491413066, + 1.8198213217004344, + 2.1114679242247285, + 2.45119283317253, + 2.7884204452488497, + 3.0450776854767603, + 3.391231242253256, + 3.6310826882034704, + 3.834200811876476, + 4.189479548289206, + 4.501000324208016, + 5.500154502892341, + 6.83397784285001, + 7.307508114996968, + 7.781213144781125, + 8.290675036159072, + 8.72167336973038, + 9.114874342962088, + 9.473097792217311, + 9.786763933623792, + 10.028064719450208, + 10.309933726858137, + 10.506088603242873, + 10.603728742838797, + 10.76349911300112 + ], + "5._384._0.0875": [ + 3.502951035108636, + 4.1021182676846255, + 4.912099940002563, + 6.394312539684579, + 8.251758092475313, + 11.12198110832681, + 14.595001329381112, + 17.4984730325936, + 21.314758329968765, + 23.51166411917869, + 25.022151255906795, + 27.062667289719766, + 28.43281242316016, + 31.403766951270235, + 33.853595240469225, + 34.5171700430619, + 35.11096376694695, + 35.68729155277061, + 36.13285736527143, + 36.51328211340298, + 36.840340494020914, + 37.113714720973874, + 37.31755224691423, + 37.55036585440934, + 37.70931169123703, + 37.78728131747946, + 37.913535295118905 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125458, + 2.1622431316564765, + 2.5060808691112553, + 2.8001352858759265, + 3.1435101206117877, + 3.5185458782381347, + 3.8938257837458465, + 4.615538123293564, + 5.222669763731222, + 5.7542059909967485, + 6.661109585044995, + 7.409053123901263, + 9.473867374906161, + 11.627812881089339, + 12.274783066123721, + 12.872278339628457, + 13.468077371448969, + 13.937653596310543, + 14.34299477885783, + 14.693880322398936, + 14.988062080556276, + 15.207579986864737, + 15.457259764071907, + 15.627744146780127, + 15.711618851192473, + 15.847848859102404 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235637037206, + 2.851916258652669, + 3.2006127849279995, + 3.530219822586601, + 4.055842692400081, + 4.898148492299303, + 5.879869422948944, + 7.695974590146078, + 9.055304631317874, + 10.126995612407795, + 11.747734775736093, + 12.93448191707208, + 15.727331901290837, + 18.16795636288144, + 18.84260051387258, + 19.44620431858016, + 20.032976785916762, + 20.485981307087, + 20.872483756031464, + 21.20378005998712, + 21.479742725429944, + 21.685182126746238, + 21.91887558652922, + 22.078352298963235, + 22.156687893966236, + 22.283817115227492 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_5": { + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 7.5, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168551201247, + 3.187263976408304, + 3.523184523197632, + 4.04452040682191, + 4.7005339485370845, + 5.877655613810245, + 7.706884587478849, + 9.629481927492161, + 12.680895872103044, + 14.66623421623402, + 16.107069823295962, + 18.12990315873668, + 19.52341523869152, + 22.594982906243462, + 25.143157755727064, + 25.83406578778365, + 26.44958758446652, + 27.045446061718135, + 27.504170200652943, + 27.89539984900222, + 28.23067337623168, + 28.510075186569157, + 28.718266960324986, + 28.95557317653764, + 29.117642448401405, + 29.197243024940448, + 29.326424822164203 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004355, + 2.111467924224727, + 2.451192833169619, + 2.788419988018048, + 3.0450147355036905, + 3.3885072584301543, + 3.6197366217784492, + 3.8091701816889123, + 4.128111892087807, + 4.39884260436798, + 5.250757746951914, + 6.41439563001892, + 6.841366918909256, + 7.278024893171893, + 7.757621892686313, + 8.171853615449939, + 8.556169245065416, + 8.911938008820746, + 9.227907913590471, + 9.47372814602179, + 9.763911436403815, + 9.967702695671553, + 10.069740089831281, + 10.23752927403046 + ], + "5._384._0.0875": [ + 3.4936911508997595, + 4.044097301447126, + 4.744923718584172, + 6.0114003816396595, + 7.651402365475661, + 10.325139436732687, + 13.730191644475592, + 16.67435138772061, + 20.626379130842803, + 22.92757920760366, + 24.516116133712856, + 26.66564279862443, + 28.110337650479053, + 31.23886548369332, + 33.81315290772364, + 34.50962628838817, + 35.13215348683249, + 35.73579244844193, + 36.20187944168707, + 36.59970980376465, + 36.94144936015703, + 37.226885257841325, + 37.439692108001495, + 37.68266352301702, + 37.8485645882877, + 37.92996974889343, + 38.061870293085036 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125451, + 2.1622431316564765, + 2.5060808690869796, + 2.8001348884547657, + 3.1433336028828944, + 3.5133882256158144, + 3.8674609225070657, + 4.505684759190436, + 5.02351149512212, + 5.475414978679433, + 6.257517502871103, + 6.91771555215415, + 8.82167848196441, + 10.919458244618195, + 11.568976989964966, + 12.175149278710098, + 12.785173774635, + 13.269430465427192, + 13.68941778925645, + 14.054226929203727, + 14.360729615993563, + 14.589688246739875, + 14.850125079875735, + 15.02804222870348, + 15.115647231915892, + 15.258073594028103 + ], + "5._96._0.075": [ + 2.2092718103274027, + 2.5553235635508993, + 2.8519151951305375, + 3.200309921062786, + 3.525221538470626, + 4.017011426432835, + 4.752240865873735, + 5.587799412525928, + 7.171409197280925, + 8.406044616381264, + 9.408583286542262, + 10.967860919290501, + 12.137273381796012, + 14.959721757879969, + 17.482441991861208, + 18.185755121275072, + 18.81574329641796, + 19.428700020432608, + 19.901780150224106, + 20.30537685411131, + 20.651009517012206, + 20.938601574341416, + 21.152590732614865, + 21.395744036470568, + 21.561649265594898, + 21.643169548262744, + 21.77557426738418 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 7.5, + 6.66666666666667 + ], + [ + 7.5, + 13.333333333333302 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351647654098957, + 3.1870019296024386, + 3.522152439946208, + 4.053234730035851, + 4.753101588023297, + 6.044806244243766, + 8.049311711082694, + 10.135188381741113, + 13.41573683361848, + 15.539856295811123, + 17.078553199392136, + 19.235352055092044, + 20.71948312823841, + 23.9864412401848, + 26.69337728940948, + 27.426970879134828, + 28.080367460296316, + 28.712760520865228, + 29.199495173423564, + 29.61460089023562, + 29.970292937430838, + 30.266684175698973, + 30.487541073119512, + 30.73928425440769, + 30.911225717850375, + 30.995681768231915, + 31.132763642110117 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004342, + 2.111467924224728, + 2.451192833107241, + 2.7884191120863417, + 3.0449632326772083, + 3.3877382719138542, + 3.619091492976565, + 3.8112165500997244, + 4.142806832922043, + 4.431757166105383, + 5.363369779200566, + 6.64038969892985, + 7.106086261687892, + 7.579779536802278, + 8.097562121580633, + 8.542654926043523, + 8.954172795590582, + 9.333815845796273, + 9.66995589061417, + 9.930855543609805, + 10.238012110819021, + 10.453232658092256, + 10.560855761506765, + 10.737647572071156 + ], + "5._384._0.0875": [ + 3.492724650046691, + 4.056536999397526, + 4.808508296914031, + 6.199917065349385, + 7.996683163712336, + 10.893136179720965, + 14.549965059251054, + 17.69858646111919, + 21.915429381956674, + 24.3678444427113, + 26.059927633029716, + 28.34835255832928, + 29.885833526469767, + 33.21353962319658, + 35.95045394583936, + 36.69078806272622, + 37.352461161108, + 37.99400218008086, + 38.48930146611856, + 38.91206572180314, + 39.27520570791666, + 39.578505304372214, + 39.80463577033268, + 40.06282241003654, + 40.23912110556791, + 40.325632532998625, + 40.465818783908624 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808687904665, + 2.800134106683666, + 3.1432157028185324, + 3.5124021379774466, + 3.8696516110902732, + 4.541465704093968, + 5.10527898866411, + 5.602323668715245, + 6.463155857685603, + 7.186694694273159, + 9.251583130722528, + 11.501071201964994, + 12.193800885194127, + 12.83897657384665, + 13.4871435858579, + 14.000784139986672, + 14.44582539645008, + 14.831950036928395, + 15.15604673577814, + 15.3980186884817, + 15.673076337389045, + 15.860919307521614, + 15.953404546886063, + 16.10378641579022 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.5553235623106128, + 2.8519134161192086, + 3.2001301005001825, + 3.524228435075337, + 4.02274796685743, + 4.8053387974294495, + 5.721422024901963, + 7.460307554350175, + 8.80511608325137, + 9.890398971159826, + 11.568732678639803, + 12.822364522310849, + 15.835457525447797, + 18.518619256405643, + 19.265500167964422, + 19.934094245763017, + 20.58425605469147, + 21.085753547179657, + 21.51349961497687, + 21.879684265099627, + 22.184292773813247, + 22.410931239167212, + 22.66843081749066, + 22.844131573053932, + 22.93047242725706, + 23.070735166691637 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 5.0, + 6.66666666666667 + ], + [ + 5.0, + 13.333333333333302 + ], + [ + 10.0, + 6.66666666666667 + ], + [ + 10.0, + 13.333333333333302 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351754402567453, + 3.188143168481585, + 3.534491816905175, + 4.122123973415333, + 4.935162221768324, + 6.454970187781035, + 8.791843710939084, + 11.190084875738906, + 14.917532571648044, + 17.315767598224912, + 19.04885539732574, + 21.47293451907933, + 23.138379397715177, + 26.79754688487095, + 29.824139185179995, + 30.64378672665415, + 31.373578512863027, + 32.07969970638596, + 32.62299176900542, + 33.086311594294166, + 33.48324742695662, + 33.8139632766165, + 34.060407095818846, + 34.34131711434135, + 34.53320031743349, + 34.62746272816131, + 34.78049502755753 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615422, + 1.4813847491413075, + 1.8198213217004355, + 2.1114679242247285, + 2.4511928332471684, + 2.78842143364, + 3.045139478206705, + 3.3930545621102266, + 3.638322015952265, + 3.849959457011476, + 4.227458035741884, + 4.563646572595317, + 5.659122706391232, + 7.151203406478846, + 7.690033508176637, + 8.233857216300137, + 8.82439826523121, + 9.328697522092353, + 9.792817563359396, + 10.21893018485081, + 10.594578349118606, + 10.885171786148934, + 11.225954687886416, + 11.463948458749329, + 11.582747298889908, + 11.77763069179007 + ], + "5._384._0.0875": [ + 3.5088591444247412, + 4.138058435447715, + 5.014622066954455, + 6.6509857593762, + 8.744645365413476, + 12.068116601124007, + 16.217696522551673, + 19.771276259666998, + 24.51613879253919, + 27.271043074809004, + 29.170522297398303, + 31.7374995968351, + 33.46122556408392, + 37.1892086820482, + 40.25329767981054, + 41.081909065672946, + 41.822385294840494, + 42.54023982986685, + 43.0943695028361, + 43.56734804975019, + 43.97359066969115, + 44.31287216242885, + 44.56583826929634, + 44.854669691082364, + 45.05190785641764, + 45.14870152608009, + 45.305569271375525 + ], + "5._48._0.075": [ + 1.52684632437314, + 1.8679037053125456, + 2.1622431316564765, + 2.506080869463895, + 2.800136168659578, + 3.1436617280088393, + 3.5219085956668823, + 3.910409506342306, + 4.682866733518197, + 5.345805828167493, + 5.932042332152574, + 6.942573119966385, + 7.785821978681714, + 10.157597880971, + 12.702631524943639, + 13.480495314472357, + 14.203096192952183, + 14.927313740829016, + 15.499798706990768, + 15.99513875079792, + 16.42418288444033, + 16.783799184640564, + 17.052087261617228, + 17.35677324744398, + 17.56476009231505, + 17.66715611627265, + 17.83369734434752 + ], + "5._96._0.075": [ + 2.2092718103274023, + 2.555323565168604, + 2.851918260506528, + 3.200857169267355, + 3.5334840048420872, + 4.080109072859136, + 4.987531662232407, + 6.066470347504326, + 8.100250173673466, + 9.654531957491793, + 10.898613832925436, + 12.808231862196637, + 14.227078522423248, + 17.618521614394414, + 20.623067871267452, + 21.457595102935795, + 22.203965932975148, + 22.929187118758676, + 23.48810082167464, + 23.96466978329137, + 24.372442728859188, + 24.711510944147836, + 24.963771271120553, + 25.250340373123745, + 25.44589005709357, + 25.541997725786633, + 25.698175214245545 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + } +} \ No newline at end of file From 16892a6ee383bb2b7ec9a32851af9772f70a2d1e Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 15 Jun 2023 11:11:30 -0700 Subject: [PATCH 042/217] Update gitignore for full gfunction zip just in case. --- .gitignore | 1 + HPXMLtoOpenStudio/measure.xml | 58 +++++++++++++++++++++++++++++++++-- 2 files changed, 57 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a0fcb5bb27..38ad068de7 100644 --- a/.gitignore +++ b/.gitignore @@ -1014,3 +1014,4 @@ /ReportUtilityBills/resources/detailed_rates/*.json !/ReportUtilityBills/resources/detailed_rates/Sample*.json /ReportUtilityBills/tests/results_bills.csv +/HPXMLtoOpenStudio/resources/g_functions/g-function_library_1.0 diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 6185482cb9..fbe6470dcc 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - efb094c4-a6bb-4e72-af7a-3f853128344b - 2023-06-12T23:16:05Z + 222161f0-8825-4c6f-b185-b9afd1693638 + 2023-06-15T18:09:12Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -216,6 +216,60 @@ resource 788F897B + + g_functions/C_configurations_5m_v1.0.json + json + resource + 5410CFA9 + + + g_functions/L_configurations_5m_v1.0.json + json + resource + B81A3E85 + + + g_functions/LopU_configurations_5m_v1.0.json + json + resource + 17FFFDCA + + + g_functions/Open_configurations_5m_v1.0.json + json + resource + 226B7EE7 + + + g_functions/U_configurations_5m_v1.0.json + json + resource + 45A026F1 + + + g_functions/g-function_library_1.0/zoned_rectangle_5m_v1.0.json + json + resource + 6A4C47AD + + + g_functions/rectangle_5m_v1.0.json + json + resource + DAF42C80 + + + g_functions/util.rb + rb + resource + D76C546D + + + g_functions/zoned_rectangle_5m_v1.0.json + json + resource + 86CE839A + generator.rb rb From 2c864755ec8c456f75fa71f0651ccde2d32bb9d0 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 16 Jun 2023 12:43:25 -0700 Subject: [PATCH 043/217] Default bore spacing to 5 m. --- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index c9887b6176..1104af0087 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1519,7 +1519,7 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) HVAC.set_curves_gshp(heat_pump) if heat_pump.geothermal_loop.bore_spacing.nil? - heat_pump.geothermal_loop.bore_spacing = 20.0 # ft, distance between bores + heat_pump.geothermal_loop.bore_spacing = 16.4 # ft, distance between bores heat_pump.geothermal_loop.bore_spacing_isdefaulted = true end From 6b4177cbcb270ab6ba2a9f1a266728f805b59b28 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 16 Jun 2023 12:43:51 -0700 Subject: [PATCH 044/217] Make the leap to using g function library. --- HPXMLtoOpenStudio/measure.xml | 18 +- HPXMLtoOpenStudio/resources/hpxml.rb | 14 +- HPXMLtoOpenStudio/resources/hvac.rb | 14 +- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 401 +++------------------ 4 files changed, 63 insertions(+), 384 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index fbe6470dcc..4089199353 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 222161f0-8825-4c6f-b185-b9afd1693638 - 2023-06-15T18:09:12Z + 96f8a5ff-b21c-4b4e-82f9-46ba8b95d436 + 2023-06-16T19:42:43Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -246,12 +246,6 @@ resource 45A026F1 - - g_functions/g-function_library_1.0/zoned_rectangle_5m_v1.0.json - json - resource - 6A4C47AD - g_functions/rectangle_5m_v1.0.json json @@ -292,13 +286,13 @@ hpxml.rb rb resource - BBE2E750 + 696216E6 hpxml_defaults.rb rb resource - AA7E448C + 7DD8A83B hpxml_schema/HPXML.xsd @@ -328,13 +322,13 @@ hvac.rb rb resource - 4D5F1922 + C338637B hvac_sizing.rb rb resource - 7613E200 + AC78993E lighting.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 7b8a45cf88..e5350d0846 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -156,13 +156,13 @@ class HPXML < Object FuelTypeWoodPellets = 'wood pellets' FurnitureMassTypeLightWeight = 'light-weight' FurnitureMassTypeHeavyWeight = 'heavy-weight' - GeothermalLoopBorefieldConfigurationSingle = 'single' - GeothermalLoopBorefieldConfigurationLine = 'line' - GeothermalLoopBorefieldConfigurationLConfig = 'l-config' - GeothermalLoopBorefieldConfigurationRectangle = 'rectangle' - GeothermalLoopBorefieldConfigurationUConfig = 'u-config' - GeothermalLoopBorefieldConfigurationl2Config = 'l2-config' - GeothermalLoopBorefieldConfigurationOpenRectangle = 'open-rectangle' + GeothermalLoopBorefieldConfigurationRectangle = 'Rectangle' + GeothermalLoopBorefieldConfigurationZonedRectangle = 'Zoned Rectangle' + GeothermalLoopBorefieldConfigurationOpenRectangle = 'Open Rectangle' + GeothermalLoopBorefieldConfigurationC = 'C' + GeothermalLoopBorefieldConfigurationL = 'L' + GeothermalLoopBorefieldConfigurationU = 'U' + GeothermalLoopBorefieldConfigurationLopsidedU = 'Lopsided U' GeothermalLoopLoopConfigurationDiagonal = 'diagonal' GeothermalLoopLoopConfigurationHorizontal = 'horizontal' GeothermalLoopLoopConfigurationOther = 'other' diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index 4d0fef8b1d..10cc18b085 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -3391,13 +3391,13 @@ def self.set_gshp_assumptions(heat_pump, weather) end def self.valid_borefield_configs - valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationSingle => [1], - HPXML::GeothermalLoopBorefieldConfigurationLine => [2, 3, 4, 5, 6, 7, 8, 9, 10], - HPXML::GeothermalLoopBorefieldConfigurationLConfig => [3, 4, 5, 6], - HPXML::GeothermalLoopBorefieldConfigurationRectangle => [2, 4, 6, 8], - HPXML::GeothermalLoopBorefieldConfigurationUConfig => [5, 7, 9], - HPXML::GeothermalLoopBorefieldConfigurationl2Config => [8], - HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => [8] } + valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], + # HPXML::GeothermalLoopBorefieldConfigurationZonedRectangle => [], + HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => [8, 10], + # HPXML::GeothermalLoopBorefieldConfigurationC => [], + HPXML::GeothermalLoopBorefieldConfigurationL => [4, 5, 6, 7, 8, 9, 10], + HPXML::GeothermalLoopBorefieldConfigurationU => [7, 9, 10], + HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => [6, 7, 8, 9, 10] } return valid_configs end diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 1b69f29f53..37c30f6fa4 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1925,59 +1925,22 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) bore_depth = (bore_length / num_bore_holes).floor + 5 end - valid_configs = HVAC.valid_borefield_configs bore_config = geothermal_loop.bore_config if bore_config.nil? - if num_bore_holes == 1 - bore_config = HPXML::GeothermalLoopBorefieldConfigurationSingle - elsif num_bore_holes == 2 - bore_config = HPXML::GeothermalLoopBorefieldConfigurationLine - elsif num_bore_holes == 3 - bore_config = HPXML::GeothermalLoopBorefieldConfigurationLine - elsif num_bore_holes == 4 - bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle - elsif num_bore_holes == 5 - bore_config = HPXML::GeothermalLoopBorefieldConfigurationUConfig - elsif num_bore_holes > 5 - bore_config = HPXML::GeothermalLoopBorefieldConfigurationLine - end - - # Test for valid GSHP bore field configurations - valid_num_bores = valid_configs[bore_config] - max_valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationLine => 10, - HPXML::GeothermalLoopBorefieldConfigurationLConfig => 6 } - unless valid_num_bores.include? num_bore_holes - # Any configuration with a max_valid_configs value can accept any number of bores up to the maximum - if max_valid_configs.keys.include? bore_config - max_num_bore_holes = max_valid_configs[bore_config] - num_bore_holes = max_num_bore_holes - else - # Search for first valid bore field - new_bore_config = nil - valid_configs.keys.each do |bore_config| - next unless valid_configs[bore_config].include? num_bore_holes - - new_bore_config = bore_config - break - end - if not new_bore_config.nil? - bore_config = new_bore_config - else - fail 'Could not construct a valid GSHP bore field configuration.' - end - end - end + bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle + num_bore_holes = [num_bore_holes, 10].min end + valid_configs = HVAC.valid_borefield_configs valid_num_bores = valid_configs[bore_config] unless valid_num_bores.include? num_bore_holes fail "Number of bore holes (#{num_bore_holes}) with borefield configuration '#{bore_config}' not supported." end - spacing_to_depth_ratio = bore_spacing / bore_depth + # spacing_to_depth_ratio = bore_spacing / bore_depth lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] - gfnc_coeff = gshp_gfnc_coeff(bore_config, num_bore_holes, spacing_to_depth_ratio) + gfnc_coeff = gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter) hvac_sizing_values.GSHP_Loop_flow = loop_flow hvac_sizing_values.GSHP_Bore_Depth = bore_depth @@ -2703,325 +2666,47 @@ def self.gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, bore_dia return nom_length_heat, nom_length_cool end - def self.gshp_gfnc_coeff(bore_config, num_bore_holes, spacing_to_depth_ratio) - # Set GFNC coefficients - gfnc_coeff = nil - if bore_config == 'single' - gfnc_coeff = 2.681, 3.024, 3.320, 3.666, 3.963, 4.306, 4.645, 4.899, 5.222, 5.405, 5.531, 5.704, 5.821, 6.082, 6.304, 6.366, 6.422, 6.477, 6.520, 6.558, 6.591, 6.619, 6.640, 6.665, 6.893, 6.694, 6.715 - elsif bore_config == 'line' - if num_bore_holes == 2 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.681, 3.043, 3.397, 3.9, 4.387, 5.005, 5.644, 6.137, 6.77, 7.131, 7.381, 7.722, 7.953, 8.462, 8.9, 9.022, 9.13, 9.238, 9.323, 9.396, 9.46, 9.515, 9.556, 9.604, 9.636, 9.652, 9.678 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.024, 3.332, 3.734, 4.143, 4.691, 5.29, 5.756, 6.383, 6.741, 6.988, 7.326, 7.557, 8.058, 8.5, 8.622, 8.731, 8.839, 8.923, 8.997, 9.061, 9.115, 9.156, 9.203, 9.236, 9.252, 9.277 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.668, 3.988, 4.416, 4.921, 5.323, 5.925, 6.27, 6.512, 6.844, 7.073, 7.574, 8.015, 8.137, 8.247, 8.354, 8.439, 8.511, 8.575, 8.629, 8.67, 8.718, 8.75, 8.765, 8.791 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.31, 4.672, 4.919, 5.406, 5.711, 5.932, 6.246, 6.465, 6.945, 7.396, 7.52, 7.636, 7.746, 7.831, 7.905, 7.969, 8.024, 8.066, 8.113, 8.146, 8.161, 8.187 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.648, 4.835, 5.232, 5.489, 5.682, 5.964, 6.166, 6.65, 7.087, 7.208, 7.32, 7.433, 7.52, 7.595, 7.661, 7.717, 7.758, 7.806, 7.839, 7.855, 7.88 - end - elsif num_bore_holes == 3 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.682, 3.05, 3.425, 3.992, 4.575, 5.366, 6.24, 6.939, 7.86, 8.39, 8.759, 9.263, 9.605, 10.358, 11.006, 11.185, 11.345, 11.503, 11.628, 11.736, 11.831, 11.911, 11.971, 12.041, 12.089, 12.112, 12.151 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.336, 3.758, 4.21, 4.855, 5.616, 6.243, 7.124, 7.639, 7.999, 8.493, 8.833, 9.568, 10.22, 10.399, 10.56, 10.718, 10.841, 10.949, 11.043, 11.122, 11.182, 11.252, 11.299, 11.322, 11.36 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.67, 3.997, 4.454, 5.029, 5.517, 6.298, 6.768, 7.106, 7.578, 7.907, 8.629, 9.274, 9.452, 9.612, 9.769, 9.893, 9.999, 10.092, 10.171, 10.231, 10.3, 10.347, 10.37, 10.407 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.311, 4.681, 4.942, 5.484, 5.844, 6.116, 6.518, 6.807, 7.453, 8.091, 8.269, 8.435, 8.595, 8.719, 8.826, 8.919, 8.999, 9.06, 9.128, 9.175, 9.198, 9.235 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.649, 4.836, 5.25, 5.53, 5.746, 6.076, 6.321, 6.924, 7.509, 7.678, 7.836, 7.997, 8.121, 8.229, 8.325, 8.405, 8.465, 8.535, 8.582, 8.605, 8.642 - end - elsif num_bore_holes == 4 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.682, 3.054, 3.438, 4.039, 4.676, 5.575, 6.619, 7.487, 8.662, 9.35, 9.832, 10.492, 10.943, 11.935, 12.787, 13.022, 13.232, 13.44, 13.604, 13.745, 13.869, 13.975, 14.054, 14.145, 14.208, 14.238, 14.289 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.339, 3.77, 4.244, 4.941, 5.798, 6.539, 7.622, 8.273, 8.734, 9.373, 9.814, 10.777, 11.63, 11.864, 12.074, 12.282, 12.443, 12.584, 12.706, 12.81, 12.888, 12.979, 13.041, 13.071, 13.12 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.671, 4.001, 4.474, 5.086, 5.62, 6.514, 7.075, 7.487, 8.075, 8.49, 9.418, 10.253, 10.484, 10.692, 10.897, 11.057, 11.195, 11.316, 11.419, 11.497, 11.587, 11.647, 11.677, 11.726 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.311, 4.686, 4.953, 5.523, 5.913, 6.214, 6.67, 7.005, 7.78, 8.574, 8.798, 9.011, 9.215, 9.373, 9.512, 9.632, 9.735, 9.814, 9.903, 9.963, 9.993, 10.041 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.649, 4.837, 5.259, 5.55, 5.779, 6.133, 6.402, 7.084, 7.777, 7.983, 8.178, 8.379, 8.536, 8.672, 8.795, 8.898, 8.975, 9.064, 9.125, 9.155, 9.203 - end - elsif num_bore_holes == 5 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.056, 3.446, 4.067, 4.737, 5.709, 6.877, 7.879, 9.272, 10.103, 10.69, 11.499, 12.053, 13.278, 14.329, 14.618, 14.878, 15.134, 15.336, 15.51, 15.663, 15.792, 15.89, 16.002, 16.079, 16.117, 16.179 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.34, 3.777, 4.265, 4.993, 5.913, 6.735, 7.974, 8.737, 9.285, 10.054, 10.591, 11.768, 12.815, 13.103, 13.361, 13.616, 13.814, 13.987, 14.137, 14.264, 14.36, 14.471, 14.548, 14.584, 14.645 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.671, 4.004, 4.485, 5.12, 5.683, 6.653, 7.279, 7.747, 8.427, 8.914, 10.024, 11.035, 11.316, 11.571, 11.82, 12.016, 12.185, 12.332, 12.458, 12.553, 12.663, 12.737, 12.773, 12.833 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.688, 4.96, 5.547, 5.955, 6.274, 6.764, 7.132, 8.002, 8.921, 9.186, 9.439, 9.683, 9.873, 10.041, 10.186, 10.311, 10.406, 10.514, 10.588, 10.624, 10.683 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.837, 5.264, 5.562, 5.798, 6.168, 6.452, 7.186, 7.956, 8.191, 8.415, 8.649, 8.834, 8.995, 9.141, 9.265, 9.357, 9.465, 9.539, 9.575, 9.634 - end - elsif num_bore_holes == 6 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.057, 3.452, 4.086, 4.779, 5.8, 7.06, 8.162, 9.74, 10.701, 11.385, 12.334, 12.987, 14.439, 15.684, 16.027, 16.335, 16.638, 16.877, 17.083, 17.264, 17.417, 17.532, 17.665, 17.756, 17.801, 17.874 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.341, 3.782, 4.278, 5.029, 5.992, 6.87, 8.226, 9.081, 9.704, 10.59, 11.212, 12.596, 13.828, 14.168, 14.473, 14.773, 15.007, 15.211, 15.388, 15.538, 15.652, 15.783, 15.872, 15.916, 15.987 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.671, 4.005, 4.493, 5.143, 5.726, 6.747, 7.42, 7.93, 8.681, 9.227, 10.5, 11.672, 12.001, 12.299, 12.591, 12.821, 13.019, 13.192, 13.34, 13.452, 13.581, 13.668, 13.71, 13.78 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.69, 4.964, 5.563, 5.983, 6.314, 6.828, 7.218, 8.159, 9.179, 9.479, 9.766, 10.045, 10.265, 10.458, 10.627, 10.773, 10.883, 11.01, 11.096, 11.138, 11.207 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.268, 5.57, 5.811, 6.191, 6.485, 7.256, 8.082, 8.339, 8.586, 8.848, 9.055, 9.238, 9.404, 9.546, 9.653, 9.778, 9.864, 9.907, 9.976 - end - elsif num_bore_holes == 7 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.058, 3.456, 4.1, 4.809, 5.867, 7.195, 8.38, 10.114, 11.189, 11.961, 13.04, 13.786, 15.456, 16.89, 17.286, 17.64, 17.989, 18.264, 18.501, 18.709, 18.886, 19.019, 19.172, 19.276, 19.328, 19.412 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.342, 3.785, 4.288, 5.054, 6.05, 6.969, 8.418, 9.349, 10.036, 11.023, 11.724, 13.296, 14.706, 15.096, 15.446, 15.791, 16.059, 16.293, 16.497, 16.668, 16.799, 16.949, 17.052, 17.102, 17.183 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.672, 4.007, 4.499, 5.159, 5.756, 6.816, 7.524, 8.066, 8.874, 9.469, 10.881, 12.2, 12.573, 12.912, 13.245, 13.508, 13.734, 13.932, 14.1, 14.228, 14.376, 14.475, 14.524, 14.604 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.691, 4.967, 5.574, 6.003, 6.343, 6.874, 7.28, 8.276, 9.377, 9.706, 10.022, 10.333, 10.578, 10.795, 10.985, 11.15, 11.276, 11.419, 11.518, 11.565, 11.644 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.27, 5.576, 5.821, 6.208, 6.509, 7.307, 8.175, 8.449, 8.715, 8.998, 9.224, 9.426, 9.61, 9.768, 9.887, 10.028, 10.126, 10.174, 10.252 - end - elsif num_bore_holes == 8 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.059, 3.459, 4.11, 4.832, 5.918, 7.3, 8.55, 10.416, 11.59, 12.442, 13.641, 14.475, 16.351, 17.97, 18.417, 18.817, 19.211, 19.522, 19.789, 20.024, 20.223, 20.373, 20.546, 20.664, 20.721, 20.816 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.342, 3.788, 4.295, 5.073, 6.093, 7.045, 8.567, 9.56, 10.301, 11.376, 12.147, 13.892, 15.472, 15.911, 16.304, 16.692, 16.993, 17.257, 17.486, 17.679, 17.826, 17.995, 18.111, 18.167, 18.259 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.672, 4.008, 4.503, 5.171, 5.779, 6.868, 7.603, 8.17, 9.024, 9.659, 11.187, 12.64, 13.055, 13.432, 13.804, 14.098, 14.351, 14.573, 14.762, 14.905, 15.07, 15.182, 15.237, 15.326 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.692, 4.97, 5.583, 6.018, 6.364, 6.909, 7.327, 8.366, 9.531, 9.883, 10.225, 10.562, 10.83, 11.069, 11.28, 11.463, 11.602, 11.762, 11.872, 11.925, 12.013 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.272, 5.58, 5.828, 6.22, 6.527, 7.345, 8.246, 8.533, 8.814, 9.114, 9.356, 9.573, 9.772, 9.944, 10.076, 10.231, 10.34, 10.393, 10.481 - end - elsif num_bore_holes == 9 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.06, 3.461, 4.118, 4.849, 5.958, 7.383, 8.687, 10.665, 11.927, 12.851, 14.159, 15.075, 17.149, 18.947, 19.443, 19.888, 20.326, 20.672, 20.969, 21.23, 21.452, 21.618, 21.81, 21.941, 22.005, 22.11 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.342, 3.79, 4.301, 5.088, 6.127, 7.105, 8.686, 9.732, 10.519, 11.671, 12.504, 14.408, 16.149, 16.633, 17.069, 17.499, 17.833, 18.125, 18.379, 18.593, 18.756, 18.943, 19.071, 19.133, 19.235 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.672, 4.008, 4.506, 5.181, 5.797, 6.909, 7.665, 8.253, 9.144, 9.813, 11.441, 13.015, 13.468, 13.881, 14.29, 14.613, 14.892, 15.136, 15.345, 15.503, 15.686, 15.809, 15.87, 15.969 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.693, 4.972, 5.589, 6.03, 6.381, 6.936, 7.364, 8.436, 9.655, 10.027, 10.391, 10.751, 11.04, 11.298, 11.527, 11.726, 11.879, 12.054, 12.175, 12.234, 12.331 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.273, 5.584, 5.833, 6.23, 6.541, 7.375, 8.302, 8.6, 8.892, 9.208, 9.463, 9.692, 9.905, 10.089, 10.231, 10.4, 10.518, 10.576, 10.673 - end - elsif num_bore_holes == 10 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.06, 3.463, 4.125, 4.863, 5.99, 7.45, 8.799, 10.872, 12.211, 13.197, 14.605, 15.598, 17.863, 19.834, 20.379, 20.867, 21.348, 21.728, 22.055, 22.342, 22.585, 22.767, 22.978, 23.122, 23.192, 23.307 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.026, 3.343, 3.792, 4.306, 5.1, 6.154, 7.153, 8.784, 9.873, 10.699, 11.918, 12.805, 14.857, 16.749, 17.278, 17.755, 18.225, 18.591, 18.91, 19.189, 19.423, 19.601, 19.807, 19.947, 20.015, 20.126 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.672, 4.009, 4.509, 5.189, 5.812, 6.942, 7.716, 8.32, 9.242, 9.939, 11.654, 13.336, 13.824, 14.271, 14.714, 15.065, 15.368, 15.635, 15.863, 16.036, 16.235, 16.37, 16.435, 16.544 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.694, 4.973, 5.595, 6.039, 6.395, 6.958, 7.394, 8.493, 9.757, 10.146, 10.528, 10.909, 11.215, 11.491, 11.736, 11.951, 12.116, 12.306, 12.437, 12.501, 12.607 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.275, 5.587, 5.837, 6.238, 6.552, 7.399, 8.347, 8.654, 8.956, 9.283, 9.549, 9.79, 10.014, 10.209, 10.36, 10.541, 10.669, 10.732, 10.837 - end - end - elsif bore_config == 'l-config' - if num_bore_holes == 3 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.682, 3.052, 3.435, 4.036, 4.668, 5.519, 6.435, 7.155, 8.091, 8.626, 8.997, 9.504, 9.847, 10.605, 11.256, 11.434, 11.596, 11.755, 11.88, 11.988, 12.083, 12.163, 12.224, 12.294, 12.342, 12.365, 12.405 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.337, 3.767, 4.242, 4.937, 5.754, 6.419, 7.33, 7.856, 8.221, 8.721, 9.063, 9.818, 10.463, 10.641, 10.801, 10.959, 11.084, 11.191, 11.285, 11.365, 11.425, 11.495, 11.542, 11.565, 11.603 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.67, 3.999, 4.472, 5.089, 5.615, 6.449, 6.942, 7.292, 7.777, 8.111, 8.847, 9.497, 9.674, 9.836, 9.993, 10.117, 10.224, 10.317, 10.397, 10.457, 10.525, 10.573, 10.595, 10.633 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.311, 4.684, 4.95, 5.525, 5.915, 6.209, 6.64, 6.946, 7.645, 8.289, 8.466, 8.63, 8.787, 8.912, 9.018, 9.112, 9.192, 9.251, 9.32, 9.367, 9.39, 9.427 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.649, 4.836, 5.255, 5.547, 5.777, 6.132, 6.397, 7.069, 7.673, 7.848, 8.005, 8.161, 8.29, 8.397, 8.492, 8.571, 8.631, 8.7, 8.748, 8.771, 8.808 - end - elsif num_bore_holes == 4 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.055, 3.446, 4.075, 4.759, 5.729, 6.841, 7.753, 8.96, 9.659, 10.147, 10.813, 11.266, 12.265, 13.122, 13.356, 13.569, 13.778, 13.942, 14.084, 14.208, 14.314, 14.393, 14.485, 14.548, 14.579, 14.63 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.339, 3.777, 4.27, 5.015, 5.945, 6.739, 7.875, 8.547, 9.018, 9.668, 10.116, 11.107, 11.953, 12.186, 12.395, 12.603, 12.766, 12.906, 13.029, 13.133, 13.212, 13.303, 13.365, 13.395, 13.445 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.671, 4.003, 4.488, 5.137, 5.713, 6.678, 7.274, 7.707, 8.319, 8.747, 9.698, 10.543, 10.774, 10.984, 11.19, 11.351, 11.49, 11.612, 11.715, 11.793, 11.882, 11.944, 11.974, 12.022 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.311, 4.688, 4.959, 5.558, 5.976, 6.302, 6.794, 7.155, 8.008, 8.819, 9.044, 9.255, 9.456, 9.618, 9.755, 9.877, 9.98, 10.057, 10.146, 10.207, 10.236, 10.285 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.649, 4.837, 5.263, 5.563, 5.804, 6.183, 6.473, 7.243, 7.969, 8.185, 8.382, 8.58, 8.743, 8.88, 9.001, 9.104, 9.181, 9.27, 9.332, 9.361, 9.409 - end - elsif num_bore_holes == 5 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.057, 3.453, 4.097, 4.806, 5.842, 7.083, 8.14, 9.579, 10.427, 11.023, 11.841, 12.399, 13.633, 14.691, 14.98, 15.242, 15.499, 15.701, 15.877, 16.03, 16.159, 16.257, 16.37, 16.448, 16.485, 16.549 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.34, 3.783, 4.285, 5.054, 6.038, 6.915, 8.219, 9.012, 9.576, 10.362, 10.907, 12.121, 13.161, 13.448, 13.705, 13.96, 14.16, 14.332, 14.483, 14.61, 14.707, 14.819, 14.895, 14.932, 14.993 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.671, 4.005, 4.497, 5.162, 5.76, 6.796, 7.461, 7.954, 8.665, 9.17, 10.31, 11.338, 11.62, 11.877, 12.127, 12.324, 12.494, 12.643, 12.77, 12.865, 12.974, 13.049, 13.085, 13.145 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.69, 4.964, 5.575, 6.006, 6.347, 6.871, 7.263, 8.219, 9.164, 9.432, 9.684, 9.926, 10.121, 10.287, 10.434, 10.56, 10.654, 10.762, 10.836, 10.872, 10.93 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.837, 5.267, 5.573, 5.819, 6.208, 6.51, 7.33, 8.136, 8.384, 8.613, 8.844, 9.037, 9.2, 9.345, 9.468, 9.562, 9.67, 9.744, 9.78, 9.839 - end - elsif num_bore_holes == 6 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.058, 3.457, 4.111, 4.837, 5.916, 7.247, 8.41, 10.042, 11.024, 11.72, 12.681, 13.339, 14.799, 16.054, 16.396, 16.706, 17.011, 17.25, 17.458, 17.639, 17.792, 17.907, 18.041, 18.133, 18.177, 18.253 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.341, 3.786, 4.296, 5.08, 6.099, 7.031, 8.456, 9.346, 9.988, 10.894, 11.528, 12.951, 14.177, 14.516, 14.819, 15.12, 15.357, 15.56, 15.737, 15.888, 16.002, 16.134, 16.223, 16.267, 16.338 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.671, 4.007, 4.503, 5.178, 5.791, 6.872, 7.583, 8.119, 8.905, 9.472, 10.774, 11.969, 12.3, 12.6, 12.895, 13.126, 13.326, 13.501, 13.649, 13.761, 13.89, 13.977, 14.02, 14.09 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.691, 4.968, 5.586, 6.026, 6.375, 6.919, 7.331, 8.357, 9.407, 9.71, 9.997, 10.275, 10.501, 10.694, 10.865, 11.011, 11.121, 11.247, 11.334, 11.376, 11.445 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.27, 5.579, 5.828, 6.225, 6.535, 7.384, 8.244, 8.515, 8.768, 9.026, 9.244, 9.428, 9.595, 9.737, 9.845, 9.97, 10.057, 10.099, 10.168 - end - end - elsif bore_config == 'l2-config' - if num_bore_holes == 8 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.685, 3.078, 3.547, 4.438, 5.521, 7.194, 9.237, 10.973, 13.311, 14.677, 15.634, 16.942, 17.831, 19.791, 21.462, 21.917, 22.329, 22.734, 23.052, 23.328, 23.568, 23.772, 23.925, 24.102, 24.224, 24.283, 24.384 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.027, 3.354, 3.866, 4.534, 5.682, 7.271, 8.709, 10.845, 12.134, 13.046, 14.308, 15.177, 17.106, 18.741, 19.19, 19.592, 19.989, 20.303, 20.57, 20.805, 21.004, 21.155, 21.328, 21.446, 21.504, 21.598 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.676, 4.034, 4.639, 5.587, 6.514, 8.195, 9.283, 10.09, 11.244, 12.058, 13.88, 15.491, 15.931, 16.328, 16.716, 17.02, 17.282, 17.511, 17.706, 17.852, 18.019, 18.134, 18.19, 18.281 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.315, 4.72, 5.041, 5.874, 6.525, 7.06, 7.904, 8.541, 10.093, 11.598, 12.018, 12.41, 12.784, 13.084, 13.338, 13.562, 13.753, 13.895, 14.058, 14.169, 14.223, 14.312 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.307, 4.653, 4.842, 5.325, 5.717, 6.058, 6.635, 7.104, 8.419, 9.714, 10.108, 10.471, 10.834, 11.135, 11.387, 11.61, 11.798, 11.94, 12.103, 12.215, 12.268, 12.356 - end - elsif num_bore_holes == 10 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.685, 3.08, 3.556, 4.475, 5.611, 7.422, 9.726, 11.745, 14.538, 16.199, 17.369, 18.975, 20.071, 22.489, 24.551, 25.111, 25.619, 26.118, 26.509, 26.848, 27.143, 27.393, 27.582, 27.8, 27.949, 28.022, 28.146 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.027, 3.356, 3.874, 4.559, 5.758, 7.466, 9.07, 11.535, 13.06, 14.153, 15.679, 16.739, 19.101, 21.106, 21.657, 22.15, 22.637, 23.021, 23.348, 23.635, 23.879, 24.063, 24.275, 24.42, 24.49, 24.605 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.676, 4.037, 4.653, 5.634, 6.61, 8.44, 9.664, 10.589, 11.936, 12.899, 15.086, 17.041, 17.575, 18.058, 18.53, 18.9, 19.218, 19.496, 19.733, 19.91, 20.113, 20.252, 20.32, 20.431 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.315, 4.723, 5.048, 5.904, 6.584, 7.151, 8.062, 8.764, 10.521, 12.281, 12.779, 13.246, 13.694, 14.054, 14.36, 14.629, 14.859, 15.03, 15.226, 15.36, 15.425, 15.531 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.307, 4.653, 4.842, 5.331, 5.731, 6.083, 6.683, 7.178, 8.6, 10.054, 10.508, 10.929, 11.356, 11.711, 12.009, 12.275, 12.5, 12.671, 12.866, 13, 13.064, 13.17 - end - end - elsif bore_config == 'u-config' - if num_bore_holes == 5 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.057, 3.46, 4.134, 4.902, 6.038, 7.383, 8.503, 9.995, 10.861, 11.467, 12.294, 12.857, 14.098, 15.16, 15.449, 15.712, 15.97, 16.173, 16.349, 16.503, 16.633, 16.731, 16.844, 16.922, 16.96, 17.024 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.341, 3.789, 4.31, 5.136, 6.219, 7.172, 8.56, 9.387, 9.97, 10.774, 11.328, 12.556, 13.601, 13.889, 14.147, 14.403, 14.604, 14.777, 14.927, 15.056, 15.153, 15.265, 15.341, 15.378, 15.439 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.671, 4.007, 4.51, 5.213, 5.864, 6.998, 7.717, 8.244, 8.993, 9.518, 10.69, 11.73, 12.015, 12.273, 12.525, 12.723, 12.893, 13.043, 13.17, 13.265, 13.374, 13.449, 13.486, 13.546 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.692, 4.969, 5.607, 6.072, 6.444, 7.018, 7.446, 8.474, 9.462, 9.737, 9.995, 10.241, 10.438, 10.606, 10.754, 10.88, 10.975, 11.083, 11.157, 11.193, 11.252 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.27, 5.585, 5.843, 6.26, 6.588, 7.486, 8.353, 8.614, 8.854, 9.095, 9.294, 9.46, 9.608, 9.733, 9.828, 9.936, 10.011, 10.047, 10.106 - end - elsif num_bore_holes == 7 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.059, 3.467, 4.164, 4.994, 6.319, 8.011, 9.482, 11.494, 12.679, 13.511, 14.651, 15.427, 17.139, 18.601, 18.999, 19.359, 19.714, 19.992, 20.233, 20.443, 20.621, 20.755, 20.91, 21.017, 21.069, 21.156 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.342, 3.795, 4.329, 5.214, 6.465, 7.635, 9.435, 10.54, 11.327, 12.421, 13.178, 14.861, 16.292, 16.685, 17.038, 17.386, 17.661, 17.896, 18.101, 18.276, 18.408, 18.56, 18.663, 18.714, 18.797 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.672, 4.009, 4.519, 5.253, 5.965, 7.304, 8.204, 8.882, 9.866, 10.566, 12.145, 13.555, 13.941, 14.29, 14.631, 14.899, 15.129, 15.331, 15.502, 15.631, 15.778, 15.879, 15.928, 16.009 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.694, 4.975, 5.629, 6.127, 6.54, 7.207, 7.723, 9.019, 10.314, 10.68, 11.023, 11.352, 11.617, 11.842, 12.04, 12.209, 12.335, 12.48, 12.579, 12.627, 12.705 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.275, 5.595, 5.861, 6.304, 6.665, 7.709, 8.785, 9.121, 9.434, 9.749, 10.013, 10.233, 10.43, 10.597, 10.723, 10.868, 10.967, 11.015, 11.094 - end - elsif num_bore_holes == 9 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.683, 3.061, 3.47, 4.178, 5.039, 6.472, 8.405, 10.147, 12.609, 14.086, 15.131, 16.568, 17.55, 19.72, 21.571, 22.073, 22.529, 22.976, 23.327, 23.632, 23.896, 24.121, 24.29, 24.485, 24.619, 24.684, 24.795 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.025, 3.343, 3.798, 4.338, 5.248, 6.588, 7.902, 10.018, 11.355, 12.321, 13.679, 14.625, 16.74, 18.541, 19.036, 19.478, 19.916, 20.261, 20.555, 20.812, 21.031, 21.197, 21.387, 21.517, 21.58, 21.683 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.672, 4.01, 4.524, 5.27, 6.01, 7.467, 8.489, 9.281, 10.452, 11.299, 13.241, 14.995, 15.476, 15.912, 16.337, 16.67, 16.957, 17.208, 17.421, 17.581, 17.764, 17.889, 17.95, 18.05 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.312, 4.695, 4.977, 5.639, 6.15, 6.583, 7.298, 7.869, 9.356, 10.902, 11.347, 11.766, 12.169, 12.495, 12.772, 13.017, 13.225, 13.381, 13.559, 13.681, 13.74, 13.837 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.65, 4.838, 5.277, 5.6, 5.87, 6.322, 6.698, 7.823, 9.044, 9.438, 9.809, 10.188, 10.506, 10.774, 11.015, 11.219, 11.374, 11.552, 11.674, 11.733, 11.83 - end - end - elsif bore_config == 'open-rectangle' - if num_bore_holes == 8 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.684, 3.066, 3.497, 4.275, 5.229, 6.767, 8.724, 10.417, 12.723, 14.079, 15.03, 16.332, 17.217, 19.17, 20.835, 21.288, 21.698, 22.101, 22.417, 22.692, 22.931, 23.133, 23.286, 23.462, 23.583, 23.642, 23.742 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.026, 3.347, 3.821, 4.409, 5.418, 6.87, 8.226, 10.299, 11.565, 12.466, 13.716, 14.58, 16.498, 18.125, 18.572, 18.972, 19.368, 19.679, 19.946, 20.179, 20.376, 20.527, 20.699, 20.816, 20.874, 20.967 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.673, 4.018, 4.564, 5.389, 6.21, 7.763, 8.801, 9.582, 10.709, 11.51, 13.311, 14.912, 15.349, 15.744, 16.13, 16.432, 16.693, 16.921, 17.114, 17.259, 17.426, 17.54, 17.595, 17.686 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.313, 4.704, 4.999, 5.725, 6.294, 6.771, 7.543, 8.14, 9.629, 11.105, 11.52, 11.908, 12.28, 12.578, 12.831, 13.054, 13.244, 13.386, 13.548, 13.659, 13.712, 13.8 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.651, 4.839, 5.293, 5.641, 5.938, 6.44, 6.856, 8.062, 9.297, 9.681, 10.036, 10.394, 10.692, 10.941, 11.163, 11.35, 11.492, 11.654, 11.766, 11.819, 11.907 - end - elsif num_bore_holes == 10 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.684, 3.066, 3.494, 4.262, 5.213, 6.81, 8.965, 10.906, 13.643, 15.283, 16.443, 18.038, 19.126, 21.532, 23.581, 24.138, 24.642, 25.137, 25.525, 25.862, 26.155, 26.403, 26.59, 26.806, 26.955, 27.027, 27.149 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.026, 3.346, 3.818, 4.399, 5.4, 6.889, 8.358, 10.713, 12.198, 13.27, 14.776, 15.824, 18.167, 20.158, 20.704, 21.194, 21.677, 22.057, 22.382, 22.666, 22.907, 23.09, 23.3, 23.443, 23.513, 23.627 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.673, 4.018, 4.559, 5.374, 6.193, 7.814, 8.951, 9.831, 11.13, 12.069, 14.219, 16.154, 16.684, 17.164, 17.631, 17.998, 18.314, 18.59, 18.824, 19, 19.201, 19.338, 19.405, 19.515 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.313, 4.703, 4.996, 5.712, 6.275, 6.755, 7.549, 8.183, 9.832, 11.54, 12.029, 12.49, 12.933, 13.29, 13.594, 13.862, 14.09, 14.26, 14.455, 14.588, 14.652, 14.758 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.651, 4.839, 5.292, 5.636, 5.928, 6.425, 6.841, 8.089, 9.44, 9.875, 10.284, 10.7, 11.05, 11.344, 11.608, 11.831, 12.001, 12.196, 12.329, 12.393, 12.499 - end - end - elsif bore_config == 'rectangle' - if num_bore_holes == 4 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.684, 3.066, 3.493, 4.223, 5.025, 6.131, 7.338, 8.291, 9.533, 10.244, 10.737, 11.409, 11.865, 12.869, 13.73, 13.965, 14.178, 14.388, 14.553, 14.696, 14.821, 14.927, 15.007, 15.099, 15.162, 15.193, 15.245 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.026, 3.347, 3.818, 4.383, 5.255, 6.314, 7.188, 8.392, 9.087, 9.571, 10.233, 10.686, 11.685, 12.536, 12.77, 12.98, 13.189, 13.353, 13.494, 13.617, 13.721, 13.801, 13.892, 13.955, 13.985, 14.035 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.673, 4.018, 4.555, 5.313, 5.984, 7.069, 7.717, 8.177, 8.817, 9.258, 10.229, 11.083, 11.316, 11.527, 11.733, 11.895, 12.035, 12.157, 12.261, 12.339, 12.429, 12.491, 12.521, 12.57 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.313, 4.703, 4.998, 5.69, 6.18, 6.557, 7.115, 7.514, 8.428, 9.27, 9.501, 9.715, 9.92, 10.083, 10.221, 10.343, 10.447, 10.525, 10.614, 10.675, 10.704, 10.753 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.306, 4.651, 4.839, 5.293, 5.633, 5.913, 6.355, 6.693, 7.559, 8.343, 8.57, 8.776, 8.979, 9.147, 9.286, 9.409, 9.512, 9.59, 9.68, 9.741, 9.771, 9.819 - end - elsif num_bore_holes == 6 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.684, 3.074, 3.526, 4.349, 5.308, 6.719, 8.363, 9.72, 11.52, 12.562, 13.289, 14.282, 14.956, 16.441, 17.711, 18.057, 18.371, 18.679, 18.921, 19.132, 19.315, 19.47, 19.587, 19.722, 19.815, 19.861, 19.937 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.026, 3.351, 3.847, 4.472, 5.499, 6.844, 8.016, 9.702, 10.701, 11.403, 12.369, 13.032, 14.502, 15.749, 16.093, 16.4, 16.705, 16.945, 17.15, 17.329, 17.482, 17.598, 17.731, 17.822, 17.866, 17.938 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.675, 4.028, 4.605, 5.471, 6.283, 7.688, 8.567, 9.207, 10.112, 10.744, 12.149, 13.389, 13.727, 14.033, 14.332, 14.567, 14.769, 14.946, 15.096, 15.21, 15.339, 15.428, 15.471, 15.542 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.314, 4.714, 5.024, 5.798, 6.378, 6.841, 7.553, 8.079, 9.327, 10.512, 10.84, 11.145, 11.437, 11.671, 11.869, 12.044, 12.192, 12.303, 12.431, 12.518, 12.56, 12.629 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.307, 4.652, 4.841, 5.313, 5.684, 5.999, 6.517, 6.927, 8.034, 9.087, 9.401, 9.688, 9.974, 10.21, 10.408, 10.583, 10.73, 10.841, 10.969, 11.056, 11.098, 11.167 - end - elsif num_bore_holes == 8 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.685, 3.078, 3.543, 4.414, 5.459, 7.06, 9.021, 10.701, 12.991, 14.34, 15.287, 16.586, 17.471, 19.423, 21.091, 21.545, 21.956, 22.36, 22.677, 22.953, 23.192, 23.395, 23.548, 23.725, 23.847, 23.906, 24.006 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.027, 3.354, 3.862, 4.517, 5.627, 7.142, 8.525, 10.589, 11.846, 12.741, 13.986, 14.847, 16.762, 18.391, 18.839, 19.24, 19.637, 19.95, 20.217, 20.45, 20.649, 20.8, 20.973, 21.091, 21.148, 21.242 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.675, 4.033, 4.63, 5.553, 6.444, 8.051, 9.096, 9.874, 10.995, 11.79, 13.583, 15.182, 15.619, 16.016, 16.402, 16.705, 16.967, 17.195, 17.389, 17.535, 17.702, 17.817, 17.873, 17.964 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.315, 4.719, 5.038, 5.852, 6.48, 6.993, 7.799, 8.409, 9.902, 11.371, 11.784, 12.17, 12.541, 12.839, 13.092, 13.315, 13.505, 13.647, 13.81, 13.921, 13.975, 14.063 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.307, 4.653, 4.842, 5.323, 5.71, 6.042, 6.6, 7.05, 8.306, 9.552, 9.935, 10.288, 10.644, 10.94, 11.188, 11.409, 11.596, 11.738, 11.9, 12.011, 12.065, 12.153 - end - elsif num_bore_holes == 9 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.685, 3.082, 3.561, 4.49, 5.635, 7.436, 9.672, 11.59, 14.193, 15.721, 16.791, 18.256, 19.252, 21.447, 23.318, 23.826, 24.287, 24.74, 25.095, 25.404, 25.672, 25.899, 26.071, 26.269, 26.405, 26.471, 26.583 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.027, 3.357, 3.879, 4.57, 5.781, 7.488, 9.052, 11.408, 12.84, 13.855, 15.263, 16.235, 18.39, 20.216, 20.717, 21.166, 21.61, 21.959, 22.257, 22.519, 22.74, 22.909, 23.102, 23.234, 23.298, 23.403 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.676, 4.039, 4.659, 5.65, 6.633, 8.447, 9.638, 10.525, 11.802, 12.705, 14.731, 16.525, 17.014, 17.456, 17.887, 18.225, 18.516, 18.77, 18.986, 19.148, 19.334, 19.461, 19.523, 19.625 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.316, 4.725, 5.052, 5.917, 6.603, 7.173, 8.08, 8.772, 10.47, 12.131, 12.596, 13.029, 13.443, 13.775, 14.057, 14.304, 14.515, 14.673, 14.852, 14.975, 15.035, 15.132 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.307, 4.653, 4.842, 5.334, 5.739, 6.094, 6.7, 7.198, 8.611, 10.023, 10.456, 10.855, 11.256, 11.588, 11.866, 12.112, 12.32, 12.477, 12.656, 12.779, 12.839, 12.935 - end - elsif num_bore_holes == 10 - if spacing_to_depth_ratio <= 0.02 - gfnc_coeff = 2.685, 3.08, 3.553, 4.453, 5.552, 7.282, 9.472, 11.405, 14.111, 15.737, 16.888, 18.476, 19.562, 21.966, 24.021, 24.579, 25.086, 25.583, 25.973, 26.311, 26.606, 26.855, 27.043, 27.26, 27.409, 27.482, 27.605 - elsif spacing_to_depth_ratio <= 0.03 - gfnc_coeff = 2.679, 3.027, 3.355, 3.871, 4.545, 5.706, 7.332, 8.863, 11.218, 12.688, 13.749, 15.242, 16.284, 18.618, 20.613, 21.161, 21.652, 22.138, 22.521, 22.847, 23.133, 23.376, 23.56, 23.771, 23.915, 23.985, 24.1 - elsif spacing_to_depth_ratio <= 0.05 - gfnc_coeff = 2.679, 3.023, 3.319, 3.676, 4.036, 4.645, 5.603, 6.543, 8.285, 9.449, 10.332, 11.623, 12.553, 14.682, 16.613, 17.143, 17.624, 18.094, 18.462, 18.78, 19.057, 19.293, 19.47, 19.673, 19.811, 19.879, 19.989 - elsif spacing_to_depth_ratio <= 0.1 - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.962, 4.315, 4.722, 5.045, 5.885, 6.543, 7.086, 7.954, 8.621, 10.291, 11.988, 12.473, 12.931, 13.371, 13.727, 14.03, 14.299, 14.527, 14.698, 14.894, 15.027, 15.092, 15.199 - else - gfnc_coeff = 2.679, 3.023, 3.318, 3.664, 3.961, 4.307, 4.653, 4.842, 5.329, 5.725, 6.069, 6.651, 7.126, 8.478, 9.863, 10.298, 10.704, 11.117, 11.463, 11.755, 12.016, 12.239, 12.407, 12.602, 12.735, 12.8, 12.906 + def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter) + require 'json' + + g_functions_filename = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => 'rectangle_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => 'Open_configurations_5m_v1.0.json' }[bore_config] + g_functions_filepath = File.join(File.dirname(__FILE__), 'g_functions', g_functions_filename) + g_functions = JSON.parse(File.read(g_functions_filepath), symbolize_names: true) + + _b = UnitConversions.convert(bore_spacing, 'ft', 'm') + _h = UnitConversions.convert(bore_depth, 'ft', 'm') + _r_b = UnitConversions.convert(bore_diameter / 2.0, 'in', 'm') + + # FIXME: find "closest" or "interpolated" b_h_rb instead of hardcoding below + b = 5 # m + h = 192 # m + rb = 0.08 # m + b_h_rb = "#{b}._#{h}._#{rb}" + + g_functions.each do |_key_1, values_1| + if [HPXML::GeothermalLoopBorefieldConfigurationRectangle, + HPXML::GeothermalLoopBorefieldConfigurationL].include?(bore_config) + bore_locations = values_1[:bore_locations] + next if bore_locations.size != num_bore_holes + + gfnc_coeff = values_1[:g][b_h_rb.to_sym].map { |v| Float(v) } + return gfnc_coeff + elsif [HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle, + HPXML::GeothermalLoopBorefieldConfigurationLopsidedU, + HPXML::GeothermalLoopBorefieldConfigurationU].include?(bore_config) + values_1.each do |_key_2, values_2| + bore_locations = values_2[:bore_locations] + next if bore_locations.size != num_bore_holes + + gfnc_coeff = values_2[:g][b_h_rb.to_sym].map { |v| Float(v) } + puts gfnc_coeff + return gfnc_coeff end end end - return gfnc_coeff + + fail "Could not find gfnc_coeff from '#{g_functions_filename}'." end def self.calculate_average_r_value(surfaces) From 6764c36ffbdbf31634fb1b0d3e7f5e3ccdf2221d Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 16 Jun 2023 12:44:09 -0700 Subject: [PATCH 045/217] Update the docs. --- docs/source/workflow_inputs.rst | 25 ++++++++----------------- 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index d2b1134c25..13738b7735 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2050,25 +2050,23 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ``LoopFlow`` double gal/min > 0 No autosized [#]_ ``BoreholesOrTrenches/Count`` integer > 0 No [#]_ autosized [#]_ ``BoreholesOrTrenches/Length`` double ft > 0 No autosized [#]_ - ``BoreholesOrTrenches/Spacing`` double ft > 0 No 20.0 + ``BoreholesOrTrenches/Spacing`` double ft > 0 No 16.4 ``BoreholesOrTrenches/Diameter`` double in > 0 No 5.0 ``Grout/Type`` or ``Grout/Conductivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No standard Grout type or conductivity [#]_ ``Pipe/Conductivity`` double Btu/hr-ft-F > 0 No 0.23 ``Pipe/Diameter`` double in See [#]_ No 0.75 ``Pipe/ShankSpacing`` double in > 0 No See [#]_ - ``extension/BorefieldConfiguration`` string See [#]_ No See [#]_ + ``extension/BorefieldConfiguration`` string See [#]_ No Rectangle ======================================== ================ =========== =============== ======== ============== =============================================== .. [#] LoopConfiguration must be "vertical". .. [#] LoopFlow autosized per TODO. .. [#] | If extension/BorefieldConfiguration provided, a valid BoreholesOrTrenches/Count must also be provided: - | - **single**: 1 - | - **line**: 2, 3, 4, 5, 6, 7, 8, 9, or 10 - | - **l-config**: 3, 4, 5, or 6 - | - **rectangle**: 2, 4, 6, or 8 - | - **u-config**: 5, 7, or 9 - | - **l2-config**: 8 - | - **open-rectangle**: 8 + | - **Rectangle**: 1, 2, 3, 4, 5, 6, 7, 8, 9, or 10 + | - **Open Rectangle**: 8 or 10 + | - **L**: 4, 5, 6, 7, 8, 9, or 10 + | - **U**: 7, 9, or 10 + | - **Lopsided U**: 6, 7, 8, 9, or 10 .. [#] BoreholesOrTrenches/Count autosized per TODO. .. [#] BoreholesOrTrenches/Length autosized per TODO. .. [#] Grout/Type choices are "standard" or "thermally enhanced". @@ -2077,14 +2075,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ | - **thermally enhanced**: 0.8 Btu/hr-ft-F .. [#] Pipe diameter must be either 3/4", 1", or 1-1/4" (i.e, 0.75, 1.0, or 1.25). .. [#] Sum of U-tube spacing and pipe outer diameter. - .. [#] extension/BorefieldConfiguration choices are "single", "line", "l-config", "rectangle", "u-config", "l2-config", or "open-rectangle". - .. [#] | If extension/BorefieldConfiguration not provided, defaults based on BoreholesOrTrenches/Count: - | - **1**: single - | - **2**: line - | - **3**: line - | - **4**: rectangle - | - **5**: u-config - | - **6+**: line + .. [#] extension/BorefieldConfiguration choices are "Rectangle", "Open Rectangle", "L", "U", or "Lopsided U". .. _hvac_control: From 85e64fbd695b426ec97a13cccb63f460189e2560 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 16 Jun 2023 12:49:06 -0700 Subject: [PATCH 046/217] Update defaults test and epvalidator. --- HPXMLtoOpenStudio/measure.xml | 8 ++++---- .../resources/hpxml_schematron/EPvalidator.xml | 2 +- HPXMLtoOpenStudio/tests/test_defaults.rb | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 4089199353..d7226dd2db 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 96f8a5ff-b21c-4b4e-82f9-46ba8b95d436 - 2023-06-16T19:42:43Z + 8e3b9495-d78f-4349-88c6-216d449740af + 2023-06-16T19:48:39Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -310,7 +310,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 3495BEA9 + 0ED71FF0 hpxml_schematron/iso-schematron.xsd @@ -538,7 +538,7 @@ test_defaults.rb rb test - 93E74F6F + 8DB0A847 test_enclosure.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 52021b9923..c1794c8bd7 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1320,7 +1320,7 @@ Expected 0 or 1 element(s) for xpath: Pipe/ShankSpacing Expected Pipe/ShankSpacing to be greater than 0 Expected 0 or 2 element(s) for xpath: BoreholesOrTrenches/Count | extension/BorefieldConfiguration - Expected BorefieldConfiguration to be 'single' or 'line' or 'l-config' or 'rectangle' or 'u-config' or '12-config' or 'open-rectangle' + Expected BorefieldConfiguration to be 'Rectangle' or 'Open Rectangle' or 'L' or 'U' or 'Lopsided U' diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index efec2bb47c..971a44b7e8 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1692,10 +1692,10 @@ def test_geothermal_loops hpxml.geothermal_loops[0].pipe_cond = 7 hpxml.geothermal_loops[0].pipe_size = 1.0 hpxml.geothermal_loops[0].shank_spacing = 9 - hpxml.geothermal_loops[0].bore_config = HPXML::GeothermalLoopBorefieldConfigurationLine + hpxml.geothermal_loops[0].bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, 2, 3, 4, 5, HPXML::GeothermalLoopGroutTypeThermallyEnhanced, 6, 7, 1.0, 9, HPXML::GeothermalLoopBorefieldConfigurationLine) + _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, 2, 3, 4, 5, HPXML::GeothermalLoopGroutTypeThermallyEnhanced, 6, 7, 1.0, 9, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults hpxml.geothermal_loops[0].loop_flow = nil @@ -1711,13 +1711,13 @@ def test_geothermal_loops hpxml.geothermal_loops[0].bore_config = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 20.0, nil, 5.0, HPXML::GeothermalLoopGroutTypeStandard, 0.4, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationLine) + _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutTypeStandard, 0.4, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults w/ thermally enhanced grout type hpxml.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutTypeThermallyEnhanced XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 20.0, nil, 5.0, HPXML::GeothermalLoopGroutTypeThermallyEnhanced, 0.8, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationLine) + _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutTypeThermallyEnhanced, 0.8, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) end def test_hvac_location From f66afd1919f7a2e024062897c9ae7b420b0caf5c Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 16 Jun 2023 13:00:20 -0700 Subject: [PATCH 047/217] Updates to the build measure. --- BuildResidentialHPXML/measure.rb | 8 ++--- BuildResidentialHPXML/measure.xml | 34 +++++++------------ workflow/hpxml_inputs.json | 2 +- ...eothermal-loop-borefield-configuration.xml | 2 +- 4 files changed, 18 insertions(+), 28 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 5b3e7d7e32..c33950b4cd 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1415,13 +1415,11 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument args << arg geothermal_loop_borefield_configuration_choices = OpenStudio::StringVector.new - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationSingle - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationLine - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationLConfig geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationRectangle - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationUConfig - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationl2Config geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationL + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationU + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationLopsidedU arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_borefield_configuration', geothermal_loop_borefield_configuration_choices, false) arg.setDisplayName('Geothermal Loop: Borefield Configuration') diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 099ab7175d..875b3e6b4e 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 7c50e224-07c8-4724-a6d6-1df0364e1993 - 2023-06-13T00:16:02Z + e0991ccf-1686-4db7-895b-f46fff298ee7 + 2023-06-16T19:52:27Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -2877,32 +2877,24 @@ false - single - single + Rectangle + Rectangle - line - line + Open Rectangle + Open Rectangle - l-config - l-config + L + L - rectangle - rectangle + U + U - u-config - u-config - - - l2-config - l2-config - - - open-rectangle - open-rectangle + Lopsided U + Lopsided U @@ -6821,7 +6813,7 @@ measure.rb rb script - 595F4F68 + 113AF8E2 geometry.rb diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 3ad0f97eef..a5f6392aa6 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2390,7 +2390,7 @@ "sample_files/base-hvac-geothermal-loop-borefield-configuration.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "geothermal_loop_boreholes_or_trenches_count": 5, - "geothermal_loop_borefield_configuration": "l-config" + "geothermal_loop_borefield_configuration": "L" }, "sample_files/base-hvac-ground-to-air-heat-pump.xml": { "parent_hpxml": "sample_files/base.xml", diff --git a/workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml b/workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml index 9bb010874b..39cd72afe7 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml @@ -358,7 +358,7 @@ 5 - l-config + L From 6633d9bb2d732ea23c205e0c7c44d65ca4923dfa Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 16 Jun 2023 15:26:11 -0700 Subject: [PATCH 048/217] Finish the map for g function json file names. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 5 ++++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index d7226dd2db..51b691c072 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 8e3b9495-d78f-4349-88c6-216d449740af - 2023-06-16T19:48:39Z + 4b8fb8ba-cafc-4806-a036-a25f7e5daad2 + 2023-06-16T22:25:30Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -328,7 +328,7 @@ hvac_sizing.rb rb resource - AC78993E + 988A059C lighting.rb diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 37c30f6fa4..b8a6d9d968 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -2670,7 +2670,10 @@ def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, require 'json' g_functions_filename = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => 'rectangle_5m_v1.0.json', - HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => 'Open_configurations_5m_v1.0.json' }[bore_config] + HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => 'Open_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationL => 'L_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationU => 'U_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => 'LopU_configurations_5m_v1.0.json' }[bore_config] g_functions_filepath = File.join(File.dirname(__FILE__), 'g_functions', g_functions_filename) g_functions = JSON.parse(File.read(g_functions_filepath), symbolize_names: true) From f0879e79c0633e14054ba3e13215204680b0a08f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 16 Jun 2023 23:10:33 +0000 Subject: [PATCH 049/217] Latest results. --- workflow/tests/base_results/results.csv | 46 +++++++++---------- workflow/tests/base_results/results_bills.csv | 46 +++++++++---------- 2 files changed, 46 insertions(+), 46 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 69dfc4d83d..d5ecbb9404 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -47,7 +47,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.969,27.969,27.969,27.969,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.818,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.9,1820.0,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.978,27.978,27.978,27.978,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.827,2.896,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1732.0,1822.7,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 @@ -60,7 +60,7 @@ base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0, base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.345,37.345,37.345,37.345,0.0,0.0,0.0,0.0,0.0,0.0,5.342,0.373,0.0,0.0,2.587,1.074,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.898,0.0,13.36,9.232,0.614,2.924,0.0,0.0,0.0,3219.0,2126.0,21.008,15.09,0.0,3.604,3.633,0.511,7.495,0.628,10.5,-12.557,0.0,0.0,0.0,8.269,-0.061,4.802,0.0,0.728,0.0,3.115,-8.592,-2.5,0.0,0.012,-0.453,-0.05,2.713,-0.024,-1.912,11.726,0.0,0.0,0.0,-6.305,-0.057,-1.163,-3.084,-0.164,0.0,1.833,8.483,2.01,1354.8,997.6,11413.1,2619.0,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.375,37.375,37.375,37.375,0.0,0.0,0.0,0.0,0.0,0.0,5.356,0.375,0.0,0.0,2.601,1.075,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.906,0.0,13.362,9.232,0.614,2.925,0.0,0.0,0.0,3226.4,2136.3,21.043,15.1,0.0,3.604,3.633,0.511,7.495,0.628,10.5,-12.557,0.0,0.0,0.0,8.269,-0.061,4.802,0.0,0.728,0.0,3.123,-8.592,-2.5,0.0,0.012,-0.453,-0.05,2.713,-0.024,-1.912,11.726,0.0,0.0,0.0,-6.305,-0.057,-1.163,-3.084,-0.164,0.0,1.835,8.483,2.01,1354.8,997.6,11412.9,2618.9,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -211,11 +211,11 @@ base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.65,58.65,34.864,34.864, base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.98,57.98,34.213,34.213,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.428,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.296,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2121.8,2796.9,24.264,17.856,0.0,3.509,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.882,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,31792.0,20283.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-furnace-gas-only.xml,55.194,55.194,31.045,31.045,24.149,0.0,0.0,0.0,0.0,0.0,0.0,0.628,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,24.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.847,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.9,1637.3,25.24,0.0,0.0,3.487,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.613,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,31792.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-furnace-gas-room-ac.xml,60.517,60.517,36.126,36.126,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,5.051,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,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.076,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.7,3023.7,25.24,11.066,0.0,3.482,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.677,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,31792.0,14272.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.324,34.324,34.324,34.324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.874,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.707,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2888.0,0.0,17.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.164,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24222.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.719,36.719,36.719,36.719,0.0,0.0,0.0,0.0,0.0,0.0,5.502,0.8,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,0.0,21.152,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3429.1,1637.3,23.668,0.0,0.0,3.547,3.636,0.512,7.483,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.869,-8.907,-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,1354.8,997.6,11399.5,2615.8,30706.0,0.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,40.005,40.005,40.005,40.005,0.0,0.0,0.0,0.0,0.0,0.0,5.519,0.693,0.0,0.0,2.54,0.813,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.204,0.0,13.313,9.233,0.614,0.0,0.0,0.0,0.0,3372.7,2561.2,23.122,15.813,0.0,3.548,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.758,-8.907,-2.499,0.0,-0.015,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.422,7.871,2.01,1354.8,997.6,11399.5,2615.8,30706.0,30706.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.255,0.37,0.0,0.0,2.479,1.034,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.85,0.0,12.857,9.233,0.614,0.0,0.0,0.0,0.0,3225.9,2597.8,21.438,15.107,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.366,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.061,-0.165,0.0,1.948,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.255,0.37,0.0,0.0,2.479,1.034,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.85,0.0,12.857,9.233,0.614,0.0,0.0,0.0,0.0,3225.9,2597.8,21.438,15.107,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.366,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.061,-0.165,0.0,1.948,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.404,34.404,34.404,34.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.037,0.881,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.72,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2918.4,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.063,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.177,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24222.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.754,36.754,36.754,36.754,0.0,0.0,0.0,0.0,0.0,0.0,5.53,0.807,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,0.0,21.175,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3442.9,1637.3,23.741,0.0,0.0,3.547,3.636,0.512,7.483,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.892,-8.907,-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,1354.8,997.6,11399.5,2615.8,30706.0,0.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,40.056,40.056,40.056,40.056,0.0,0.0,0.0,0.0,0.0,0.0,5.539,0.697,0.0,0.0,2.564,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.219,0.0,13.316,9.233,0.614,0.0,0.0,0.0,0.0,3385.3,2568.3,23.184,15.823,0.0,3.548,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.774,-8.907,-2.499,0.0,-0.015,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.425,7.871,2.01,1354.8,997.6,11399.5,2615.8,30706.0,30706.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.621,39.621,39.621,39.621,0.0,0.0,0.0,0.0,0.0,0.0,5.271,0.372,0.0,0.0,2.5,1.037,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.86,0.0,12.86,9.233,0.614,0.0,0.0,0.0,0.0,3235.3,2604.4,21.488,15.116,0.0,3.595,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.377,-8.907,-2.499,0.0,0.005,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.951,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.621,39.621,39.621,39.621,0.0,0.0,0.0,0.0,0.0,0.0,5.271,0.372,0.0,0.0,2.5,1.037,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.86,0.0,12.86,9.233,0.614,0.0,0.0,0.0,0.0,3235.3,2604.4,21.488,15.116,0.0,3.595,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.377,-8.907,-2.499,0.0,0.005,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.951,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.625,36.625,36.625,36.625,0.0,0.0,0.0,0.0,0.0,0.0,5.808,0.316,0.082,0.003,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,0.0,19.818,0.085,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4309.1,1637.3,19.511,0.0,0.0,3.595,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.502,-8.907,-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,1354.8,997.6,11399.5,2615.8,25749.0,0.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -285,20 +285,20 @@ base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0 base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-borefield-configuration.xml,39.609,39.609,39.609,39.609,0.0,0.0,0.0,0.0,0.0,0.0,5.264,0.368,0.0,0.0,2.512,1.025,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.567,0.0,12.689,9.233,0.614,0.0,0.0,0.0,0.0,3222.5,2612.4,21.004,14.741,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.075,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.777,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-count.xml,39.585,39.585,39.585,39.585,0.0,0.0,0.0,0.0,0.0,0.0,5.258,0.368,0.0,0.0,2.495,1.023,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.563,0.0,12.686,9.233,0.614,0.0,0.0,0.0,0.0,3219.1,2591.6,20.983,14.721,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.071,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.774,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-diameter.xml,39.58,39.58,39.58,39.58,0.0,0.0,0.0,0.0,0.0,0.0,5.26,0.368,0.0,0.0,2.489,1.022,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.564,0.0,12.685,9.233,0.614,0.0,0.0,0.0,0.0,3218.5,2590.6,20.926,14.72,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.072,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.773,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-length.xml,39.518,39.518,39.518,39.518,0.0,0.0,0.0,0.0,0.0,0.0,5.238,0.365,0.0,0.0,2.456,1.018,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,12.68,9.233,0.614,0.0,0.0,0.0,0.0,3206.9,2571.3,20.866,14.696,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.058,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.768,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-spacing.xml,39.539,39.539,39.539,39.539,0.0,0.0,0.0,0.0,0.0,0.0,5.246,0.366,0.0,0.0,2.467,1.02,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.555,0.0,12.682,9.233,0.614,0.0,0.0,0.0,0.0,3211.0,2577.1,20.886,14.703,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.063,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-ground-diffusivity.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.26,0.368,0.0,0.0,2.488,1.022,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.564,0.0,12.684,9.233,0.614,0.0,0.0,0.0,0.0,3218.3,2588.5,20.921,14.717,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.072,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.772,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-grout-conductivity.xml,39.577,39.577,39.577,39.577,0.0,0.0,0.0,0.0,0.0,0.0,5.26,0.368,0.0,0.0,2.487,1.022,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.563,0.0,12.684,9.233,0.614,0.0,0.0,0.0,0.0,3218.8,2584.8,20.916,14.712,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.072,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.772,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-loop-flow.xml,39.58,39.58,39.58,39.58,0.0,0.0,0.0,0.0,0.0,0.0,5.262,0.368,0.0,0.0,2.488,1.022,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.564,0.0,12.684,9.233,0.614,0.0,0.0,0.0,0.0,3214.8,2586.6,20.906,14.715,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.072,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.772,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-conductivity.xml,39.558,39.558,39.558,39.558,0.0,0.0,0.0,0.0,0.0,0.0,5.253,0.367,0.0,0.0,2.477,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.559,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3214.9,2581.5,20.902,14.709,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.067,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-diameter.xml,39.561,39.561,39.561,39.561,0.0,0.0,0.0,0.0,0.0,0.0,5.251,0.367,0.0,0.0,2.481,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.558,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3214.2,2578.9,20.949,14.704,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.066,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.527,39.527,39.527,39.527,0.0,0.0,0.0,0.0,0.0,0.0,5.242,0.365,0.0,0.0,2.46,1.019,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.552,0.0,12.681,9.233,0.614,0.0,0.0,0.0,0.0,3209.1,2572.6,20.874,14.698,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.06,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.834,33.834,33.834,33.834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.571,0.777,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.556,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2618.9,0.0,14.783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.993,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.574,36.574,36.574,36.574,0.0,0.0,0.0,0.0,0.0,0.0,5.394,0.763,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,0.0,20.341,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3367.4,1637.3,22.277,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.035,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.556,39.556,39.556,39.556,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.367,0.0,0.0,2.476,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.559,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3214.4,2581.7,20.901,14.709,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.067,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-borefield-configuration.xml,39.671,39.671,39.671,39.671,0.0,0.0,0.0,0.0,0.0,0.0,5.286,0.371,0.0,0.0,2.545,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.579,0.0,12.693,9.233,0.614,0.0,0.0,0.0,0.0,3236.0,2616.1,21.067,14.745,0.0,3.605,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.088,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.78,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-count.xml,39.632,39.632,39.632,39.632,0.0,0.0,0.0,0.0,0.0,0.0,5.275,0.37,0.0,0.0,2.52,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.573,0.0,12.689,9.233,0.614,0.0,0.0,0.0,0.0,3229.3,2597.6,21.032,14.728,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.082,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.777,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-diameter.xml,39.613,39.613,39.613,39.613,0.0,0.0,0.0,0.0,0.0,0.0,5.273,0.369,0.0,0.0,2.506,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.571,0.0,12.687,9.233,0.614,0.0,0.0,0.0,0.0,3225.9,2596.5,20.961,14.728,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.08,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.775,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-length.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.366,0.0,0.0,2.463,1.019,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.553,0.0,12.681,9.233,0.614,0.0,0.0,0.0,0.0,3210.5,2572.6,20.884,14.698,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.061,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-spacing.xml,39.556,39.556,39.556,39.556,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.367,0.0,0.0,2.475,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.558,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3214.9,2578.5,20.904,14.705,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.067,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-ground-diffusivity.xml,39.618,39.618,39.618,39.618,0.0,0.0,0.0,0.0,0.0,0.0,5.275,0.37,0.0,0.0,2.509,1.025,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.572,0.0,12.687,9.233,0.614,0.0,0.0,0.0,0.0,3226.7,2594.5,20.96,14.725,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.081,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.775,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-grout-conductivity.xml,39.618,39.618,39.618,39.618,0.0,0.0,0.0,0.0,0.0,0.0,5.275,0.37,0.0,0.0,2.507,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.572,0.0,12.686,9.233,0.614,0.0,0.0,0.0,0.0,3227.7,2590.9,20.957,14.72,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.081,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.774,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-loop-flow.xml,39.612,39.612,39.612,39.612,0.0,0.0,0.0,0.0,0.0,0.0,5.274,0.37,0.0,0.0,2.504,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.571,0.0,12.686,9.233,0.614,0.0,0.0,0.0,0.0,3222.1,2591.8,20.939,14.721,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.08,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.774,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-conductivity.xml,39.595,39.595,39.595,39.595,0.0,0.0,0.0,0.0,0.0,0.0,5.267,0.369,0.0,0.0,2.496,1.023,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.567,0.0,12.685,9.233,0.614,0.0,0.0,0.0,0.0,3222.9,2587.5,20.939,14.716,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.076,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.773,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-diameter.xml,39.598,39.598,39.598,39.598,0.0,0.0,0.0,0.0,0.0,0.0,5.265,0.368,0.0,0.0,2.5,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.566,0.0,12.686,9.233,0.614,0.0,0.0,0.0,0.0,3222.3,2584.4,20.989,14.711,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.075,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.774,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.558,39.558,39.558,39.558,0.0,0.0,0.0,0.0,0.0,0.0,5.254,0.367,0.0,0.0,2.476,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.559,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3216.2,2577.6,20.907,14.704,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.067,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.889,33.889,33.889,33.889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.621,0.782,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.561,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2639.0,0.0,14.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.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.999,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.597,36.597,36.597,36.597,0.0,0.0,0.0,0.0,0.0,0.0,5.412,0.768,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,0.0,20.354,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3376.3,1637.3,22.322,0.0,0.0,3.576,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.049,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.589,39.589,39.589,39.589,0.0,0.0,0.0,0.0,0.0,0.0,5.265,0.368,0.0,0.0,2.493,1.023,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.566,0.0,12.685,9.233,0.614,0.0,0.0,0.0,0.0,3221.7,2587.0,20.935,14.715,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.074,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.773,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -306,7 +306,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.72 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.381,41.381,41.381,41.381,0.0,0.0,0.0,0.0,0.0,0.0,6.67,0.384,0.0,0.0,2.932,0.954,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.447,0.0,13.147,9.233,0.614,0.0,0.0,0.0,0.0,3447.4,2730.1,21.835,15.722,0.0,3.576,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.98,-8.907,-2.499,0.0,-0.008,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.246,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.42,41.42,41.42,41.42,0.0,0.0,0.0,0.0,0.0,0.0,6.684,0.385,0.0,0.0,2.953,0.957,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.456,0.0,13.15,9.233,0.614,0.0,0.0,0.0,0.0,3455.6,2736.7,21.871,15.73,0.0,3.576,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.988,-8.907,-2.499,0.0,-0.008,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.249,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -319,7 +319,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668, base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.378,66.378,51.93,51.93,7.162,3.603,3.683,0.0,0.0,0.0,13.664,0.862,0.199,0.008,6.203,0.554,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.718,0.207,18.969,9.233,0.615,0.0,0.0,0.0,4.0,6442.4,4057.4,37.83,22.72,0.0,3.417,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.316,-8.919,-2.502,0.0,-0.122,-0.445,-0.049,2.738,-0.021,-1.886,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.244,7.859,2.007,1354.8,997.6,11399.5,2615.8,59200.0,36799.2,10236.0,6.8,91.76,36503.0,13294.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.405,66.405,51.953,51.953,7.164,3.604,3.684,0.0,0.0,0.0,13.671,0.863,0.2,0.008,6.216,0.555,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.735,0.208,18.972,9.233,0.615,0.0,0.0,0.0,4.0,6463.1,4059.3,37.937,22.687,0.0,3.416,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.333,-8.919,-2.502,0.0,-0.122,-0.445,-0.049,2.738,-0.021,-1.886,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.246,7.859,2.007,1354.8,997.6,11399.5,2615.8,59200.0,36799.2,10236.0,6.8,91.76,36503.0,13294.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.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,1354.8,997.6,8540.6,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 base-hvac-portable-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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 6777b17517..d032607543 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -47,7 +47,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1040.54,144.0,896.54, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1214.92,144.0,1070.92,0.0,1214.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1047.71,144.0,903.71,0.0,1047.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-generator.xml,1545.52,144.0,873.25,0.0,1017.25,144.0,4.85,148.85,0.0,0.0,0.0,0.0,379.42,379.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,1075.4,144.0,931.4,0.0,1075.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,1075.7,144.0,931.7,0.0,1075.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,950.2,144.0,553.02,0.0,697.02,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,930.16,144.0,546.72,0.0,690.72,144.0,95.44,239.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,1456.89,144.0,1023.58,0.0,1167.58,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,7 +60,7 @@ base-bldgtype-multifamily.xml,1166.1,144.0,873.25,0.0,1017.25,144.0,4.85,148.85, base-dhw-combi-tankless-outside.xml,1219.08,144.0,713.53,0.0,857.53,144.0,217.55,361.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-combi-tankless.xml,1227.99,144.0,713.85,0.0,857.85,144.0,226.14,370.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-2-speed.xml,1213.75,144.0,1069.75,0.0,1213.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-gshp.xml,1387.61,144.0,1243.61,0.0,1387.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-gshp.xml,1388.62,144.0,1244.62,0.0,1388.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-hpwh.xml,1472.89,144.0,988.81,0.0,1132.81,144.0,196.08,340.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1268.63,144.0,1124.63,0.0,1268.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1189.31,144.0,1045.31,0.0,1189.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -211,11 +211,11 @@ base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,1619.53,144.0,1160.98,0.0, base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1597.72,144.0,1139.31,0.0,1283.31,144.0,170.41,314.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-furnace-gas-only.xml,1494.97,144.0,1033.82,0.0,1177.82,144.0,173.15,317.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1665.9,144.0,1203.02,0.0,1347.02,144.0,174.88,318.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1287.0,144.0,1143.0,0.0,1287.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1366.77,144.0,1222.77,0.0,1366.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1476.2,144.0,1332.2,0.0,1476.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1462.01,144.0,1318.01,0.0,1462.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1462.01,144.0,1318.01,0.0,1462.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1289.67,144.0,1145.67,0.0,1289.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1367.93,144.0,1223.93,0.0,1367.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1477.9,144.0,1333.9,0.0,1477.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1463.39,144.0,1319.39,0.0,1463.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1463.39,144.0,1319.39,0.0,1463.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,1265.67,144.0,1121.67,0.0,1265.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,1241.94,144.0,1097.94,0.0,1241.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,1363.66,144.0,1219.66,0.0,1363.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -285,20 +285,20 @@ base-hvac-furnace-oil-only.xml,1760.65,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1798.62,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,621.61,621.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-wood-only.xml,1525.16,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-borefield-configuration.xml,1463.02,144.0,1319.02,0.0,1463.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-count.xml,1462.2,144.0,1318.2,0.0,1462.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-diameter.xml,1462.05,144.0,1318.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-length.xml,1459.99,144.0,1315.99,0.0,1459.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-spacing.xml,1460.69,144.0,1316.69,0.0,1460.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-ground-diffusivity.xml,1462.0,144.0,1318.0,0.0,1462.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-grout-conductivity.xml,1461.95,144.0,1317.95,0.0,1461.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-loop-flow.xml,1462.04,144.0,1318.04,0.0,1462.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-conductivity.xml,1461.33,144.0,1317.33,0.0,1461.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-diameter.xml,1461.41,144.0,1317.41,0.0,1461.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-shank-spacing.xml,1460.27,144.0,1316.27,0.0,1460.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1270.71,144.0,1126.71,0.0,1270.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1361.93,144.0,1217.93,0.0,1361.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1461.26,144.0,1317.26,0.0,1461.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-borefield-configuration.xml,1465.06,144.0,1321.06,0.0,1465.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-count.xml,1463.77,144.0,1319.77,0.0,1463.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-diameter.xml,1463.16,144.0,1319.16,0.0,1463.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-length.xml,1460.48,144.0,1316.48,0.0,1460.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-spacing.xml,1461.23,144.0,1317.23,0.0,1461.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-ground-diffusivity.xml,1463.32,144.0,1319.32,0.0,1463.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-grout-conductivity.xml,1463.29,144.0,1319.29,0.0,1463.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-loop-flow.xml,1463.12,144.0,1319.12,0.0,1463.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-conductivity.xml,1462.53,144.0,1318.53,0.0,1462.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-diameter.xml,1462.63,144.0,1318.63,0.0,1462.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-shank-spacing.xml,1461.32,144.0,1317.32,0.0,1461.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1272.52,144.0,1128.52,0.0,1272.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1362.7,144.0,1218.7,0.0,1362.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump.xml,1462.35,144.0,1318.35,0.0,1462.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1774.69,144.0,1630.69,0.0,1774.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1604.26,144.0,1460.26,0.0,1604.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1587.1,144.0,1443.1,0.0,1587.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -306,7 +306,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1683.26,144.0,1222. base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1632.51,144.0,1172.18,0.0,1316.18,144.0,172.33,316.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1611.04,144.0,1150.71,0.0,1294.71,144.0,172.33,316.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1493.87,144.0,1028.54,0.0,1172.54,144.0,177.33,321.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1522.01,144.0,1378.01,0.0,1522.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1523.32,144.0,1379.32,0.0,1523.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1276.65,144.0,1132.65,0.0,1276.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1498.26,144.0,1354.26,0.0,1498.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1255.32,144.0,1111.32,0.0,1255.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -319,7 +319,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1540.19,144.0,1187.77 base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1639.43,144.0,1184.52,0.0,1328.52,0.0,0.0,0.0,0.0,310.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1397.25,144.0,1253.25,0.0,1397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ductless.xml,1397.25,144.0,1253.25,0.0,1397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-multiple.xml,2257.9,144.0,1729.32,0.0,1873.32,144.0,51.35,195.35,0.0,90.6,90.6,0.0,98.63,98.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2258.74,144.0,1730.07,0.0,1874.07,144.0,51.37,195.37,0.0,90.63,90.63,0.0,98.67,98.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-none.xml,1959.67,144.0,1815.67,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1418.86,144.0,1012.92,0.0,1156.92,144.0,117.94,261.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-electricity.xml,1852.42,144.0,1708.42,0.0,1852.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 4fc1bd7e7305a68a46d15256ff0c1a6bc79170f1 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 20 Jun 2023 15:49:53 -0700 Subject: [PATCH 050/217] Try allowing variable spacing, depth, diameter by using linear interpolation. --- HPXMLtoOpenStudio/measure.xml | 6 +- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 84 +++++++++++++++++----- 2 files changed, 68 insertions(+), 22 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 51b691c072..c787a5070d 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 4b8fb8ba-cafc-4806-a036-a25f7e5daad2 - 2023-06-16T22:25:30Z + 274e4d31-03d8-48e6-a1d7-c37f61d4bddb + 2023-06-20T22:45:56Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -328,7 +328,7 @@ hvac_sizing.rb rb resource - 988A059C + 4BE1669F lighting.rb diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index b8a6d9d968..7fc85972c0 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1939,8 +1939,7 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) # spacing_to_depth_ratio = bore_spacing / bore_depth - lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] - gfnc_coeff = gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter) + lntts, gfnc_coeff = gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter) hvac_sizing_values.GSHP_Loop_flow = loop_flow hvac_sizing_values.GSHP_Bore_Depth = bore_depth @@ -2675,26 +2674,73 @@ def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, HPXML::GeothermalLoopBorefieldConfigurationU => 'U_configurations_5m_v1.0.json', HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => 'LopU_configurations_5m_v1.0.json' }[bore_config] g_functions_filepath = File.join(File.dirname(__FILE__), 'g_functions', g_functions_filename) - g_functions = JSON.parse(File.read(g_functions_filepath), symbolize_names: true) + g_functions_json = JSON.parse(File.read(g_functions_filepath), symbolize_names: true) - _b = UnitConversions.convert(bore_spacing, 'ft', 'm') - _h = UnitConversions.convert(bore_depth, 'ft', 'm') - _r_b = UnitConversions.convert(bore_diameter / 2.0, 'in', 'm') + actuals = { 'b' => UnitConversions.convert(bore_spacing, 'ft', 'm'), + 'h' => UnitConversions.convert(bore_depth, 'ft', 'm'), + 'rb' => UnitConversions.convert(bore_diameter / 2.0, 'in', 'm') } + actuals['b_over_h'] = actuals['b'] / actuals['h'] - # FIXME: find "closest" or "interpolated" b_h_rb instead of hardcoding below - b = 5 # m - h = 192 # m - rb = 0.08 # m - b_h_rb = "#{b}._#{h}._#{rb}" + g_library = { 24 => { 'b' => 5, 'd' => 2, 'rb' => 0.075 }, + 48 => { 'b' => 5, 'd' => 2, 'rb' => 0.075 }, + 96 => { 'b' => 5, 'd' => 2, 'rb' => 0.075 }, + 192 => { 'b' => 5, 'd' => 2, 'rb' => 0.08 }, + 384 => { 'b' => 5, 'd' => 2, 'rb' => 0.0875 } } + g_library.each do |h, b_d_rb| + g_library[h]['b_over_h'] = Float(b_d_rb['b']) / h + g_library[h]['rb_over_h'] = Float(b_d_rb['rb']) / h + end + + [[24, 48], [48, 96], [96, 192], [192, 384]].each do |h1, h2| + next unless actuals['h'] >= h1 && actuals['h'] < h2 + + pt1 = g_library[h1] + pt2 = g_library[h2] + + # linear interpolation on "g" values + logtimes = [] + gs = [] + [h1, h2].each do |h| + b_d_rb = g_library[h] + b = b_d_rb['b'] + rb = b_d_rb['rb'] + b_h_rb = "#{b}._#{h}._#{rb}" + + logtime, g = get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb) + logtimes << logtime + gs << g + end + g_functions = gs[0].zip(gs[1]).map { |v| linear_interpolate(actuals['b_over_h'], pt1['b_over_h'], v[0], pt2['b_over_h'], v[1]) } + + # linear interpolation on rb/h for correction factor + actuals['rb_over_h'] = linear_interpolate(actuals['b_over_h'], pt1['b_over_h'], pt1['rb_over_h'], pt2['b_over_h'], pt2['rb_over_h']) + rb = actuals['rb_over_h'] * actuals['h'] + rb_actual_over_rb = actuals['rb'] / rb + correction_factor = Math.log(rb_actual_over_rb) + g_functions = g_functions.map { |v| v - correction_factor } + + return logtimes[0], g_functions + end - g_functions.each do |_key_1, values_1| + fail "Could not find gfnc_coeff from '#{g_functions_filename}'." + end + + def self.linear_interpolate(x, x1, y1, x2, y2) + y = y1 + (x - x1) * ((y2 - y1) / (x2 - x1)) + return y + end + + def self.get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb) + g_functions_json.each do |_key_1, values_1| if [HPXML::GeothermalLoopBorefieldConfigurationRectangle, HPXML::GeothermalLoopBorefieldConfigurationL].include?(bore_config) bore_locations = values_1[:bore_locations] next if bore_locations.size != num_bore_holes - gfnc_coeff = values_1[:g][b_h_rb.to_sym].map { |v| Float(v) } - return gfnc_coeff + logtime = values_1[:logtime].map { |v| Float(v) } + g = values_1[:g][b_h_rb.to_sym].map { |v| Float(v) } + + return logtime, g elsif [HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle, HPXML::GeothermalLoopBorefieldConfigurationLopsidedU, HPXML::GeothermalLoopBorefieldConfigurationU].include?(bore_config) @@ -2702,14 +2748,14 @@ def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_locations = values_2[:bore_locations] next if bore_locations.size != num_bore_holes - gfnc_coeff = values_2[:g][b_h_rb.to_sym].map { |v| Float(v) } - puts gfnc_coeff - return gfnc_coeff + logtime = values_2[:logtime].map { |v| Float(v) } + g = values_2[:g][b_h_rb.to_sym].map { |v| Float(v) } + + return logtime, g end end end - - fail "Could not find gfnc_coeff from '#{g_functions_filename}'." + fail 'Could not find TODO.' end def self.calculate_average_r_value(surfaces) From cad89b207b3fa8ae208c45de9b72273d2798e383 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 20 Jun 2023 15:51:38 -0700 Subject: [PATCH 051/217] Update the docs for constraints on borehole length. --- docs/source/workflow_inputs.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 13738b7735..30f1a0e4f1 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2049,7 +2049,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ``LoopConfiguration`` string See [#]_ Yes ``LoopFlow`` double gal/min > 0 No autosized [#]_ ``BoreholesOrTrenches/Count`` integer > 0 No [#]_ autosized [#]_ - ``BoreholesOrTrenches/Length`` double ft > 0 No autosized [#]_ + ``BoreholesOrTrenches/Length`` double ft See [#]_ No autosized [#]_ ``BoreholesOrTrenches/Spacing`` double ft > 0 No 16.4 ``BoreholesOrTrenches/Diameter`` double in > 0 No 5.0 ``Grout/Type`` or ``Grout/Conductivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No standard Grout type or conductivity [#]_ @@ -2068,6 +2068,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ | - **U**: 7, 9, or 10 | - **Lopsided U**: 6, 7, 8, 9, or 10 .. [#] BoreholesOrTrenches/Count autosized per TODO. + .. [#] BoreholesOrTrenches/Length must be between 79 ft and 1,259 ft. .. [#] BoreholesOrTrenches/Length autosized per TODO. .. [#] Grout/Type choices are "standard" or "thermally enhanced". .. [#] | If Grout/Conductivity not provided, defaults based on Grout/Type: From 3ed3a1be6f17d3d91b66cde4e2558d0334d4f7d9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 20 Jun 2023 23:44:05 +0000 Subject: [PATCH 052/217] Latest results. --- workflow/tests/base_results/results.csv | 46 +++++++++---------- workflow/tests/base_results/results_bills.csv | 46 +++++++++---------- 2 files changed, 46 insertions(+), 46 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index d5ecbb9404..f5b11eaca6 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -47,7 +47,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.978,27.978,27.978,27.978,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.827,2.896,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1732.0,1822.7,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.964,27.964,27.964,27.964,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.813,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.8,1818.6,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 @@ -60,7 +60,7 @@ base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0, base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.375,37.375,37.375,37.375,0.0,0.0,0.0,0.0,0.0,0.0,5.356,0.375,0.0,0.0,2.601,1.075,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.906,0.0,13.362,9.232,0.614,2.925,0.0,0.0,0.0,3226.4,2136.3,21.043,15.1,0.0,3.604,3.633,0.511,7.495,0.628,10.5,-12.557,0.0,0.0,0.0,8.269,-0.061,4.802,0.0,0.728,0.0,3.123,-8.592,-2.5,0.0,0.012,-0.453,-0.05,2.713,-0.024,-1.912,11.726,0.0,0.0,0.0,-6.305,-0.057,-1.163,-3.084,-0.164,0.0,1.835,8.483,2.01,1354.8,997.6,11412.9,2618.9,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.328,37.328,37.328,37.328,0.0,0.0,0.0,0.0,0.0,0.0,5.338,0.373,0.0,0.0,2.577,1.073,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.895,0.0,13.358,9.232,0.614,2.924,0.0,0.0,0.0,3216.7,2119.2,20.994,15.085,0.0,3.604,3.633,0.511,7.495,0.628,10.5,-12.557,0.0,0.0,0.0,8.269,-0.061,4.802,0.0,0.728,0.0,3.111,-8.592,-2.5,0.0,0.012,-0.453,-0.05,2.713,-0.024,-1.912,11.726,0.0,0.0,0.0,-6.305,-0.057,-1.163,-3.084,-0.164,0.0,1.831,8.483,2.01,1354.8,997.6,11413.2,2619.0,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -211,11 +211,11 @@ base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.65,58.65,34.864,34.864, base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.98,57.98,34.213,34.213,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.428,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.296,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2121.8,2796.9,24.264,17.856,0.0,3.509,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.882,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,31792.0,20283.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-furnace-gas-only.xml,55.194,55.194,31.045,31.045,24.149,0.0,0.0,0.0,0.0,0.0,0.0,0.628,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,24.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.847,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.9,1637.3,25.24,0.0,0.0,3.487,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.613,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,31792.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-furnace-gas-room-ac.xml,60.517,60.517,36.126,36.126,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,5.051,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,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.076,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.7,3023.7,25.24,11.066,0.0,3.482,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.677,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,31792.0,14272.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.404,34.404,34.404,34.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.037,0.881,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.72,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2918.4,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.063,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.177,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24222.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.754,36.754,36.754,36.754,0.0,0.0,0.0,0.0,0.0,0.0,5.53,0.807,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,0.0,21.175,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3442.9,1637.3,23.741,0.0,0.0,3.547,3.636,0.512,7.483,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.892,-8.907,-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,1354.8,997.6,11399.5,2615.8,30706.0,0.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,40.056,40.056,40.056,40.056,0.0,0.0,0.0,0.0,0.0,0.0,5.539,0.697,0.0,0.0,2.564,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.219,0.0,13.316,9.233,0.614,0.0,0.0,0.0,0.0,3385.3,2568.3,23.184,15.823,0.0,3.548,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.774,-8.907,-2.499,0.0,-0.015,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.425,7.871,2.01,1354.8,997.6,11399.5,2615.8,30706.0,30706.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.621,39.621,39.621,39.621,0.0,0.0,0.0,0.0,0.0,0.0,5.271,0.372,0.0,0.0,2.5,1.037,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.86,0.0,12.86,9.233,0.614,0.0,0.0,0.0,0.0,3235.3,2604.4,21.488,15.116,0.0,3.595,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.377,-8.907,-2.499,0.0,0.005,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.951,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.621,39.621,39.621,39.621,0.0,0.0,0.0,0.0,0.0,0.0,5.271,0.372,0.0,0.0,2.5,1.037,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.86,0.0,12.86,9.233,0.614,0.0,0.0,0.0,0.0,3235.3,2604.4,21.488,15.116,0.0,3.595,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.377,-8.907,-2.499,0.0,0.005,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.951,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.248,34.248,34.248,34.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.895,0.867,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.692,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2851.9,0.0,17.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.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.15,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24222.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.705,36.705,36.705,36.705,0.0,0.0,0.0,0.0,0.0,0.0,5.491,0.797,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,0.0,21.142,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3421.5,1637.3,23.62,0.0,0.0,3.548,3.636,0.512,7.483,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.859,-8.907,-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,1354.8,997.6,11399.5,2615.8,30706.0,0.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.967,39.967,39.967,39.967,0.0,0.0,0.0,0.0,0.0,0.0,5.506,0.69,0.0,0.0,2.518,0.811,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.193,0.0,13.309,9.233,0.614,0.0,0.0,0.0,0.0,3365.7,2547.8,23.081,15.792,0.0,3.549,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.747,-8.907,-2.499,0.0,-0.015,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.419,7.871,2.01,1354.8,997.6,11399.5,2615.8,30706.0,30706.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.553,39.553,39.553,39.553,0.0,0.0,0.0,0.0,0.0,0.0,5.247,0.369,0.0,0.0,2.464,1.032,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.844,0.0,12.855,9.233,0.614,0.0,0.0,0.0,0.0,3221.9,2587.8,21.413,15.093,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.361,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.061,-0.165,0.0,1.945,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.553,39.553,39.553,39.553,0.0,0.0,0.0,0.0,0.0,0.0,5.247,0.369,0.0,0.0,2.464,1.032,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.844,0.0,12.855,9.233,0.614,0.0,0.0,0.0,0.0,3221.9,2587.8,21.413,15.093,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.361,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.061,-0.165,0.0,1.945,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.625,36.625,36.625,36.625,0.0,0.0,0.0,0.0,0.0,0.0,5.808,0.316,0.082,0.003,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,0.0,19.818,0.085,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4309.1,1637.3,19.511,0.0,0.0,3.595,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.502,-8.907,-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,1354.8,997.6,11399.5,2615.8,25749.0,0.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -285,20 +285,20 @@ base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0 base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-borefield-configuration.xml,39.671,39.671,39.671,39.671,0.0,0.0,0.0,0.0,0.0,0.0,5.286,0.371,0.0,0.0,2.545,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.579,0.0,12.693,9.233,0.614,0.0,0.0,0.0,0.0,3236.0,2616.1,21.067,14.745,0.0,3.605,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.088,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.78,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-count.xml,39.632,39.632,39.632,39.632,0.0,0.0,0.0,0.0,0.0,0.0,5.275,0.37,0.0,0.0,2.52,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.573,0.0,12.689,9.233,0.614,0.0,0.0,0.0,0.0,3229.3,2597.6,21.032,14.728,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.082,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.777,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-diameter.xml,39.613,39.613,39.613,39.613,0.0,0.0,0.0,0.0,0.0,0.0,5.273,0.369,0.0,0.0,2.506,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.571,0.0,12.687,9.233,0.614,0.0,0.0,0.0,0.0,3225.9,2596.5,20.961,14.728,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.08,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.775,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-length.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.366,0.0,0.0,2.463,1.019,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.553,0.0,12.681,9.233,0.614,0.0,0.0,0.0,0.0,3210.5,2572.6,20.884,14.698,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.061,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-spacing.xml,39.556,39.556,39.556,39.556,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.367,0.0,0.0,2.475,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.558,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3214.9,2578.5,20.904,14.705,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.067,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-ground-diffusivity.xml,39.618,39.618,39.618,39.618,0.0,0.0,0.0,0.0,0.0,0.0,5.275,0.37,0.0,0.0,2.509,1.025,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.572,0.0,12.687,9.233,0.614,0.0,0.0,0.0,0.0,3226.7,2594.5,20.96,14.725,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.081,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.775,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-grout-conductivity.xml,39.618,39.618,39.618,39.618,0.0,0.0,0.0,0.0,0.0,0.0,5.275,0.37,0.0,0.0,2.507,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.572,0.0,12.686,9.233,0.614,0.0,0.0,0.0,0.0,3227.7,2590.9,20.957,14.72,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.081,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.774,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-loop-flow.xml,39.612,39.612,39.612,39.612,0.0,0.0,0.0,0.0,0.0,0.0,5.274,0.37,0.0,0.0,2.504,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.571,0.0,12.686,9.233,0.614,0.0,0.0,0.0,0.0,3222.1,2591.8,20.939,14.721,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.08,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.774,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-conductivity.xml,39.595,39.595,39.595,39.595,0.0,0.0,0.0,0.0,0.0,0.0,5.267,0.369,0.0,0.0,2.496,1.023,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.567,0.0,12.685,9.233,0.614,0.0,0.0,0.0,0.0,3222.9,2587.5,20.939,14.716,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.076,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.773,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-diameter.xml,39.598,39.598,39.598,39.598,0.0,0.0,0.0,0.0,0.0,0.0,5.265,0.368,0.0,0.0,2.5,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.566,0.0,12.686,9.233,0.614,0.0,0.0,0.0,0.0,3222.3,2584.4,20.989,14.711,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.075,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.774,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.558,39.558,39.558,39.558,0.0,0.0,0.0,0.0,0.0,0.0,5.254,0.367,0.0,0.0,2.476,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.559,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3216.2,2577.6,20.907,14.704,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.067,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.889,33.889,33.889,33.889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.621,0.782,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.561,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2639.0,0.0,14.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.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.999,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.597,36.597,36.597,36.597,0.0,0.0,0.0,0.0,0.0,0.0,5.412,0.768,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,0.0,20.354,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3376.3,1637.3,22.322,0.0,0.0,3.576,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.049,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.589,39.589,39.589,39.589,0.0,0.0,0.0,0.0,0.0,0.0,5.265,0.368,0.0,0.0,2.493,1.023,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.566,0.0,12.685,9.233,0.614,0.0,0.0,0.0,0.0,3221.7,2587.0,20.935,14.715,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.074,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.773,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-borefield-configuration.xml,39.546,39.546,39.546,39.546,0.0,0.0,0.0,0.0,0.0,0.0,5.242,0.366,0.0,0.0,2.476,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.553,0.0,12.684,9.233,0.614,0.0,0.0,0.0,0.0,3212.2,2591.4,20.947,14.714,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.061,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.772,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-count.xml,39.547,39.547,39.547,39.547,0.0,0.0,0.0,0.0,0.0,0.0,5.246,0.366,0.0,0.0,2.474,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.555,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3213.1,2578.1,20.949,14.703,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.063,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-diameter.xml,39.552,39.552,39.552,39.552,0.0,0.0,0.0,0.0,0.0,0.0,5.251,0.367,0.0,0.0,2.473,1.02,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.558,0.0,12.682,9.233,0.614,0.0,0.0,0.0,0.0,3214.2,2580.0,20.901,14.707,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.066,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-length.xml,39.5,39.5,39.5,39.5,0.0,0.0,0.0,0.0,0.0,0.0,5.233,0.364,0.0,0.0,2.445,1.017,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.546,0.0,12.679,9.233,0.614,0.0,0.0,0.0,0.0,3204.1,2564.6,20.851,14.687,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.054,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.767,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-spacing.xml,39.492,39.492,39.492,39.492,0.0,0.0,0.0,0.0,0.0,0.0,5.23,0.364,0.0,0.0,2.441,1.017,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3202.6,2564.3,20.842,14.687,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.766,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-ground-diffusivity.xml,39.562,39.562,39.562,39.562,0.0,0.0,0.0,0.0,0.0,0.0,5.256,0.367,0.0,0.0,2.478,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3216.2,2581.5,20.908,14.709,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.069,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-grout-conductivity.xml,39.55,39.55,39.55,39.55,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.367,0.0,0.0,2.471,1.02,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.558,0.0,12.682,9.233,0.614,0.0,0.0,0.0,0.0,3214.7,2574.4,20.892,14.699,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.066,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-loop-flow.xml,39.563,39.563,39.563,39.563,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.367,0.0,0.0,2.477,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,12.682,9.233,0.614,0.0,0.0,0.0,0.0,3212.5,2579.7,20.892,14.706,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.069,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-conductivity.xml,39.54,39.54,39.54,39.54,0.0,0.0,0.0,0.0,0.0,0.0,5.248,0.366,0.0,0.0,2.466,1.02,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.556,0.0,12.681,9.233,0.614,0.0,0.0,0.0,0.0,3212.4,2574.1,20.886,14.699,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.064,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-diameter.xml,39.537,39.537,39.537,39.537,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.366,0.0,0.0,2.467,1.02,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.554,0.0,12.681,9.233,0.614,0.0,0.0,0.0,0.0,3210.7,2569.8,20.929,14.692,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.061,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.509,39.509,39.509,39.509,0.0,0.0,0.0,0.0,0.0,0.0,5.237,0.365,0.0,0.0,2.45,1.018,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.549,0.0,12.679,9.233,0.614,0.0,0.0,0.0,0.0,3206.8,2565.6,20.859,14.688,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.057,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.767,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.794,33.794,33.794,33.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.534,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.0,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.57,36.57,36.57,36.57,0.0,0.0,0.0,0.0,0.0,0.0,5.39,0.762,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,0.0,20.338,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3364.6,1637.3,22.259,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.032,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.54,39.54,39.54,39.54,0.0,0.0,0.0,0.0,0.0,0.0,5.247,0.366,0.0,0.0,2.466,1.02,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.555,0.0,12.681,9.233,0.614,0.0,0.0,0.0,0.0,3212.2,2574.9,20.887,14.701,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.063,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -306,7 +306,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.72 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.42,41.42,41.42,41.42,0.0,0.0,0.0,0.0,0.0,0.0,6.684,0.385,0.0,0.0,2.953,0.957,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.456,0.0,13.15,9.233,0.614,0.0,0.0,0.0,0.0,3455.6,2736.7,21.871,15.73,0.0,3.576,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.988,-8.907,-2.499,0.0,-0.008,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.249,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.36,41.36,41.36,41.36,0.0,0.0,0.0,0.0,0.0,0.0,6.664,0.383,0.0,0.0,2.92,0.953,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.444,0.0,13.145,9.233,0.614,0.0,0.0,0.0,0.0,3444.6,2722.0,21.819,15.711,0.0,3.576,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.976,-8.907,-2.499,0.0,-0.008,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.245,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -319,7 +319,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668, base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.405,66.405,51.953,51.953,7.164,3.604,3.684,0.0,0.0,0.0,13.671,0.863,0.2,0.008,6.216,0.555,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.604,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.735,0.208,18.972,9.233,0.615,0.0,0.0,0.0,4.0,6463.1,4059.3,37.937,22.687,0.0,3.416,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.333,-8.919,-2.502,0.0,-0.122,-0.445,-0.049,2.738,-0.021,-1.886,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.246,7.859,2.007,1354.8,997.6,11399.5,2615.8,59200.0,36799.2,10236.0,6.8,91.76,36503.0,13294.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.293,66.293,51.861,51.861,7.155,3.599,3.679,0.0,0.0,0.0,13.641,0.858,0.197,0.008,6.164,0.552,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.667,0.205,18.96,9.233,0.615,0.0,0.0,0.0,3.0,6379.1,4054.4,37.469,22.828,0.0,3.418,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.265,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.235,7.859,2.007,1354.8,997.6,11399.5,2615.8,59200.0,36799.2,10236.0,6.8,91.76,36503.0,13294.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.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,1354.8,997.6,8540.6,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 base-hvac-portable-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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 d032607543..d21bd52003 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -47,7 +47,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1040.54,144.0,896.54, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1214.92,144.0,1070.92,0.0,1214.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1047.71,144.0,903.71,0.0,1047.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-generator.xml,1545.52,144.0,873.25,0.0,1017.25,144.0,4.85,148.85,0.0,0.0,0.0,0.0,379.42,379.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,1075.7,144.0,931.7,0.0,1075.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,1075.22,144.0,931.22,0.0,1075.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,950.2,144.0,553.02,0.0,697.02,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,930.16,144.0,546.72,0.0,690.72,144.0,95.44,239.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,1456.89,144.0,1023.58,0.0,1167.58,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,7 +60,7 @@ base-bldgtype-multifamily.xml,1166.1,144.0,873.25,0.0,1017.25,144.0,4.85,148.85, base-dhw-combi-tankless-outside.xml,1219.08,144.0,713.53,0.0,857.53,144.0,217.55,361.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-combi-tankless.xml,1227.99,144.0,713.85,0.0,857.85,144.0,226.14,370.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-2-speed.xml,1213.75,144.0,1069.75,0.0,1213.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-gshp.xml,1388.62,144.0,1244.62,0.0,1388.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-gshp.xml,1387.05,144.0,1243.05,0.0,1387.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-hpwh.xml,1472.89,144.0,988.81,0.0,1132.81,144.0,196.08,340.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1268.63,144.0,1124.63,0.0,1268.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1189.31,144.0,1045.31,0.0,1189.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -211,11 +211,11 @@ base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,1619.53,144.0,1160.98,0.0, base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1597.72,144.0,1139.31,0.0,1283.31,144.0,170.41,314.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-furnace-gas-only.xml,1494.97,144.0,1033.82,0.0,1177.82,144.0,173.15,317.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1665.9,144.0,1203.02,0.0,1347.02,144.0,174.88,318.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1289.67,144.0,1145.67,0.0,1289.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1367.93,144.0,1223.93,0.0,1367.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1477.9,144.0,1333.9,0.0,1477.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1463.39,144.0,1319.39,0.0,1463.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1463.39,144.0,1319.39,0.0,1463.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1284.48,144.0,1140.48,0.0,1284.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1366.32,144.0,1222.32,0.0,1366.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1474.92,144.0,1330.92,0.0,1474.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1461.14,144.0,1317.14,0.0,1461.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1461.14,144.0,1317.14,0.0,1461.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,1265.67,144.0,1121.67,0.0,1265.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,1241.94,144.0,1097.94,0.0,1241.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,1363.66,144.0,1219.66,0.0,1363.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -285,20 +285,20 @@ base-hvac-furnace-oil-only.xml,1760.65,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1798.62,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,621.61,621.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-wood-only.xml,1525.16,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-borefield-configuration.xml,1465.06,144.0,1321.06,0.0,1465.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-count.xml,1463.77,144.0,1319.77,0.0,1463.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-diameter.xml,1463.16,144.0,1319.16,0.0,1463.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-length.xml,1460.48,144.0,1316.48,0.0,1460.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-spacing.xml,1461.23,144.0,1317.23,0.0,1461.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-ground-diffusivity.xml,1463.32,144.0,1319.32,0.0,1463.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-grout-conductivity.xml,1463.29,144.0,1319.29,0.0,1463.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-loop-flow.xml,1463.12,144.0,1319.12,0.0,1463.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-conductivity.xml,1462.53,144.0,1318.53,0.0,1462.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-diameter.xml,1462.63,144.0,1318.63,0.0,1462.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-shank-spacing.xml,1461.32,144.0,1317.32,0.0,1461.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1272.52,144.0,1128.52,0.0,1272.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1362.7,144.0,1218.7,0.0,1362.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1462.35,144.0,1318.35,0.0,1462.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-borefield-configuration.xml,1460.9,144.0,1316.9,0.0,1460.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-count.xml,1460.95,144.0,1316.95,0.0,1460.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-diameter.xml,1461.12,144.0,1317.12,0.0,1461.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-length.xml,1459.39,144.0,1315.39,0.0,1459.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-spacing.xml,1459.11,144.0,1315.11,0.0,1459.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-ground-diffusivity.xml,1461.45,144.0,1317.45,0.0,1461.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-grout-conductivity.xml,1461.04,144.0,1317.04,0.0,1461.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-loop-flow.xml,1461.48,144.0,1317.48,0.0,1461.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-conductivity.xml,1460.72,144.0,1316.72,0.0,1460.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-diameter.xml,1460.62,144.0,1316.62,0.0,1460.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-shank-spacing.xml,1459.69,144.0,1315.69,0.0,1459.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1269.38,144.0,1125.38,0.0,1269.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1361.79,144.0,1217.79,0.0,1361.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump.xml,1460.7,144.0,1316.7,0.0,1460.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1774.69,144.0,1630.69,0.0,1774.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1604.26,144.0,1460.26,0.0,1604.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1587.1,144.0,1443.1,0.0,1587.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -306,7 +306,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1683.26,144.0,1222. base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1632.51,144.0,1172.18,0.0,1316.18,144.0,172.33,316.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1611.04,144.0,1150.71,0.0,1294.71,144.0,172.33,316.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1493.87,144.0,1028.54,0.0,1172.54,144.0,177.33,321.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1523.32,144.0,1379.32,0.0,1523.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1521.33,144.0,1377.33,0.0,1521.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1276.65,144.0,1132.65,0.0,1276.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1498.26,144.0,1354.26,0.0,1498.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1255.32,144.0,1111.32,0.0,1255.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -319,7 +319,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1540.19,144.0,1187.77 base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1639.43,144.0,1184.52,0.0,1328.52,0.0,0.0,0.0,0.0,310.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1397.25,144.0,1253.25,0.0,1397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ductless.xml,1397.25,144.0,1253.25,0.0,1397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-multiple.xml,2258.74,144.0,1730.07,0.0,1874.07,144.0,51.37,195.37,0.0,90.63,90.63,0.0,98.67,98.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-multiple.xml,2255.33,144.0,1727.0,0.0,1871.0,144.0,51.3,195.3,0.0,90.5,90.5,0.0,98.53,98.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-none.xml,1959.67,144.0,1815.67,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1418.86,144.0,1012.92,0.0,1156.92,144.0,117.94,261.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-electricity.xml,1852.42,144.0,1708.42,0.0,1852.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 95bc5ca6b00a0263b7293a37da2cef37622ec08a Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 20 Jun 2023 17:12:06 -0700 Subject: [PATCH 053/217] Defaults test needs valid bore length. --- HPXMLtoOpenStudio/measure.xml | 8 ++++---- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 2 -- HPXMLtoOpenStudio/tests/test_defaults.rb | 4 ++-- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index c787a5070d..c4006fee1e 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 274e4d31-03d8-48e6-a1d7-c37f61d4bddb - 2023-06-20T22:45:56Z + 007aeff3-f54a-422f-8529-c60a09f115fe + 2023-06-21T00:11:30Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -328,7 +328,7 @@ hvac_sizing.rb rb resource - 4BE1669F + B0CEDD0F lighting.rb @@ -538,7 +538,7 @@ test_defaults.rb rb test - 8DB0A847 + 4079EB50 test_enclosure.rb diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 7fc85972c0..8f4c5d9628 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1937,8 +1937,6 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) fail "Number of bore holes (#{num_bore_holes}) with borefield configuration '#{bore_config}' not supported." end - # spacing_to_depth_ratio = bore_spacing / bore_depth - lntts, gfnc_coeff = gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter) hvac_sizing_values.GSHP_Loop_flow = loop_flow diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 971a44b7e8..021c14e66e 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1685,7 +1685,7 @@ def test_geothermal_loops hpxml.geothermal_loops[0].loop_flow = 1 hpxml.geothermal_loops[0].num_bore_holes = 2 hpxml.geothermal_loops[0].bore_spacing = 3 - hpxml.geothermal_loops[0].bore_length = 4 + hpxml.geothermal_loops[0].bore_length = 100 hpxml.geothermal_loops[0].bore_diameter = 5 hpxml.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutTypeThermallyEnhanced hpxml.geothermal_loops[0].grout_conductivity = 6 @@ -1695,7 +1695,7 @@ def test_geothermal_loops hpxml.geothermal_loops[0].bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, 2, 3, 4, 5, HPXML::GeothermalLoopGroutTypeThermallyEnhanced, 6, 7, 1.0, 9, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, 2, 3, 100, 5, HPXML::GeothermalLoopGroutTypeThermallyEnhanced, 6, 7, 1.0, 9, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults hpxml.geothermal_loops[0].loop_flow = nil From 5b4cdc5d50533b8ca552cc86a8ea70d4091fb0ea Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 22 Jun 2023 09:32:03 -0700 Subject: [PATCH 054/217] Use already existing interp2 method. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 22 ++++++++++++++-------- ReportUtilityBills/measure.xml | 10 ++-------- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index c4006fee1e..7770987d21 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 007aeff3-f54a-422f-8529-c60a09f115fe - 2023-06-21T00:11:30Z + 9a12cab3-3694-44cb-bb3b-484a738d98ff + 2023-06-22T16:31:30Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -328,7 +328,7 @@ hvac_sizing.rb rb resource - B0CEDD0F + 5159C9EC lighting.rb diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 8f4c5d9628..a3c17ed8a1 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -2708,26 +2708,31 @@ def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, logtimes << logtime gs << g end - g_functions = gs[0].zip(gs[1]).map { |v| linear_interpolate(actuals['b_over_h'], pt1['b_over_h'], v[0], pt2['b_over_h'], v[1]) } + x = actuals['b_over_h'] + x0 = pt1['b_over_h'] + x1 = pt2['b_over_h'] + g_functions = gs[0].zip(gs[1]).map { |v| MathTools.interp2(x, x0, x1, v[0], v[1]) } # linear interpolation on rb/h for correction factor - actuals['rb_over_h'] = linear_interpolate(actuals['b_over_h'], pt1['b_over_h'], pt1['rb_over_h'], pt2['b_over_h'], pt2['rb_over_h']) + x = actuals['b_over_h'] + x0 = pt1['b_over_h'] + x1 = pt2['b_over_h'] + f0 = pt1['rb_over_h'] + f1 = pt2['rb_over_h'] + actuals['rb_over_h'] = MathTools.interp2(x, x0, x1, f0, f1) rb = actuals['rb_over_h'] * actuals['h'] rb_actual_over_rb = actuals['rb'] / rb correction_factor = Math.log(rb_actual_over_rb) g_functions = g_functions.map { |v| v - correction_factor } + fail "Found different logtimes for '#{bore_config}' with H=#{h1} and H=#{h2}." if logtimes[0] != logtimes[1] + return logtimes[0], g_functions end fail "Could not find gfnc_coeff from '#{g_functions_filename}'." end - def self.linear_interpolate(x, x1, y1, x2, y2) - y = y1 + (x - x1) * ((y2 - y1) / (x2 - x1)) - return y - end - def self.get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb) g_functions_json.each do |_key_1, values_1| if [HPXML::GeothermalLoopBorefieldConfigurationRectangle, @@ -2753,7 +2758,8 @@ def self.get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb) end end end - fail 'Could not find TODO.' + + fail "Could not find g-values for '#{bore_config}' with '#{num_bore_holes}' boreholes." end def self.calculate_average_r_value(surfaces) diff --git a/ReportUtilityBills/measure.xml b/ReportUtilityBills/measure.xml index 9f9047d0dd..9d1f30a739 100644 --- a/ReportUtilityBills/measure.xml +++ b/ReportUtilityBills/measure.xml @@ -3,8 +3,8 @@ 3.1 report_utility_bills ca88a425-e59a-4bc4-af51-c7e7d1e960fe - 86301666-d671-409e-bf03-1d4bba6b2a93 - 2023-05-25T23:36:47Z + 9b6bc2d9-7195-4301-a4ef-6f0a0a41f3e7 + 2023-06-22T16:27:48Z 15BF4E57 ReportUtilityBills Utility Bills Report @@ -233,12 +233,6 @@ test F96CB80F - - results_bills.csv - csv - test - ED0D6618 - utility_bills_test.rb rb From 2d162b31e732e7b724f800abe1876260435b014c Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 27 Jun 2023 08:34:44 -0700 Subject: [PATCH 055/217] Add a validation test for invalid bore holes with a configuration. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/tests/test_validation.rb | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 178c853e36..4d36af3049 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 24e53cd5-378b-4472-81a0-b941b1472adf - 2023-06-22T16:33:15Z + 5c173250-7086-4f20-8eca-411a99af5983 + 2023-06-27T15:34:17Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -610,7 +610,7 @@ test_validation.rb rb test - 9A8CB3A9 + 245ED2FD test_water_heater.rb diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 92f020f4fc..bb5573569c 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -817,6 +817,7 @@ def test_ruby_error_messages 'hvac-distribution-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-cooling' => ["Multiple cooling systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], + 'hvac-gshp-invalid-boreholes' => ["Number of bore holes (3) with borefield configuration 'L' not supported"], 'hvac-inconsistent-fan-powers' => ["Fan powers for heating system 'HeatingSystem1' and cooling system 'CoolingSystem1' are attached to a single distribution system and therefore must be the same."], 'hvac-invalid-distribution-system-type' => ["Incorrect HVAC distribution system type for HVAC type: 'Furnace'. Should be one of: ["], 'hvac-shared-boiler-multiple' => ['More than one shared heating system found.'], @@ -974,6 +975,9 @@ def test_ruby_error_messages hpxml.heating_systems << hpxml.heating_systems[0].dup hpxml.heating_systems[1].id = "HeatingSystem#{hpxml.heating_systems.size}" hpxml.heating_systems[0].primary_system = false + elsif ['hvac-gshp-invalid-boreholes'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop-borefield-configuration.xml')) + hpxml.geothermal_loops[0].num_bore_holes = 3 elsif ['hvac-inconsistent-fan-powers'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) hpxml.cooling_systems[0].fan_watts_per_cfm = 0.55 From 3a3e17da754d5e794f8cc55d4b37919ac870435a Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 27 Jun 2023 09:07:51 -0700 Subject: [PATCH 056/217] New geothermal loop sample file with all fields defined. --- workflow/hpxml_inputs.json | 13 + .../base-hvac-geothermal-loop.xml | 577 ++++++++++++++++++ 2 files changed, 590 insertions(+) create mode 100644 workflow/sample_files/base-hvac-geothermal-loop.xml diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index a5f6392aa6..f0996d0495 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2347,6 +2347,19 @@ "sample_files/base-hvac-furnace-x3-dse.xml": { "parent_hpxml": "sample_files/base.xml" }, + "sample_files/base-hvac-geothermal-loop.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_loop_flow": 10.0, + "geothermal_loop_boreholes_or_trenches_count": 4, + "geothermal_loop_boreholes_or_trenches_length": 350.0, + "geothermal_loop_boreholes_or_trenches_spacing": 25.0, + "geothermal_loop_boreholes_or_trenches_diameter": 6.0, + "geothermal_loop_grout_conductivity": 0.5, + "geothermal_loop_pipe_conductivity": 0.3, + "geothermal_loop_pipe_diameter": "1\" pipe", + "geothermal_loop_pipe_shank_spacing": 2.5, + "geothermal_loop_borefield_configuration": "L" + }, "sample_files/base-hvac-geothermal-loop-ground-diffusivity.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "site_ground_diffusivity": 0.03 diff --git a/workflow/sample_files/base-hvac-geothermal-loop.xml b/workflow/sample_files/base-hvac-geothermal-loop.xml new file mode 100644 index 0000000000..956bfebfe4 --- /dev/null +++ b/workflow/sample_files/base-hvac-geothermal-loop.xml @@ -0,0 +1,577 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + 10.0 + + 4 + 350.0 + 25.0 + 6.0 + + + 0.5 + + + 0.3 + 1.0 + 2.5 + + + L + + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file From ab99f473af78a9129995d10a52d1f0fbe04694f7 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 27 Jun 2023 09:08:29 -0700 Subject: [PATCH 057/217] Stub an hvac test for checking geothermal loop and gfunction values. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/tests/test_hvac.rb | 30 ++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+), 3 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 4d36af3049..47a5fb13d9 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 5c173250-7086-4f20-8eca-411a99af5983 - 2023-06-27T15:34:17Z + 8f1deba3-80e2-483d-9ef4-853562822d4c + 2023-06-27T16:07:21Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -562,7 +562,7 @@ test_hvac.rb rb test - E42B9F8E + 3A1C860E
test_hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index 9530269350..a1751749b0 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -708,6 +708,36 @@ def test_ground_to_air_heat_pump assert(program_values.empty?) # Check no EMS program end + def test_geothermal_loop + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-hvac-geothermal-loop.xml')) + model, hpxml = _test_measure(args_hash) + + # Get HPXML values + geothermal_loop = hpxml.geothermal_loops[0] + bore_radius = UnitConversions.convert(geothermal_loop.bore_diameter / 2.0, 'in', 'm') + grout_conductivity = UnitConversions.convert(geothermal_loop.grout_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)') + pipe_cond = UnitConversions.convert(geothermal_loop.pipe_cond, 'Btu/(hr*ft*R)', 'W/(m*K)') + shank_spacing = UnitConversions.convert(geothermal_loop.shank_spacing, 'in', 'm') + + # Check ghx + assert(1, model.getGroundHeatExchangerVerticals.size) + ghx = model.getGroundHeatExchangerVerticals[0] + assert_in_epsilon(bore_radius, ghx.boreHoleRadius.get, 0.01) + assert_in_epsilon(grout_conductivity, ghx.groutThermalConductivity.get, 0.01) + assert_in_epsilon(pipe_cond, ghx.pipeThermalConductivity.get, 0.01) + assert_in_epsilon(shank_spacing, ghx.uTubeDistance.get, 0.01) + + # Check G-Functions + lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] # Expected values + gfnc_coeff = [2.1315561988716345, 2.4738153271940466, 2.7469568946536747, 2.9956725720204123, 3.1467376149806783, 3.3411921769988546, 3.6783626039289095, 4.08829282643351, 4.821537806237455, 5.3367290812854895, 5.7252441389588125, 6.290724504739807, 6.691379764734213, 7.611206803037245, 8.406586040216075, 8.626576106961634, 8.824984464247537, 9.019151156396122, 9.170525404484579, 9.300299594597792, 9.412470386165039, 9.506659481451495, 9.577046200210756, 9.657615475750577, 9.712712538365714, 9.739766928164627, 9.783557959201408] # Expected values + gFunctions = lntts.zip(gfnc_coeff) + ghx.gFunctions.each_with_index do |gFunction, i| + assert_in_epsilon(gFunction.lnValue, gFunctions[i][0], 0.01) + assert_in_epsilon(gFunction.gValue, gFunctions[i][1], 0.01) + end + end + def test_shared_chiller_baseboard args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-chiller-only-baseboard.xml')) From ee5e46f4bf3d6c3205501bb5fc05ccf9b7ccd964 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 27 Jun 2023 16:58:44 +0000 Subject: [PATCH 058/217] Latest results. --- workflow/tests/base_results/results.csv | 799 +++++++++--------- workflow/tests/base_results/results_bills.csv | 117 +-- 2 files changed, 461 insertions(+), 455 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index f5b11eaca6..5be7df79be 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -1,29 +1,29 @@ HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: 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: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),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 Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),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) -base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,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,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,22.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,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,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,22.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-appliances-dehumidifier-ief-portable.xml,34.583,34.583,33.262,33.262,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.604,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,1.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,1.18,0.0,30.514,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.1,9.476,14.236,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.307,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.344,9.575,1.88,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 base-appliances-dehumidifier-ief-whole-home.xml,34.611,34.611,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.655,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,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15,0.0,30.49,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2767.0,9.495,14.236,0.0,1.77,1.652,0.0,0.0,0.392,5.039,-4.911,0.0,0.0,0.0,1.312,-0.373,1.058,0.077,0.399,0.0,0.032,-4.78,-0.772,0.0,0.548,-0.009,0.0,0.0,0.206,1.933,17.103,0.0,0.0,0.0,1.819,-0.368,-0.332,-1.9,-0.091,0.0,0.344,9.532,1.875,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 base-appliances-dehumidifier-multiple.xml,34.574,34.574,33.184,33.184,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.813,1.88,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.541,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,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.452,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.3,9.552,14.236,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.035,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.344,9.512,1.873,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 base-appliances-dehumidifier.xml,34.548,34.548,33.243,33.243,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.818,1.882,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.593,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.174,0.0,30.467,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.0,9.548,14.236,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.344,9.498,1.87,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.167,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,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,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,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,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,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,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,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,12000.0,24000.0,0.0,51.62,90.68,12246.0,5542.0,2184.0,0.0,167.0,1864.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,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,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,24000.0,24000.0,0.0,28.58,87.08,23059.0,7546.0,4921.0,0.0,377.0,4200.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 -base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,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,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29390.0,0.0,9510.0,0.0,575.0,6763.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,67.293,67.293,40.782,40.782,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.921,0.983,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,0.0,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.831,0.0,16.409,9.18,0.614,0.0,0.0,0.0,0.0,2378.3,3719.8,26.547,20.758,4.552,1.164,5.544,0.518,7.651,0.635,15.399,-16.987,0.0,0.0,0.0,8.521,-0.082,7.083,0.0,0.73,0.0,3.11,-10.232,-3.183,0.005,0.021,-0.566,-0.053,2.687,-0.029,-3.027,17.676,0.0,0.0,0.0,-6.349,-0.075,-1.69,-4.153,-0.166,0.0,0.937,8.933,2.568,1354.8,997.6,11399.6,2521.8,36000.0,24000.0,0.0,6.8,91.76,37750.0,7491.0,10436.0,0.0,575.0,7551.0,2464.0,0.0,1949.0,724.0,6561.0,18712.0,182.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,24345.0,0.0,7508.0,0.0,575.0,6409.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.167,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,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,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,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,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,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,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,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 +base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,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,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 +base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,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,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,67.293,67.293,40.782,40.782,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.921,0.983,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,0.0,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.831,0.0,16.409,9.18,0.614,0.0,0.0,0.0,0.0,2378.3,3719.8,26.547,20.758,4.552,1.164,5.544,0.518,7.651,0.635,15.399,-16.987,0.0,0.0,0.0,8.521,-0.082,7.083,0.0,0.73,0.0,3.11,-10.232,-3.183,0.005,0.021,-0.566,-0.053,2.687,-0.029,-3.027,17.676,0.0,0.0,0.0,-6.349,-0.075,-1.69,-4.153,-0.166,0.0,0.937,8.933,2.568,1354.8,997.6,11399.6,2521.8,36000.0,24000.0,0.0,6.8,91.76,38184.0,7494.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18712.0,182.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-atticroof-radiant-barrier.xml,37.385,37.385,33.168,33.168,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.236,1.963,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,0.0,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.893,0.0,31.745,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3190.7,13.54,17.969,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.366,9.113,1.789,1354.8,997.6,9989.0,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,22162.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,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,0.0,22.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,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.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30047.0,4820.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.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,0.0,22.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,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,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,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,27461.0,7439.0,5147.0,0.0,575.0,5388.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,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,0.0,60.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,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,43121.0,0.0,3210.0,0.0,575.0,4222.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21138.0,8111.0,2576.0,0.0,575.0,3842.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21139.0,8111.0,2576.0,0.0,575.0,3842.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,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,0.0,22.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,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.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30483.0,4824.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.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,0.0,22.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,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,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,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,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,0.0,60.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,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.626,36.626,24.815,24.815,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.087,0.0,0.0,1.608,0.207,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,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,0.0,3.054,9.538,0.73,0.0,0.0,0.0,0.0,1572.5,2015.2,7.667,5.819,0.0,2.94,3.649,0.0,0.0,0.582,1.416,-1.582,0.0,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-4.25,-1.186,0.0,-0.922,-0.231,0.0,0.0,-0.054,-0.234,1.305,0.0,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.559,3.423,0.841,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-adjacent-to-multiple.xml,31.845,31.845,25.255,25.255,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,2.093,0.314,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,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,0.0,4.965,9.538,0.61,0.0,0.0,0.0,0.0,1562.3,2239.8,9.397,10.552,0.0,-0.004,3.294,0.0,0.0,1.383,4.001,-4.202,0.0,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-6.296,-1.142,0.0,0.0,-0.445,0.0,0.0,-0.418,-0.571,3.958,0.0,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.481,5.704,0.884,1354.8,997.6,11399.5,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,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.799,49.799,24.82,24.82,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,1.466,0.173,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,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,0.0,2.504,9.538,0.818,0.0,0.0,0.0,0.0,1579.9,2256.3,11.078,8.452,0.0,5.364,4.204,0.0,0.0,0.788,1.403,-1.699,0.0,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-4.485,-1.249,0.0,-1.186,-0.054,0.0,0.0,-0.054,-0.122,1.188,0.0,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.528,3.187,0.778,1354.8,997.6,11399.5,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,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 @@ -39,6 +39,7 @@ base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,2 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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1509.2,1333.8,3.459,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.356,23.356,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1522.4,1334.7,3.605,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.749,22.749,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1534.7,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.28,23.28,22.878,22.878,0.402,0.0,0.0,0.0,0.0,0.0,0.129,0.064,0.0,0.0,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.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1648.9,1334.7,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.303,23.303,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1536.8,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1528.0,1334.7,3.537,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.649,26.649,26.649,26.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.054,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1670.9,2071.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 @@ -57,104 +58,104 @@ base-bldgtype-multifamily-shared-pv.xml,26.899,2.451,26.223,1.775,0.676,0.0,0.0, base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.901,30.901,17.531,17.531,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,1052.2,1525.8,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-water-heater.xml,29.805,29.805,16.435,16.435,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,999.5,1473.1,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.328,37.328,37.328,37.328,0.0,0.0,0.0,0.0,0.0,0.0,5.338,0.373,0.0,0.0,2.577,1.073,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.895,0.0,13.358,9.232,0.614,2.924,0.0,0.0,0.0,3216.7,2119.2,20.994,15.085,0.0,3.604,3.633,0.511,7.495,0.628,10.5,-12.557,0.0,0.0,0.0,8.269,-0.061,4.802,0.0,0.728,0.0,3.111,-8.592,-2.5,0.0,0.012,-0.453,-0.05,2.713,-0.024,-1.912,11.726,0.0,0.0,0.0,-6.305,-0.057,-1.163,-3.084,-0.164,0.0,1.831,8.483,2.01,1354.8,997.6,11413.2,2619.0,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.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,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,0.0,18.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.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,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,0.0,24.587,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1066.9,770.9,9019.2,2069.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,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,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.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,388.3,286.5,3205.6,735.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.67,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,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,0.0,23.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,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,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,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.89,0.0,13.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,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-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,1075.0,777.3,9103.8,2089.0,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.106,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.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.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,472.0,347.5,3998.4,917.5,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,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,0.0,22.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,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,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,0.0,23.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,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,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,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,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,0.0,22.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,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,17.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,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,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,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,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,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,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,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,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,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,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,0.0,25.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,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,48000.0,36000.0,0.0,6.8,91.76,43353.0,7641.0,15016.0,0.0,575.0,8855.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,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,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,45325.0,7665.0,15016.0,0.0,575.0,9035.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,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,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,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,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,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,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 -base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.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,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 -base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,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,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,44054.0,8851.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.33,37.33,37.33,37.33,0.0,0.0,0.0,0.0,0.0,0.0,5.334,0.368,0.0,0.0,2.577,1.082,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.879,0.0,13.352,9.232,0.614,2.924,0.0,0.0,0.0,3214.6,2123.0,20.972,15.079,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.095,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.824,8.485,2.01,1354.8,997.6,11413.1,2618.9,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.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,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,0.0,18.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.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,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,0.0,24.587,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1066.9,770.9,9019.2,2069.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,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,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.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,388.3,286.5,3205.6,735.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.67,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,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,0.0,23.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,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,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,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.89,0.0,13.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,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-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,1075.0,777.3,9103.8,2089.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.106,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.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.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,472.0,347.5,3998.4,917.5,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,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,0.0,22.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,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,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,0.0,23.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,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,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,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,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,0.0,22.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,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,17.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,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,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,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,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,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,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,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,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,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,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,0.0,25.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,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,48000.0,36000.0,0.0,6.8,91.76,43789.0,7646.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,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,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,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,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,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,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,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,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 +base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.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,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 +base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,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,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-floortypes.xml,64.445,64.445,29.438,29.438,35.007,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,3.69,0.673,9.366,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,35.007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.788,0.0,11.181,9.342,0.619,0.0,0.0,0.0,0.0,1757.2,3482.5,27.934,20.772,0.0,3.519,3.647,0.0,0.0,0.654,9.893,-12.804,0.0,0.0,26.42,0.0,-0.18,2.047,0.0,0.786,0.0,7.347,-7.418,-1.565,0.0,0.392,-0.069,0.0,0.0,0.096,0.251,11.037,0.0,0.0,-7.528,0.0,-0.176,-0.275,-1.935,-0.093,0.0,2.77,5.786,1.082,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,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,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29361.0,8026.0,5506.0,0.0,575.0,6537.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31789.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31791.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,36858.0,8703.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,36857.0,8703.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,36857.0,8703.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,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,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,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,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,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,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34149.0,8646.0,7508.0,2294.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,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,22.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,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32435.0,8601.0,7508.0,626.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,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,22.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,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32508.0,8603.0,7508.0,696.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,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,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32435.0,8601.0,7508.0,626.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,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,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,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,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,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,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,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,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,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,22.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,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,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,22.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,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,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,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-split-level.xml,40.753,40.753,29.446,29.446,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.84,0.724,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,0.0,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,11.955,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2605.0,13.185,12.044,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.304,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.076,6.354,1.189,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,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 -base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,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,22.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,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,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,0.0,40.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,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34804.0,8652.0,918.0,0.0,575.0,15942.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.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,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,25022.0,8332.0,0.0,0.0,575.0,7398.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,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,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38222.0,8734.0,13788.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,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,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,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,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,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30939.0,8558.0,6680.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,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,22.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,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,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,0.0,40.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,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.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,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,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,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,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,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,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,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,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-foundation-ambient.xml,47.553,47.553,30.316,30.316,17.237,0.0,0.0,0.0,0.0,0.0,0.0,0.284,0.0,0.0,4.641,0.906,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,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,0.0,15.224,9.342,0.606,0.0,0.0,0.0,2.0,1739.5,3551.4,20.358,21.092,0.0,3.835,3.82,0.0,0.0,0.743,10.74,-11.371,0.0,0.0,9.918,0.0,-0.403,2.064,0.0,0.788,0.0,3.878,-6.786,-1.435,0.0,-0.045,-0.503,0.0,0.0,0.04,-0.774,12.469,0.0,0.0,-3.613,0.0,-0.397,-0.407,-2.432,-0.157,0.0,3.617,6.404,1.212,1354.8,997.6,11399.5,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,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,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,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,36000.0,24000.0,0.0,6.8,91.76,31139.0,8564.0,7508.0,0.0,620.0,7098.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 -base-foundation-complex.xml,84.607,84.607,38.022,38.022,46.584,0.0,0.0,0.0,0.0,0.0,0.0,0.768,0.0,0.0,5.65,1.161,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.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,43.626,0.0,19.675,9.233,0.618,0.0,0.0,0.0,10.0,2162.5,3687.0,36.439,21.917,0.0,3.406,3.674,0.524,24.018,0.66,10.62,-12.759,0.0,0.0,0.0,8.585,-0.152,6.147,0.0,0.744,0.0,9.411,-9.195,-2.572,0.0,0.044,-0.357,-0.045,6.047,-0.003,-1.447,11.522,0.0,0.0,0.0,-4.677,-0.144,-1.18,-3.353,-0.131,0.0,4.05,7.586,1.938,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34682.0,8659.0,7508.0,0.0,575.0,8829.0,0.0,0.0,2343.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,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,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31189.0,8565.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32565.0,8604.0,7508.0,0.0,575.0,7160.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,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,0.0,18.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,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,21226.0,0.0,7508.0,0.0,575.0,4819.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 +base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,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,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 +base-foundation-complex.xml,78.103,78.103,37.261,37.261,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.674,0.0,0.0,5.116,1.028,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.25,0.0,17.361,9.233,0.617,0.0,0.0,0.0,2.0,2171.5,3845.1,33.417,21.451,0.0,3.431,3.657,0.52,19.54,0.65,10.564,-12.717,0.0,0.0,0.0,8.705,-0.111,6.102,0.0,0.739,0.0,8.38,-9.124,-2.557,0.0,0.048,-0.359,-0.044,3.767,-0.003,-1.508,11.564,0.0,0.0,0.0,-4.519,-0.103,-1.227,-3.259,-0.137,0.0,3.71,7.657,1.952,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,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,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,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,0.0,18.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,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 base-foundation-multiple.xml,42.738,42.738,29.706,29.706,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.218,0.812,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,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,0.0,13.443,9.285,0.693,0.0,0.0,0.0,0.0,1723.6,2714.9,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,10.857,-11.246,0.0,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-4.636,-1.429,0.0,-0.098,-0.674,0.0,0.0,-0.018,-1.077,12.595,0.0,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.65,4.23,1.218,1354.8,997.6,11399.4,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,14275.0,222.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-slab.xml,39.954,39.954,29.299,29.299,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.9,0.74,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,0.0,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.972,0.0,12.215,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2611.5,12.703,12.011,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.078,6.379,1.193,1354.8,997.6,11399.5,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,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-unconditioned-basement-above-grade.xml,43.94,43.94,29.852,29.852,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.308,0.833,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,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,0.0,13.834,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.0,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,10.912,-11.281,0.0,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.069,12.56,0.0,0.0,-0.506,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.93,4.211,1.213,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,14270.0,226.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 @@ -163,322 +164,324 @@ base-foundation-unconditioned-basement-wall-insulation.xml,48.948,48.948,28.952, base-foundation-unconditioned-basement.xml,42.817,42.817,29.736,29.736,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,4.234,0.816,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,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,0.0,13.513,9.285,0.703,0.0,0.0,0.0,0.0,1723.8,2921.5,15.45,14.318,0.0,3.994,3.853,0.0,0.0,0.749,10.805,-11.235,0.0,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-4.634,-1.429,0.0,-0.077,-0.629,0.0,0.0,-0.0,-1.111,12.605,0.0,0.0,-0.673,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.724,4.231,1.218,1354.8,997.6,11399.5,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,14277.0,222.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,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,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,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,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,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,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,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,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-walkout-basement.xml,76.812,76.812,37.255,37.255,39.557,0.0,0.0,0.0,0.0,0.0,0.0,0.653,0.0,0.0,5.13,1.03,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.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,37.046,0.0,17.385,9.233,0.617,0.0,0.0,0.0,3.0,2171.3,3597.9,32.933,21.471,0.0,3.467,3.714,0.528,15.667,0.668,11.395,-12.889,0.0,0.0,0.0,10.155,-0.11,6.729,0.0,0.739,0.0,8.162,-9.092,-2.55,0.0,-0.04,-0.449,-0.056,2.947,-0.02,-1.783,11.95,0.0,0.0,0.0,-3.332,-0.102,-1.373,-3.362,-0.141,0.0,3.678,7.689,1.96,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34059.0,8644.0,7925.0,0.0,575.0,6274.0,0.0,0.0,2528.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,0.0,15.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.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,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,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,39288.0,16080.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.69,42.69,42.69,42.69,0.0,0.0,0.0,0.0,0.0,0.0,9.829,1.766,0.625,0.054,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,0.0,23.692,0.679,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7301.8,1637.3,25.597,0.0,0.0,3.448,3.637,0.512,7.485,0.629,10.517,-12.551,0.0,0.0,0.0,8.113,-0.066,4.805,0.0,0.728,0.0,7.479,-8.907,-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,1354.8,997.6,11399.5,2615.8,30706.0,0.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.191,46.191,46.191,46.191,0.0,0.0,0.0,0.0,0.0,0.0,9.727,1.011,0.469,0.025,3.46,1.059,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,0.494,13.136,9.233,0.614,0.0,0.0,0.0,0.0,6957.6,3218.7,24.38,15.851,0.0,3.496,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.107,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.238,7.871,2.01,1354.8,997.6,11399.5,2615.8,32561.0,32561.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,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,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,0.0,21.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.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,25971.0,25971.0,11059.0,51.62,90.68,11059.0,4355.0,2184.0,0.0,167.0,1864.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.826,44.826,44.826,44.826,0.0,0.0,0.0,0.0,0.0,0.0,9.162,0.998,0.046,0.006,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,0.0,19.529,0.052,11.986,9.233,0.614,0.0,0.0,0.0,0.0,6646.5,2916.0,22.763,13.183,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.036,-8.907,-2.499,0.0,0.036,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.066,7.871,2.01,1354.8,997.6,11399.5,2615.8,64975.0,64975.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,24186.0,24186.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.589,41.589,41.589,41.589,0.0,0.0,0.0,0.0,0.0,0.0,7.132,0.631,0.441,0.017,2.299,0.628,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.714,0.459,13.364,9.233,0.614,0.0,0.0,0.0,0.0,6927.3,2770.1,24.354,16.817,0.0,3.45,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.343,-8.907,-2.499,0.0,-0.016,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.47,7.871,2.01,1354.8,997.6,11399.5,2615.8,32943.0,32943.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.631,40.631,40.631,40.631,0.0,0.0,0.0,0.0,0.0,0.0,6.888,0.551,0.049,0.005,2.127,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.241,0.054,12.109,9.233,0.614,0.0,0.0,0.0,0.0,6743.7,2524.4,23.408,13.625,0.0,3.58,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.063,4.804,0.0,0.728,0.0,3.769,-8.907,-2.499,0.0,0.033,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.19,7.871,2.01,1354.8,997.6,11399.5,2615.8,64639.0,64639.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.163,51.163,37.631,37.631,13.533,0.0,0.0,0.0,0.0,0.0,4.159,0.371,0.0,0.14,2.311,0.209,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.77,11.263,14.484,9.233,0.615,0.0,0.0,2.0,0.0,3199.7,2682.1,23.554,17.721,0.0,3.374,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.401,-8.918,-2.502,0.0,-0.06,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.73,7.861,2.008,1354.8,997.6,11399.5,2615.8,33152.0,33152.0,23209.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.524,54.524,37.837,37.837,16.688,0.0,0.0,0.0,0.0,0.0,4.012,0.354,0.0,0.503,2.318,0.209,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,13.853,14.589,9.233,0.614,0.0,0.0,2.0,0.0,3340.9,2627.7,30.723,17.555,0.0,3.247,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.29,-0.061,4.804,0.0,0.728,0.0,12.383,-8.908,-2.5,0.0,-0.068,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.064,-0.165,0.0,3.737,7.87,2.01,1354.8,997.6,11399.5,2615.8,33152.0,33152.0,31792.0,6.8,91.76,39288.0,16080.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,26367.0,26367.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.183,41.183,41.183,41.183,0.0,0.0,0.0,0.0,0.0,0.0,7.323,0.751,0.133,0.009,2.318,0.209,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.86,0.141,14.588,9.233,0.614,0.0,0.0,0.0,0.0,7037.5,2627.7,24.691,17.555,0.0,3.367,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.551,-8.908,-2.5,0.0,-0.068,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.737,7.87,2.01,1354.8,997.6,11399.5,2615.8,33152.0,33152.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.896,40.896,40.896,40.896,0.0,0.0,0.0,0.0,0.0,0.0,7.275,0.644,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.845,0.057,13.53,9.233,0.614,0.0,0.0,0.0,0.0,6897.7,2562.2,23.861,16.36,0.0,3.444,3.635,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.477,-8.907,-2.499,0.0,-0.022,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.061,-0.165,0.0,2.648,7.871,2.01,1354.8,997.6,11399.5,2615.8,49709.0,49709.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-elec-only.xml,48.173,48.173,48.173,48.173,0.0,0.0,0.0,0.0,0.0,0.0,17.561,0.194,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.298,55.298,36.433,36.433,18.865,0.0,0.0,0.0,0.0,0.0,0.0,0.231,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.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,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.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2097.2,3330.0,16.457,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,23209.0,19922.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-only.xml,49.322,49.322,30.646,30.646,18.676,0.0,0.0,0.0,0.0,0.0,0.0,0.228,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,18.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2058.6,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20155.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,0.0,17.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.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20283.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.583,48.583,48.583,48.583,0.0,0.0,0.0,0.0,0.0,0.0,9.917,1.783,0.627,0.054,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.925,0.681,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7330.8,3330.1,25.597,17.819,0.0,3.442,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.547,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,30706.0,19922.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.484,55.484,40.703,40.703,14.78,0.0,0.0,0.0,0.0,0.0,4.131,0.357,0.0,1.255,3.46,1.059,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.482,15.296,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3476.2,3218.7,24.372,15.851,0.0,3.41,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.144,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.238,7.871,2.01,1354.8,997.6,11399.5,2615.8,32561.0,32561.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.484,55.484,40.703,40.703,14.78,0.0,0.0,0.0,0.0,0.0,4.131,0.357,0.0,1.255,3.46,1.059,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.482,15.296,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3476.2,3218.7,24.372,15.851,0.0,3.41,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.144,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.238,7.871,2.01,1354.8,997.6,11399.5,2615.8,32561.0,32561.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.583,47.583,35.911,35.911,11.672,0.0,0.0,0.0,0.0,0.0,2.48,0.097,0.0,0.655,2.159,0.078,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.182,11.744,12.267,9.233,0.614,0.0,0.0,0.0,0.0,2588.4,2190.0,19.512,13.381,0.0,3.586,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.71,-8.907,-2.499,0.0,0.027,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.365,7.871,2.01,1354.8,997.6,11399.5,2615.8,25707.0,25707.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.583,47.583,35.911,35.911,11.672,0.0,0.0,0.0,0.0,0.0,2.48,0.097,0.0,0.655,2.159,0.078,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.182,11.744,12.267,9.233,0.614,0.0,0.0,0.0,0.0,2588.4,2190.0,19.512,13.381,0.0,3.586,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.71,-8.907,-2.499,0.0,0.027,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.365,7.871,2.01,1354.8,997.6,11399.5,2615.8,25707.0,25707.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-evap-cooler-furnace-gas.xml,56.437,56.437,32.047,32.047,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,0.0,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,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.076,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.7,1915.1,25.24,11.075,0.0,3.482,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.677,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,31792.0,13458.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-elec-only.xml,53.715,53.715,53.715,53.715,0.0,0.0,0.0,0.0,0.0,0.0,22.67,0.628,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,0.0,22.847,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8664.8,1637.3,25.24,0.0,0.0,3.487,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.613,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,31792.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.65,58.65,34.864,34.864,23.786,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2122.6,2947.8,24.293,18.493,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.905,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,31792.0,20155.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.98,57.98,34.213,34.213,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.428,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.296,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2121.8,2796.9,24.264,17.856,0.0,3.509,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.882,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,31792.0,20283.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-only.xml,55.194,55.194,31.045,31.045,24.149,0.0,0.0,0.0,0.0,0.0,0.0,0.628,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,24.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.847,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.9,1637.3,25.24,0.0,0.0,3.487,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.613,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,31792.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-room-ac.xml,60.517,60.517,36.126,36.126,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,5.051,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,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.076,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.7,3023.7,25.24,11.066,0.0,3.482,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.677,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,31792.0,14272.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.248,34.248,34.248,34.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.895,0.867,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.692,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2851.9,0.0,17.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.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.15,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24222.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.705,36.705,36.705,36.705,0.0,0.0,0.0,0.0,0.0,0.0,5.491,0.797,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,0.0,21.142,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3421.5,1637.3,23.62,0.0,0.0,3.548,3.636,0.512,7.483,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.859,-8.907,-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,1354.8,997.6,11399.5,2615.8,30706.0,0.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.967,39.967,39.967,39.967,0.0,0.0,0.0,0.0,0.0,0.0,5.506,0.69,0.0,0.0,2.518,0.811,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.193,0.0,13.309,9.233,0.614,0.0,0.0,0.0,0.0,3365.7,2547.8,23.081,15.792,0.0,3.549,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.747,-8.907,-2.499,0.0,-0.015,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.419,7.871,2.01,1354.8,997.6,11399.5,2615.8,30706.0,30706.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.553,39.553,39.553,39.553,0.0,0.0,0.0,0.0,0.0,0.0,5.247,0.369,0.0,0.0,2.464,1.032,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.844,0.0,12.855,9.233,0.614,0.0,0.0,0.0,0.0,3221.9,2587.8,21.413,15.093,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.361,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.061,-0.165,0.0,1.945,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.553,39.553,39.553,39.553,0.0,0.0,0.0,0.0,0.0,0.0,5.247,0.369,0.0,0.0,2.464,1.032,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.844,0.0,12.855,9.233,0.614,0.0,0.0,0.0,0.0,3221.9,2587.8,21.413,15.093,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.361,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.061,-0.165,0.0,1.945,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.625,36.625,36.625,36.625,0.0,0.0,0.0,0.0,0.0,0.0,5.808,0.316,0.082,0.003,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,0.0,19.818,0.085,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4309.1,1637.3,19.511,0.0,0.0,3.595,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.502,-8.907,-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,1354.8,997.6,11399.5,2615.8,25749.0,0.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,19866.0,19866.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.941,38.941,38.941,38.941,0.0,0.0,0.0,0.0,0.0,0.0,5.858,0.319,0.084,0.003,2.159,0.078,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.087,12.267,9.233,0.614,0.0,0.0,0.0,0.0,4313.4,2190.0,19.512,13.381,0.0,3.592,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.534,-8.907,-2.499,0.0,0.027,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.365,7.871,2.01,1354.8,997.6,11399.5,2615.8,25707.0,25707.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.41,38.41,38.41,38.41,0.0,0.0,0.0,0.0,0.0,0.0,5.415,0.269,0.0,0.0,2.211,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.078,0.0,11.748,9.233,0.614,0.0,0.0,0.0,0.0,3649.5,2213.4,19.201,12.59,0.0,3.623,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.574,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.833,7.871,2.01,1354.8,997.6,11399.5,2615.8,41152.0,41152.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.761,37.761,37.761,37.761,0.0,0.0,0.0,0.0,0.0,0.0,5.087,0.103,0.048,0.0,2.055,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.048,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3723.6,2118.3,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23171.0,23171.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.931,47.931,35.611,35.611,0.0,12.32,0.0,0.0,0.0,0.0,3.013,0.093,0.0,0.0,2.038,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.658,7.392,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2851.6,2121.4,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,23171.0,23171.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23209.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.687,41.687,41.687,41.687,0.0,0.0,0.0,0.0,0.0,0.0,7.031,0.0,0.222,0.0,3.993,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,0.0,16.603,0.222,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2701.9,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,24611.0,24611.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.219,42.219,42.219,42.219,0.0,0.0,0.0,0.0,0.0,0.0,7.577,0.0,0.038,0.0,4.164,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2807.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,47663.0,47663.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23209.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.687,41.687,41.687,41.687,0.0,0.0,0.0,0.0,0.0,0.0,7.031,0.0,0.222,0.0,3.993,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,0.0,16.603,0.222,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2701.9,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,24611.0,24611.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.219,42.219,42.219,42.219,0.0,0.0,0.0,0.0,0.0,0.0,7.577,0.0,0.038,0.0,4.164,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2807.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,47663.0,47663.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,49.618,49.618,42.911,42.911,6.707,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.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,0.0,0.0,6.203,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2613.9,3427.6,16.935,14.883,0.0,2.872,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.461,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,31005.0,27561.0,0.0,0.0,100.0,31005.0,9028.0,7128.0,0.0,545.0,6084.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-stove-oil-only.xml,52.274,52.274,30.521,30.521,0.0,21.754,0.0,0.0,0.0,0.0,0.0,0.102,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,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.8,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize.xml,60.029,60.029,36.205,36.205,23.824,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.365,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2124.2,3189.8,24.351,18.003,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.952,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,31792.0,19922.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,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,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,24.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,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,19.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.929,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.276,11.121,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.39,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.179,15.199,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.042,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.535,15.232,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.756,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,26.265,15.613,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,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,0.0,47.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,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,70776.0,33116.0,15016.0,0.0,575.0,9035.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31013.0,7804.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,28177.0,4969.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31786.0,8577.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34050.0,10841.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32152.0,8944.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,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,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,0.0,14.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.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fixed-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,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,0.0,26.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,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,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,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,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,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,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-borefield-configuration.xml,39.546,39.546,39.546,39.546,0.0,0.0,0.0,0.0,0.0,0.0,5.242,0.366,0.0,0.0,2.476,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.553,0.0,12.684,9.233,0.614,0.0,0.0,0.0,0.0,3212.2,2591.4,20.947,14.714,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.061,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.772,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-count.xml,39.547,39.547,39.547,39.547,0.0,0.0,0.0,0.0,0.0,0.0,5.246,0.366,0.0,0.0,2.474,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.555,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3213.1,2578.1,20.949,14.703,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.063,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-diameter.xml,39.552,39.552,39.552,39.552,0.0,0.0,0.0,0.0,0.0,0.0,5.251,0.367,0.0,0.0,2.473,1.02,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.558,0.0,12.682,9.233,0.614,0.0,0.0,0.0,0.0,3214.2,2580.0,20.901,14.707,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.066,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-length.xml,39.5,39.5,39.5,39.5,0.0,0.0,0.0,0.0,0.0,0.0,5.233,0.364,0.0,0.0,2.445,1.017,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.546,0.0,12.679,9.233,0.614,0.0,0.0,0.0,0.0,3204.1,2564.6,20.851,14.687,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.054,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.767,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-spacing.xml,39.492,39.492,39.492,39.492,0.0,0.0,0.0,0.0,0.0,0.0,5.23,0.364,0.0,0.0,2.441,1.017,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3202.6,2564.3,20.842,14.687,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.766,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-ground-diffusivity.xml,39.562,39.562,39.562,39.562,0.0,0.0,0.0,0.0,0.0,0.0,5.256,0.367,0.0,0.0,2.478,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3216.2,2581.5,20.908,14.709,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.069,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-grout-conductivity.xml,39.55,39.55,39.55,39.55,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.367,0.0,0.0,2.471,1.02,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.558,0.0,12.682,9.233,0.614,0.0,0.0,0.0,0.0,3214.7,2574.4,20.892,14.699,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.066,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-loop-flow.xml,39.563,39.563,39.563,39.563,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.367,0.0,0.0,2.477,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,12.682,9.233,0.614,0.0,0.0,0.0,0.0,3212.5,2579.7,20.892,14.706,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.069,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-conductivity.xml,39.54,39.54,39.54,39.54,0.0,0.0,0.0,0.0,0.0,0.0,5.248,0.366,0.0,0.0,2.466,1.02,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.556,0.0,12.681,9.233,0.614,0.0,0.0,0.0,0.0,3212.4,2574.1,20.886,14.699,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.064,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-diameter.xml,39.537,39.537,39.537,39.537,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.366,0.0,0.0,2.467,1.02,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.554,0.0,12.681,9.233,0.614,0.0,0.0,0.0,0.0,3210.7,2569.8,20.929,14.692,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.061,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.509,39.509,39.509,39.509,0.0,0.0,0.0,0.0,0.0,0.0,5.237,0.365,0.0,0.0,2.45,1.018,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.549,0.0,12.679,9.233,0.614,0.0,0.0,0.0,0.0,3206.8,2565.6,20.859,14.688,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.057,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.767,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.794,33.794,33.794,33.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.534,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.0,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.57,36.57,36.57,36.57,0.0,0.0,0.0,0.0,0.0,0.0,5.39,0.762,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,0.0,20.338,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3364.6,1637.3,22.259,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.032,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.54,39.54,39.54,39.54,0.0,0.0,0.0,0.0,0.0,0.0,5.247,0.366,0.0,0.0,2.466,1.02,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.555,0.0,12.681,9.233,0.614,0.0,0.0,0.0,0.0,3212.2,2574.9,20.887,14.701,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.063,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.36,41.36,41.36,41.36,0.0,0.0,0.0,0.0,0.0,0.0,6.664,0.383,0.0,0.0,2.92,0.953,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.444,0.0,13.145,9.233,0.614,0.0,0.0,0.0,0.0,3444.6,2722.0,21.819,15.711,0.0,3.576,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.976,-8.907,-2.499,0.0,-0.008,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.245,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,0.0,12.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,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,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,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,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,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,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,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,26137.0,2928.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.293,66.293,51.861,51.861,7.155,3.599,3.679,0.0,0.0,0.0,13.641,0.858,0.197,0.008,6.164,0.552,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.667,0.205,18.96,9.233,0.615,0.0,0.0,0.0,3.0,6379.1,4054.4,37.469,22.828,0.0,3.418,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.265,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.235,7.859,2.007,1354.8,997.6,11399.5,2615.8,59200.0,36799.2,10236.0,6.8,91.76,36503.0,13294.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-walkout-basement.xml,64.814,64.814,36.328,36.328,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,4.532,0.884,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,0.0,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.677,0.0,14.89,9.233,0.615,0.0,0.0,0.0,0.0,2125.9,3513.1,26.787,19.805,0.0,3.523,3.688,0.52,7.364,0.646,11.292,-12.794,0.0,0.0,0.0,10.155,-0.066,6.639,0.0,0.728,0.0,6.073,-8.935,-2.506,0.0,-0.099,-0.515,-0.06,1.48,-0.031,-2.074,12.046,0.0,0.0,0.0,-3.677,-0.061,-1.529,-3.357,-0.16,0.0,3.264,7.844,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,0.0,15.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.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,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,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.645,42.645,42.645,42.645,0.0,0.0,0.0,0.0,0.0,0.0,9.823,1.762,0.591,0.052,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,0.0,23.588,0.643,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7296.6,1637.3,25.567,0.0,0.0,3.452,3.637,0.512,7.485,0.629,10.516,-12.551,0.0,0.0,0.0,8.112,-0.066,4.805,0.0,0.728,0.0,7.372,-8.907,-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,1354.8,997.6,11399.5,2615.8,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.145,46.145,46.145,46.145,0.0,0.0,0.0,0.0,0.0,0.0,9.718,1.011,0.443,0.024,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.466,13.102,9.233,0.614,0.0,0.0,0.0,0.0,6954.5,3209.9,24.358,15.771,0.0,3.499,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.018,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,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,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,0.0,21.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.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,25971.0,25971.0,11194.0,51.62,90.68,11194.0,4365.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.698,44.698,44.698,44.698,0.0,0.0,0.0,0.0,0.0,0.0,9.125,0.912,0.046,0.006,3.198,0.971,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.362,0.052,11.97,9.233,0.614,0.0,0.0,0.0,0.0,6628.4,2912.2,22.625,13.15,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.864,-8.907,-2.499,0.0,0.037,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.05,7.871,2.01,1354.8,997.6,11399.5,2615.8,65908.0,65908.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,24186.0,24186.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.554,41.554,41.554,41.554,0.0,0.0,0.0,0.0,0.0,0.0,7.131,0.629,0.416,0.017,2.294,0.626,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.433,13.325,9.233,0.614,0.0,0.0,0.0,0.0,6922.4,2762.7,24.33,16.718,0.0,3.453,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.249,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.431,7.871,2.01,1354.8,997.6,11399.5,2615.8,33416.0,33416.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.544,40.544,40.544,40.544,0.0,0.0,0.0,0.0,0.0,0.0,6.849,0.507,0.049,0.005,2.124,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.035,0.054,12.091,9.233,0.614,0.0,0.0,0.0,0.0,6732.2,2521.0,23.383,13.585,0.0,3.588,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.557,-8.907,-2.499,0.0,0.034,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.172,7.871,2.01,1354.8,997.6,11399.5,2615.8,65567.0,65567.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.171,51.171,37.619,37.619,13.551,0.0,0.0,0.0,0.0,0.0,4.154,0.37,0.0,0.138,2.31,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.722,11.262,14.452,9.233,0.615,0.0,0.0,2.0,0.0,3194.1,2672.7,23.547,17.679,0.0,3.375,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.35,-8.918,-2.502,0.0,-0.058,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.697,7.861,2.008,1354.8,997.6,11399.5,2615.8,33628.0,33628.0,23640.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.458,54.458,37.825,37.825,16.632,0.0,0.0,0.0,0.0,0.0,4.006,0.353,0.0,0.501,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,28.514,13.807,14.556,9.233,0.614,0.0,0.0,2.0,0.0,3328.2,2622.0,30.614,17.514,0.0,3.251,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.289,-0.061,4.804,0.0,0.728,0.0,12.284,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.063,-0.165,0.0,3.704,7.87,2.01,1354.8,997.6,11399.5,2615.8,33628.0,33628.0,32235.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,26367.0,26367.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.158,41.158,41.158,41.158,0.0,0.0,0.0,0.0,0.0,0.0,7.314,0.748,0.123,0.008,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.792,0.131,14.556,9.233,0.614,0.0,0.0,0.0,0.0,7031.0,2622.0,24.672,17.514,0.0,3.37,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.48,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.703,7.87,2.01,1354.8,997.6,11399.5,2615.8,33628.0,33628.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.898,40.898,40.898,40.898,0.0,0.0,0.0,0.0,0.0,0.0,7.281,0.641,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.771,0.057,13.49,9.233,0.614,0.0,0.0,0.0,0.0,6896.7,2561.9,23.811,16.273,0.0,3.447,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.401,-8.907,-2.499,0.0,-0.02,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.608,7.871,2.01,1354.8,997.6,11399.5,2615.8,50423.0,50423.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-elec-only.xml,48.203,48.203,48.203,48.203,0.0,0.0,0.0,0.0,0.0,0.0,17.594,0.191,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.2,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.331,55.331,36.429,36.429,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2096.7,3330.0,16.459,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,23640.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-gas-only.xml,49.354,49.354,30.642,30.642,18.712,0.0,0.0,0.0,0.0,0.0,0.0,0.224,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,18.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2057.9,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20155.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,0.0,17.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.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20283.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.538,48.538,48.538,48.538,0.0,0.0,0.0,0.0,0.0,0.0,9.911,1.779,0.593,0.052,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.645,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7326.8,3330.1,25.567,17.819,0.0,3.446,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.439,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,31147.0,19922.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.275,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.283,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.275,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.283,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.666,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,26139.0,26139.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.666,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-evap-cooler-furnace-gas.xml,56.319,56.319,32.044,32.044,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,0.0,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,1915.1,25.1,11.075,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,32235.0,13458.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-elec-only.xml,53.605,53.605,53.605,53.605,0.0,0.0,0.0,0.0,0.0,0.0,22.563,0.625,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,0.0,22.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8622.9,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.875,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2124.3,2947.8,24.237,18.493,0.0,3.51,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.863,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,32235.0,20155.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,32235.0,20283.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.248,34.248,34.248,34.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.895,0.867,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.692,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2851.9,0.0,17.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.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.15,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.684,36.684,36.684,36.684,0.0,0.0,0.0,0.0,0.0,0.0,5.476,0.791,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,0.0,21.061,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3413.9,1637.3,23.494,0.0,0.0,3.551,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.775,-8.907,-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,1354.8,997.6,11399.5,2615.8,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.933,39.933,39.933,39.933,0.0,0.0,0.0,0.0,0.0,0.0,5.492,0.686,0.0,0.0,2.507,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.116,0.0,13.27,9.233,0.614,0.0,0.0,0.0,0.0,3358.9,2541.2,22.968,15.706,0.0,3.552,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.667,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.379,7.871,2.01,1354.8,997.6,11399.5,2615.8,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,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,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-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,1354.8,997.6,11399.5,2615.8,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,19866.0,19866.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.91,38.91,38.91,38.91,0.0,0.0,0.0,0.0,0.0,0.0,5.84,0.317,0.073,0.002,2.16,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,0.0,19.98,0.075,12.245,9.233,0.614,0.0,0.0,0.0,0.0,4268.2,2191.0,19.501,13.372,0.0,3.593,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.501,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.402,38.402,38.402,38.402,0.0,0.0,0.0,0.0,0.0,0.0,5.406,0.268,0.0,0.0,2.213,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.045,0.0,11.734,9.233,0.614,0.0,0.0,0.0,0.0,3640.7,2214.0,19.188,12.558,0.0,3.624,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.54,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.818,7.871,2.01,1354.8,997.6,11399.5,2615.8,41843.0,41843.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.75,37.75,37.75,37.75,0.0,0.0,0.0,0.0,0.0,0.0,5.078,0.102,0.042,0.0,2.06,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.042,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3682.6,2120.6,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.614,35.614,0.0,12.321,0.0,0.0,0.0,0.0,3.012,0.092,0.0,0.0,2.043,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.658,7.393,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2846.2,2123.8,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,49.605,49.605,42.912,42.912,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.191,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2614.2,3427.5,16.894,14.883,0.0,2.873,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.449,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,31430.0,27561.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-stove-oil-only.xml,52.275,52.275,30.519,30.519,0.0,21.756,0.0,0.0,0.0,0.0,0.0,0.1,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,21.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.5,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize.xml,59.984,59.984,36.217,36.217,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.324,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2126.9,3189.8,24.296,18.003,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.91,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,32235.0,19922.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,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,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,24.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,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,19.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.929,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.276,11.121,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.39,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.179,15.199,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.042,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.535,15.232,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.756,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,26.265,15.613,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,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,0.0,47.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,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,71259.0,33168.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,28612.0,4972.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34496.0,10856.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32660.0,9020.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,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,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,0.0,14.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.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-fixed-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,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,0.0,26.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,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,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,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,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,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,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-borefield-configuration.xml,39.547,39.547,39.547,39.547,0.0,0.0,0.0,0.0,0.0,0.0,5.239,0.361,0.0,0.0,2.477,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.538,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3210.2,2594.4,20.925,14.708,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.046,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-count.xml,39.549,39.549,39.549,39.549,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.361,0.0,0.0,2.475,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3211.0,2581.1,20.927,14.697,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.047,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-diameter.xml,39.554,39.554,39.554,39.554,0.0,0.0,0.0,0.0,0.0,0.0,5.248,0.362,0.0,0.0,2.474,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.2,2583.0,20.879,14.701,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-length.xml,39.502,39.502,39.502,39.502,0.0,0.0,0.0,0.0,0.0,0.0,5.23,0.359,0.0,0.0,2.446,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.531,0.0,12.672,9.233,0.614,0.0,0.0,0.0,0.0,3202.1,2567.5,20.83,14.681,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.039,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-spacing.xml,39.494,39.494,39.494,39.494,0.0,0.0,0.0,0.0,0.0,0.0,5.227,0.359,0.0,0.0,2.441,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.53,0.0,12.672,9.233,0.614,0.0,0.0,0.0,0.0,3200.5,2567.2,20.821,14.681,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.037,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.759,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-ground-diffusivity.xml,39.564,39.564,39.564,39.564,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.362,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3214.1,2584.5,20.886,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-grout-conductivity.xml,39.552,39.552,39.552,39.552,0.0,0.0,0.0,0.0,0.0,0.0,5.249,0.362,0.0,0.0,2.471,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3212.6,2577.4,20.87,14.693,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-loop-flow.xml,39.565,39.565,39.565,39.565,0.0,0.0,0.0,0.0,0.0,0.0,5.254,0.363,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3210.4,2582.7,20.87,14.7,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-conductivity.xml,39.542,39.542,39.542,39.542,0.0,0.0,0.0,0.0,0.0,0.0,5.245,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.3,2577.1,20.864,14.693,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.762,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-diameter.xml,39.539,39.539,39.539,39.539,0.0,0.0,0.0,0.0,0.0,0.0,5.241,0.361,0.0,0.0,2.468,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.538,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3208.7,2572.8,20.907,14.686,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.046,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.511,39.511,39.511,39.511,0.0,0.0,0.0,0.0,0.0,0.0,5.234,0.36,0.0,0.0,2.45,1.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.533,0.0,12.673,9.233,0.614,0.0,0.0,0.0,0.0,3204.7,2568.5,20.838,14.682,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.041,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,39.345,39.345,39.345,39.345,0.0,0.0,0.0,0.0,0.0,0.0,5.17,0.352,0.0,0.0,2.365,1.017,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.495,0.0,12.662,9.233,0.614,0.0,0.0,0.0,0.0,3169.3,2532.8,20.711,14.634,0.0,3.608,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.001,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.75,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.794,33.794,33.794,33.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.534,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.0,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.57,36.57,36.57,36.57,0.0,0.0,0.0,0.0,0.0,0.0,5.39,0.762,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,0.0,20.338,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3364.6,1637.3,22.259,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.032,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.1,2577.8,20.865,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.358,41.358,41.358,41.358,0.0,0.0,0.0,0.0,0.0,0.0,6.658,0.379,0.0,0.0,2.92,0.961,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.424,0.0,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3442.3,2724.4,21.792,15.702,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.955,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.235,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,0.0,12.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,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,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,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,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,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,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,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.293,66.293,51.861,51.861,7.155,3.599,3.679,0.0,0.0,0.0,13.641,0.858,0.197,0.008,6.164,0.552,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.667,0.205,18.96,9.233,0.615,0.0,0.0,0.0,3.0,6379.1,4054.4,37.469,22.828,0.0,3.418,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.265,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.235,7.859,2.007,1354.8,997.6,11399.5,2615.8,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.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,1354.8,997.6,8540.6,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 -base-hvac-portable-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,0.0,3.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.01,-0.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,8000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,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,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,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,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,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,0.0,0.0,0.0,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,56.236,56.236,35.518,35.518,20.719,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,3.959,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,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.42,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,2961.2,20.504,15.145,0.0,3.61,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.932,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,28463.0,18434.0,0.0,6.8,91.76,28463.0,5254.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,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,0.0,15.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,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,3600.0,2400.0,0.0,6.8,91.76,28463.0,5254.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,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,0.0,22.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,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-kwh-per-year.xml,59.243,59.243,36.784,36.784,22.46,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.346,0.842,9.164,0.0,0.0,5.118,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.033,0.0,14.182,9.233,0.614,0.0,0.0,0.0,0.0,2193.9,3333.9,23.005,18.0,0.0,3.549,3.638,0.512,7.512,0.63,10.518,-12.549,0.0,0.0,0.0,8.291,-0.064,4.806,0.0,0.728,0.0,4.868,-8.907,-2.836,0.0,-0.051,-0.461,-0.051,2.688,-0.025,-1.933,11.731,0.0,0.0,0.0,-6.342,-0.06,-1.17,-3.09,-0.165,0.0,3.143,7.871,2.282,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,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,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,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,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,36000.0,24000.0,0.0,10.22,91.4,30246.0,8331.0,7102.0,0.0,543.0,6062.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-portable-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,0.0,3.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.01,-0.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,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,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,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,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,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,0.0,0.0,0.0,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,56.19,56.19,35.529,35.529,20.661,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,3.959,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,20.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,19.378,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2961.2,20.444,15.145,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.888,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,28898.0,18434.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,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,0.0,15.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,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,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,0.0,22.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,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-kwh-per-year.xml,60.469,60.469,39.553,39.553,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.535,0.889,9.163,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.996,9.233,0.613,0.0,0.0,0.0,0.0,2416.3,3795.3,22.788,18.414,0.0,3.575,3.655,0.514,7.569,0.633,10.56,-12.521,0.0,0.0,0.0,8.359,-0.067,4.811,0.0,0.729,0.0,4.568,-8.891,-4.249,0.0,-0.085,-0.489,-0.055,2.612,-0.033,-2.015,11.745,0.0,0.0,0.0,-6.471,-0.063,-1.192,-3.199,-0.169,0.0,3.277,7.886,3.428,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,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,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,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,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,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,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,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,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,15107.0,1151.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,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.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,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,13718.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 base-location-dallas-tx.xml,34.353,34.353,32.588,32.588,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.767,1.868,6.814,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,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,0.0,30.193,6.675,0.573,0.0,0.0,0.0,0.0,2014.4,2771.1,9.706,14.235,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.343,9.5,1.888,1354.8,997.6,9989.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 base-location-duluth-mn.xml,70.96,70.96,29.786,29.786,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,2.265,0.329,11.623,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,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,0.0,5.222,11.597,0.833,0.0,0.0,0.0,0.0,1760.4,2414.3,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,19.994,-13.274,0.0,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-6.293,-1.93,0.0,-0.435,-0.782,0.0,0.0,-0.099,-1.383,7.876,0.0,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.334,2.573,0.717,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,11642.0,149.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 -base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,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,0.0,42.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,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,48000.0,24000.0,0.0,-8.14,89.24,39420.0,10023.0,9283.0,0.0,710.0,7923.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 +base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,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,0.0,42.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,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 base-location-honolulu-hi.xml,36.199,36.199,36.199,36.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.218,3.035,4.816,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,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,2132.0,2154.5,0.0,13.168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,13.134,2.647,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,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 base-location-miami-fl.xml,35.353,35.353,35.353,35.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.444,2.83,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,0.0,0.0,45.97,4.712,0.551,0.0,0.0,0.0,0.0,2104.8,2424.8,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,0.0,0.0,0.0,1.006,0.575,0.0,0.0,0.304,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,13.135,2.647,1354.8,997.6,8625.1,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,13318.0,-219.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 base-location-phoenix-az.xml,38.434,38.434,38.433,38.433,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.029,3.092,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.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,0.0,51.765,4.955,0.556,0.0,0.0,0.0,0.0,2368.2,3386.4,0.593,17.634,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,11.511,2.368,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,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,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,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,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,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,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 -base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,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,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38240.0,8734.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,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,0.0,24.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,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,26408.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.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.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,0.0,0.0,11.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,26408.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33151.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.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,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33153.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33151.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33153.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,42299.0,16223.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,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,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,63.835,44.385,31.488,12.038,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,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.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,36000.0,24000.0,0.0,6.8,91.76,30567.0,4631.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-emissions.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31472.0,8574.0,7508.0,0.0,575.0,6098.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,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,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,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,0.0,24.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,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.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.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,0.0,0.0,11.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.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,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,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,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,63.835,44.385,31.488,12.038,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,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.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-emissions.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30944.0,8558.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 -base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29361.0,8026.0,5506.0,0.0,575.0,6537.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-round-trip-efficiency.xml,60.69,33.803,37.859,10.972,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.909,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-scheduled.xml,60.483,33.596,37.652,10.766,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery-scheduled.xml,77.483,42.407,37.652,2.576,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery.xml,76.584,41.509,36.754,1.678,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.804,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,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,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,36000.0,24000.0,0.0,6.8,91.76,30567.0,4631.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,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,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,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,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,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,0.0,22.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,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,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,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,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,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,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,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,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 +base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-round-trip-efficiency.xml,60.69,33.803,37.859,10.972,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.909,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-scheduled.xml,60.483,33.596,37.652,10.766,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery-scheduled.xml,77.483,42.407,37.652,2.576,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery.xml,76.584,41.509,36.754,1.678,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.804,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,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,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,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,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,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,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,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,0.0,22.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,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,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,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,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,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,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,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,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 house001.xml,86.472,86.472,46.995,46.995,39.477,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.723,4.406,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,0.0,22.439,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.196,0.0,50.021,10.416,2.674,0.0,0.0,0.0,0.0,1853.3,6430.8,37.577,40.55,0.489,1.971,7.187,0.419,0.0,0.959,7.579,-4.942,0.0,0.0,0.438,1.257,-0.263,4.293,0.0,5.152,0.0,3.21,-6.762,-2.935,0.576,2.028,3.795,0.307,0.0,0.257,0.294,11.575,0.0,0.0,0.572,6.816,-0.249,-0.42,-1.415,-0.757,0.0,10.793,11.588,4.446,2104.5,2144.0,14468.7,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,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 house002.xml,67.267,67.267,39.84,39.84,27.428,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.743,3.413,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,0.0,13.945,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.306,0.0,39.368,7.526,2.888,0.0,0.0,0.0,0.0,1554.0,4938.0,23.886,28.431,0.0,2.525,5.047,0.0,0.0,0.848,5.998,-4.053,0.0,0.0,0.0,1.761,-0.146,1.574,0.0,3.789,0.0,1.371,-5.071,-2.493,0.0,3.11,2.775,0.0,0.0,0.402,-0.49,8.601,0.0,0.0,0.0,8.463,-0.14,-0.183,-1.053,-0.638,0.0,5.886,8.93,3.888,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,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 house003.xml,68.65,68.65,40.101,40.101,28.549,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.766,3.552,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,0.0,15.309,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.411,0.0,40.869,7.526,2.687,0.0,0.0,0.0,0.0,1632.3,5239.7,26.287,32.144,0.645,2.771,4.649,0.0,0.0,0.979,6.67,-3.929,0.0,0.0,0.0,1.082,-0.162,1.987,0.0,3.935,0.0,1.613,-5.288,-2.699,0.809,3.085,2.609,0.0,0.0,0.639,-0.276,9.905,0.0,0.0,0.0,6.527,-0.155,-0.219,-1.096,-0.637,0.0,6.494,9.194,4.176,1610.9,1574.7,9989.3,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,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 house004.xml,136.282,136.282,75.371,75.371,60.91,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,29.027,9.473,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,0.0,44.769,0.0,16.142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.203,0.0,107.257,8.985,3.506,0.0,0.0,0.0,105.0,3062.3,7371.4,54.682,50.217,0.128,5.524,11.378,0.0,0.0,1.248,14.004,-5.986,0.0,0.0,0.0,3.23,-0.722,4.937,0.0,6.276,0.0,7.099,-7.294,-3.929,0.202,6.823,11.717,0.0,0.0,0.523,5.458,17.456,0.0,0.0,0.0,18.949,-0.709,1.029,0.0,1.859,0.0,21.516,15.063,7.633,1857.7,1859.3,12229.0,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,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 house005.xml,95.141,95.141,53.332,53.332,41.809,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.312,5.162,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,0.0,26.616,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,21.585,0.0,59.698,8.985,2.726,0.0,0.0,0.0,0.0,2075.9,7519.2,45.934,51.035,0.0,3.005,8.093,0.266,0.0,1.336,10.05,-6.655,0.0,0.0,0.37,1.255,-0.337,5.037,0.0,5.077,0.0,4.382,-6.862,-3.637,0.0,3.044,4.354,0.214,0.0,0.297,0.315,15.402,0.0,0.0,0.447,7.531,-0.32,-0.49,-1.77,-0.737,0.0,14.587,11.523,5.518,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,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 -house006.xml,139.357,139.357,31.782,31.782,107.575,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.953,0.341,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,0.0,81.727,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,78.681,0.0,7.808,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2442.3,40.505,14.731,0.0,4.256,22.278,1.991,37.117,1.867,17.963,-9.446,0.0,0.0,0.0,9.283,-0.314,9.522,0.0,4.368,0.0,0.0,-14.565,-6.451,0.0,0.178,-0.792,-0.044,2.801,-0.086,-0.887,4.265,0.0,0.0,0.0,-3.891,-0.314,-0.515,-0.615,-0.076,0.0,0.0,5.651,2.235,1610.9,1574.7,12168.1,4288.2,80000.0,30000.0,0.0,-13.72,81.14,38476.0,0.0,8907.0,0.0,750.0,19692.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 -house007.xml,138.659,138.659,33.929,33.929,104.729,0.0,0.0,0.0,0.0,0.0,0.0,1.628,0.0,0.0,2.555,0.4,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,0.0,75.062,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,70.676,0.0,5.814,15.632,3.268,0.0,0.0,0.0,0.0,2191.5,2565.8,39.63,13.29,0.0,4.707,23.656,4.406,10.133,1.499,18.999,-9.349,0.0,0.0,0.076,11.562,-0.345,6.117,0.0,20.827,0.0,2.86,-17.223,-7.76,0.0,0.206,-0.703,-0.04,0.576,-0.047,-0.551,4.544,0.0,0.0,-0.009,-4.011,-0.341,-0.192,-0.588,-1.896,0.0,0.104,6.317,2.539,1857.7,1859.4,14896.3,4852.9,90000.0,42000.0,0.0,-13.72,81.14,43363.0,5467.0,9095.0,0.0,587.0,14942.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 -house008.xml,183.485,183.485,39.144,39.144,144.34,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.561,0.531,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,0.0,110.902,0.0,26.377,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,104.5,0.0,10.001,18.129,3.214,0.0,0.0,0.0,0.0,2473.1,3289.5,54.741,19.31,0.0,7.212,27.414,4.688,24.238,1.181,22.401,-7.849,0.0,0.0,1.234,17.862,-0.362,18.324,0.0,6.386,0.0,7.824,-18.687,-8.194,0.0,0.311,-1.111,-0.061,1.635,-0.086,-1.374,5.33,0.0,0.0,-0.101,-2.739,-0.362,-0.983,-0.683,-0.282,0.0,0.529,7.266,2.812,2104.5,2144.0,17624.6,5341.6,90000.0,36000.0,0.0,-13.72,81.14,59452.0,10592.0,10314.0,0.0,587.0,20172.0,0.0,891.0,4052.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 -house009.xml,154.121,154.121,33.995,33.995,120.126,0.0,0.0,0.0,0.0,0.0,0.0,2.031,0.0,0.0,2.388,0.289,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,0.0,90.45,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,85.228,0.0,5.241,15.632,3.276,0.0,0.0,0.0,0.0,2226.5,2610.0,44.115,13.93,0.0,5.087,28.334,4.269,13.065,2.25,19.554,-8.214,0.0,0.0,0.266,15.646,-0.345,8.729,0.0,21.437,0.0,0.0,-17.507,-7.871,0.0,0.245,-0.691,-0.018,0.745,-0.076,-0.776,4.52,0.0,0.0,-0.028,-4.088,-0.341,-0.259,-0.523,-1.801,0.0,0.0,6.014,2.401,1857.7,1859.4,14896.3,4852.9,90000.0,36000.0,0.0,-13.72,81.14,44389.0,0.0,8913.0,0.0,885.0,18118.0,0.0,95.0,3355.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 -house010.xml,153.588,153.588,37.564,37.564,116.025,0.0,0.0,0.0,0.0,0.0,0.0,1.855,0.0,0.0,2.913,0.276,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,0.0,82.588,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,77.824,0.0,7.35,18.129,3.213,0.0,0.0,0.0,0.0,2408.3,2815.0,45.2,15.383,0.873,4.92,25.41,4.856,9.774,1.252,23.488,-9.22,0.0,0.0,0.902,11.403,-0.365,19.561,0.0,6.401,0.0,4.851,-18.7,-8.18,0.025,0.222,-0.739,-0.075,0.555,-0.072,-1.358,5.073,0.0,0.0,-0.046,-4.174,-0.361,-1.025,-0.679,-0.27,0.0,0.338,7.235,2.807,2104.5,2144.0,17624.6,5341.6,90000.0,30000.0,0.0,-13.72,81.14,50951.0,8282.0,10714.0,0.0,587.0,16310.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 +house006.xml,139.357,139.357,31.782,31.782,107.575,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.953,0.341,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,0.0,81.727,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,78.681,0.0,7.808,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2442.3,40.505,14.731,0.0,4.256,22.278,1.991,37.117,1.867,17.963,-9.446,0.0,0.0,0.0,9.283,-0.314,9.522,0.0,4.368,0.0,0.0,-14.565,-6.451,0.0,0.178,-0.792,-0.044,2.801,-0.086,-0.887,4.265,0.0,0.0,0.0,-3.891,-0.314,-0.515,-0.615,-0.076,0.0,0.0,5.651,2.235,1610.9,1574.7,12168.1,4288.2,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 +house007.xml,138.659,138.659,33.929,33.929,104.729,0.0,0.0,0.0,0.0,0.0,0.0,1.628,0.0,0.0,2.555,0.4,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,0.0,75.062,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,70.676,0.0,5.814,15.632,3.268,0.0,0.0,0.0,0.0,2191.5,2565.8,39.63,13.29,0.0,4.707,23.656,4.406,10.133,1.499,18.999,-9.349,0.0,0.0,0.076,11.562,-0.345,6.117,0.0,20.827,0.0,2.86,-17.223,-7.76,0.0,0.206,-0.703,-0.04,0.576,-0.047,-0.551,4.544,0.0,0.0,-0.009,-4.011,-0.341,-0.192,-0.588,-1.896,0.0,0.104,6.317,2.539,1857.7,1859.4,14896.3,4852.9,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 +house008.xml,183.485,183.485,39.144,39.144,144.34,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.561,0.531,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,0.0,110.902,0.0,26.377,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,104.5,0.0,10.001,18.129,3.214,0.0,0.0,0.0,0.0,2473.1,3289.5,54.741,19.31,0.0,7.212,27.414,4.688,24.238,1.181,22.401,-7.849,0.0,0.0,1.234,17.862,-0.362,18.324,0.0,6.386,0.0,7.824,-18.687,-8.194,0.0,0.311,-1.111,-0.061,1.635,-0.086,-1.374,5.33,0.0,0.0,-0.101,-2.739,-0.362,-0.983,-0.683,-0.282,0.0,0.529,7.266,2.812,2104.5,2144.0,17624.6,5341.6,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 +house009.xml,154.121,154.121,33.995,33.995,120.126,0.0,0.0,0.0,0.0,0.0,0.0,2.031,0.0,0.0,2.388,0.289,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,0.0,90.45,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,85.228,0.0,5.241,15.632,3.276,0.0,0.0,0.0,0.0,2226.5,2610.0,44.115,13.93,0.0,5.087,28.334,4.269,13.065,2.25,19.554,-8.214,0.0,0.0,0.266,15.646,-0.345,8.729,0.0,21.437,0.0,0.0,-17.507,-7.871,0.0,0.245,-0.691,-0.018,0.745,-0.076,-0.776,4.52,0.0,0.0,-0.028,-4.088,-0.341,-0.259,-0.523,-1.801,0.0,0.0,6.014,2.401,1857.7,1859.4,14896.3,4852.9,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 +house010.xml,153.588,153.588,37.564,37.564,116.025,0.0,0.0,0.0,0.0,0.0,0.0,1.855,0.0,0.0,2.913,0.276,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,0.0,82.588,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,77.824,0.0,7.35,18.129,3.213,0.0,0.0,0.0,0.0,2408.3,2815.0,45.2,15.383,0.873,4.92,25.41,4.856,9.774,1.252,23.488,-9.22,0.0,0.0,0.902,11.403,-0.365,19.561,0.0,6.401,0.0,4.851,-18.7,-8.18,0.025,0.222,-0.739,-0.075,0.555,-0.072,-1.358,5.073,0.0,0.0,-0.046,-4.174,-0.361,-1.025,-0.679,-0.27,0.0,0.338,7.235,2.807,2104.5,2144.0,17624.6,5341.6,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,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,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,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,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,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,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,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,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 house013.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,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,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,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,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 house015.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house016.xml,61.263,61.263,39.853,39.853,0.0,0.0,21.411,0.0,0.0,0.0,7.559,0.538,0.161,0.004,3.072,1.04,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.223,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.34,0.164,12.019,10.478,0.0,0.0,0.0,1.0,16.0,7459.0,3560.9,42.956,19.023,0.0,4.422,10.844,0.619,5.714,0.298,7.394,-8.024,0.0,0.0,0.0,6.778,-0.019,5.733,0.0,3.86,0.0,0.0,-8.633,-4.768,0.0,-0.35,-0.879,-0.023,2.9,-0.048,-0.599,12.366,0.0,0.0,0.0,-8.871,-0.021,-1.377,-1.189,-1.027,0.0,0.0,7.782,3.838,1759.0,1745.5,13591.0,4566.0,136000.0,36000.0,36000.0,19.22,86.72,26406.0,0.0,5399.0,0.0,171.0,10377.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 -house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,60000.0,24000.0,0.0,16.16,89.24,35267.0,0.0,4833.0,0.0,181.0,13937.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 +house016.xml,61.263,61.263,39.853,39.853,0.0,0.0,21.411,0.0,0.0,0.0,7.559,0.538,0.161,0.004,3.072,1.04,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.223,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.34,0.164,12.019,10.478,0.0,0.0,0.0,1.0,16.0,7459.0,3560.9,42.956,19.023,0.0,4.422,10.844,0.619,5.714,0.298,7.394,-8.024,0.0,0.0,0.0,6.778,-0.019,5.733,0.0,3.86,0.0,0.0,-8.633,-4.768,0.0,-0.35,-0.879,-0.023,2.9,-0.048,-0.599,12.366,0.0,0.0,0.0,-8.871,-0.021,-1.377,-1.189,-1.027,0.0,0.0,7.782,3.838,1759.0,1745.5,13591.0,4566.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 +house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,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,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2606.0,1095.0,711.0,800.0 -house019.xml,129.829,129.829,51.943,51.943,77.886,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.26,3.784,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.111,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.061,0.0,44.571,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6498.5,84.656,46.066,0.0,11.382,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.956,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.957,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,100000.0,60000.0,0.0,16.16,89.24,49914.0,0.0,9523.0,0.0,1028.0,26480.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 -house020.xml,116.978,116.978,56.889,56.889,0.0,0.0,60.089,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.255,2.925,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.951,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.0,34.544,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6621.3,31.034,32.551,0.908,11.005,10.577,1.134,9.808,0.633,14.613,-15.405,0.0,0.0,0.0,7.525,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.244,0.149,0.176,0.052,6.389,0.012,-1.765,21.501,0.0,0.0,0.0,-6.71,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,120000.0,60000.0,0.0,19.22,86.72,44436.0,0.0,10325.0,0.0,395.0,12858.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 -house021.xml,156.414,156.414,48.608,48.608,107.806,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.49,1.583,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.765,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.989,0.0,19.001,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4772.1,81.115,23.856,0.0,8.268,27.059,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.316,26.612,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.014,-0.865,0.005,2.201,-0.093,-1.71,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.324,8.889,3.787,1759.0,1745.5,13752.0,4620.1,130000.0,60000.0,0.0,16.16,89.24,52324.0,8017.0,10175.0,0.0,318.0,15504.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 +house019.xml,129.829,129.829,51.943,51.943,77.886,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.26,3.784,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.111,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.061,0.0,44.571,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6498.5,84.656,46.066,0.0,11.382,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.956,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.957,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 +house020.xml,116.978,116.978,56.889,56.889,0.0,0.0,60.089,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.255,2.925,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.951,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.0,34.544,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6621.3,31.034,32.551,0.908,11.005,10.577,1.134,9.808,0.633,14.613,-15.405,0.0,0.0,0.0,7.525,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.244,0.149,0.176,0.052,6.389,0.012,-1.765,21.501,0.0,0.0,0.0,-6.71,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 +house021.xml,156.414,156.414,48.608,48.608,107.806,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.49,1.583,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.765,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.989,0.0,19.001,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4772.1,81.115,23.856,0.0,8.268,27.059,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.316,26.612,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.014,-0.865,0.005,2.201,-0.093,-1.71,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.324,8.889,3.787,1759.0,1745.5,13752.0,4620.1,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 house022.xml,137.518,137.518,48.884,48.884,0.0,88.635,0.0,0.0,0.0,0.0,0.0,2.204,0.0,0.0,8.878,0.897,12.47,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,88.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.755,0.0,19.669,10.989,1.479,0.0,0.0,184.0,126.0,2989.1,5375.4,90.672,27.64,3.697,3.766,20.67,0.0,0.0,1.489,16.102,-13.284,0.0,0.0,14.728,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.522,0.0,0.0,-0.127,-0.987,12.096,0.0,0.0,1.908,0.0,-0.281,-2.742,-0.645,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 -house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,125000.0,42000.0,0.0,16.16,89.24,43971.0,0.0,5067.0,0.0,362.0,17083.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 +house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 house024.xml,129.181,129.181,44.059,44.059,0.0,85.122,0.0,0.0,0.0,0.0,0.0,2.117,0.0,0.0,5.375,0.691,16.753,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.176,0.0,16.013,14.653,2.088,0.0,0.0,0.0,0.0,2750.5,3528.1,72.024,17.577,0.0,7.189,30.113,0.0,0.0,0.682,6.988,-7.991,0.0,0.0,5.221,0.0,-0.109,25.401,0.0,1.837,0.0,11.726,-8.633,-2.537,0.0,0.564,1.148,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.499,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.853,5.531,1.379,2176.1,2226.5,14983.5,4452.7,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,21856.0,1377.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7041.0,2605.0,3636.0,800.0 house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,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,32212.0,8765.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 house026.xml,57.146,57.146,24.857,24.857,32.289,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,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,0.0,18.143,0.0,14.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,13.901,0.0,0.0,8.607,2.082,0.0,0.0,0.0,0.0,1554.0,1299.3,17.371,0.0,0.0,1.768,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.102,0.0,-0.058,2.488,0.0,3.127,0.0,0.0,-6.707,-3.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,1294.8,1282.2,8578.8,3023.3,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 house027.xml,72.675,72.675,31.766,31.766,40.908,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,7.903,1.021,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,0.0,19.958,0.0,17.881,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.8,0.0,23.144,8.564,5.231,0.0,0.0,0.0,0.0,1579.3,3624.8,24.012,22.742,0.717,1.779,7.835,0.433,0.0,0.588,5.217,-4.028,0.0,0.0,0.372,3.347,-0.138,1.744,0.0,10.422,0.0,2.036,-8.785,-2.844,0.486,1.117,0.735,0.091,0.0,-0.107,-0.293,5.629,0.0,0.0,0.112,3.831,-0.138,-0.367,-0.973,-3.484,0.0,2.602,10.733,3.103,1610.9,1574.7,10579.5,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 house028.xml,67.777,67.777,29.713,29.713,38.064,0.0,0.0,0.0,0.0,0.0,0.0,0.257,0.0,0.0,7.134,1.521,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,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.733,0.0,22.845,10.226,3.619,0.0,0.0,0.0,0.0,1516.8,3329.2,19.98,21.277,0.767,1.659,7.019,0.34,0.0,0.428,5.478,-3.79,0.0,0.0,0.233,2.471,-0.05,4.04,0.0,4.465,0.0,1.534,-9.079,-2.901,0.614,1.244,-0.524,0.118,0.0,0.074,-0.711,6.39,0.0,0.0,0.073,1.831,-0.051,-1.083,-1.206,-1.646,0.0,2.931,11.526,3.237,1857.7,1859.4,12951.5,4219.3,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 house029.xml,77.593,77.593,29.958,29.958,47.635,0.0,0.0,0.0,0.0,0.0,0.0,0.639,0.0,0.0,6.114,0.908,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,0.0,31.97,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,31.636,0.0,13.626,9.614,0.0,0.0,0.0,0.0,0.0,1604.9,3003.4,28.47,13.974,0.0,3.358,14.686,0.392,0.0,0.306,6.694,-6.461,0.0,0.0,6.933,0.0,-0.085,7.291,0.0,7.304,0.0,3.149,-8.377,-3.711,0.0,1.131,-0.846,0.009,0.0,0.055,0.372,5.722,0.0,0.0,-0.45,0.0,-0.08,-0.809,-1.069,-1.537,0.0,1.217,7.168,2.832,1610.9,1574.7,11033.0,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,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 -house030.xml,57.851,57.851,17.189,17.189,0.0,0.0,40.662,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.347,0.0,13.279,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.86,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,15.992,0.0,0.0,1.668,10.205,0.489,1.11,1.046,5.343,-4.368,0.0,0.0,0.0,3.583,-0.04,2.741,0.0,5.693,0.0,0.0,-7.808,-2.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,1066.1,992.8,6764.1,2581.1,87000.0,0.0,0.0,17.24,91.22,18728.0,0.0,3366.0,0.0,474.0,6809.0,0.0,0.0,3355.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 -house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,200000.0,96000.0,0.0,16.16,89.24,82679.0,13643.0,10261.0,0.0,650.0,23266.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 -house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.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,1341.9,1264.5,7310.3,2807.9,75000.0,0.0,0.0,16.16,89.24,30426.0,0.0,5132.0,0.0,690.0,10940.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 +house030.xml,57.851,57.851,17.189,17.189,0.0,0.0,40.662,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.347,0.0,13.279,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.86,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,15.992,0.0,0.0,1.668,10.205,0.489,1.11,1.046,5.343,-4.368,0.0,0.0,0.0,3.583,-0.04,2.741,0.0,5.693,0.0,0.0,-7.808,-2.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,1066.1,992.8,6764.1,2581.1,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 +house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 +house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.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,1341.9,1264.5,7310.3,2807.9,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 house033.xml,106.743,106.743,14.691,14.691,0.0,92.052,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.371,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,48.38,0.0,0.0,19.125,14.564,0.0,0.0,1.0,10.82,-7.637,0.0,0.0,14.706,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.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,0.0,924.8,0.0,3905.6,1188.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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 -house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.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,1759.0,1745.5,10287.1,3456.0,210000.0,0.0,0.0,16.16,89.24,60898.0,0.0,15758.0,0.0,1028.0,15579.0,0.0,4773.0,1069.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 +house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.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,1759.0,1745.5,10287.1,3456.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 house035.xml,63.505,63.505,17.521,17.521,45.985,0.0,0.0,0.0,0.0,0.0,0.0,0.809,0.0,0.0,1.742,0.119,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.522,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.706,0.0,2.673,3.92,3.822,0.0,0.0,102.0,0.0,1326.3,1899.4,39.1,9.67,0.367,6.149,10.862,0.0,0.0,0.538,5.863,-7.44,0.0,0.0,7.797,0.0,0.004,13.61,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.579,-1.589,0.0,0.0,-0.082,-1.219,7.322,0.0,0.0,-4.457,0.0,0.009,-2.738,-0.728,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 house036.xml,82.314,82.314,26.075,26.075,56.239,0.0,0.0,0.0,0.0,0.0,0.0,0.964,0.0,0.0,5.964,1.051,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.77,0.0,17.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.868,0.0,15.005,8.219,5.837,0.0,0.0,102.0,126.0,1461.8,3231.3,31.799,17.329,5.544,2.267,3.993,0.0,0.0,1.83,6.573,-7.755,0.0,0.0,21.29,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.427,-3.43,1.567,0.119,-0.032,0.0,0.0,-0.224,-0.58,6.698,0.0,0.0,2.216,0.0,-0.0,-0.749,-0.419,-0.061,0.0,0.0,4.352,2.019,1341.9,1264.5,6447.0,2476.3,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 house037.xml,87.934,87.934,21.779,21.779,0.0,66.155,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,49.998,0.0,16.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,37.091,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,29.538,0.0,0.0,16.714,11.33,0.0,0.0,1.563,7.276,-10.49,0.0,0.0,6.59,0.0,-0.309,14.696,0.0,0.461,0.0,0.0,-6.818,-3.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,1341.9,1264.5,8324.2,3197.3,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 -house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,71000.0,36000.0,0.0,16.16,89.24,30633.0,0.0,6993.0,0.0,362.0,9341.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 +house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 house039.xml,98.796,98.796,24.025,24.025,74.77,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,5.136,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.084,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,49.765,0.0,0.0,14.276,5.416,0.0,0.0,2.519,15.643,-13.75,0.0,0.0,13.85,0.0,-0.039,13.263,0.0,0.557,0.0,0.0,-4.135,-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,2176.1,2226.5,17536.3,5211.3,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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 -house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,75000.0,0.0,0.0,16.16,89.24,43973.0,0.0,7249.0,0.0,1028.0,13423.0,5873.0,795.0,946.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 -house041.xml,258.48,258.48,47.139,47.139,211.342,0.0,0.0,0.0,0.0,0.0,0.0,4.151,0.0,0.0,2.593,0.257,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,0.0,184.79,0.0,26.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,174.122,0.0,4.704,15.632,5.038,0.0,0.0,103.0,0.0,3249.4,4567.1,77.743,23.534,0.0,11.264,44.726,3.447,34.908,3.025,41.259,-22.88,0.0,0.0,4.289,17.434,-0.474,64.047,0.0,2.763,0.0,0.0,-20.278,-10.992,0.0,0.093,-2.198,-0.115,1.596,-0.209,-3.997,11.045,0.0,0.0,-0.313,-5.336,-0.472,-3.498,-1.028,-0.259,0.0,0.0,6.569,2.951,1857.7,1859.4,14896.4,4852.9,75000.0,30000.0,0.0,-13.72,81.14,97260.0,0.0,18666.0,0.0,1544.0,30313.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 -house042.xml,229.276,229.276,40.067,40.067,189.209,0.0,0.0,0.0,0.0,0.0,0.0,3.861,0.0,0.0,1.818,0.074,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,0.0,164.772,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.009,0.0,3.03,15.632,3.226,0.0,0.0,0.0,0.0,2757.4,3100.6,88.072,19.637,0.0,9.211,39.99,4.004,43.909,2.667,34.16,-21.628,0.0,0.0,2.431,14.543,-0.387,56.221,0.0,1.75,0.0,0.0,-19.149,-7.586,0.0,0.196,-1.567,-0.06,2.667,-0.158,-3.11,7.072,0.0,0.0,-0.27,-5.119,-0.384,-2.856,-0.646,-0.145,0.0,0.0,5.559,1.953,1857.7,1859.4,14896.3,4852.9,90000.0,24000.0,0.0,-13.72,81.14,84531.0,0.0,17465.0,0.0,1066.0,30498.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 -house043.xml,157.888,157.888,30.054,30.054,127.833,0.0,0.0,0.0,0.0,0.0,0.0,2.45,0.0,0.0,2.036,0.12,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,0.0,107.933,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,102.807,0.0,3.06,13.084,2.207,0.0,0.0,0.0,0.0,1988.1,2800.1,54.569,13.842,0.0,3.173,23.231,2.284,33.901,5.6,23.481,-11.471,0.0,0.0,0.548,9.95,-0.272,28.925,0.0,1.576,0.0,0.0,-14.35,-5.158,0.0,0.03,-0.918,-0.093,1.54,-0.376,-2.37,5.811,0.0,0.0,-0.07,-3.685,-0.272,-1.621,-0.541,-0.148,0.0,0.0,4.472,1.404,1610.9,1574.7,12168.1,4288.2,90000.0,30000.0,0.0,-13.72,81.14,54210.0,0.0,11581.0,0.0,2417.0,20151.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 -house044.xml,225.411,225.411,43.512,43.512,181.898,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,0.0,2.108,0.2,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,0.0,159.332,0.0,22.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.036,0.0,3.798,13.084,4.451,0.0,0.0,0.0,0.0,3091.7,3557.8,80.812,18.974,4.371,6.903,36.426,9.115,19.316,2.738,18.968,-13.322,0.0,0.0,12.713,15.115,-0.457,61.876,0.0,1.435,0.0,0.0,-18.019,-10.25,0.237,0.441,-1.454,-0.096,1.17,-0.121,-1.234,6.802,0.0,0.0,-1.152,-4.937,-0.455,-2.744,-0.487,-0.103,0.0,0.0,5.306,2.704,1610.9,1574.7,12168.1,4288.2,110000.0,36000.0,0.0,-13.72,81.14,78542.0,0.0,8527.0,0.0,1403.0,26527.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 -house045.xml,152.5,152.5,35.243,35.243,117.257,0.0,0.0,0.0,0.0,0.0,0.0,2.776,0.0,0.0,2.406,0.302,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,0.0,94.806,0.0,22.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.082,0.0,4.068,13.084,4.362,0.0,0.0,0.0,0.0,2317.0,3015.0,47.223,12.936,3.564,3.072,15.126,2.27,32.793,1.139,19.86,-13.612,1.043,-0.407,0.086,12.675,-0.187,20.633,0.0,10.931,0.0,0.0,-14.66,-7.027,-0.013,0.005,-1.094,-0.117,0.875,-0.089,-2.077,7.137,-0.068,0.396,-0.013,-4.088,-0.186,-1.186,-0.918,-1.261,0.0,0.0,4.827,2.037,1610.9,1574.7,12168.1,4288.2,70000.0,30000.0,0.0,-13.72,81.14,45202.0,0.0,8927.0,496.0,442.0,17005.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 +house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 +house041.xml,258.48,258.48,47.139,47.139,211.342,0.0,0.0,0.0,0.0,0.0,0.0,4.151,0.0,0.0,2.593,0.257,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,0.0,184.79,0.0,26.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,174.122,0.0,4.704,15.632,5.038,0.0,0.0,103.0,0.0,3249.4,4567.1,77.743,23.534,0.0,11.264,44.726,3.447,34.908,3.025,41.259,-22.88,0.0,0.0,4.289,17.434,-0.474,64.047,0.0,2.763,0.0,0.0,-20.278,-10.992,0.0,0.093,-2.198,-0.115,1.596,-0.209,-3.997,11.045,0.0,0.0,-0.313,-5.336,-0.472,-3.498,-1.028,-0.259,0.0,0.0,6.569,2.951,1857.7,1859.4,14896.4,4852.9,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 +house042.xml,229.276,229.276,40.067,40.067,189.209,0.0,0.0,0.0,0.0,0.0,0.0,3.861,0.0,0.0,1.818,0.074,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,0.0,164.772,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.009,0.0,3.03,15.632,3.226,0.0,0.0,0.0,0.0,2757.4,3100.6,88.072,19.637,0.0,9.211,39.99,4.004,43.909,2.667,34.16,-21.628,0.0,0.0,2.431,14.543,-0.387,56.221,0.0,1.75,0.0,0.0,-19.149,-7.586,0.0,0.196,-1.567,-0.06,2.667,-0.158,-3.11,7.072,0.0,0.0,-0.27,-5.119,-0.384,-2.856,-0.646,-0.145,0.0,0.0,5.559,1.953,1857.7,1859.4,14896.3,4852.9,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 +house043.xml,157.888,157.888,30.054,30.054,127.833,0.0,0.0,0.0,0.0,0.0,0.0,2.45,0.0,0.0,2.036,0.12,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,0.0,107.933,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,102.807,0.0,3.06,13.084,2.207,0.0,0.0,0.0,0.0,1988.1,2800.1,54.569,13.842,0.0,3.173,23.231,2.284,33.901,5.6,23.481,-11.471,0.0,0.0,0.548,9.95,-0.272,28.925,0.0,1.576,0.0,0.0,-14.35,-5.158,0.0,0.03,-0.918,-0.093,1.54,-0.376,-2.37,5.811,0.0,0.0,-0.07,-3.685,-0.272,-1.621,-0.541,-0.148,0.0,0.0,4.472,1.404,1610.9,1574.7,12168.1,4288.2,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 +house044.xml,225.411,225.411,43.512,43.512,181.898,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,0.0,2.108,0.2,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,0.0,159.332,0.0,22.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.036,0.0,3.798,13.084,4.451,0.0,0.0,0.0,0.0,3091.7,3557.8,80.812,18.974,4.371,6.903,36.426,9.115,19.316,2.738,18.968,-13.322,0.0,0.0,12.713,15.115,-0.457,61.876,0.0,1.435,0.0,0.0,-18.019,-10.25,0.237,0.441,-1.454,-0.096,1.17,-0.121,-1.234,6.802,0.0,0.0,-1.152,-4.937,-0.455,-2.744,-0.487,-0.103,0.0,0.0,5.306,2.704,1610.9,1574.7,12168.1,4288.2,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 +house045.xml,152.5,152.5,35.243,35.243,117.257,0.0,0.0,0.0,0.0,0.0,0.0,2.776,0.0,0.0,2.406,0.302,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,0.0,94.806,0.0,22.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.082,0.0,4.068,13.084,4.362,0.0,0.0,0.0,0.0,2317.0,3015.0,47.223,12.936,3.564,3.072,15.126,2.27,32.793,1.139,19.86,-13.612,1.043,-0.407,0.086,12.675,-0.187,20.633,0.0,10.931,0.0,0.0,-14.66,-7.027,-0.013,0.005,-1.094,-0.117,0.875,-0.089,-2.077,7.137,-0.068,0.396,-0.013,-4.088,-0.186,-1.186,-0.918,-1.261,0.0,0.0,4.827,2.037,1610.9,1574.7,12168.1,4288.2,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 house046.xml,25.039,25.039,25.039,25.039,0.0,0.0,0.0,0.0,0.0,0.0,5.363,0.445,0.267,0.009,3.74,1.039,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,0.0,13.919,0.276,12.851,4.305,0.617,0.0,0.0,0.0,0.0,3842.2,2404.7,16.167,13.006,0.0,2.523,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.283,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.818,4.589,0.545,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,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 house047.xml,20.762,20.762,14.475,14.475,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.596,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,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,0.0,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.4,968.8,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.729,-0.554,0.0,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.101,0.032,0.0,0.0,-0.093,0.798,0.0,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.276,0.409,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,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 house048.xml,91.545,91.545,39.87,39.87,51.675,0.0,0.0,0.0,0.0,0.0,0.0,0.331,0.0,0.0,12.958,3.843,0.0,0.0,0.0,3.691,0.085,0.498,3.014,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,0.0,35.721,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,28.9,0.0,51.647,7.253,2.672,0.0,0.0,0.0,0.0,1537.0,5475.4,41.96,33.156,1.017,2.617,11.966,0.0,0.0,0.809,4.918,-2.538,0.0,0.0,0.057,2.027,-0.53,6.789,0.0,4.189,0.0,6.375,-7.395,-1.508,1.351,1.066,9.35,0.0,0.0,0.558,2.746,4.304,0.0,0.0,0.074,10.099,-0.517,0.518,-0.451,1.922,0.0,7.048,11.596,2.183,130.3,817.7,11617.6,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,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index d21bd52003..50c2358950 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -39,6 +39,7 @@ base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1 base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,1048.54,144.0,756.37,0.0,900.37,144.0,4.17,148.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,1049.52,144.0,757.07,0.0,901.07,144.0,4.45,148.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1049.51,144.0,757.54,0.0,901.54,144.0,3.97,147.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,1052.72,144.0,761.84,0.0,905.84,144.0,2.88,146.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1049.58,144.0,757.62,0.0,901.62,144.0,3.96,147.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,1048.57,144.0,757.32,0.0,901.32,144.0,3.25,147.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,1031.42,144.0,887.42,0.0,1031.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -60,7 +61,7 @@ base-bldgtype-multifamily.xml,1166.1,144.0,873.25,0.0,1017.25,144.0,4.85,148.85, base-dhw-combi-tankless-outside.xml,1219.08,144.0,713.53,0.0,857.53,144.0,217.55,361.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-combi-tankless.xml,1227.99,144.0,713.85,0.0,857.85,144.0,226.14,370.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-2-speed.xml,1213.75,144.0,1069.75,0.0,1213.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-gshp.xml,1387.05,144.0,1243.05,0.0,1387.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-gshp.xml,1387.12,144.0,1243.12,0.0,1387.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-hpwh.xml,1472.89,144.0,988.81,0.0,1132.81,144.0,196.08,340.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1268.63,144.0,1124.63,0.0,1268.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1189.31,144.0,1045.31,0.0,1189.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -151,7 +152,7 @@ base-enclosure-windows-shading.xml,1590.69,144.0,1118.71,0.0,1262.71,144.0,183.9 base-enclosure-windows-storms.xml,1640.51,144.0,1177.87,0.0,1321.87,144.0,174.64,318.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-ambient.xml,1421.13,144.0,1009.54,0.0,1153.54,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1521.03,144.0,1087.91,0.0,1231.91,144.0,145.12,289.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-complex.xml,1888.18,144.0,1266.17,0.0,1410.17,144.0,334.01,478.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-complex.xml,1821.66,144.0,1240.82,0.0,1384.82,144.0,292.84,436.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-conditioned-basement-slab-insulation.xml,1646.2,144.0,1204.03,0.0,1348.03,144.0,154.17,298.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-conditioned-basement-wall-insulation.xml,1627.83,144.0,1181.78,0.0,1325.78,144.0,158.05,302.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-conditioned-crawlspace.xml,1384.2,144.0,963.85,0.0,1107.85,144.0,132.35,276.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -163,7 +164,7 @@ base-foundation-unconditioned-basement-wall-insulation.xml,1395.49,144.0,964.12, base-foundation-unconditioned-basement.xml,1372.03,144.0,990.24,0.0,1134.24,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1358.78,144.0,993.41,0.0,1137.41,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1371.34,144.0,991.63,0.0,1135.63,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1812.25,144.0,1240.63,0.0,1384.63,144.0,283.62,427.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-walkout-basement.xml,1701.98,144.0,1209.74,0.0,1353.74,144.0,204.24,348.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,1670.47,144.0,1526.47,0.0,1670.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1303.23,144.0,1159.23,0.0,1303.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1670.47,144.0,1526.47,0.0,1670.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -174,70 +175,71 @@ base-hvac-air-to-air-heat-pump-1-speed.xml,1670.47,144.0,1526.47,0.0,1670.47,0.0 base-hvac-air-to-air-heat-pump-2-speed.xml,1519.16,144.0,1375.16,0.0,1519.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1680.7,144.0,1285.89,0.0,1429.89,144.0,106.81,250.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1674.99,144.0,1247.53,0.0,1391.53,144.0,139.46,283.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-temperature2.xml,1674.99,144.0,1247.53,0.0,1391.53,144.0,139.46,283.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1683.88,144.0,1289.04,0.0,1433.04,144.0,106.84,250.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1688.7,144.0,1294.63,0.0,1438.63,144.0,106.07,250.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-var-speed.xml,1510.26,144.0,1366.26,0.0,1510.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,1320.61,144.0,1176.61,0.0,1320.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,1565.62,144.0,1421.62,0.0,1565.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,1564.11,144.0,1420.11,0.0,1564.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1739.17,144.0,1595.17,0.0,1739.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1682.2,144.0,1538.2,0.0,1682.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1680.66,144.0,1536.66,0.0,1680.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml,1729.62,144.0,1585.62,0.0,1729.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1636.74,144.0,1492.74,0.0,1636.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1632.49,144.0,1488.49,0.0,1632.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,1566.45,144.0,1422.45,0.0,1566.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1528.96,144.0,1384.96,0.0,1528.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,1497.04,144.0,1353.04,0.0,1497.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,1638.16,144.0,1253.13,0.0,1397.13,144.0,97.03,241.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,1667.64,144.0,1259.99,0.0,1403.99,144.0,119.65,263.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,1527.79,144.0,1383.79,0.0,1527.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,1494.14,144.0,1350.14,0.0,1494.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,1637.92,144.0,1252.76,0.0,1396.76,144.0,97.16,241.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,1666.86,144.0,1259.61,0.0,1403.61,144.0,119.25,263.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,1537.76,144.0,1393.76,0.0,1537.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,1515.42,144.0,1371.42,0.0,1515.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,1505.87,144.0,1361.87,0.0,1505.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-elec-only.xml,1748.19,144.0,1604.19,0.0,1748.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,1636.51,144.0,1213.25,0.0,1357.25,144.0,135.26,279.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-gas-only.xml,1442.43,144.0,1020.52,0.0,1164.52,144.0,133.91,277.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,1514.58,144.0,1370.58,0.0,1514.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,1505.93,144.0,1361.93,0.0,1505.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-boiler-elec-only.xml,1749.18,144.0,1605.18,0.0,1749.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,1636.63,144.0,1213.11,0.0,1357.11,144.0,135.52,279.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-boiler-gas-only.xml,1442.55,144.0,1020.39,0.0,1164.39,144.0,134.16,278.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-central-ac-only-1-speed.xml,1346.5,144.0,1202.5,0.0,1346.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-central-ac-only-2-speed.xml,1290.52,144.0,1146.52,0.0,1290.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-central-ac-only-var-speed.xml,1268.22,144.0,1124.22,0.0,1268.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,1761.87,144.0,1617.87,0.0,1761.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,1760.35,144.0,1616.35,0.0,1760.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,1764.11,144.0,1363.77,0.0,1507.77,144.0,112.34,256.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1749.42,144.0,1355.45,0.0,1499.45,144.0,105.97,249.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1749.42,144.0,1355.45,0.0,1499.45,144.0,105.97,249.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,1567.55,144.0,1195.86,0.0,1339.86,144.0,83.69,227.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,1567.55,144.0,1195.86,0.0,1339.86,144.0,83.69,227.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1749.22,144.0,1355.5,0.0,1499.5,144.0,105.72,249.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1749.22,144.0,1355.5,0.0,1499.5,144.0,105.72,249.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,1567.7,144.0,1196.15,0.0,1340.15,144.0,83.55,227.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,1567.7,144.0,1196.15,0.0,1340.15,144.0,83.55,227.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-elec-resistance-only.xml,1704.68,144.0,1560.68,0.0,1704.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-evap-cooler-furnace-gas.xml,1530.06,144.0,1067.18,0.0,1211.18,144.0,174.88,318.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1529.14,144.0,1067.09,0.0,1211.09,144.0,174.05,318.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-floor-furnace-propane-only.xml,1742.99,144.0,1012.95,0.0,1156.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,586.04,586.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-elec-only.xml,1932.76,144.0,1788.76,0.0,1932.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,1619.53,144.0,1160.98,0.0,1304.98,144.0,170.55,314.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1597.72,144.0,1139.31,0.0,1283.31,144.0,170.41,314.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-only.xml,1494.97,144.0,1033.82,0.0,1177.82,144.0,173.15,317.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1665.9,144.0,1203.02,0.0,1347.02,144.0,174.88,318.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1929.1,144.0,1785.1,0.0,1929.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,1619.51,144.0,1161.37,0.0,1305.37,144.0,170.14,314.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1597.69,144.0,1139.69,0.0,1283.69,144.0,170.0,314.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1494.06,144.0,1033.73,0.0,1177.73,144.0,172.33,316.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1664.97,144.0,1202.92,0.0,1346.92,144.0,174.05,318.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1284.48,144.0,1140.48,0.0,1284.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1366.32,144.0,1222.32,0.0,1366.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1474.92,144.0,1330.92,0.0,1474.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1461.14,144.0,1317.14,0.0,1461.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1461.14,144.0,1317.14,0.0,1461.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1365.62,144.0,1221.62,0.0,1365.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1473.81,144.0,1329.81,0.0,1473.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1460.47,144.0,1316.47,0.0,1460.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1460.47,144.0,1316.47,0.0,1460.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,1265.67,144.0,1121.67,0.0,1265.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,1241.94,144.0,1097.94,0.0,1241.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,1363.66,144.0,1219.66,0.0,1363.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,1362.58,144.0,1218.58,0.0,1362.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,1462.81,144.0,1318.81,0.0,1462.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,1440.76,144.0,1296.76,0.0,1440.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,1423.08,144.0,1279.08,0.0,1423.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-baseboard.xml,1401.46,144.0,1257.46,0.0,1401.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1639.68,144.0,1185.88,0.0,1329.88,0.0,0.0,0.0,0.0,309.8,309.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,1439.72,144.0,1295.72,0.0,1439.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,1422.81,144.0,1278.81,0.0,1422.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,1401.09,144.0,1257.09,0.0,1401.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,1639.81,144.0,1185.98,0.0,1329.98,0.0,0.0,0.0,0.0,309.83,309.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-ptac-with-heating.xml,1844.65,144.0,1700.65,0.0,1844.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-ptac.xml,1289.24,144.0,1145.24,0.0,1289.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-pthp-sizing-methodology-acca.xml,1528.19,144.0,1384.19,0.0,1528.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,1532.21,144.0,1388.21,0.0,1532.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,1549.91,144.0,1405.91,0.0,1549.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-pthp-sizing-methodology-hers.xml,1532.66,144.0,1388.66,0.0,1532.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-pthp-sizing-methodology-maxload.xml,1550.34,144.0,1406.34,0.0,1550.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-room-ac-only.xml,1322.9,144.0,1178.9,0.0,1322.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-with-heating.xml,1879.23,144.0,1735.23,0.0,1879.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,1528.19,144.0,1384.19,0.0,1528.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,1532.21,144.0,1388.21,0.0,1532.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,1549.91,144.0,1405.91,0.0,1549.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-sizing-controls.xml,1765.06,144.0,1428.97,0.0,1572.97,144.0,48.09,192.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-stove-oil-only.xml,1707.39,144.0,1016.36,0.0,1160.36,0.0,0.0,0.0,0.0,547.03,547.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,1532.66,144.0,1388.66,0.0,1532.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,1550.34,144.0,1406.34,0.0,1550.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-sizing-controls.xml,1764.99,144.0,1429.0,0.0,1573.0,144.0,47.99,191.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-stove-oil-only.xml,1707.39,144.0,1016.3,0.0,1160.3,0.0,0.0,0.0,0.0,547.09,547.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-wall-furnace-elec-only.xml,1715.84,144.0,1571.84,0.0,1715.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize.xml,1664.48,144.0,1205.66,0.0,1349.66,144.0,170.82,314.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize.xml,1664.46,144.0,1206.05,0.0,1350.05,144.0,170.41,314.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-boiler-coal-only.xml,1456.33,144.0,1021.0,0.0,1165.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,291.33,291.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1771.72,144.0,1627.72,0.0,1771.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-boiler-gas-central-ac-1-speed.xml,1633.46,144.0,1204.14,0.0,1348.14,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -285,20 +287,21 @@ base-hvac-furnace-oil-only.xml,1760.65,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1798.62,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,621.61,621.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-wood-only.xml,1525.16,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-borefield-configuration.xml,1460.9,144.0,1316.9,0.0,1460.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-count.xml,1460.95,144.0,1316.95,0.0,1460.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-diameter.xml,1461.12,144.0,1317.12,0.0,1461.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-length.xml,1459.39,144.0,1315.39,0.0,1459.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-spacing.xml,1459.11,144.0,1315.11,0.0,1459.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-ground-diffusivity.xml,1461.45,144.0,1317.45,0.0,1461.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-grout-conductivity.xml,1461.04,144.0,1317.04,0.0,1461.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-loop-flow.xml,1461.48,144.0,1317.48,0.0,1461.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-conductivity.xml,1460.72,144.0,1316.72,0.0,1460.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-diameter.xml,1460.62,144.0,1316.62,0.0,1460.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-shank-spacing.xml,1459.69,144.0,1315.69,0.0,1459.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-borefield-configuration.xml,1460.96,144.0,1316.96,0.0,1460.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-count.xml,1461.01,144.0,1317.01,0.0,1461.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-diameter.xml,1461.18,144.0,1317.18,0.0,1461.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-length.xml,1459.45,144.0,1315.45,0.0,1459.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-spacing.xml,1459.17,144.0,1315.17,0.0,1459.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-ground-diffusivity.xml,1461.51,144.0,1317.51,0.0,1461.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-grout-conductivity.xml,1461.1,144.0,1317.1,0.0,1461.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-loop-flow.xml,1461.54,144.0,1317.54,0.0,1461.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-conductivity.xml,1460.78,144.0,1316.78,0.0,1460.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-diameter.xml,1460.68,144.0,1316.68,0.0,1460.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-shank-spacing.xml,1459.75,144.0,1315.75,0.0,1459.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop.xml,1454.22,144.0,1310.22,0.0,1454.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,1269.38,144.0,1125.38,0.0,1269.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-heating-only.xml,1361.79,144.0,1217.79,0.0,1361.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1460.7,144.0,1316.7,0.0,1460.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump.xml,1460.76,144.0,1316.76,0.0,1460.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1774.69,144.0,1630.69,0.0,1774.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1604.26,144.0,1460.26,0.0,1604.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1587.1,144.0,1443.1,0.0,1587.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -306,7 +309,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1683.26,144.0,1222. base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1632.51,144.0,1172.18,0.0,1316.18,144.0,172.33,316.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1611.04,144.0,1150.71,0.0,1294.71,144.0,172.33,316.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1493.87,144.0,1028.54,0.0,1172.54,144.0,177.33,321.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1521.33,144.0,1377.33,0.0,1521.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1521.26,144.0,1377.26,0.0,1521.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1276.65,144.0,1132.65,0.0,1276.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1498.26,144.0,1354.26,0.0,1498.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1255.32,144.0,1111.32,0.0,1255.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -339,12 +342,12 @@ base-hvac-setpoints-daily-setbacks.xml,1623.73,144.0,1181.79,0.0,1325.79,144.0,1 base-hvac-setpoints.xml,1477.87,144.0,1136.02,0.0,1280.02,144.0,53.85,197.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-stove-oil-only.xml,1707.32,144.0,1015.15,0.0,1159.15,0.0,0.0,0.0,0.0,548.17,548.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-stove-wood-pellets-only.xml,1486.14,144.0,1015.15,0.0,1159.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,326.99,326.99,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,1619.32,144.0,1182.77,0.0,1326.77,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1619.27,144.0,1183.13,0.0,1327.13,144.0,148.14,292.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-undersized.xml,1503.12,144.0,1103.54,0.0,1247.54,144.0,111.58,255.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-wall-furnace-elec-only.xml,1715.84,144.0,1571.84,0.0,1715.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-lighting-ceiling-fans.xml,1661.61,144.0,1210.06,0.0,1354.06,144.0,163.55,307.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-lighting-holiday.xml,1655.48,144.0,1203.78,0.0,1347.78,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-kwh-per-year.xml,1673.96,144.0,1224.93,0.0,1368.93,144.0,161.03,305.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-kwh-per-year.xml,1755.1,144.0,1317.13,0.0,1461.13,144.0,149.97,293.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-lighting-mixed.xml,1654.75,144.0,1203.05,0.0,1347.05,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-lighting-none-ceiling-fans.xml,1508.7,144.0,1037.09,0.0,1181.09,144.0,183.61,327.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-lighting-none.xml,1495.84,144.0,1024.08,0.0,1168.08,144.0,183.76,327.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 840119c011662192b1cb9a746f8019c606917dfd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 27 Jun 2023 16:58:59 +0000 Subject: [PATCH 059/217] Latest results. --- workflow/tests/base_results/results.csv | 798 +++++++++--------- workflow/tests/base_results/results_bills.csv | 22 +- 2 files changed, 411 insertions(+), 409 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 69dfc4d83d..857268f1d0 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -1,29 +1,29 @@ HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: 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: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),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 Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),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) -base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,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,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,22.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,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,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,22.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-appliances-dehumidifier-ief-portable.xml,34.583,34.583,33.262,33.262,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.604,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,1.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,1.18,0.0,30.514,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.1,9.476,14.236,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.307,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.344,9.575,1.88,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 base-appliances-dehumidifier-ief-whole-home.xml,34.611,34.611,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.655,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,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15,0.0,30.49,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2767.0,9.495,14.236,0.0,1.77,1.652,0.0,0.0,0.392,5.039,-4.911,0.0,0.0,0.0,1.312,-0.373,1.058,0.077,0.399,0.0,0.032,-4.78,-0.772,0.0,0.548,-0.009,0.0,0.0,0.206,1.933,17.103,0.0,0.0,0.0,1.819,-0.368,-0.332,-1.9,-0.091,0.0,0.344,9.532,1.875,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 base-appliances-dehumidifier-multiple.xml,34.574,34.574,33.184,33.184,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.813,1.88,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.541,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,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.452,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.3,9.552,14.236,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.035,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.344,9.512,1.873,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 base-appliances-dehumidifier.xml,34.548,34.548,33.243,33.243,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.818,1.882,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.593,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.174,0.0,30.467,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.0,9.548,14.236,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.344,9.498,1.87,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.167,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,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,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,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,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,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,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,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,12000.0,24000.0,0.0,51.62,90.68,12246.0,5542.0,2184.0,0.0,167.0,1864.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,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,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,24000.0,24000.0,0.0,28.58,87.08,23059.0,7546.0,4921.0,0.0,377.0,4200.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 -base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,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,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29390.0,0.0,9510.0,0.0,575.0,6763.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,67.293,67.293,40.782,40.782,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.921,0.983,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,0.0,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.831,0.0,16.409,9.18,0.614,0.0,0.0,0.0,0.0,2378.3,3719.8,26.547,20.758,4.552,1.164,5.544,0.518,7.651,0.635,15.399,-16.987,0.0,0.0,0.0,8.521,-0.082,7.083,0.0,0.73,0.0,3.11,-10.232,-3.183,0.005,0.021,-0.566,-0.053,2.687,-0.029,-3.027,17.676,0.0,0.0,0.0,-6.349,-0.075,-1.69,-4.153,-0.166,0.0,0.937,8.933,2.568,1354.8,997.6,11399.6,2521.8,36000.0,24000.0,0.0,6.8,91.76,37750.0,7491.0,10436.0,0.0,575.0,7551.0,2464.0,0.0,1949.0,724.0,6561.0,18712.0,182.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,24345.0,0.0,7508.0,0.0,575.0,6409.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.167,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,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,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,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,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,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,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,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 +base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,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,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 +base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,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,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,67.293,67.293,40.782,40.782,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.921,0.983,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,0.0,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.831,0.0,16.409,9.18,0.614,0.0,0.0,0.0,0.0,2378.3,3719.8,26.547,20.758,4.552,1.164,5.544,0.518,7.651,0.635,15.399,-16.987,0.0,0.0,0.0,8.521,-0.082,7.083,0.0,0.73,0.0,3.11,-10.232,-3.183,0.005,0.021,-0.566,-0.053,2.687,-0.029,-3.027,17.676,0.0,0.0,0.0,-6.349,-0.075,-1.69,-4.153,-0.166,0.0,0.937,8.933,2.568,1354.8,997.6,11399.6,2521.8,36000.0,24000.0,0.0,6.8,91.76,38184.0,7494.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18712.0,182.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-atticroof-radiant-barrier.xml,37.385,37.385,33.168,33.168,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.236,1.963,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,0.0,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.893,0.0,31.745,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3190.7,13.54,17.969,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.366,9.113,1.789,1354.8,997.6,9989.0,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,22162.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,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,0.0,22.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,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.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30047.0,4820.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.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,0.0,22.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,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,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,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,27461.0,7439.0,5147.0,0.0,575.0,5388.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,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,0.0,60.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,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,43121.0,0.0,3210.0,0.0,575.0,4222.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21138.0,8111.0,2576.0,0.0,575.0,3842.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21139.0,8111.0,2576.0,0.0,575.0,3842.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,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,0.0,22.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,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.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30483.0,4824.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.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,0.0,22.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,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,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,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,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,0.0,60.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,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.626,36.626,24.815,24.815,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.087,0.0,0.0,1.608,0.207,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,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,0.0,3.054,9.538,0.73,0.0,0.0,0.0,0.0,1572.5,2015.2,7.667,5.819,0.0,2.94,3.649,0.0,0.0,0.582,1.416,-1.582,0.0,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-4.25,-1.186,0.0,-0.922,-0.231,0.0,0.0,-0.054,-0.234,1.305,0.0,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.559,3.423,0.841,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-adjacent-to-multiple.xml,31.845,31.845,25.255,25.255,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,2.093,0.314,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,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,0.0,4.965,9.538,0.61,0.0,0.0,0.0,0.0,1562.3,2239.8,9.397,10.552,0.0,-0.004,3.294,0.0,0.0,1.383,4.001,-4.202,0.0,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-6.296,-1.142,0.0,0.0,-0.445,0.0,0.0,-0.418,-0.571,3.958,0.0,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.481,5.704,0.884,1354.8,997.6,11399.5,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,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.799,49.799,24.82,24.82,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,1.466,0.173,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,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,0.0,2.504,9.538,0.818,0.0,0.0,0.0,0.0,1579.9,2256.3,11.078,8.452,0.0,5.364,4.204,0.0,0.0,0.788,1.403,-1.699,0.0,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-4.485,-1.249,0.0,-1.186,-0.054,0.0,0.0,-0.054,-0.122,1.188,0.0,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.528,3.187,0.778,1354.8,997.6,11399.5,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,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 @@ -39,6 +39,7 @@ base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,2 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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1509.2,1333.8,3.459,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.356,23.356,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1522.4,1334.7,3.605,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.749,22.749,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1534.7,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.28,23.28,22.878,22.878,0.402,0.0,0.0,0.0,0.0,0.0,0.129,0.064,0.0,0.0,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.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1648.9,1334.7,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.303,23.303,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1536.8,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1528.0,1334.7,3.537,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.649,26.649,26.649,26.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.054,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1670.9,2071.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 @@ -57,104 +58,104 @@ base-bldgtype-multifamily-shared-pv.xml,26.899,2.451,26.223,1.775,0.676,0.0,0.0, base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.901,30.901,17.531,17.531,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,1052.2,1525.8,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-water-heater.xml,29.805,29.805,16.435,16.435,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,999.5,1473.1,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.345,37.345,37.345,37.345,0.0,0.0,0.0,0.0,0.0,0.0,5.342,0.373,0.0,0.0,2.587,1.074,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.898,0.0,13.36,9.232,0.614,2.924,0.0,0.0,0.0,3219.0,2126.0,21.008,15.09,0.0,3.604,3.633,0.511,7.495,0.628,10.5,-12.557,0.0,0.0,0.0,8.269,-0.061,4.802,0.0,0.728,0.0,3.115,-8.592,-2.5,0.0,0.012,-0.453,-0.05,2.713,-0.024,-1.912,11.726,0.0,0.0,0.0,-6.305,-0.057,-1.163,-3.084,-0.164,0.0,1.833,8.483,2.01,1354.8,997.6,11413.1,2619.0,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.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,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,0.0,18.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.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,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,0.0,24.587,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1066.9,770.9,9019.2,2069.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,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,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.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,388.3,286.5,3205.6,735.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.67,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,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,0.0,23.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,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,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,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.89,0.0,13.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,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-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,1075.0,777.3,9103.8,2089.0,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.106,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.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.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,472.0,347.5,3998.4,917.5,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,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,0.0,22.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,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,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,0.0,23.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,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,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,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,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,0.0,22.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,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,17.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,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,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,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,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,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,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,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,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,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,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,0.0,25.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,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,48000.0,36000.0,0.0,6.8,91.76,43353.0,7641.0,15016.0,0.0,575.0,8855.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,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,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,45325.0,7665.0,15016.0,0.0,575.0,9035.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,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,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,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,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,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,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 -base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.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,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 -base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,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,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,44054.0,8851.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.347,37.347,37.347,37.347,0.0,0.0,0.0,0.0,0.0,0.0,5.339,0.369,0.0,0.0,2.587,1.083,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.882,0.0,13.353,9.232,0.614,2.924,0.0,0.0,0.0,3216.9,2129.8,20.987,15.084,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.099,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.826,8.485,2.01,1354.8,997.6,11413.0,2618.9,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.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,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,0.0,18.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.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,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,0.0,24.587,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1066.9,770.9,9019.2,2069.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,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,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.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,388.3,286.5,3205.6,735.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.67,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,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,0.0,23.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,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,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,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.89,0.0,13.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,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-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,1075.0,777.3,9103.8,2089.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.106,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.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.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,472.0,347.5,3998.4,917.5,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,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,0.0,22.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,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,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,0.0,23.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,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,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,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,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,0.0,22.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,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,17.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,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,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,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,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,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,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,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,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,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,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,0.0,25.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,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,48000.0,36000.0,0.0,6.8,91.76,43789.0,7646.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,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,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,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,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,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,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,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,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 +base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.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,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 +base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,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,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-floortypes.xml,64.445,64.445,29.438,29.438,35.007,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,3.69,0.673,9.366,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,35.007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.788,0.0,11.181,9.342,0.619,0.0,0.0,0.0,0.0,1757.2,3482.5,27.934,20.772,0.0,3.519,3.647,0.0,0.0,0.654,9.893,-12.804,0.0,0.0,26.42,0.0,-0.18,2.047,0.0,0.786,0.0,7.347,-7.418,-1.565,0.0,0.392,-0.069,0.0,0.0,0.096,0.251,11.037,0.0,0.0,-7.528,0.0,-0.176,-0.275,-1.935,-0.093,0.0,2.77,5.786,1.082,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,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,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29361.0,8026.0,5506.0,0.0,575.0,6537.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31789.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31791.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,36858.0,8703.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,36857.0,8703.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,36857.0,8703.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,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,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,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,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,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,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34149.0,8646.0,7508.0,2294.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,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,22.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,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32435.0,8601.0,7508.0,626.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,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,22.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,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32508.0,8603.0,7508.0,696.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,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,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32435.0,8601.0,7508.0,626.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,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,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,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,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,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,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,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,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,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,22.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,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,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,22.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,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,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,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-split-level.xml,40.753,40.753,29.446,29.446,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.84,0.724,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,0.0,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,11.955,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2605.0,13.185,12.044,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.304,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.076,6.354,1.189,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,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 -base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,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,22.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,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,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,0.0,40.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,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34804.0,8652.0,918.0,0.0,575.0,15942.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.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,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,25022.0,8332.0,0.0,0.0,575.0,7398.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,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,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38222.0,8734.0,13788.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,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,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,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,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,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30939.0,8558.0,6680.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,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,22.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,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,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,0.0,40.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,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.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,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,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,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,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,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,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,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,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-foundation-ambient.xml,47.553,47.553,30.316,30.316,17.237,0.0,0.0,0.0,0.0,0.0,0.0,0.284,0.0,0.0,4.641,0.906,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,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,0.0,15.224,9.342,0.606,0.0,0.0,0.0,2.0,1739.5,3551.4,20.358,21.092,0.0,3.835,3.82,0.0,0.0,0.743,10.74,-11.371,0.0,0.0,9.918,0.0,-0.403,2.064,0.0,0.788,0.0,3.878,-6.786,-1.435,0.0,-0.045,-0.503,0.0,0.0,0.04,-0.774,12.469,0.0,0.0,-3.613,0.0,-0.397,-0.407,-2.432,-0.157,0.0,3.617,6.404,1.212,1354.8,997.6,11399.5,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,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,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,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,36000.0,24000.0,0.0,6.8,91.76,31139.0,8564.0,7508.0,0.0,620.0,7098.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 -base-foundation-complex.xml,84.607,84.607,38.022,38.022,46.584,0.0,0.0,0.0,0.0,0.0,0.0,0.768,0.0,0.0,5.65,1.161,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.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,43.626,0.0,19.675,9.233,0.618,0.0,0.0,0.0,10.0,2162.5,3687.0,36.439,21.917,0.0,3.406,3.674,0.524,24.018,0.66,10.62,-12.759,0.0,0.0,0.0,8.585,-0.152,6.147,0.0,0.744,0.0,9.411,-9.195,-2.572,0.0,0.044,-0.357,-0.045,6.047,-0.003,-1.447,11.522,0.0,0.0,0.0,-4.677,-0.144,-1.18,-3.353,-0.131,0.0,4.05,7.586,1.938,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34682.0,8659.0,7508.0,0.0,575.0,8829.0,0.0,0.0,2343.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,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,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31189.0,8565.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32565.0,8604.0,7508.0,0.0,575.0,7160.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,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,0.0,18.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,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,21226.0,0.0,7508.0,0.0,575.0,4819.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 +base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,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,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 +base-foundation-complex.xml,78.103,78.103,37.261,37.261,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.674,0.0,0.0,5.116,1.028,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.25,0.0,17.361,9.233,0.617,0.0,0.0,0.0,2.0,2171.5,3845.1,33.417,21.451,0.0,3.431,3.657,0.52,19.54,0.65,10.564,-12.717,0.0,0.0,0.0,8.705,-0.111,6.102,0.0,0.739,0.0,8.38,-9.124,-2.557,0.0,0.048,-0.359,-0.044,3.767,-0.003,-1.508,11.564,0.0,0.0,0.0,-4.519,-0.103,-1.227,-3.259,-0.137,0.0,3.71,7.657,1.952,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,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,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,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,0.0,18.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,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 base-foundation-multiple.xml,42.738,42.738,29.706,29.706,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.218,0.812,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,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,0.0,13.443,9.285,0.693,0.0,0.0,0.0,0.0,1723.6,2714.9,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,10.857,-11.246,0.0,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-4.636,-1.429,0.0,-0.098,-0.674,0.0,0.0,-0.018,-1.077,12.595,0.0,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.65,4.23,1.218,1354.8,997.6,11399.4,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,14275.0,222.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-slab.xml,39.954,39.954,29.299,29.299,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.9,0.74,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,0.0,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.972,0.0,12.215,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2611.5,12.703,12.011,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.078,6.379,1.193,1354.8,997.6,11399.5,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,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-unconditioned-basement-above-grade.xml,43.94,43.94,29.852,29.852,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.308,0.833,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,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,0.0,13.834,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.0,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,10.912,-11.281,0.0,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.069,12.56,0.0,0.0,-0.506,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.93,4.211,1.213,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,14270.0,226.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 @@ -163,322 +164,323 @@ base-foundation-unconditioned-basement-wall-insulation.xml,48.948,48.948,28.952, base-foundation-unconditioned-basement.xml,42.817,42.817,29.736,29.736,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,4.234,0.816,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,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,0.0,13.513,9.285,0.703,0.0,0.0,0.0,0.0,1723.8,2921.5,15.45,14.318,0.0,3.994,3.853,0.0,0.0,0.749,10.805,-11.235,0.0,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-4.634,-1.429,0.0,-0.077,-0.629,0.0,0.0,-0.0,-1.111,12.605,0.0,0.0,-0.673,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.724,4.231,1.218,1354.8,997.6,11399.5,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,14277.0,222.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,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,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,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,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,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,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,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,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-walkout-basement.xml,76.812,76.812,37.255,37.255,39.557,0.0,0.0,0.0,0.0,0.0,0.0,0.653,0.0,0.0,5.13,1.03,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.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,37.046,0.0,17.385,9.233,0.617,0.0,0.0,0.0,3.0,2171.3,3597.9,32.933,21.471,0.0,3.467,3.714,0.528,15.667,0.668,11.395,-12.889,0.0,0.0,0.0,10.155,-0.11,6.729,0.0,0.739,0.0,8.162,-9.092,-2.55,0.0,-0.04,-0.449,-0.056,2.947,-0.02,-1.783,11.95,0.0,0.0,0.0,-3.332,-0.102,-1.373,-3.362,-0.141,0.0,3.678,7.689,1.96,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34059.0,8644.0,7925.0,0.0,575.0,6274.0,0.0,0.0,2528.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,0.0,15.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.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,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,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,39288.0,16080.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.69,42.69,42.69,42.69,0.0,0.0,0.0,0.0,0.0,0.0,9.829,1.766,0.625,0.054,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,0.0,23.692,0.679,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7301.8,1637.3,25.597,0.0,0.0,3.448,3.637,0.512,7.485,0.629,10.517,-12.551,0.0,0.0,0.0,8.113,-0.066,4.805,0.0,0.728,0.0,7.479,-8.907,-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,1354.8,997.6,11399.5,2615.8,30706.0,0.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.191,46.191,46.191,46.191,0.0,0.0,0.0,0.0,0.0,0.0,9.727,1.011,0.469,0.025,3.46,1.059,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,0.494,13.136,9.233,0.614,0.0,0.0,0.0,0.0,6957.6,3218.7,24.38,15.851,0.0,3.496,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.107,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.238,7.871,2.01,1354.8,997.6,11399.5,2615.8,32561.0,32561.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,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,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,0.0,21.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.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,25971.0,25971.0,11059.0,51.62,90.68,11059.0,4355.0,2184.0,0.0,167.0,1864.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.826,44.826,44.826,44.826,0.0,0.0,0.0,0.0,0.0,0.0,9.162,0.998,0.046,0.006,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,0.0,19.529,0.052,11.986,9.233,0.614,0.0,0.0,0.0,0.0,6646.5,2916.0,22.763,13.183,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.036,-8.907,-2.499,0.0,0.036,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.066,7.871,2.01,1354.8,997.6,11399.5,2615.8,64975.0,64975.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,24186.0,24186.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.589,41.589,41.589,41.589,0.0,0.0,0.0,0.0,0.0,0.0,7.132,0.631,0.441,0.017,2.299,0.628,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.714,0.459,13.364,9.233,0.614,0.0,0.0,0.0,0.0,6927.3,2770.1,24.354,16.817,0.0,3.45,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.343,-8.907,-2.499,0.0,-0.016,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.47,7.871,2.01,1354.8,997.6,11399.5,2615.8,32943.0,32943.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.631,40.631,40.631,40.631,0.0,0.0,0.0,0.0,0.0,0.0,6.888,0.551,0.049,0.005,2.127,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.241,0.054,12.109,9.233,0.614,0.0,0.0,0.0,0.0,6743.7,2524.4,23.408,13.625,0.0,3.58,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.063,4.804,0.0,0.728,0.0,3.769,-8.907,-2.499,0.0,0.033,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.19,7.871,2.01,1354.8,997.6,11399.5,2615.8,64639.0,64639.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.163,51.163,37.631,37.631,13.533,0.0,0.0,0.0,0.0,0.0,4.159,0.371,0.0,0.14,2.311,0.209,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.77,11.263,14.484,9.233,0.615,0.0,0.0,2.0,0.0,3199.7,2682.1,23.554,17.721,0.0,3.374,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.401,-8.918,-2.502,0.0,-0.06,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.73,7.861,2.008,1354.8,997.6,11399.5,2615.8,33152.0,33152.0,23209.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.524,54.524,37.837,37.837,16.688,0.0,0.0,0.0,0.0,0.0,4.012,0.354,0.0,0.503,2.318,0.209,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,13.853,14.589,9.233,0.614,0.0,0.0,2.0,0.0,3340.9,2627.7,30.723,17.555,0.0,3.247,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.29,-0.061,4.804,0.0,0.728,0.0,12.383,-8.908,-2.5,0.0,-0.068,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.064,-0.165,0.0,3.737,7.87,2.01,1354.8,997.6,11399.5,2615.8,33152.0,33152.0,31792.0,6.8,91.76,39288.0,16080.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,26367.0,26367.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.183,41.183,41.183,41.183,0.0,0.0,0.0,0.0,0.0,0.0,7.323,0.751,0.133,0.009,2.318,0.209,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.86,0.141,14.588,9.233,0.614,0.0,0.0,0.0,0.0,7037.5,2627.7,24.691,17.555,0.0,3.367,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.551,-8.908,-2.5,0.0,-0.068,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.737,7.87,2.01,1354.8,997.6,11399.5,2615.8,33152.0,33152.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.896,40.896,40.896,40.896,0.0,0.0,0.0,0.0,0.0,0.0,7.275,0.644,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.845,0.057,13.53,9.233,0.614,0.0,0.0,0.0,0.0,6897.7,2562.2,23.861,16.36,0.0,3.444,3.635,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.477,-8.907,-2.499,0.0,-0.022,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.061,-0.165,0.0,2.648,7.871,2.01,1354.8,997.6,11399.5,2615.8,49709.0,49709.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-elec-only.xml,48.173,48.173,48.173,48.173,0.0,0.0,0.0,0.0,0.0,0.0,17.561,0.194,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.298,55.298,36.433,36.433,18.865,0.0,0.0,0.0,0.0,0.0,0.0,0.231,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.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,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.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2097.2,3330.0,16.457,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,23209.0,19922.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-only.xml,49.322,49.322,30.646,30.646,18.676,0.0,0.0,0.0,0.0,0.0,0.0,0.228,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,18.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2058.6,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20155.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,0.0,17.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.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20283.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.583,48.583,48.583,48.583,0.0,0.0,0.0,0.0,0.0,0.0,9.917,1.783,0.627,0.054,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.925,0.681,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7330.8,3330.1,25.597,17.819,0.0,3.442,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.547,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,30706.0,19922.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.484,55.484,40.703,40.703,14.78,0.0,0.0,0.0,0.0,0.0,4.131,0.357,0.0,1.255,3.46,1.059,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.482,15.296,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3476.2,3218.7,24.372,15.851,0.0,3.41,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.144,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.238,7.871,2.01,1354.8,997.6,11399.5,2615.8,32561.0,32561.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.484,55.484,40.703,40.703,14.78,0.0,0.0,0.0,0.0,0.0,4.131,0.357,0.0,1.255,3.46,1.059,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.482,15.296,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3476.2,3218.7,24.372,15.851,0.0,3.41,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.144,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.238,7.871,2.01,1354.8,997.6,11399.5,2615.8,32561.0,32561.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.583,47.583,35.911,35.911,11.672,0.0,0.0,0.0,0.0,0.0,2.48,0.097,0.0,0.655,2.159,0.078,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.182,11.744,12.267,9.233,0.614,0.0,0.0,0.0,0.0,2588.4,2190.0,19.512,13.381,0.0,3.586,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.71,-8.907,-2.499,0.0,0.027,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.365,7.871,2.01,1354.8,997.6,11399.5,2615.8,25707.0,25707.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.583,47.583,35.911,35.911,11.672,0.0,0.0,0.0,0.0,0.0,2.48,0.097,0.0,0.655,2.159,0.078,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.672,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.182,11.744,12.267,9.233,0.614,0.0,0.0,0.0,0.0,2588.4,2190.0,19.512,13.381,0.0,3.586,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.71,-8.907,-2.499,0.0,0.027,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.365,7.871,2.01,1354.8,997.6,11399.5,2615.8,25707.0,25707.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-evap-cooler-furnace-gas.xml,56.437,56.437,32.047,32.047,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,0.0,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,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.076,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.7,1915.1,25.24,11.075,0.0,3.482,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.677,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,31792.0,13458.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-elec-only.xml,53.715,53.715,53.715,53.715,0.0,0.0,0.0,0.0,0.0,0.0,22.67,0.628,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,0.0,22.847,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8664.8,1637.3,25.24,0.0,0.0,3.487,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.613,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,31792.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.65,58.65,34.864,34.864,23.786,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2122.6,2947.8,24.293,18.493,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.905,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,31792.0,20155.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.98,57.98,34.213,34.213,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.428,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.296,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2121.8,2796.9,24.264,17.856,0.0,3.509,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.882,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,31792.0,20283.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-only.xml,55.194,55.194,31.045,31.045,24.149,0.0,0.0,0.0,0.0,0.0,0.0,0.628,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,24.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.847,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.9,1637.3,25.24,0.0,0.0,3.487,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.613,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,31792.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-room-ac.xml,60.517,60.517,36.126,36.126,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,5.051,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,24.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.076,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.7,3023.7,25.24,11.066,0.0,3.482,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.677,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,31792.0,14272.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.324,34.324,34.324,34.324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.874,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.707,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2888.0,0.0,17.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.164,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24222.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.719,36.719,36.719,36.719,0.0,0.0,0.0,0.0,0.0,0.0,5.502,0.8,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,0.0,21.152,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3429.1,1637.3,23.668,0.0,0.0,3.547,3.636,0.512,7.483,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.869,-8.907,-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,1354.8,997.6,11399.5,2615.8,30706.0,0.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,40.005,40.005,40.005,40.005,0.0,0.0,0.0,0.0,0.0,0.0,5.519,0.693,0.0,0.0,2.54,0.813,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.204,0.0,13.313,9.233,0.614,0.0,0.0,0.0,0.0,3372.7,2561.2,23.122,15.813,0.0,3.548,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.758,-8.907,-2.499,0.0,-0.015,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.422,7.871,2.01,1354.8,997.6,11399.5,2615.8,30706.0,30706.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.255,0.37,0.0,0.0,2.479,1.034,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.85,0.0,12.857,9.233,0.614,0.0,0.0,0.0,0.0,3225.9,2597.8,21.438,15.107,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.366,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.061,-0.165,0.0,1.948,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.255,0.37,0.0,0.0,2.479,1.034,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.85,0.0,12.857,9.233,0.614,0.0,0.0,0.0,0.0,3225.9,2597.8,21.438,15.107,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.366,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.061,-0.165,0.0,1.948,7.871,2.01,1354.8,997.6,11399.5,2615.8,33016.0,33016.0,30706.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.625,36.625,36.625,36.625,0.0,0.0,0.0,0.0,0.0,0.0,5.808,0.316,0.082,0.003,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,0.0,19.818,0.085,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4309.1,1637.3,19.511,0.0,0.0,3.595,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.502,-8.907,-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,1354.8,997.6,11399.5,2615.8,25749.0,0.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,19866.0,19866.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.941,38.941,38.941,38.941,0.0,0.0,0.0,0.0,0.0,0.0,5.858,0.319,0.084,0.003,2.159,0.078,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.087,12.267,9.233,0.614,0.0,0.0,0.0,0.0,4313.4,2190.0,19.512,13.381,0.0,3.592,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.534,-8.907,-2.499,0.0,0.027,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.365,7.871,2.01,1354.8,997.6,11399.5,2615.8,25707.0,25707.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.41,38.41,38.41,38.41,0.0,0.0,0.0,0.0,0.0,0.0,5.415,0.269,0.0,0.0,2.211,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.078,0.0,11.748,9.233,0.614,0.0,0.0,0.0,0.0,3649.5,2213.4,19.201,12.59,0.0,3.623,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.574,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.833,7.871,2.01,1354.8,997.6,11399.5,2615.8,41152.0,41152.0,25749.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.761,37.761,37.761,37.761,0.0,0.0,0.0,0.0,0.0,0.0,5.087,0.103,0.048,0.0,2.055,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.048,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3723.6,2118.3,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23171.0,23171.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.931,47.931,35.611,35.611,0.0,12.32,0.0,0.0,0.0,0.0,3.013,0.093,0.0,0.0,2.038,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.658,7.392,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2851.6,2121.4,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,23171.0,23171.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23209.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.687,41.687,41.687,41.687,0.0,0.0,0.0,0.0,0.0,0.0,7.031,0.0,0.222,0.0,3.993,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,0.0,16.603,0.222,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2701.9,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,24611.0,24611.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.219,42.219,42.219,42.219,0.0,0.0,0.0,0.0,0.0,0.0,7.577,0.0,0.038,0.0,4.164,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2807.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,47663.0,47663.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23209.0,14272.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.687,41.687,41.687,41.687,0.0,0.0,0.0,0.0,0.0,0.0,7.031,0.0,0.222,0.0,3.993,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,0.0,16.603,0.222,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2701.9,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,24611.0,24611.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.219,42.219,42.219,42.219,0.0,0.0,0.0,0.0,0.0,0.0,7.577,0.0,0.038,0.0,4.164,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2807.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,47663.0,47663.0,23209.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,49.618,49.618,42.911,42.911,6.707,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.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,0.0,0.0,6.203,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2613.9,3427.6,16.935,14.883,0.0,2.872,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.461,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,31005.0,27561.0,0.0,0.0,100.0,31005.0,9028.0,7128.0,0.0,545.0,6084.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-stove-oil-only.xml,52.274,52.274,30.521,30.521,0.0,21.754,0.0,0.0,0.0,0.0,0.0,0.102,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,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.8,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,23209.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize.xml,60.029,60.029,36.205,36.205,23.824,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.365,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2124.2,3189.8,24.351,18.003,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.952,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,31792.0,19922.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,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,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,24.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,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,19.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.929,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.276,11.121,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.39,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.179,15.199,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.042,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.535,15.232,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.756,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,26.265,15.613,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,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,0.0,47.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,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,70776.0,33116.0,15016.0,0.0,575.0,9035.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31013.0,7804.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,28177.0,4969.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31786.0,8577.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34050.0,10841.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32152.0,8944.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,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,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,0.0,14.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.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fixed-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,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,0.0,26.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,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,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,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,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,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,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-borefield-configuration.xml,39.609,39.609,39.609,39.609,0.0,0.0,0.0,0.0,0.0,0.0,5.264,0.368,0.0,0.0,2.512,1.025,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.567,0.0,12.689,9.233,0.614,0.0,0.0,0.0,0.0,3222.5,2612.4,21.004,14.741,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.075,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.777,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-count.xml,39.585,39.585,39.585,39.585,0.0,0.0,0.0,0.0,0.0,0.0,5.258,0.368,0.0,0.0,2.495,1.023,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.563,0.0,12.686,9.233,0.614,0.0,0.0,0.0,0.0,3219.1,2591.6,20.983,14.721,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.071,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.774,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-diameter.xml,39.58,39.58,39.58,39.58,0.0,0.0,0.0,0.0,0.0,0.0,5.26,0.368,0.0,0.0,2.489,1.022,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.564,0.0,12.685,9.233,0.614,0.0,0.0,0.0,0.0,3218.5,2590.6,20.926,14.72,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.072,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.773,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-length.xml,39.518,39.518,39.518,39.518,0.0,0.0,0.0,0.0,0.0,0.0,5.238,0.365,0.0,0.0,2.456,1.018,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,12.68,9.233,0.614,0.0,0.0,0.0,0.0,3206.9,2571.3,20.866,14.696,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.058,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.768,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-spacing.xml,39.539,39.539,39.539,39.539,0.0,0.0,0.0,0.0,0.0,0.0,5.246,0.366,0.0,0.0,2.467,1.02,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.555,0.0,12.682,9.233,0.614,0.0,0.0,0.0,0.0,3211.0,2577.1,20.886,14.703,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.063,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-ground-diffusivity.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.26,0.368,0.0,0.0,2.488,1.022,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.564,0.0,12.684,9.233,0.614,0.0,0.0,0.0,0.0,3218.3,2588.5,20.921,14.717,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.072,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.772,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-grout-conductivity.xml,39.577,39.577,39.577,39.577,0.0,0.0,0.0,0.0,0.0,0.0,5.26,0.368,0.0,0.0,2.487,1.022,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.563,0.0,12.684,9.233,0.614,0.0,0.0,0.0,0.0,3218.8,2584.8,20.916,14.712,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.072,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.772,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-loop-flow.xml,39.58,39.58,39.58,39.58,0.0,0.0,0.0,0.0,0.0,0.0,5.262,0.368,0.0,0.0,2.488,1.022,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.564,0.0,12.684,9.233,0.614,0.0,0.0,0.0,0.0,3214.8,2586.6,20.906,14.715,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.072,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.772,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-conductivity.xml,39.558,39.558,39.558,39.558,0.0,0.0,0.0,0.0,0.0,0.0,5.253,0.367,0.0,0.0,2.477,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.559,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3214.9,2581.5,20.902,14.709,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.067,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-diameter.xml,39.561,39.561,39.561,39.561,0.0,0.0,0.0,0.0,0.0,0.0,5.251,0.367,0.0,0.0,2.481,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.558,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3214.2,2578.9,20.949,14.704,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.066,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.527,39.527,39.527,39.527,0.0,0.0,0.0,0.0,0.0,0.0,5.242,0.365,0.0,0.0,2.46,1.019,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.552,0.0,12.681,9.233,0.614,0.0,0.0,0.0,0.0,3209.1,2572.6,20.874,14.698,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.06,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.834,33.834,33.834,33.834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.571,0.777,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.556,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2618.9,0.0,14.783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.993,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.574,36.574,36.574,36.574,0.0,0.0,0.0,0.0,0.0,0.0,5.394,0.763,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,0.0,20.341,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3367.4,1637.3,22.277,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.035,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.556,39.556,39.556,39.556,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.367,0.0,0.0,2.476,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.559,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3214.4,2581.7,20.901,14.709,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.067,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.381,41.381,41.381,41.381,0.0,0.0,0.0,0.0,0.0,0.0,6.67,0.384,0.0,0.0,2.932,0.954,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.447,0.0,13.147,9.233,0.614,0.0,0.0,0.0,0.0,3447.4,2730.1,21.835,15.722,0.0,3.576,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.98,-8.907,-2.499,0.0,-0.008,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.246,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,30706.0,7497.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,0.0,12.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,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,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,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,25749.0,2540.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,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,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,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,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,26137.0,2928.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.378,66.378,51.93,51.93,7.162,3.603,3.683,0.0,0.0,0.0,13.664,0.862,0.199,0.008,6.203,0.554,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.718,0.207,18.969,9.233,0.615,0.0,0.0,0.0,4.0,6442.4,4057.4,37.83,22.72,0.0,3.417,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.316,-8.919,-2.502,0.0,-0.122,-0.445,-0.049,2.738,-0.021,-1.886,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.244,7.859,2.007,1354.8,997.6,11399.5,2615.8,59200.0,36799.2,10236.0,6.8,91.76,36503.0,13294.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-walkout-basement.xml,64.814,64.814,36.328,36.328,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,4.532,0.884,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,0.0,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.677,0.0,14.89,9.233,0.615,0.0,0.0,0.0,0.0,2125.9,3513.1,26.787,19.805,0.0,3.523,3.688,0.52,7.364,0.646,11.292,-12.794,0.0,0.0,0.0,10.155,-0.066,6.639,0.0,0.728,0.0,6.073,-8.935,-2.506,0.0,-0.099,-0.515,-0.06,1.48,-0.031,-2.074,12.046,0.0,0.0,0.0,-3.677,-0.061,-1.529,-3.357,-0.16,0.0,3.264,7.844,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,0.0,15.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.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,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,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.645,42.645,42.645,42.645,0.0,0.0,0.0,0.0,0.0,0.0,9.823,1.762,0.591,0.052,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,0.0,23.588,0.643,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7296.6,1637.3,25.567,0.0,0.0,3.452,3.637,0.512,7.485,0.629,10.516,-12.551,0.0,0.0,0.0,8.112,-0.066,4.805,0.0,0.728,0.0,7.372,-8.907,-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,1354.8,997.6,11399.5,2615.8,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.145,46.145,46.145,46.145,0.0,0.0,0.0,0.0,0.0,0.0,9.718,1.011,0.443,0.024,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.466,13.102,9.233,0.614,0.0,0.0,0.0,0.0,6954.5,3209.9,24.358,15.771,0.0,3.499,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.018,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,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,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,0.0,21.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.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,25971.0,25971.0,11194.0,51.62,90.68,11194.0,4365.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.698,44.698,44.698,44.698,0.0,0.0,0.0,0.0,0.0,0.0,9.125,0.912,0.046,0.006,3.198,0.971,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.362,0.052,11.97,9.233,0.614,0.0,0.0,0.0,0.0,6628.4,2912.2,22.625,13.15,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.864,-8.907,-2.499,0.0,0.037,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.05,7.871,2.01,1354.8,997.6,11399.5,2615.8,65908.0,65908.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,24186.0,24186.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.554,41.554,41.554,41.554,0.0,0.0,0.0,0.0,0.0,0.0,7.131,0.629,0.416,0.017,2.294,0.626,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.433,13.325,9.233,0.614,0.0,0.0,0.0,0.0,6922.4,2762.7,24.33,16.718,0.0,3.453,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.249,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.431,7.871,2.01,1354.8,997.6,11399.5,2615.8,33416.0,33416.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.544,40.544,40.544,40.544,0.0,0.0,0.0,0.0,0.0,0.0,6.849,0.507,0.049,0.005,2.124,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.035,0.054,12.091,9.233,0.614,0.0,0.0,0.0,0.0,6732.2,2521.0,23.383,13.585,0.0,3.588,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.557,-8.907,-2.499,0.0,0.034,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.172,7.871,2.01,1354.8,997.6,11399.5,2615.8,65567.0,65567.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.171,51.171,37.619,37.619,13.551,0.0,0.0,0.0,0.0,0.0,4.154,0.37,0.0,0.138,2.31,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.722,11.262,14.452,9.233,0.615,0.0,0.0,2.0,0.0,3194.1,2672.7,23.547,17.679,0.0,3.375,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.35,-8.918,-2.502,0.0,-0.058,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.697,7.861,2.008,1354.8,997.6,11399.5,2615.8,33628.0,33628.0,23640.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.458,54.458,37.825,37.825,16.632,0.0,0.0,0.0,0.0,0.0,4.006,0.353,0.0,0.501,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,28.514,13.807,14.556,9.233,0.614,0.0,0.0,2.0,0.0,3328.2,2622.0,30.614,17.514,0.0,3.251,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.289,-0.061,4.804,0.0,0.728,0.0,12.284,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.063,-0.165,0.0,3.704,7.87,2.01,1354.8,997.6,11399.5,2615.8,33628.0,33628.0,32235.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,26367.0,26367.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.158,41.158,41.158,41.158,0.0,0.0,0.0,0.0,0.0,0.0,7.314,0.748,0.123,0.008,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.792,0.131,14.556,9.233,0.614,0.0,0.0,0.0,0.0,7031.0,2622.0,24.672,17.514,0.0,3.37,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.48,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.703,7.87,2.01,1354.8,997.6,11399.5,2615.8,33628.0,33628.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.898,40.898,40.898,40.898,0.0,0.0,0.0,0.0,0.0,0.0,7.281,0.641,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.771,0.057,13.49,9.233,0.614,0.0,0.0,0.0,0.0,6896.7,2561.9,23.811,16.273,0.0,3.447,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.401,-8.907,-2.499,0.0,-0.02,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.608,7.871,2.01,1354.8,997.6,11399.5,2615.8,50423.0,50423.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-elec-only.xml,48.203,48.203,48.203,48.203,0.0,0.0,0.0,0.0,0.0,0.0,17.594,0.191,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.2,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.331,55.331,36.429,36.429,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2096.7,3330.0,16.459,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,23640.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-gas-only.xml,49.354,49.354,30.642,30.642,18.712,0.0,0.0,0.0,0.0,0.0,0.0,0.224,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,18.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2057.9,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20155.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,0.0,17.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.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20283.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.538,48.538,48.538,48.538,0.0,0.0,0.0,0.0,0.0,0.0,9.911,1.779,0.593,0.052,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.645,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7326.8,3330.1,25.567,17.819,0.0,3.446,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.439,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,31147.0,19922.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.275,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.283,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.275,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.283,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.666,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,26139.0,26139.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.666,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-evap-cooler-furnace-gas.xml,56.319,56.319,32.044,32.044,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,0.0,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,1915.1,25.1,11.075,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,32235.0,13458.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-elec-only.xml,53.605,53.605,53.605,53.605,0.0,0.0,0.0,0.0,0.0,0.0,22.563,0.625,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,0.0,22.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8622.9,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.875,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2124.3,2947.8,24.237,18.493,0.0,3.51,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.863,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,32235.0,20155.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,32235.0,20283.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.324,34.324,34.324,34.324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.874,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.707,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2888.0,0.0,17.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.164,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.697,36.697,36.697,36.697,0.0,0.0,0.0,0.0,0.0,0.0,5.486,0.794,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,0.0,21.07,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3421.0,1637.3,23.54,0.0,0.0,3.55,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.785,-8.907,-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,1354.8,997.6,11399.5,2615.8,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.97,39.97,39.97,39.97,0.0,0.0,0.0,0.0,0.0,0.0,5.504,0.688,0.0,0.0,2.527,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.125,0.0,13.273,9.233,0.614,0.0,0.0,0.0,0.0,3365.5,2553.9,23.007,15.726,0.0,3.551,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.677,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.382,7.871,2.01,1354.8,997.6,11399.5,2615.8,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.557,39.557,39.557,39.557,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.364,0.0,0.0,2.47,1.04,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.784,0.0,12.822,9.233,0.614,0.0,0.0,0.0,0.0,3219.5,2594.7,21.329,15.036,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.298,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.912,7.871,2.01,1354.8,997.6,11399.5,2615.8,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.557,39.557,39.557,39.557,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.364,0.0,0.0,2.47,1.04,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.784,0.0,12.822,9.233,0.614,0.0,0.0,0.0,0.0,3219.5,2594.7,21.329,15.036,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.298,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.912,7.871,2.01,1354.8,997.6,11399.5,2615.8,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,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,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-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,1354.8,997.6,11399.5,2615.8,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,19866.0,19866.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.91,38.91,38.91,38.91,0.0,0.0,0.0,0.0,0.0,0.0,5.84,0.317,0.073,0.002,2.16,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,0.0,19.98,0.075,12.245,9.233,0.614,0.0,0.0,0.0,0.0,4268.2,2191.0,19.501,13.372,0.0,3.593,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.501,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.402,38.402,38.402,38.402,0.0,0.0,0.0,0.0,0.0,0.0,5.406,0.268,0.0,0.0,2.213,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.045,0.0,11.734,9.233,0.614,0.0,0.0,0.0,0.0,3640.7,2214.0,19.188,12.558,0.0,3.624,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.54,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.818,7.871,2.01,1354.8,997.6,11399.5,2615.8,41843.0,41843.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.75,37.75,37.75,37.75,0.0,0.0,0.0,0.0,0.0,0.0,5.078,0.102,0.042,0.0,2.06,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.042,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3682.6,2120.6,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.614,35.614,0.0,12.321,0.0,0.0,0.0,0.0,3.012,0.092,0.0,0.0,2.043,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.658,7.393,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2846.2,2123.8,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,49.605,49.605,42.912,42.912,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.191,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2614.2,3427.5,16.894,14.883,0.0,2.873,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.449,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,31430.0,27561.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-stove-oil-only.xml,52.275,52.275,30.519,30.519,0.0,21.756,0.0,0.0,0.0,0.0,0.0,0.1,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,21.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.5,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize.xml,59.984,59.984,36.217,36.217,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.324,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2126.9,3189.8,24.296,18.003,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.91,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,32235.0,19922.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,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,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,24.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,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,19.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.929,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.276,11.121,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.39,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.179,15.199,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.042,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.535,15.232,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.756,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,26.265,15.613,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,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,0.0,47.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,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,71259.0,33168.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,28612.0,4972.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34496.0,10856.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32660.0,9020.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,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,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,0.0,14.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.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-fixed-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,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,0.0,26.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,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,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,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,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,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,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-borefield-configuration.xml,39.611,39.611,39.611,39.611,0.0,0.0,0.0,0.0,0.0,0.0,5.26,0.363,0.0,0.0,2.512,1.034,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.551,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3220.4,2615.4,20.982,14.735,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.059,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-count.xml,39.586,39.586,39.586,39.586,0.0,0.0,0.0,0.0,0.0,0.0,5.255,0.363,0.0,0.0,2.496,1.032,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.68,9.233,0.614,0.0,0.0,0.0,0.0,3217.0,2594.6,20.961,14.715,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.767,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-diameter.xml,39.582,39.582,39.582,39.582,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.363,0.0,0.0,2.49,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3216.5,2593.6,20.904,14.714,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.766,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-length.xml,39.52,39.52,39.52,39.52,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.36,0.0,0.0,2.457,1.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,0.0,19.535,0.0,12.674,9.233,0.614,0.0,0.0,0.0,0.0,3204.8,2574.2,20.845,14.69,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.042,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.761,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-spacing.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.361,0.0,0.0,2.468,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.539,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3209.0,2580.0,20.864,14.698,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.047,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-ground-diffusivity.xml,39.58,39.58,39.58,39.58,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.363,0.0,0.0,2.489,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3216.2,2591.5,20.899,14.711,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.766,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-grout-conductivity.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.363,0.0,0.0,2.487,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3216.7,2587.7,20.894,14.706,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-loop-flow.xml,39.582,39.582,39.582,39.582,0.0,0.0,0.0,0.0,0.0,0.0,5.259,0.363,0.0,0.0,2.488,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3212.8,2589.5,20.884,14.709,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-conductivity.xml,39.56,39.56,39.56,39.56,0.0,0.0,0.0,0.0,0.0,0.0,5.25,0.362,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.8,2584.5,20.88,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.051,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-diameter.xml,39.563,39.563,39.563,39.563,0.0,0.0,0.0,0.0,0.0,0.0,5.248,0.362,0.0,0.0,2.481,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3212.1,2581.8,20.927,14.699,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.528,39.528,39.528,39.528,0.0,0.0,0.0,0.0,0.0,0.0,5.239,0.361,0.0,0.0,2.461,1.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,0.0,19.537,0.0,12.674,9.233,0.614,0.0,0.0,0.0,0.0,3207.1,2575.5,20.852,14.692,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.044,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.762,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.834,33.834,33.834,33.834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.571,0.777,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.556,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2618.9,0.0,14.783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.993,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.574,36.574,36.574,36.574,0.0,0.0,0.0,0.0,0.0,0.0,5.394,0.763,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,0.0,20.341,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3367.4,1637.3,22.277,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.035,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.558,39.558,39.558,39.558,0.0,0.0,0.0,0.0,0.0,0.0,5.249,0.362,0.0,0.0,2.477,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.4,2584.7,20.879,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.051,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.378,41.378,41.378,41.378,0.0,0.0,0.0,0.0,0.0,0.0,6.664,0.38,0.0,0.0,2.932,0.962,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.427,0.0,13.138,9.233,0.614,0.0,0.0,0.0,0.0,3445.1,2732.5,21.808,15.713,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.959,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.237,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,0.0,12.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,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,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,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,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,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,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,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.378,66.378,51.93,51.93,7.162,3.603,3.683,0.0,0.0,0.0,13.664,0.862,0.199,0.008,6.203,0.554,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.718,0.207,18.969,9.233,0.615,0.0,0.0,0.0,4.0,6442.4,4057.4,37.83,22.72,0.0,3.417,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.316,-8.919,-2.502,0.0,-0.122,-0.445,-0.049,2.738,-0.021,-1.886,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.244,7.859,2.007,1354.8,997.6,11399.5,2615.8,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.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,1354.8,997.6,8540.6,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 -base-hvac-portable-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,0.0,3.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.01,-0.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,8000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,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,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,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,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,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,0.0,0.0,0.0,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,56.236,56.236,35.518,35.518,20.719,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,3.959,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,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.42,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,2961.2,20.504,15.145,0.0,3.61,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.932,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,28463.0,18434.0,0.0,6.8,91.76,28463.0,5254.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,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,0.0,15.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,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,3600.0,2400.0,0.0,6.8,91.76,28463.0,5254.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23209.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,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,0.0,22.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,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-kwh-per-year.xml,59.243,59.243,36.784,36.784,22.46,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.346,0.842,9.164,0.0,0.0,5.118,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.033,0.0,14.182,9.233,0.614,0.0,0.0,0.0,0.0,2193.9,3333.9,23.005,18.0,0.0,3.549,3.638,0.512,7.512,0.63,10.518,-12.549,0.0,0.0,0.0,8.291,-0.064,4.806,0.0,0.728,0.0,4.868,-8.907,-2.836,0.0,-0.051,-0.461,-0.051,2.688,-0.025,-1.933,11.731,0.0,0.0,0.0,-6.342,-0.06,-1.17,-3.09,-0.165,0.0,3.143,7.871,2.282,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,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,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,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,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,36000.0,24000.0,0.0,10.22,91.4,30246.0,8331.0,7102.0,0.0,543.0,6062.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-portable-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,0.0,3.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.01,-0.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,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,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,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,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,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,0.0,0.0,0.0,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,56.19,56.19,35.529,35.529,20.661,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,3.959,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,20.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,19.378,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2961.2,20.444,15.145,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.888,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,28898.0,18434.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,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,0.0,15.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,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,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,0.0,22.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,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-kwh-per-year.xml,60.469,60.469,39.553,39.553,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.535,0.889,9.163,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.996,9.233,0.613,0.0,0.0,0.0,0.0,2416.3,3795.3,22.788,18.414,0.0,3.575,3.655,0.514,7.569,0.633,10.56,-12.521,0.0,0.0,0.0,8.359,-0.067,4.811,0.0,0.729,0.0,4.568,-8.891,-4.249,0.0,-0.085,-0.489,-0.055,2.612,-0.033,-2.015,11.745,0.0,0.0,0.0,-6.471,-0.063,-1.192,-3.199,-0.169,0.0,3.277,7.886,3.428,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,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,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,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,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,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,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,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,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,15107.0,1151.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,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.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,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,13718.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 base-location-dallas-tx.xml,34.353,34.353,32.588,32.588,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.767,1.868,6.814,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,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,0.0,30.193,6.675,0.573,0.0,0.0,0.0,0.0,2014.4,2771.1,9.706,14.235,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.343,9.5,1.888,1354.8,997.6,9989.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 base-location-duluth-mn.xml,70.96,70.96,29.786,29.786,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,2.265,0.329,11.623,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,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,0.0,5.222,11.597,0.833,0.0,0.0,0.0,0.0,1760.4,2414.3,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,19.994,-13.274,0.0,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-6.293,-1.93,0.0,-0.435,-0.782,0.0,0.0,-0.099,-1.383,7.876,0.0,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.334,2.573,0.717,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,11642.0,149.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 -base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,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,0.0,42.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,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,48000.0,24000.0,0.0,-8.14,89.24,39420.0,10023.0,9283.0,0.0,710.0,7923.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 +base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,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,0.0,42.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,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 base-location-honolulu-hi.xml,36.199,36.199,36.199,36.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.218,3.035,4.816,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,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,2132.0,2154.5,0.0,13.168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,13.134,2.647,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,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 base-location-miami-fl.xml,35.353,35.353,35.353,35.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.444,2.83,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,0.0,0.0,45.97,4.712,0.551,0.0,0.0,0.0,0.0,2104.8,2424.8,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,0.0,0.0,0.0,1.006,0.575,0.0,0.0,0.304,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,13.135,2.647,1354.8,997.6,8625.1,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,13318.0,-219.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 base-location-phoenix-az.xml,38.434,38.434,38.433,38.433,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.029,3.092,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.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,0.0,51.765,4.955,0.556,0.0,0.0,0.0,0.0,2368.2,3386.4,0.593,17.634,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,11.511,2.368,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,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,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,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,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,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,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 -base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,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,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38240.0,8734.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,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,0.0,24.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,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,26408.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.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.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,0.0,0.0,11.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,26408.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33151.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.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,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33153.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33151.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33153.0,8620.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,42299.0,16223.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,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,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35068.0,8659.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,63.835,44.385,31.488,12.038,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,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.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,36000.0,24000.0,0.0,6.8,91.76,30567.0,4631.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-emissions.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31472.0,8574.0,7508.0,0.0,575.0,6098.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,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,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,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,0.0,24.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,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.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.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,0.0,0.0,11.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.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,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,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,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,63.835,44.385,31.488,12.038,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,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.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-emissions.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30944.0,8558.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 -base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29361.0,8026.0,5506.0,0.0,575.0,6537.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-round-trip-efficiency.xml,60.69,33.803,37.859,10.972,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.909,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-scheduled.xml,60.483,33.596,37.652,10.766,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery-scheduled.xml,77.483,42.407,37.652,2.576,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery.xml,76.584,41.509,36.754,1.678,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.804,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,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,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,36000.0,24000.0,0.0,6.8,91.76,30567.0,4631.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,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,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,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,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,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,0.0,22.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,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,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,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,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,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,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,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,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31792.0,8583.0,7508.0,0.0,575.0,6409.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 +base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-round-trip-efficiency.xml,60.69,33.803,37.859,10.972,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.909,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-scheduled.xml,60.483,33.596,37.652,10.766,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery-scheduled.xml,77.483,42.407,37.652,2.576,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery.xml,76.584,41.509,36.754,1.678,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.804,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,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,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,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,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,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,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,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,0.0,22.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,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,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,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,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,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,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,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,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 house001.xml,86.472,86.472,46.995,46.995,39.477,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.723,4.406,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,0.0,22.439,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.196,0.0,50.021,10.416,2.674,0.0,0.0,0.0,0.0,1853.3,6430.8,37.577,40.55,0.489,1.971,7.187,0.419,0.0,0.959,7.579,-4.942,0.0,0.0,0.438,1.257,-0.263,4.293,0.0,5.152,0.0,3.21,-6.762,-2.935,0.576,2.028,3.795,0.307,0.0,0.257,0.294,11.575,0.0,0.0,0.572,6.816,-0.249,-0.42,-1.415,-0.757,0.0,10.793,11.588,4.446,2104.5,2144.0,14468.7,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,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 house002.xml,67.267,67.267,39.84,39.84,27.428,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.743,3.413,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,0.0,13.945,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.306,0.0,39.368,7.526,2.888,0.0,0.0,0.0,0.0,1554.0,4938.0,23.886,28.431,0.0,2.525,5.047,0.0,0.0,0.848,5.998,-4.053,0.0,0.0,0.0,1.761,-0.146,1.574,0.0,3.789,0.0,1.371,-5.071,-2.493,0.0,3.11,2.775,0.0,0.0,0.402,-0.49,8.601,0.0,0.0,0.0,8.463,-0.14,-0.183,-1.053,-0.638,0.0,5.886,8.93,3.888,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,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 house003.xml,68.65,68.65,40.101,40.101,28.549,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.766,3.552,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,0.0,15.309,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.411,0.0,40.869,7.526,2.687,0.0,0.0,0.0,0.0,1632.3,5239.7,26.287,32.144,0.645,2.771,4.649,0.0,0.0,0.979,6.67,-3.929,0.0,0.0,0.0,1.082,-0.162,1.987,0.0,3.935,0.0,1.613,-5.288,-2.699,0.809,3.085,2.609,0.0,0.0,0.639,-0.276,9.905,0.0,0.0,0.0,6.527,-0.155,-0.219,-1.096,-0.637,0.0,6.494,9.194,4.176,1610.9,1574.7,9989.3,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,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 house004.xml,136.282,136.282,75.371,75.371,60.91,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,29.027,9.473,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,0.0,44.769,0.0,16.142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.203,0.0,107.257,8.985,3.506,0.0,0.0,0.0,105.0,3062.3,7371.4,54.682,50.217,0.128,5.524,11.378,0.0,0.0,1.248,14.004,-5.986,0.0,0.0,0.0,3.23,-0.722,4.937,0.0,6.276,0.0,7.099,-7.294,-3.929,0.202,6.823,11.717,0.0,0.0,0.523,5.458,17.456,0.0,0.0,0.0,18.949,-0.709,1.029,0.0,1.859,0.0,21.516,15.063,7.633,1857.7,1859.3,12229.0,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,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 house005.xml,95.141,95.141,53.332,53.332,41.809,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.312,5.162,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,0.0,26.616,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,21.585,0.0,59.698,8.985,2.726,0.0,0.0,0.0,0.0,2075.9,7519.2,45.934,51.035,0.0,3.005,8.093,0.266,0.0,1.336,10.05,-6.655,0.0,0.0,0.37,1.255,-0.337,5.037,0.0,5.077,0.0,4.382,-6.862,-3.637,0.0,3.044,4.354,0.214,0.0,0.297,0.315,15.402,0.0,0.0,0.447,7.531,-0.32,-0.49,-1.77,-0.737,0.0,14.587,11.523,5.518,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,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 -house006.xml,139.357,139.357,31.782,31.782,107.575,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.953,0.341,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,0.0,81.727,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,78.681,0.0,7.808,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2442.3,40.505,14.731,0.0,4.256,22.278,1.991,37.117,1.867,17.963,-9.446,0.0,0.0,0.0,9.283,-0.314,9.522,0.0,4.368,0.0,0.0,-14.565,-6.451,0.0,0.178,-0.792,-0.044,2.801,-0.086,-0.887,4.265,0.0,0.0,0.0,-3.891,-0.314,-0.515,-0.615,-0.076,0.0,0.0,5.651,2.235,1610.9,1574.7,12168.1,4288.2,80000.0,30000.0,0.0,-13.72,81.14,38476.0,0.0,8907.0,0.0,750.0,19692.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 -house007.xml,138.659,138.659,33.929,33.929,104.729,0.0,0.0,0.0,0.0,0.0,0.0,1.628,0.0,0.0,2.555,0.4,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,0.0,75.062,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,70.676,0.0,5.814,15.632,3.268,0.0,0.0,0.0,0.0,2191.5,2565.8,39.63,13.29,0.0,4.707,23.656,4.406,10.133,1.499,18.999,-9.349,0.0,0.0,0.076,11.562,-0.345,6.117,0.0,20.827,0.0,2.86,-17.223,-7.76,0.0,0.206,-0.703,-0.04,0.576,-0.047,-0.551,4.544,0.0,0.0,-0.009,-4.011,-0.341,-0.192,-0.588,-1.896,0.0,0.104,6.317,2.539,1857.7,1859.4,14896.3,4852.9,90000.0,42000.0,0.0,-13.72,81.14,43363.0,5467.0,9095.0,0.0,587.0,14942.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 -house008.xml,183.485,183.485,39.144,39.144,144.34,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.561,0.531,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,0.0,110.902,0.0,26.377,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,104.5,0.0,10.001,18.129,3.214,0.0,0.0,0.0,0.0,2473.1,3289.5,54.741,19.31,0.0,7.212,27.414,4.688,24.238,1.181,22.401,-7.849,0.0,0.0,1.234,17.862,-0.362,18.324,0.0,6.386,0.0,7.824,-18.687,-8.194,0.0,0.311,-1.111,-0.061,1.635,-0.086,-1.374,5.33,0.0,0.0,-0.101,-2.739,-0.362,-0.983,-0.683,-0.282,0.0,0.529,7.266,2.812,2104.5,2144.0,17624.6,5341.6,90000.0,36000.0,0.0,-13.72,81.14,59452.0,10592.0,10314.0,0.0,587.0,20172.0,0.0,891.0,4052.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 -house009.xml,154.121,154.121,33.995,33.995,120.126,0.0,0.0,0.0,0.0,0.0,0.0,2.031,0.0,0.0,2.388,0.289,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,0.0,90.45,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,85.228,0.0,5.241,15.632,3.276,0.0,0.0,0.0,0.0,2226.5,2610.0,44.115,13.93,0.0,5.087,28.334,4.269,13.065,2.25,19.554,-8.214,0.0,0.0,0.266,15.646,-0.345,8.729,0.0,21.437,0.0,0.0,-17.507,-7.871,0.0,0.245,-0.691,-0.018,0.745,-0.076,-0.776,4.52,0.0,0.0,-0.028,-4.088,-0.341,-0.259,-0.523,-1.801,0.0,0.0,6.014,2.401,1857.7,1859.4,14896.3,4852.9,90000.0,36000.0,0.0,-13.72,81.14,44389.0,0.0,8913.0,0.0,885.0,18118.0,0.0,95.0,3355.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 -house010.xml,153.588,153.588,37.564,37.564,116.025,0.0,0.0,0.0,0.0,0.0,0.0,1.855,0.0,0.0,2.913,0.276,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,0.0,82.588,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,77.824,0.0,7.35,18.129,3.213,0.0,0.0,0.0,0.0,2408.3,2815.0,45.2,15.383,0.873,4.92,25.41,4.856,9.774,1.252,23.488,-9.22,0.0,0.0,0.902,11.403,-0.365,19.561,0.0,6.401,0.0,4.851,-18.7,-8.18,0.025,0.222,-0.739,-0.075,0.555,-0.072,-1.358,5.073,0.0,0.0,-0.046,-4.174,-0.361,-1.025,-0.679,-0.27,0.0,0.338,7.235,2.807,2104.5,2144.0,17624.6,5341.6,90000.0,30000.0,0.0,-13.72,81.14,50951.0,8282.0,10714.0,0.0,587.0,16310.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 +house006.xml,139.357,139.357,31.782,31.782,107.575,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.953,0.341,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,0.0,81.727,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,78.681,0.0,7.808,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2442.3,40.505,14.731,0.0,4.256,22.278,1.991,37.117,1.867,17.963,-9.446,0.0,0.0,0.0,9.283,-0.314,9.522,0.0,4.368,0.0,0.0,-14.565,-6.451,0.0,0.178,-0.792,-0.044,2.801,-0.086,-0.887,4.265,0.0,0.0,0.0,-3.891,-0.314,-0.515,-0.615,-0.076,0.0,0.0,5.651,2.235,1610.9,1574.7,12168.1,4288.2,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 +house007.xml,138.659,138.659,33.929,33.929,104.729,0.0,0.0,0.0,0.0,0.0,0.0,1.628,0.0,0.0,2.555,0.4,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,0.0,75.062,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,70.676,0.0,5.814,15.632,3.268,0.0,0.0,0.0,0.0,2191.5,2565.8,39.63,13.29,0.0,4.707,23.656,4.406,10.133,1.499,18.999,-9.349,0.0,0.0,0.076,11.562,-0.345,6.117,0.0,20.827,0.0,2.86,-17.223,-7.76,0.0,0.206,-0.703,-0.04,0.576,-0.047,-0.551,4.544,0.0,0.0,-0.009,-4.011,-0.341,-0.192,-0.588,-1.896,0.0,0.104,6.317,2.539,1857.7,1859.4,14896.3,4852.9,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 +house008.xml,183.485,183.485,39.144,39.144,144.34,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.561,0.531,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,0.0,110.902,0.0,26.377,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,104.5,0.0,10.001,18.129,3.214,0.0,0.0,0.0,0.0,2473.1,3289.5,54.741,19.31,0.0,7.212,27.414,4.688,24.238,1.181,22.401,-7.849,0.0,0.0,1.234,17.862,-0.362,18.324,0.0,6.386,0.0,7.824,-18.687,-8.194,0.0,0.311,-1.111,-0.061,1.635,-0.086,-1.374,5.33,0.0,0.0,-0.101,-2.739,-0.362,-0.983,-0.683,-0.282,0.0,0.529,7.266,2.812,2104.5,2144.0,17624.6,5341.6,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 +house009.xml,154.121,154.121,33.995,33.995,120.126,0.0,0.0,0.0,0.0,0.0,0.0,2.031,0.0,0.0,2.388,0.289,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,0.0,90.45,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,85.228,0.0,5.241,15.632,3.276,0.0,0.0,0.0,0.0,2226.5,2610.0,44.115,13.93,0.0,5.087,28.334,4.269,13.065,2.25,19.554,-8.214,0.0,0.0,0.266,15.646,-0.345,8.729,0.0,21.437,0.0,0.0,-17.507,-7.871,0.0,0.245,-0.691,-0.018,0.745,-0.076,-0.776,4.52,0.0,0.0,-0.028,-4.088,-0.341,-0.259,-0.523,-1.801,0.0,0.0,6.014,2.401,1857.7,1859.4,14896.3,4852.9,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 +house010.xml,153.588,153.588,37.564,37.564,116.025,0.0,0.0,0.0,0.0,0.0,0.0,1.855,0.0,0.0,2.913,0.276,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,0.0,82.588,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,77.824,0.0,7.35,18.129,3.213,0.0,0.0,0.0,0.0,2408.3,2815.0,45.2,15.383,0.873,4.92,25.41,4.856,9.774,1.252,23.488,-9.22,0.0,0.0,0.902,11.403,-0.365,19.561,0.0,6.401,0.0,4.851,-18.7,-8.18,0.025,0.222,-0.739,-0.075,0.555,-0.072,-1.358,5.073,0.0,0.0,-0.046,-4.174,-0.361,-1.025,-0.679,-0.27,0.0,0.338,7.235,2.807,2104.5,2144.0,17624.6,5341.6,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,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,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,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,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,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,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,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,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 house013.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,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,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,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,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 house015.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house016.xml,61.263,61.263,39.853,39.853,0.0,0.0,21.411,0.0,0.0,0.0,7.559,0.538,0.161,0.004,3.072,1.04,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.223,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.34,0.164,12.019,10.478,0.0,0.0,0.0,1.0,16.0,7459.0,3560.9,42.956,19.023,0.0,4.422,10.844,0.619,5.714,0.298,7.394,-8.024,0.0,0.0,0.0,6.778,-0.019,5.733,0.0,3.86,0.0,0.0,-8.633,-4.768,0.0,-0.35,-0.879,-0.023,2.9,-0.048,-0.599,12.366,0.0,0.0,0.0,-8.871,-0.021,-1.377,-1.189,-1.027,0.0,0.0,7.782,3.838,1759.0,1745.5,13591.0,4566.0,136000.0,36000.0,36000.0,19.22,86.72,26406.0,0.0,5399.0,0.0,171.0,10377.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 -house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,60000.0,24000.0,0.0,16.16,89.24,35267.0,0.0,4833.0,0.0,181.0,13937.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 +house016.xml,61.263,61.263,39.853,39.853,0.0,0.0,21.411,0.0,0.0,0.0,7.559,0.538,0.161,0.004,3.072,1.04,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.223,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.34,0.164,12.019,10.478,0.0,0.0,0.0,1.0,16.0,7459.0,3560.9,42.956,19.023,0.0,4.422,10.844,0.619,5.714,0.298,7.394,-8.024,0.0,0.0,0.0,6.778,-0.019,5.733,0.0,3.86,0.0,0.0,-8.633,-4.768,0.0,-0.35,-0.879,-0.023,2.9,-0.048,-0.599,12.366,0.0,0.0,0.0,-8.871,-0.021,-1.377,-1.189,-1.027,0.0,0.0,7.782,3.838,1759.0,1745.5,13591.0,4566.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 +house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,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,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2606.0,1095.0,711.0,800.0 -house019.xml,129.829,129.829,51.943,51.943,77.886,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.26,3.784,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.111,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.061,0.0,44.571,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6498.5,84.656,46.066,0.0,11.382,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.956,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.957,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,100000.0,60000.0,0.0,16.16,89.24,49914.0,0.0,9523.0,0.0,1028.0,26480.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 -house020.xml,116.978,116.978,56.889,56.889,0.0,0.0,60.089,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.255,2.925,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.951,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.0,34.544,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6621.3,31.034,32.551,0.908,11.005,10.577,1.134,9.808,0.633,14.613,-15.405,0.0,0.0,0.0,7.525,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.244,0.149,0.176,0.052,6.389,0.012,-1.765,21.501,0.0,0.0,0.0,-6.71,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,120000.0,60000.0,0.0,19.22,86.72,44436.0,0.0,10325.0,0.0,395.0,12858.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 -house021.xml,156.414,156.414,48.608,48.608,107.806,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.49,1.583,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.765,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.989,0.0,19.001,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4772.1,81.115,23.856,0.0,8.268,27.059,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.316,26.612,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.014,-0.865,0.005,2.201,-0.093,-1.71,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.324,8.889,3.787,1759.0,1745.5,13752.0,4620.1,130000.0,60000.0,0.0,16.16,89.24,52324.0,8017.0,10175.0,0.0,318.0,15504.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 +house019.xml,129.829,129.829,51.943,51.943,77.886,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.26,3.784,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.111,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.061,0.0,44.571,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6498.5,84.656,46.066,0.0,11.382,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.956,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.957,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 +house020.xml,116.978,116.978,56.889,56.889,0.0,0.0,60.089,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.255,2.925,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.951,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.0,34.544,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6621.3,31.034,32.551,0.908,11.005,10.577,1.134,9.808,0.633,14.613,-15.405,0.0,0.0,0.0,7.525,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.244,0.149,0.176,0.052,6.389,0.012,-1.765,21.501,0.0,0.0,0.0,-6.71,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 +house021.xml,156.414,156.414,48.608,48.608,107.806,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.49,1.583,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.765,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.989,0.0,19.001,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4772.1,81.115,23.856,0.0,8.268,27.059,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.316,26.612,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.014,-0.865,0.005,2.201,-0.093,-1.71,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.324,8.889,3.787,1759.0,1745.5,13752.0,4620.1,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 house022.xml,137.518,137.518,48.884,48.884,0.0,88.635,0.0,0.0,0.0,0.0,0.0,2.204,0.0,0.0,8.878,0.897,12.47,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,88.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.755,0.0,19.669,10.989,1.479,0.0,0.0,184.0,126.0,2989.1,5375.4,90.672,27.64,3.697,3.766,20.67,0.0,0.0,1.489,16.102,-13.284,0.0,0.0,14.728,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.522,0.0,0.0,-0.127,-0.987,12.096,0.0,0.0,1.908,0.0,-0.281,-2.742,-0.645,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 -house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,125000.0,42000.0,0.0,16.16,89.24,43971.0,0.0,5067.0,0.0,362.0,17083.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 +house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 house024.xml,129.181,129.181,44.059,44.059,0.0,85.122,0.0,0.0,0.0,0.0,0.0,2.117,0.0,0.0,5.375,0.691,16.753,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.176,0.0,16.013,14.653,2.088,0.0,0.0,0.0,0.0,2750.5,3528.1,72.024,17.577,0.0,7.189,30.113,0.0,0.0,0.682,6.988,-7.991,0.0,0.0,5.221,0.0,-0.109,25.401,0.0,1.837,0.0,11.726,-8.633,-2.537,0.0,0.564,1.148,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.499,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.853,5.531,1.379,2176.1,2226.5,14983.5,4452.7,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,21856.0,1377.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7041.0,2605.0,3636.0,800.0 house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,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,32212.0,8765.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 house026.xml,57.146,57.146,24.857,24.857,32.289,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,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,0.0,18.143,0.0,14.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,13.901,0.0,0.0,8.607,2.082,0.0,0.0,0.0,0.0,1554.0,1299.3,17.371,0.0,0.0,1.768,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.102,0.0,-0.058,2.488,0.0,3.127,0.0,0.0,-6.707,-3.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,1294.8,1282.2,8578.8,3023.3,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 house027.xml,72.675,72.675,31.766,31.766,40.908,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,7.903,1.021,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,0.0,19.958,0.0,17.881,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.8,0.0,23.144,8.564,5.231,0.0,0.0,0.0,0.0,1579.3,3624.8,24.012,22.742,0.717,1.779,7.835,0.433,0.0,0.588,5.217,-4.028,0.0,0.0,0.372,3.347,-0.138,1.744,0.0,10.422,0.0,2.036,-8.785,-2.844,0.486,1.117,0.735,0.091,0.0,-0.107,-0.293,5.629,0.0,0.0,0.112,3.831,-0.138,-0.367,-0.973,-3.484,0.0,2.602,10.733,3.103,1610.9,1574.7,10579.5,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 house028.xml,67.777,67.777,29.713,29.713,38.064,0.0,0.0,0.0,0.0,0.0,0.0,0.257,0.0,0.0,7.134,1.521,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,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.733,0.0,22.845,10.226,3.619,0.0,0.0,0.0,0.0,1516.8,3329.2,19.98,21.277,0.767,1.659,7.019,0.34,0.0,0.428,5.478,-3.79,0.0,0.0,0.233,2.471,-0.05,4.04,0.0,4.465,0.0,1.534,-9.079,-2.901,0.614,1.244,-0.524,0.118,0.0,0.074,-0.711,6.39,0.0,0.0,0.073,1.831,-0.051,-1.083,-1.206,-1.646,0.0,2.931,11.526,3.237,1857.7,1859.4,12951.5,4219.3,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 house029.xml,77.593,77.593,29.958,29.958,47.635,0.0,0.0,0.0,0.0,0.0,0.0,0.639,0.0,0.0,6.114,0.908,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,0.0,31.97,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,31.636,0.0,13.626,9.614,0.0,0.0,0.0,0.0,0.0,1604.9,3003.4,28.47,13.974,0.0,3.358,14.686,0.392,0.0,0.306,6.694,-6.461,0.0,0.0,6.933,0.0,-0.085,7.291,0.0,7.304,0.0,3.149,-8.377,-3.711,0.0,1.131,-0.846,0.009,0.0,0.055,0.372,5.722,0.0,0.0,-0.45,0.0,-0.08,-0.809,-1.069,-1.537,0.0,1.217,7.168,2.832,1610.9,1574.7,11033.0,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,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 -house030.xml,57.851,57.851,17.189,17.189,0.0,0.0,40.662,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.347,0.0,13.279,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.86,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,15.992,0.0,0.0,1.668,10.205,0.489,1.11,1.046,5.343,-4.368,0.0,0.0,0.0,3.583,-0.04,2.741,0.0,5.693,0.0,0.0,-7.808,-2.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,1066.1,992.8,6764.1,2581.1,87000.0,0.0,0.0,17.24,91.22,18728.0,0.0,3366.0,0.0,474.0,6809.0,0.0,0.0,3355.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 -house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,200000.0,96000.0,0.0,16.16,89.24,82679.0,13643.0,10261.0,0.0,650.0,23266.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 -house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.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,1341.9,1264.5,7310.3,2807.9,75000.0,0.0,0.0,16.16,89.24,30426.0,0.0,5132.0,0.0,690.0,10940.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 +house030.xml,57.851,57.851,17.189,17.189,0.0,0.0,40.662,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.347,0.0,13.279,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.86,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,15.992,0.0,0.0,1.668,10.205,0.489,1.11,1.046,5.343,-4.368,0.0,0.0,0.0,3.583,-0.04,2.741,0.0,5.693,0.0,0.0,-7.808,-2.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,1066.1,992.8,6764.1,2581.1,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 +house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 +house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.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,1341.9,1264.5,7310.3,2807.9,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 house033.xml,106.743,106.743,14.691,14.691,0.0,92.052,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.371,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,48.38,0.0,0.0,19.125,14.564,0.0,0.0,1.0,10.82,-7.637,0.0,0.0,14.706,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.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,0.0,924.8,0.0,3905.6,1188.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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 -house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.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,1759.0,1745.5,10287.1,3456.0,210000.0,0.0,0.0,16.16,89.24,60898.0,0.0,15758.0,0.0,1028.0,15579.0,0.0,4773.0,1069.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 +house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.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,1759.0,1745.5,10287.1,3456.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 house035.xml,63.505,63.505,17.521,17.521,45.985,0.0,0.0,0.0,0.0,0.0,0.0,0.809,0.0,0.0,1.742,0.119,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.522,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.706,0.0,2.673,3.92,3.822,0.0,0.0,102.0,0.0,1326.3,1899.4,39.1,9.67,0.367,6.149,10.862,0.0,0.0,0.538,5.863,-7.44,0.0,0.0,7.797,0.0,0.004,13.61,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.579,-1.589,0.0,0.0,-0.082,-1.219,7.322,0.0,0.0,-4.457,0.0,0.009,-2.738,-0.728,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 house036.xml,82.314,82.314,26.075,26.075,56.239,0.0,0.0,0.0,0.0,0.0,0.0,0.964,0.0,0.0,5.964,1.051,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.77,0.0,17.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.868,0.0,15.005,8.219,5.837,0.0,0.0,102.0,126.0,1461.8,3231.3,31.799,17.329,5.544,2.267,3.993,0.0,0.0,1.83,6.573,-7.755,0.0,0.0,21.29,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.427,-3.43,1.567,0.119,-0.032,0.0,0.0,-0.224,-0.58,6.698,0.0,0.0,2.216,0.0,-0.0,-0.749,-0.419,-0.061,0.0,0.0,4.352,2.019,1341.9,1264.5,6447.0,2476.3,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 house037.xml,87.934,87.934,21.779,21.779,0.0,66.155,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,49.998,0.0,16.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,37.091,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,29.538,0.0,0.0,16.714,11.33,0.0,0.0,1.563,7.276,-10.49,0.0,0.0,6.59,0.0,-0.309,14.696,0.0,0.461,0.0,0.0,-6.818,-3.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,1341.9,1264.5,8324.2,3197.3,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 -house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,71000.0,36000.0,0.0,16.16,89.24,30633.0,0.0,6993.0,0.0,362.0,9341.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 +house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 house039.xml,98.796,98.796,24.025,24.025,74.77,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,5.136,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.084,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,49.765,0.0,0.0,14.276,5.416,0.0,0.0,2.519,15.643,-13.75,0.0,0.0,13.85,0.0,-0.039,13.263,0.0,0.557,0.0,0.0,-4.135,-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,2176.1,2226.5,17536.3,5211.3,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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 -house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,75000.0,0.0,0.0,16.16,89.24,43973.0,0.0,7249.0,0.0,1028.0,13423.0,5873.0,795.0,946.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 -house041.xml,258.48,258.48,47.139,47.139,211.342,0.0,0.0,0.0,0.0,0.0,0.0,4.151,0.0,0.0,2.593,0.257,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,0.0,184.79,0.0,26.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,174.122,0.0,4.704,15.632,5.038,0.0,0.0,103.0,0.0,3249.4,4567.1,77.743,23.534,0.0,11.264,44.726,3.447,34.908,3.025,41.259,-22.88,0.0,0.0,4.289,17.434,-0.474,64.047,0.0,2.763,0.0,0.0,-20.278,-10.992,0.0,0.093,-2.198,-0.115,1.596,-0.209,-3.997,11.045,0.0,0.0,-0.313,-5.336,-0.472,-3.498,-1.028,-0.259,0.0,0.0,6.569,2.951,1857.7,1859.4,14896.4,4852.9,75000.0,30000.0,0.0,-13.72,81.14,97260.0,0.0,18666.0,0.0,1544.0,30313.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 -house042.xml,229.276,229.276,40.067,40.067,189.209,0.0,0.0,0.0,0.0,0.0,0.0,3.861,0.0,0.0,1.818,0.074,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,0.0,164.772,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.009,0.0,3.03,15.632,3.226,0.0,0.0,0.0,0.0,2757.4,3100.6,88.072,19.637,0.0,9.211,39.99,4.004,43.909,2.667,34.16,-21.628,0.0,0.0,2.431,14.543,-0.387,56.221,0.0,1.75,0.0,0.0,-19.149,-7.586,0.0,0.196,-1.567,-0.06,2.667,-0.158,-3.11,7.072,0.0,0.0,-0.27,-5.119,-0.384,-2.856,-0.646,-0.145,0.0,0.0,5.559,1.953,1857.7,1859.4,14896.3,4852.9,90000.0,24000.0,0.0,-13.72,81.14,84531.0,0.0,17465.0,0.0,1066.0,30498.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 -house043.xml,157.888,157.888,30.054,30.054,127.833,0.0,0.0,0.0,0.0,0.0,0.0,2.45,0.0,0.0,2.036,0.12,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,0.0,107.933,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,102.807,0.0,3.06,13.084,2.207,0.0,0.0,0.0,0.0,1988.1,2800.1,54.569,13.842,0.0,3.173,23.231,2.284,33.901,5.6,23.481,-11.471,0.0,0.0,0.548,9.95,-0.272,28.925,0.0,1.576,0.0,0.0,-14.35,-5.158,0.0,0.03,-0.918,-0.093,1.54,-0.376,-2.37,5.811,0.0,0.0,-0.07,-3.685,-0.272,-1.621,-0.541,-0.148,0.0,0.0,4.472,1.404,1610.9,1574.7,12168.1,4288.2,90000.0,30000.0,0.0,-13.72,81.14,54210.0,0.0,11581.0,0.0,2417.0,20151.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 -house044.xml,225.411,225.411,43.512,43.512,181.898,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,0.0,2.108,0.2,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,0.0,159.332,0.0,22.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.036,0.0,3.798,13.084,4.451,0.0,0.0,0.0,0.0,3091.7,3557.8,80.812,18.974,4.371,6.903,36.426,9.115,19.316,2.738,18.968,-13.322,0.0,0.0,12.713,15.115,-0.457,61.876,0.0,1.435,0.0,0.0,-18.019,-10.25,0.237,0.441,-1.454,-0.096,1.17,-0.121,-1.234,6.802,0.0,0.0,-1.152,-4.937,-0.455,-2.744,-0.487,-0.103,0.0,0.0,5.306,2.704,1610.9,1574.7,12168.1,4288.2,110000.0,36000.0,0.0,-13.72,81.14,78542.0,0.0,8527.0,0.0,1403.0,26527.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 -house045.xml,152.5,152.5,35.243,35.243,117.257,0.0,0.0,0.0,0.0,0.0,0.0,2.776,0.0,0.0,2.406,0.302,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,0.0,94.806,0.0,22.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.082,0.0,4.068,13.084,4.362,0.0,0.0,0.0,0.0,2317.0,3015.0,47.223,12.936,3.564,3.072,15.126,2.27,32.793,1.139,19.86,-13.612,1.043,-0.407,0.086,12.675,-0.187,20.633,0.0,10.931,0.0,0.0,-14.66,-7.027,-0.013,0.005,-1.094,-0.117,0.875,-0.089,-2.077,7.137,-0.068,0.396,-0.013,-4.088,-0.186,-1.186,-0.918,-1.261,0.0,0.0,4.827,2.037,1610.9,1574.7,12168.1,4288.2,70000.0,30000.0,0.0,-13.72,81.14,45202.0,0.0,8927.0,496.0,442.0,17005.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 +house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 +house041.xml,258.48,258.48,47.139,47.139,211.342,0.0,0.0,0.0,0.0,0.0,0.0,4.151,0.0,0.0,2.593,0.257,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,0.0,184.79,0.0,26.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,174.122,0.0,4.704,15.632,5.038,0.0,0.0,103.0,0.0,3249.4,4567.1,77.743,23.534,0.0,11.264,44.726,3.447,34.908,3.025,41.259,-22.88,0.0,0.0,4.289,17.434,-0.474,64.047,0.0,2.763,0.0,0.0,-20.278,-10.992,0.0,0.093,-2.198,-0.115,1.596,-0.209,-3.997,11.045,0.0,0.0,-0.313,-5.336,-0.472,-3.498,-1.028,-0.259,0.0,0.0,6.569,2.951,1857.7,1859.4,14896.4,4852.9,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 +house042.xml,229.276,229.276,40.067,40.067,189.209,0.0,0.0,0.0,0.0,0.0,0.0,3.861,0.0,0.0,1.818,0.074,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,0.0,164.772,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.009,0.0,3.03,15.632,3.226,0.0,0.0,0.0,0.0,2757.4,3100.6,88.072,19.637,0.0,9.211,39.99,4.004,43.909,2.667,34.16,-21.628,0.0,0.0,2.431,14.543,-0.387,56.221,0.0,1.75,0.0,0.0,-19.149,-7.586,0.0,0.196,-1.567,-0.06,2.667,-0.158,-3.11,7.072,0.0,0.0,-0.27,-5.119,-0.384,-2.856,-0.646,-0.145,0.0,0.0,5.559,1.953,1857.7,1859.4,14896.3,4852.9,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 +house043.xml,157.888,157.888,30.054,30.054,127.833,0.0,0.0,0.0,0.0,0.0,0.0,2.45,0.0,0.0,2.036,0.12,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,0.0,107.933,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,102.807,0.0,3.06,13.084,2.207,0.0,0.0,0.0,0.0,1988.1,2800.1,54.569,13.842,0.0,3.173,23.231,2.284,33.901,5.6,23.481,-11.471,0.0,0.0,0.548,9.95,-0.272,28.925,0.0,1.576,0.0,0.0,-14.35,-5.158,0.0,0.03,-0.918,-0.093,1.54,-0.376,-2.37,5.811,0.0,0.0,-0.07,-3.685,-0.272,-1.621,-0.541,-0.148,0.0,0.0,4.472,1.404,1610.9,1574.7,12168.1,4288.2,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 +house044.xml,225.411,225.411,43.512,43.512,181.898,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,0.0,2.108,0.2,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,0.0,159.332,0.0,22.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.036,0.0,3.798,13.084,4.451,0.0,0.0,0.0,0.0,3091.7,3557.8,80.812,18.974,4.371,6.903,36.426,9.115,19.316,2.738,18.968,-13.322,0.0,0.0,12.713,15.115,-0.457,61.876,0.0,1.435,0.0,0.0,-18.019,-10.25,0.237,0.441,-1.454,-0.096,1.17,-0.121,-1.234,6.802,0.0,0.0,-1.152,-4.937,-0.455,-2.744,-0.487,-0.103,0.0,0.0,5.306,2.704,1610.9,1574.7,12168.1,4288.2,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 +house045.xml,152.5,152.5,35.243,35.243,117.257,0.0,0.0,0.0,0.0,0.0,0.0,2.776,0.0,0.0,2.406,0.302,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,0.0,94.806,0.0,22.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.082,0.0,4.068,13.084,4.362,0.0,0.0,0.0,0.0,2317.0,3015.0,47.223,12.936,3.564,3.072,15.126,2.27,32.793,1.139,19.86,-13.612,1.043,-0.407,0.086,12.675,-0.187,20.633,0.0,10.931,0.0,0.0,-14.66,-7.027,-0.013,0.005,-1.094,-0.117,0.875,-0.089,-2.077,7.137,-0.068,0.396,-0.013,-4.088,-0.186,-1.186,-0.918,-1.261,0.0,0.0,4.827,2.037,1610.9,1574.7,12168.1,4288.2,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 house046.xml,25.039,25.039,25.039,25.039,0.0,0.0,0.0,0.0,0.0,0.0,5.363,0.445,0.267,0.009,3.74,1.039,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,0.0,13.919,0.276,12.851,4.305,0.617,0.0,0.0,0.0,0.0,3842.2,2404.7,16.167,13.006,0.0,2.523,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.283,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.818,4.589,0.545,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,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 house047.xml,20.762,20.762,14.475,14.475,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.596,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,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,0.0,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.4,968.8,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.729,-0.554,0.0,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.101,0.032,0.0,0.0,-0.093,0.798,0.0,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.276,0.409,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,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 house048.xml,91.545,91.545,39.87,39.87,51.675,0.0,0.0,0.0,0.0,0.0,0.0,0.331,0.0,0.0,12.958,3.843,0.0,0.0,0.0,3.691,0.085,0.498,3.014,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,0.0,35.721,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,28.9,0.0,51.647,7.253,2.672,0.0,0.0,0.0,0.0,1537.0,5475.4,41.96,33.156,1.017,2.617,11.966,0.0,0.0,0.809,4.918,-2.538,0.0,0.0,0.057,2.027,-0.53,6.789,0.0,4.189,0.0,6.375,-7.395,-1.508,1.351,1.066,9.35,0.0,0.0,0.558,2.746,4.304,0.0,0.0,0.074,10.099,-0.517,0.518,-0.451,1.922,0.0,7.048,11.596,2.183,130.3,817.7,11617.6,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,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index c884760124..29b0e22671 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -287,17 +287,17 @@ base-hvac-furnace-oil-only.xml,1760.65,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1798.62,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,621.61,621.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-wood-only.xml,1525.16,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-borefield-configuration.xml,1463.02,144.0,1319.02,0.0,1463.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-count.xml,1462.2,144.0,1318.2,0.0,1462.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-diameter.xml,1462.05,144.0,1318.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-length.xml,1459.99,144.0,1315.99,0.0,1459.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-spacing.xml,1460.69,144.0,1316.69,0.0,1460.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-ground-diffusivity.xml,1462.0,144.0,1318.0,0.0,1462.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-grout-conductivity.xml,1461.95,144.0,1317.95,0.0,1461.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-loop-flow.xml,1462.04,144.0,1318.04,0.0,1462.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-conductivity.xml,1461.33,144.0,1317.33,0.0,1461.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-diameter.xml,1461.41,144.0,1317.41,0.0,1461.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-shank-spacing.xml,1460.27,144.0,1316.27,0.0,1460.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-borefield-configuration.xml,1463.08,144.0,1319.08,0.0,1463.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-count.xml,1462.26,144.0,1318.26,0.0,1462.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-diameter.xml,1462.11,144.0,1318.11,0.0,1462.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-length.xml,1460.05,144.0,1316.05,0.0,1460.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-spacing.xml,1460.76,144.0,1316.76,0.0,1460.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-ground-diffusivity.xml,1462.06,144.0,1318.06,0.0,1462.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-grout-conductivity.xml,1462.01,144.0,1318.01,0.0,1462.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-loop-flow.xml,1462.1,144.0,1318.1,0.0,1462.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-conductivity.xml,1461.39,144.0,1317.39,0.0,1461.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-diameter.xml,1461.47,144.0,1317.47,0.0,1461.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-shank-spacing.xml,1460.33,144.0,1316.33,0.0,1460.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1270.71,144.0,1126.71,0.0,1270.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-heating-only.xml,1361.93,144.0,1217.93,0.0,1361.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump.xml,1461.32,144.0,1317.32,0.0,1461.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 5c96a44837681f4fb68edc5cf077abd8b8c6eba2 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 29 Jun 2023 10:00:16 -0700 Subject: [PATCH 060/217] Update g_function downselect to include more configurations. --- .../g_functions/C_configurations_5m_v1.0.json | 6490 +++- .../g_functions/L_configurations_5m_v1.0.json | 6926 +++- .../LopU_configurations_5m_v1.0.json | 27748 +++++++++++++++- .../Open_configurations_5m_v1.0.json | 6562 +++- .../g_functions/U_configurations_5m_v1.0.json | 6638 +++- .../g_functions/rectangle_5m_v1.0.json | 20628 ++++++++++-- .../resources/g_functions/util.rb | 2 +- .../g_functions/zoned_rectangle_5m_v1.0.json | 17690 +++++++++- 8 files changed, 86796 insertions(+), 5888 deletions(-) diff --git a/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json index bba943ab04..69fbd4f88f 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json @@ -887,7 +887,7 @@ ] } }, - "4_4": { + "3_7": { "1": { "bore_locations": [ [ @@ -903,28 +903,32 @@ 0.0 ], [ - 15.0, - 0.0 - ], - [ - 15.0, + 10.0, 5.0 ], [ - 15.0, + 10.0, 10.0 ], [ - 0.0, + 10.0, 15.0 ], [ 10.0, - 15.0 + 20.0 ], [ - 15.0, - 15.0 + 10.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 10.0, + 30.0 ], [ 0.0, @@ -933,153 +937,165 @@ [ 0.0, 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 ] ], "g": { "5._192._0.08": [ - 2.8351669612369923, - 3.187131809821055, - 3.5217574552296442, - 4.031860000556221, - 4.642789924984922, - 5.664050926695616, - 7.177536839227692, - 8.73205712185217, - 11.14645622530254, - 12.68750861068738, - 13.794921102061611, - 15.339985850260671, - 16.399605548253966, - 18.73422495054544, - 20.675477814061185, - 21.20270161298177, - 21.673507036497224, - 22.130117723325338, - 22.48254787979569, - 22.783313445882108, - 23.041506933773235, - 23.25700176539784, - 23.417612525329186, - 23.600819999746907, - 23.725907494602644, - 23.78730535626037, - 23.886809623125316 + 2.8351685474129886, + 3.187249489860495, + 3.5224109464677738, + 4.032684670090973, + 4.654023445970479, + 5.750715925406668, + 7.44179454377947, + 9.209065650562309, + 12.028211908191858, + 13.887871931821303, + 15.253208244697293, + 17.192063513139082, + 18.54203385837481, + 21.55099337287424, + 24.071119764312854, + 24.756845464008894, + 25.36810093824561, + 25.96007756211005, + 26.41580638435971, + 26.80450087743695, + 27.137519762034785, + 27.414955087466687, + 27.621655802131343, + 27.857185290816126, + 28.018036820617628, + 28.097048025008842, + 28.22530467666652 ], "5._24._0.075": [ - 0.8740059532267964, + 0.8740059532267966, 1.1958031759615428, 1.4813847491413066, - 1.819821321700434, + 1.8198213217004349, 2.1114679242247285, - 2.4511928331436965, - 2.7884196223805504, - 3.044992027085384, - 3.38791749451322, - 3.6173418260566677, - 3.803349868661866, - 4.110060121199708, - 4.362469622374145, - 5.11332117909886, - 6.085104560190628, - 6.434924828625525, - 6.7899634813382646, - 7.177169255216708, - 7.509350469809416, - 7.815605489491669, - 8.097485888963899, - 8.346592396306441, - 8.539609729993684, - 8.766974322953123, - 8.926316375019143, - 9.005943772244606, - 9.13667321203526 + 2.45119283316962, + 2.788419987777566, + 3.0450141409276967, + 3.3883070230574313, + 3.618071743901366, + 3.8040636834475223, + 4.111402115463092, + 4.367751956161952, + 5.163554966124933, + 6.242767904109351, + 6.6367680871824986, + 7.0390173564418825, + 7.480903481108108, + 7.863533793910546, + 8.220093365652007, + 8.552259313057426, + 8.849672308609033, + 9.0831406765669, + 9.361880434062318, + 9.560131691390616, + 9.660293492069458, + 9.826512606569556 ], "5._384._0.0875": [ - 3.4917854785249274, - 4.027892682863467, - 4.674512332290674, - 5.76433018715352, - 7.118823424030785, - 9.27496727848396, - 11.950748739554333, - 14.215514760326917, - 17.213590667732912, - 18.94650290689656, - 20.1401514543864, - 21.755871343338576, - 22.842316077409556, - 25.203207795314178, - 27.15383368215816, - 27.68261441976035, - 28.155994660819886, - 28.615633613620084, - 28.971159712344004, - 29.274716510103367, - 29.535753696189534, - 29.753984531395947, - 29.91669228327421, - 30.102527311648508, - 30.229375158748294, - 30.29158608804928, - 30.39228523455161 + 3.492521703980012, + 4.02895294852527, + 4.690360254763014, + 5.868855167821229, + 7.384184533385374, + 9.841524860263979, + 12.994620186364156, + 15.768848563789192, + 19.566011203576302, + 21.810059371382508, + 23.370077020027388, + 25.49127964773139, + 26.921820435757887, + 30.02683239339844, + 32.584887758490204, + 33.27714723415724, + 33.89566474901202, + 34.495235225453065, + 34.9579494645981, + 35.352844242830145, + 35.69192916440379, + 35.97504170985652, + 36.18609191279858, + 36.42699698419069, + 36.59148356897036, + 36.672201376159926, + 36.80301735521162 ], "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.5060808689637457, - 2.800134562232989, - 3.14327916441727, - 3.5123102532597708, - 3.861332630541545, - 4.46625801003282, - 4.930366410124289, - 5.320873222479279, - 5.977986165022717, - 6.523082498661355, - 8.070512526217932, - 9.74033387825479, - 10.249977839170032, - 10.72380344038845, - 11.198839359120816, - 11.575308318512594, - 11.901326389413148, - 12.18463074954121, - 12.42294215151655, - 12.601109309351095, - 12.804250491457228, - 12.943133129933976, - 13.011482757605545, - 13.122456061328451 + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.506080869086975, + 2.8001348882647212, + 3.143330667076029, + 3.512875564734424, + 3.862076841501366, + 4.471986784846617, + 4.956955922636251, + 5.378117879718728, + 6.103932829009755, + 6.71430795190545, + 8.467636827910919, + 10.411621105876742, + 11.021389478586112, + 11.595072342097712, + 12.177449672030294, + 12.643748388181882, + 13.05121744616808, + 13.407577988279836, + 13.708768285958595, + 13.934773736293664, + 14.192893401603545, + 14.36981357317642, + 14.45711968484396, + 14.59931960054536 ], "5._96._0.075": [ - 2.209271810327405, - 2.5553235630354036, - 2.85191445085216, - 3.2002236321495934, - 3.5241752721853348, - 4.0072483561728, - 4.693830270584265, - 5.424314266196199, - 6.744298970435425, - 7.750465107474564, - 8.557800527938326, - 9.799245263410551, - 10.719250086160097, - 12.912412337145456, - 14.85221260258157, - 15.391211680617198, - 15.87463723683865, - 16.34552964897247, - 16.709868891192656, - 17.02099235650318, - 17.288039892312778, - 17.51073252615451, - 17.67656252866379, - 17.865298415493864, - 17.99408591656644, - 18.057328074885103, - 18.159887791902026 + 2.2092718103274036, + 2.5553235635508975, + 2.851915194220727, + 3.2003031797528774, + 3.5247365251559386, + 4.0079874978489425, + 4.705451448765456, + 5.48494170422, + 6.951699784385181, + 8.088410450547489, + 9.010185200751817, + 10.448270841596655, + 11.534294234850128, + 14.19513373933564, + 16.62997741968011, + 17.317641527636713, + 17.936737909514477, + 18.541441605971094, + 19.009514738877343, + 19.409586863612216, + 19.75267224583673, + 20.038400340486913, + 20.251106800172455, + 20.492850095365743, + 20.6578575935991, + 20.73897025242924, + 20.87076658806699 ] }, "logtime": [ @@ -1113,7 +1129,7 @@ ] } }, - "4_5": { + "3_8": { "1": { "bore_locations": [ [ @@ -1129,32 +1145,36 @@ 0.0 ], [ - 15.0, - 0.0 - ], - [ - 15.0, + 10.0, 5.0 ], [ - 15.0, + 10.0, 10.0 ], [ - 15.0, + 10.0, 15.0 ], [ - 0.0, + 10.0, 20.0 ], [ 10.0, - 20.0 + 25.0 ], [ - 15.0, - 20.0 + 10.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 10.0, + 35.0 ], [ 0.0, @@ -1167,153 +1187,6051 @@ [ 0.0, 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 ] ], "g": { "5._192._0.08": [ - 2.8351678770733755, - 3.187202360842244, - 3.5222558951808356, - 4.033001480958287, - 4.64282847825528, - 5.658749749401029, - 7.180451156340128, - 8.792647613304357, - 11.396386191115555, - 13.108044712131049, - 14.35553574266794, - 16.113330138517803, - 17.32739253678775, - 20.01267682522805, - 22.247947491528564, - 22.854879473699143, - 23.396018982536418, - 23.920222244172166, - 24.324104590001333, - 24.66861275115878, - 24.96397783422694, - 25.21020822306621, - 25.393677703397284, - 25.60281885520403, - 25.745626917382793, - 25.815750974401922, - 25.929501898575484 + 2.8351690611500655, + 3.1872895973536286, + 3.522717430862418, + 4.033789709070436, + 4.656977641220345, + 5.7629269653417055, + 7.48583154450864, + 9.308172055960746, + 12.260671350847344, + 14.239050872911642, + 15.706060504399428, + 17.807684388812714, + 19.28257870253823, + 22.59275416668248, + 25.37960451984324, + 26.139148526900623, + 26.815773181014563, + 27.470706507624055, + 27.974310286158875, + 28.403726037078606, + 28.771283870557852, + 29.077218063157076, + 29.305108238575503, + 29.56464274997427, + 29.74190856366356, + 29.829014631016236, + 29.970526299709217 ], "5._24._0.075": [ - 0.8740059532267966, + 0.8740059532267964, 1.1958031759615426, 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.4511928331586543, - 2.7884198332326826, - 3.045004897367837, - 3.3881764117636184, - 3.617997972654443, - 3.804287760326047, - 4.111048434608664, - 4.362992513447313, - 5.11016852521276, - 6.0823655856408045, - 6.438280156515094, - 6.804360914987624, - 7.209761383441146, - 7.563068641706794, - 7.893389830525229, - 8.201390950021436, - 8.476747535956298, - 8.69210657983334, - 8.947878709814887, - 9.128428140011792, + 1.8198213217004358, + 2.1114679242247285, + 2.4511928331780073, + 2.7884201060295513, + 3.0450213812844344, + 3.3884593828091103, + 3.61849718900961, + 3.804772148056534, + 4.112681729643054, + 4.369750429462297, + 5.170906851267666, + 6.267291582499872, + 6.670676414826567, + 7.084470317408597, + 7.541474296262444, + 7.9395511248409125, + 8.312674094813019, + 8.662450476127596, + 8.977687070602872, + 9.226718464588833, + 9.526105482424894, + 9.7407291797187, + 9.849834180975432, + 10.032058130519575 + ], + "5._384._0.0875": [ + 3.4929022917496537, + 4.030222616659777, + 4.6938926401601195, + 5.8835966176042795, + 7.428220407940364, + 9.96688942686706, + 13.2835620853291, + 16.25468429480388, + 20.388075264049775, + 22.859787959634275, + 24.5872224292921, + 26.94321146773722, + 28.535467813670703, + 31.991792129034668, + 34.83665680398526, + 35.6059981007928, + 36.29273355028419, + 36.95789481714896, + 37.470646019133554, + 37.9081402605778, + 38.28352368142692, + 38.59673513532801, + 38.830202515905064, + 39.09661357773843, + 39.278539385263564, + 39.36784030073385, + 39.51265492697085 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808691268432, + 2.8001349937734696, + 3.1433477492852973, + 3.5131230298852576, + 3.8628217779493452, + 4.474149805113323, + 4.961598964807017, + 5.386374108879229, + 6.121943923067568, + 6.743994183917707, + 8.548795618612344, + 10.583052045310557, + 11.229648805175845, + 11.841609422235885, + 12.466632620318652, + 12.969823713466461, + 13.411592072060705, + 13.799415695857663, + 14.128198104822749, + 14.375498282775053, + 14.658371880370428, + 14.852606468317692, + 14.948616330875938, + 15.105279153629253 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.555323563717674, + 2.851915434855738, + 3.200329871511864, + 3.524979467243202, + 4.008947564668668, + 4.708430853619558, + 5.49370148428002, + 6.984145980552602, + 8.15052731896665, + 9.103627305689466, + 10.603713275857157, + 11.747368862845702, + 14.586604774327421, + 17.228986662777427, + 17.982063162446906, + 18.661680524766936, + 19.326808225196885, + 19.84206762432335, + 20.282820991871443, + 20.660753797822956, + 20.9753823281512, + 21.209593375949495, + 21.475619970377096, + 21.657240780210998, + 21.74657077682526, + 21.891865550916886 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_9": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 10.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169466732101, + 3.187321261194923, + 3.5229593982963237, + 4.034662299968234, + 4.659311272479677, + 5.772584143072297, + 7.520798657255935, + 9.387324295594256, + 12.44878371471149, + 14.526767866998277, + 16.08096472389756, + 18.32553830833365, + 19.912766920367286, + 23.50113114766947, + 26.540874593926418, + 27.37114341463846, + 28.110497790192905, + 28.825904255005106, + 29.375455056704215, + 29.84395561110785, + 30.244621563917818, + 30.577835930595977, + 30.826003657034786, + 31.10848818518915, + 31.301452257623925, + 31.396306763787308, + 31.550529145700658 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833184629, + 2.788420199386376, + 3.0450270973558915, + 3.3885796675737714, + 3.6188330788331737, + 3.8053315115410355, + 4.113692184539551, + 4.371328729734645, + 5.176717810724104, + 6.286724963445385, + 6.697577569661203, + 7.120578401024115, + 7.589693201563709, + 8.000218838426205, + 8.386793943521099, + 8.751023469163487, + 9.081085009838208, + 9.343255698782489, + 9.660424488980073, + 9.88952097828785, + 10.00671013560245, + 10.203779549882467 + ], + "5._384._0.0875": [ + 3.493202814374735, + 4.031225313396916, + 4.696683351956658, + 5.895258949336693, + 7.463183615052692, + 10.067311843808254, + 13.518546824042424, + 16.657150557450777, + 21.088844656849815, + 23.76983435114525, + 25.65403847603592, + 28.23284111855567, + 29.980157025676686, + 33.77553858626239, + 36.898145953599645, + 37.74216561558878, + 38.49489705349406, + 39.22343171328063, + 39.7844244229685, + 40.26297101985195, + 40.673280787917776, + 41.015412876169385, + 41.27041487990193, + 41.56131118331105, + 41.759981630286156, + 41.85752818995936, + 42.01580799948628 + ], + "5._48._0.075": [ + 1.5268463243731414, + 1.8679037053125422, + 2.1622431316564774, + 2.506080869158316, + 2.8001350770698537, + 3.1433612352433387, + 3.5133184003307334, + 3.8634099538624156, + 4.475858258287031, + 4.965267195005755, + 5.39289888862462, + 6.136191660028295, + 6.767505975605478, + 8.613537551900134, + 10.721349836664992, + 11.398597575879062, + 12.042895947840169, + 12.704503302769277, + 13.239898855377104, + 13.712069043053093, + 14.128201853046836, + 14.482158976856134, + 14.749120480715616, + 15.055101157898811, + 15.265666709327911, + 15.369947353325774, + 15.540455431866024 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.555323563849342, + 2.8519156248307387, + 3.2003509439627296, + 3.525171266805149, + 4.009705645442357, + 4.710784459073927, + 5.50062591764547, + 7.009869748002814, + 8.199921428061158, + 9.17815675608328, + 10.728532163023635, + 11.919593176824336, + 14.909739412500185, + 17.73595458579694, + 18.548809022587204, + 19.284352741312123, + 20.005892843610354, + 20.56554154558606, + 21.044786153218197, + 21.455811672762106, + 21.797950390563884, + 22.052665577672684, + 22.341859125618967, + 22.539354784471037, + 22.63655260707252, + 22.794807232316007 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_10": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 10.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351697950605064, + 3.187346893848355, + 3.523155280617889, + 4.035368806994228, + 4.661201289664252, + 5.780412789034576, + 7.549234541760134, + 9.452009063163974, + 12.604120429267946, + 14.766515327825864, + 16.3958570905402, + 18.766122107234718, + 20.45419904434237, + 24.2987618946057, + 27.577922585638547, + 28.475943917640535, + 29.275535654313057, + 30.049105397958325, + 30.64283621370807, + 31.148931495900406, + 31.581412392430586, + 31.940811388732545, + 32.208438185844564, + 32.51292793318535, + 32.720949955037334, + 32.82324352780976, + 32.9896912340219 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413081, + 1.8198213217004342, + 2.111467924224728, + 2.4511928331899875, + 2.788420274960955, + 3.0450317246520586, + 3.3886770414395033, + 3.619104997466768, + 3.805784361474253, + 4.114510322553216, + 4.372606762225959, + 5.181426346809601, + 6.302503364258968, + 6.719440140644182, + 7.149956692990546, + 7.628993207238191, + 8.049761103745675, + 8.44746255555381, + 8.823730184359768, + 9.166254716737786, + 9.439592793489712, + 9.77211364605482, + 10.01398807247954, + 10.138464486249628, + 10.349268935084025 + ], + "5._384._0.0875": [ + 3.493446132473489, + 4.032037231786687, + 4.6989437843587485, + 5.904715646459216, + 7.491614375915535, + 10.149584618321366, + 13.713323433211606, + 16.995371162711326, + 21.69172067612651, + 24.56448672057875, + 26.594969982865386, + 29.384600108843102, + 31.28029655868146, + 35.40272902560374, + 38.794543869210194, + 39.71102163941047, + 40.527709153182165, + 41.31759037849799, + 41.925187604391084, + 42.443377072398725, + 42.88736409250502, + 43.257344806802536, + 43.53307849554867, + 43.847531535370706, + 44.062314809413046, + 44.1678000681915, + 44.33905999563415 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.867903705312543, + 2.1622431316564787, + 2.5060808691837972, + 2.800135144500257, + 3.1433721524496403, + 3.5134765594397375, + 3.8638861403414055, + 4.477241812696819, + 4.968238441864557, + 5.398185189968357, + 6.147743943796449, + 6.786588203768167, + 8.666395963103227, + 10.835257092023094, + 11.538293101300248, + 12.210114446801747, + 12.903231242725656, + 13.466777425721169, + 13.965877002630355, + 14.407436585758399, + 14.784313266803508, + 15.06939160248798, + 15.396917495447635, + 15.622888964157095, + 15.735036986985607, + 15.91882417754034 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.55532356395593, + 2.8519157786200315, + 3.2003680026196, + 3.525326535170561, + 4.010319416029912, + 4.71269069237238, + 5.506237117592002, + 7.030763397646102, + 8.240139130747172, + 9.238992142145298, + 10.83095896835687, + 12.06160849608854, + 15.18045706569664, + 18.169486985519647, + 19.036843299942902, + 19.823933707296597, + 20.598021909769663, + 21.199370480448305, + 21.715013082440908, + 22.157476347832674, + 22.52583463022703, + 22.800136654860722, + 23.111487841868012, + 23.32419640797804, + 23.428950689023143, + 23.599688215446346 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_11": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 10.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 10.0, + 50.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835170066288373, + 3.1873680686625017, + 3.5233170990960474, + 4.035952526875689, + 4.662763207184392, + 5.786887319485472, + 7.5728123543743395, + 9.505860779166706, + 12.734577177549298, + 14.96925431986389, + 16.663785323327545, + 19.14489096325024, + 20.92351339147571, + 25.003606743808554, + 28.50910311466362, + 29.472007469248737, + 30.32946264653677, + 31.159025512398646, + 31.79530069644243, + 32.33762137558388, + 32.800738604959754, + 33.185329813628584, + 33.471675661156546, + 33.79731866494462, + 34.01982216203381, + 34.129276690579346, + 34.307514053513444 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615415, + 1.4813847491413088, + 1.8198213217004349, + 2.1114679242247254, + 2.4511928331944146, + 2.7884203373921266, + 3.045035547201219, + 3.388757481047069, + 3.6193296311833945, + 3.8061584764086387, + 4.115186277420732, + 4.3736627717716265, + 5.185318997070215, + 6.315569203511884, + 6.737558298850922, + 7.1743262111330965, + 7.6616398569508215, + 8.090981492225998, + 8.498034391007616, + 8.884470037146546, + 9.237590124600372, + 9.52049717825071, + 9.866330875250933, + 10.119492723868309, + 10.250527323758451, + 10.47401090611532 + ], + "5._384._0.0875": [ + 3.493647159949176, + 4.0327080897587555, + 4.70081196564292, + 5.912538357696871, + 7.515186603729773, + 10.218223268508304, + 13.877401562014027, + 17.28329732279739, + 22.214863679400565, + 25.26306820605536, + 27.42968006282536, + 30.418297144707733, + 32.455714168084256, + 36.89340121136779, + 40.54632728090225, + 41.533196633881666, + 42.41195491827624, + 43.26131884214384, + 43.91401981385214, + 44.47056112537409, + 44.947082508835436, + 45.343931735977435, + 45.63966305886928, + 45.976824217083504, + 46.207142919833984, + 46.3202864095188, + 46.504083396069696 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.162243131656478, + 2.5060808692048497, + 2.800135200203634, + 3.1433811710128325, + 3.513607214021616, + 3.8642795415259856, + 4.478385100618678, + 4.970694116434444, + 5.402555063575382, + 6.157299570092233, + 6.802384828949928, + 8.710367856506407, + 10.930713036286058, + 11.65569403113855, + 12.351141513024375, + 13.071554601851643, + 13.65978571734247, + 14.182764063866822, + 14.647152918655735, + 15.044870367444215, + 15.346616593607765, + 15.694207230853667, + 15.93470818913581, + 16.054343409022536, + 16.25088313027282 + ], + "5._96._0.075": [ + 2.2092718103274245, + 2.5553235640439795, + 2.851915905663359, + 3.2003820945577046, + 3.525454801727738, + 4.010826502055222, + 4.714266037253784, + 5.510876311783476, + 7.048070477378527, + 8.273519739378624, + 9.289589899849627, + 10.91652313303611, + 12.180697827551004, + 15.410299719320092, + 18.543753201521227, + 19.460740676216048, + 20.295256175939645, + 21.11820099238002, + 21.75866987812454, + 22.308703778499943, + 22.7810318250658, + 23.174398459177333, + 23.467436583319113, + 23.800022528343703, + 24.027344282321177, + 24.139374699743158, + 24.32216843416258 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_12": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 10.0, + 45.0 + ], + [ + 10.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 10.0, + 55.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351702941198194, + 3.18738585551581, + 3.5234530284687247, + 4.036442910067869, + 4.664075636877078, + 5.792331097317524, + 7.592678989002939, + 9.551389349721669, + 12.845700958863747, + 15.142897396167223, + 16.894383698812295, + 19.473626378375066, + 21.333654020933977, + 25.630093891591645, + 29.34928880628221, + 30.37429955707191, + 31.28734252801297, + 32.17084237173577, + 32.84813449267921, + 33.42541172071023, + 33.91808281324539, + 34.3269608880056, + 34.63135223931956, + 34.977375441069746, + 35.21383823550689, + 35.33020221405432, + 35.51983588911599 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.1958031759615422, + 1.4813847491413077, + 1.8198213217004342, + 2.111467924224724, + 2.4511928331981347, + 2.7884203898343105, + 3.04503875814262, + 3.3888250505461914, + 3.619518327197289, + 3.8064727479945897, + 4.115754150643895, + 4.374549990130277, + 5.188590915665902, + 6.326566597481553, + 6.7528180552148305, + 7.194867145072564, + 7.68919067965919, + 8.125814080415223, + 8.540835553611272, + 8.935968679547626, + 9.298195014768217, + 9.589372696631006, + 9.946815828244986, + 10.209967457945707, + 10.346900957999564, + 10.582067704022807 + ], + "5._384._0.0875": [ + 3.4938160409090355, + 4.0332717103122135, + 4.702381844826293, + 5.91911689772845, + 7.535047584500037, + 10.276356254629064, + 14.017524836889528, + 17.531247959571516, + 22.67247828809806, + 25.88108428237394, + 28.17414906306515, + 31.35019946487348, + 33.52274348827976, + 38.2640843804987, + 42.17039267202718, + 43.22571710018811, + 44.16479325259062, + 45.07191637205317, + 45.76833833956666, + 46.362043238330685, + 46.87004848921041, + 47.29286621011352, + 47.60792118298832, + 47.96701155831587, + 48.212335814884945, + 48.3328802068162, + 48.528807917039614 + ], + "5._48._0.075": [ + 1.5268463243731347, + 1.8679037053125396, + 2.1622431316564747, + 2.5060808692225303, + 2.800135246994468, + 3.143388746606941, + 3.513716964852696, + 3.8646100193203314, + 4.479345708444172, + 4.972757698948527, + 5.406227806700895, + 6.165335001432045, + 6.81567714001437, + 8.74751962102427, + 11.011874066986053, + 11.755734805376688, + 12.471642810420496, + 13.21586209440887, + 13.825832904042242, + 14.370034541705897, + 14.854936184422726, + 15.271597364463108, + 15.58866311405151, + 15.95491953593576, + 16.20911649208478, + 16.335877721240667, + 16.544674377075435 + ], + "5._96._0.075": [ + 2.2092718103274147, + 2.5553235641179417, + 2.8519160123797533, + 3.200393931788628, + 3.525562546604679, + 4.011252494978861, + 4.71558976793755, + 5.514775932770901, + 7.0626414623965985, + 8.301669879460897, + 9.332333046849698, + 10.98907148740223, + 12.28199009160707, + 15.60776501453851, + 18.869677638519473, + 19.831849062269864, + 20.709953314342986, + 21.578258249731455, + 22.255384134592685, + 22.837885368256273, + 23.338576233096298, + 23.755805184603673, + 24.06678280837344, + 24.419751127682318, + 24.661137473593776, + 24.78018923114803, + 24.974653883023162 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_13": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 10.0, + 45.0 + ], + [ + 10.0, + 50.0 + ], + [ + 10.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 10.0, + 60.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351704881984765, + 3.18740100728654, + 3.5235688214896115, + 4.036860686027265, + 4.6651939343762505, + 5.796972118327722, + 7.609646698175326, + 9.590385260098646, + 12.941497975989792, + 15.293272361793866, + 17.09487628768432, + 19.761410689994726, + 21.694788308445325, + 26.189936616575277, + 30.110686651010056, + 31.19511552525001, + 32.16155510563722, + 33.09703051044481, + 33.813902156477, + 34.42495139424848, + 34.94617514384111, + 35.378508767254836, + 35.70032882860205, + 36.06602676240361, + 36.315973221708944, + 36.439017961314576, + 36.63969090451189 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.195803175961542, + 1.481384749141308, + 1.8198213217004349, + 2.111467924224725, + 2.451192833201305, + 2.7884204345072847, + 3.0450414933890713, + 3.3888826099139004, + 3.619679070904986, + 3.8067404716593316, + 4.11623794573388, + 4.37530589142501, + 5.19137961349848, + 6.335950691508621, + 6.765846353012053, + 7.212415942358394, + 7.712752224265555, + 8.155636624962488, + 8.577528798521826, + 8.980184583493642, + 9.350316072163276, + 9.648703608636747, + 10.016334133852537, + 10.288353186323144, + 10.430594923131759, + 10.676512846962027 + ], + "5._384._0.0875": [ + 3.493959915346102, + 4.033751903452785, + 4.703719586571986, + 5.924726220261334, + 7.552009774704984, + 10.326222884658614, + 14.138593329969712, + 17.746964721082307, + 23.075764059298887, + 26.43107090297224, + 28.841475917948923, + 32.19380764455027, + 34.49499872234122, + 39.52859107339617, + 43.680864068460565, + 44.80281782304037, + 45.80057305025507, + 46.763853566730454, + 47.5027167114275, + 48.13248671066469, + 48.67100625681107, + 49.118962734246686, + 49.45272009989958, + 49.83302203732862, + 50.092863749010405, + 50.22057206728202, + 50.42825647393138 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125405, + 2.162243131656473, + 2.506080869237592, + 2.8001352868533305, + 3.1433951998915504, + 3.5138104570088218, + 3.864891552421151, + 4.4801641811891795, + 4.974516153341684, + 5.409357916364284, + 6.172186274036028, + 6.827016913810925, + 8.77932334151659, + 11.081731675384795, + 11.841998940112774, + 12.57577801465178, + 13.340906231905777, + 13.970118694058804, + 14.533244569832906, + 15.036608141194508, + 15.470495636856157, + 15.801635351935877, + 16.18524136979212, + 16.452340719610472, + 16.585883011911317, + 16.806465821408825 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.5553235641809446, + 2.8519161032863134, + 3.20040401535781, + 3.525654329975423, + 4.01161540712628, + 4.716717708070516, + 5.518099776474237, + 7.075077635927672, + 8.325729459548489, + 9.368918381563017, + 11.051362922280521, + 12.36919391727828, + 15.77920484031964, + 19.155777571056237, + 20.159105586935684, + 21.077259490744115, + 21.98763878256329, + 22.699081390646516, + 23.312208474205743, + 23.83982480562098, + 24.27982540998337, + 24.60799078304455, + 24.980547164330968, + 25.23549190376205, + 25.36133138322122, + 25.56711608284353 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351669612369923, + 3.187131809821055, + 3.5217574552296442, + 4.031860000556221, + 4.642789924984922, + 5.664050926695616, + 7.177536839227692, + 8.73205712185217, + 11.14645622530254, + 12.68750861068738, + 13.794921102061611, + 15.339985850260671, + 16.399605548253966, + 18.73422495054544, + 20.675477814061185, + 21.20270161298177, + 21.673507036497224, + 22.130117723325338, + 22.48254787979569, + 22.783313445882108, + 23.041506933773235, + 23.25700176539784, + 23.417612525329186, + 23.600819999746907, + 23.725907494602644, + 23.78730535626037, + 23.886809623125316 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.4511928331436965, + 2.7884196223805504, + 3.044992027085384, + 3.38791749451322, + 3.6173418260566677, + 3.803349868661866, + 4.110060121199708, + 4.362469622374145, + 5.11332117909886, + 6.085104560190628, + 6.434924828625525, + 6.7899634813382646, + 7.177169255216708, + 7.509350469809416, + 7.815605489491669, + 8.097485888963899, + 8.346592396306441, + 8.539609729993684, + 8.766974322953123, + 8.926316375019143, + 9.005943772244606, + 9.13667321203526 + ], + "5._384._0.0875": [ + 3.4917854785249274, + 4.027892682863467, + 4.674512332290674, + 5.76433018715352, + 7.118823424030785, + 9.27496727848396, + 11.950748739554333, + 14.215514760326917, + 17.213590667732912, + 18.94650290689656, + 20.1401514543864, + 21.755871343338576, + 22.842316077409556, + 25.203207795314178, + 27.15383368215816, + 27.68261441976035, + 28.155994660819886, + 28.615633613620084, + 28.971159712344004, + 29.274716510103367, + 29.535753696189534, + 29.753984531395947, + 29.91669228327421, + 30.102527311648508, + 30.229375158748294, + 30.29158608804928, + 30.39228523455161 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.5060808689637457, + 2.800134562232989, + 3.14327916441727, + 3.5123102532597708, + 3.861332630541545, + 4.46625801003282, + 4.930366410124289, + 5.320873222479279, + 5.977986165022717, + 6.523082498661355, + 8.070512526217932, + 9.74033387825479, + 10.249977839170032, + 10.72380344038845, + 11.198839359120816, + 11.575308318512594, + 11.901326389413148, + 12.18463074954121, + 12.42294215151655, + 12.601109309351095, + 12.804250491457228, + 12.943133129933976, + 13.011482757605545, + 13.122456061328451 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.5553235630354036, + 2.85191445085216, + 3.2002236321495934, + 3.5241752721853348, + 4.0072483561728, + 4.693830270584265, + 5.424314266196199, + 6.744298970435425, + 7.750465107474564, + 8.557800527938326, + 9.799245263410551, + 10.719250086160097, + 12.912412337145456, + 14.85221260258157, + 15.391211680617198, + 15.87463723683865, + 16.34552964897247, + 16.709868891192656, + 17.02099235650318, + 17.288039892312778, + 17.51073252615451, + 17.67656252866379, + 17.865298415493864, + 17.99408591656644, + 18.057328074885103, + 18.159887791902026 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351678770733755, + 3.187202360842244, + 3.5222558951808356, + 4.033001480958287, + 4.64282847825528, + 5.658749749401029, + 7.180451156340128, + 8.792647613304357, + 11.396386191115555, + 13.108044712131049, + 14.35553574266794, + 16.113330138517803, + 17.32739253678775, + 20.01267682522805, + 22.247947491528564, + 22.854879473699143, + 23.396018982536418, + 23.920222244172166, + 24.324104590001333, + 24.66861275115878, + 24.96397783422694, + 25.21020822306621, + 25.393677703397284, + 25.60281885520403, + 25.745626917382793, + 25.815750974401922, + 25.929501898575484 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.4511928331586543, + 2.7884198332326826, + 3.045004897367837, + 3.3881764117636184, + 3.617997972654443, + 3.804287760326047, + 4.111048434608664, + 4.362992513447313, + 5.11016852521276, + 6.0823655856408045, + 6.438280156515094, + 6.804360914987624, + 7.209761383441146, + 7.563068641706794, + 7.893389830525229, + 8.201390950021436, + 8.476747535956298, + 8.69210657983334, + 8.947878709814887, + 9.128428140011792, 9.21909198419426, 9.368561189426797 ], "5._384._0.0875": [ - 3.4923899597134294, - 4.029040072276986, - 4.6741343169428085, - 5.758331223450796, - 7.121224431188424, - 9.36822059802616, - 12.27988789238486, - 14.820180426978071, - 18.247407763100583, - 20.24848504178485, - 21.631563003465224, - 23.505756990273504, - 24.766687298672714, - 27.50173694297232, - 29.755679052510942, - 30.365871703720572, - 30.911469168650672, - 31.440685174920556, - 31.849473536539573, - 32.19840747924487, - 32.498207264933384, - 32.74865418987794, - 32.935365356564304, - 33.14854266213893, - 33.294079625377435, - 33.36548101987627, - 33.48113930887647 + 3.4923899597134294, + 4.029040072276986, + 4.6741343169428085, + 5.758331223450796, + 7.121224431188424, + 9.36822059802616, + 12.27988789238486, + 14.820180426978071, + 18.247407763100583, + 20.24848504178485, + 21.631563003465224, + 23.505756990273504, + 24.766687298672714, + 27.50173694297232, + 29.755679052510942, + 30.365871703720572, + 30.911469168650672, + 31.440685174920556, + 31.849473536539573, + 32.19840747924487, + 32.498207264933384, + 32.74865418987794, + 32.935365356564304, + 33.14854266213893, + 33.294079625377435, + 33.36548101987627, + 33.48113930887647 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.506080869034838, + 2.800134750364696, + 3.1433094260752195, + 3.512719450033114, + 3.8623170774725897, + 4.4668128760826, + 4.928967502931451, + 5.317180793432326, + 5.971980540499062, + 6.5200866085609634, + 8.117954025217072, + 9.917694334766331, + 10.481136526359018, + 11.009779202169527, + 11.543864331667741, + 11.969543704904865, + 12.339609533251991, + 12.661968911851094, + 12.933481519286822, + 13.136605430208776, + 13.368095393353892, + 13.526402212564701, + 13.60437395778915, + 13.731107324489717 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.5553235633328057, + 2.851914879893103, + 3.2002707743981924, + 3.524578082112754, + 4.008353700802753, + 4.693820220569501, + 5.420426385271752, + 6.741261908314919, + 7.770553372372415, + 8.614352087103972, + 9.94155380015661, + 10.945645852155918, + 13.392310279714764, + 15.597831649139092, + 16.215002367149157, + 16.768829694968566, + 17.30849014135084, + 17.725699027950938, + 18.081873254990406, + 18.387222587582094, + 18.641521896006108, + 18.830786411387095, + 19.04593977463032, + 19.192736721945092, + 19.26485238297267, + 19.381916346387253 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168548687099, + 3.1872540983446367, + 3.522621433456081, + 4.03383971932135, + 4.642958735316911, + 5.656691274613632, + 7.1864908799846665, + 8.837864063376891, + 11.5817964704435, + 13.431382306290383, + 14.797766434120435, + 16.743191165687843, + 18.097762947022414, + 21.110530185395152, + 23.625537175860437, + 24.30873710502472, + 24.917105503336995, + 25.505858281444084, + 25.958748674620825, + 26.34489416790879, + 26.675561362427345, + 26.950918016283694, + 27.15603791254136, + 27.38970954654618, + 27.549282560365725, + 27.627669002329398, + 27.754935599673953 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.451192833169619, + 2.78841998785758, + 3.0450143355759636, + 3.388366286451454, + 3.6184791787534127, + 3.8049757161519664, + 4.111777619313934, + 4.363413105221574, + 5.108814952721899, + 6.083245172399307, + 6.443396613310645, + 6.816853306825135, + 7.234617589847009, + 7.60285378591961, + 7.950894879220269, + 8.278966342288333, + 8.575340347615802, + 8.809249710997273, + 9.089501977896086, + 9.289007996463509, + 9.389774932263688, + 9.556778036965502 + ], + "5._384._0.0875": [ + 3.492833380565081, + 4.029883920153171, + 4.674024588084062, + 5.756206846451329, + 7.126974280762411, + 9.43650891416986, + 12.527233966017587, + 15.297371614073468, + 19.10805263742033, + 21.358924846590334, + 22.9214931362615, + 25.043052195990516, + 26.472078806990933, + 29.568252183022857, + 32.114690123011194, + 32.80328971793409, + 33.4182941407597, + 34.01425826782026, + 34.47400824597771, + 34.86633403815648, + 35.203134267281115, + 35.484283787627994, + 35.693865005207854, + 35.93307445642296, + 36.09640916630961, + 36.176567860502814, + 36.30650003088829 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.5060808690869742, + 2.8001348883279493, + 3.1433316179672306, + 3.5130195360839607, + 3.8630391990096924, + 4.467259068000267, + 4.928315459666911, + 5.315570027340102, + 5.970287209036016, + 6.521277155138468, + 8.153607535491371, + 10.049357915846468, + 10.65586725403188, + 11.229876299247374, + 11.814387284439988, + 12.283220257110042, + 12.6927219452605, + 13.050629737184437, + 13.352752928037589, + 13.579094615051005, + 13.837126924163426, + 14.01372310414086, + 14.100797828164964, + 14.242512856042085 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.5553235635508975, + 2.8519151945231282, + 3.200305345407439, + 3.524873484431739, + 4.009164849912218, + 4.69392091392246, + 5.418739829606306, + 6.742819643246244, + 7.7879778041467835, + 8.656618467452592, + 10.045619333004568, + 11.114011536960602, + 13.769820698863326, + 16.21248461172771, + 16.90186580218528, + 17.52138581758389, + 18.12569253145152, + 18.592796751200854, + 18.991596759840476, + 19.33320486723214, + 19.617412220570337, + 19.828849352790407, + 20.068965091775485, + 20.232788338624673, + 20.313304920941825, + 20.444134867352656 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_7": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516906227428, + 3.187293662366656, + 3.5229009716361803, + 4.034480877332553, + 4.643059222763484, + 5.655266361130398, + 7.192237465935186, + 8.87323324193278, + 11.724652596397389, + 13.686106462004464, + 15.152800121431412, + 17.26219592774444, + 18.74340171295869, + 22.060040435724574, + 24.84079256146813, + 25.597023488629006, + 26.26977149697835, + 26.920326906171116, + 27.420046155778884, + 27.845960243304624, + 28.210278527169947, + 28.513345195517235, + 28.739053009764003, + 28.9960228577736, + 29.171522342414416, + 29.25776454796011, + 29.39790663797906 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004358, + 2.1114679242247285, + 2.451192833178007, + 2.788420106100149, + 3.0450215530298035, + 3.388511485905332, + 3.6188471776185738, + 3.80550186416717, + 4.112335409328286, + 4.363735094696247, + 5.10783444571244, + 6.084555200045358, + 6.448109391835438, + 6.82715644495536, + 7.254107719460872, + 7.633489769344273, + 7.995002042345095, + 8.338728964633644, + 8.651986313073078, + 8.901234053591999, + 9.202404273378432, + 9.418704310552496, + 9.528655771676789, + 9.712006836675046 + ], + "5._384._0.0875": [ + 3.4931725430731455, + 4.030529419328328, + 4.673942632909891, + 5.754806658752515, + 7.132508462821204, + 9.489272492552443, + 12.719235899074565, + 15.680539223871287, + 19.830631607215643, + 22.312255447799206, + 24.04383870782849, + 26.401182701645084, + 27.991811370071126, + 31.436525281956147, + 34.26550319150826, + 35.029791453008656, + 35.71167044083075, + 36.371840937881956, + 36.88048796144198, + 37.314424738540446, + 37.686644933849735, + 37.99713969073413, + 38.22857433874, + 38.492640668794024, + 38.67297324657913, + 38.76150045164625, + 38.90509149181941 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.506080869126845, + 2.8001349938292623, + 3.1433485882430223, + 3.5132490184533984, + 3.8635914876151447, + 4.467600527668233, + 4.9278264583918086, + 5.314404558225575, + 5.96938178340298, + 6.522962703853125, + 8.181543767125172, + 10.150672548704302, + 10.791745339706997, + 11.403194684645863, + 12.030451494620408, + 12.536792263050161, + 12.981284040284939, + 13.371299145345402, + 13.701484382478188, + 13.949354104555626, + 14.23222110467498, + 14.426064090578278, + 14.521773587223219, + 14.67778271572526 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235637176734, + 2.851915435122558, + 3.2003317820769492, + 3.525099385099142, + 4.009785263542744, + 4.6939988537826025, + 5.417516717535588, + 6.744870774530931, + 7.802414131881694, + 8.689606828270392, + 10.125293338235654, + 11.243805965247981, + 14.072063414840828, + 16.724527066633215, + 17.48016468008971, + 18.160671234618892, + 18.825561000938794, + 19.33970235305461, + 19.778849608064196, + 20.154843299015404, + 20.467433545608436, + 20.699922769854716, + 20.963724054131916, + 21.14371683135447, + 21.232224684341066, + 21.37618376318847 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_8": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351694677379764, + 3.1873248971512407, + 3.523121665128341, + 4.034987147721775, + 4.64313851405524, + 5.654147379922084, + 7.197000553659868, + 8.901585264375406, + 11.838253749032404, + 13.89141725897967, + 15.442853680554302, + 17.69504401043223, + 19.289701436814813, + 22.886837609803933, + 25.919607316360203, + 26.745787475050385, + 27.480266919790562, + 28.19011499132044, + 28.734699591173463, + 29.198707486138535, + 29.59520637496743, + 29.92472714082565, + 30.17008163244583, + 30.44925988481518, + 30.639945096431866, + 30.73368421750545, + 30.886137517037724 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833184629, + 2.7884201994495506, + 3.045027251020029, + 3.388626117765213, + 3.619137713893122, + 3.8059172834497956, + 4.112775875764903, + 4.3639893867919906, + 5.107061551819385, + 6.085686062857603, + 6.4520129243465, + 6.835524287006735, + 7.26970525755053, + 7.657806977330557, + 8.029913497416276, + 8.386115905258096, + 8.713086502551732, + 8.975061373634622, + 9.294064167594609, + 9.525157375609721, + 9.64341077156446, + 9.8419496397143 + ], + "5._384._0.0875": [ + 3.493440349478121, + 4.031039147724461, + 4.67387779264715, + 5.753712972679427, + 7.137103000244947, + 9.531365340547387, + 12.8725785775355, + 15.993582080455845, + 20.44274860944356, + 23.136200422808702, + 25.026080463111793, + 27.607314276151886, + 29.35295834918889, + 33.13396635594024, + 36.23623718306592, + 37.07373522772948, + 37.82019067347491, + 38.54226919928527, + 39.09794969258402, + 39.571890833793205, + 39.978105755382714, + 40.31672206285282, + 40.56909355998046, + 40.856957196571344, + 41.05356636933169, + 41.15011147254163, + 41.30680686465136 + ], + "5._48._0.075": [ + 1.5268463243731414, + 1.8679037053125422, + 2.1622431316564774, + 2.5060808691583167, + 2.8001350771197697, + 3.143361985832502, + 3.5134301916843222, + 3.8640275526998304, + 4.467870131716359, + 4.927440274999584, + 5.313486296539245, + 5.968703645200497, + 6.5244212199617255, + 8.20394077455765, + 10.231106430337737, + 10.900215940122779, + 11.542719713766092, + 12.206190356375132, + 12.745018323060686, + 13.220393696018846, + 13.639250838159386, + 13.995041799853453, + 14.262806821017804, + 14.568880991358764, + 14.778999398695706, + 14.882914395305805, + 15.052600022808326 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.5553235638493423, + 2.851915625069476, + 3.2003526531412443, + 3.525277730655428, + 4.010275139136083, + 4.69406030611964, + 5.416552510399673, + 6.746621101313096, + 7.814147874836533, + 8.715981541668722, + 10.188405522991468, + 11.346927140237431, + 14.318349377124944, + 17.155575472732405, + 17.971699259097647, + 18.70857005436703, + 19.43005558969727, + 19.988470511497272, + 20.46579953625006, + 20.874436663391823, + 21.214020279357847, + 21.46655358551682, + 21.752907154385216, + 21.94831477827465, + 22.044455116422043, + 22.2009884970994 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_9": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 10.0, + 40.0 + ], + [ + 15.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351697959705864, + 3.1873501824726667, + 3.5233003252904145, + 4.035397045778044, + 4.643202674493744, + 5.653241471757605, + 7.200885020316147, + 8.924709490354276, + 11.930880052792174, + 14.06025134851583, + 15.683684127554681, + 18.060294194662575, + 19.756300089038604, + 23.61137504449404, + 26.882720787525074, + 27.7758907081395, + 28.569611423485394, + 29.33643086570829, + 29.92409224934407, + 30.42467793189826, + 30.852035992333597, + 31.20688804767616, + 31.471048822994668, + 31.77146445293087, + 31.976676218441245, + 32.0775933157209, + 32.24185697145644 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413081, + 1.8198213217004342, + 2.111467924224728, + 2.451192833189987, + 2.7884202750181055, + 3.045031863679005, + 3.3887189154453163, + 3.619372916939917, + 3.806253600629974, + 4.113132512282049, + 4.3641953001676335, + 5.106435685222409, + 6.086610458118203, + 6.455203717512287, + 6.842355654365919, + 7.2824077972774255, + 7.677562407356971, + 8.058245960185477, + 8.424609378076275, + 8.76287850010262, + 9.035496801842196, + 9.369731015731317, + 9.613819046724782, + 9.739544986659016, + 9.952146398017845 + ], + "5._384._0.0875": [ + 3.4936571752168724, + 4.0314518650193545, + 4.673825208362289, + 5.752827766051068, + 7.14085084679721, + 9.565675822648464, + 12.99795951823418, + 16.253498217985236, + 20.965975699424884, + 23.85306156978684, + 25.890555325663733, + 28.683653253371272, + 30.577666154079772, + 34.682979700260304, + 38.0498768831358, + 38.95830544778402, + 39.76723684095545, + 40.54913145550652, + 41.150153143906856, + 41.662640692114024, + 42.10155789311066, + 42.46718663873363, + 42.73966421297019, + 43.050364927076295, + 43.26259700475619, + 43.366842250637525, + 43.536139579807205 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.867903705312543, + 2.1622431316564787, + 2.506080869183797, + 2.800135144545419, + 3.143372831502325, + 3.513576857627963, + 3.8643805886394222, + 4.468088402209486, + 4.927127491180043, + 5.312742744660129, + 5.968157088572451, + 6.525617264528048, + 8.222203603114787, + 10.296593865764642, + 10.98878316555648, + 11.657276523575073, + 12.351544536726507, + 12.918522281330263, + 13.421101736480638, + 13.865785812664386, + 14.24486221753196, + 14.530960229609745, + 14.858685773429777, + 15.084164069913923, + 15.195885020167923, + 15.378682977263972 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.5553235639559313, + 2.851915778836029, + 3.2003695487708055, + 3.525422107519328, + 4.010671753801857, + 4.694110000578109, + 5.4157717610879645, + 6.748049839793661, + 7.823722274232854, + 8.737456466301342, + 10.239682188244302, + 11.43087296802174, + 14.522368748631425, + 17.522107559897883, + 18.3932593446824, + 19.1820379730312, + 19.956241430982804, + 20.55625595024403, + 21.069693159956998, + 21.50933374752323, + 21.874626890469372, + 22.14628547445625, + 22.45417331830976, + 22.664323450700167, + 22.76777854285256, + 22.936397658197325 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_10": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ], + [ + 15.0, + 35.0 + ], + [ + 15.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 10.0, + 45.0 + ], + [ + 15.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351700671193134, + 3.1873710703601317, + 3.523447916499251, + 4.035735697796386, + 4.643255657851007, + 5.652493013929367, + 7.20409472867555, + 8.943869761384445, + 12.007913273135676, + 14.201491395822298, + 15.886568991164793, + 18.37191839032103, + 20.15841430362456, + 24.250103578711602, + 27.746922311669337, + 28.704224741732222, + 29.554822623008423, + 30.376443265488486, + 31.00553534907715, + 31.541313484117556, + 31.998333044538445, + 32.377504748349494, + 32.659715834452044, + 32.98049752514318, + 33.19964519434675, + 33.30745487749519, + 33.48308137235602 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615415, + 1.4813847491413088, + 1.8198213217004349, + 2.1114679242247254, + 2.451192833194416, + 2.788420337444311, + 3.0450356741365683, + 3.3887955747090124, + 3.6195672198432027, + 3.806531444994185, + 4.113427171257345, + 4.364365441587833, + 5.105918526699948, + 6.087374237984107, + 6.457843302443947, + 6.848009866563313, + 7.292924106293239, + 7.693915350897095, + 8.081701862652185, + 8.456505068059927, + 8.804222493216367, + 9.085830670349042, + 9.433135194991744, + 9.688634789616543, + 9.821068676903135, + 10.04665256151402 + ], + "5._384._0.0875": [ + 3.4938363124334337, + 4.031792859410013, + 4.673781705306893, + 5.752096458186926, + 7.143947976236987, + 9.594126168411522, + 13.102460435103382, + 16.47247914107646, + 21.417161128889543, + 24.480817472384395, + 26.655510146912167, + 29.648503602655634, + 31.684224966632396, + 36.10206755699766, + 39.72540345006259, + 40.70265058061949, + 41.57212500999588, + 42.41191990522468, + 43.056737436665856, + 43.606441077772544, + 44.076882424166186, + 44.46851331219699, + 44.760340241339904, + 45.093003614507126, + 45.320263344173064, + 45.43191941246622, + 45.6133613775955 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.162243131656478, + 2.506080869204849, + 2.8001352002448696, + 3.1433817909701482, + 3.5136980177329087, + 3.8646722478593563, + 4.468268725844139, + 4.926868996683543, + 5.312128346953009, + 5.967705848826723, + 6.526606871966798, + 8.237331372063577, + 10.350992999505827, + 11.06248150802144, + 11.752956917161065, + 12.473585586628511, + 13.065027695090317, + 13.591580139197282, + 14.059362880629708, + 14.459570486935391, + 14.762523519912838, + 15.110415591623092, + 15.350384282854716, + 15.469534839000811, + 15.664922044025642 + ], + "5._96._0.075": [ + 2.2092718103274245, + 2.5553235640439804, + 2.8519159058605754, + 3.2003835060341177, + 3.5255413766387536, + 4.010999424880221, + 4.694151016960413, + 5.415126655561476, + 6.749230156641203, + 7.831643362506339, + 8.755234709432399, + 10.282170798673725, + 11.500562340538426, + 14.693907846817565, + 17.836759544301593, + 18.757872874899864, + 19.59433576296917, + 20.417526343524827, + 21.056561729735225, + 21.604114617247397, + 22.073201261673965, + 22.46300350925799, + 22.752939756571205, + 23.081436831340525, + 23.305723991897466, + 23.416209458168918, + 23.59647963971831 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351685499612094, + 3.187258714136909, + 3.5228438727636755, + 4.036702022581875, + 4.652059663761198, + 5.66411335621385, + 7.149292259685648, + 8.747180084177202, + 11.441557145639967, + 13.278222887702963, + 14.640658498670904, + 16.58507056218041, + 17.940128138358585, + 20.95407158070511, + 23.468607430135222, + 24.151436597808804, + 24.75927850790786, + 25.347407047104415, + 25.799718108222166, + 26.18532888248482, + 26.515487387423388, + 26.79038286537399, + 26.995146993776675, + 27.228392392963908, + 27.387669175775645, + 27.465910417983835, + 27.592946987306984 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.4511928331696193, + 2.788419987937593, + 3.045014530241798, + 3.388426593393468, + 3.61893807115428, + 3.806285595638799, + 4.115630706207777, + 4.369938264699354, + 5.117784882055297, + 6.068516108590718, + 6.415824265478349, + 6.7763490198953225, + 7.181463551853645, + 7.540804641937169, + 7.882593658940476, + 8.206696609025872, + 8.500984182470376, + 8.734109053504245, + 9.014252932699334, + 9.214013449669416, + 9.31497291728689, + 9.482329836951564 + ], + "5._384._0.0875": [ + 3.4931710412388215, + 4.03347251947572, + 4.684150740084604, + 5.760930194323468, + 7.090110508325212, + 9.328967663103754, + 12.374459317749082, + 15.132200949349306, + 18.94147943586183, + 21.193415745962525, + 22.75649244448317, + 24.878240121776997, + 26.307037385519987, + 29.4013192647034, + 31.945044535233112, + 32.63276603259177, + 33.246905991035234, + 33.84197016373688, + 34.300968352075536, + 34.692638262582015, + 35.02884877405768, + 35.309486643079566, + 35.518683155067215, + 35.757445205723954, + 35.92047495679091, + 36.00048555072574, + 36.130183979125476 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.5060808690869742, + 2.8001348883911774, + 3.14333256922029, + 3.5131692540568866, + 3.8644226946337272, + 4.474322861170921, + 4.938971065653816, + 5.325272456016258, + 5.96788111532566, + 6.501451766531553, + 8.080177454803994, + 9.942824398411016, + 10.544808651419324, + 11.116738437046614, + 11.700560773248478, + 12.169709819590091, + 12.579725893004984, + 12.93823569584624, + 13.240886724751643, + 13.467560161762616, + 13.725883296223618, + 13.902624815028982, + 13.98975730048277, + 14.131537721476786 + ], + "5._96._0.075": [ + 2.2092718103274027, + 2.555323563550897, + 2.8519151948255264, + 3.20030751279389, + 3.525015554640949, + 4.011396620649195, + 4.7030073729175825, + 5.428916711004246, + 6.720751192378307, + 7.729269255027415, + 8.571205844819746, + 9.929797544753724, + 10.98410396020036, + 13.627750385893856, + 16.07079560559501, + 16.76085096931969, + 17.380782833865567, + 17.985358028870824, + 18.452550200881838, + 18.851304164785265, + 19.192781169216094, + 19.476804803060265, + 19.68806369742662, + 19.927921271083143, + 20.09154574556812, + 20.171960076680513, + 20.302621620008832 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351682368664046, + 3.187230075803818, + 3.5224492924972486, + 4.033119936823576, + 4.638396480759823, + 5.618987960858868, + 7.030026221999871, + 8.527839211273466, + 11.040326281134176, + 12.753084676806015, + 14.025120380850506, + 15.843214146708608, + 17.11195497122992, + 19.940401971075286, + 22.305981963908003, + 22.94907768350858, + 23.5219570494117, + 24.07656707380614, + 24.5033881875782, + 24.8673301405763, + 25.179061947213125, + 25.438701828274404, + 25.632108194735537, + 25.852441932874385, + 26.002888421341073, + 26.07678067912425, + 26.19671636902343 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.1114679242247285, + 2.4511928331645287, + 2.7884199160674505, + 3.045009953546903, + 3.38827791404913, + 3.6182455112077183, + 3.8045791292004805, + 4.110763196512884, + 4.36096455515036, + 5.088523341352613, + 5.996594731204861, + 6.324664302256742, + 6.66356948175994, + 7.043146251752328, + 7.379150274840224, + 7.698625225718219, + 8.00168389858422, + 8.27718079562981, + 8.495778161296176, + 8.759105313710558, + 8.94734091149286, + 9.042617955855821, + 9.200804830324877 + ], + "5._384._0.0875": [ + 3.492622151923022, + 4.028973564321868, + 4.6678688276745985, + 5.7086726490240105, + 6.970317380705004, + 9.065928706832562, + 11.90374824135082, + 14.474873600859345, + 18.032665981551915, + 20.138958066582124, + 21.602246611922695, + 23.5905838265759, + 24.930556453107524, + 27.83627994287034, + 30.228020615878005, + 30.87501041635176, + 31.452962934584594, + 32.013127460088626, + 32.44536358196687, + 32.81421549766889, + 33.13090295282149, + 33.39528824036076, + 33.59236582386283, + 33.81730334935146, + 33.97087939941161, + 34.046241503080196, + 34.16837716052527 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.1622431316564747, + 2.506080869062769, + 2.8001348242735835, + 3.14332131451069, + 3.5128790354734982, + 3.862621957198177, + 4.464580392139133, + 4.918351090861684, + 5.292537742558518, + 5.90888858522505, + 6.41571666369946, + 7.898404905596242, + 9.638977655419469, + 10.20171680581911, + 10.73726058382615, + 11.284789288957224, + 11.725538212714785, + 12.111321620329223, + 12.449201935558799, + 12.734899089589739, + 12.94912980290307, + 13.19363236320802, + 13.361070496901409, + 13.443643755892115, + 13.578008549726166 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.55532356344964, + 2.8519150484449027, + 3.2002892942107675, + 3.5247352870633146, + 4.008584140887022, + 4.689236056197689, + 5.3941771300509735, + 6.627034602629627, + 7.57648313447077, + 8.364515942477567, + 9.632381153397771, + 10.615797361602414, + 13.086469576251346, + 15.377994804985304, + 16.026577406312093, + 16.610123141820804, + 17.179829031762406, + 17.62061768431994, + 17.997069004818776, + 18.319727012335672, + 18.58829979027774, + 18.788126998395434, + 19.015108735089672, + 19.169964336265924, + 19.246061934087628, + 19.369665726571647 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169063398493, + 3.187297735127548, + 3.5230972446795525, + 4.037005718912379, + 4.6509464526508895, + 5.657509368967948, + 7.129966700309073, + 8.727363910150066, + 11.494687067479912, + 13.43383724449701, + 14.894558468113454, + 17.004346288180148, + 18.488132642181355, + 21.809999110277136, + 24.590976642555905, + 25.346605466240742, + 26.018370303598818, + 26.667703138523798, + 27.166260031453096, + 27.591090831879093, + 27.95437329030352, + 28.25649963990926, + 28.481481848199266, + 28.737584503275915, + 28.912480832211156, + 28.998426878504734, + 29.138099050625033 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004358, + 2.1114679242247285, + 2.4511928331780073, + 2.7884201061707525, + 3.0450217247937834, + 3.388564698112047, + 3.6192520880384627, + 3.8066576264071164, + 4.115730750654125, + 4.369445877660482, + 5.1138303011158355, + 6.056613814500054, + 6.40119951226918, + 6.760429463248892, + 7.167233438644749, + 7.5319196905124635, + 7.882813002819874, + 8.21965888808455, + 8.529288819038278, + 8.77725379787942, + 9.0784663081431, + 9.295437162213926, + 9.405832435967014, + 9.589928171572568 + ], + "5._384._0.0875": [ + 3.493470533257902, + 4.0336938995023965, + 4.6826317519472145, + 5.753045486513925, + 7.070645135026027, + 9.315519001818583, + 12.467698358287969, + 15.40860164165279, + 19.560692878001245, + 22.04689118452542, + 23.780910384535282, + 26.140088587984064, + 27.730929674778345, + 31.1726531547732, + 33.99642248280196, + 34.75896870157849, + 35.43912978435081, + 36.097508384172734, + 36.60465959692419, + 37.03729181054238, + 37.40834138140715, + 37.71782292442156, + 37.948496598075884, + 38.21168029686891, + 38.39141146987778, + 38.479646441326224, + 38.62277583094032 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.506080869126844, + 2.800134993885049, + 3.1433494275841456, + 3.513381123971466, + 3.8648122391442694, + 4.473782297577872, + 4.936629534179492, + 5.320753546693129, + 5.958331255411861, + 6.486991278781526, + 8.062817215198043, + 9.975856354085339, + 10.609094661706344, + 11.217084050647331, + 11.843552817968302, + 12.350913206465897, + 12.79679744219665, + 13.188294565452786, + 13.519721648809957, + 13.768356190018476, + 14.051857425478353, + 14.245980373473488, + 14.341785543112875, + 14.497872248359819 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.555323563717675, + 2.851915435389384, + 3.200333694477487, + 3.5252247424582173, + 4.011754281557849, + 4.701863809742708, + 5.424146518763342, + 6.705153354497363, + 7.707523838348349, + 8.552224535743502, + 9.936976428872617, + 11.03106254546544, + 13.839029528262325, + 16.49497232538677, + 17.252533339223, + 17.934356772471, + 18.600150659934396, + 19.114661160638157, + 19.5538189487604, + 19.9295905211937, + 20.24181418718183, + 20.47393147342071, + 20.737184060396746, + 20.91674867181132, + 21.00503406021154, + 21.14862420661323 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351688215302677, + 3.1872751153711127, + 3.5227678151005, + 4.033889914632372, + 4.638920858733575, + 5.617839832481211, + 7.027391714714145, + 8.541155196350532, + 11.151019397655624, + 12.97839918322717, + 14.35570238304184, + 16.346827751773766, + 17.74843761800996, + 20.892104588642887, + 23.52936608601348, + 24.24664793419869, + 24.8847519090991, + 25.50187163213792, + 25.976002652712722, + 26.380086755287017, + 26.725764405292825, + 27.013343431517285, + 27.22749970342622, + 27.471307037594396, + 27.637793178551767, + 27.719594461177394, + 27.852488112614264 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004344, + 2.111467924224728, + 2.451192833174076, + 2.788420050673945, + 3.045018169844972, + 3.3884432344622857, + 3.618665708977431, + 3.8051876388882904, + 4.111477363383548, + 4.361562027662024, + 5.0880564465190465, + 5.994340074330863, + 6.322915610284187, + 6.664215498255224, + 7.049708478975074, + 7.394644378612106, + 7.726324845575013, + 8.044693001642802, + 8.337496438086111, + 8.57223007663356, + 8.857871456525832, + 9.064011286405194, + 9.169015953237938, + 9.344346155130074 + ], + "5._384._0.0875": [ + 3.493008878119508, + 4.029770324841591, + 4.668290732858904, + 5.707183817921372, + 6.967582060753888, + 9.092141751914838, + 12.062417461670568, + 14.832450647405006, + 18.746737058157947, + 21.09263531357468, + 22.729887715325244, + 24.959289774061755, + 26.463568775083314, + 29.721870987691403, + 32.39826242767988, + 33.121388908295515, + 33.76658940796906, + 34.39130447952029, + 34.87269707717041, + 35.283376329629014, + 35.63566856989096, + 35.9295533600685, + 36.148598563684565, + 36.398523246139284, + 36.569185226210834, + 36.65295859679146, + 36.78882111171972 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125465, + 2.162243131656477, + 2.506080869108157, + 2.8001349443755243, + 3.143340633358191, + 3.5131404207519212, + 3.863260808863793, + 4.465222428940987, + 4.918451522053318, + 5.291920775178748, + 5.90680063888508, + 6.412875124136651, + 7.908450967907349, + 9.716053005169218, + 10.314123675482273, + 10.888970132460042, + 11.481911577331147, + 11.96270804040448, + 12.385755607329946, + 12.757698838593447, + 13.073001321524627, + 13.30978689533495, + 13.580134164106846, + 13.765402370046859, + 13.856863203933262, + 14.00587060504066 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235636394978, + 2.8519153223415743, + 3.200319389564357, + 3.524992578894382, + 4.009315412179053, + 4.689741736857365, + 5.39354658268801, + 6.624085908399755, + 7.577236452508587, + 8.376869506861585, + 9.68405859641159, + 10.715886646507393, + 13.366422511020216, + 15.879614045676142, + 16.597530007056584, + 17.244519166843208, + 17.876885715681667, + 18.36610063537358, + 18.783906507961117, + 19.141695536995734, + 19.439186973920993, + 19.660416452864133, + 19.91142919886304, + 20.082659952584024, + 20.166839728871324, + 20.30370415130679 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_7": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 20.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351694687438576, + 3.1873285412025854, + 3.5232972800099933, + 4.0372455113207995, + 4.650069222459513, + 5.652636284455951, + 7.118293698894694, + 8.717149607441876, + 11.537557222475943, + 13.556816510162616, + 15.098488914786888, + 17.350624632604607, + 18.94935895587954, + 22.55583615782461, + 25.589971595165473, + 26.415414645987973, + 27.148509574721597, + 27.85656959876882, + 28.399418305245316, + 28.861793540345047, + 29.2567217645145, + 29.584812277895537, + 29.829061509908207, + 30.106918705445956, + 30.296683920497504, + 30.389970711278096, + 30.5417057167396 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.45119283318463, + 2.7884201995127156, + 3.04502740470359, + 3.3886737288275786, + 3.619500005783788, + 3.8069513654233336, + 4.115809771280714, + 4.3690574673663765, + 5.110827379198563, + 6.0490263167693845, + 6.392351697066459, + 6.751167037762516, + 7.15938168852187, + 7.527817516435287, + 7.885171107394092, + 8.231403501053169, + 8.55283304640379, + 8.812682196412318, + 9.131526587201368, + 9.363578279231913, + 9.482504337873433, + 9.68219049350774 + ], + "5._384._0.0875": [ + 3.4937070105889836, + 4.033868687971715, + 4.681436582388042, + 5.747346536331048, + 7.058855617731142, + 9.310083252030168, + 12.541225142781405, + 15.630237857149876, + 20.08178221359908, + 22.78298548926221, + 24.67735405774524, + 27.262415093010773, + 29.008936265737123, + 32.78613695583256, + 35.88071954362963, + 36.7155880386424, + 37.4594411880496, + 38.17879896844047, + 38.73220605333925, + 39.204163856077486, + 39.6085996100913, + 39.945677081305995, + 40.196893178389345, + 40.48341816451842, + 40.67911505777569, + 40.77521663774656, + 40.93121101294323 + ], + "5._48._0.075": [ + 1.5268463243731414, + 1.8679037053125422, + 2.1622431316564774, + 2.506080869158317, + 2.8001350771696862, + 3.143362736822055, + 3.5135483923629054, + 3.8651198061923777, + 4.473355752686997, + 4.93480073011994, + 5.317329004389676, + 5.951753617890659, + 6.477829286710153, + 8.053643579563833, + 10.003099928370455, + 10.660354610993776, + 11.297184968344832, + 11.959008883946067, + 12.499085852794591, + 12.976482700494014, + 13.39760851854687, + 13.75535976373576, + 14.024364482510045, + 14.331483091281395, + 14.542057598897658, + 14.646123976485226, + 14.815920852507812 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.555323563849342, + 2.8519156253082105, + 3.200354364236968, + 3.525389893414542, + 4.012036681240135, + 4.700962813696421, + 5.420526479140332, + 6.695300177648398, + 7.695055128758409, + 8.542279961430106, + 9.945688769015995, + 11.06913216467477, + 14.008678175038632, + 16.8508759006981, + 17.670106366771744, + 18.409274723485836, + 19.132428593106884, + 19.691608826389082, + 20.16909062603402, + 20.577476829077767, + 20.9165507663955, + 21.168538223976807, + 21.4540652825582, + 21.648819089964032, + 21.74461716837194, + 21.900580082457587 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 20.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169276268998, + 3.187310146184183, + 3.523015561829058, + 4.034488912673671, + 4.639329788940273, + 5.6171252648800225, + 7.027061500031687, + 8.553259337622677, + 11.235663147269493, + 13.15429323185189, + 14.61937862933139, + 16.76067809530095, + 18.281564812031714, + 21.717286213457516, + 24.61265708212136, + 25.40100802044218, + 26.101601725301016, + 26.77859891300328, + 27.29795246831052, + 27.740386084020084, + 28.11842520197452, + 28.432584088020832, + 28.66646966061102, + 28.932566995708722, + 29.114286937028773, + 29.203606303329106, + 29.348842541640096 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615422, + 1.4813847491413084, + 1.8198213217004355, + 2.111467924224729, + 2.451192833181502, + 2.788420155367889, + 3.045024560299464, + 3.388571817909206, + 3.618992543244184, + 3.805660974256789, + 4.112032976899804, + 4.362027106016078, + 5.0877557623373315, + 5.9934806694462575, + 6.322789550417737, + 6.666054101474322, + 7.055877196313764, + 7.407247617200203, + 7.747883172479857, + 8.077849925159068, + 8.384255909281581, + 8.632126660485042, + 8.93665646425318, + 9.158590350874627, + 9.272424007573884, + 9.463745274294599 + ], + "5._384._0.0875": [ + 3.4933097243670517, + 4.030390205381373, + 4.6686212186866864, + 5.706300684460669, + 6.9671740874860735, + 9.113781718080853, + 12.184378765350406, + 15.117558213325927, + 19.345516718699326, + 21.91215144595837, + 23.712954701165675, + 26.171954012621416, + 27.83413805173295, + 31.432716552538373, + 34.38407078650533, + 35.18068874010219, + 35.8906729078302, + 36.57746530587575, + 37.106004940926944, + 37.55677795839702, + 37.94313649414581, + 38.26519981125153, + 38.50522325506731, + 38.77899182526624, + 38.965961424756365, + 39.05776763682573, + 39.20675834171152 + ], + "5._48._0.075": [ + 1.526846324373138, + 1.8679037053125451, + 2.162243131656477, + 2.506080869143456, + 2.8001350377881407, + 3.143355659132689, + 3.513343724143409, + 3.863757755019647, + 4.465722129177945, + 4.918540142478143, + 5.2915152255481654, + 5.905663919991869, + 6.411750494128029, + 7.917720779253673, + 9.775033709716995, + 10.40086371259062, + 11.007650385989834, + 11.638687608511198, + 12.154065399813133, + 12.61004822547783, + 13.012703612507485, + 13.355143200668001, + 13.612861645817297, + 13.90743338679334, + 14.109549916090113, + 14.209458926127063, + 14.37246499705832 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235637871667, + 2.851915535372322, + 3.200342797073539, + 3.5251926984738082, + 4.009884278480034, + 4.690136222361493, + 5.393132745539894, + 6.623012930049463, + 7.579792975166616, + 8.388034213337013, + 9.723974818737096, + 10.79248999829516, + 13.589195251664995, + 16.297561659069427, + 17.078996410354087, + 17.784856452947224, + 18.47595872768239, + 19.01086352458113, + 19.46785098317784, + 19.85899347184758, + 20.183960412160467, + 20.425530530059138, + 20.699364233896432, + 20.886156576027652, + 20.978029216569716, + 21.127548939502713 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_8": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 20.0, + 25.0 + ], + [ + 20.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 20.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169796880664, + 3.1873534794730634, + 3.5234592165204304, + 4.037439649398013, + 4.649358934760173, + 5.648708574637505, + 7.109571346556287, + 8.710993411134073, + 11.573162445644781, + 13.656517130037733, + 15.265320501154566, + 17.639831833697883, + 19.34065042621572, + 23.208692558399527, + 26.48275820763165, + 27.375115966446995, + 28.16708714507593, + 28.93157209536664, + 29.516924953680338, + 30.015321108080705, + 30.440560867194954, + 30.79347808385193, + 31.056141369374664, + 31.35476621670158, + 31.55872934796755, + 31.65903185187721, + 31.822318965729156 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413081, + 1.8198213217004342, + 2.111467924224728, + 2.4511928331899875, + 2.7884202750752602, + 3.0450320027260367, + 3.388761992223708, + 3.6197007073565595, + 3.8071891738679358, + 4.115873758849243, + 4.368742985899526, + 5.108400335610456, + 6.043169022672622, + 6.385792147989472, + 6.744632791369369, + 7.15425906086431, + 7.525719059585773, + 7.888070779087426, + 8.241572316363436, + 8.57232019943698, + 8.841798890089446, + 9.17541610112804, + 9.420611025957959, + 9.547200481154078, + 9.761339907570013 + ], + "5._384._0.0875": [ + 3.493898468068839, + 4.034010191040128, + 4.680468869753127, + 5.742765992539775, + 7.0500267450295775, + 9.30799878242813, + 12.60112285770307, + 15.811352136615165, + 20.523757285405978, + 23.421073773783306, + 25.46500440896072, + 28.264043149975723, + 30.159728933946557, + 34.2606083630119, + 37.617321550449645, + 38.52220389238633, + 39.327613273412254, + 40.105817661967514, + 40.70375211565431, + 41.21354530824111, + 41.65004542720097, + 42.01358428609912, + 42.28449289263957, + 42.59337706010391, + 42.80437083331504, + 42.9080137625577, + 43.07635868974822 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.867903705312543, + 2.1622431316564787, + 2.506080869183797, + 2.800135144590582, + 3.1433735109691585, + 3.5136838018335066, + 3.8653688096584458, + 4.473010342445246, + 4.933320319992066, + 5.314561845764766, + 5.9465231714865405, + 6.470787330604049, + 8.047941875910423, + 10.025927373021577, + 10.702100895398004, + 11.36231114257582, + 12.053557330018563, + 12.621598671646746, + 13.126542578870398, + 13.57411553590934, + 13.955803067948017, + 14.243609706247392, + 14.572816063820792, + 14.7989496300197, + 14.910888049004296, + 15.093842639281206 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235639559304, + 2.8519157790520264, + 3.2003710969054118, + 3.5255235887775442, + 4.012265313576316, + 4.700233256852584, + 5.417600744623758, + 6.687715783693874, + 7.686302805863359, + 8.536166184342932, + 9.954389508610529, + 11.10068086925204, + 14.1472630526869, + 17.15180061271071, + 18.027053698416324, + 18.819060296641883, + 19.59572419311313, + 20.196953901026735, + 20.71073585344589, + 21.150135997847652, + 21.514801635479273, + 21.78575140728141, + 22.092539196637087, + 22.30180832304909, + 22.404799371157097, + 22.572641823958858 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 20.0, + 25.0 + ], + [ + 20.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 20.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169640060091, + 3.1873381708589057, + 3.523213763575405, + 4.0349681905755475, + 4.639656997129559, + 5.616561548151482, + 7.027162733158152, + 8.563789599754857, + 11.303105434138876, + 13.295512742298353, + 14.83401959557551, + 17.105241359012958, + 18.732539920297572, + 22.43731376562952, + 25.57737967943488, + 26.433810126961887, + 27.19433836203327, + 27.928797958675542, + 28.49148781952829, + 28.970660444123826, + 29.37964729344757, + 29.719178909885034, + 29.9718884054504, + 30.25922774818942, + 30.455468756772657, + 30.551960809345836, + 30.708996610710653 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413081, + 1.8198213217004349, + 2.111467924224728, + 2.4511928331874433, + 2.788420239123043, + 3.045029672663339, + 3.3886746852358587, + 3.6192540193386087, + 3.8060396740859512, + 4.112477559299048, + 4.362399273566495, + 5.087516901906923, + 5.9929373345852195, + 6.322977311611899, + 6.667946072539996, + 7.061266183463807, + 7.417653392154295, + 7.7652267523499745, + 8.104274643786257, + 8.421554872039486, + 8.68018803943135, + 9.000680391228052, + 9.236460302845721, + 9.358255440364156, + 9.564427518369818 + ], + "5._384._0.0875": [ + 3.493550438680029, + 4.030886220951943, + 4.668885635089858, + 5.705609969000567, + 6.967206872268988, + 9.131922776905244, + 12.281614951380996, + 15.349551821897883, + 19.852310635544626, + 22.620964887254612, + 24.574652029202518, + 27.25142142257859, + 29.064983934780845, + 32.9918108468034, + 36.209106785004586, + 37.07680006049297, + 37.84932916186989, + 38.59596078732653, + 39.16983267779784, + 39.65913473723716, + 40.078171694776834, + 40.42722236248884, + 40.687331823415555, + 40.9839133865302, + 41.186488668996944, + 41.28598640105937, + 41.44756542072823 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.8679037053125411, + 2.162243131656476, + 2.5060808691716954, + 2.800135112518235, + 3.1433676797549444, + 3.5135063692068518, + 3.8641553507076254, + 4.466121973229572, + 4.918611115028991, + 5.291193105768638, + 5.904801348066732, + 6.411033895243128, + 7.9258201259759105, + 9.821992421404069, + 10.46998618179424, + 11.102933574679719, + 11.765945607720038, + 12.311081617716413, + 12.796005879526096, + 13.226177915043401, + 13.593350937467513, + 13.870413346154644, + 14.187641067662163, + 14.405678042344833, + 14.513626853219025, + 14.690045920340548 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.555323563905298, + 2.8519157057969187, + 3.2003615230884073, + 3.5253527964752047, + 4.010339434330353, + 4.690451855308411, + 5.392803687380454, + 6.622353344771257, + 7.582446686381059, + 8.397690313230635, + 9.75609845778119, + 10.853429223931121, + 13.770108676196806, + 16.64950287156861, + 17.488801079200773, + 18.249005137844247, + 18.99495238639025, + 19.572870642042208, + 20.06695326460767, + 20.489780871475194, + 20.840898548377456, + 21.101848564171764, + 21.39742425561456, + 21.599058544993184, + 21.698281691979957, + 21.859927270913108 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "6_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 5.0 + ], + [ + 25.0, + 10.0 + ], + [ + 25.0, + 15.0 + ], + [ + 25.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 25.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169468743845, + 3.187328541136331, + 3.5232973546742508, + 4.037285473798019, + 4.650773187598054, + 5.656011247463821, + 7.111557325641407, + 8.679729639166288, + 11.454089472638433, + 13.456672369857793, + 14.992302269356708, + 17.242238135894556, + 18.841664619140797, + 22.451321645273676, + 25.48673003721974, + 26.312230250817294, + 27.045138665236884, + 27.752887743661624, + 28.29539345249504, + 28.75742756155229, + 29.15201220522951, + 29.479779582755125, + 29.723774834529124, + 30.001322447109555, + 30.190869823557094, + 30.284049110027794, + 30.43561338171417 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.4511928331846304, + 2.7884201995127165, + 3.045027404703431, + 3.3886737323396856, + 3.6195007731739532, + 3.8069602332135535, + 4.1159163676137265, + 4.369441511920176, + 5.113224444269589, + 6.048364012385659, + 6.386720001084674, + 6.738780414175303, + 7.138562690073801, + 7.499700867468049, + 7.850958004130156, + 8.19259500043199, + 8.51108512499212, + 8.769505744983025, + 9.087687169192545, + 9.319810993156317, + 9.438883545021271, + 9.638893238931951 + ], + "5._384._0.0875": [ + 3.4937051969753075, + 4.033928792741086, + 4.6823771795502225, + 5.7508245991379106, + 7.052379983531947, + 9.260242597051299, + 12.445510528220082, + 15.517361802121803, + 19.966114048695744, + 22.669320658538826, + 24.56508857458745, + 27.151613753363783, + 28.898669644218153, + 32.67538767110183, + 35.768244002757335, + 36.60248368514111, + 37.34569442069563, + 38.064370131731856, + 38.61719875231895, + 39.08864891232439, + 39.49262534175092, + 39.82930268062334, + 40.08021737911107, + 40.36639145259304, + 40.5618486962162, + 40.6578337469886, + 40.81364422319609 + ], + "5._48._0.075": [ + 1.5268463243731414, + 1.8679037053125422, + 2.1622431316564774, + 2.506080869158317, + 2.800135077169687, + 3.143362736817218, + 3.513548419749404, + 3.8651275718007247, + 4.473743942775336, + 4.93631371806996, + 5.3200474228475425, + 5.954474796438185, + 6.476548333129121, + 8.023953684441862, + 9.941927849317917, + 10.59324690971856, + 11.226553199732244, + 11.886596269971816, + 12.426471058589332, + 12.904246247466688, + 13.32603624705582, + 13.684467590114192, + 13.953950357059407, + 14.261536215635536, + 14.472364238803227, + 14.57653737493926, + 14.746468228907986 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.5553235638493397, + 2.851915625308211, + 3.2003543642195624, + 3.525389916256859, + 4.012059536013691, + 4.7016850307160425, + 5.423369436761021, + 6.693785345134677, + 7.677352137315897, + 8.507263983926762, + 9.884542157589706, + 10.992651277970243, + 13.914893291809275, + 16.756930823572176, + 17.57717298240682, + 18.31723735554239, + 19.041157349266566, + 19.600822236987216, + 20.078563562510556, + 20.487069238282302, + 20.826157278113055, + 21.07810274163887, + 21.363518963152018, + 21.55816970112759, + 21.653910532997077, + 21.809774040954213 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 5.0 + ], + [ + 25.0, + 10.0 + ], + [ + 25.0, + 15.0 + ], + [ + 25.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 25.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169277330757, + 3.187313992704835, + 3.5232011124716904, + 4.036937002273399, + 4.648329733585166, + 5.638936764327067, + 7.04493643834443, + 8.535427176106639, + 11.15308528441717, + 13.042573501417003, + 14.493913749574839, + 16.624752590528153, + 18.142285022577344, + 21.57654341080932, + 24.472616122347326, + 25.261234661530544, + 25.961909636763732, + 26.63892785651014, + 27.15823838601437, + 27.600597838915384, + 27.97853393706775, + 28.292575297451314, + 28.526359397770037, + 28.79231829681334, + 28.97393655694377, + 29.0632053935571, + 29.208362052562503 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615422, + 1.4813847491413084, + 1.8198213217004355, + 2.111467924224729, + 2.4511928331815023, + 2.788420155434566, + 3.0450247225210116, + 3.388622083803566, + 3.619375991053414, + 3.8067639511105003, + 4.11539431547853, + 4.368104067274634, + 5.103584806807085, + 6.0115925228497264, + 6.335951322390002, + 6.671510528880292, + 7.050830425893752, + 7.392447290337593, + 7.724338296256823, + 8.047149802641504, + 8.348426186642595, + 8.593330918692942, + 8.89572680645815, + 9.117018600325517, + 9.230761081441234, + 9.422231771656486 + ], + "5._384._0.0875": [ + 3.493591644536247, + 4.033487706547931, + 4.679123517014441, + 5.729750792551487, + 6.985792024351862, + 9.080865246868019, + 12.08399624567113, + 14.98316566655498, + 19.19333611341009, + 21.756829548008543, + 23.556676732125354, + 26.01528027132925, + 27.677387132055777, + 31.275427199188275, + 34.22577896399607, + 35.02203818494102, + 35.731622151218566, + 36.417974788197796, + 36.9461242011251, + 37.39654850344506, + 37.782581449813144, + 38.10435316691838, + 38.34415408600325, + 38.61765792561234, + 38.8044452967952, + 38.896162903729724, + 39.04501456109255 ], "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.506080869034838, - 2.800134750364696, - 3.1433094260752195, - 3.512719450033114, - 3.8623170774725897, - 4.4668128760826, - 4.928967502931451, - 5.317180793432326, - 5.971980540499062, - 6.5200866085609634, - 8.117954025217072, - 9.917694334766331, - 10.481136526359018, - 11.009779202169527, - 11.543864331667741, - 11.969543704904865, - 12.339609533251991, - 12.661968911851094, - 12.933481519286822, - 13.136605430208776, - 13.368095393353892, - 13.526402212564701, - 13.60437395778915, - 13.731107324489717 + 1.526846324373138, + 1.8679037053125451, + 2.162243131656477, + 2.5060808691434553, + 2.8001350378408305, + 3.143356451844396, + 3.513468566815692, + 3.8649228331160455, + 4.472308184055252, + 4.931187018343138, + 5.309141815251904, + 5.928018714662347, + 6.4320383511358425, + 7.905810723954631, + 9.718282488009558, + 10.333873602284866, + 10.933471211864235, + 11.559603248577883, + 12.072838075309468, + 12.52792202357875, + 12.930489030313, + 13.273252024391748, + 13.531339586466094, + 13.82643294788097, + 14.028935606150915, + 14.12904489072897, + 14.292370650497812 ], "5._96._0.075": [ - 2.209271810327405, - 2.5553235633328057, - 2.851914879893103, - 3.2002707743981924, - 3.524578082112754, - 4.008353700802753, - 4.693820220569501, - 5.420426385271752, - 6.741261908314919, - 7.770553372372415, - 8.614352087103972, - 9.94155380015661, - 10.945645852155918, - 13.392310279714764, - 15.597831649139092, - 16.215002367149157, - 16.768829694968566, - 17.30849014135084, - 17.725699027950938, - 18.081873254990406, - 18.387222587582094, - 18.641521896006108, - 18.830786411387095, - 19.04593977463032, - 19.192736721945092, - 19.26485238297267, - 19.381916346387253 + 2.209271810327407, + 2.5553235637871663, + 2.851915535624321, + 3.2003446032338205, + 3.5253111576670784, + 4.011779685252266, + 4.699179446931815, + 5.4117620149725685, + 6.64480854518334, + 7.5847319091273215, + 8.371837604841563, + 9.672423114280445, + 10.717715665319766, + 13.480776670906474, + 16.180663284589006, + 16.961934945622318, + 17.668058280102382, + 18.359651380954464, + 18.89506948933473, + 19.352451302113497, + 19.74392613232931, + 20.069144734578952, + 20.310870469716555, + 20.584840010245394, + 20.77170901415453, + 20.863616274842556, + 21.01318672336833 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 5.0 + ], + [ + 25.0, + 10.0 + ], + [ + 25.0, + 15.0 + ], + [ + 25.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 25.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351690622742773, + 3.1872936610914824, + 3.5228989743438017, + 4.03420617459185, + 4.639023362350439, + 5.613012800974637, + 6.981972980302262, + 8.414653303783677, + 10.90199203645069, + 12.68955625845426, + 14.06210535004927, + 16.078563858837185, + 17.51604110650399, + 20.776236558508906, + 23.532528129531876, + 24.284008309589073, + 24.952240439528516, + 25.598322884910495, + 26.094289473549793, + 26.516858274667566, + 26.878058986860506, + 27.17831378980062, + 27.401847962498433, + 27.656185120383583, + 27.829855179593437, + 27.915204519552866, + 28.05393864109882 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004358, + 2.1114679242247285, + 2.451192833178007, + 2.7884201061001512, + 3.0450215530267113, + 3.3885113079531477, + 3.6188387366081076, + 3.8054381725949176, + 4.111767693843683, + 4.361771475104569, + 5.086079465956893, + 5.973107815972533, + 6.287593736793676, + 6.611259703328505, + 6.975242266536113, + 7.301515644593487, + 7.617490520739537, + 7.924132636478484, + 8.210007215403099, + 8.442401371196928, + 8.72966510349236, + 8.94024147625163, + 9.048607133951938, + 9.23130735464938 + ], + "5._384._0.0875": [ + 3.4931681430371886, + 4.030096459114257, + 4.668267188310008, + 5.700275373365933, + 6.922593470089278, + 8.932044022498633, + 11.7798131063589, + 14.519862321520465, + 18.500247053800454, + 20.92633420882411, + 22.631177406812174, + 24.962433208843983, + 26.539701745944427, + 29.958983637430503, + 32.76670943212331, + 33.524962192415344, + 34.20092594386722, + 34.85497960916905, + 35.358487887536036, + 35.78792595210566, + 36.15606086005758, + 36.46297398966405, + 36.69169905427459, + 36.95258186645971, + 37.130734020573925, + 37.21820092385113, + 37.36011927496209 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808691268432, + 2.800134993829261, + 3.1433485881795225, + 3.513248051544858, + 3.8635238377850563, + 4.465446257457387, + 4.9179988513442305, + 5.28962788226195, + 5.895647635611742, + 6.386555310865507, + 7.805934071735439, + 9.530808179448961, + 10.114451410592343, + 10.682862408609635, + 11.27676452580434, + 11.764045767965404, + 12.196677761503178, + 12.579938809843027, + 12.906774966113563, + 13.153196206073646, + 13.43541065966956, + 13.629289486775521, + 13.725178225787383, + 13.881642099530628 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235637176743, + 2.8519154351225575, + 3.200331781773796, + 3.525098524143712, + 4.009616237951137, + 4.68982858533548, + 5.391096614080907, + 6.595053935977666, + 7.503515379152878, + 8.258431404052379, + 9.497187951088547, + 10.488606592319487, + 13.105182366254075, + 15.666576549752305, + 16.408980340893404, + 17.08105086070896, + 17.740040517656702, + 18.250889996977378, + 18.68761549826924, + 19.061780433408707, + 19.372890669903608, + 19.604225272632984, + 19.866565766172126, + 20.0455337556987, + 20.13354963955612, + 20.276736525184955 ] }, "logtime": [ diff --git a/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json index 2a6efba931..f43088eadc 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json @@ -1631,6 +1631,222 @@ 3.003 ] }, + "3_7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351656341162443, + 3.187014514762691, + 3.520291486773915, + 4.019835321192123, + 4.598266622698777, + 5.505454028836613, + 6.718183339942295, + 7.877803051640495, + 9.647148834303554, + 10.796037429825848, + 11.637646112585644, + 12.835795798992232, + 13.672995839009618, + 15.558519233043606, + 17.158644860019837, + 17.596820727154633, + 17.989314931310613, + 18.370894787652666, + 18.666061837171448, + 18.918155150709214, + 19.134800586637315, + 19.3157612855321, + 19.4506456344601, + 19.604529232070114, + 19.709576863723935, + 19.761124726874975, + 19.844614147264735 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.451192833122094, + 2.7884193175496454, + 3.0449727877886135, + 3.387342106905034, + 3.614842981656967, + 3.7974462545039946, + 4.093923804886469, + 4.333088516238414, + 5.012629847566414, + 5.811605131109765, + 6.081381061842051, + 6.348905713653719, + 6.636337726934179, + 6.8814169748294916, + 7.107876995589846, + 7.318020105585717, + 7.506216063853771, + 7.65441346118814, + 7.832750071040182, + 7.9606954898502496, + 8.02566686921245, + 8.134136526564006 + ], + "5._384._0.0875": [ + 3.4897825017823827, + 4.012942218550658, + 4.621359193258554, + 5.578322152906584, + 6.658103610011862, + 8.258476102148522, + 10.220317120650588, + 11.922102910445952, + 14.248765134856342, + 15.627151473698424, + 16.588190742617957, + 17.901678138130936, + 18.791085580337878, + 20.738014708322556, + 22.35620109623612, + 22.79584390797119, + 23.189688747167637, + 23.572339702985243, + 23.868493942991787, + 24.121369011731456, + 24.338869924443532, + 24.520725000126713, + 24.656290594204787, + 24.811103470252988, + 24.916745938877533, + 24.968543501521534, + 25.05235146125909 + ], + "5._48._0.075": [ + 1.5268463243731403, + 1.8679037053125447, + 2.1622431316564747, + 2.506080868861052, + 2.800134290276426, + 3.143232282208476, + 3.5112180010951595, + 3.8551100080648077, + 4.434500906992661, + 4.861845313703254, + 5.207719926782502, + 5.760292289421438, + 6.19480129242409, + 7.360177468903957, + 8.594267365829415, + 8.977436239435578, + 9.338848676074324, + 9.707011208121951, + 10.003620570805541, + 10.264179124952287, + 10.493728302429277, + 10.689245230255956, + 10.836815211720717, + 11.006734716444713, + 11.123785139215956, + 11.18163852672453, + 11.275872429399685 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.555323562605826, + 2.8519138301183578, + 3.200148312708099, + 3.5231179843459515, + 3.997713571197222, + 4.648946731972666, + 5.304778387572102, + 6.3875560662013235, + 7.153780774925822, + 7.751368037561406, + 8.661505749612454, + 9.339860773416898, + 10.998248277412017, + 12.529357348192274, + 12.964929601649578, + 13.359875109914372, + 13.747832568461765, + 14.050283254183977, + 14.309725536184782, + 14.533433972885382, + 14.720672244530821, + 14.860366248183073, + 15.019681090729964, + 15.128519842200282, + 15.181991724035061, + 15.268689322782881 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, "2_7": { "bore_locations": [ [ @@ -1843,6 +2059,226 @@ 3.003 ] }, + "3_8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351663621213494, + 3.187072102273767, + 3.5207620281608345, + 4.021776912541979, + 4.6026765586719245, + 5.515595575645822, + 6.741250252081341, + 7.921039735802117, + 9.74189947429131, + 10.940997138840235, + 11.828105424440531, + 13.102813881471942, + 14.001104222140892, + 16.040858692653764, + 17.78381332475367, + 18.26232241004958, + 18.690924568121353, + 19.10759768636661, + 19.429737462725274, + 19.70485814436133, + 19.94116532625416, + 20.138438771610367, + 20.285466256652946, + 20.453135684005062, + 20.56760509167091, + 20.623792069271538, + 20.714845712583763 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331339763, + 2.7884194850866217, + 3.044983077400209, + 3.3875679375341408, + 3.6155192777584717, + 3.798645797325077, + 4.096175541445473, + 4.336344367894214, + 5.019731887738204, + 5.8260694306377605, + 6.0993455378426304, + 6.371076816525352, + 6.664024651400274, + 6.914877999251872, + 7.147765976751554, + 7.365080789004719, + 7.560937023845368, + 7.71618195368774, + 7.904455502886891, + 8.040774908900945, + 8.110498196664352, + 8.227807535489346 + ], + "5._384._0.0875": [ + 3.4903751804371543, + 4.015177586943321, + 4.626316334139148, + 5.589718395441277, + 6.681276747564868, + 8.311582200944601, + 10.337947181524815, + 12.125498123987082, + 14.610573550783363, + 16.10115543220187, + 17.146384853528588, + 18.580182544652118, + 19.553613541784934, + 21.686716094508675, + 23.459793008436893, + 23.941425243130862, + 24.37259432412595, + 24.791282342403576, + 25.11506944330547, + 25.391492242611275, + 25.629115832623636, + 25.827695284644296, + 25.975715702224495, + 26.144705036338415, + 26.260031001154708, + 26.316588353639908, + 26.408137783001337 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.5060808689175347, + 2.800134439757692, + 3.143256640490362, + 3.5115931831066907, + 3.8563714283629027, + 4.438008951479986, + 4.867532874904468, + 5.215583404676812, + 5.772672806467625, + 6.211824635542272, + 7.396223003969731, + 8.665672930864051, + 9.064558064313061, + 9.443088561442016, + 9.831210348272133, + 10.145861941844775, + 10.423784772086048, + 10.669811370622284, + 10.880235183612871, + 11.03959465184352, + 11.223602488018676, + 11.35071782623683, + 11.413681017310957, + 11.516452952897687 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235628420934, + 2.851914171068351, + 3.2001864870656878, + 3.5234855192882657, + 3.9993837692469993, + 4.6533568846839355, + 5.313071368778007, + 6.406029974073025, + 7.183253245785634, + 7.792258156960444, + 8.725769530023753, + 9.427137287321417, + 11.164087846726044, + 12.797067867994578, + 13.266404352497574, + 13.69333242880602, + 14.113866861877344, + 14.442302650798624, + 14.72443716185926, + 14.967883085263539, + 15.17171086225482, + 15.323838559393772, + 15.497318881291175, + 15.615886496828852, + 15.674171649421092, + 15.768746727493152 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, "2_8": { "bore_locations": [ [ @@ -2059,7 +2495,7 @@ 3.003 ] }, - "2_9": { + "3_9": { "bore_locations": [ [ 0.0, @@ -2069,6 +2505,10 @@ 5.0, 0.0 ], + [ + 10.0, + 0.0 + ], [ 0.0, 40.0 @@ -2104,74 +2544,294 @@ ], "g": { "5._192._0.08": [ - 2.835166362121371, - 3.1870721023996467, - 3.5207618863251002, - 4.02170087462969, - 4.601282817916865, - 5.505082573034636, - 6.704717379704928, - 7.85060989299981, - 9.614261909674306, - 10.777848147736364, - 11.641412962268987, - 12.88748751495244, - 13.769674474688928, - 15.78472026592574, - 17.517262787312823, - 17.994187037719634, - 18.421714068792646, - 18.837602286300164, - 19.159271643952945, - 19.43406047254468, - 19.670121033962634, - 19.867205726549333, - 20.014100444734638, - 20.181616128199728, - 20.29598680843991, - 20.35212910172427, - 20.44311692803543 + 2.8351669577621696, + 3.1871192193948663, + 3.5211470306693697, + 4.02336604255068, + 4.60628836336792, + 5.523912866383457, + 6.760213136734797, + 7.956590163901229, + 9.819432105778855, + 11.05995752958525, + 11.98545427838731, + 13.326579632142433, + 14.279372983493419, + 16.46126917454412, + 18.340122392150413, + 18.857513172485085, + 19.321026094858162, + 19.771703928311968, + 20.119997713430003, + 20.41746459641238, + 20.672847345909574, + 20.885939200231384, + 21.044742346100286, + 21.225773073053954, + 21.34937803104648, + 21.410066534409808, + 21.508469355149458 ], "5._24._0.075": [ 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.4511928331339754, - 2.7884194850866204, - 3.044983077400507, - 3.387567930861378, - 3.6155178196183373, - 3.7986289347389706, - 4.0959714283112145, - 4.3355951216797886, - 5.013611356722251, - 5.804657896312386, - 6.070861986481936, - 6.334955370621566, - 6.619142720593268, - 6.862257170090246, - 7.087897183772772, - 7.298585811629542, - 7.488764991913078, - 7.639855513781372, - 7.8237583190536935, - 7.95758826571103, - 8.026333617570037, - 8.142603850908452 + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.4511928331436974, + 2.788419622162329, + 3.044991496174073, + 3.3877527097140216, + 3.616072639174838, + 3.799627366245218, + 4.098018552360387, + 4.3390099497383785, + 5.025552976740104, + 5.837945155776155, + 6.114099123929642, + 6.389280272342354, + 6.6867306530111055, + 6.942267587451403, + 7.180351572238294, + 7.40347541069168, + 7.60559168511433, + 7.766677914663693, + 7.963375247426486, + 8.107018417548758, + 8.18101038862801, + 8.306512809245605 ], "5._384._0.0875": [ - 3.4903786245746553, - 4.015063137242643, - 4.624422203792356, - 5.576948284395749, - 6.644771518119655, - 8.227652735855717, - 10.190268594089307, - 11.927534242307571, - 14.359624278859046, - 15.82846991517414, + 3.4908602490936977, + 4.017007496165365, + 4.630377103453764, + 5.599067480275178, + 6.70032660247752, + 8.35524601949385, + 10.434272224348543, + 12.2935770843603, + 14.91772198376539, + 16.510933928414367, + 17.634825177379554, + 19.182817529672814, + 20.236971206161233, + 22.550546165298055, + 24.47465480335149, + 24.99730039704932, + 25.464896502276243, + 25.918732306482163, + 26.269434091571167, + 26.56878673298677, + 26.825984251804606, + 27.040815674123948, + 27.200936869339575, + 27.383691744447713, + 27.50842186302485, + 27.5696035749351, + 27.668680941175065 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.5060808689637457, + 2.8001345620605456, + 3.1432765700009018, + 3.5119001576045195, + 3.857403682102798, + 4.440881469960598, + 4.8721924094834295, + 5.222028321048053, + 5.782828895553719, + 6.225798758669292, + 7.425840338700072, + 8.724013100036528, + 9.135752727922855, + 9.528490688549844, + 9.933464739651592, + 10.263667427036491, + 10.556838647168476, + 10.817606684755376, + 11.041602203495012, + 11.211858080978587, + 11.40907667877819, + 11.54576081668215, + 11.613627138534445, + 11.724663505950113 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235630354036, + 2.851914450027435, + 3.2002177206514735, + 3.5237862369387165, + 4.0007506714049255, + 4.656968959726396, + 5.31986947286768, + 6.4212044289907, + 7.207476863281739, + 7.825826031365544, + 8.778357372416602, + 9.49844624755691, + 11.30081619087679, + 13.023197356809609, + 13.52328497336397, + 13.979736533912572, + 14.43072918196657, + 14.783708895205342, + 15.087442699269227, + 15.349783364263514, + 15.569559871964136, + 15.733677296211455, + 15.920844953108404, + 16.0488366495202, + 16.1117947889488, + 16.21403628043169 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_9": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835166362121371, + 3.1870721023996467, + 3.5207618863251002, + 4.02170087462969, + 4.601282817916865, + 5.505082573034636, + 6.704717379704928, + 7.85060989299981, + 9.614261909674306, + 10.777848147736364, + 11.641412962268987, + 12.88748751495244, + 13.769674474688928, + 15.78472026592574, + 17.517262787312823, + 17.994187037719634, + 18.421714068792646, + 18.837602286300164, + 19.159271643952945, + 19.43406047254468, + 19.670121033962634, + 19.867205726549333, + 20.014100444734638, + 20.181616128199728, + 20.29598680843991, + 20.35212910172427, + 20.44311692803543 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331339754, + 2.7884194850866204, + 3.044983077400507, + 3.387567930861378, + 3.6155178196183373, + 3.7986289347389706, + 4.0959714283112145, + 4.3355951216797886, + 5.013611356722251, + 5.804657896312386, + 6.070861986481936, + 6.334955370621566, + 6.619142720593268, + 6.862257170090246, + 7.087897183772772, + 7.298585811629542, + 7.488764991913078, + 7.639855513781372, + 7.8237583190536935, + 7.95758826571103, + 8.026333617570037, + 8.142603850908452 + ], + "5._384._0.0875": [ + 3.4903786245746553, + 4.015063137242643, + 4.624422203792356, + 5.576948284395749, + 6.644771518119655, + 8.227652735855717, + 10.190268594089307, + 11.927534242307571, + 14.359624278859046, + 15.82846991517414, 16.86238213607518, 18.28496494239438, 19.253064490336243, @@ -2279,6 +2939,234 @@ 3.003 ] }, + "3_10": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835167454129701, + 3.1871584837082287, + 3.5214678757879274, + 4.0246906994428056, + 4.609300730087367, + 5.530857493084977, + 6.776076487946665, + 7.986387348058947, + 9.88438387168039, + 11.159683629046175, + 12.117857924063628, + 13.516754350616424, + 14.518103853507546, + 16.830571133408437, + 18.838423848430946, + 19.393254801324463, + 19.890505955108704, + 20.374137504912817, + 20.747807392373403, + 21.0669791046511, + 21.34089097944372, + 21.569343968438073, + 21.739583999785125, + 21.93358612745975, + 22.066064520631976, + 22.131128849871427, + 22.23668481394341 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224729, + 2.4511928331517985, + 2.7884197363920875, + 3.044998511819465, + 3.387906687675393, + 3.6165337931054964, + 3.8004454261456067, + 4.099554863096034, + 4.341232439464502, + 5.030411000079716, + 5.847869653342818, + 6.126433777726494, + 6.404505138126816, + 6.705725146402364, + 6.965171899795342, + 7.207579863800311, + 7.435530249090228, + 7.642861295131238, + 7.80884955265691, + 8.012726093104382, + 8.162769621536277, + 8.240583045591793, + 8.373650538410176 + ], + "5._384._0.0875": [ + 3.4912645759759484, + 4.0185330887929505, + 4.63376446953033, + 5.606875532603709, + 6.716262465218269, + 8.391874737023697, + 10.514995818749405, + 12.435047126270183, + 15.181402287320804, + 16.86819307188208, + 18.065302166387415, + 19.721324543663748, + 20.8528397911843, + 23.341161026389962, + 25.412567023281664, + 25.97530214407684, + 26.478483211028824, + 26.966637255733467, + 27.34358649440391, + 27.665295776030437, + 27.941558905603124, + 28.17220512886178, + 28.344099563386887, + 28.54023995420296, + 28.674115971567243, + 28.739796875909388, + 28.846204926709486 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125465, + 2.1622431316564765, + 2.5060808690022545, + 2.80013466397959, + 3.143293177931288, + 3.5121559747719404, + 3.858264019099561, + 4.443276818182665, + 4.8760795374602806, + 5.227406772123178, + 5.791310616768037, + 6.2374761000007615, + 7.450650717422912, + 8.77281753090204, + 9.19527316848672, + 9.59995837871229, + 10.019266711625836, + 10.362911151929609, + 10.669468274290875, + 10.94339488249301, + 11.179706462549138, + 11.359998313183626, + 11.569567952269619, + 11.715332133121715, + 11.787898316752585, + 11.906933201187522 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235631964957, + 2.851914682493342, + 3.2002437486537114, + 3.524036839960491, + 4.001890015440178, + 4.65998161597706, + 5.325543473087268, + 6.433890156879147, + 7.2277501693345005, + 7.8539322518464605, + 8.82237574767482, + 9.558081695953819, + 11.415676069996847, + 13.21654969075376, + 13.744560693203347, + 14.228170888259095, + 14.70754578225552, + 15.083645233779155, + 15.40789659993502, + 15.688303032854796, + 15.923405203398387, + 16.09908599157253, + 16.299489082333572, + 16.436620329658822, + 16.504121673804857, + 16.613836125067724 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, "2_10": { "bore_locations": [ [ @@ -2503,7 +3391,7 @@ 3.003 ] }, - "4_4": { + "3_11": { "bore_locations": [ [ 0.0, @@ -2517,13 +3405,9 @@ 10.0, 0.0 ], - [ - 15.0, - 0.0 - ], [ 0.0, - 15.0 + 50.0 ], [ 0.0, @@ -2532,46 +3416,3218 @@ [ 0.0, 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 ] ], "g": { "5._192._0.08": [ - 2.835163554103729, - 3.1868499795100256, - 3.5189471871417144, - 4.014291734689392, - 4.585729983426826, - 5.4783782331097886, - 6.664875308975525, - 7.78095954436287, - 9.422622271115944, - 10.444946568635388, - 11.174586733117547, - 12.190679309604377, - 12.887629509317616, - 14.432466371861755, - 15.72804732473775, - 16.081392778821243, - 16.398108012781965, - 16.706154923196785, - 16.94478515960347, - 17.148634374775696, - 17.324044660244187, - 17.470751596521854, - 17.580134119683894, - 17.70503746479188, - 17.790288291349594, - 17.832098064054087, - 17.899737843068284 + 2.8351678741331416, + 3.1871917073904976, + 3.5217393670030654, + 4.025811834209314, + 4.61185145346065, + 5.536743360242066, + 6.789542341122194, + 8.011729485679748, + 9.939738806301849, + 11.244707604031843, + 12.230987907083597, + 13.680372643739338, + 14.725003129852778, + 17.157161602128337, + 19.287201729614353, + 19.87804167600836, + 20.40787756607065, + 20.923440962465882, + 21.321741826931625, + 21.66200968750078, + 21.953937446499427, + 22.197325624921714, + 22.378688170059363, + 22.58530141755295, + 22.726411788492538, + 22.795736443438333, + 22.90826584095707 ], "5._24._0.075": [ - 0.8740059532267965, + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.451192833158652, + 2.7884198330480343, + 3.0450044481351597, + 3.3880369775325154, + 3.6169240140650465, + 3.801137691602652, + 4.100855150928281, + 4.343113839875867, + 5.034526696587013, + 5.856287217871987, + 6.136899265884839, + 6.417428656952204, + 6.721857025243772, + 6.984630194345474, + 7.23071235848738, + 7.46275719002306, + 7.674511378569264, + 7.8446699828722855, + 8.054712619525981, + 8.210358583780817, + 8.291587223939551, + 8.431619002872456 + ], + "5._384._0.0875": [ + 3.491606771885647, + 4.019824449617858, + 4.636633113287707, + 5.61349455470441, + 6.729789705763077, + 8.423058548014243, + 10.583831426204243, + 12.555968050305024, + 15.410040185415141, + 17.18200744157122, + 18.447071309317913, + 20.205001436392507, + 21.410487090904954, + 24.06780668046849, + 26.282874150497122, + 26.884818186786053, + 27.422788888358625, + 27.944482837271533, + 28.347056347435487, + 28.690587807299142, + 28.98544341895138, + 29.2314980273851, + 29.414861315298122, + 29.62403420935126, + 29.766816328304078, + 29.836880249369354, + 29.9504360014852 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.50608086903484, + 2.800134750218782, + 3.1433072307989622, + 3.512372439063419, + 3.8589920857149025, + 4.4453047760115725, + 4.879371618902787, + 5.23196323584666, + 5.798500491024492, + 6.247379900779494, + 7.4717419756868635, + 8.814358846884131, + 9.245910892593974, + 9.660783362313682, + 10.09240025167498, + 10.44772275347916, + 10.766053163515114, + 11.051720761152096, + 11.299188128648552, + 11.488699636440465, + 11.709786713989828, + 11.864150883366914, + 11.941216666140301, + 12.067989933376893 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235633328053, + 2.8519148791952595, + 3.2002657723579064, + 3.5242488922071926, + 4.0028542596577426, + 4.662532630128178, + 5.33035089057214, + 6.444652886822788, + 7.2449674930355465, + 7.877820770788682, + 8.859828179799573, + 9.6088238966732, + 11.513688106994872, + 13.38364933869384, + 13.936973613878394, + 14.445506463412741, + 14.951257674338889, + 15.34908280236185, + 15.692785854906933, + 15.990442200279887, + 16.240261245730615, + 16.427093023349375, + 16.640300820867427, + 16.78630367025977, + 16.858227068624824, + 16.9752356028089 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_11": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835167454129719, + 3.187158483813128, + 3.5214677575876605, + 4.0246273140428315, + 4.608138105212504, + 5.522071295895397, + 6.74542274945158, + 7.926971627658013, + 9.774761656051242, + 11.016708107712233, + 11.951384510508705, + 13.319732777771177, + 14.302673594943704, + 16.584503349015957, + 18.578306976099583, + 19.130913453415328, + 19.626672643096992, + 20.109233695362057, + 20.482288880925687, + 20.801045350377546, + 21.0746688816946, + 21.302916726202742, + 21.47301929197932, + 21.66686924209714, + 21.79925491507697, + 21.86427941628215, + 21.969779829957652 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224729, + 2.451192833151798, + 2.788419736392089, + 3.044998511819715, + 3.387906682114709, + 3.616532577978255, + 3.800431373625177, + 4.099384735004829, + 4.340607827287072, + 5.025300106505326, + 5.829938745668311, + 6.1025537237961, + 6.374177047639868, + 6.667954503951291, + 6.920752110899156, + 7.156829349879641, + 7.378844201479002, + 7.580909455638342, + 7.742879549753364, + 7.942276861935414, + 8.089560444430406, + 8.166211049175363, + 8.297930459210018 + ], + "5._384._0.0875": [ + 3.4912674475529353, + 4.018437667505849, + 4.632184049842234, + 5.596198228877934, + 6.685633060651696, + 8.32085949998215, + 10.387190188885407, + 12.258235261873592, + 14.946753558400102, + 16.60726950649036, + 17.789921286367562, + 19.431013384814044, + 20.555227171752755, + 23.03359015194537, + 25.100762484662347, + 25.662752095471788, + 26.165303180899013, + 26.652880012015526, + 27.029375453190642, + 27.350699908842376, + 27.626615302168826, + 27.856953530651513, + 28.028613513965215, + 28.224471372433413, + 28.35815347149541, + 28.423740716893874, + 28.530002442224266 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125465, + 2.1622431316564765, + 2.5060808690022554, + 2.8001346639795908, + 3.143293177938948, + 3.512155931419268, + 3.8582517236720517, + 4.44264732426878, + 4.873384133628915, + 5.221545928065523, + 5.777690876577834, + 6.215682789317408, + 7.401021411888834, + 8.688844580970171, + 9.100513174771399, + 9.495237801351028, + 9.904881829957018, + 10.241347098830092, + 10.542207830577281, + 10.811760324528674, + 11.044955730681313, + 11.223342669474365, + 11.431303801961906, + 11.576365744071424, + 11.648722584905002, + 11.767635263359383 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235631964966, + 2.8519146824933417, + 3.2002437486812694, + 3.5240368037974847, + 4.0018537996917765, + 4.65878596885295, + 5.319435822542893, + 6.410442314232591, + 7.186856791773549, + 7.797594604615191, + 8.74075053195589, + 9.456917176674107, + 11.267895117032854, + 13.033587563891237, + 13.553966516207126, + 14.031770847838109, + 14.506546375350446, + 14.879868905422262, + 15.202282524823799, + 15.481522605435174, + 15.715939650311661, + 15.89126198393698, + 16.091410364539122, + 16.2284598240918, + 16.29595240528854, + 16.405694698894415 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_12": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351682341361863, + 3.1872201848561565, + 3.5219720787815443, + 4.026773004812806, + 4.61403910035276, + 5.541795439613283, + 6.801115957977639, + 8.033545552816934, + 9.987535427774501, + 11.318178936169785, + 12.3288894883573, + 13.822660341886792, + 14.905946464669855, + 17.447708483768967, + 19.693266262067905, + 20.318697252544123, + 20.87998051270889, + 21.426477169856, + 21.848690559953017, + 22.2094730289527, + 22.518931430818498, + 22.776855577456963, + 22.969047224329973, + 23.187936904987858, + 23.337455679994207, + 23.41093400098075, + 23.530271282610872 + ], + "5._24._0.075": [ + 0.8740059532267968, 1.1958031759615424, 1.481384749141307, 1.8198213217004346, - 2.111467924224727, - 2.4511928330881467, - 2.788418838872571, + 2.1114679242247285, + 2.4511928331645296, + 2.7884199158959904, + 3.0450095364060195, + 3.388148655145984, + 3.617258499232581, + 3.801731106447129, + 4.101969926056587, + 4.344727076156801, + 5.038058134557414, + 5.863516839614962, + 6.145890495005291, + 6.42853606995575, + 6.735729323045801, + 7.0013710008572, + 7.250622058963642, + 7.486196059545615, + 7.701760335556686, + 7.875514033015424, + 8.090900281234134, + 8.25146704004213, + 8.335747267112287, + 8.482176137896781 + ], + "5._384._0.0875": [ + 3.4919001360605413, + 4.0209316768505206, + 4.639093711419913, + 5.619176929248488, + 6.741415962779232, + 8.449927780167904, + 10.6433191168619, + 12.660663720665394, + 15.610087912966392, + 17.45954381377242, + 18.78755212130333, + 20.641391636203107, + 21.917458191371477, + 24.738018727751488, + 27.09319130454492, + 27.733499748733685, + 28.305504772787447, + 28.86000459780442, + 29.287617670041175, + 29.652470783551085, + 29.965476702754884, + 30.226560409569366, + 30.421108603885653, + 30.6429848642909, + 30.79444961642539, + 30.868788338951045, + 30.98932144723895 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.162243131656475, + 2.506080869062772, + 2.800134824138089, + 3.1433192761166673, + 3.5125579825195437, + 3.859616207868321, + 4.447043846670277, + 4.882195574242562, + 5.235872769625174, + 5.80467276839032, + 6.25588567647491, + 7.489891724448332, + 8.85018935477045, + 9.289583966445159, + 9.713258080685339, + 10.15555227904419, + 10.52108659690057, + 10.849808488081612, + 11.14596381000651, + 11.403529601209474, + 11.60149659380285, + 11.833301203833958, + 11.995796060877213, + 12.077164230749249, + 12.211420325426682 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.55532356344964, + 2.8519150477969055, + 3.200284649825948, + 3.5244306538556405, + 4.003680888885314, + 4.6647205597737225, + 5.334476166946783, + 6.453899052319468, + 7.259771353917963, + 7.898376461592159, + 8.892101515935247, + 9.652578420104126, + 11.598425425115058, + 13.529436672794525, + 14.105696142560115, + 14.637067088936602, + 15.167280691988545, + 15.585480217183534, + 15.947590965573905, + 16.26169569992211, + 16.525635410641986, + 16.723217319144254, + 16.948816421495916, + 17.103436653288664, + 17.179668122912773, + 17.303804054296318 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_12": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351678741331576, + 3.1871917074873277, + 3.5217392578937634, + 4.025753317338663, + 4.610777843983028, + 5.528623994965942, + 6.761171348130169, + 7.956625875286063, + 9.837551675512806, + 11.110658408207424, + 12.074026299456028, + 13.492839816331548, + 14.518506775620365, + 16.917884501769052, + 19.03219502886354, + 19.62048355508299, + 20.148605675067692, + 20.662941142926936, + 21.06054497486548, + 21.400349009134363, + 21.691963137794982, + 21.935135481468567, + 22.116356940496452, + 22.322818133670143, + 22.463838597421148, + 22.533125834077403, + 22.645604869521765 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.451192833158652, + 2.788419833048034, + 3.045004448135391, + 3.3880369723995614, + 3.6169228924054173, + 3.8011247199156264, + 4.100698097607014, + 4.342537189440759, + 5.029805230893702, + 5.839704187348727, + 6.114804760333697, + 6.389353389906559, + 6.686865778829983, + 6.943443655578649, + 7.183605256400474, + 7.410065232222761, + 7.616817098971765, + 7.783108624749228, + 7.988751071626907, + 8.141599975995582, + 8.22161373073458, + 8.360179457252537 + ], + "5._384._0.0875": [ + 3.491609423091567, + 4.0197363518995735, + 4.635173561356354, + 5.603625921883726, + 6.701441660869634, + 8.357126786223885, + 10.464431414188807, + 12.389168646495014, + 15.184767712174684, + 16.92895036318572, + 18.17831083468347, + 19.919665758763426, + 21.116905318688808, + 23.762880327872615, + 25.973191562180556, + 26.57432148473419, + 27.111620034685686, + 27.632709843485525, + 28.034815637446762, + 28.37795331495283, + 28.672455106949894, + 28.91819726372546, + 29.10132301146982, + 29.31020958141723, + 29.452795502834096, + 29.52276484941692, + 29.636173189465303 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.5060808690348386, + 2.8001347502187834, + 3.1433072308060326, + 3.51237239904521, + 3.858980735485603, + 4.444723530082057, + 4.876882400363041, + 5.226549516438686, + 5.785912857804516, + 6.227227382758531, + 7.4257342345975035, + 8.736177669060062, + 9.157478551042818, + 9.562764463439349, + 9.984930518690641, + 10.333093869743138, + 10.645631577561883, + 10.926754662510048, + 11.170909700740777, + 11.358350843786702, + 11.577643356156504, + 11.731198489608316, + 11.808013699964107, + 11.934623126318721 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235633328044, + 2.8519148791952604, + 3.2002657723833434, + 3.52424885882567, + 4.002820826487561, + 4.661428498376374, + 5.324708273134294, + 6.422962983864601, + 7.207098161237444, + 7.8255919828068485, + 8.783973363900605, + 9.514569631089959, + 11.374537667365383, + 13.208851924500673, + 13.754105578962186, + 14.256379994843266, + 14.757074793804133, + 15.151790411240222, + 15.493406479186575, + 15.789720110827737, + 16.03874095219093, + 16.22515258594342, + 16.438061326386528, + 16.583966822078576, + 16.655878576517296, + 16.7729171177615 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_13": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351685461388927, + 3.1872448653441046, + 3.5221737660732186, + 4.027606167167979, + 4.6159360416819775, + 5.546179181510908, + 6.811169991189717, + 8.052522999579862, + 10.029240466256997, + 11.382364567550246, + 12.414521697807157, + 13.947567959089126, + 15.065482318090602, + 17.70759527386855, + 20.062193206680924, + 20.720814828360822, + 21.3124233069419, + 21.888874054922834, + 22.334303567411954, + 22.715041861218047, + 23.04156945294677, + 23.313653298181954, + 23.516398775199654, + 23.747252496773818, + 23.904971709589645, + 23.982504760422678, + 24.108496758270405 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.45119283316962, + 2.788419987697553, + 3.045013946240959, + 3.388245442853828, + 3.617548393888841, + 3.802245432504758, + 4.102936245744797, + 4.34612566789047, + 5.04112147882202, + 5.869793415313971, + 6.153698471354012, + 6.438185054346314, + 6.747785850987888, + 7.015927544794118, + 7.267942526037185, + 7.506595602204305, + 7.725483428585173, + 7.902373241355298, + 8.122433191363074, + 8.287342262425593, + 8.374352165138335, + 8.526648654156174 + ], + "5._384._0.0875": [ + 3.492154424890663, + 4.021891532619119, + 4.641227545447945, + 5.624108332001989, + 6.751515633210542, + 8.473318826192548, + 10.695278311080873, + 12.75229381212482, + 15.786553433828697, + 17.70653805006514, + 19.09278070483636, + 21.036722350960282, + 22.380012739791738, + 25.358065679205374, + 27.849852811109574, + 28.527711560940038, + 29.13303009168784, + 29.71964039120903, + 30.17174217323906, + 30.557446380556993, + 30.88818787991048, + 31.163945523530966, + 31.369412867096276, + 31.603684631882683, + 31.763623110835077, + 31.842135523773173, + 31.969486925612483 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.506080869086976, + 2.8001348882014883, + 3.14332971539392, + 3.5127187888155733, + 3.8601571623129454, + 4.448551654646004, + 4.884644624716241, + 5.239264017211789, + 5.810029201916975, + 6.263269922954902, + 7.505674815431089, + 8.881424657742551, + 9.32766672294887, + 9.759034183962633, + 10.21068288001661, + 10.58521058689482, + 10.923146493753949, + 11.228691199057545, + 11.495401965793173, + 11.701116987803164, + 11.942878988816414, + 12.113048300331869, + 12.19852502289099, + 12.340012273409686 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323563550897, + 2.8519151939183285, + 3.200301010303692, + 3.52458818254394, + 4.004397401090195, + 4.666617771249373, + 5.338054870075119, + 6.46192809582201, + 7.272635945248816, + 7.916251480561789, + 8.920205253034062, + 9.690715718610734, + 11.672493960170277, + 13.657715347432005, + 14.254764770327146, + 14.807052185621306, + 15.359921944490925, + 15.797198142197464, + 16.17670078854886, + 16.506469036489793, + 16.78394530740715, + 16.99188639721356, + 17.229477805692934, + 17.39247268050962, + 17.47290423943685, + 17.604011161187714 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_13": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168234136201, + 3.1872201849460726, + 3.521971977464689, + 4.026718661930892, + 4.613041844979526, + 5.534248831888043, + 6.774711380578028, + 7.982170404632557, + 9.89186562151651, + 11.192151101284463, + 12.180691726796226, + 13.644241526224878, + 14.708305148029291, + 17.215650432149893, + 19.44392748367683, + 20.06648291048884, + 20.625825831554113, + 21.170929639179448, + 21.59235757273737, + 21.952623227233296, + 22.261739613928746, + 22.519435273758592, + 22.711481115725537, + 22.930218067695836, + 23.079649345263526, + 23.15309250069872, + 23.2723844081787 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.1114679242247285, + 2.4511928331645296, + 2.7884199158959895, + 3.045009536406233, + 3.3881486503796587, + 3.6172574576885386, + 3.8017190612059335, + 4.101824081272921, + 4.344191547098699, + 5.0336709543435525, + 5.848093239728237, + 6.125333157276462, + 6.402402218852352, + 6.703136929686439, + 6.962980990005347, + 7.206676865625543, + 7.436989493874265, + 7.647810989055769, + 7.817864602279802, + 8.02897415641652, + 8.186751447058352, + 8.269787011643649, + 8.414656552414385 + ], + "5._384._0.0875": [ + 3.4919025983081817, + 4.020849858666288, + 4.637737853333216, + 5.6100031054361095, + 6.7150330886968685, + 8.388399910455584, + 10.53134553223759, + 12.503106074424664, + 15.39419988933246, + 17.214800200182253, + 18.526079547544565, + 20.361873106004168, + 21.628796637358604, + 24.43662837367198, + 26.786501368541312, + 27.425922549489613, + 27.997211236185798, + 28.55107920478627, + 28.978210956139886, + 29.342661954279475, + 29.655308931825022, + 29.91607683510037, + 30.110385314391067, + 30.331972664729808, + 30.483239821467315, + 30.557483499021416, + 30.677868825417097 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.162243131656475, + 2.506080869062771, + 2.8001348241380923, + 3.143319276123234, + 3.512557945359495, + 3.8596056678890003, + 4.446503979268546, + 4.879883238435726, + 5.230842789668421, + 5.792971845289168, + 6.237144220400357, + 7.44701288345285, + 8.77707290508762, + 9.206744670482216, + 9.621240695757827, + 10.05437638827948, + 10.41286105099645, + 10.735783690480044, + 11.02730218745409, + 11.281417382433986, + 11.477182250939485, + 11.707029733187849, + 11.868614399610378, + 11.949690884874297, + 12.083739140944088 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.55532356344964, + 2.8519150477969046, + 3.2002846498495665, + 3.524430622858288, + 4.003649841212799, + 4.663694930265451, + 5.329232780098832, + 6.433721924354847, + 7.224509813044471, + 7.849698787646684, + 8.821263553206336, + 9.564387773780043, + 11.467194349702078, + 13.362599509869813, + 13.930481201618715, + 14.455240596470123, + 14.98001019550339, + 15.39480052887088, + 15.754589195345146, + 16.06717810365795, + 16.330204463746572, + 16.52730150703553, + 16.75255318351304, + 16.907057845878732, + 16.983273512370204, + 17.107439759176636 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_14": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 65.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168546138908, + 3.187244865428026, + 3.522173671509946, + 4.027555442462614, + 4.615005001104358, + 5.5391298520156145, + 6.7864769763866235, + 8.004403996685221, + 9.93931298345918, + 11.26351689756089, + 12.274309230095339, + 13.777721265494574, + 14.876378226777838, + 17.482888852716542, + 19.81880138324513, + 20.474230945321693, + 21.063670983430963, + 21.638558493435433, + 22.083108872161525, + 22.463273323970526, + 22.789427510942545, + 23.061268213183496, + 23.26386201677552, + 23.494561437261552, + 23.652195074754932, + 23.729695008960284, + 23.855646342136342 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.4511928331696207, + 2.788419987697553, + 3.0450139462411587, + 3.388245438405242, + 3.617547421778682, + 3.8022341901961343, + 4.102800116215815, + 4.3456257858071785, + 5.037024379194844, + 5.855377732496238, + 6.134478369967986, + 6.413741577241316, + 6.717284704813254, + 6.979979056297518, + 7.226763448912968, + 7.460447935628614, + 7.674837004602238, + 7.848194641010417, + 8.064123915233791, + 8.226282296715464, + 8.312035862753138, + 8.462702912881488 + ], + "5._384._0.0875": [ + 3.4921567233230704, + 4.021815158333047, + 4.63996162479259, + 5.615537920262872, + 6.72684319879988, + 8.415643607647143, + 10.589879431024242, + 12.603164410340973, + 15.579771276211332, + 17.470202155110314, + 18.83889940299629, + 20.763508422598612, + 22.09681824352043, + 25.06077707387853, + 27.546703442315025, + 28.22359717594577, + 28.8281528277934, + 29.414102294782246, + 29.86570901320916, + 30.251002995198338, + 30.581381009914917, + 30.85682025390648, + 31.06204635222706, + 31.29602750142242, + 31.455767639393656, + 31.534184868839347, + 31.66138865530426 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.5060808690869747, + 2.8001348882014887, + 3.1433297154000495, + 3.512718754132632, + 3.8601473246100726, + 4.448047665901439, + 4.8824857012235485, + 5.234566977531048, + 5.799098292426393, + 6.245754882632847, + 7.465526568157496, + 8.812761650713139, + 9.249777483558653, + 9.672375258555792, + 10.1151928934694, + 10.48283530019693, + 10.8150288621395, + 11.11590576294921, + 11.37907746247418, + 11.582490203444548, + 11.822157248726997, + 11.991322710310255, + 12.076467593021968, + 12.217701618329773 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323563550897, + 2.851915193918329, + 3.2003010103257385, + 3.524588153612896, + 4.004368421170581, + 4.665660222222207, + 5.333157954770644, + 6.44306651330995, + 7.239646323376501, + 7.870673197242918, + 8.853764164398013, + 9.607868793987096, + 11.548454381317718, + 13.498463826880856, + 14.086940879591737, + 14.632354425976466, + 15.179461620371459, + 15.613065093488553, + 15.990028577148678, + 16.318114411981863, + 16.594562339591565, + 16.80195191612812, + 17.03914424633164, + 17.202003018334416, + 17.282413468946555, + 17.41354933718174 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_15": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 70.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 65.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516881914134, + 3.187266460863217, + 3.5223501566563837, + 4.02828773860383, + 4.616723541572965, + 5.543405444950552, + 6.796795485394891, + 8.023931107554192, + 9.98111829088294, + 11.326536132690185, + 12.35713527228523, + 13.896253835739666, + 15.026172591190427, + 17.72381600886726, + 20.16127593229724, + 20.848213351792094, + 21.46664562871368, + 22.070351375212535, + 22.53734210718394, + 22.93686226738796, + 23.279610314860516, + 23.565237634129357, + 23.778118774233008, + 24.02048687937206, + 24.18612809560658, + 24.26759243678744, + 24.400060605909726 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004344, + 2.111467924224728, + 2.451192833174074, + 2.7884200505239205, + 3.0450178048468683, + 3.3883301282649443, + 3.6178011460792097, + 3.8026849533563283, + 4.103654285771049, + 4.346881096732758, + 5.039961013644245, + 5.86176233788482, + 6.142496165275835, + 6.4236867224990615, + 6.72969926172745, + 6.994902651163049, + 7.244409127997932, + 7.481069571513017, + 7.698612025875505, + 7.8748944343970635, + 8.095101826896059, + 8.261171902657265, + 8.349374770306408, + 8.5053705623316 + ], + "5._384._0.0875": [ + 3.492379113054875, + 4.022659994008272, + 4.641908480590049, + 5.620386928163562, + 6.737200634436749, + 8.439589351882644, + 10.641515732177345, + 12.691742809322196, + 15.745263372714717, + 17.699576724634017, + 19.12149886356291, + 21.129542805662105, + 22.526009948227344, + 25.640412417444786, + 28.258943458522563, + 28.972516998341266, + 29.609646190113676, + 30.227014059980668, + 30.70257441996411, + 31.108267400295787, + 31.455986532501246, + 31.745764059934547, + 31.96165876967092, + 32.207745589116165, + 32.37576336279339, + 32.45825966558736, + 32.59213339426117 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125465, + 2.162243131656477, + 2.506080869108157, + 2.8001349442569663, + 3.1433388497687162, + 3.512859463307769, + 3.8606213112923995, + 4.4493988723186915, + 4.8847641797839465, + 5.237828196861599, + 5.80446553873384, + 6.253301477261929, + 7.481781283497604, + 8.84417873116836, + 9.287690892345292, + 9.717470935435566, + 10.168894354790822, + 10.544708466930862, + 10.885213615154857, + 11.194537649319912, + 11.4659538786546, + 11.676393715560016, + 11.925188673096429, + 12.101502760510533, + 12.19052771002058, + 12.33869883826987 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235636394973, + 2.851915321774576, + 3.2003153257465375, + 3.5247259944905247, + 4.004997255219886, + 4.667380653726733, + 5.336595483600339, + 6.45125843525715, + 7.252926248127258, + 7.889088423646772, + 8.882342096433778, + 9.646149875839265, + 11.62030589269022, + 13.619336162346876, + 14.22658055858221, + 14.790971822981716, + 15.358793086122319, + 15.81001091042384, + 16.20318798737779, + 16.54601447273196, + 16.835314444901474, + 17.052613703668207, + 17.301357364442776, + 17.472335207282466, + 17.556836503686768, + 17.69479280459267 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_16": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 75.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 65.0 + ], + [ + 0.0, + 70.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351690600258754, + 3.1872855156694264, + 3.5225058810587466, + 4.028933969993391, + 4.618240504790082, + 5.547181674874335, + 6.805918404868441, + 8.041217524244624, + 10.01823096563399, + 11.382593168942035, + 12.430934713923296, + 14.00220267280871, + 15.160467394694034, + 17.94194977648574, + 20.475137363463705, + 21.19224700695376, + 21.838586648787874, + 22.47016314213427, + 22.95892925623119, + 23.377279071798544, + 23.736194774074015, + 24.035267551515187, + 24.258189256597248, + 24.51194948261886, + 24.685415594817208, + 24.77075796539838, + 24.90961000410654 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004358, + 2.1114679242247285, + 2.4511928331780086, + 2.788420105958951, + 3.045021209499082, + 3.388404854873192, + 3.6180250248968466, + 3.8030827051618292, + 4.10440807252425, + 4.3479889969525995, + 5.042554014138887, + 5.867404103549804, + 6.149582913934422, + 6.4324798859333265, + 6.740680695698837, + 7.008109657838397, + 7.260033303832011, + 7.499339669681038, + 7.719689629365537, + 7.898579398248277, + 8.122608636157269, + 8.292187626507278, + 8.382603142679644, + 8.543496552073162 + ], + "5._384._0.0875": [ + 3.4925753628124054, + 4.023405591122585, + 4.643627113337028, + 5.624670156862378, + 6.746357881595412, + 8.460801733324159, + 10.687405529868782, + 12.77071571722398, + 15.893727672738123, + 17.906575137462724, + 19.377842532307895, + 21.464211718202666, + 22.920696763514435, + 26.179927057634274, + 28.927667590067966, + 29.677150571938938, + 30.346185893401692, + 30.994338702876146, + 31.493357819030656, + 31.91902939412032, + 32.28372150338697, + 32.587523505832415, + 32.81385235386238, + 33.071773753272495, + 33.2478854913956, + 33.33437209050917, + 33.47477630273167 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808691268432, + 2.800134993717679, + 3.143346909506902, + 3.512983619623888, + 3.8610395635555683, + 4.450591485940758, + 4.8867756285932415, + 5.240707725253232, + 5.809206470656173, + 6.259969760536042, + 7.496166673957923, + 8.872047540116688, + 9.321347428277948, + 9.757538614044886, + 10.216660820211835, + 10.599807264227035, + 10.947797085543158, + 11.264769152397868, + 11.543703478956383, + 11.76060351061252, + 12.017879894556424, + 12.20092844656616, + 12.293650095600885, + 12.448513877755389 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235637176734, + 2.8519154345889146, + 3.200327957003394, + 3.524847619931643, + 4.00555216816136, + 4.668899302731723, + 5.33963092560668, + 6.458498570183288, + 7.264671412637525, + 7.905385874321552, + 8.907666952658335, + 9.680111074134901, + 11.684298607143843, + 13.727537210140053, + 14.351911918558342, + 14.933754238737219, + 15.520782075648796, + 15.988482148813334, + 16.396951848015195, + 16.75378697305894, + 17.055384441829823, + 17.282220030367892, + 17.54213704092622, + 17.721007496193042, + 17.80950011911992, + 17.954135267770617 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_17": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 80.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 65.0 + ], + [ + 0.0, + 70.0 + ], + [ + 0.0, + 75.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351692741455037, + 3.1873024532831806, + 3.5226443044925047, + 4.029508466956375, + 4.619589392099331, + 5.550541198056473, + 6.814042146262791, + 8.056627959863262, + 10.05139880801134, + 11.43278144758014, + 12.497107200409115, + 14.097464432330858, + 15.281521368549646, + 18.140242661871493, + 20.76362384805913, + 21.50960462791425, + 22.182788469233323, + 22.841305804767348, + 23.351197718707613, + 23.787866043544593, + 24.16253862651432, + 24.474730785141983, + 24.70745848146393, + 24.97234952594687, + 25.153468601168125, + 25.242607953937252, + 25.387719461189857 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615422, + 1.4813847491413084, + 1.8198213217004355, + 2.111467924224729, + 2.4511928331815023, + 2.788420155234531, + 3.045024235856698, + 3.3884712787307443, + 3.6182240317806964, + 3.803436277752717, + 4.105078189992773, + 4.348974011996982, + 5.044860362646825, + 5.872425542893354, + 6.1558918858188605, + 6.440310259087575, + 6.750463607201504, + 7.0198801202480645, + 7.27396449731252, + 7.515638731088625, + 7.738504282707284, + 7.919733069115612, + 8.147196797865918, + 8.319938286497868, + 8.412358510776437, + 8.57775519368268 + ], + "5._384._0.0875": [ + 3.4927498255584046, + 4.02406846524511, + 4.645155431665475, + 5.628481169134668, + 6.754512120413066, + 8.479723446418094, + 10.728457058692872, + 12.841568491432962, + 16.027644685848703, + 18.094229751389616, + 19.611271364943153, + 21.7711435350478, + 23.284613336030652, + 26.68314434494589, + 29.556748852125633, + 30.341390391166236, + 31.041687279671475, + 31.720017808261765, + 32.24202443622861, + 32.68727538068867, + 33.06859197479743, + 33.3861220631042, + 33.62266374256871, + 33.892164088160285, + 34.07619671659248, + 34.166590013274906, + 34.313393480030165 + ], + "5._48._0.075": [ + 1.526846324373138, + 1.8679037053125451, + 2.162243131656477, + 2.5060808691434553, + 2.800135037682756, + 3.14335407371951, + 3.5130939817079923, + 3.8614113659500298, + 4.45165188034301, + 4.888564391460232, + 5.2432688670148355, + 5.813424671765329, + 6.265904630273835, + 7.50898765026281, + 8.896936880238634, + 9.35142586403312, + 9.793375012110701, + 10.259425000712909, + 10.649185231742113, + 11.003945136979993, + 11.327864785764323, + 11.613669114871414, + 11.836513935459694, + 12.101670657030033, + 12.291058651492893, + 12.38729903703484, + 12.548615268802049 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235637871645, + 2.8519155348683256, + 3.2003391847898053, + 3.524955732329983, + 4.006045470839874, + 4.67024970210011, + 5.342330930364109, + 6.464943684140905, + 7.2751333276651176, + 7.919910973166536, + 8.930264171933345, + 9.710444383930534, + 11.741657914792011, + 13.824945005644127, + 14.464987999430377, + 15.062896693602873, + 15.667738732635277, + 16.15085761825457, + 16.573741976041052, + 16.943879988234944, + 17.257236158772557, + 17.493244031493642, + 17.763966592199523, + 17.950510633403983, + 18.042898852054847, + 18.19407779370646 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_18": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 85.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 65.0 + ], + [ + 0.0, + 70.0 + ], + [ + 0.0, + 75.0 + ], + [ + 0.0, + 80.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169465726248, + 3.1873176079967864, + 3.522768158428889, + 4.030022545657789, + 4.620796670811471, + 5.553549382687687, + 6.821322333752698, + 8.070452055446216, + 10.08121884669198, + 11.477976530533802, + 12.556776926505263, + 14.183576017489546, + 15.391184401967111, + 18.32118572594113, + 21.029522030265593, + 21.80311085507863, + 22.502099383461395, + 23.186645427536554, + 23.717027783680027, + 24.171516720884682, + 24.561548943165402, + 24.886547636493827, + 25.128857530011732, + 25.40463166348468, + 25.593241356434735, + 25.686101401774227, + 25.83735562871565 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833184628, + 2.788420199323212, + 3.0450269436504263, + 3.388530710767452, + 3.6184020933561056, + 3.803752644486536, + 4.105677836437677, + 4.3498555126792775, + 5.0469251026111595, + 5.87692363274918, + 6.161544459669996, + 6.447327756977027, + 6.75923404393901, + 7.030436313497397, + 7.286463707549459, + 7.530269358024573, + 7.755401840427612, + 7.938740712450672, + 8.169307517265793, + 8.3449124763787, + 8.439154834432694, + 8.60869565293714 + ], + "5._384._0.0875": [ + 3.4929059385796934, + 4.024661659802311, + 4.6465233890154565, + 5.631893975763957, + 6.76181958163837, + 8.496706493281867, + 10.765396807377542, + 12.905493718681806, + 16.149045442528646, + 18.26507224000508, + 19.824613760976657, + 22.053461036525306, + 23.62100134050642, + 27.15341431570023, + 30.149584912309006, + 30.968651261925096, + 31.69958530983101, + 32.4075096473861, + 32.95205374071, + 33.416503908541905, + 33.81411427783453, + 34.145091877780565, + 34.39163704865321, + 34.67247477576294, + 34.86426487180418, + 34.958485985810185, + 35.11156497845992 + ], + "5._48._0.075": [ + 1.5268463243731414, + 1.8679037053125422, + 2.1622431316564774, + 2.5060808691583176, + 2.8001350770199362, + 3.143360483805183, + 3.5131927274599737, + 3.861744049285168, + 4.452600888428702, + 4.8901655087133085, + 5.245561661018292, + 5.817202077656353, + 6.271220773963252, + 7.520486233206658, + 8.91930020119685, + 9.3784678754228, + 9.825616754736322, + 10.297933735761285, + 10.693688852665867, + 11.054599040480245, + 11.384851716772966, + 11.676948690582986, + 11.905271238453478, + 12.177751876895336, + 12.373104211247792, + 12.47269119505517, + 12.64022408360517 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.5553235638493423, + 2.851915624592008, + 3.20034923070598, + 3.5250524651899955, + 4.006486884205268, + 4.671458344558271, + 5.344748188433449, + 6.470717908269878, + 7.284511397412325, + 7.932937902535235, + 8.950551837910844, + 9.737701504183917, + 11.793365742230662, + 13.91309139744491, + 14.56749883324282, + 15.180221498959932, + 15.80159710693723, + 16.299140371759243, + 16.73560622510747, + 17.1183692814907, + 17.44296196333292, + 17.687787419095894, + 17.968957112850507, + 18.162962233682734, + 18.259153589327656, + 18.416746902683837 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_19": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 90.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 65.0 + ], + [ + 0.0, + 70.0 + ], + [ + 0.0, + 75.0 + ], + [ + 0.0, + 80.0 + ], + [ + 0.0, + 85.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351696381489475, + 3.187331247244331, + 3.522879628094368, + 4.030485260989801, + 4.621883528236969, + 5.5562586041445785, + 6.827883868935236, + 8.0829227492461, + 10.10817348058246, + 11.518887995782942, + 12.610857305867967, + 14.261794491920249, + 15.490982903606458, + 18.486890848177342, + 21.27524290055822, + 22.075217564411286, + 22.79899690216306, + 23.508677866634827, + 24.058928811787144, + 24.530752445449544, + 24.935759039995762, + 25.27326308304443, + 25.52494094031748, + 25.81136254313875, + 26.007309089179795, + 26.103817798257655, + 26.26110485600641 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413081, + 1.8198213217004349, + 2.111467924224728, + 2.4511928331874406, + 2.788420239003021, + 3.0450293806648396, + 3.388584199733048, + 3.61856235102255, + 3.8040373844877826, + 4.106217572875672, + 4.350649001745673, + 5.048784309934619, + 5.880976137282247, + 6.166638007345737, + 6.453652707219121, + 6.76714144285774, + 7.039956908429579, + 7.297740911387079, + 7.543475229133343, + 7.770661079327487, + 7.9559131325586, + 8.189297331332284, + 8.367506468556101, + 8.463410563965729, + 8.6367695255584 + ], + "5._384._0.0875": [ + 3.4930464522311486, + 4.0251956129702995, + 4.647754966374073, + 5.634967889203647, + 6.768405651893354, + 8.512034274458312, + 10.798812847760658, + 12.963460437253728, + 16.259604942294, + 18.421227173825862, + 20.0202745641625, + 22.313862879155668, + 23.932687116107356, + 27.59368924040333, + 30.709175049333716, + 31.561947730117275, + 32.322912396036294, + 33.059867398547134, + 33.62651796673938, + 34.10980444942436, + 34.52339402462115, + 34.867552962236836, + 35.12390319420058, + 35.4158495839016, + 35.615242541645536, + 35.71321690512463, + 35.87245455100154 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.8679037053125411, + 2.162243131656476, + 2.506080869171695, + 2.800135112423392, + 3.1433662528828585, + 3.513281599225716, + 3.8620434788505826, + 4.4534551848322055, + 4.8916070354753005, + 5.247626182431149, + 5.820604350358829, + 6.276010151896673, + 7.530856972178744, + 8.939503415742223, + 9.402911056026577, + 9.85477877726553, + 10.332792114674596, + 10.734005693844463, + 11.100526205283005, + 11.436571650244673, + 11.73444711214481, + 11.96782507607399, + 12.24711640955177, + 12.448078329935816, + 12.550845968751332, + 12.72436438717535 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235639052976, + 2.8519157053433237, + 3.2003582720321653, + 3.525139525340661, + 4.006884186344145, + 4.672546438129151, + 5.34692490397004, + 6.475920810803008, + 7.29296574840469, + 7.944687067700373, + 8.968866757948495, + 9.762327690366131, + 11.840218549473374, + 13.993235484520799, + 14.660845038793274, + 15.287250891468323, + 15.923986020049428, + 16.43502723918104, + 16.884287117989075, + 17.27902652336799, + 17.614350943894223, + 17.86764880699717, + 18.158916083852937, + 18.360175580920764, + 18.460080464357947, + 18.623963609776702 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_20": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 95.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 65.0 + ], + [ + 0.0, + 70.0 + ], + [ + 0.0, + 75.0 + ], + [ + 0.0, + 80.0 + ], + [ + 0.0, + 85.0 + ], + [ + 0.0, + 90.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351697941504477, + 3.1873435875202447, + 3.5229804825177644, + 4.030903944525868, + 4.622867125782075, + 5.558711320280082, + 6.833828155475075, + 8.09422950428922, + 10.132656704592778, + 11.556097065608407, + 12.660098250657862, + 14.333157232911486, + 15.582185555915066, + 18.639156510677417, + 21.50288230009914, + 22.328063763091006, + 23.075647538331218, + 23.80958879004111, + 24.37909959343076, + 24.86778304069427, + 25.2873894444591, + 25.637107985728697, + 25.897948083011574, + 26.19479237165394, + 26.397929710025746, + 26.498018881797105, + 26.661235050835412 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413081, + 1.8198213217004342, + 2.111467924224728, + 2.4511928331899866, + 2.788420274903803, + 3.045031585582693, + 3.388632594619658, + 3.618707347889678, + 3.80429501450874, + 4.10670595044867, + 4.351367033462482, + 5.050467218811419, + 5.884646141325763, + 6.171251549309183, + 6.4593828058554905, + 6.774307212887237, + 7.048587163518451, + 7.307966949345673, + 7.555454777374308, + 7.784509222372123, + 7.971503860657982, + 8.207457469038998, + 8.388044817057763, + 8.485469502766492, + 8.662351404674359 + ], + "5._384._0.0875": [ + 3.493173593371938, + 4.025678777194492, + 4.648869590162662, + 5.637750999768404, + 6.774372127289396, + 8.525937523492683, + 10.829186276733859, + 13.01626455228017, + 16.360714448268862, + 18.564486562192773, + 20.20030696762772, + 22.554689844325853, + 24.22214450090069, + 28.006583963982013, + 31.238181556854137, + 32.12395587790811, + 32.91436054407893, + 33.67980162249482, + 34.26814484645945, + 34.76992034939945, + 35.19918924919997, + 35.55627649719676, + 35.82224333348776, + 36.12508142866526, + 36.33193071892627, + 36.43358771605631, + 36.598873426443596 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.867903705312543, + 2.1622431316564787, + 2.5060808691837977, + 2.8001351444550906, + 3.143371472525031, + 3.5133620074945524, + 3.8623144032038543, + 4.454228274101159, + 4.892911699635908, + 5.2494949050648305, + 5.823684727376988, + 6.280347361038596, + 7.54025803973807, + 8.957845035917959, + 9.425112784889382, + 9.881282127752211, + 10.364495627407171, + 10.77069988531026, + 11.142358063488798, + 11.483720026716318, + 11.786915849235744, + 12.024967884189907, + 12.310597884589958, + 12.51683508903163, + 12.622623936340485, + 12.801901725637777 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.5553235639559277, + 2.851915778404035, + 3.2003664522810014, + 3.5252182945191506, + 4.007243674765673, + 4.673531161262557, + 5.348895279806077, + 6.480633186179699, + 7.300626446154487, + 7.955337664218343, + 8.98548329446479, + 9.784686242173601, + 11.882869466376254, + 14.066419965876667, + 14.746194962835919, + 15.38526389884884, + 16.036284764459175, + 16.559963498353536, + 17.02127572226336, + 17.427372735072662, + 17.772942242720223, + 18.03437711972676, + 18.33540099703631, + 18.54371341254057, + 18.647244719178495, + 18.81729740660611 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835163554103729, + 3.1868499795100256, + 3.5189471871417144, + 4.014291734689392, + 4.585729983426826, + 5.4783782331097886, + 6.664875308975525, + 7.78095954436287, + 9.422622271115944, + 10.444946568635388, + 11.174586733117547, + 12.190679309604377, + 12.887629509317616, + 14.432466371861755, + 15.72804732473775, + 16.081392778821243, + 16.398108012781965, + 16.706154923196785, + 16.94478515960347, + 17.148634374775696, + 17.324044660244187, + 17.470751596521854, + 17.580134119683894, + 17.70503746479188, + 17.790288291349594, + 17.832098064054087, + 17.899737843068284 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.111467924224727, + 2.4511928330881467, + 2.788418838872571, 3.04494338890382, 3.3866968888704605, 3.612910916227809, @@ -2594,91 +6650,2311 @@ 7.911051827069974 ], "5._384._0.0875": [ - 3.4880902775716516, - 4.0065619525134215, - 4.607298279466111, - 5.548353958156116, - 6.604415106939941, - 8.13860019568434, - 9.938536968136697, - 11.427377002248585, - 13.383231984894984, - 14.512099196220316, - 15.29057972183952, - 16.347765426714993, - 17.06050692000972, - 18.619290778574012, - 19.916053673254428, - 20.2686496512593, - 20.584999002677907, - 20.892732872471324, - 21.13131773958098, - 21.335112938000275, - 21.510606445342315, - 21.65749717959913, - 21.767018104919572, - 21.892162864981678, - 21.977544756334243, - 22.019389460008043, - 22.08703090750865 + 3.4880902775716516, + 4.0065619525134215, + 4.607298279466111, + 5.548353958156116, + 6.604415106939941, + 8.13860019568434, + 9.938536968136697, + 11.427377002248585, + 13.383231984894984, + 14.512099196220316, + 15.29057972183952, + 16.347765426714993, + 17.06050692000972, + 18.619290778574012, + 19.916053673254428, + 20.2686496512593, + 20.584999002677907, + 20.892732872471324, + 21.13131773958098, + 21.335112938000275, + 21.510606445342315, + 21.65749717959913, + 21.767018104919572, + 21.892162864981678, + 21.977544756334243, + 22.019389460008043, + 22.08703090750865 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656476, + 2.506080868699681, + 2.800133863187092, + 3.1431626871705314, + 3.5101461072512348, + 3.8515072619323156, + 4.424504911378015, + 4.845886343624489, + 5.186331552272661, + 5.729058529452128, + 6.1543553311536385, + 7.279215244517337, + 8.425007491615851, + 8.768101772829569, + 9.08648777576615, + 9.405485053350356, + 9.65874977692766, + 9.87854736747751, + 10.070275097983433, + 10.232270081471812, + 10.353782216544758, + 10.493043905742333, + 10.588509080770054, + 10.635513887026178, + 10.711792810255785 + ], + "5._96._0.075": [ + 2.2092619209324718, + 2.555305550299043, + 2.8518822502007706, + 3.1999812074434986, + 3.5219640505521346, + 3.9927079992711505, + 4.635768436942492, + 5.280652168885683, + 6.338984165530696, + 7.079120833009518, + 7.647405762106008, + 8.493199493397391, + 9.106886336359855, + 10.549497600871693, + 11.821945288975535, + 12.176179524294474, + 12.495306427173027, + 12.807191058501216, + 13.049579738950227, + 13.257119802438721, + 13.435959943893337, + 13.585663292927912, + 13.697375965540715, + 13.824926149001566, + 13.912078874142695, + 13.95487960916011, + 14.02423056578889 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516472411039, + 3.1869425304997336, + 3.519703336588499, + 4.017409124634149, + 4.592792127320395, + 5.494435370274548, + 6.702922623181757, + 7.859047111999608, + 9.601273766609378, + 10.709893884541724, + 11.510288742748434, + 12.634631898016757, + 13.410995173686615, + 15.140112325896753, + 16.59431376284061, + 16.991218622233816, + 17.346724733781354, + 17.692319667585423, + 17.959786862066252, + 18.188220856046517, + 18.384643002748486, + 18.54880887859812, + 18.671188673718667, + 18.810869505477182, + 18.906212251366096, + 18.952983693185324, + 19.0286924400906 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247267, + 2.451192833107243, + 2.788419108128426, + 3.044959925775519, + 3.387059821765704, + 3.613997664863135, + 3.7959470723593096, + 4.09111167742486, + 4.329038708345258, + 5.004506770243227, + 5.800396675051319, + 6.069930680934847, + 6.337044137013024, + 6.623399632901891, + 6.866397000242412, + 7.089548465426775, + 7.294940305254195, + 7.477122120182745, + 7.619155348518463, + 7.7880816786592515, + 7.907676077545279, + 7.967812952154061, + 8.067196242249718 + ], + "5._384._0.0875": [ + 3.489041966728529, + 4.0101492446674785, + 4.615228891631927, + 5.566384478985521, + 6.642584303912649, + 8.23605088452842, + 10.158307320185152, + 11.785471693976609, + 13.957916675535065, + 15.2235651708415, + 16.099466100365742, + 17.290954676319654, + 18.09508402875218, + 19.852744524299638, + 21.313164415062523, + 21.70999507573438, + 22.065750787889225, + 22.41159715450544, + 22.679499567017082, + 22.908294539148603, + 23.10520435766242, + 23.269936461997787, + 23.392750503414597, + 23.53304715405481, + 23.628776387136153, + 23.675702827788015, + 23.751593525065417 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808687904528, + 2.800134103424843, + 3.1432018343696826, + 3.510749037532128, + 3.8535335425120447, + 4.430128801236172, + 4.854966963284894, + 5.198834780785669, + 5.748826061535993, + 6.182200108369144, + 7.344326849292377, + 8.559766854482477, + 8.930536691975924, + 9.277137603746795, + 9.626775473927715, + 9.905883724809348, + 10.149145007609818, + 10.36200401620384, + 10.542263530840383, + 10.677700598499671, + 10.833061729053647, + 10.939691930072817, + 10.992253400925039, + 11.077649233553439 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.555323562310494, + 2.851913403930866, + 3.2001005947998324, + 3.522658579337796, + 3.9956263916358847, + 4.643473862001433, + 5.295314181512427, + 6.373564059926124, + 7.138360360544258, + 7.733580791206114, + 8.633729955517238, + 9.297305182392362, + 10.888688183108068, + 12.31939479443607, + 12.720736736508375, + 13.083024543099366, + 13.437593746774013, + 13.71333786799934, + 13.94943383896836, + 14.152804847143246, + 14.322925976753803, + 14.449783003015684, + 14.594457028247186, + 14.693237854773255, + 14.741735431737363, + 14.820299846760408 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835165634116244, + 3.1870145147626947, + 3.5202914866756445, + 4.019835092963688, + 4.598294182607634, + 5.506896106489162, + 6.73052318189818, + 7.912467871582121, + 9.72589580529215, + 10.902232580140291, + 11.76142065486081, + 12.9799690921601, + 13.828042683727714, + 15.729161808737246, + 17.335268784211628, + 17.774271586490865, + 18.167299156061734, + 18.549238157332137, + 18.844598738042702, + 19.096815892578494, + 19.313543986957356, + 19.494562987623265, + 19.629486165894264, + 19.783415524175574, + 19.888490968713953, + 19.940050441967127, + 20.023555387690887 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.4511928331220942, + 2.788419317549646, + 3.044972787788615, + 3.387342106904053, + 3.6148429816023104, + 3.7974462638006634, + 4.093924921592454, + 4.33310344191535, + 5.013283589828823, + 5.817782417116992, + 6.091545425842375, + 6.364002312388974, + 6.657722620844377, + 6.908716725258545, + 7.140907237709026, + 7.3563326758075025, + 7.549010897004276, + 7.700417847978584, + 7.882005131312982, + 8.011698348280834, + 8.07732390690613, + 8.186450552241064 + ], + "5._384._0.0875": [ + 3.48978252870838, + 4.01294168617726, + 4.621409737185993, + 5.580334801027355, + 6.670318980665449, + 8.302545592063366, + 10.31394184021751, + 12.053732907941635, + 14.417465391896503, + 15.80993111970759, + 16.77799713899045, + 18.09818832224131, + 18.99067491818022, + 20.94158614166768, + 22.561393965004953, + 23.001316849199963, + 23.395409373721648, + 23.77829362345485, + 24.074637879081667, + 24.327676476764193, + 24.54532876803464, + 24.72732070710507, + 24.86299155213012, + 25.01793307141577, + 25.123664603086283, + 25.175505367009382, + 25.259381035739203 + ], + "5._48._0.075": [ + 1.5268463243731403, + 1.8679037053125447, + 2.1622431316564747, + 2.506080868861052, + 2.800134290276426, + 3.143232282208475, + 3.511218001064851, + 3.8551099766652253, + 4.434508562320669, + 4.8620406770384585, + 5.208542456427525, + 5.763852818580707, + 6.202674770697162, + 7.388879023236523, + 8.653549099750002, + 9.045795218652303, + 9.415151038522362, + 9.790454546878507, + 10.091929979349173, + 10.356032511845594, + 10.588068848893775, + 10.785198413726444, + 10.933669029420406, + 11.10426766775149, + 11.221569889572363, + 11.279479298301718, + 11.37370478468064 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235626058273, + 2.851913830118357, + 3.200148312708098, + 3.523117984324703, + 3.997713443588236, + 4.648975825738677, + 5.305558567767291, + 6.395724376623285, + 7.174022364925206, + 7.7842960088155895, + 8.716676351312, + 9.412201143144728, + 11.107676164998207, + 12.661029243171718, + 13.100667060069881, + 13.498459445509948, + 13.888500148954629, + 14.192107875894575, + 14.452267138883512, + 14.676390877488986, + 14.863844300867298, + 15.003635090833797, + 15.162997827519565, + 15.271830446192585, + 15.32528603574343, + 15.411940391266077 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351663621213476, + 3.1870721022737705, + 3.520762028072392, + 4.021776707106985, + 4.602701379425714, + 5.516895320729015, + 6.752416493474914, + 7.953137727203884, + 9.81883264878891, + 11.048318939018987, + 11.955935890018308, + 13.25556144765417, + 14.167705246850145, + 16.228183948976074, + 17.979371151576828, + 18.459035923476232, + 18.88837134802076, + 19.305527303837838, + 19.627914082259856, + 19.903183981117593, + 20.13958070089098, + 20.336909508975214, + 20.483970170129076, + 20.651676401188716, + 20.766165133520005, + 20.822358589612076, + 20.913418264771746 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.451192833133977, + 2.7884194850866217, + 3.0449830774002096, + 3.3875679375332597, + 3.615519277709283, + 3.7986458056921144, + 4.09617654659847, + 4.336357802956161, + 5.020320937756365, + 5.831647067747798, + 6.108571604976713, + 6.384898024172815, + 6.6838521863624285, + 6.940545133037418, + 7.179288122894562, + 7.402205253906631, + 7.603006146711512, + 7.761932827049879, + 7.9541073637389195, + 8.092636625248517, + 8.16322087404529, + 8.281438116593483 + ], + "5._384._0.0875": [ + 3.4903752046787764, + 4.015177107660148, + 4.626361860766751, + 5.591532601268441, + 6.692329186314433, + 8.352759110740948, + 10.430657256886867, + 12.261635160900303, + 14.792527011528106, + 16.301536654412992, + 17.35621270848946, + 18.79917973511907, + 19.776861265130105, + 21.91541315292656, + 23.690588904865486, + 24.1725551363065, + 24.604008758319218, + 25.022955541483253, + 25.346949118016603, + 25.623547825218424, + 25.861333956995235, + 26.06006072276188, + 26.208194543277866, + 26.37732333379044, + 26.492745806698906, + 26.549349850068555, + 26.640972162041617 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.5060808689175356, + 2.800134439757692, + 3.143256640490363, + 3.5115931830794134, + 3.856371400101421, + 4.438015845543513, + 4.867708801573733, + 5.216324289383681, + 5.775883677547704, + 6.218945420061054, + 7.422787553543587, + 8.723431483738334, + 9.132330349511395, + 9.519916256558748, + 9.916486305305636, + 10.237093174438648, + 10.519492789617704, + 10.768754770173295, + 10.981336755114539, + 11.141931285695081, + 11.326897525151242, + 11.454384108001973, + 11.517438552524153, + 11.620221865575353 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235628420947, + 2.85191417106835, + 3.2001864870656878, + 3.523485519269141, + 3.9993836543846673, + 4.653383089429759, + 5.313774307764784, + 6.413405840031446, + 7.201749149251708, + 7.822822269106146, + 8.778486940566422, + 9.497894825670153, + 11.276787922769273, + 12.937485317219407, + 13.412161639654101, + 13.842926754804644, + 14.26632351988241, + 14.596375369272456, + 14.87952041978683, + 15.123557174936245, + 15.327692912673553, + 15.479958916081756, + 15.653505414115946, + 15.772062907850747, + 15.830324368858253, + 15.924837218418915 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835166957762167, + 3.1871192193948668, + 3.521147030588963, + 4.023365855769714, + 4.606310940165794, + 5.525096077645807, + 6.770391142562251, + 7.986042699811531, + 9.892112786075876, + 11.163902147050683, + 12.111465672849134, + 13.48056030789603, + 14.449555367836037, + 16.656787810462436, + 18.546146394735505, + 19.065046675915433, + 19.5295118394173, + 19.980811248654252, + 20.329413404552668, + 20.62705933613929, + 20.8825401506822, + 21.095684187185995, + 21.2545140207822, + 21.43557063739664, + 21.559184702817824, + 21.619873600047498, + 21.718271332519198 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.4511928331436974, + 2.78841962216233, + 3.0449914961740716, + 3.387752709713218, + 3.6160726391301194, + 3.799627373851638, + 4.098019466223334, + 4.339022164883762, + 5.026089016311255, + 5.843025749897209, + 6.122511181142527, + 6.4019122111470415, + 6.7049361450435505, + 6.965989181006566, + 7.209726197395946, + 7.4384085529362025, + 7.645587349571558, + 7.81056953930006, + 8.011563926347089, + 8.157764117718944, + 8.232792369046889, + 8.359440086841845 + ], + "5._384._0.0875": [ + 3.4908602711376626, + 4.017007060343796, + 4.630418518734446, + 5.600719320318877, + 6.7104006757125045, + 8.393173694719513, + 10.522679219410904, + 12.427896779717049, + 15.104115516936615, + 16.71951061233635, + 17.85510718415472, + 19.414696478353736, + 20.47429707090317, + 22.79485661070918, + 24.721560615391446, + 25.244593098723108, + 25.712505733738077, + 26.16661849638015, + 26.51753550213607, + 26.817069134413916, + 27.0744330767305, + 27.289415417042395, + 27.449652814451767, + 27.63255140014591, + 27.757380842709296, + 27.818610444859768, + 27.91776220458523 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.5060808689637457, + 2.8001345620605465, + 3.143276570000902, + 3.511900157579723, + 3.857403656409155, + 4.440887740469782, + 4.872352417154855, + 5.222702299058051, + 5.785751827925583, + 6.232285364243805, + 7.4502069278635465, + 8.778492850153363, + 9.200489254204507, + 9.602764699300245, + 10.016930843385225, + 10.353819440694467, + 10.652169284801147, + 10.916788873079446, + 11.143427718117584, + 11.315235803106502, + 11.513695706451749, + 11.650880846692381, + 11.718880137505964, + 11.829958390339796 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323563035405, + 2.851914450027434, + 3.2002177206514735, + 3.5237862369213273, + 4.000750566974023, + 4.6569927973451, + 5.320509145779349, + 6.4279243457626905, + 7.224374723972429, + 7.853907757352516, + 8.82749585659016, + 9.565380698389191, + 11.411689270809376, + 13.165799469304833, + 13.672330990699809, + 14.133534778488041, + 14.588148323208204, + 14.943212146582484, + 15.24826601523186, + 15.511390050300962, + 15.73158148818639, + 15.895887742129343, + 16.08314800606583, + 16.211130274537435, + 16.274059390205185, + 16.37622255045148 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_9": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351674541297, + 3.1871584837082283, + 3.52146787571422, + 4.0246905282102015, + 4.60932143502273, + 5.531943351639104, + 6.785428374627892, + 8.013510600409592, + 9.952294474233781, + 11.258481851885426, + 12.23927474501827, + 13.66794160397303, + 14.687208939074498, + 17.028967945059794, + 19.04955715399058, + 19.606269405825813, + 20.10470921730931, + 20.5891168477267, + 20.9631662880102, + 21.282553323896465, + 21.55657563714039, + 21.785079554548453, + 21.955340659498052, + 22.149357935580475, + 22.28183503282075, + 22.346893495202472, + 22.452432882029257 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224729, + 2.4511928331517994, + 2.7884197363920866, + 3.044998511819466, + 3.3879066876746586, + 3.6165337930645034, + 3.80044543311818, + 4.099555700870579, + 4.341243637790964, + 5.0309027823536, + 5.852535069272208, + 6.134160983997162, + 6.416117362843587, + 6.722488349455069, + 6.987074653247859, + 7.234814288411437, + 7.4681018358312965, + 7.680408000426016, + 7.8503273945400025, + 8.058691355984534, + 8.211527146637474, + 8.2905156157682, + 8.424941791698874 + ], + "5._384._0.0875": [ + 3.491264596187594, + 4.018532689206082, + 4.633802454515131, + 5.608391698701361, + 6.725518719914447, + 8.426857411756169, + 10.598098041516069, + 12.564535637626992, + 15.367008664895923, + 17.079064120997693, + 18.28990617973524, + 19.95984351633297, + 21.09800001484415, + 23.59489394767675, + 25.669420064177366, + 26.232598209324, + 26.736127256127805, + 27.224573816208196, + 27.60174330600742, + 27.92363490237817, + 28.200064294397183, + 28.430861056309578, + 28.602871323916727, + 28.799155706662678, + 28.933131024231407, + 28.998859604438916, + 29.105341294194215 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125465, + 2.1622431316564765, + 2.5060808690022545, + 2.8001346639795908, + 3.143293177931286, + 3.512155974749208, + 3.8582639955460003, + 4.443282568578982, + 4.876226267977439, + 5.228024926636167, + 5.793993008915238, + 6.243431441621082, + 7.473083019614888, + 8.823668370071488, + 9.25620804738432, + 9.670486089623353, + 10.099295520676005, + 10.450047862476376, + 10.76226251935219, + 11.040512402117828, + 11.27987376497623, + 11.462003441358267, + 11.673087994206565, + 11.819487755447629, + 11.8922331591405, + 12.011349004069471 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235631964957, + 2.8519146824933417, + 3.20024374865371, + 3.5240368399445527, + 4.001889919703756, + 4.660003478688166, + 5.326130327712424, + 6.440062097564278, + 7.243285994602833, + 7.879802769439634, + 8.867943170061805, + 9.620685386152587, + 11.522336511758247, + 13.357604402388839, + 13.892967432048215, + 14.382135214550031, + 14.865838619494257, + 15.24448126332768, + 15.57036817374082, + 15.851762402516755, + 16.087398562047333, + 16.26332710083277, + 16.463857554001923, + 16.60098513421195, + 16.66845446460825, + 16.77807788870012 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_10": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516787413314, + 3.187191707390499, + 3.5217393669350265, + 4.025811676135386, + 4.611870573161968, + 5.53774666743074, + 6.798192715388055, + 8.036854195885505, + 10.003103886820321, + 11.337924975740851, + 12.346708940564692, + 13.826694991292879, + 14.890392460784529, + 17.355087368443666, + 19.499998523319654, + 20.093101513303825, + 20.624376627943196, + 21.14088523708773, + 21.539646961340225, + 21.880173477942208, + 22.172228815883738, + 22.41566961623693, + 22.59704931536428, + 22.803668207290116, + 22.94476748347389, + 23.01408023853873, + 23.126581858402503 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.451192833158653, + 2.7884198330480356, + 3.045004448135161, + 3.388036977531837, + 3.6169240140272074, + 3.801137698038885, + 4.1008559243108405, + 4.34312417765957, + 5.034980972109767, + 5.860600279136224, + 6.144044727702163, + 6.428171019722437, + 6.7373762132165425, + 7.0049324471479455, + 7.256007099376388, + 7.49310305956485, + 7.709641067555297, + 7.883655784258574, + 8.09822625965344, + 8.25680246841747, + 8.33930819217795, + 8.4808819282058 + ], + "5._384._0.0875": [ + 3.4916067905462156, + 4.019824080703017, + 4.636668192746558, + 5.614895640940676, + 6.738351505537287, + 8.455491250530091, + 10.661656113686563, + 12.679414304937966, + 15.59185197198164, + 17.39148825779149, + 18.67204080560014, + 20.44603744186541, + 21.659331425952477, + 24.32684488857537, + 26.54558814858763, + 27.148036794632894, + 27.686388779455644, + 28.208390827854437, + 28.61118824732381, + 28.954901666625496, + 29.249921264782753, + 29.496123770756903, + 29.6796006750872, + 29.888915444719963, + 30.031795096396984, + 30.101905603438674, + 30.21553283335788 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.5060808690348386, + 2.800134750218786, + 3.143307230798961, + 3.5123724390424327, + 3.8589920639723307, + 4.4453100859682575, + 4.879507106858273, + 5.232534106804149, + 5.800978922858059, + 6.252884384653826, + 7.492515121921766, + 8.861767233088425, + 9.303018723948139, + 9.727282729356293, + 10.16840782442275, + 10.531020074403422, + 10.855294623394027, + 11.145619222037533, + 11.396458039795252, + 11.58805283381493, + 11.810908872945866, + 11.966043061014735, + 12.043337017337477, + 12.1702368050359 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323563332806, + 2.851914879195259, + 3.2002657723579073, + 3.524248892192481, + 4.002854171279338, + 4.662552820127489, + 5.330892983890187, + 6.450359607520108, + 7.259342795858092, + 7.901782443271652, + 8.90216606057877, + 9.66726708677855, + 11.615207704918681, + 13.521102987552423, + 14.082488865716087, + 14.59725638674436, + 15.10797112289584, + 15.508774238414722, + 15.854424561207423, + 16.153279257943076, + 16.40376048018958, + 16.590906089447703, + 16.80428371788992, + 16.95029352042053, + 17.022184217942563, + 17.13909243329969 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351656341162452, + 3.1870145147626974, + 3.52029148667567, + 4.019835093017707, + 4.5982936958752845, + 5.5069711231041305, + 6.732856648502025, + 7.921843283659013, + 9.751252336543244, + 10.937949457944962, + 11.803810763333674, + 13.030085671186802, + 13.882247595182367, + 15.789154273241033, + 17.397423190906295, + 17.836713667778135, + 18.22992056086585, + 18.611973711107705, + 18.907390194405757, + 19.159639444194557, + 19.37638567560696, + 19.55741533979612, + 19.692344607372505, + 19.846281147124184, + 19.951360171056265, + 20.002920665455477, + 20.086426165369282 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.451192833122094, + 2.788419317549644, + 3.044972787788615, + 3.387342106904055, + 3.6148429816023158, + 3.7974462638003725, + 4.093924920426126, + 4.333103496437159, + 5.013306910761229, + 5.818776402913868, + 6.093626438407932, + 6.367602838347201, + 6.663433786692135, + 6.9165238361402075, + 7.150815194090501, + 7.368218463676161, + 7.562596393540276, + 7.715228084652988, + 7.898056909693774, + 8.028413669395082, + 8.094286262487623, + 8.203659924602803 + ], + "5._384._0.0875": [ + 3.4897825285162716, + 4.012941689162447, + 4.621408914553352, + 5.5804680548945775, + 6.672609120789035, + 8.31509118799391, + 10.344732940730454, + 12.098911719604803, + 14.476641313448162, + 15.87436363801686, + 16.84503143949367, + 18.167681280211, + 19.06128493020748, + 21.01360346286259, + 22.633944058823158, + 23.073950798692806, + 23.46811627235861, + 23.85106778822409, + 24.14746670484337, + 24.40055223560015, + 24.618248421060102, + 24.800280536523264, + 24.935982465719608, + 25.090962451665916, + 25.196720717693957, + 25.24857444671522, + 25.332470394268455 + ], + "5._48._0.075": [ + 1.5268463243731403, + 1.8679037053125447, + 2.1622431316564747, + 2.5060808688610523, + 2.8001342902764255, + 3.143232282208476, + 3.5112180010648584, + 3.8551099766951262, + 4.434508445015713, + 4.862044168289376, + 5.2085862251099835, + 5.76427186474273, + 6.204030023936915, + 7.396608078479404, + 8.67243421921375, + 9.068108653611503, + 9.440488857096849, + 9.818513912853351, + 10.121840924076693, + 10.387285417655814, + 10.620257980195246, + 10.81799007145421, + 10.966794134425063, + 11.137640764253641, + 11.255032830215635, + 11.312961151069707, + 11.407180498632554 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235626058273, + 2.8519138301183564, + 3.2001483127080967, + 3.5231179843247027, + 3.9977134437346464, + 4.648975320207692, + 5.305585007380778, + 6.39703709911218, + 7.17876659781859, + 7.793226026447637, + 8.733528438854526, + 9.435430088140752, + 11.144967976432001, + 12.706719324002064, + 13.14787586741075, + 13.546721484584156, + 13.937525543460476, + 14.241551222490221, + 14.50196549559448, + 14.72623258973888, + 14.913756060151046, + 15.05357527196797, + 15.212946759671123, + 15.3217707932991, + 15.375217236739509, + 15.461850615114354 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351663621213476, + 3.1870721022737705, + 3.520762028072415, + 4.02177670715311, + 4.602700935880571, + 5.5169614281183295, + 6.754855825756175, + 7.9645021066903565, + 9.854195714565249, + 11.10118115502487, + 12.02079017457652, + 13.33501175674585, + 14.255218116370674, + 16.327580693017115, + 18.083344353315496, + 18.56362520769094, + 18.993336351577927, + 19.41072371690533, + 19.73321459372418, + 20.0085375697826, + 20.244956310741, + 20.44229121767626, + 20.589351458110524, + 20.75705585476228, + 20.871539877317286, + 20.927729350399375, + 21.01878029962984 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331339767, + 2.78841948508662, + 3.0449830774002087, + 3.387567937533259, + 3.6155192777092866, + 3.7986458056918515, + 4.09617654554866, + 4.336357851959621, + 5.020341466937139, + 5.832650771275151, + 6.110827469116957, + 6.389042492581823, + 6.6908140178252875, + 6.9505065386722915, + 7.19243632727055, + 7.418520650316663, + 7.622186443220001, + 7.783277024147918, + 7.977759934980626, + 8.117592805144756, + 8.188682129256737, + 8.307429486277217 + ], + "5._384._0.0875": [ + 3.4903752045070484, + 4.01517711032482, + 4.6263611033013685, + 5.591651876749553, + 6.694719081848411, + 8.368450742711376, + 10.474682133299819, + 12.330889394576008, + 14.888519563366648, + 16.408157644645936, + 17.468228127586602, + 18.916370704866225, + 19.896420203285626, + 22.037916287175435, + 23.8141271476306, + 24.296236618781442, + 24.727807918401368, + 25.14685682358567, + 25.47093076905325, + 25.747597339655663, + 25.98544714069117, + 26.18423280389328, + 26.332412410977593, + 26.501598750598582, + 26.617061272271563, + 26.67368466152417, + 26.765337023877695 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.5060808689175356, + 2.8001344397576915, + 3.1432566404903644, + 3.511593183079418, + 3.856371400128268, + 4.4380157399092885, + 4.867711940849569, + 5.216364717136565, + 5.7762914554758265, + 6.220353271364668, + 7.432151663462933, + 8.749651704331555, + 9.164328082900065, + 9.557213922268762, + 9.958759768536368, + 10.282877875055014, + 10.567908594592975, + 10.81906136060472, + 11.032894679440224, + 11.194197906982616, + 11.379706010195362, + 11.5073980375971, + 11.570501022182581, + 11.673285059619554 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.555323562842096, + 2.85191417106835, + 3.200186487065689, + 3.5234855192691428, + 3.9993836545154893, + 4.653382627830734, + 5.313797205723791, + 6.4147270512273895, + 7.207138999640167, + 7.833733889835734, + 8.80089588588579, + 9.530363365014855, + 11.333631004403431, + 13.010527458583056, + 13.488289186954031, + 13.92125017587898, + 14.346267385680884, + 14.677219806295792, + 14.960918512159175, + 15.20526897204249, + 15.409558628634645, + 15.561886771503513, + 15.735450711687019, + 15.853988192816459, + 15.912229132312792, + 16.006695343389197 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5_7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835166957762168, + 3.1871192193948716, + 3.521147030588982, + 4.023365855811663, + 4.606310536861947, + 5.52515598031232, + 6.77263570135712, + 7.997135727771614, + 9.92999729441873, + 11.22337639335568, + 12.186594071393163, + 13.575682225506759, + 14.55622055701396, + 16.78124998484241, + 18.6777476399503, + 19.19763173963423, + 19.662692876376198, + 20.114355576794217, + 20.4631142308265, + 20.76083424900357, + 21.016337424101554, + 21.229477470103426, + 21.38829525631156, + 21.569333696470657, + 21.692929118913135, + 21.753606090985407, + 21.85198095262321 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.451192833143697, + 2.788419622162329, + 3.044991496174073, + 3.3877527097132187, + 3.6160726391301226, + 3.799627373851401, + 4.098019465268922, + 4.339022209436383, + 5.026107662084141, + 5.84394365642888, + 6.124615253958708, + 6.405870576751012, + 6.711776450382557, + 6.976049734270528, + 7.223365052655983, + 7.455768851660637, + 7.666468817307147, + 7.834226407494251, + 8.03832652011986, + 8.18637926757226, + 8.262155184919267, + 8.389625677058838 + ], + "5._384._0.0875": [ + 3.4908602709814938, + 4.017007062766977, + 4.630417830026466, + 5.600827344181993, + 6.712598902640248, + 8.408758874311891, + 10.570772862826624, + 12.508212812865507, + 15.2215281984994, + 16.852577250427405, + 17.996349265134604, + 19.563936321134925, + 20.6272395253978, + 22.952394754249866, + 24.8806435108924, + 25.4038691843546, + 25.871930403982354, + 26.326162794350626, + 26.677169356022667, + 26.97677662655899, + 27.234209525406104, + 27.44925629033428, + 27.609543992757892, + 27.79250697522708, + 27.91738123041389, + 27.978632345063325, + 28.07781719007702 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.506080868963746, + 2.8001345620605447, + 3.143276570000903, + 3.511900157579727, + 3.8574036564335623, + 4.440887644405855, + 4.872355272100327, + 5.222739077667298, + 5.78612399251235, + 6.233584820740342, + 7.459346614363772, + 8.806522081272087, + 9.235623772330808, + 9.644649359760043, + 10.065407998370153, + 10.407115303520149, + 10.709197465971132, + 10.976581672480844, + 11.205104488448498, + 11.378007511226459, + 11.577330362486968, + 11.71485709696196, + 11.782944591681959, + 11.894044701312799 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.5553235630354045, + 2.851914450027433, + 3.2002177206514744, + 3.523786236921332, + 4.000750567092967, + 4.656992377573533, + 5.320529911189783, + 6.4291314836706634, + 7.229489083826276, + 7.864634605008324, + 8.850712504547534, + 9.600286040890413, + 11.477377774830977, + 13.254169918700697, + 13.765261520915884, + 14.229802198271477, + 14.686930537571142, + 15.043418919595636, + 15.349359696970724, + 15.612994468594879, + 15.833441725498917, + 15.997853820564732, + 16.18514736806034, + 16.313101220540652, + 16.375999386379654, + 16.478090968077424 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5_8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351674541297003, + 3.1871584837082323, + 3.52146787571424, + 4.0246905282486605, + 4.609321065213261, + 5.531998325717638, + 6.787487949292699, + 8.0238487563053, + 9.989481499696176, + 11.319077591311201, + 12.317698404144412, + 13.77017438218582, + 14.803791011262735, + 17.168733422859315, + 19.199073920923865, + 19.757169900726925, + 20.25645054881176, + 20.741372528795203, + 21.11564089207752, + 21.435128698245556, + 21.709175878065935, + 21.937665539556512, + 22.107902023696294, + 22.301882492493917, + 22.434324955049416, + 22.49936240417745, + 22.604862805637637 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224729, + 2.4511928331517994, + 2.788419736392088, + 3.0449985118194665, + 3.387906687674658, + 3.6165337930645074, + 3.800445433117961, + 4.099555699995679, + 4.341243678633967, + 5.030919890706527, + 5.853377116489864, + 6.136096755624598, + 6.419782777248726, + 6.728889830160859, + 6.996616985495829, + 7.247952071453654, + 7.485109367973971, + 7.701214729472868, + 7.87424080184473, + 8.08623429778054, + 8.241350171265692, + 8.321296817437085, + 8.456827488978547 + ], + "5._384._0.0875": [ + 3.4912645960444038, + 4.018532691427787, + 4.633801822953173, + 5.608490835920301, + 6.727535606463814, + 8.441487696995443, + 10.645969495095851, + 12.648417773367308, + 15.495663118678907, + 17.22777343043462, + 18.449413297036923, + 20.130151629098243, + 21.27338541215285, + 23.776620012231746, + 25.853227961925917, + 26.41664872815853, + 26.920352158473378, + 27.408927825468414, + 27.786187363981664, + 28.108150094367847, + 28.384645430187533, + 28.615504325614904, + 28.787563296034193, + 28.98391142581023, + 29.117931019932204, + 29.183680652861288, + 29.290194256413553 ], "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125447, - 2.162243131656476, - 2.506080868699681, - 2.800133863187092, - 3.1431626871705314, - 3.5101461072512348, - 3.8515072619323156, - 4.424504911378015, - 4.845886343624489, - 5.186331552272661, - 5.729058529452128, - 6.1543553311536385, - 7.279215244517337, - 8.425007491615851, - 8.768101772829569, - 9.08648777576615, - 9.405485053350356, - 9.65874977692766, - 9.87854736747751, - 10.070275097983433, - 10.232270081471812, - 10.353782216544758, - 10.493043905742333, - 10.588509080770054, - 10.635513887026178, - 10.711792810255785 + 1.5268463243731443, + 1.8679037053125465, + 2.1622431316564765, + 2.506080869002255, + 2.800134663979591, + 3.143293177931286, + 3.5121559747492124, + 3.858263995568376, + 4.443282480496937, + 4.876228885958847, + 5.228058654410402, + 5.794334496496818, + 6.244625194582702, + 7.48160043592223, + 8.851153891097995, + 9.291364488655264, + 9.713156371151566, + 10.149565617736481, + 10.50605834819742, + 10.822860306552041, + 11.104609965897009, + 11.346426896965015, + 11.530022717254981, + 11.742299534963758, + 11.889190688106654, + 11.962071979519212, + 12.081243603186358 ], "5._96._0.075": [ - 2.2092619209324718, - 2.555305550299043, - 2.8518822502007706, - 3.1999812074434986, - 3.5219640505521346, - 3.9927079992711505, - 4.635768436942492, - 5.280652168885683, - 6.338984165530696, - 7.079120833009518, - 7.647405762106008, - 8.493199493397391, - 9.106886336359855, - 10.549497600871693, - 11.821945288975535, - 12.176179524294474, - 12.495306427173027, - 12.807191058501216, - 13.049579738950227, - 13.257119802438721, - 13.435959943893337, - 13.585663292927912, - 13.697375965540715, - 13.824926149001566, - 13.912078874142695, - 13.95487960916011, - 14.02423056578889 + 2.2092718103274063, + 2.5553235631964974, + 2.851914682493343, + 3.2002437486537096, + 3.5240368399445585, + 4.0018899198128, + 4.66000309376343, + 5.326149378688731, + 6.441169505011087, + 7.248012157890372, + 7.889843384642584, + 8.890265690745448, + 9.655071845999691, + 11.590783665680481, + 13.453650272958416, + 13.994870639325233, + 14.488443699399046, + 14.975542790043782, + 15.35615006871103, + 15.68327938298829, + 15.96540337978114, + 16.20141496534739, + 16.37750412410574, + 16.578093541273176, + 16.715189773758574, + 16.782620074382894, + 16.892150155562007 ] }, "logtime": [ @@ -2711,7 +8987,7 @@ 3.003 ] }, - "4_5": { + "6_6": { "bore_locations": [ [ 0.0, @@ -2729,9 +9005,17 @@ 15.0, 0.0 ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], [ 0.0, - 20.0 + 25.0 ], [ 0.0, @@ -2744,153 +9028,157 @@ [ 0.0, 15.0 + ], + [ + 0.0, + 20.0 ] ], "g": { "5._192._0.08": [ - 2.83516472411039, - 3.1869425304997336, - 3.519703336588499, - 4.017409124634149, - 4.592792127320395, - 5.494435370274548, - 6.702922623181757, - 7.859047111999608, - 9.601273766609378, - 10.709893884541724, - 11.510288742748434, - 12.634631898016757, - 13.410995173686615, - 15.140112325896753, - 16.59431376284061, - 16.991218622233816, - 17.346724733781354, - 17.692319667585423, - 17.959786862066252, - 18.188220856046517, - 18.384643002748486, - 18.54880887859812, - 18.671188673718667, - 18.810869505477182, - 18.906212251366096, - 18.952983693185324, - 19.0286924400906 + 2.8351669577621674, + 3.1871192193948676, + 3.521147030588981, + 4.023365855809394, + 4.606310532051615, + 5.525154590156437, + 6.772940468158832, + 7.999806022714185, + 9.941598757751711, + 11.242662884163058, + 12.211544315706782, + 13.607906136045528, + 14.59263935206886, + 16.824091879097892, + 18.72312660757386, + 19.24335397415481, + 19.708619004058914, + 20.160401851536292, + 20.509208190057848, + 20.806947482446287, + 21.06245207261176, + 21.27558489730093, + 21.434393969024875, + 21.61542069542917, + 21.739005847415658, + 21.799676794051173, + 21.898040686672307 ], "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247267, - 2.451192833107243, - 2.788419108128426, - 3.044959925775519, - 3.387059821765704, - 3.613997664863135, - 3.7959470723593096, - 4.09111167742486, - 4.329038708345258, - 5.004506770243227, - 5.800396675051319, - 6.069930680934847, - 6.337044137013024, - 6.623399632901891, - 6.866397000242412, - 7.089548465426775, - 7.294940305254195, - 7.477122120182745, - 7.619155348518463, - 7.7880816786592515, - 7.907676077545279, - 7.967812952154061, - 8.067196242249718 + 0.8740059532267964, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.4511928331436965, + 2.7884196221623285, + 3.044991496174073, + 3.3877527097132196, + 3.6160726391301234, + 3.7996273738513993, + 4.098019465268857, + 4.339022209371263, + 5.026107217697417, + 5.8440414428390755, + 6.12496204455322, + 6.406693192418688, + 6.7134419933778755, + 6.978744364157664, + 7.2272648406681945, + 7.460965845398456, + 7.672921351394197, + 7.841682627848078, + 8.046915876111084, + 8.195645774770457, + 8.271694307563981, + 8.399463961773895 ], "5._384._0.0875": [ - 3.489041966728529, - 4.0101492446674785, - 4.615228891631927, - 5.566384478985521, - 6.642584303912649, - 8.23605088452842, - 10.158307320185152, - 11.785471693976609, - 13.957916675535065, - 15.2235651708415, - 16.099466100365742, - 17.290954676319654, - 18.09508402875218, - 19.852744524299638, - 21.313164415062523, - 21.70999507573438, - 22.065750787889225, - 22.41159715450544, - 22.679499567017082, - 22.908294539148603, - 23.10520435766242, - 23.269936461997787, - 23.392750503414597, - 23.53304715405481, - 23.628776387136153, - 23.675702827788015, - 23.751593525065417 + 3.4908602709826084, + 4.0170070627462415, + 4.630417814857196, + 5.600826537631196, + 6.712894335293744, + 8.412784240039514, + 10.585898349981383, + 12.534925378833286, + 15.261716518050669, + 16.89842738522324, + 18.045140324557863, + 19.615586697432747, + 20.680204821488207, + 23.00696807464605, + 24.93573195105683, + 25.459015695729356, + 25.927119645774955, + 26.381384192582434, + 26.732414022325983, + 27.032040016138804, + 27.289490757228663, + 27.50455465452447, + 27.66485590067734, + 27.847836732142586, + 27.972723477401907, + 28.033980567026, + 28.133174527050837 ], "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808687904528, - 2.800134103424843, - 3.1432018343696826, - 3.510749037532128, - 3.8535335425120447, - 4.430128801236172, - 4.854966963284894, - 5.198834780785669, - 5.748826061535993, - 6.182200108369144, - 7.344326849292377, - 8.559766854482477, - 8.930536691975924, - 9.277137603746795, - 9.626775473927715, - 9.905883724809348, - 10.149145007609818, - 10.36200401620384, - 10.542263530840383, - 10.677700598499671, - 10.833061729053647, - 10.939691930072817, - 10.992253400925039, - 11.077649233553439 + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.5060808689637466, + 2.8001345620605465, + 3.1432765700009027, + 3.511900157579732, + 3.8574036564334957, + 4.440887644389008, + 4.872355267997838, + 5.222739998030375, + 5.786151397567435, + 6.23375454128204, + 7.461544063755105, + 8.815056482358655, + 9.246689656701514, + 9.658149990958638, + 10.081305862476338, + 10.42477198168299, + 10.72821721038496, + 10.996609470756361, + 11.22581700371914, + 11.399115925681143, + 11.598748708885626, + 11.736397212995387, + 11.80451587427758, + 11.915623087673218 ], "5._96._0.075": [ - 2.2092718103274036, - 2.555323562310494, - 2.851913403930866, - 3.2001005947998324, - 3.522658579337796, - 3.9956263916358847, - 4.643473862001433, - 5.295314181512427, - 6.373564059926124, - 7.138360360544258, - 7.733580791206114, - 8.633729955517238, - 9.297305182392362, - 10.888688183108068, - 12.31939479443607, - 12.720736736508375, - 13.083024543099366, - 13.437593746774013, - 13.71333786799934, - 13.94943383896836, - 14.152804847143246, - 14.322925976753803, - 14.449783003015684, - 14.594457028247186, - 14.693237854773255, - 14.741735431737363, - 14.820299846760408 + 2.2092718103274045, + 2.5553235630354045, + 2.8519144500274347, + 3.2002177206514753, + 3.5237862369213295, + 4.000750567092088, + 4.656992371761951, + 5.320529068038654, + 6.429256420354291, + 7.230505847415193, + 7.867261249100356, + 8.857381709996897, + 9.610988894823729, + 11.499131461832192, + 13.284176057911953, + 13.79691991061618, + 14.262664615342693, + 14.720695672941652, + 15.077691859446688, + 15.383946316603518, + 15.647759380058123, + 15.86829371610848, + 16.032740186622522, + 16.220041339883917, + 16.347981997621094, + 16.41086759714324, + 16.512931200571227 ] }, "logtime": [ diff --git a/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json index 3c9992b013..2c5350d25a 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json @@ -2167,7 +2167,7 @@ ] } }, - "4_4": { + "3_7": { "1": { "bore_locations": [ [ @@ -2183,15 +2183,35 @@ 0.0 ], [ - 15.0, - 0.0 + 10.0, + 5.0 ], [ - 15.0, + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, 5.0 ], [ - 15.0, + 0.0, 10.0 ], [ @@ -2200,158 +2220,158 @@ ], [ 0.0, - 5.0 + 20.0 ], [ 0.0, - 10.0 + 25.0 ] ], "g": { "5._192._0.08": [ - 2.835165636239734, - 3.187022207622659, - 3.520662700126178, - 4.024811706360364, - 4.618246492085718, - 5.577602357189488, - 6.930593362977536, - 8.27013730911453, - 10.305799407868758, - 11.592006196271335, - 12.513529975375201, - 13.79808800355458, - 14.678979018204332, - 16.62480215658412, - 18.2488264768942, - 18.690716626034398, - 19.085984722477804, - 19.46983352268822, - 19.76659712159539, - 20.019967202996902, - 20.237708518807462, - 20.41961226179577, - 20.555207696500926, - 20.709951202677345, - 20.81558646499876, - 20.867416249016795, - 20.951344739626176 + 2.835168235501288, + 3.187225138144502, + 3.5222237743672355, + 4.031889337262786, + 4.65095210521015, + 5.7365825686151215, + 7.395991905049493, + 9.115963533793005, + 11.83485385255748, + 13.614395464935578, + 14.915218828234282, + 16.756047598175453, + 18.034105373499276, + 20.87724725831709, + 23.25606449963362, + 23.90323497771283, + 24.480425744323654, + 25.03964240057237, + 25.470442303067852, + 25.83793688525749, + 26.15294911791904, + 26.41550267506322, + 26.611133782029516, + 26.834106093553586, + 26.98637289643344, + 27.0611539701575, + 27.18249608786878 ], "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961542, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247276, - 2.451192833122094, - 2.7884193176830028, - 3.0449731122312995, - 3.3874426433772196, - 3.6156114031501847, - 3.7996703668647145, - 4.100882362106419, - 4.346224898925525, - 5.058431311244528, - 5.938205478332148, - 6.2454712872914175, - 6.553322425438452, - 6.885623183027443, - 7.168405190432672, - 7.427814593237117, - 7.66575546132917, - 7.875646469458194, - 8.038201801611946, - 8.229905687023377, - 8.364436565153676, - 8.43170041321568, - 8.542218918216287 + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.1114679242247285, + 2.451192833164528, + 2.788419915981721, + 3.045009744995194, + 3.3882144177280495, + 3.617808984737501, + 3.8036023132418673, + 4.110385726751085, + 4.36584072950022, + 5.155030460649048, + 6.2164576061442816, + 6.601805772922175, + 6.993983933344967, + 7.423390504160157, + 7.793926223981667, + 8.138142377527931, + 8.457810526378724, + 8.743177808074885, + 8.966600814322268, + 9.232668571334997, + 9.421398231836692, + 9.5165548819853, + 9.674158666212792 ], "5._384._0.0875": [ - 3.490341452425285, - 4.019256693703507, - 4.645242475571041, - 5.663015696969794, - 6.870961396281224, - 8.722045952534526, - 10.968017694918828, - 12.850605315815251, - 15.333821659373363, - 16.76783249479386, - 17.755971993298417, - 19.095372128092308, - 19.99702132365333, - 21.961932120277055, - 23.590345099332236, - 24.032380773467327, - 24.428493817447, - 24.813430064076773, - 25.11149023696463, - 25.366028392849262, - 25.58505101682981, - 25.76825577351642, - 25.904849535939963, - 26.06088890444515, - 26.16737568079158, - 26.21958387181005, - 26.304039577016905 + 3.492288303014158, + 4.027992889230436, + 4.686550345548092, + 5.8519301332831, + 7.338285388727023, + 9.726871915447486, + 12.760581092795954, + 15.406816311458183, + 19.004703924690737, + 21.121937999423693, + 22.591323646643364, + 24.58782441203802, + 25.933645979393194, + 28.856220775134705, + 31.266012558639126, + 31.918456182816538, + 32.50167485603215, + 33.06725575113439, + 33.50397639423851, + 33.876728170486956, + 34.196910425063784, + 34.464321758352305, + 34.663673360374304, + 34.891254841129324, + 35.046632545736365, + 35.12286961539634, + 35.24638732243558 ], "5._48._0.075": [ - 1.5268463243731403, - 1.8679037053125447, + 1.5268463243731418, + 1.8679037053125451, 2.1622431316564747, - 2.5060808688610523, - 2.800134290381807, - 3.1432338676191445, - 3.51146772321088, - 3.8574550748275773, - 4.448646633722987, - 4.892881358644619, - 5.259328855039348, - 5.860557995824219, - 6.346883434753211, - 7.687273576885126, - 9.101118153759293, - 9.529338705689813, - 9.927289641778144, - 10.326192135238777, - 10.642615140692383, - 10.916900159028845, - 11.15566961322875, - 11.356928805832112, - 11.507619363301462, - 11.67983744328869, - 11.797719211064464, - 11.855743645066019, - 11.949922092002977 + 2.50608086906277, + 2.8001348242058364, + 3.1433202956988264, + 3.512724781975352, + 3.861591420296442, + 4.469910415168822, + 4.951695898504113, + 5.368516852770294, + 6.083747728244587, + 6.682588214919556, + 8.391084633362508, + 10.267551388943927, + 10.852291361020686, + 11.401059487425028, + 11.956792771059943, + 12.400881654431204, + 12.788345094530706, + 13.126849537836916, + 13.412747360583873, + 13.627169552537298, + 13.872045230135388, + 14.039834240499516, + 14.122595424544361, + 14.257310973564822 ], "5._96._0.075": [ - 2.209271810327404, - 2.5553235626058273, - 2.8519138306223555, - 3.2001519249819794, - 3.523354932375397, - 4.001549412014162, - 4.669089316628495, - 5.359101946268944, - 6.552379489671893, - 7.429815477491777, - 8.121820314543074, - 9.173143912712952, - 9.946213029499233, - 11.781039134458084, - 13.403268695619028, - 13.854454372473098, - 14.260003929688882, - 14.655669234316463, - 14.962475413080817, - 15.224731293240202, - 15.450225154706388, - 15.638568709166531, - 15.778910465988814, - 15.938820677805234, - 16.047959625600665, - 16.1015379064994, - 16.188353466015815 + 2.2092718103274054, + 2.555323563449639, + 2.8519150481209046, + 3.2002869738671333, + 3.5245885462973905, + 4.007325614978504, + 4.702337715562123, + 5.474735334456455, + 6.916967980713842, + 8.026840927600418, + 8.922472045429046, + 10.31256529460049, + 11.35710473571817, + 13.90084348748471, + 16.213390665548403, + 16.86453996971265, + 17.450509889728593, + 18.022651569875517, + 18.465579619101284, + 18.844145543656843, + 19.168905782983078, + 19.439488082550426, + 19.640949580427325, + 19.87000545844089, + 20.026350192631597, + 20.103187793967667, + 20.22798101515618 ] }, "logtime": [ @@ -2399,17 +2419,25 @@ 0.0 ], [ - 15.0, - 0.0 + 10.0, + 5.0 ], [ - 15.0, - 5.0 + 10.0, + 10.0 ], [ - 0.0, + 10.0, 15.0 ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 30.0 + ], [ 0.0, 5.0 @@ -2417,153 +2445,165 @@ [ 0.0, 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 ] ], "g": { "5._192._0.08": [ - 2.8351647264993423, - 3.186951185113044, - 3.520120762095406, - 4.022908840457471, - 4.613192189018059, - 5.553357119545568, - 6.836941764565307, - 8.072417777476293, - 9.917034103843235, - 11.073390796484931, - 11.900087116780503, - 13.051737859601054, - 13.84151299956939, - 15.58897243519494, - 17.050915239385326, - 17.44916920093101, - 17.805773444528953, - 18.152349245604196, - 18.42056433245828, - 18.649624669380906, - 18.846603680143236, - 19.011257479437973, - 19.134008158091746, - 19.27413530400662, - 19.369785226120584, - 19.41670551318206, - 19.49264845544399 + 2.8351678756032515, + 3.1871970399988228, + 3.522007562236359, + 4.03089281573124, + 4.646127990025924, + 5.711379307725821, + 7.314251863526732, + 8.956057037107483, + 11.526922464379215, + 13.199871666785741, + 14.420000431059396, + 16.14443929547962, + 17.340812373607577, + 20.003467286489258, + 22.233843785398868, + 22.841042681799518, + 23.382979929843167, + 23.908336861766813, + 24.313355708780694, + 24.658928918496702, + 24.95529757950357, + 25.202419584569363, + 25.386566936194033, + 25.59649485688901, + 25.739844419487156, + 25.810234414069996, + 25.92440911008285 ], "5._24._0.075": [ - 0.8740059532267965, + 0.8740059532267966, 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247267, - 2.451192833107242, - 2.7884191082784517, - 3.044960290773892, - 3.3871729161976023, - 3.6148602890949224, - 3.798427780692208, - 4.098671421766258, - 4.342760701025555, - 5.044196907034894, - 5.885761165493484, - 6.173109241648802, - 6.458187213329125, - 6.763304769544556, - 7.021219579646446, - 7.256751563518459, - 7.472114549141299, - 7.661736239898098, - 7.808486494653682, - 7.981608972488866, - 8.103176704421157, - 8.1639743328458, - 8.263914864157965 + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.4511928331586534, + 2.7884198331403587, + 3.0450046727655895, + 3.388107552311976, + 3.617504394443999, + 3.8030547525730674, + 4.1090335832748925, + 4.3629883596674865, + 5.1400519740667265, + 6.169203763372199, + 6.539491606119128, + 6.9147504707839005, + 7.3240331585082945, + 7.675941725894203, + 8.001988070256798, + 8.304117448900024, + 8.573390925659975, + 8.784004191761305, + 9.034726629132932, + 9.212540779669483, + 9.302175682488283, + 9.450631503747145 ], "5._384._0.0875": [ - 3.4896748046623505, - 4.0171018504542335, - 4.6391649603613345, - 5.633334582359261, - 6.777423354182605, - 8.48011743093466, - 10.508676150536084, - 12.196848641332405, - 14.418505687057298, - 15.700982948369044, - 16.585012703238007, - 17.784388376412807, - 18.59237334378901, - 20.356297930357258, - 21.820925841542255, - 22.218835703293472, - 22.575624522310008, - 22.922522909474765, - 23.191302577308537, - 23.42086333314305, - 23.61846985157123, - 23.783815779548103, - 23.907095834432504, - 24.04794453869986, - 24.14405292279984, - 24.19116378321505, - 24.267345824271224 + 3.492018435639065, + 4.02675548245615, + 4.6804104191267575, + 5.821617176547088, + 7.256332342733712, + 9.532937414735727, + 12.395290160456664, + 14.877548722417195, + 18.24240101237221, + 20.21994965790336, + 21.592122315058752, + 23.457191329903598, + 24.714820752712292, + 27.44894259659483, + 29.706179039200602, + 30.317680568674543, + 30.864540554047736, + 31.3950631152201, + 31.804912340530848, + 32.154760149158776, + 32.455356697599704, + 32.7064732246906, + 32.893678933069495, + 33.10741380528634, + 33.253325292784176, + 33.324907950225914, + 33.44085302680202 ], "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.506080868790454, - 2.8001341035433973, - 3.143203617967474, - 3.511029904247479, - 3.856152805478866, - 4.444974647594222, - 4.884466201927085, - 5.243246979981296, - 5.8227560139656775, - 6.283297777362145, - 7.524103840428952, - 8.807945512182934, - 9.194384924931446, - 9.553166658512048, - 9.912687850486941, - 10.197983773814087, - 10.445428388178932, - 10.661051157114642, - 10.843018763232672, - 10.979390883733371, - 11.135467248125636, - 11.242381692801242, - 11.295016290117196, - 11.380439148692652 + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.5060808690348386, + 2.800134750291739, + 3.1433083287265173, + 3.5125506995425453, + 3.861015275892013, + 4.466812505243812, + 4.94283628566713, + 5.351595213161021, + 6.047352909615055, + 6.625539441027669, + 8.259258468640635, + 10.036240908146945, + 10.587412231759028, + 11.10418067442243, + 11.627102367840678, + 12.04485409861045, + 12.409334131270366, + 12.727879257037417, + 12.997079821660309, + 13.199080548580913, + 13.429978208359524, + 13.588262137168325, + 13.666337050439, + 13.793399887296896 ], "5._96._0.075": [ 2.2092718103274045, - 2.5553235623104933, - 2.8519134044978625, - 3.2001046586465205, - 3.522925086582346, - 3.9998856532802853, - 4.663987000362338, - 5.342182722576681, - 6.4831737142367984, - 7.300051390954155, - 7.935454728449091, - 8.891221455834549, - 9.589548472760537, - 11.240752602456341, - 12.699955368817093, - 13.106043498915271, - 13.471550686224996, - 13.828500722672317, - 14.10565082229637, - 14.342706531216326, - 14.546746378452665, - 14.717337608943652, - 14.844505073188188, - 14.989509482128286, - 15.088491705043397, - 15.137077502637203, - 15.215769375587161 + 2.555323563332807, + 2.85191487954418, + 3.2002682747689453, + 3.524417713066372, + 4.006516232881039, + 4.697428492207081, + 5.456754558672361, + 6.854579484336028, + 7.918521113442436, + 8.771787164655054, + 10.089026665802097, + 11.074708459462153, + 13.46684790599154, + 15.637287022512568, + 16.248201045880865, + 16.798354524609817, + 17.33580516834714, + 17.752227587811884, + 18.108286899016626, + 18.413964129553918, + 18.668824499890942, + 18.858636513324058, + 19.074557767809452, + 19.221950648203826, + 19.294379369363067, + 19.41196676585034 ] }, "logtime": [ @@ -2595,10 +2635,8 @@ 2.275, 3.003 ] - } - }, - "4_5": { - "1": { + }, + "3": { "bore_locations": [ [ 0.0, @@ -2613,24 +2651,20 @@ 0.0 ], [ - 15.0, - 0.0 - ], - [ - 15.0, + 10.0, 5.0 ], [ - 15.0, + 10.0, 10.0 ], [ - 15.0, + 10.0, 15.0 ], [ 0.0, - 20.0 + 30.0 ], [ 0.0, @@ -2643,153 +2677,161 @@ [ 0.0, 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 ] ], "g": { "5._192._0.08": [ - 2.8351669594995696, - 3.1871255135651895, - 3.521450763630739, - 4.027440927131935, - 4.622901064505621, - 5.590842323594143, - 6.994013251503387, - 8.440417815809157, - 10.728184854157313, - 12.214306632006716, - 13.292549745887117, - 14.80816776521213, - 15.853513199927047, - 18.168200857384697, - 20.099784066308047, - 20.625001327106478, - 21.09399959055764, - 21.548853866921366, - 21.899853567786867, - 22.199376563300056, - 22.456438843198356, - 22.670932167342954, - 22.83077815451506, - 23.0130704568225, - 23.137526387217555, - 23.19861671795847, - 23.297635289834563 + 2.8351674557223214, + 3.1871642588560194, + 3.5217553198655955, + 4.029728173559448, + 4.640348145143611, + 5.679457576795291, + 7.206641116757026, + 8.745047041344503, + 11.13180651608799, + 12.679996236906534, + 13.808925313837202, + 15.405639185306676, + 16.51446844841161, + 18.987709639506456, + 21.064843393671822, + 21.631017553577394, + 22.136765216445667, + 22.627364317664732, + 23.005889669286237, + 23.328931908771963, + 23.606116087323834, + 23.837339507620495, + 24.00965180715784, + 24.20612434390981, + 24.340276405756494, + 24.40613947469509, + 24.512932914912366 ], "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, + 0.8740059532267963, + 1.1958031759615422, 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.451192833143696, - 2.78841962227144, - 3.0449917616272018, - 3.3878349676301713, - 3.616701375947365, - 3.801447409704434, - 4.103722699832003, - 4.349851754894547, - 5.066561474113735, - 5.971024315259826, - 6.2955218819689645, - 6.62582828289826, - 6.9882906596436865, - 7.30163597242899, - 7.592950879193618, - 7.863343356618984, - 8.104295595873035, - 8.292390753883636, - 8.515662382368468, - 8.673235627317126, - 8.752330139054957, - 8.882718003075793 + 1.8198213217004344, + 2.111467924224729, + 2.451192833151799, + 2.788419736492105, + 3.044998755164691, + 3.3879828766502125, + 3.61714904420091, + 3.802415755424216, + 4.10744706260153, + 4.359597252377224, + 5.1212933072254545, + 6.1072592605925236, + 6.4570938419022665, + 6.809628049511205, + 7.192365389028966, + 7.520329977850644, + 7.823603134922717, + 8.10435999265909, + 8.354576472407945, + 8.550413000351668, + 8.783930442783213, + 8.949862544283166, + 9.033610140800183, + 9.172509577083275 ], "5._384._0.0875": [ - 3.4913178637505475, - 4.022181073829324, - 4.650368377493574, - 5.679273898695907, - 6.934048801514182, - 8.942879221488022, - 11.489485114208524, - 13.684995808311337, - 16.62944860524694, - 18.344229320003887, - 19.52898140146531, - 21.13567017703279, - 22.217371498825415, - 24.569254502705515, - 26.51258654834882, - 27.039341438027172, - 27.510770170273112, - 27.968408466397904, - 28.322269114374457, - 28.624373254589987, - 28.884097145454795, - 29.10117967968234, - 29.263019527746835, - 29.447835148184783, - 29.5739852640785, - 29.635856995184252, - 29.73602027391017 + 3.4917036471123835, + 4.025307680647497, + 4.673011020333885, + 5.782993862173108, + 7.148483678316307, + 9.278472100478979, + 11.931353104289931, + 14.22600268736125, + 17.337558182188328, + 19.168012351829333, + 20.439133720679106, + 22.16870375322818, + 23.335928571370353, + 25.87736165012629, + 27.978710007329052, + 28.548361648335568, + 29.058008316334604, + 29.552610097649886, + 29.934882507441912, + 30.261216164640917, + 30.541682193513694, + 30.776032983549168, + 30.950739005879406, + 31.15021564070593, + 31.28638031675921, + 31.353172259444197, + 31.461329298026236 ], "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.5060808689637466, - 2.800134562146767, - 3.143277867155833, - 3.5121044816704936, - 3.8593228688016947, - 4.4525539637029485, - 4.898703068591462, - 5.26838558887342, - 5.881864911229149, - 6.3870005881946526, - 7.8263540122829225, - 9.412926489035238, - 9.9048563976805, - 10.36562493821697, - 10.83047667908275, - 11.20084087218063, - 11.522844256185813, - 11.80358597118042, - 12.040355409554644, - 12.217672829146709, - 12.42013260243858, - 12.558710792834725, - 12.626965836083905, - 12.73785532838156 + 1.5268463243731443, + 1.8679037053125465, + 2.1622431316564765, + 2.506080869002254, + 2.8001346640586284, + 3.1432943672617757, + 3.5123476061523897, + 3.8603429692791438, + 4.463134601395299, + 4.931988575467072, + 5.330348001251688, + 6.0002014740586205, + 6.550462637137592, + 8.084899112344852, + 9.73766523249793, + 10.249163305676724, + 10.729027640978236, + 11.21499387977369, + 11.603717438753788, + 11.943275063246704, + 12.2404853592163, + 12.492047008348349, + 12.681036722262636, + 12.897398193307518, + 13.045863592836653, + 13.119121942980392, + 13.23835569127769 ], "5._96._0.075": [ - 2.2092718103274045, - 2.5553235630354045, - 2.8519144504397986, - 3.200220676151204, - 3.523980108850833, - 4.003890726776593, - 4.6737315111805815, - 5.368629519144982, - 6.595906981770949, - 7.528573477316917, - 8.282223236150426, - 9.45367860913557, - 10.332264553318971, - 12.458704367017562, - 14.368556747552583, - 14.902671587749616, - 15.382706738935145, - 15.850985855448844, - 16.213657057920507, - 16.523527691355074, - 16.7895865650334, - 17.01148425955976, - 17.176729811423197, - 17.364776703032707, - 17.4930992608774, - 17.556120493846507, - 17.6583368081961 + 2.209271810327406, + 2.5553235631964966, + 2.851914682871339, + 3.2002464591627837, + 3.5242184103816294, + 4.005571113317137, + 4.691542221800272, + 5.434231275813852, + 6.77280023516521, + 7.775076168475129, + 8.572647491915658, + 9.797620540588275, + 10.71161552879673, + 12.928786724509953, + 14.944711522215787, + 15.513106109914297, + 16.025715144708194, + 16.527049498554568, + 16.916004560292908, + 17.24880821246523, + 17.534801132707177, + 17.773458197512156, + 17.951271586021637, + 18.153661983571833, + 18.292136398656417, + 18.35971423632784, + 18.469926769254055 ] }, "logtime": [ @@ -2822,7 +2864,7 @@ 3.003 ] }, - "2": { + "4": { "bore_locations": [ [ 0.0, @@ -2837,20 +2879,16 @@ 0.0 ], [ - 15.0, - 0.0 - ], - [ - 15.0, + 10.0, 5.0 ], [ - 15.0, + 10.0, 10.0 ], [ 0.0, - 20.0 + 30.0 ], [ 0.0, @@ -2863,153 +2901,161 @@ [ 0.0, 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 ] ], "g": { "5._192._0.08": [ - 2.8351663640324896, - 3.187079025855097, - 3.5210961280230464, - 4.026256801080415, - 4.620679596130408, - 5.581342227156848, - 6.943112631117537, - 8.3119061968232, - 10.437615443796641, - 11.805968769447427, - 12.795931741961128, - 14.185816514269026, - 15.144100752774316, - 17.26865417032703, - 19.045229973117674, - 19.528819270594727, - 19.96107115280859, - 20.380604312268346, - 20.70466083731581, - 20.98126901903915, - 21.218816320474723, - 21.417137287655024, - 21.564947879714698, - 21.73356300587548, - 21.848673489949775, - 21.905165277405725, - 21.996689417861297 + 2.8351669594995705, + 3.1871255175431537, + 3.5214572227788423, + 4.02835228087116, + 4.633500573486632, + 5.640879151385137, + 7.075469473661736, + 8.491479311276652, + 10.671749232300593, + 12.085511372400733, + 13.11794220376573, + 14.581376018425273, + 15.599756676196446, + 17.878609324516557, + 19.79910712299802, + 20.323390637192354, + 20.79213935153591, + 21.247175837721915, + 21.59855627117228, + 21.898505639482437, + 22.156005551349256, + 22.370899708536914, + 22.531053769711153, + 22.713695493370253, + 22.838394391827407, + 22.899606436595707, + 22.998822844533144 ], "5._24._0.075": [ 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.451192833133975, - 2.7884194852066417, - 3.044983369398643, - 3.3876584208449128, - 3.6162108734136047, - 3.8006476284261015, - 4.102439785864223, - 4.3481743258226935, - 5.061270999247916, - 5.9447576180517485, - 6.255824443290809, - 6.569549262699487, - 6.910884687344959, - 7.203860980226212, - 7.474829914695701, - 7.725368144099679, - 7.948050522229073, - 8.121647028551868, - 8.327650099025401, - 8.473069945656743, - 8.546070023645806, - 8.666454143188732 + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.451192833143697, + 2.7884196222714386, + 3.0449917616367785, + 3.387835533602863, + 3.616729099717632, + 3.8016606315457535, + 4.105571563958834, + 4.3555788610940445, + 5.098697077883243, + 6.031478476283009, + 6.356346907598684, + 6.681588355443242, + 7.033068174462754, + 7.333476641865092, + 7.611038826103121, + 7.868110039042397, + 8.097554120743398, + 8.277494379920409, + 8.492728349830783, + 8.64617759300628, + 8.72378932314699, + 8.852803307776007 ], "5._384._0.0875": [ - 3.4908783986811023, - 4.0208629086587555, - 4.647845957178613, - 5.667156867053966, - 6.883390991621373, - 8.779441562788344, - 11.137539539318718, - 13.153520996798933, - 15.848687597244828, - 17.416971545953995, - 18.50067665547721, - 19.971432282122446, - 20.962238600786442, - 23.11998407238362, - 24.906027031814602, - 25.39053284565908, - 25.824397830204305, - 26.2457760431702, - 26.571799833918924, - 26.85017140979974, - 27.089580764047856, - 27.28974768659247, - 27.43897869190371, - 27.609416113730724, - 27.725739368315388, - 27.782781485012812, - 27.875094586767542 + 3.4913316752721975, + 4.023597684462511, + 4.664234769298046, + 5.736222656247091, + 7.017041170310778, + 8.975054413905625, + 11.395962056117424, + 13.491032117254623, + 16.339760863353316, + 18.019590542327933, + 19.18768953022785, + 20.779431912361407, + 21.8548331167545, + 24.200423468478697, + 26.143107206169827, + 26.670124996848063, + 27.141823149072955, + 27.599763020447824, + 27.953856252101296, + 28.25615617455517, + 28.516030905646236, + 28.733220389483463, + 28.89513063635666, + 29.080006705931165, + 29.206191847857973, + 29.268080077291085, + 29.36827034464209 ], "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564765, - 2.506080868917536, - 2.8001344398525374, - 3.143258067360414, - 3.511817936630581, - 3.8584822442261126, - 4.450749723549048, - 4.8955487977683045, - 5.2624184546734085, - 5.865189593370569, - 6.354811377674212, - 7.721374527012855, - 9.197553106076711, - 9.651881985036304, - 10.076753245376496, - 10.50504496042398, - 10.846271743861031, - 11.143043320858995, - 11.401993276463116, - 11.620613290765638, - 11.78448197622543, - 11.971839724079764, - 12.100177919593024, - 12.163399901545597, - 12.266104330035484 + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.506080868963746, + 2.8001345621467655, + 3.14327786735299, + 3.5121075906618615, + 3.8595485424750944, + 4.458784234083469, + 4.919031059199209, + 5.304693377756305, + 5.942566783722284, + 6.458434425052877, + 7.874659261510105, + 9.387574404042004, + 9.855992775742058, + 10.296255155632561, + 10.742998818047436, + 11.101213569213991, + 11.414728876517545, + 11.689754116201634, + 11.923036075042704, + 12.098569510463763, + 12.299914667480813, + 12.438255177444026, + 12.506555745615412, + 12.61774756730608 ], "5._96._0.075": [ - 2.209271810327403, - 2.5553235628420974, - 2.85191417152195, - 3.2001897381139464, - 3.52369877575152, - 4.002836709034522, - 4.671507621026489, - 5.3623523958800625, - 6.5608116580657425, - 7.451349226135013, - 8.161408662969507, - 9.253641844400866, - 10.066866858982916, - 12.02528106121994, - 13.781310517260053, - 14.272509409273658, - 14.714493448326069, - 15.14603465003867, - 15.480665262111376, - 15.76675572180131, - 16.012645594548598, - 16.217916740710585, - 16.370845171140513, - 16.544997925700372, - 16.663859571792273, - 16.722227495861578, - 16.816856530786318 + 2.209271810327405, + 2.5553235630354045, + 2.851914450439797, + 3.2002206770944213, + 3.5239828747509336, + 4.004454460211052, + 4.684568056449359, + 5.407115388835261, + 6.672907220541847, + 7.600796282093723, + 8.33295926496466, + 9.453020718500769, + 10.287818774590836, + 12.317573956663216, + 14.172486318867529, + 14.69707185456752, + 15.171038646544272, + 15.635260808894957, + 15.996003688177577, + 16.304927050144258, + 16.570697400366967, + 16.79269645460179, + 16.958171971159196, + 17.146638424847833, + 17.2753372061318, + 17.338572186525646, + 17.441165365255575 ] }, "logtime": [ @@ -3042,7 +3088,7 @@ 3.003 ] }, - "3": { + "5": { "bore_locations": [ [ 0.0, @@ -3057,16 +3103,12 @@ 0.0 ], [ - 15.0, - 0.0 - ], - [ - 15.0, + 10.0, 5.0 ], [ 0.0, - 20.0 + 30.0 ], [ 0.0, @@ -3079,153 +3121,26449 @@ [ 0.0, 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 ] ], "g": { "5._192._0.08": [ - 2.8351656362397586, - 3.1870222077625265, - 3.520662542462161, - 4.024725277625346, - 4.6164449457051955, - 5.559562301356887, - 6.854561927969589, - 8.120447900048557, - 10.055027159587599, - 11.293184233597465, - 12.188168530628072, - 13.44527637833843, - 14.31280639256918, - 16.240881996543386, - 17.858017819727984, - 18.2988286039526, - 18.69325791174862, - 19.07639207395043, - 19.37262662305555, - 19.625559559503333, - 19.842912486664606, - 20.024473426844295, - 20.159806725278344, - 20.314229974812832, - 20.419643910451875, - 20.471366570947602, - 20.55512695097287 + 2.8351663640325118, + 3.187079028147522, + 3.521099375312869, + 4.026628185639796, + 4.624121933500021, + 5.589257181505182, + 6.914536806279306, + 8.198262888562768, + 10.165724667933992, + 11.443435696474708, + 12.378511326324654, + 13.707539661916094, + 14.634655887743456, + 16.716709292758885, + 18.477940517387317, + 18.959535511622516, + 19.390518402212614, + 19.80920812106775, + 20.13279984576155, + 20.409098301906138, + 20.646417420962138, + 20.844555696571977, + 20.99223218322805, + 21.160674679044376, + 21.275669901026205, + 21.33210917521428, + 21.423556061535383 ], "5._24._0.075": [ 0.8740059532267964, - 1.195803175961542, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247276, - 2.451192833122094, - 2.7884193176830028, - 3.0449731122316335, - 3.3874426359626373, - 3.615609781338652, - 3.7996515176094663, - 4.100646660046628, - 4.345307621318644, - 5.048678100564503, - 5.895766901113474, - 6.187380376051302, - 6.4786400855583235, - 6.79296162577209, - 7.06110990306807, - 7.308183302247539, - 7.536108766536005, - 7.738506630386754, - 7.896321762757711, - 8.083851340310042, - 8.216459592889546, - 8.283096451816174, - 8.393124312240852 + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.451192833133977, + 2.7884194852066426, + 3.044983369404198, + 3.3876587165849865, + 3.6162237361043794, + 3.8007379836159765, + 4.103129720794652, + 4.350102829372217, + 5.067928120419007, + 5.936077471900313, + 6.232835121445177, + 6.528263994452777, + 6.846458728182723, + 7.118094303455485, + 7.3691373778191585, + 7.601970037069404, + 7.81024240141826, + 7.973996458213108, + 8.170576214330374, + 8.311249417293881, + 8.382568722127301, + 8.501421332908262 ], "5._384._0.0875": [ - 3.4903452786224256, - 4.019124865882309, - 4.642710893735971, - 5.64029173843186, - 6.795006074396598, - 8.544031062865198, - 10.684327333208312, - 12.50532190359343, - 14.938880153800072, - 16.35608654578909, - 17.33622230796111, - 18.66804850109008, - 19.56611746845016, - 21.525574457478477, - 23.150610404022757, - 23.59181021466942, - 23.98711759947602, - 24.371231143615073, - 24.668599501471192, - 24.92253152951065, - 25.14099835946385, - 25.32370979150895, - 25.4599275558376, - 25.61551875230526, - 25.7216968242016, - 25.773754741589535, - 25.857973142820374 + 3.4908888766086696, + 4.0214372858495055, + 4.652182322530747, + 5.674285684119839, + 6.855637238669818, + 8.629119583234898, + 10.812661795538952, + 12.70643432437585, + 15.2907750005773, + 16.819034441384648, + 17.883354114009517, + 19.336025584072246, + 20.318656801322135, + 22.46586188873393, + 24.24738709804333, + 24.73104604652916, + 25.164120466171532, + 25.584719310636363, + 25.9100853134493, + 26.1878801786096, + 26.42674861454247, + 26.626423100504812, + 26.775273825459685, + 26.945246437882762, + 27.061246701378952, + 27.118131538555865, + 27.210197174032988 ], "5._48._0.075": [ - 1.5268463243731403, + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.5060808689175356, + 2.8001344398525343, + 3.1432580674775066, + 3.5118195257398965, + 3.858580828981761, + 4.45290162982718, + 4.90113258488081, + 5.269790745706036, + 5.867569878811222, + 6.342998928383726, + 7.630218370919072, + 8.99875736085706, + 9.42340565644545, + 9.823428024995106, + 10.230313584163639, + 10.55748853873308, + 10.844452946620997, + 11.096798341774953, + 11.311336588816863, + 11.473039104576452, + 11.658900755076706, + 11.786782136171931, + 11.849958455775068, + 11.952840272265341 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235628420947, + 2.851914171521947, + 3.200189738662114, + 3.523700194199995, + 4.00307240574259, + 4.6750093684963225, + 5.370264392484583, + 6.547772192570917, + 7.392978051062503, + 8.055375224431513, + 9.06650934699318, + 9.82044322122481, + 11.660295696221507, + 13.352079239020547, + 13.832184631905527, + 14.266794426624795, + 14.693142242641112, + 15.025019229620597, + 15.309476385248932, + 15.554486436630631, + 15.759353953110262, + 15.912131620872866, + 16.086251572449545, + 16.2051801755, + 16.263612598479668, + 16.35838426983123 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_8": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351688203357903, + 3.1872707962963127, + 3.5225728057954364, + 4.033162690089689, + 4.65447322539896, + 5.751298158821693, + 7.448213414031256, + 9.2317259936519, + 12.100552406070221, + 14.010230129347955, + 15.42072003625813, + 17.434534621932695, + 18.843636946665278, + 21.998762047910454, + 24.65086810325138, + 25.373383864486815, + 26.01728654615494, + 26.640751457535266, + 27.12044749127293, + 27.529537218887437, + 27.879858760259324, + 28.171570948584087, + 28.388886040472645, + 28.63643648155223, + 28.805507205051477, + 28.888571982700146, + 29.023466367611416 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004344, + 2.111467924224728, + 2.451192833174076, + 2.7884200505989307, + 3.0450179873655165, + 3.38838787504442, + 3.618293855583839, + 3.804412689112293, + 4.1118721596674055, + 4.368202444012482, + 5.163897603341955, + 6.245694033541447, + 6.642018408638142, + 7.047599995492541, + 7.4944025787031245, + 7.882537007925091, + 8.245434819632164, + 8.584743204775515, + 8.889751211103391, + 9.130126820411915, + 9.41838958515215, + 9.624457808171835, + 9.728979174407533, + 9.90314901904194 + ], + "5._384._0.0875": [ + 3.4927218063944023, + 4.029461620248903, + 4.690777276283243, + 5.869671613493908, + 7.390522502678669, + 9.87256920689058, + 13.088898840014998, + 15.948719876302805, + 19.90189470386056, + 22.25530110767392, + 23.896893164294145, + 26.133558455725865, + 27.644135635108956, + 30.923920352096154, + 33.625162034448955, + 34.35594953064827, + 35.0085600142021, + 35.64090844335478, + 36.128620732784114, + 36.54479510317179, + 36.90200594995142, + 37.2001430034589, + 37.42238114371683, + 37.67601119913927, + 37.84919725959789, + 37.93419679273758, + 38.07199679999493 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125465, + 2.162243131656477, + 2.506080869108155, + 2.800134944316244, + 3.1433397419657005, + 3.513006559022909, + 3.8624435375842165, + 4.472467284934305, + 4.957283161487376, + 5.378479732629349, + 6.105365077471659, + 6.7179839292952925, + 8.486017807510716, + 10.464139046334989, + 11.089454590627168, + 11.679922208522193, + 12.281615986753797, + 12.765048655725744, + 13.188779638767642, + 13.560300190806533, + 13.874964171781833, + 14.111473777550504, + 14.381915808060114, + 14.56751791684244, + 14.659207421135799, + 14.808715774199138 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235636394978, + 2.851915322058077, + 3.2003173595893197, + 3.524865167137721, + 4.008428308262461, + 4.705890818078485, + 5.485305534232176, + 6.955620384835796, + 8.100044771425496, + 9.031707711618164, + 10.492035382699983, + 11.600833924389327, + 14.338884587621566, + 16.87097458235372, + 17.59022702464941, + 18.23889564641731, + 18.8733677708446, + 19.364834221850227, + 19.785162289486365, + 20.145658922226424, + 20.445864316468914, + 20.66935963737085, + 20.923299985463668, + 21.096660472672767, + 21.181907595442663, + 21.320497794058262 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351685474129864, + 3.1872494884153286, + 3.522408684502425, + 4.032383695148594, + 4.6505242651208265, + 5.730382327731174, + 7.3802567247991115, + 9.098422768366898, + 11.840266867047221, + 13.655588937904321, + 14.993148671649562, + 16.899752649402124, + 18.232355367633655, + 21.215986838547455, + 23.725516740260904, + 24.409516441079464, + 25.019492932966166, + 25.610406480723817, + 26.06537505153288, + 26.45345216622018, + 26.785937010564147, + 27.062911765395057, + 27.269264098252734, + 27.504374418305474, + 27.664939364576966, + 27.743812826187828, + 27.871854811675114 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.4511928331696193, + 2.7884199877775666, + 3.045014140924194, + 3.388306821406882, + 3.6180621896773086, + 3.8039921103720196, + 4.110799109091014, + 4.365886967224013, + 5.151487373383529, + 6.206469440010263, + 6.590327472067176, + 6.981878295394326, + 7.411893670448344, + 7.784334156490145, + 8.131753615015938, + 8.455917254037493, + 8.746820525349587, + 8.975809026116828, + 9.250210544100812, + 9.446240640754853, + 9.54561546846337, + 9.711145626042498 + ], + "5._384._0.0875": [ + 3.49251676103972, + 4.028486689645671, + 4.68573341505693, + 5.844503561728973, + 7.322391960319545, + 9.710393693737547, + 12.778438693377106, + 15.49106840898047, + 19.227835143628372, + 21.44841008695673, + 22.996607031188063, + 25.10623194260872, + 26.53120660945102, + 29.627980157028354, + 32.18127744311011, + 32.87241123306779, + 33.48986682134808, + 34.08836809809048, + 34.550192518911764, + 34.944311180046824, + 35.282688179521976, + 35.56517533369003, + 35.775750210850795, + 36.01609097523208, + 36.18018982074622, + 36.26071909950651, + 36.39123787558378 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.506080869086975, + 2.800134888264721, + 3.1433306670040664, + 3.512874469427577, + 3.8620009467479246, + 4.469951447883826, + 4.9499709173735, + 5.364459972597304, + 6.075179995989946, + 6.670685456869286, + 8.376302072940733, + 10.269407659378542, + 10.865245073940468, + 11.427227011322302, + 11.999313082493149, + 12.458665976099553, + 12.861172359589496, + 13.214101122605285, + 13.513105643902467, + 13.737909249184732, + 13.995137027427187, + 14.171724803466603, + 14.258956434074905, + 14.401159984209524 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323563550898, + 2.8519151942207275, + 3.200303179409308, + 3.524735549816666, + 4.007800202514309, + 4.70187003059633, + 5.470400096722255, + 6.903791352861719, + 8.010039010816826, + 8.906254202146068, + 10.304650974514892, + 11.362484495440054, + 13.965384817655352, + 16.366048604899834, + 17.047354670580386, + 17.6620850149564, + 18.26354891051704, + 18.729748395165213, + 19.12859475155976, + 19.470882140239027, + 19.756098255759554, + 19.96849082426762, + 20.209928706564224, + 20.37476590043455, + 20.455810773208945, + 20.58751877425868 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516823550129, + 3.18722513656649, + 3.52222112008755, + 4.03149160832489, + 4.645879866915699, + 5.7043160736170515, + 7.292067464225548, + 8.923830842138864, + 11.505227462966255, + 13.20758151250436, + 14.460858007046808, + 16.247498359531704, + 17.496819112872394, + 20.29865045628543, + 22.66041323061611, + 23.304833192263462, + 23.879969466169722, + 24.437477520341503, + 24.86705406011469, + 25.233554374429318, + 25.547705207290434, + 25.809514587610224, + 26.004582489004036, + 26.22687603622352, + 26.37867865451282, + 26.453236679269306, + 26.57423133268468 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.1114679242247285, + 2.451192833164529, + 2.7884199159817213, + 3.045009744991422, + 3.3882141890436075, + 3.617797429808401, + 3.803511284458443, + 4.109564953889383, + 4.363186180908279, + 5.136202586018268, + 6.155853285468887, + 6.522946746613223, + 6.8956973120562495, + 7.3034501560239855, + 7.655455219726115, + 7.9831161462552425, + 8.288414515928629, + 8.562215286511993, + 8.777752666544473, + 9.0362755440646, + 9.221193942631636, + 9.31501446886073, + 9.471460602962697 + ], + "5._384._0.0875": [ + 3.492282456304094, + 4.027368799714403, + 4.679764486745187, + 5.812944730233619, + 7.234016166668295, + 9.498688273075702, + 12.382120501493262, + 14.922508674404323, + 18.419725550636844, + 20.498669927820742, + 21.948907736853577, + 23.92675782140675, + 25.263640837662063, + 28.172946251211822, + 30.57502548046371, + 31.2256373107534, + 31.80712232112032, + 32.37095548276862, + 32.80622028007892, + 33.17770202428497, + 33.49672535607998, + 33.763112462624925, + 33.96168555661122, + 34.18834246111305, + 34.34308492383515, + 34.41901319009055, + 34.54204421057171 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.162243131656475, + 2.5060808690627714, + 2.8001348242058364, + 3.1433202956209865, + 3.5127235114226405, + 3.861494990921999, + 4.46702109840046, + 4.941174611756926, + 5.347154705447738, + 6.036720602850455, + 6.609412846995472, + 8.23234698610636, + 10.017507797297522, + 10.577662482086481, + 11.106022161330438, + 11.644023352419877, + 12.0763187913655, + 12.455428311240922, + 12.788222622086199, + 13.07052577930096, + 13.282989075456774, + 13.526432039310862, + 13.693705007412207, + 13.776361090004645, + 13.911112514246593 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235634496407, + 2.851915048120906, + 3.2002869734939625, + 3.524587417254492, + 4.007081605616775, + 4.697137346839449, + 5.452036550309311, + 6.836891239102531, + 7.892224588370613, + 8.741650766268132, + 10.06055522521551, + 11.055040776173131, + 13.498451074951314, + 15.753721179487444, + 16.394468153027542, + 16.973318364034682, + 17.540212626364365, + 17.980133958501, + 18.356738724672805, + 18.68023230417539, + 18.950008885727822, + 19.15097947172189, + 19.37956046366482, + 19.535644138320418, + 19.612379650575754, + 19.737042647820342 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351678756032506, + 3.187197038299423, + 3.5220047035768354, + 4.030462453027368, + 4.6405206897676425, + 5.673994107121506, + 7.187786426051754, + 8.716748325099205, + 11.114240304967119, + 12.691977064135934, + 13.854252552606503, + 15.513739138701425, + 16.67603629526834, + 19.290098791121057, + 21.50055388229727, + 22.104562630985967, + 22.644097534345534, + 23.167458011769494, + 23.57104938666558, + 23.91546348098989, + 24.21082869800025, + 24.457084015342488, + 24.640575770857986, + 24.84971317040124, + 24.992522425501413, + 25.06265299913281, + 25.176423911573963 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.451192833158654, + 2.7884198331403587, + 3.045004672761528, + 3.3881073060346663, + 3.6174919455569934, + 3.8029565183722784, + 4.108141089273933, + 4.360069284906551, + 5.118460912368917, + 6.096072390098613, + 6.442904536535702, + 6.792995116871161, + 7.174154857648269, + 7.502124084975511, + 7.806896539590768, + 8.090720504640812, + 8.345395439787788, + 8.546123231723218, + 8.787452445195447, + 8.960546035269015, + 9.048529007158061, + 9.195544272830857 + ], + "5._384._0.0875": [ + 3.4920121438561953, + 4.026079266474439, + 4.672875600688386, + 5.7761716308078, + 7.129543434516861, + 9.248542816808932, + 11.922776601393068, + 14.275960504101143, + 17.521037876402318, + 19.45371864736531, + 20.803507255315303, + 22.64682771363732, + 23.894046679507028, + 26.612662732108507, + 28.860857518293763, + 29.470208995776805, + 30.01503047308487, + 30.543497673002495, + 30.951634805256436, + 31.299989369126216, + 31.599223339598947, + 31.849135559470696, + 32.03542597175962, + 32.24807360146662, + 32.39323824429266, + 32.46445796212259, + 32.579831221597175 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.506080869034839, + 2.8001347502917415, + 3.143308328642686, + 3.5125493312092995, + 3.86091124529938, + 4.463640507977688, + 4.9310007862063285, + 5.327036455494708, + 5.9915177786375535, + 6.536815408774773, + 8.06116111619288, + 9.72192348349981, + 10.24233819665037, + 10.733798366194145, + 11.23491970055343, + 11.63834084837251, + 11.992708558661901, + 12.304389398892024, + 12.569294804208257, + 12.76896092743464, + 12.998160599789047, + 13.155845015933378, + 13.233805552293589, + 13.360932824202598 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235633328057, + 2.8519148795441795, + 3.2002682743670694, + 3.5244164971366385, + 4.006252566689569, + 4.69167628939565, + 5.4307282222686615, + 6.757949393806442, + 7.752201088455693, + 8.54603612490599, + 9.772660708010175, + 10.695395687424556, + 12.964209443181787, + 15.065974600228154, + 15.664638645583247, + 16.206381537112808, + 16.737652318840546, + 17.150555396977797, + 17.504319816277505, + 17.808523823732195, + 18.062454499018173, + 18.25170419003787, + 18.4670864870894, + 18.614188333689253, + 18.686505647625097, + 18.80395481090785 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351674557223205, + 3.187164257015007, + 3.521752223094331, + 4.029262176517318, + 4.634256323762277, + 5.638157008261581, + 7.065420083887065, + 8.478884701809248, + 10.679134680781777, + 12.127034369487921, + 13.195490751745403, + 14.724824299165741, + 15.798457629252168, + 18.22149812008063, + 20.27797958346927, + 20.840837631917665, + 21.34406627185914, + 21.8325681815112, + 22.209594756095132, + 22.531421199568754, + 22.807554881100693, + 23.037872678760664, + 23.20950095737078, + 23.405149859876, + 23.538739588637597, + 23.604332841134415, + 23.710706489247492 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224729, + 2.4511928331518, + 2.7884197364921053, + 3.04499875516029, + 3.387982609851305, + 3.6171355580093305, + 3.802309329473276, + 4.106479433311707, + 4.356424341762536, + 5.097502548813131, + 6.025437639204655, + 6.348801468436818, + 6.673101734188832, + 7.024568922188278, + 7.326225404730193, + 7.606320150685498, + 7.867299936671468, + 8.101845857974924, + 8.28710164652291, + 8.510563939040823, + 8.671422058185726, + 8.753382082127487, + 8.890689647014323 + ], + "5._384._0.0875": [ + 3.4916968118921483, + 4.024575661314954, + 4.66481690389511, + 5.732701199284161, + 7.006938865941231, + 8.963570280620328, + 11.415627382552708, + 13.575324427794383, + 16.563325805110793, + 18.34779241781591, + 19.595928326719907, + 21.303135033256986, + 22.45963503605676, + 24.984999510495996, + 27.076931385247708, + 27.644340540187414, + 28.15186135718067, + 28.644321314702587, + 29.02481164852897, + 29.349592013652284, + 29.628641777555742, + 29.861741528527237, + 30.035497081274684, + 30.233844987161003, + 30.369234595271177, + 30.43564999266039, + 30.54321387532018 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125465, + 2.1622431316564765, + 2.506080869002255, + 2.800134664058628, + 3.143294367170957, + 3.512346123826869, + 3.86023029894455, + 4.459693710630897, + 4.9190368556789, + 5.303229237876491, + 5.937852641406798, + 6.450948660152014, + 7.86384857960775, + 9.390752789414016, + 9.869521489627722, + 10.322535376949592, + 10.785440729794182, + 11.159085055794549, + 11.487981930904828, + 11.777953399648096, + 12.02497425504029, + 12.211481276389076, + 12.426019467505498, + 12.573832631119808, + 12.646961916279764, + 12.766253177491219 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.555323563196498, + 2.85191468287134, + 3.2002464587274178, + 3.524217093150477, + 4.005285598331283, + 4.6852925429663195, + 5.4055710769490775, + 6.664843246327383, + 7.589131004889005, + 8.321008585270096, + 9.44759445807092, + 10.29427496219246, + 12.381618379460294, + 14.326064116154118, + 14.881800920772823, + 15.385635765742032, + 15.880507107598607, + 16.26577585593443, + 16.59616386438084, + 16.880601574212836, + 17.11827498652897, + 17.295493559981942, + 17.49731547760668, + 17.63518895869168, + 17.702968491494662, + 17.813015667390765 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351669594995896, + 3.187125515649212, + 3.5214537157826484, + 4.027777188615685, + 4.625795579590751, + 5.590962119222303, + 6.918134612139841, + 8.210082065407816, + 10.21224400600007, + 11.531396215543818, + 12.506726690665953, + 13.906376367888834, + 14.891325962660572, + 17.1220530714078, + 19.0224293188048, + 19.543429042214576, + 20.009663530680797, + 20.46259455516254, + 20.812467357381333, + 21.111194378561336, + 21.367640811296475, + 21.581629873432636, + 21.741102038471986, + 21.922925788220677, + 22.0470670510411, + 22.108011589061416, + 22.206811608942807 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.4511928331436974, + 2.7884196222714395, + 3.0449917616322524, + 3.38783523648633, + 3.6167130680649584, + 3.8015294519451506, + 4.104341678496447, + 4.351521760122666, + 5.069410144777099, + 5.938131189820203, + 6.235727309143375, + 6.532638236565353, + 6.853415148754126, + 7.128401622394682, + 7.383760785789729, + 7.6219716256889996, + 7.836477008374451, + 8.006297244962395, + 8.211830640183813, + 8.360317965075009, + 8.436155757313731, + 8.56353756786268 + ], + "5._384._0.0875": [ + 3.4913273691811137, + 4.022699949401587, + 4.653908057009591, + 5.676054537967916, + 6.8592238837644475, + 8.646187749167026, + 10.876385951809048, + 12.844331203038113, + 15.576465846267444, + 17.212724596498152, + 18.358931688695353, + 19.92925746204078, + 20.994330506049447, + 23.32430690066116, + 25.257764776300675, + 25.78257965109836, + 26.25219482690781, + 26.708039538547702, + 27.06039381288595, + 27.361179698676533, + 27.619676330730776, + 27.83565019990503, + 27.996637519121915, + 28.180418520973845, + 28.305852077530144, + 28.367375239267872, + 28.466990346940097 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.5060808689637457, + 2.8001345621467664, + 3.1432778672622783, + 3.5121059263447294, + 3.8594124247941206, + 4.45442661871832, + 4.902759411991929, + 5.271353108322692, + 5.869215809566322, + 6.345261692705777, + 7.6397176612415665, + 9.032123023208527, + 9.469529534341584, + 9.884229432128594, + 10.308929123409627, + 10.652668749116708, + 10.955872056458068, + 11.22383072586022, + 11.452623736471407, + 11.62566610576547, + 11.825131559053949, + 11.962763661792717, + 12.030902706085984, + 12.14209601353038 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323563035406, + 2.8519144504397964, + 3.20022067664954, + 3.5239813983709114, + 4.004104511472899, + 4.676665011675817, + 5.371916386214974, + 6.550318133626854, + 7.398794854006463, + 8.066433811726963, + 9.09197620596763, + 9.862911667157746, + 11.769784297370867, + 13.556542070421846, + 14.068967692851258, + 14.534390486673342, + 14.99226145931986, + 15.349338224724436, + 15.655833059879596, + 15.920016002325697, + 16.140994089378935, + 16.305845705708045, + 16.493710830459133, + 16.622081835904616, + 16.685189021509316, + 16.78762037183433 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_9": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351692752072406, + 3.187306308231393, + 3.5228442823858117, + 4.034153322311999, + 4.657213724101508, + 5.7627674874880475, + 7.489110084517385, + 9.322964279948419, + 12.313334165685445, + 14.331925352086806, + 15.836462574664495, + 18.002426025791742, + 19.529632833172247, + 22.9734616843697, + 25.884855929983065, + 26.679548278356798, + 27.387433025322288, + 28.07255797507362, + 28.599127635644567, + 29.048091176326995, + 29.432212363961607, + 29.751794575910278, + 29.98982888745176, + 30.26084038608783, + 30.445956446607894, + 30.53693770739715, + 30.684807011721144 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615422, + 1.4813847491413084, + 1.8198213217004355, + 2.111467924224729, + 2.4511928331815023, + 2.7884201553012113, + 3.0450243980984353, + 3.3885227872420725, + 3.618670992714098, + 3.8050430441205303, + 4.113028574575531, + 4.370040066837324, + 5.170803829716957, + 6.268535811871696, + 6.673473267649026, + 7.089601283214403, + 7.5501702893101275, + 7.952346158068716, + 8.330299436121456, + 8.685644733149841, + 9.006946441194076, + 9.261626178431028, + 9.56902460173882, + 9.790452036257014, + 9.903456569802831, + 10.09301259779558 + ], + "5._384._0.0875": [ + 3.4930590501033256, + 4.0306043900473565, + 4.694067588265734, + 5.88350510108964, + 7.431427061450941, + 9.98779845766504, + 13.353389129511713, + 16.394748537610948, + 20.66372076155687, + 23.23475569613577, + 25.037949158618115, + 27.50288427408755, + 29.171579440785813, + 32.79615601487421, + 35.77947042269938, + 36.58609435901098, + 37.30577310113429, + 38.002566200339054, + 38.53938762162418, + 38.99736202593541, + 39.3901621020589, + 39.71778873268037, + 39.96198754934894, + 40.24059533848343, + 40.43086113615993, + 40.52426913890176, + 40.675791785228064 + ], + "5._48._0.075": [ + 1.526846324373138, + 1.8679037053125451, + 2.162243131656477, + 2.506080869143455, + 2.800135037735449, + 3.143354866844195, + 3.5132257230355233, + 3.863106382379923, + 4.474457033580421, + 4.961632470054223, + 5.3862379761916515, + 6.12221855073966, + 6.74561773915448, + 8.560736261853611, + 10.621025278675003, + 11.280022705403246, + 11.905682008867638, + 12.546824706674549, + 13.06464818139723, + 13.520586021273242, + 13.921869299210416, + 14.262820884056147, + 14.519746235633956, + 14.814061814786294, + 15.016457487544422, + 15.1166233684889, + 15.28027379003545 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.555323563787167, + 2.851915535120323, + 3.2003409929409194, + 3.525080320711081, + 4.009286129418665, + 4.708656292040611, + 5.493539178529007, + 6.985836521381297, + 8.157460269968727, + 9.117690087916031, + 10.634467693002504, + 11.795826454076145, + 14.69799770204863, + 17.42489610404847, + 18.206502492794666, + 18.91320591824962, + 19.60593879686422, + 20.143091065234675, + 20.602934180243366, + 20.997350890820773, + 21.325727520483362, + 21.57020574923072, + 21.847850412175852, + 22.03744295614742, + 22.130727597352312, + 22.282539955832014 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169061150065, + 3.187289596078484, + 3.5227154349821217, + 4.033524104332879, + 4.6538887784099785, + 5.744952813263817, + 7.431132296917, + 9.209026808445238, + 12.089008139282727, + 14.023804729403114, + 15.46249591622713, + 17.530006916965466, + 18.98584886707987, + 22.267195944795272, + 25.041687005319854, + 25.7992249192782, + 26.474403997812757, + 27.12816593077813, + 27.630956262245725, + 28.05972256951526, + 28.42672838012983, + 28.73219214319049, + 28.959728110953343, + 29.21883767707847, + 29.39581423716993, + 29.48278190507102, + 29.624078846427427 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004358, + 2.1114679242247285, + 2.4511928331780086, + 2.7884201060295513, + 3.045021381281341, + 3.388459204881524, + 3.618488758763688, + 3.8047089942804333, + 4.112149613710242, + 4.368104552678757, + 5.160247189301706, + 6.235113843839368, + 6.6294440022038685, + 7.033633652448445, + 7.479881283521705, + 7.868602777395783, + 8.233203267484738, + 8.575369888873661, + 8.884268343353318, + 9.128825384687211, + 9.423733345374284, + 9.635961179420866, + 9.744182775418773, + 9.92558896348682 + ], + "5._384._0.0875": [ + 3.4928979293804243, + 4.02981111718458, + 4.689807881635182, + 5.862061102441162, + 7.373303131971566, + 9.848888667045843, + 13.08480921408248, + 15.993986735830603, + 20.062712473297832, + 22.507937952157054, + 24.221694767510005, + 26.564089484440156, + 28.149777348860614, + 31.596571400611825, + 34.43620802293284, + 35.204355319546785, + 35.88997609794769, + 36.554023346038555, + 37.0658504957119, + 37.502539694817926, + 37.87718883377983, + 38.189751325583764, + 38.42272531921386, + 38.68855014121916, + 38.87007314616325, + 38.95917827899679, + 39.10368452857277 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808691268432, + 2.80013499377347, + 3.143347749221799, + 3.513122063427876, + 3.8627548077340887, + 4.472353316078819, + 4.955432244183101, + 5.374311815242532, + 6.096516995974693, + 6.705349196598286, + 8.46707791358889, + 10.45374427638215, + 11.086772615849544, + 11.68705264325851, + 12.301520266833796, + 12.797384025573644, + 13.233781254911495, + 13.617792036519322, + 13.9440823041557, + 14.189982032423153, + 14.471793297760984, + 14.66562033847423, + 14.761532764751092, + 14.91818503231689 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.555323563717674, + 2.851915434855737, + 3.2003298712087163, + 3.524978606641642, + 4.008782285137806, + 4.705269310674967, + 5.480854741829109, + 6.941648894274673, + 8.080706907801707, + 9.010608616799727, + 10.473901414688648, + 11.590735842770137, + 14.372201991659223, + 16.977927988049014, + 17.72383972633121, + 18.398447629611603, + 19.059803055392596, + 19.572862109599473, + 20.012178524932555, + 20.389184657667702, + 20.70323114150412, + 20.93709460558929, + 21.202796276684648, + 21.384243011748246, + 21.473506726055373, + 21.618719893114587 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351688203357885, + 3.1872707949155483, + 3.5225704832629456, + 4.0328146196835775, + 4.650032785470765, + 5.723002615902646, + 7.3565176364299445, + 9.060566531632478, + 11.799841992061388, + 13.632664274820584, + 14.993890710578041, + 16.949363559826708, + 18.326361780693247, + 21.433677443077137, + 24.065634829566044, + 24.784923735345338, + 25.426488909066915, + 26.04806264126298, + 26.52644618320714, + 26.934487855187367, + 27.283917630997717, + 27.57486862359401, + 27.79161026012809, + 28.038471304698575, + 28.20707272391493, + 28.28991307605815, + 28.42445954281153 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331740758, + 2.7884200505989316, + 3.045017987362219, + 3.3883876749447204, + 3.6182837449564897, + 3.804333037462944, + 4.111153905712452, + 4.365879246288399, + 5.147401443091081, + 6.192385065392763, + 6.572538568818718, + 6.960785463488168, + 7.388029402819429, + 7.759132422898669, + 8.106515153514975, + 8.432034145693564, + 8.725637461237614, + 8.95801478939669, + 9.238350645820095, + 9.44023172567403, + 9.543226315629955, + 9.71599862541633 + ], + "5._384._0.0875": [ + 3.4927166892526316, + 4.028915399043745, + 4.684835863148447, + 5.835465727545891, + 7.298537152360087, + 9.668249642320442, + 12.740937995080156, + 15.492731647537088, + 19.33619146749968, + 21.64562369368271, + 23.26470044677373, + 25.479149474892168, + 26.97904482141368, + 30.243332003100754, + 32.93604674178191, + 33.66488218051722, + 34.31566342583481, + 34.94618122479929, + 35.432373256543464, + 35.84722283904276, + 36.203224570458566, + 36.50029236101047, + 36.72171746798605, + 36.974381000904465, + 37.14690298942507, + 37.231579824014695, + 37.368871711006804 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125465, + 2.162243131656477, + 2.5060808691081546, + 2.800134944316246, + 3.1433397418975875, + 3.5130054472759724, + 3.8623591557969568, + 4.469938163542089, + 4.9480710677300825, + 5.359767988491333, + 6.0641140221919665, + 6.653675795916591, + 8.344870813781016, + 10.237200073042663, + 10.838247747462841, + 11.40803550147771, + 11.991234140558953, + 12.461998282924036, + 12.876519414647147, + 13.241577757527981, + 13.552069009566619, + 13.786257684799507, + 14.054967006768669, + 14.239926198808673, + 14.331474001986834, + 14.481000011636498 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235636394978, + 2.8519153220580766, + 3.200317359262798, + 3.524864179214628, + 4.00821477222289, + 4.701338061968786, + 5.465414370216979, + 6.885127671661726, + 7.980958286119011, + 8.870816689921845, + 10.265000044279011, + 11.325780586574083, + 13.962402777497939, + 16.431949106313375, + 17.13926612084509, + 17.779629661942092, + 18.407898109761256, + 18.895785283662562, + 19.31378759499291, + 19.672799955144527, + 19.972084275552966, + 20.195034677659834, + 20.448471009508406, + 20.62156727158766, + 20.706716669414334, + 20.845191172590393 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351685474129886, + 3.187249486942518, + 3.522406206951233, + 4.032010643149538, + 4.6456614475955025, + 5.697913782149926, + 7.269809346302494, + 8.886512891906712, + 11.463018523931632, + 13.181539614328218, + 14.457790343466293, + 16.292887930401218, + 17.586608994813204, + 20.51297587215646, + 22.998652817348923, + 23.67887592750712, + 24.28609904662563, + 24.874790942437514, + 25.328222501151746, + 25.715074113868948, + 26.04651757484221, + 26.322603709236578, + 26.528286913326557, + 26.76259199055454, + 26.922609200578957, + 27.00122105087858, + 27.128858035916736 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.45119283316962, + 2.788419987777567, + 3.0450141409206744, + 3.388306607965558, + 3.6180514005629876, + 3.8039069722692336, + 4.110025517566295, + 4.3633565430034045, + 5.132752100765069, + 6.142839329947012, + 6.506107801226801, + 6.875285821357428, + 7.279840573660062, + 7.630081341194026, + 7.957280319143172, + 8.263553051525836, + 8.539751785808724, + 8.758479337134663, + 9.022778543076738, + 9.213507858786949, + 9.310957953976203, + 9.474722133264727 + ], + "5._384._0.0875": [ + 3.4925113064882454, + 4.027900461026589, + 4.679197818193155, + 5.805017904201134, + 7.211679819684123, + 9.456833388492814, + 12.34240149820954, + 14.920399296957584, + 18.5237490556197, + 20.691767042872346, + 22.213174700579994, + 24.296486578060584, + 25.70884782863374, + 28.78730720355912, + 31.330522849788245, + 32.01934902073474, + 32.63463678352622, + 33.23096802788605, + 33.690989815106995, + 34.08353783817439, + 34.42048101693239, + 34.7016998100225, + 34.911310294440106, + 35.150504189754656, + 35.31381520434294, + 35.393961783158744, + 35.52387822812925 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.506080869086975, + 2.8001348882647217, + 3.143330666931413, + 3.512873283522451, + 3.8619107794468794, + 4.467201093537204, + 4.93970690845649, + 5.343163102390066, + 6.026737643842111, + 6.593572757346406, + 8.201294219093462, + 9.983791188265029, + 10.548590991316775, + 11.084346779112622, + 11.633170532220351, + 12.076778017972815, + 12.467893554341039, + 12.812897372520267, + 13.106826189266977, + 13.328821521771708, + 13.583972171206756, + 13.759807748680085, + 13.846884550829344, + 13.98914061083771 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323563550898, + 2.8519151942207284, + 3.2003031790610104, + 3.5247344959979587, + 4.007571657621435, + 4.696881363064775, + 5.447810280499536, + 6.819628882169538, + 7.864192059370386, + 8.706553262336627, + 10.0199366806596, + 11.016351827699992, + 13.491919834223596, + 15.815936225904604, + 16.48290738121847, + 17.08765854902196, + 17.681705367281744, + 18.143662668362992, + 18.539759179529437, + 18.88030792183095, + 19.16445822976687, + 19.376227119013578, + 19.617096699981758, + 19.78164433437221, + 19.862586186694593, + 19.99417906242006 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351682355012895, + 3.187225134988477, + 3.5222184655915334, + 4.031091948216575, + 4.6406685827494405, + 5.66929187240437, + 7.170966408631344, + 8.689146000548321, + 11.087713144016814, + 12.684732794350765, + 13.871894801726926, + 15.58223175133246, + 16.790366004345586, + 19.531792537439753, + 21.868461664266757, + 22.50892183850402, + 23.081146274713728, + 23.636304467787205, + 24.06425788616226, + 24.4294655522758, + 24.74252006985808, + 25.003395424664333, + 25.197760938196677, + 25.419209802987222, + 25.570438541834424, + 25.644722758631563, + 25.765293941105224 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.1114679242247285, + 2.451192833164529, + 2.7884199159817196, + 3.0450097449876514, + 3.388213960356967, + 3.617785870082313, + 3.8034200657950668, + 4.108736101819707, + 4.360474047457522, + 5.116026639439031, + 6.0862173493750085, + 6.430126488365553, + 6.777541943745909, + 7.156435144059378, + 7.483381199626218, + 7.788307413928217, + 8.073610352239047, + 8.331073158967666, + 8.535250014251378, + 8.782614539791842, + 8.961678874019668, + 9.053368258289412, + 9.207831779530427 + ], + "5._384._0.0875": [ + 3.4922766130273053, + 4.026740793849537, + 4.672759344299206, + 5.770290761588796, + 7.112667192875683, + 9.218192142168498, + 11.901012009001475, + 14.296127663737089, + 17.65189801779265, + 19.675711404798403, + 21.09786035773211, + 23.04814966288694, + 24.37182265447996, + 27.26187449666042, + 29.653322295220885, + 30.301498726069074, + 30.880693703183695, + 31.44223557709562, + 31.875598407710985, + 32.24542382702468, + 32.562935853115704, + 32.82798647868391, + 33.02554367689565, + 33.2509925615358, + 33.40490546917437, + 33.48043090870527, + 33.60282811623431 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.162243131656475, + 2.5060808690627705, + 2.8001348242058377, + 3.1433202955431403, + 3.512722240818144, + 3.861398387027209, + 4.464074244348289, + 4.930152958594923, + 5.324187557041525, + 5.9839674053538925, + 6.524734902228128, + 8.038039086131045, + 9.699877397056454, + 10.225841777084657, + 10.72545418094779, + 11.238077321601697, + 11.653332572638616, + 12.02012349412531, + 12.344375287294278, + 12.621216921083544, + 12.83065396554929, + 13.071853532083068, + 13.238315373323871, + 13.320805804821875, + 13.455618131647276 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.555323563449639, + 2.8519150481209037, + 3.2002869731207877, + 3.5245862881694774, + 4.006836754653581, + 4.69179114525067, + 5.427718388280079, + 6.744867486439574, + 7.731050820638755, + 8.519930859611996, + 9.744084174703854, + 10.670763023902428, + 12.975840224112732, + 15.149165374677054, + 15.774779174564648, + 16.343026929507406, + 16.902044669550094, + 17.337473597572583, + 17.71115941421329, + 18.032811049081918, + 18.301462360466996, + 18.501777260258603, + 18.729765539761168, + 18.885552170244445, + 18.96218427193298, + 19.08673582137452 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351678756032515, + 3.187197036600023, + 3.522001844985364, + 4.0300322518514, + 4.634896036285241, + 5.635852024266923, + 7.0568222239774725, + 8.46717243609571, + 10.679953754505807, + 12.153158734697765, + 13.25009776169846, + 14.834419134641834, + 15.956200140214605, + 18.51062935502498, + 20.696124654857552, + 21.296166125758, + 21.83275705087295, + 22.35373215233409, + 22.755673696520372, + 23.098774316043166, + 23.39302760720498, + 23.63833790720881, + 23.821120436452897, + 24.029407114093317, + 24.171639138614, + 24.241494433618502, + 24.354839615191114 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.451192833158654, + 2.7884198331403587, + 3.045004672757467, + 3.388107059758039, + 3.6174794967078756, + 3.80285827774012, + 4.107247824505468, + 4.357140051126023, + 5.096490834060131, + 6.020295504929666, + 6.342298990497197, + 6.665602752473077, + 7.016669556841596, + 7.318864347181268, + 7.60046936515882, + 7.86406809821855, + 8.102292334016061, + 8.291591824035255, + 8.52166272512016, + 8.688809273583091, + 8.774608578033748, + 8.919547899142907 + ], + "5._384._0.0875": [ + 3.4920058333064117, + 4.025403432904344, + 4.665309594661901, + 5.729719388840724, + 6.998300370333083, + 8.952202238593774, + 11.425163738947337, + 13.634871748948575, + 16.741206848651288, + 18.619930620167946, + 19.942144992251766, + 21.75833863813579, + 22.992517358034014, + 25.69199794005192, + 27.92955689423265, + 28.53646594387091, + 29.078992919661268, + 29.60516679394351, + 30.011403531327844, + 30.35810455432582, + 30.655831595003182, + 30.904412490157448, + 31.089691454029655, + 31.301137021133602, + 31.445476549631113, + 31.516295697144656, + 31.631038716619635 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.50608086903484, + 2.8001347502917393, + 3.1433083285588577, + 3.5125479628970573, + 3.8608072365557438, + 4.460463539032706, + 4.919041634441245, + 5.301989054189596, + 5.933852701955289, + 6.444555436550609, + 7.853818545894713, + 9.389392902908474, + 9.875637606341177, + 10.338367742398457, + 10.814130390190991, + 11.200554903763509, + 11.54258825284559, + 11.845687556129661, + 12.105075489114615, + 12.301658864112659, + 12.528539580750973, + 12.685364757431058, + 12.763138051150694, + 12.89029651992637 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.555323563332806, + 2.8519148795441804, + 3.200268273965192, + 3.5244152812216245, + 4.0059889900520895, + 4.6859057506214175, + 5.404263408805991, + 6.657981117950805, + 7.578879199263079, + 8.309793264654871, + 9.439903921860733, + 10.294583021584879, + 12.426014383581446, + 14.446717206489884, + 15.03044089520954, + 15.561599205047946, + 16.08497193382014, + 16.493348219101822, + 16.844150665842182, + 17.146471184854406, + 17.39924107885622, + 17.587810658265372, + 17.802575617790527, + 17.94936622785306, + 18.02157381748878, + 18.138902569993615 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351674557223387, + 3.1871642552788932, + 3.5217490083033685, + 4.028734935990331, + 4.627191075584772, + 5.5923837694439165, + 6.921130404091049, + 8.219652693440157, + 10.248774015538189, + 11.600920737705362, + 12.609367555770664, + 14.06927690462276, + 15.105278935296539, + 17.472297577290934, + 19.50488790383915, + 20.063874761103698, + 20.564207385040245, + 21.050343567082148, + 21.425726327603915, + 21.746243336550744, + 22.021270219489566, + 22.250650365454668, + 22.421576832364448, + 22.61638773239884, + 22.749409642891568, + 22.81473203606216, + 22.920686340443314 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224729, + 2.4511928331517994, + 2.788419736492105, + 3.0449987551561395, + 3.3879823374935487, + 3.617120862250179, + 3.8021890796913524, + 4.105351936769525, + 4.352704745689004, + 5.070645851372797, + 5.9398428810714305, + 6.238121241924397, + 6.536209247930411, + 6.858995552575117, + 7.1365493710583126, + 7.395204140679829, + 7.637556404858422, + 7.856949768793425, + 8.031638623754134, + 8.244592826823101, + 8.39982116163003, + 8.479684002152238, + 8.614940936123459 + ], + "5._384._0.0875": [ + 3.491692863815904, + 4.0237525601703, + 4.655347063347855, + 5.677529573737163, + 6.862210907608832, + 8.659920253259397, + 10.926510636085144, + 12.954752158389766, + 15.814812117460628, + 17.549161505609558, + 18.771537107603407, + 20.453240490740587, + 21.597404222576593, + 24.104492508701696, + 26.18616326614168, + 26.75120635815924, + 27.256511470693024, + 27.746760655967005, + 28.125424124850845, + 28.448616886167706, + 28.726222736933313, + 28.958048987135587, + 29.130837776178694, + 29.3280379784672, + 29.46264017928505, + 29.528673354357743, + 29.635635680591392 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125465, + 2.1622431316564765, + 2.5060808690022545, + 2.800134664058627, + 3.143294367087805, + 3.512344598187321, + 3.8601055168193907, + 4.45569805832541, + 4.90411596592305, + 5.272655866683806, + 5.870587707138581, + 6.347141652093253, + 7.647396958409655, + 9.058233400410261, + 9.505659546084898, + 9.93216301004913, + 10.371546126007711, + 10.729320107473567, + 11.046604855090374, + 11.3284109075451, + 11.570109451999993, + 11.75359755521522, + 11.965802310186833, + 12.11270599001061, + 12.185611550922658, + 12.304862542188182 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235631964957, + 2.8519146828713398, + 3.2002464583196097, + 3.5242157397898137, + 4.004964776957321, + 4.678045485554847, + 5.373293893634843, + 6.552440697028782, + 7.403564496640416, + 8.075316972726368, + 9.111996063347464, + 9.896120004123281, + 11.857145004385892, + 13.726161136388024, + 14.267835220320396, + 14.761577105813346, + 15.24884211571673, + 15.62969069644632, + 15.957152936302819, + 16.23969619984952, + 16.47617659857627, + 16.652685128605793, + 16.853851551541922, + 16.991384805062378, + 17.059038862812958, + 17.16893894873854 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_10": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351696391045076, + 3.1873347178041738, + 3.5230614685103534, + 4.034945983544627, + 4.6594072891988905, + 5.771957941814843, + 7.522004623402825, + 9.39675647953741, + 12.487494891458262, + 14.598057058004724, + 16.18354094333716, + 18.483312026154245, + 20.116680436888863, + 23.826792940173995, + 26.983830323545284, + 27.847666614491423, + 28.616969261944547, + 29.361360452890704, + 29.932959611834093, + 30.420237054505066, + 30.836799306002668, + 31.18309766036054, + 31.44098851613276, + 31.73446423687552, + 31.93494960655065, + 32.03352050849653, + 32.19385157552877 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413081, + 1.8198213217004349, + 2.111467924224728, + 2.4511928331874424, + 2.788420239063031, + 3.045029526685046, + 3.388630717599701, + 3.6189727120958186, + 3.805547367607441, + 4.113953895800171, + 4.371510627516472, + 5.176334831578467, + 6.286873482944723, + 6.698753373758957, + 7.123400940407437, + 7.5951370834577805, + 8.008763297939167, + 8.399074468351857, + 8.767698765577965, + 9.102644651368363, + 9.369456226352236, + 9.693370504676869, + 9.9283741956995, + 10.049038321114683, + 10.252848396787554 + ], + "5._384._0.0875": [ + 3.493328891964763, + 4.031518872772797, + 4.696701539905457, + 5.894593551355605, + 7.4643252167341645, + 10.081256396732034, + 13.570826288558495, + 16.767335716591283, + 21.316669739152942, + 24.087481922018593, + 26.041731247861552, + 28.722960367234442, + 30.5431013423912, + 34.500334891309, + 37.75693093912338, + 38.63708390448907, + 39.42170490608051, + 40.180825980867425, + 40.76504498640568, + 41.26334524842586, + 41.69042768322616, + 42.046422039923414, + 42.31174126880739, + 42.61435506942868, + 42.82103939517815, + 42.922534632505275, + 43.087272192686505 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.8679037053125411, + 2.162243131656476, + 2.506080869171695, + 2.8001351124708167, + 3.143366966749678, + 3.5134010568203062, + 3.863636712972614, + 4.4760495083487095, + 4.965114224353245, + 5.392450460434204, + 6.135726616613818, + 6.767791843123352, + 8.621101293409064, + 10.749063493361266, + 11.436287939955566, + 12.091826879641271, + 12.766914527783069, + 13.314803512476578, + 13.799294812858879, + 14.227342804781571, + 14.592256712031864, + 14.868013579347283, + 15.184600972870493, + 15.402836829251452, + 15.511061192190152, + 15.688262359063822 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.5553235639052967, + 2.851915705570117, + 3.2003598996298304, + 3.5252524461092545, + 4.009972493984737, + 4.710869900525714, + 5.500133883082816, + 7.010105407086618, + 8.203705756184183, + 9.187143061720707, + 10.750226831974704, + 11.955216185877529, + 14.99696919701677, + 17.896521282465184, + 18.735055913338265, + 19.49532240103531, + 20.242385716273322, + 20.82248346564422, + 21.319701424484464, + 21.746334595798054, + 22.101543445725504, + 22.366047126079316, + 22.666335441250297, + 22.871461496608273, + 22.972454069746238, + 23.13698225098189 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351694667321, + 3.1873212600540097, + 3.5229576124885353, + 4.034424626344834, + 4.656546598768906, + 5.756478924684074, + 7.471570485762973, + 9.297501060893424, + 12.290978333627315, + 14.32667579396428, + 15.85258605642192, + 18.061991869327017, + 19.628926634529154, + 23.185431684690887, + 26.211077913468834, + 27.039047924964223, + 27.776780323566296, + 28.49089987200365, + 29.039581298511322, + 29.50739976149178, + 29.907496780390655, + 30.24023285812482, + 30.488042412746317, + 30.770098931839453, + 30.962773109793147, + 31.057489604011845, + 31.21149890540965 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833184628, + 2.7884201993863775, + 3.0450270973531226, + 3.388579508374959, + 3.6188255359474937, + 3.805275004780373, + 4.113216044437915, + 4.369855892386419, + 5.167171895378784, + 6.257828201077995, + 6.660500242411008, + 7.074786795979005, + 7.534074894040965, + 7.935976374285083, + 8.314610367503908, + 8.67164962846984, + 8.995616738312924, + 9.253399520980166, + 9.566054413984439, + 9.79264266152676, + 9.908872237969012, + 10.105006404966465 + ], + "5._384._0.0875": [ + 3.493198910530084, + 4.0308570628256915, + 4.693026975443819, + 5.875955963071871, + 7.413765251631014, + 9.960048096311203, + 13.334906590527586, + 16.412299177762257, + 20.776571614743915, + 23.428561422272836, + 25.297394831404457, + 27.860652848673013, + 29.60038867544903, + 33.38490218048116, + 36.50180116328724, + 37.34456064415303, + 38.09612971671551, + 38.82351232834903, + 39.38355343224408, + 39.861272165119075, + 40.27082716564339, + 40.612292081381696, + 40.8667867435675, + 41.15707978816375, + 41.35533579044196, + 41.45268099866423, + 41.61064394773242 + ], + "5._48._0.075": [ + 1.5268463243731414, + 1.8679037053125422, + 2.1622431316564774, + 2.5060808691583163, + 2.8001350770698537, + 3.143361235186525, + 3.5133175355985227, + 3.8633500301367296, + 4.474250446903327, + 4.959747142683891, + 5.382098391725382, + 6.113400989917269, + 6.732817753532474, + 8.53959333738306, + 10.60291366377845, + 11.267113818117231, + 11.899951195785375, + 12.550971960968868, + 13.07883923793592, + 13.5453645891901, + 13.957392257042933, + 14.308598600633644, + 14.573979014198066, + 14.878730513494437, + 15.088809389664045, + 15.192966631504737, + 15.363444958473718 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.555323563849342, + 2.85191562483074, + 3.2003509436914888, + 3.52517049678752, + 4.009557750375231, + 4.7079546724818195, + 5.489120233752136, + 6.971686719032705, + 8.136964890700169, + 9.093977370792693, + 10.610172002887273, + 11.775850512353795, + 14.709294034837644, + 17.497252419772515, + 18.30227251675926, + 19.032237752331362, + 19.749506260139636, + 20.306633077032, + 20.784225265064226, + 21.194188231449143, + 21.535668330452637, + 21.789998390306028, + 22.078844580302608, + 22.27616096132983, + 22.37329342138389, + 22.531472473603895 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169275207241, + 3.187306307004047, + 3.522842217886366, + 4.033843886576278, + 4.653265124584943, + 5.737573529765417, + 7.407039045534044, + 9.168602941192987, + 12.037422285577966, + 13.98091473316139, + 15.435739343947429, + 17.540818320418737, + 19.03336251168134, + 22.423653199656208, + 25.31181392032578, + 26.102776485145544, + 26.80802261772895, + 27.491061405235428, + 28.016225419374052, + 28.46408688580133, + 28.84728869291785, + 29.16609705513198, + 29.40355159195623, + 29.67386865078909, + 29.8585144412039, + 29.949272026546314, + 30.09679642246587 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615422, + 1.4813847491413084, + 1.8198213217004355, + 2.111467924224729, + 2.451192833181503, + 2.788420155301211, + 3.0450243980955025, + 3.388522609375117, + 3.618662005445276, + 3.8049722416423806, + 4.112390072890691, + 4.367974678811906, + 5.156125742194332, + 6.220943072679966, + 6.611349387541994, + 7.01182708287326, + 7.454595394036286, + 7.84109693133254, + 8.204582773859007, + 8.54685203471091, + 8.857116228115155, + 9.103880761560761, + 9.403199149867596, + 9.620184334063048, + 9.73150749794907, + 9.919443320255539 + ], + "5._384._0.0875": [ + 3.493054500653693, + 4.030118761282453, + 4.688783718084439, + 5.853035989161812, + 7.349107576131647, + 9.80281815778486, + 13.03222187024625, + 15.965873044702683, + 20.119010073162503, + 22.64123651961322, + 24.41879936038503, + 26.858029276259913, + 28.51426813589663, + 32.121031079059044, + 35.094991031144296, + 35.89954859405925, + 36.61731359952313, + 37.312207420672, + 37.847457871024226, + 38.30406516857134, + 38.69561781007384, + 39.02214092104706, + 39.26550042493066, + 39.543109591988745, + 39.73268932943757, + 39.8257641027037, + 39.976762556243116 + ], + "5._48._0.075": [ + 1.526846324373138, + 1.8679037053125451, + 2.162243131656477, + 2.5060808691434544, + 2.800135037735448, + 3.143354866783652, + 3.5132247348068173, + 3.863031372139838, + 4.472208255252984, + 4.953439818078773, + 5.369591360613865, + 6.085475546323292, + 6.6882412524358275, + 8.433626875504034, + 10.413656994423745, + 11.04915062548048, + 11.65434015093944, + 12.276732205459238, + 12.781376165976834, + 13.227504165513206, + 13.621731256686017, + 13.958010446358477, + 14.21227843706905, + 14.50456131784374, + 14.706177143216351, + 14.8061581727671, + 14.969797551702056 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235637871654, + 2.851915535120323, + 3.2003409926506743, + 3.5250794425499192, + 4.009096300350068, + 4.704607716403106, + 5.475837962179747, + 6.922865579209501, + 8.050645791942905, + 8.972763693397676, + 10.428128650659463, + 11.543892273729133, + 14.345704415816325, + 17.006477306804626, + 17.774847490505532, + 18.472176838697685, + 19.157793988110367, + 19.69079410079831, + 20.14793414282146, + 20.540633347925073, + 20.86796060720477, + 21.11183247694148, + 21.38893844271681, + 21.578260851324544, + 21.671451012765434, + 21.82316084562911 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169061150065, + 3.1872895947789393, + 3.522713248876312, + 4.033194892863065, + 4.649596115883526, + 5.716244200093716, + 7.3328943743830255, + 9.018831330171903, + 11.743007977441218, + 13.582069628649183, + 14.957977949156959, + 16.949688120532105, + 18.36287683945251, + 21.57917353464046, + 24.325852679889646, + 25.07898944961593, + 25.751041342363028, + 26.402342129904234, + 26.903482713483317, + 27.330958648322913, + 27.696890497828896, + 28.001451042227572, + 28.228310733598185, + 28.486609167756708, + 28.663037069973708, + 28.749744243915718, + 28.890640324948205 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004358, + 2.1114679242247285, + 2.4511928331780077, + 2.788420106029549, + 3.04502138127824, + 3.388459016550277, + 3.618479238903689, + 3.804633871213688, + 4.111466968141023, + 4.365871430232568, + 5.143695648545728, + 6.17868452226488, + 6.554634546791731, + 6.938727751039005, + 7.36186018686795, + 7.730122102032494, + 8.075772358163414, + 8.400825646984893, + 8.695323164113045, + 8.929579974651796, + 9.214026598573515, + 9.420538461671027, + 9.526607859480789, + 9.705940175672495 + ], + "5._384._0.0875": [ + 3.4928931154901357, + 4.0292937374393425, + 4.684037849958674, + 5.827129985325081, + 7.274843512624837, + 9.620236159471716, + 12.682032585704539, + 15.455139648192947, + 19.38078446140351, + 21.76677627572551, + 23.449611429182468, + 25.761181604241013, + 27.331998925692588, + 30.757558152139776, + 33.586069436253325, + 34.35176376194966, + 35.03510607610017, + 35.69689157539745, + 36.2068470544028, + 36.64190760738781, + 37.01507002481992, + 37.32631665839131, + 37.55828980482034, + 37.8229231946917, + 38.00362782267828, + 38.0923356169888, + 38.23621716719929 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808691268437, + 2.8001349937734696, + 3.143347749157691, + 3.5131210170299894, + 3.8626752433086398, + 4.469925706734645, + 4.9463704397858335, + 5.355502009721136, + 6.053673207927566, + 6.63702427325471, + 8.310284505858624, + 10.193014037560348, + 10.79559524877261, + 11.369555957897884, + 11.960080873626445, + 12.43929996741385, + 12.863368103405582, + 13.2385888456107, + 13.559110635100065, + 13.801751578517507, + 14.081097548940388, + 14.274002260992097, + 14.36970898259704, + 14.526385408493656 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235637176726, + 2.851915434855737, + 3.2003298709014003, + 3.5249776767928798, + 4.008580604742729, + 4.700865428968421, + 5.4608944831681665, + 6.866955487504291, + 7.950663761577234, + 8.831583655880335, + 10.215745700426625, + 11.273792424161384, + 13.92766319614577, + 16.45104545390649, + 17.180809976609552, + 17.84399554332063, + 18.496733542567505, + 19.004815115226474, + 19.440904267020272, + 19.815882878437932, + 20.12870911372553, + 20.361877191199547, + 20.626973569380997, + 20.8081283925645, + 20.89729590359523, + 21.04241509069484 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516882033579, + 3.187270793534784, + 3.5225681605411676, + 4.032464859034958, + 4.645470234927858, + 5.692296192502923, + 7.249773721982898, + 8.850987218412278, + 11.415915729914369, + 13.142500411469129, + 14.434605628591797, + 16.30756749869687, + 17.638534968246013, + 20.676149844304643, + 23.27851809026642, + 23.99315980447801, + 24.63139798746912, + 25.25035740285144, + 25.72699410170676, + 26.133671727749693, + 26.48196909529333, + 26.771969383068637, + 26.988000153736685, + 27.234008777060403, + 27.40203447836484, + 27.484601924808427, + 27.618729120287863 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331740758, + 2.788420050598932, + 3.045017987358917, + 3.388387474843101, + 3.618273630131758, + 3.804253219666965, + 4.110428581041057, + 4.3635056721911125, + 5.129727569540895, + 6.131225628204132, + 6.490847036204033, + 6.8563990653565545, + 7.257362917289612, + 7.605156439859971, + 7.930931927240052, + 8.236980431274706, + 8.514253104012374, + 8.73497509642254, + 9.003502237540292, + 9.198942347608046, + 9.299511402874506, + 9.469924048645776 + ], + "5._384._0.0875": [ + 3.492711575004746, + 4.028365751077241, + 4.678701738639966, + 5.798054866407641, + 7.191590685191605, + 9.416170019764092, + 12.29468689439955, + 14.896664770362229, + 18.585455717369364, + 20.83167463114062, + 22.41782831941547, + 24.599553267051682, + 26.08368876938362, + 29.325431219584754, + 32.00632411975455, + 32.73255401267648, + 33.380910894048306, + 34.00902301752407, + 34.493225223560955, + 34.90634412901751, + 35.260766424199474, + 35.55643645788873, + 35.77679867085372, + 36.028196819673695, + 36.199849928267156, + 36.28410507570673, + 36.42073427111567 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125465, + 2.162243131656477, + 2.5060808691081555, + 2.8001349443162447, + 3.143339741829474, + 3.513004335483725, + 3.862274621304385, + 4.4673585929709585, + 4.938421622161106, + 5.339661600839528, + 6.0179111792135105, + 6.579385143159076, + 8.171737019277147, + 9.946710325662451, + 10.51350231868414, + 11.053831702251054, + 11.610357563535604, + 12.062739881185204, + 12.463670955956424, + 12.819089430230422, + 13.123280656129152, + 13.353914758633497, + 13.619940307652543, + 13.803903780042878, + 13.89523452936822, + 14.044801216382567 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235636394978, + 2.851915322058077, + 3.2003173589362732, + 3.5248631912546777, + 4.008000499694037, + 4.696657237313498, + 5.44410647991227, + 6.804225618478394, + 7.838343155779127, + 8.673006499863657, + 9.97811814305196, + 10.972922703987864, + 13.468192360138309, + 15.847967354866476, + 16.53794856138718, + 17.166000518527593, + 17.785002515747696, + 18.267566612253564, + 18.682116174476054, + 19.03897054638073, + 19.33696582440184, + 19.55918719779263, + 19.811997459872234, + 19.984800264266966, + 20.069857245679092, + 20.208249656926554 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168547412988, + 3.1872494854697058, + 3.522403729400136, + 4.031637594937129, + 4.640796738930445, + 5.66521583218281, + 7.156327181864894, + 8.664396051949335, + 11.059981746940485, + 12.669819467585942, + 13.875772721810119, + 15.62748861574367, + 16.874893519050996, + 19.73116417372427, + 22.18703153256678, + 22.86256594638869, + 23.466400589379095, + 24.05242300851958, + 24.504070110254457, + 24.889528707653565, + 25.2198177233413, + 25.49493667550337, + 25.699898020690885, + 25.933339153271646, + 26.09277370015269, + 26.17110958926573, + 26.298322859918514 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.4511928331696207, + 2.788419987777567, + 3.0450141409171536, + 3.388306394524238, + 3.6180406114486834, + 3.8038218340179566, + 4.109251878319771, + 4.360824968413766, + 5.113916055474346, + 6.077656862265472, + 6.4189652399342085, + 6.763901048316036, + 7.1405076825826095, + 7.466122779497426, + 7.7706132304913265, + 8.056536148114755, + 8.315741809058258, + 8.52236352260601, + 8.774391981396496, + 8.958408563926497, + 9.05331824806197, + 9.214571259175331 + ], + "5._384._0.0875": [ + 3.492505852047999, + 4.027314243128996, + 4.672658430641972, + 5.765193496294636, + 7.09798271084733, + 9.190572360263763, + 11.875756363465433, + 14.301410828819689, + 17.74926565221559, + 19.854135280178653, + 21.34261775354842, + 23.39318847000116, + 24.789763925463987, + 27.84552677477147, + 30.376780035921165, + 31.06296419924753, + 31.675793082325576, + 32.2696862423744, + 32.727694072702015, + 33.118491743006636, + 33.45383906835643, + 33.73364662921852, + 33.94218447494702, + 34.18010190408506, + 34.34253680449449, + 34.42225832031495, + 34.55150689214454 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.5060808690869747, + 2.800134888264722, + 3.1433306668587586, + 3.51287209761735, + 3.8618206123648378, + 4.464450221147384, + 4.929417808449613, + 5.321717254949587, + 5.977415981915798, + 6.514221819556091, + 8.017299675762297, + 9.677234777045328, + 10.206661687733584, + 10.71206589626786, + 11.233463394281333, + 11.658260189217309, + 12.035448480139937, + 12.370575231956687, + 12.658038757023743, + 12.876370427918015, + 13.128733411613737, + 13.303523639191571, + 13.390366695683301, + 13.532648799286992 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323563550898, + 2.8519151942207284, + 3.2003031787127143, + 3.524733442179271, + 4.007343114419741, + 4.691890624287184, + 5.425109107399766, + 6.733506973307652, + 7.7124299066069, + 8.49642461938141, + 9.716702855478742, + 10.644847059544732, + 12.975867471013844, + 15.208907407097895, + 15.858443029385768, + 16.45070278301715, + 17.035332246598674, + 17.49187627163055, + 17.88444497538812, + 18.222782285791002, + 18.50560730145074, + 18.716625306108426, + 18.95685032272639, + 19.121097058428045, + 19.201944469023204, + 19.33345433559674 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351682355012895, + 3.1872251334104607, + 3.5222158111586133, + 4.030692435836612, + 4.635444529743224, + 5.633875131085122, + 7.049454113144735, + 8.456924176997164, + 10.678496318286262, + 12.171114200249516, + 13.290912635768551, + 14.921340042396272, + 16.085041756919278, + 18.75879409652261, + 21.066369605584704, + 21.70220309013989, + 22.271052586308706, + 22.82353489875629, + 23.24969234246939, + 23.613496752748286, + 23.925389219834933, + 24.185293152063217, + 24.378935213480187, + 24.599521190201827, + 24.750168663495693, + 24.824177566837133, + 24.944325755441408 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.1114679242247285, + 2.4511928331645305, + 2.788419915981719, + 3.0450097449838784, + 3.3882137316709593, + 3.6177743103914275, + 3.803328841321922, + 4.10790658713047, + 4.357753737180955, + 5.095622935888312, + 6.015888528004508, + 6.336715861009754, + 6.65912226334744, + 7.009730170399893, + 7.312186510905942, + 7.594792403983658, + 7.860259860218558, + 8.101232281144249, + 8.293665942781129, + 8.529077445725832, + 8.701549381704696, + 8.790720584075277, + 8.942644437494067 + ], + "5._384._0.0875": [ + 3.492270752342703, + 4.026113135855874, + 4.6657319834389535, + 5.7271623120898, + 6.9908977963199375, + 8.9420675394994, + 11.430259527794664, + 13.67950364529766, + 16.88667805204232, + 18.85006468233329, + 20.24058298451521, + 22.159299582566327, + 23.467691605812174, + 26.335603440303093, + 28.715280155013648, + 29.360845990674026, + 29.937614961657257, + 30.496753985541105, + 30.928136084190047, + 31.296241741189064, + 31.612188260435573, + 31.87585628157454, + 32.072363279701136, + 32.29656342450582, + 32.449619637212166, + 32.524729508810054, + 32.646473679900424 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.162243131656475, + 2.5060808690627714, + 2.800134824205837, + 3.143320295465301, + 3.51272097023313, + 3.861301803214927, + 4.461123589967796, + 4.919045640318183, + 5.300925295293184, + 5.930422515002689, + 6.439071211141979, + 7.845041410808658, + 9.386613090572865, + 9.87845767748666, + 10.348751585984465, + 10.834849998236962, + 11.231898681434599, + 11.585142562256932, + 11.899735359736082, + 12.17020594624958, + 12.375998033460865, + 12.614377153069091, + 12.779750891720933, + 12.861981294432077, + 12.996772935510096 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235634496403, + 2.8519150481209055, + 3.2002869727476178, + 3.5245851590981077, + 4.006591985540785, + 4.686431488294837, + 5.4031417996637865, + 6.652100884580376, + 7.570038794155812, + 8.29992136165962, + 9.432245160614201, + 10.292701034808404, + 12.458745322102292, + 14.544479416660744, + 15.153266533233802, + 15.709316834222825, + 16.259086213549967, + 16.689159603513975, + 17.059326543554374, + 17.37874752337288, + 17.646043124082098, + 17.84558148117727, + 18.072894490951647, + 18.228358852587373, + 18.304885500103087, + 18.429336193302593 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351678756032683, + 3.1871970349974577, + 3.521998877451294, + 4.029545511552378, + 4.628372441862755, + 5.593587270113946, + 6.923668540202903, + 8.227717618243242, + 10.278893549786142, + 11.658001289287679, + 12.694039319978, + 14.205580885752774, + 15.28660506771994, + 17.778150063095342, + 19.936049478037493, + 20.531608707623278, + 21.064903391350793, + 21.583238562323576, + 21.983395007571378, + 22.32509819601307, + 22.61819411928284, + 22.862539168233372, + 23.0446046599785, + 23.25204033054007, + 23.393699662081687, + 23.46328345420128, + 23.576210724476113 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.451192833158653, + 2.7884198331403596, + 3.045004672753634, + 3.388106808350145, + 3.6174659313311754, + 3.802747276524009, + 4.106206979153732, + 4.3537061193850555, + 5.071691930762524, + 5.94129231759633, + 6.2401470957870115, + 6.5392215077129805, + 6.863673356555523, + 7.143323763602977, + 7.4046409540634865, + 7.650323455001545, + 7.873663680468067, + 8.05232899759183, + 8.27147750096968, + 8.432516421413368, + 8.515950438422246, + 8.65844640766098 + ], + "5._384._0.0875": [ + 3.492002188282926, + 4.024643508677762, + 4.656565319578145, + 5.678778275820147, + 6.864741641979631, + 8.671463042349199, + 10.967756696046923, + 13.04586427928242, + 16.016894600718118, + 17.840064644968272, + 19.133018716222864, + 20.919798501869284, + 22.139644801038344, + 24.81815020006933, + 27.044423862327942, + 27.648815411098294, + 28.189011140971594, + 28.71287964207942, + 29.11722158173988, + 29.462279595370507, + 29.7585143363134, + 30.00577977845764, + 30.190060396922703, + 30.400320388106376, + 30.54384695062992, + 30.61427175096322, + 30.728394790192578 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.5060808690348386, + 2.8001347502917397, + 3.1433083284820977, + 3.512546554602282, + 3.8606920471313715, + 4.4567743291569695, + 4.905264433680639, + 5.273758764171925, + 5.8717490291166206, + 6.348732838190833, + 7.65386375584761, + 9.07971483933351, + 9.535241549816222, + 9.971416426754768, + 10.423025453602547, + 10.792736851136443, + 11.122231429539076, + 11.416288536770965, + 11.669628010485612, + 11.862699525468686, + 12.086791679040198, + 12.242490263128705, + 12.319966846196566, + 12.447024846618449 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323563332806, + 2.8519148795441804, + 3.2002682735887515, + 3.524414031956014, + 4.005692819880341, + 4.679214126841142, + 5.374460066352025, + 6.554238242490741, + 7.407593698170906, + 8.082767988459942, + 9.128565425936788, + 9.923373535293827, + 11.929036501519146, + 13.869379737621548, + 14.437441468104574, + 14.957111924448764, + 15.471684261075561, + 15.874888400480591, + 16.222252735412198, + 16.52235095304989, + 16.77373707803546, + 16.961498650458392, + 17.17554365230348, + 17.321975756765728, + 17.394057570676637, + 17.511250295593154 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_11": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 10.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169936838707, + 3.1873579620164363, + 3.5232391694567626, + 4.035594627354158, + 4.661202795707466, + 5.779487333381996, + 7.5490352636714455, + 9.457675210507945, + 12.632677014957226, + 14.821683572225169, + 16.47723616309864, + 18.894926055277153, + 20.623653839563413, + 24.578825867971577, + 27.968242702733924, + 28.8983023574208, + 29.726590711226933, + 30.528009882019095, + 31.142939449214573, + 31.66710346047628, + 32.11487339617017, + 32.48684635164187, + 32.76381642103819, + 33.078860347840745, + 33.29410829073593, + 33.39997591210058, + 33.57230952754993 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615413, + 1.4813847491413081, + 1.819821321700435, + 2.111467924224727, + 2.451192833192303, + 2.7884203075954295, + 3.04503372280155, + 3.3887190246523167, + 3.619219579806558, + 3.805960022018472, + 4.114711101976366, + 4.37271411933769, + 5.180864182228267, + 6.301919412442735, + 6.719514280812353, + 7.151188432588349, + 7.63216601540594, + 8.055305444457415, + 8.45593236046432, + 8.835708007500672, + 9.182202408452008, + 9.459378360679723, + 9.797595715149974, + 10.044595808233515, + 10.172161012959458, + 10.389145167454222 + ], + "5._384._0.0875": [ + 3.493549702681375, + 4.032267262425046, + 4.6988577173482895, + 5.903680267931919, + 7.49135700840298, + 10.158592646573824, + 13.752708240751932, + 17.08278790119412, + 21.88124993001058, + 24.835025171912985, + 26.930044678861876, + 29.815670010981112, + 31.780586682756795, + 36.05857212956992, + 39.580140353408105, + 40.531682156969254, + 41.37928656246854, + 42.19879448948, + 42.82884590343327, + 43.366125048566595, + 43.82629686236881, + 44.20963553988507, + 44.4953086934292, + 44.821042299097535, + 45.04354216356276, + 45.15283171807441, + 45.33032138445009 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.8679037053125405, + 2.1622431316564774, + 2.506080869194803, + 2.800135173617928, + 3.1433768666741178, + 3.513544513437428, + 3.864070656026638, + 4.477352889299245, + 4.967964459027974, + 5.397537299367806, + 6.146795407606217, + 6.785978774809343, + 8.670891009098476, + 10.855538143674199, + 11.566676256052695, + 12.247783829086275, + 12.952221393554941, + 13.52645392938004, + 14.036265709976421, + 14.488358311619473, + 14.875079435214303, + 15.168176675209107, + 15.505517927106329, + 15.738694105374858, + 15.854585350769366, + 16.044791188487476 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.555323564001953, + 2.8519158450290454, + 3.200375368743993, + 3.525393277659516, + 4.010534136172495, + 4.71268184800315, + 5.505534706784999, + 7.030025127617334, + 8.2417518969468, + 9.244416965904554, + 10.846160400861853, + 12.087887680243602, + 15.24935421916594, + 18.30203799519552, + 19.192459226929834, + 20.00205661026468, + 20.79968273614698, + 21.420095653650165, + 21.95264027890277, + 22.409876953534425, + 22.790668007145907, + 23.074314025860165, + 23.396281362575877, + 23.61631125322897, + 23.72471651295615, + 23.901509716985615 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351697950605064, + 3.187346892816094, + 3.523153664872283, + 4.0351537489710845, + 4.658699218918969, + 5.765824467516148, + 7.504484188560135, + 9.369907173610628, + 12.458175883686337, + 14.579817845549021, + 16.181261827740848, + 18.515901489827996, + 20.182825670278696, + 23.992990398706322, + 27.2563774899538, + 28.151799589399367, + 28.949584369043144, + 29.721744186515693, + 30.31454599731847, + 30.81992496984973, + 31.251820040601498, + 31.610733886346676, + 31.87799965408933, + 32.18206012703958, + 32.38979299288644, + 32.491949661059394, + 32.658187121472885 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413081, + 1.8198213217004342, + 2.111467924224728, + 2.4511928331899866, + 2.7884202749609552, + 3.0450317246495553, + 3.388676897402153, + 3.6190981729262006, + 3.8057332357601728, + 4.114079502485895, + 4.371274040719907, + 5.172783463680784, + 6.276280863636739, + 6.68575759991523, + 7.108299453060771, + 7.578293815573196, + 7.9910714879646845, + 8.381356639299545, + 8.750840298286601, + 9.087539344737728, + 9.356619379780447, + 9.684662522377609, + 9.92396712891709, + 10.047427267618925, + 10.257193098132715 + ], + "5._384._0.0875": [ + 3.4934425999311265, + 4.031704003738148, + 4.695634467110861, + 5.887225821646297, + 7.446695595556186, + 10.051270758928142, + 13.542792911563806, + 16.76498095844064, + 21.39233529748742, + 24.234082636709154, + 26.247695741487938, + 29.019941410958744, + 30.907056404429664, + 35.017250398208716, + 38.40286265963991, + 39.318014270482465, + 40.133494809079956, + 40.92219072039383, + 41.528813753900515, + 42.04615714588555, + 42.489373441005284, + 42.85867295799855, + 43.133888566912745, + 43.44772519840929, + 43.66208508855653, + 43.76736476191904, + 43.938301477796905 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.867903705312543, + 2.1622431316564787, + 2.506080869183797, + 2.8001351445002554, + 3.1433721523982374, + 3.513475777057714, + 3.8638319214348567, + 4.4757868137531505, + 4.96324230598326, + 5.3884075080679725, + 6.127094290295109, + 6.755121976858774, + 8.598874736548645, + 10.726051035272448, + 11.416615982285201, + 12.077302379257045, + 12.759952247211464, + 13.315902290588385, + 13.809193619700041, + 14.246436575553881, + 14.620353129216586, + 14.903692100452547, + 15.229831167398444, + 15.455235406779037, + 15.567231925647974, + 15.750966053018407 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.5553235639559304, + 2.8519157786200324, + 3.2003680023741943, + 3.5253258384837625, + 4.010185596405117, + 4.7101296489156885, + 5.495818978788434, + 6.9960999988964385, + 8.182819417426433, + 9.16212230874249, + 10.722222003850515, + 11.928877662933468, + 14.992567398060228, + 17.942433926548187, + 18.80142170387326, + 19.58244775994743, + 20.35181040654079, + 20.950329717330867, + 21.46410555815181, + 21.90536607910604, + 22.272983834702725, + 22.54685959020823, + 22.857837894430684, + 23.070360368670087, + 23.1750495119832, + 23.34571661504061 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351696391045076, + 3.1873347166995605, + 3.5230596104420475, + 4.034667462708074, + 4.655852438970694, + 5.749252909561607, + 7.447731494026967, + 9.256178502558884, + 12.232819324046433, + 14.27073231845692, + 15.8068724901542, + 18.0444466682024, + 19.64132001971681, + 23.293018640546986, + 26.423815803119147, + 27.28340103382138, + 28.049747220049312, + 28.791843550747345, + 29.361937531876578, + 29.848056394722057, + 30.26367208024012, + 30.609186115510916, + 30.86649315768618, + 31.159272987962623, + 31.359289860050023, + 31.45763925904854, + 31.617630764535154 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413081, + 1.8198213217004349, + 2.111467924224728, + 2.4511928331874415, + 2.788420239063031, + 3.0450295266824052, + 3.388630557519039, + 3.6189646235218307, + 3.8054836446484153, + 4.113379205598667, + 4.369651545424254, + 5.163113871910365, + 6.24389063902663, + 6.642574632651529, + 7.052956613572194, + 7.508367380568263, + 7.907503913342168, + 8.28431592323946, + 8.64059181390549, + 8.964955420425905, + 9.224046796030922, + 9.539887450390074, + 9.770296510761312, + 9.889161130173898, + 10.091152321204579 + ], + "5._384._0.0875": [ + 3.4933247968269305, + 4.0310817357253566, + 4.691944173367084, + 5.867125438216927, + 7.389835078080345, + 9.912265122552691, + 13.27299385764087, + 16.36360612469231, + 20.793342887066395, + 23.511388892599136, + 25.437211756501817, + 28.089408238745467, + 29.895321541186064, + 33.832357067294154, + 37.078748496042216, + 37.95672235810859, + 38.73935187841025, + 39.49651479577444, + 40.079122051838795, + 40.576022042886315, + 41.00182763987408, + 41.35669241855431, + 41.62115234581041, + 41.92274297723574, + 42.12872452049781, + 42.22987859366651, + 42.39408003084232 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.8679037053125411, + 2.162243131656476, + 2.5060808691716954, + 2.8001351124708163, + 3.1433669666951873, + 3.5134001674078377, + 3.8635692007273272, + 4.474025124969648, + 4.957737866499104, + 5.377458450812673, + 6.102603465798987, + 6.71599708114046, + 8.505476634974418, + 10.5583007121437, + 11.222980904598481, + 11.858532754142223, + 12.514955272555905, + 13.049431773385955, + 13.52373131909529, + 13.944280337263232, + 14.304108949578346, + 14.576908319420964, + 14.891174554222019, + 15.10848854990004, + 15.216480108470284, + 15.393632964261363 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235639052985, + 2.851915705570118, + 3.2003598993686095, + 3.5252516557589506, + 4.0098016339571805, + 4.707224971248538, + 5.484188263322717, + 6.9532074487693025, + 8.10686648643544, + 9.055301542348355, + 10.561208487021345, + 11.723051899684002, + 14.666726044936613, + 17.497956621894183, + 18.322194672610255, + 19.07215847366709, + 19.811264667348777, + 20.38665475888252, + 20.88078948193631, + 21.30546127413796, + 21.65948135929434, + 21.923310129965095, + 22.22301909324532, + 22.427865960380522, + 22.528765941598525, + 22.693203006293334 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169466732104, + 3.1873212588912576, + 3.5229556564770714, + 4.034130034844573, + 4.65270442528553, + 5.73075068752763, + 7.383084375194451, + 9.124931704655598, + 11.971987177772023, + 13.914436539548731, + 15.377437171033575, + 17.508553902866844, + 19.03003837600481, + 22.514751524838786, + 25.508687576761403, + 26.331602878396723, + 27.0658115877016, + 27.77721295464581, + 28.324124432868988, + 28.790585242834076, + 29.189577158963086, + 29.521399105315275, + 29.768528845356006, + 30.04977381240366, + 30.241902538295097, + 30.336361784059356, + 30.489977839675277 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833184629, + 2.788420199386379, + 3.0450270973503453, + 3.3885793398675794, + 3.618817018140404, + 3.8052077885491977, + 4.112605210511333, + 4.367857556291983, + 5.15234840960546, + 6.207124882339217, + 6.593181276429487, + 6.989224732603791, + 7.427377014106318, + 7.810385761834493, + 8.171319109400914, + 8.512138507169084, + 8.822212132945918, + 9.069862478298711, + 9.371954859165559, + 9.592560231975153, + 9.706458823408992, + 9.900240084341906 + ], + "5._384._0.0875": [ + 3.4931946026221334, + 4.030394059891094, + 4.687861968364775, + 5.844638495086782, + 7.325089749551885, + 9.751829470332776, + 12.961531484700478, + 15.904012011631663, + 20.118884600211132, + 22.706062831497185, + 24.54021526436743, + 27.06830083547353, + 28.790896000930445, + 32.551158217088975, + 35.65586515702784, + 36.496030939796825, + 37.245222191095344, + 37.97026660514478, + 38.52838206480166, + 39.00442790768264, + 39.41245655450159, + 39.752570236686985, + 40.00603687976823, + 40.295105044202934, + 40.49251985388772, + 40.58945688751333, + 40.74677882409764 + ], + "5._48._0.075": [ + 1.5268463243731414, + 1.8679037053125422, + 2.1622431316564774, + 2.5060808691583163, + 2.8001350770698537, + 3.143361235129168, + 3.5133165993400057, + 3.86327883735208, + 4.472077791580194, + 4.951635452429654, + 5.36525532325254, + 6.07499159133969, + 6.671464444204511, + 8.397532611822733, + 10.363456342594525, + 10.998245774275851, + 11.605171719819026, + 12.23212318764169, + 12.742860481341248, + 13.196424424677309, + 13.598996399316302, + 13.943848271106331, + 14.205559797126933, + 14.507465377614666, + 14.716441466394711, + 14.820334344659933, + 14.990795247305282 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235638493432, + 2.851915624830741, + 3.2003509434165194, + 3.525169664811407, + 4.009377283150436, + 4.704012863644627, + 5.4712415875707086, + 6.904534777033029, + 8.019591342130466, + 8.931738501751182, + 10.374264629151185, + 11.484116530480238, + 14.291920943631048, + 16.993802898974362, + 17.781163466327378, + 18.498429004164866, + 19.2059552733674, + 19.75738074925207, + 20.23125835256189, + 20.63888744183091, + 20.978976479203723, + 21.232529308039013, + 21.520724802293824, + 21.717742435030548, + 21.814783561607513, + 21.972887192347446 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351692752072406, + 3.1873063057766995, + 3.5228401532186737, + 4.033532948048082, + 4.64920785546489, + 5.710223878299452, + 7.311410222351418, + 8.979210603413472, + 11.683417254698007, + 13.522218877381048, + 14.906821837909733, + 16.925460422569465, + 18.36825370351243, + 21.680655599510068, + 24.5347634888348, + 25.32035457805336, + 26.02183348660552, + 26.701975489903003, + 27.225262731328453, + 27.671688110706718, + 28.053725158499958, + 28.371572315037195, + 28.608313144887227, + 28.877778156085256, + 29.061852418556644, + 29.152341074916617, + 29.299455377936205 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615422, + 1.4813847491413084, + 1.8198213217004355, + 2.111467924224729, + 2.4511928331815023, + 2.78842015530121, + 3.0450243980925684, + 3.3885224315064555, + 3.6186530144454325, + 3.804901291477302, + 4.1117452855912155, + 4.365864501985363, + 5.14039717567698, + 6.166309574318819, + 6.538259372855779, + 6.918219903667851, + 7.336996920744823, + 7.701929961636499, + 8.04512392658614, + 8.368776390344554, + 8.663100452130958, + 8.898240620632025, + 9.18545661014408, + 9.39559703263403, + 9.504256137913197, + 9.689484608480626 + ], + "5._384._0.0875": [ + 3.4930499537761084, + 4.029630085347467, + 4.683328282427998, + 5.81969791974491, + 7.253309997794146, + 9.574005206049481, + 12.618029219706246, + 15.401214967651189, + 19.390549620553365, + 21.842670518158055, + 23.582856690460304, + 25.984343646607496, + 27.622244813991117, + 31.203065498589858, + 34.16400250293463, + 34.96579492798134, + 35.68101925080474, + 36.373415776679074, + 36.906610222198125, + 37.36143210923699, + 37.75135586930136, + 38.07643688604857, + 38.3186994376025, + 38.59500130236717, + 38.783683544371875, + 38.876323023663446, + 39.026638254254806 + ], + "5._48._0.075": [ + 1.526846324373138, + 1.8679037053125451, + 2.162243131656477, + 2.506080869143455, + 2.800135037735449, + 3.1433548667231066, + 3.5132237465378324, + 3.8629562261500077, + 4.469914604321129, + 4.944857878239336, + 5.351702460489052, + 6.044313070420499, + 6.6219367432261125, + 8.277443250124048, + 10.146977920491448, + 10.74896442560389, + 11.324768584223191, + 11.919964784092077, + 12.405412248265733, + 12.837045488727506, + 13.220759401013142, + 13.550011051785411, + 13.800233283096281, + 14.089391692070258, + 14.289810733375035, + 14.389512291134508, + 14.553153802525685 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235637871654, + 2.8519155351203227, + 3.2003409923604313, + 3.5250785643559914, + 4.00890581650482, + 4.700445167169138, + 5.456872089300371, + 6.850543919804044, + 7.922580034124776, + 8.794216482804043, + 10.166402515692738, + 11.219003664107179, + 13.879947764725719, + 16.445507373456774, + 17.19465791785875, + 17.878134937947088, + 18.553163398574817, + 19.08001097118829, + 19.533147067336383, + 19.923348831160002, + 20.24920280905832, + 20.49225992388776, + 20.768696344695126, + 20.957723444148133, + 21.050829808936633, + 21.202483688769693 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169061150066, + 3.187289593479397, + 3.5227110627705933, + 4.032865684582639, + 4.645301429127294, + 5.687339805989326, + 7.232058269750274, + 8.818977002000368, + 11.3702846889579, + 13.100222978435529, + 14.403317941853853, + 16.306076096729697, + 17.668360601398206, + 20.80523406124635, + 23.517276215111764, + 24.26496435051302, + 24.933160946553524, + 25.581494140714295, + 26.080713870190923, + 26.50672080636736, + 26.8714637942787, + 27.175045404477142, + 27.401179578102894, + 27.65861317194069, + 27.834461995829116, + 27.920897071677988, + 28.06137875852735 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004358, + 2.1114679242247285, + 2.451192833178008, + 2.788420106029551, + 3.045021381275131, + 3.388458828219025, + 3.6184697190436994, + 3.8045587480154515, + 4.1107842797285405, + 4.363637309489495, + 5.127058330492284, + 6.120967476684765, + 6.477316902041017, + 6.839535520556141, + 7.23705873818033, + 7.582311412368422, + 7.906331185060648, + 8.211580672962388, + 8.489158601669972, + 8.711086046856748, + 8.982693928966281, + 9.181934719275056, + 9.285166483406961, + 9.461579492161 + ], + "5._384._0.0875": [ + 3.492888301593791, + 4.028776368110885, + 4.678263811857288, + 5.79191218164887, + 7.1738308645108235, + 9.379222804297168, + 12.247011226145828, + 14.864183151837448, + 18.622221400529515, + 20.93710222419735, + 22.582045671488867, + 24.855401898865324, + 26.407659491399553, + 29.806874816804463, + 32.622118492046106, + 33.3849924525352, + 34.06574043800888, + 34.72497750414214, + 35.232837153060416, + 35.66607896321733, + 36.037583375014215, + 36.347362971400976, + 36.57822066980501, + 36.84152508417101, + 37.02131773744339, + 37.10958338374006, + 37.25277117235714 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808691268437, + 2.80013499377347, + 3.143347749093589, + 3.5131199706321286, + 3.8625956790872817, + 4.467497561955208, + 4.937287183701918, + 5.3365711246778496, + 6.010118290765639, + 6.566835113698208, + 8.145087978574972, + 9.910946847843384, + 10.4782169511326, + 11.021294391630246, + 11.583299063542544, + 12.04250383144267, + 12.45145610192748, + 12.815736894063507, + 13.128952166898323, + 13.367379665115406, + 13.643460322230517, + 13.83511045375835, + 13.930522212136378, + 14.087194853293596 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.555323563717674, + 2.851915434855739, + 3.2003298705940786, + 3.52497674694413, + 4.0083789258563645, + 4.696459353997983, + 5.4408381231854115, + 6.790623960706778, + 7.81530980766378, + 8.642687244388, + 9.93900922148062, + 10.930634460147353, + 13.437769086793768, + 15.862930040991746, + 16.573078651476386, + 17.22203202369103, + 17.86389274832403, + 18.365667716795205, + 18.797640819049402, + 19.17005295905612, + 19.481366479881313, + 19.713699136220875, + 19.978112646453983, + 20.158970883130426, + 20.24805656494381, + 20.39312642578219 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168820335792, + 3.1872707921540187, + 3.5225658378193825, + 4.032115099982925, + 4.64090886155994, + 5.6616487090846235, + 7.143536009201816, + 8.642623189639936, + 11.033928621117221, + 12.652624344086101, + 13.873056793160872, + 15.658738434883062, + 16.93985310561761, + 19.89948162676134, + 22.467652552214485, + 23.17688506851522, + 23.811257895028888, + 24.42722697676633, + 24.901921733316907, + 25.307112536830203, + 25.65420716918825, + 25.94321879352742, + 26.158518268398623, + 26.40365763299558, + 26.571102040691265, + 26.65339642097011, + 26.787107674280897 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331740758, + 2.7884200505989316, + 3.0450179873556182, + 3.388387274741485, + 3.618263515307053, + 3.8041734018737836, + 4.109703258147418, + 4.361132120823273, + 5.112068610690327, + 6.070172818681403, + 6.409202441909538, + 6.751939384903123, + 7.126456987644435, + 7.4507439509196365, + 7.754598856647167, + 8.040716428426727, + 8.301040332346325, + 8.509430347004075, + 8.765094105314416, + 8.953215964256314, + 9.050911415445427, + 9.218320838801803 + ], + "5._384._0.0875": [ + 3.492706460880052, + 4.027816106911439, + 4.672570009075406, + 5.760733280172907, + 7.0851520286061715, + 9.166154725549909, + 11.851002914078222, + 14.299526479041802, + 17.824486478896755, + 20.001385183145587, + 21.55051631080655, + 23.694836555507216, + 25.16076616472154, + 28.376506563140904, + 31.04420571488392, + 31.767619678686284, + 32.41338695209089, + 33.03895717277638, + 33.52107246113064, + 33.93238197812255, + 34.28515701686075, + 34.57937114299176, + 34.79862704736057, + 35.04870803389728, + 35.21945769978805, + 35.30327494421492, + 35.43921705195892 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125465, + 2.162243131656477, + 2.5060808691081555, + 2.8001349443162447, + 3.1433397417613618, + 3.51300322369148, + 3.86219008683736, + 4.464779255638968, + 4.928774274573642, + 5.319554965835353, + 5.971683393342244, + 6.505025160074114, + 7.999044224603844, + 9.656080644028725, + 10.187731899710117, + 10.69735436184859, + 11.225541571174354, + 11.658083947114156, + 12.043988923044102, + 12.388510020459005, + 12.685394560974824, + 12.911789471602358, + 13.174494107752727, + 13.357160494824774, + 13.448175074785167, + 13.597705550780802 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235636394978, + 2.851915322058076, + 3.2003173586097446, + 3.5248622032947234, + 4.007786227614157, + 4.691977620003, + 5.4228253519562175, + 6.723576797681574, + 7.696120810444993, + 8.4756898296428, + 9.691908409648903, + 10.620349283162266, + 12.970530523455583, + 15.25361310075897, + 15.924347950523703, + 16.538293285925665, + 17.14647997428017, + 17.62275246691997, + 18.033170491207446, + 18.38743141997241, + 18.68388464044143, + 18.90524805525373, + 19.157350746592304, + 19.32984187590423, + 19.414809936649828, + 19.553142467845404 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168547412988, + 3.1872494839968932, + 3.5224012519079158, + 4.031264684469829, + 4.635920016563582, + 5.632160887211953, + 7.043074490642891, + 8.44802607693923, + 10.67645099278297, + 12.184551577907083, + 13.323059059768289, + 14.992466578871932, + 16.192730177481163, + 18.974630028976645, + 21.397445165628966, + 22.067679786806572, + 22.667692184686544, + 23.250732983822825, + 23.70043053879794, + 24.08439303790314, + 24.41347060489097, + 24.687594965103504, + 24.89182208900366, + 25.124393874636613, + 25.283247500207423, + 25.36131027429217, + 25.488106879710813 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.4511928331696207, + 2.7884199877775666, + 3.045014140913634, + 3.388306181083499, + 3.618029822367229, + 3.8037366903440106, + 4.108477620484242, + 4.358285763408167, + 5.094870218159509, + 6.012070610593097, + 6.331880016793466, + 6.653503399555731, + 7.003686766301562, + 7.306303498116334, + 7.5896556589297015, + 7.856555942825405, + 8.099674557020974, + 8.294602349153665, + 8.534382635022522, + 8.711372507514906, + 8.803497084261453, + 8.961786560961826 + ], + "5._384._0.0875": [ + 3.492500381356948, + 4.026728349510741, + 4.666098115265071, + 5.724945160584954, + 6.984488213508753, + 8.933227627873462, + 11.433431884259353, + 13.714753960706068, + 17.00835514419125, + 19.047692513317728, + 20.501013185351155, + 22.51588988002538, + 23.89501278054357, + 26.925640384216734, + 29.444003060787576, + 30.12741933540049, + 30.737707416515683, + 31.329108863034804, + 31.78507553471194, + 32.1741053813746, + 32.50784620395227, + 32.78623606525375, + 32.993697427804975, + 33.23033452888475, + 33.39189164845004, + 33.47118773739117, + 33.599768599883355 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.506080869086977, + 2.8001348882647212, + 3.143330666786107, + 3.512870911730432, + 3.8617304640235948, + 4.4616957820252345, + 4.91904904466308, + 5.300002817000829, + 5.927448705188466, + 6.434318899590187, + 7.837417054695422, + 9.383614599453436, + 9.879845210524456, + 10.356193518989778, + 10.850737208384473, + 11.25668817488915, + 11.61952576328977, + 11.944175744346513, + 12.22455269150674, + 12.438731140187045, + 12.68778368435581, + 12.861243670140722, + 12.947742971278375, + 13.089932069028706 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.555323563550897, + 2.8519151942207293, + 3.2003031783644196, + 3.5247323883733173, + 4.00711464757154, + 4.686887225547704, + 5.4021691669026906, + 6.647006999642085, + 7.562379284798, + 8.291323192704057, + 9.42527978077759, + 10.290225342135303, + 12.484258234159169, + 14.625688867701474, + 15.25688424837014, + 15.835546372630759, + 16.409682726340414, + 16.860067171468245, + 17.248555781517947, + 17.584297875264305, + 17.865553005074496, + 18.075684707207213, + 18.315163644222302, + 18.479069235427623, + 18.559811727157722, + 18.691234727515635 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "9": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351682355013046, + 3.1872251319223657, + 3.5222130555636157, + 4.030240417538139, + 4.6293854517733015, + 5.594619253556141, + 6.925845718706715, + 8.23463645001548, + 10.304490483559904, + 11.706190144927453, + 12.765560411565353, + 14.321640078006192, + 15.442419457771274, + 18.047513798876476, + 20.32390460904051, + 20.954626001765597, + 21.51975926295713, + 22.0693094594615, + 22.49353050094076, + 22.85584402301146, + 23.166526683799656, + 23.425438348160956, + 23.61834945310227, + 23.83807425857734, + 23.988146501870432, + 24.06188449656399, + 24.181618247608053 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.1114679242247285, + 2.4511928331645296, + 2.788419915981719, + 3.0450097449803226, + 3.388213498220197, + 3.6177617139220013, + 3.803225767635946, + 4.1069400247437935, + 4.3545647213459375, + 5.072588921692966, + 5.942535292729334, + 6.241884524529045, + 6.541803692846827, + 6.867677003279877, + 7.149103487211237, + 7.412657645928333, + 7.661116632419451, + 7.887736550824848, + 8.069715733251813, + 8.294090615660707, + 8.460149765147158, + 8.546746423803384, + 8.695874139410838 + ], + "5._384._0.0875": [ + 3.4922673671642155, + 4.025407381625051, + 4.65761000314903, + 5.679849020741786, + 6.866912477628726, + 8.681362865971103, + 11.002733924622245, + 13.122858413465476, + 16.190587150437658, + 18.09406809515091, + 19.45223593325187, + 21.337860401027793, + 22.62995579966315, + 25.474152469593502, + 27.841502531955218, + 28.484401478273337, + 29.0587312636168, + 29.615481279526062, + 30.04491204603352, + 30.411329912949366, + 30.725746271310406, + 30.988066711402006, + 31.183551382102294, + 31.406537318957692, + 31.558761460704943, + 31.6334680311559, + 31.75457882441506 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.162243131656475, + 2.5060808690627714, + 2.800134824205834, + 3.143320295394026, + 3.5127196625211985, + 3.8611948368911038, + 4.4576971662330065, + 4.906249283208717, + 5.2747045163098445, + 5.872744802467612, + 6.350097321514957, + 7.659409781716694, + 9.09794588203771, + 9.560212103232253, + 10.004475679658047, + 10.466400919276207, + 10.846337339616982, + 11.186448108690348, + 11.491342020848208, + 11.755160614174512, + 11.956998741216212, + 12.192149771883958, + 12.356171819698993, + 12.438024916176493, + 12.572641509955476 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.555323563449641, + 2.851915048120905, + 3.2002869723980694, + 3.5245839990581023, + 4.00631694859843, + 4.680216219429643, + 5.37546007326517, + 6.55577982259123, + 7.411048957383922, + 8.089146909587273, + 9.14267438602308, + 9.946440817873613, + 11.989664721339658, + 13.992083013726932, + 14.583913617631666, + 15.127263126098903, + 15.667129326378092, + 16.091300232693108, + 16.45751277030909, + 16.774368419053175, + 17.040072852039366, + 17.23869375688599, + 17.46521133366614, + 17.62029240313496, + 17.69668996691797, + 17.821011371515443 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_12": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 10.0, + 45.0 + ], + [ + 10.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351701849505733, + 3.1873773322045555, + 3.5233872557844053, + 4.036135234549541, + 4.662699581729988, + 5.785768662447173, + 7.571641409829164, + 9.50881825613448, + 12.755572055904645, + 15.012159356061348, + 16.728771769574365, + 19.250735623823363, + 21.065184196786834, + 25.24560072728378, + 28.854559123983297, + 29.84801985306734, + 30.73296971927921, + 31.589304732743425, + 32.245984638519246, + 32.80571779489693, + 33.283566725404, + 33.680267249804096, + 33.97561122597501, + 34.3114126921343, + 34.54087517878534, + 34.65377535489051, + 34.83769804622159 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615415, + 1.481384749141308, + 1.8198213217004349, + 2.111467924224725, + 2.4511928331963553, + 2.7884203647057637, + 3.0450372195654287, + 3.388792614135331, + 3.619425307297801, + 3.8063039186410133, + 4.115342193190791, + 4.373717239478178, + 5.184641383754477, + 6.3144868881912775, + 6.736868232139086, + 7.174436775010215, + 7.6631885726462095, + 8.094356584594404, + 8.503721838172462, + 8.892985485491563, + 9.249361189736913, + 9.535464906278774, + 9.886130237474541, + 10.143743554760457, + 10.27751992593581, + 10.506655691570769 + ], + "5._384._0.0875": [ + 3.4937337329366356, + 4.03289104185465, + 4.700655306514271, + 5.9112624134683855, + 7.5139628454097, + 10.22364806362348, + 13.907107054695034, + 17.353109404794516, + 22.373461435599733, + 25.494619074805083, + 27.7205379519107, + 30.798887924412377, + 32.901957072188175, + 37.488993921613016, + 41.267625599693055, + 42.28855701532916, + 43.197328601354776, + 44.07543301788378, + 44.74987805235317, + 45.32489908676663, + 45.81706603878857, + 46.226811144920916, + 46.53213585141493, + 46.880177439235055, + 47.11794053738089, + 47.2347561620023, + 47.42457427357507 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.867903705312542, + 2.162243131656476, + 2.506080869214057, + 2.8001352245738613, + 3.143385116612377, + 3.513664061788701, + 3.864432300131303, + 4.478439347552773, + 4.970340704712142, + 5.401779013141828, + 6.156030922128863, + 6.801165191966245, + 8.712660199208942, + 10.945483028435211, + 11.677103225823178, + 12.380277776434658, + 13.110249267238094, + 13.70764977224011, + 14.239953364485384, + 14.713651867935889, + 15.12020413994692, + 15.429249150345681, + 15.785908303356347, + 16.03317084866372, + 16.156358461528185, + 16.359058008292156 + ], + "5._96._0.075": [ + 2.209271810327408, + 2.5553235640824994, + 2.851915961244815, + 3.200388259675925, + 3.525510638439076, + 4.011002220271069, + 4.714192363627955, + 5.510038941771282, + 7.046668575659583, + 8.273601320311952, + 9.292456552186316, + 10.926959231763913, + 12.200023434970138, + 15.465077547147722, + 18.653867930167102, + 19.591548266596874, + 20.44651743894538, + 21.291124549771318, + 21.94933662865374, + 22.515244965522967, + 23.001548763248856, + 23.406744054756196, + 23.70870933196115, + 24.05146904315335, + 24.285829413499293, + 24.401380220485542, + 24.590033185333784 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 10.0, + 45.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351700662883714, + 3.187368067719998, + 3.523315623838937, + 4.035756154476261, + 4.660478180180104, + 5.77355475816844, + 7.531793876370036, + 9.430262247376765, + 12.598870872687712, + 14.794399951803767, + 16.46163159592802, + 18.90708076497668, + 20.664004589015647, + 24.707635927069447, + 28.195773353292413, + 29.155775286703474, + 30.01123183286254, + 30.839254695970276, + 31.47453711296852, + 32.01610511288437, + 32.4786189479572, + 32.862718450448966, + 33.14870099954239, + 33.473914629963886, + 33.696130638353175, + 33.80544986341263, + 33.983480639900506 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615415, + 1.4813847491413088, + 1.8198213217004349, + 2.1114679242247254, + 2.4511928331944137, + 2.7884203373921275, + 3.045035547198934, + 3.388757349534459, + 3.6193234000623176, + 3.8061117959942314, + 4.11479289987188, + 4.372445822636612, + 5.1774230621583275, + 6.291568073899113, + 6.706701461061793, + 7.136119386859747, + 7.615061547284786, + 8.036964465588868, + 8.437069175072413, + 8.817099015620569, + 9.164663446744813, + 9.443462258858487, + 9.784899119974062, + 10.035468607207008, + 10.165447638796651, + 10.387804534941766 + ], + "5._384._0.0875": [ + 3.4936439342129066, + 4.032403801126378, + 4.69778953445733, + 5.896550334583437, + 7.4740171565258615, + 10.127487750182983, + 13.718300812505131, + 17.06601313555897, + 21.927901465065375, + 24.94352304435585, + 27.091970979505216, + 30.061506164799113, + 32.089368204903636, + 36.51342922748468, + 40.15964344088665, + 41.14511958179102, + 42.02262803286556, + 42.870776621356534, + 43.5224845316234, + 44.078165080912605, + 44.553903332022244, + 44.95006066743347, + 45.2452657400341, + 45.58180044856005, + 45.81168900623362, + 45.924623754754954, + 46.10809290290801 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.162243131656478, + 2.5060808692048484, + 2.800135200203635, + 3.1433811709659003, + 3.513606499668842, + 3.864230035645745, + 4.477056387588657, + 4.966131066792743, + 5.393623234835308, + 6.1384232433532215, + 6.773593095094789, + 8.648245690622783, + 10.829422201857946, + 11.542510620209248, + 12.227198748495795, + 12.937355593469984, + 13.518016195653919, + 14.035108553205257, + 14.49503835657733, + 14.889633020867935, + 15.189505683159956, + 15.535564948408433, + 15.775418926696993, + 15.894873198040232, + 16.091333216443264 + ], + "5._96._0.075": [ + 2.209271810327425, + 2.5553235640439804, + 2.851915905663361, + 3.200382094333641, + 3.525454165619242, + 4.0107043115255445, + 4.711927119513927, + 5.501357881765984, + 7.016332874245284, + 8.22091203431324, + 9.218865807534714, + 10.815977695270371, + 12.057453515284902, + 15.233664626775743, + 18.32757450224328, + 19.235784652001357, + 20.063833810709863, + 20.881651288325582, + 21.51900438526767, + 22.066963131251402, + 22.537946895572304, + 22.930487205425923, + 23.22305476504056, + 23.55523924297927, + 23.78236642033417, + 23.894331179412468, + 24.077058660135155 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169936838707, + 3.187357961012242, + 3.523237480289771, + 4.035341405262811, + 4.65797028724778, + 5.75882369602894, + 7.481208938338796, + 9.328625180706075, + 12.396294704515208, + 14.515377757837895, + 16.12245264243817, + 18.47752932874295, + 20.168539781523204, + 24.06127638037347, + 27.421582720268233, + 28.346860505593618, + 29.171860689841807, + 29.97076283342608, + 30.584080157108986, + 31.10702526857451, + 31.5538203838268, + 31.924999276574276, + 32.20138267837992, + 32.515731523688075, + 32.73051453157368, + 32.83616377080392, + 33.008164748816725 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615413, + 1.4813847491413081, + 1.819821321700435, + 2.111467924224727, + 2.4511928331923025, + 2.788420307595429, + 3.0450337227991504, + 3.38871887912414, + 3.619212226533639, + 3.8059020915137163, + 4.114188627562611, + 4.37102387147908, + 5.1688371755681635, + 6.262732836988424, + 6.668242947168063, + 7.086812109058595, + 7.552717668808667, + 7.962396752973636, + 8.350394064151498, + 8.718512988744807, + 9.054903900569213, + 9.324611365019914, + 9.654865367006904, + 9.897199772612902, + 10.022881027405544, + 10.237875097929765 + ], + "5._384._0.0875": [ + 3.493545979357752, + 4.031869812169251, + 4.694531437129179, + 5.8786750443163, + 7.423338416500322, + 10.003053580445151, + 13.47522292721847, + 16.702043266579665, + 21.37895756696123, + 24.276841684029883, + 26.34099318974093, + 29.194485600562544, + 31.14343884902437, + 35.39879911150831, + 38.90928573535859, + 39.85853445039204, + 40.70407345945762, + 41.52157095760584, + 42.14997713985703, + 42.685829711258144, + 43.14470213180843, + 43.52689156418434, + 43.81169034873118, + 44.136382183766656, + 44.35816670372198, + 44.46710921583603, + 44.64405411359549 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.8679037053125405, + 2.1622431316564774, + 2.506080869194802, + 2.80013517361793, + 3.1433768666245863, + 3.513543704875711, + 3.864009279004955, + 4.475512181494128, + 4.961256468242096, + 5.383900715488615, + 6.116642907482122, + 6.7387763353261825, + 8.564849215296721, + 10.678974141833171, + 11.368581996361018, + 12.030323868954445, + 12.71639555845682, + 13.2771831411978, + 13.77659530270466, + 14.2208795139403, + 14.60218810178792, + 14.89206939064673, + 15.22682115828185, + 15.458932797291858, + 15.574540050528642, + 15.76465336559992 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235640019545, + 2.8519158450290436, + 3.2003753685065184, + 3.5253925591553306, + 4.010378798560248, + 4.709367374656484, + 5.491027873871172, + 6.978132688015861, + 8.153186569009439, + 9.123500178482686, + 10.671817350443908, + 11.872726829462746, + 14.939009970341814, + 17.922253486815258, + 18.7975477172747, + 19.59606218488231, + 20.38497713097121, + 21.00015824027503, + 21.529245847835934, + 21.98427201256937, + 22.363726302173294, + 22.646622473931057, + 22.96796381820676, + 23.18770218689182, + 23.29601527922728, + 23.47272682283501 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351697950605055, + 3.1873468917640815, + 3.523151895131462, + 4.034887188993776, + 4.655221962699407, + 5.742516112592612, + 7.423990637960219, + 9.211962682637122, + 12.162492404437895, + 14.194040192705389, + 15.73330265683915, + 17.98852189694247, + 19.608047297495983, + 23.340770525483133, + 26.568689875892996, + 27.45838555407386, + 28.25223017426062, + 29.02139656197997, + 29.612298481814573, + 30.11624777579874, + 30.547005541905033, + 30.90499564768252, + 31.171579876947998, + 31.474831667628273, + 31.682024869596216, + 31.783928894017386, + 31.949782969294617 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413081, + 1.8198213217004342, + 2.111467924224728, + 2.4511928331899866, + 2.788420274960955, + 3.045031724647041, + 3.3886767449427495, + 3.61909046631129, + 3.805672420448096, + 4.113526809681826, + 4.3694658178510215, + 5.159361328935494, + 6.230249402736755, + 6.624563534725766, + 7.0304013736868205, + 7.480933968126224, + 7.876190020036858, + 8.249922305035225, + 8.604076883501456, + 8.927470721004811, + 9.186700795693616, + 9.504255816948449, + 9.73743298315879, + 9.85843031354527, + 10.065599720470289 + ], + "5._384._0.0875": [ + 3.493438701755843, + 4.031285034624454, + 4.690959645285558, + 5.858844675874362, + 7.366037416072492, + 9.860126669886954, + 13.195191663745947, + 16.285146610256064, + 20.759429011744583, + 23.531871088802706, + 25.507478249787066, + 28.24045985281271, + 30.10819293865574, + 34.191051493484615, + 37.56337240323908, + 38.475789349773436, + 39.28879911764915, + 40.075090463659876, + 40.67974461224885, + 41.195380867459704, + 41.63704104821852, + 42.004963110995455, + 42.27913056494604, + 42.591717346851276, + 42.80521914802795, + 42.9100827305611, + 43.08036677609319 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.867903705312543, + 2.1622431316564787, + 2.506080869183797, + 2.800135144500257, + 3.143372152346343, + 3.513474929960971, + 3.863767506306452, + 4.47382065024685, + 4.955900402332189, + 5.373158834491221, + 6.0922874912198255, + 6.699448350771637, + 8.469003020163358, + 10.504796128755707, + 11.167170397129654, + 11.802629706062884, + 12.461447210175509, + 13.000091713792745, + 13.480042992290013, + 13.907348332600652, + 14.274435889727005, + 14.553746623694112, + 14.876679901343861, + 15.100796907466977, + 15.212464919298663, + 15.396129358755836 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.555323563955931, + 2.851915778620034, + 3.200368002125412, + 3.52532508573895, + 4.010022304562207, + 4.706562155928773, + 5.479628808487404, + 6.935107981691061, + 8.075862713791375, + 9.013794632695499, + 10.505114370512137, + 11.658882096296706, + 14.600098083350101, + 17.461736616928114, + 18.301851620547314, + 19.0690861771182, + 19.827684559045153, + 20.419810412256226, + 20.929386857781683, + 21.3679965537758, + 21.73403906788882, + 22.007046415213516, + 22.31732005603884, + 22.529532202934423, + 22.634132759271917, + 22.804740108485987 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169639104507, + 3.1873347155949525, + 3.523057752222324, + 4.0343875891038445, + 4.652199696453696, + 5.724599291584141, + 7.361095526374308, + 9.083374018955958, + 11.904911215119224, + 13.840979221041188, + 15.307076759622749, + 17.456066827272277, + 19.00048876950353, + 22.56731888911211, + 25.659721105392578, + 26.51318430233345, + 27.275299121417813, + 28.014195576080642, + 28.58227257770923, + 29.066878802324272, + 29.48129717218742, + 29.82584197888781, + 30.08243530512464, + 30.37436816852459, + 30.573821324894453, + 30.671907654231347, + 30.831501325683075 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413081, + 1.8198213217004349, + 2.111467924224728, + 2.451192833187442, + 2.78842023906303, + 3.0450295266797656, + 3.3886303974368404, + 3.6189565315899053, + 3.8054197887704073, + 4.112798857959954, + 4.367752146381049, + 5.148945077577106, + 6.194514420758195, + 6.5764202345674185, + 6.968078491973555, + 7.401447173105256, + 7.780588576526247, + 8.138394390498354, + 8.47700579753319, + 8.786006464002284, + 9.03370188838254, + 9.337404101228508, + 9.560723593569191, + 9.676742221651276, + 9.875717960575416 + ], + "5._384._0.0875": [ + 3.4933207040032284, + 4.030641855398587, + 4.687032211436557, + 5.837061547862084, + 7.303055885374456, + 9.702763477491109, + 12.887366406792127, + 15.829292168565107, + 20.08945328922453, + 22.73172218691465, + 24.616177788911802, + 27.225863502849478, + 29.01087749280093, + 32.918488583519526, + 36.15062600488268, + 37.02567782689224, + 37.805660636552275, + 38.560249259685264, + 39.140749209954706, + 39.63582275064856, + 40.05996335477864, + 40.413353959966265, + 40.676692272478, + 40.97694496441475, + 41.18200824768091, + 41.28271728233089, + 41.44622110946595 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.8679037053125411, + 2.162243131656476, + 2.506080869171695, + 2.8001351124708154, + 3.1433669666406976, + 3.513399277959122, + 3.8635015662988796, + 4.471960335408324, + 4.950010771506147, + 5.361346319673909, + 6.065485783545609, + 6.656110877436267, + 8.363172547650763, + 10.312177478158748, + 10.94450979161105, + 11.5512200177552, + 12.18046032151883, + 12.695339935897987, + 13.154559175929332, + 13.563939290061349, + 13.916136943395625, + 14.18445175925579, + 14.495169398468168, + 14.711077049625908, + 14.818718740658907, + 14.995820570959406 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.5553235639052985, + 2.8519157055701188, + 3.2003598991073883, + 3.525250865379163, + 4.009630184544969, + 4.703477370595241, + 5.467100947527281, + 6.887808805595288, + 7.990613741482634, + 8.892587451272261, + 10.320790330927453, + 11.42256358142826, + 14.227907460460838, + 16.960488560754087, + 17.763957004413324, + 18.498727298227834, + 19.22602582213296, + 19.794459410393642, + 20.284035556527, + 20.705854378166386, + 21.05819940100925, + 21.32111595640354, + 21.620101316723638, + 21.824645109970966, + 21.92546725483972, + 22.08987081929905 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351694667321015, + 3.1873212577285086, + 3.522953700465685, + 4.033835446061147, + 4.6488603637739825, + 5.704838382802868, + 7.292167179356039, + 8.943213899930043, + 11.62657302809797, + 13.46165104892942, + 14.851065334916425, + 16.889816490161323, + 18.356936692431997, + 21.75414751699534, + 24.70871918788142, + 25.5253945547089, + 26.2552566831709, + 26.96337252081599, + 27.50821830371826, + 27.973131652985458, + 28.370902422625377, + 28.701738544256756, + 28.94814383888156, + 29.228530205841164, + 29.42008878828514, + 29.51428253449788, + 29.66749794217084 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.4511928331846287, + 2.788420199386378, + 3.045027097347568, + 3.3885791713602016, + 3.6188085003333264, + 3.8051405722001475, + 4.111994338155787, + 4.365858322479976, + 5.137445685932592, + 6.155232208261683, + 6.523558362153832, + 6.8997068937724935, + 7.314351795688247, + 7.675973476946185, + 8.016528573427804, + 8.338387624527241, + 8.631963571666464, + 8.867362684951592, + 9.15639067993381, + 9.369354667857317, + 9.480180938333183, + 9.670675129747707 + ], + "5._384._0.0875": [ + 3.493190294708167, + 4.029931065808173, + 4.682693210443546, + 5.813050521489196, + 7.234025157061668, + 9.531753297262346, + 12.555893354172754, + 15.342368026385236, + 19.38145383001211, + 21.89083432223881, + 23.682593630057955, + 26.167228996910097, + 27.868497291163237, + 31.598682889173094, + 34.68880229294497, + 35.52597806980114, + 36.27245630131035, + 36.99486358496556, + 37.55082232545933, + 38.025000100878074, + 38.43132686316961, + 38.76993433440082, + 39.0222554298613, + 39.309957306218074, + 39.50643481853604, + 39.60291778762339, + 39.75952827718144 + ], + "5._48._0.075": [ + 1.5268463243731414, + 1.8679037053125422, + 2.1622431316564774, + 2.506080869158317, + 2.8001350770698523, + 3.143361235071808, + 3.513315663081507, + 3.8632076447464807, + 4.469904643258422, + 4.9435042322978315, + 5.34830227005173, + 6.035935458504106, + 6.608413904472728, + 8.247584597023435, + 10.103138425911082, + 10.70341541448311, + 11.279640936112994, + 11.877698216419875, + 12.367722168327546, + 12.805348237646706, + 13.196152674362038, + 13.53298271377886, + 13.78998008040917, + 14.088152587602004, + 14.295651270604786, + 14.399177278347306, + 14.569585564721729 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.555323563849342, + 2.8519156248307422, + 3.2003509431415487, + 3.5251688328353, + 4.009196817230798, + 4.700069013503965, + 5.453273196177969, + 6.835857354646944, + 7.897272620391257, + 8.760180820036613, + 10.120353420158063, + 11.166512765419224, + 13.828545149551942, + 16.427289312958077, + 17.193194500130993, + 17.894687061440898, + 18.589972331000126, + 19.13421499130329, + 19.603379216211263, + 20.008066343825096, + 20.346434714478765, + 20.599054233991417, + 20.88651674142079, + 21.08323545658573, + 21.180204360775477, + 21.33828811419705 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351692752072415, + 3.1873063045493546, + 3.5228380885509867, + 4.033222010816343, + 4.645151309197496, + 5.682934371013774, + 7.216342363659346, + 8.79047969463501, + 11.328295452494057, + 13.059012615841697, + 14.369843668284185, + 16.296313907148516, + 17.685044686207007, + 20.910443330279353, + 23.7253569103511, + 24.504726619397307, + 25.20183000215297, + 25.878652725864363, + 26.39984870181207, + 26.84470577273509, + 27.225506045560326, + 27.542356418315574, + 27.778366158301996, + 28.04696682466751, + 28.230468036370954, + 28.320690038809726, + 28.467402125503874 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615422, + 1.4813847491413084, + 1.8198213217004355, + 2.111467924224729, + 2.4511928331815027, + 2.788420155301211, + 3.0450243980896365, + 3.388522253637786, + 3.6186440234456096, + 3.8048303413143003, + 4.111100499194423, + 4.363754361925693, + 5.12468524071376, + 6.111860120117549, + 6.465303125267754, + 6.824539912707816, + 7.218937688844759, + 7.561798848408099, + 7.8840426881336505, + 8.188275337458478, + 8.465748146445083, + 8.688382773771767, + 8.96224564256896, + 9.164552425325523, + 9.270048921294165, + 9.451850171167285 + ], + "5._384._0.0875": [ + 3.493045406909794, + 4.029141413763202, + 4.677874377172423, + 5.786453193952192, + 7.158075361782508, + 9.346244151058208, + 12.202448380804917, + 14.829317009683416, + 18.64400983326215, + 21.019239585768332, + 22.717490970978314, + 25.075989985477175, + 26.69277518470494, + 30.24367791644467, + 33.190019533989904, + 33.98881042356254, + 34.701309286183985, + 35.39105807512106, + 35.922090266351915, + 36.37504085461613, + 36.76326180660761, + 37.08683725233757, + 37.32795541512417, + 37.602893190699895, + 37.79064010310405, + 37.88282661291865, + 38.03243221600603 + ], + "5._48._0.075": [ + 1.526846324373138, + 1.8679037053125451, + 2.162243131656477, + 2.5060808691434553, + 2.8001350377354473, + 3.1433548666625617, + 3.5132227582688538, + 3.862881080193673, + 4.467621089046288, + 4.936278510150379, + 5.333823480558973, + 6.003192801220435, + 6.55568705253906, + 8.121347621201968, + 9.878072659662049, + 10.44502914072763, + 10.989720386739345, + 11.555661789779768, + 12.020213598808052, + 12.435742876003433, + 12.80756581321938, + 13.128699028453044, + 13.374133035362867, + 13.659473771462975, + 13.858367896911558, + 13.957683335648534, + 14.121248430133155 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.555323563787166, + 2.8519155351203227, + 3.2003409920701844, + 3.5250776861620685, + 4.008715333080941, + 4.696283358474196, + 5.437932630813183, + 6.778550738104656, + 7.794848352883934, + 8.61564113463, + 9.903607786760674, + 10.891551113990092, + 13.405792783554235, + 15.868139040017482, + 16.595962007412805, + 17.26362663640057, + 17.92636598546549, + 18.445998735283954, + 18.894379163728985, + 19.281602422107856, + 19.605706218370653, + 19.847809891292208, + 20.123494174589986, + 20.312213195159327, + 20.405243949062267, + 20.556874261526918 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169061150066, + 3.1872895921798565, + 3.5227088766648604, + 4.0325364777055706, + 4.641007782413, + 5.658500750207482, + 7.132268470034079, + 8.623449343628677, + 11.010363400932526, + 12.635530963060924, + 13.867421113694691, + 15.681321729930076, + 16.9914939260877, + 20.044078097412772, + 22.717827824575938, + 23.45938595363094, + 24.123228535278713, + 24.76823576029038, + 25.265347170264263, + 25.689768751259788, + 26.05325966092869, + 26.355832742108742, + 26.58122846393225, + 26.837791900140193, + 27.013064255642643, + 27.099230915988173, + 27.239307222893082 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004358, + 2.1114679242247285, + 2.451192833178008, + 2.788420106029551, + 3.0450213812720266, + 3.388458639887779, + 3.6184601991837324, + 3.8044836248196963, + 4.110101592906627, + 4.361403212527056, + 5.1104379768837935, + 6.063575179750482, + 6.400599911906511, + 6.741398601870809, + 7.114059302712383, + 7.437126189713416, + 7.740320999133757, + 8.026443677774672, + 8.287525460489775, + 8.497238379699052, + 8.75578195461342, + 8.947320148377033, + 9.047421655214473, + 9.220392176877704 + ], + "5._384._0.0875": [ + 3.4928834878124384, + 4.028259002060516, + 4.672491895352848, + 5.756797626080171, + 7.073849347119127, + 9.144631278524237, + 11.828166169834171, + 14.294447599352807, + 17.884556047265065, + 20.125493217855155, + 21.729979019362936, + 23.96173891052242, + 25.493503145166947, + 28.863478121234948, + 31.6643202329403, + 32.42421457744557, + 33.1022583770891, + 33.75886970864573, + 34.264589006473905, + 34.69598026307794, + 35.06580346348366, + 35.374098645287745, + 35.603828843820935, + 35.8657905690177, + 36.044663005799336, + 36.132483072203954, + 36.27497269903298 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.506080869126844, + 2.800134993773471, + 3.1433477490294797, + 3.5131189242342717, + 3.86251611488768, + 4.465069622670641, + 4.9282062353729215, + 5.317646464906576, + 5.966625396865933, + 6.496915803791992, + 7.982959534629555, + 9.636974818978736, + 10.170141254256304, + 10.682951691756664, + 11.21650956977289, + 11.655412200121724, + 12.048663705214532, + 12.401310007080907, + 12.706538847783428, + 12.94022262437368, + 13.212474629812647, + 13.402567002639069, + 13.49756982860258, + 13.654122557735542 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.555323563717674, + 2.8519154348557367, + 3.200329870286764, + 3.524975817095375, + 4.008177247362403, + 4.692054343361934, + 5.42080977187348, + 6.71482391315621, + 7.681756583205836, + 8.457403698491339, + 9.669827640897697, + 10.598076547296891, + 12.963005385273052, + 15.288326111918584, + 15.97784276658472, + 16.611335751745102, + 17.241130908637352, + 17.73578500663625, + 18.16303200023923, + 18.532457214659715, + 18.841993969272732, + 19.073347729459314, + 19.336975974182366, + 19.51750232949626, + 19.606499954938155, + 19.75152589049694 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "9": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168820335791, + 3.187270790773255, + 3.5225635151528016, + 4.031765469965083, + 4.6363361634092515, + 5.630660208441333, + 7.037496462199705, + 8.440253089683187, + 10.674412620296918, + 12.195325282706504, + 13.349474817115356, + 15.052185160059848, + 16.28445570374317, + 19.16430115526286, + 21.695669100553086, + 22.398919210476702, + 23.0290050788441, + 23.641667916021152, + 24.114247430715064, + 24.517841817932908, + 24.86367176909232, + 25.15166449661048, + 25.366219054701332, + 25.61048409667205, + 25.777349309012482, + 25.859373524514627, + 25.992675679292095 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004344, + 2.111467924224728, + 2.451192833174076, + 2.788420050598932, + 3.045017987352319, + 3.388387074640421, + 3.618253400513142, + 3.8040935789966666, + 4.108977355227687, + 4.358751412058826, + 5.0942111790180915, + 6.008730911493528, + 6.3276515839519245, + 6.648591126294976, + 6.998399352904462, + 7.301137872217232, + 7.585098404276696, + 7.853167609759989, + 8.098037085814068, + 8.29500903595549, + 8.538421549363239, + 8.719264213054668, + 8.81397473266743, + 8.978048827462374 + ], + "5._384._0.0875": [ + 3.4927013315174813, + 4.027266766424562, + 4.6664185275098635, + 5.723004371629181, + 6.978883886928472, + 8.925501489805796, + 11.435750016227884, + 13.743807185787881, + 17.11205532306738, + 19.219542039920853, + 20.730501362609985, + 22.83535721579254, + 24.28174390132726, + 27.469353095694842, + 30.123026714888407, + 30.843516068962476, + 31.48663416164483, + 32.109633556817315, + 32.5896578436115, + 32.999161439293864, + 33.350299020180444, + 33.643069835161064, + 33.86123033057149, + 34.11000840807787, + 34.279865503117335, + 34.3632505515142, + 34.4985151565538 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125465, + 2.162243131656477, + 2.5060808691081555, + 2.8001349443162447, + 3.1433397416932505, + 3.5130021119162826, + 3.8621055699374147, + 4.462196562783342, + 4.919051972095499, + 5.299195226354196, + 5.924845874992355, + 6.430161403441954, + 7.830754090469172, + 9.380800785596874, + 9.88062068373191, + 10.361961078757899, + 10.863541480220812, + 11.277033943208592, + 11.64812758290201, + 11.981593325778183, + 12.270818245324415, + 12.492617061956064, + 12.751548716414526, + 12.932638129533418, + 13.023217957246892, + 13.172567637004335 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235636394973, + 2.851915322058076, + 3.200317358283219, + 3.5248612153467165, + 4.007572027083414, + 4.687286070269686, + 5.401317677549821, + 6.642551399427517, + 7.555684641398781, + 8.28380259035157, + 9.419100452637855, + 10.287747630216895, + 12.505086775877706, + 14.694535397543788, + 15.345760324027115, + 15.944930308940013, + 16.541505415177006, + 17.010855642228805, + 17.41663898345978, + 17.767929105565926, + 18.06258197124549, + 18.282936882487498, + 18.53420964060807, + 18.706332631319494, + 18.79119241300314, + 18.92944624761837 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "10": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351685474130024, + 3.187249482607997, + 3.5223986799969045, + 4.030842764187543, + 4.630263700158795, + 5.595513946592485, + 6.927733614721805, + 8.240639696377334, + 10.326650759792157, + 11.747694026621886, + 12.8270944375903, + 14.421908414054384, + 15.577896339318409, + 18.28644545981178, + 20.674657845440766, + 21.33914011482764, + 21.934999199317858, + 22.514797715920604, + 22.96239594883605, + 23.344766872711443, + 23.67257826647401, + 23.945681847920273, + 24.149163793417646, + 24.38086504714546, + 24.539141780899453, + 24.616934749663002, + 24.74332127087904 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.451192833169621, + 2.7884199877775666, + 3.045014140910314, + 3.388305963195651, + 3.6180180656234424, + 3.8036404873245324, + 4.107575444520174, + 4.35530905340396, + 5.07336657640191, + 5.943612955637592, + 6.243391001692415, + 6.544042652949955, + 6.871147639492439, + 7.15410913507701, + 7.419588926181438, + 7.6704241936796995, + 7.899836666723129, + 8.084632646287867, + 8.31347331042552, + 8.483890372520284, + 8.573288069689808, + 8.72847666592792 + ], + "5._384._0.0875": [ + 3.492497221441309, + 4.0260695563170295, + 4.658515742182587, + 5.680777320031713, + 6.868794883191038, + 8.689955388313917, + 11.032981251033448, + 13.18914586383845, + 16.34164538728959, + 18.317736639221952, + 19.73604871864413, + 21.71443909658623, + 23.075358134807388, + 26.07950378318006, + 28.584469299613907, + 29.26506637708704, + 29.872809837971122, + 30.461744093464425, + 30.915709566257956, + 31.303013311139498, + 31.635192809519225, + 31.912209380847465, + 32.118629434617716, + 32.35402984209235, + 32.51474010100278, + 32.593626061761064, + 32.72156352150346 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.506080869086976, + 2.8001348882647195, + 3.143330666719582, + 3.512869691191499, + 3.861630624973533, + 4.458497196817068, + 4.907103154613487, + 5.2755244755684805, + 5.8736080703971, + 6.351280337616267, + 7.664221020583581, + 9.113715745519105, + 9.58172803204153, + 10.032890103008945, + 10.503646856322852, + 10.892419300491099, + 11.241805108572569, + 11.556300786282959, + 11.829547661619095, + 12.039390517125074, + 12.284804843244387, + 12.45668736904713, + 12.542724045548091, + 12.684652702338845 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235635508975, + 2.8519151942207297, + 3.200303178038176, + 3.5247313056631255, + 4.006857928803633, + 4.681084998534726, + 5.376327067420629, + 6.557116435048439, + 7.414045300469719, + 8.094677371128153, + 9.154889066344658, + 9.966350738529613, + 12.041781312752608, + 14.09851603303144, + 14.711750399986228, + 15.276694247361315, + 15.839938603382931, + 16.28372985398441, + 16.667755842976312, + 17.00058175686999, + 17.280025507815726, + 17.489120351630966, + 17.72771802483841, + 17.891209284896668, + 17.97181645892461, + 18.103112688898026 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_13": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 10.0, + 45.0 + ], + [ + 10.0, + 50.0 + ], + [ + 10.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351703948914326, + 3.187393722371707, + 3.5235125611662546, + 4.036592721606381, + 4.663966469878768, + 5.7910884930263755, + 7.590827146480104, + 9.552362914754168, + 12.860954745049568, + 15.176318227789663, + 16.946513824186752, + 19.561079619064884, + 21.452722346572823, + 25.840081651737222, + 29.656218220256306, + 30.71034898367901, + 31.649727477142193, + 32.55897014023766, + 33.2559189033115, + 33.8499956688737, + 34.35688311417592, + 34.77744427971924, + 35.09051813475776, + 35.44633932816535, + 35.68951847743068, + 35.80921162055563, + 36.00434901345772 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615422, + 1.4813847491413088, + 1.819821321700434, + 2.1114679242247245, + 2.45119283319978, + 2.788420413029892, + 3.0450401783657233, + 3.3888548823529194, + 3.619599387529322, + 3.8065949208343492, + 4.115876254568331, + 4.3745661827873725, + 5.187839426346987, + 6.325141694184505, + 6.75159022250657, + 7.194174090912628, + 7.689556321370493, + 8.127590210899639, + 8.544451491677748, + 8.941882822209099, + 9.306800714450361, + 9.600660162324246, + 9.962222489029132, + 10.229247937664944, + 10.368614377393875, + 10.608941346845281 + ], + "5._384._0.0875": [ + 3.493889465989209, + 4.0334189414290815, + 4.702176893791388, + 5.91768510173365, + 7.533147404423962, + 10.27913137631771, + 14.039827779817143, + 17.58725865420212, + 22.80588396071582, + 26.080156549524123, + 28.42762660757363, + 31.687381382066352, + 33.922073686396445, + 38.806661004712105, + 42.83478525652416, + 43.92322677287295, + 44.89147190459735, + 45.82651278848898, + 46.54402256358942, + 47.155644273051145, + 47.67879834505296, + 48.1140868005178, + 48.43841680343214, + 48.80801970525751, + 49.06053815922333, + 49.18463324488815, + 49.386390485005386 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.867903705312543, + 2.1622431316564743, + 2.5060808692303485, + 2.8001352676904148, + 3.143392097330229, + 3.513765218916953, + 3.864738324357906, + 4.479358876766392, + 4.972352120125994, + 5.405370060618985, + 6.1638537789461525, + 6.814037031113675, + 8.748201756805658, + 11.022476535528973, + 11.771821529923663, + 12.49420434940488, + 13.246541206690237, + 13.864410880651176, + 14.416749030282967, + 14.909885838242046, + 15.334473225191255, + 15.658175210643387, + 16.032798847741564, + 16.29333539635191, + 16.42346650151713, + 16.63817661573543 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.5553235641506546, + 2.8519160595812396, + 3.200399167390023, + 3.525609944533744, + 4.0113983261869794, + 4.7154708895988815, + 5.513852739322273, + 7.060782599950315, + 8.300653727890024, + 9.333327894406377, + 10.995941996622772, + 12.296043074631175, + 15.65151471299542, + 18.96165297150667, + 19.94238462395738, + 20.839057756035963, + 21.727267970697746, + 22.42088382825697, + 23.018276148487427, + 23.53217872750053, + 23.960660503525656, + 24.28017127057883, + 24.642900663806397, + 24.891064668625873, + 25.01351710646475, + 25.21366227080227 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 10.0, + 45.0 + ], + [ + 10.0, + 50.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351702941198207, + 3.187385854648715, + 3.523451671223574, + 4.036262235810107, + 4.661973004163471, + 5.780055246080196, + 7.55481825927987, + 9.4813431144635, + 12.718911953620292, + 14.978549329805961, + 16.70344875484935, + 19.247299919368285, + 21.08533036521956, + 25.34367967281986, + 29.044042874205665, + 30.06584984870106, + 30.976698064243706, + 31.858521657640363, + 32.53475306770379, + 33.11123879045363, + 33.60328778556999, + 34.011667416978426, + 34.31569342469638, + 34.661287870639214, + 34.897465451426804, + 35.01369605932676, + 35.20312737100379 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.1958031759615422, + 1.4813847491413077, + 1.8198213217004342, + 2.111467924224724, + 2.4511928331981343, + 2.788420389834312, + 3.045038758140518, + 3.388824929554402, + 3.619512594551364, + 3.806429801692937, + 4.115392227767905, + 4.373430306920933, + 5.181323092844489, + 6.304439961721919, + 6.724349757573671, + 7.159583445545743, + 7.646115106440057, + 8.075782820659736, + 8.484273313063449, + 8.873347140074362, + 9.230277038522825, + 9.517502422578913, + 9.870655710234457, + 10.131221093484992, + 10.267074477243979, + 10.501041776726366 + ], + "5._384._0.0875": [ + 3.493813072944534, + 4.032991736221592, + 4.699600527315202, + 5.904393172388143, + 7.497050174648133, + 10.192120501306826, + 13.86845607086848, + 17.325817410290615, + 22.39734008961974, + 25.572198278630285, + 27.846009389437622, + 31.001442361257457, + 33.16350049521525, + 37.88982681367792, + 41.788899230891644, + 42.842761492450926, + 43.78054569982186, + 44.68642561355518, + 45.38183842968992, + 45.97467059255641, + 46.48188311691143, + 46.904000935925076, + 47.21852356585431, + 47.57697998248826, + 47.82186911279685, + 47.94220249105995, + 48.137799149688774 + ], + "5._48._0.075": [ + 1.5268463243731347, + 1.8679037053125396, + 2.1622431316564747, + 2.5060808692225303, + 2.800135246994469, + 3.1433887465637644, + 3.51371630764508, + 3.8645644726266775, + 4.478123110240133, + 4.968558641626274, + 5.398007137718527, + 6.1479515331359, + 6.789140983240121, + 8.689999350297283, + 10.91743964410558, + 11.64996296046366, + 12.355503495995885, + 13.08972792783738, + 13.692216827512082, + 14.230518724077179, + 14.710875399257278, + 15.124292963934789, + 15.439374785094293, + 15.803970697291637, + 16.057443569907498, + 16.18399377102734, + 16.392681465537684 + ], + "5._96._0.075": [ + 2.209271810327415, + 2.5553235641179413, + 2.851916012379753, + 3.2003939315824836, + 3.5255619613824325, + 4.011140073977049, + 4.713437520110268, + 5.5060141696189655, + 7.033374337698853, + 8.253059361480588, + 9.26684775781819, + 10.895580034710758, + 12.16699092030588, + 15.441220685570386, + 18.66359596939624, + 19.6166922686971, + 20.488007489473745, + 21.350837928901086, + 22.024586694201478, + 22.604814261679017, + 23.1040207340756, + 23.52033522455821, + 23.830795406145466, + 24.183330785692316, + 24.4245124143375, + 24.543497234444636, + 24.737898783844233 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 10.0, + 45.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351701849505733, + 3.187377331284043, + 3.523385707370658, + 4.03590309800301, + 4.659735817468998, + 5.766809632871696, + 7.509233092047258, + 9.389555643586343, + 12.535078381434435, + 14.724518956051567, + 16.39380275877013, + 18.85336849747754, + 20.629368130262478, + 24.744129636089053, + 28.321288500550107, + 29.309435535690376, + 30.19075544098093, + 31.044339091878328, + 31.699291824899383, + 32.25774123342105, + 32.734585056783715, + 33.130481504912325, + 33.42523639990716, + 33.76034493814671, + 33.989347189743356, + 34.102032724543484, + 34.28563075250115 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615415, + 1.481384749141308, + 1.8198213217004349, + 2.111467924224725, + 2.451192833196354, + 2.788420364705765, + 3.045037219563231, + 3.388792480734275, + 3.6194185667794097, + 3.8062508152642867, + 4.114863236328609, + 4.372167713266765, + 5.173610547968895, + 6.278480632579722, + 6.689716413095073, + 7.115167143035718, + 7.5899245781112645, + 8.008531025603698, + 8.406042164992204, + 8.784288032958083, + 9.131030216097002, + 9.409940149141873, + 9.75281546350195, + 10.00575305433007, + 10.137590275946522, + 10.364593159379407 + ], + "5._384._0.0875": [ + 3.493730319530092, + 4.032526672005879, + 4.696688478584193, + 5.888314782788504, + 7.451382198600178, + 10.079588397174735, + 13.647455551000839, + 16.993246571511083, + 21.891447580133672, + 24.95433731726976, + 27.14730850716732, + 30.190696345596333, + 32.2761302293101, + 36.83810000720371, + 40.60474563976853, + 41.62326689802274, + 42.52990095167362, + 43.40594698799977, + 44.078718684013616, + 44.65229203912535, + 45.143142384967994, + 45.55172365199995, + 45.856162844513236, + 46.20314883253351, + 46.44018737475243, + 46.55665173920928, + 46.745919091259495 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.867903705312542, + 2.162243131656476, + 2.5060808692140566, + 2.80013522457386, + 3.143385116566968, + 3.513663320603361, + 3.864376036140122, + 4.476751757547339, + 4.964190023614896, + 5.38927309107264, + 6.12836012271379, + 6.757807288338399, + 8.614738690820014, + 10.78117610107224, + 11.4922628760779, + 12.176751136814495, + 12.888780405441734, + 13.472841551490161, + 13.994670226798084, + 14.460362437467532, + 14.86125377901453, + 15.166867290968625, + 15.52069435225811, + 15.76675275510918, + 15.889603351843489, + 16.09216065338234 + ], + "5._96._0.075": [ + 2.2092718103274085, + 2.555323564082498, + 2.8519159612448153, + 3.2003882594582405, + 3.5255099798072487, + 4.010859819580071, + 4.7111534076778865, + 5.496732743188164, + 6.998972506219095, + 8.192009659986468, + 9.18079871148941, + 10.76519879398915, + 11.99960359902584, + 15.172632225688488, + 18.291668526975045, + 19.21359984331629, + 20.056850552625356, + 20.89208775042147, + 21.544584989406562, + 22.10667675879911, + 22.59052089579318, + 22.994225624246692, + 23.295360726501144, + 23.637442095930687, + 23.87149535290919, + 23.986952929168336, + 24.175531670164276 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351700662883723, + 3.187368066759464, + 3.52331400797643, + 4.035512754911885, + 4.657302536509152, + 5.752250233174911, + 7.457970811133317, + 9.284662931907203, + 12.323410827403794, + 14.432239930141641, + 16.038527971312778, + 18.404402416282093, + 20.112678789337473, + 24.074275816506873, + 27.523393798984753, + 28.476990584273466, + 29.328074905443128, + 30.15281198772358, + 30.78605393993837, + 31.326114218761294, + 31.787455929708972, + 32.170621826918406, + 32.4559217588696, + 32.78033143607253, + 33.0020151336232, + 33.1110871695092, + 33.28874585252574 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615415, + 1.4813847491413088, + 1.8198213217004349, + 2.1114679242247254, + 2.451192833194414, + 2.7884203373921266, + 3.0450355471966395, + 3.3887572103321375, + 3.619316363567054, + 3.8060562684974544, + 4.114288242014576, + 4.370794682279151, + 5.165160210607564, + 6.2494207201968965, + 6.650611551063957, + 7.064626128801483, + 7.5255388450163005, + 7.931116936473039, + 8.315699614025355, + 8.681240002405472, + 9.016101851577504, + 9.285388078003747, + 9.616522577830374, + 9.860914729066565, + 9.988341193249173, + 10.207896416411025 + ], + "5._384._0.0875": [ + 3.4936403745987903, + 4.032021217565209, + 4.693519920830931, + 5.870602135192155, + 7.4000489728218914, + 9.95083891141834, + 13.393317141569382, + 16.61229275640641, + 21.319446376732007, + 24.26227080553349, + 26.369846643972537, + 29.296349663248307, + 31.30265559861056, + 35.69626336514896, + 39.32805097927143, + 40.31064817242395, + 41.18559600009105, + 42.031280161927626, + 42.68098366761493, + 43.234930217967765, + 43.70909010555006, + 44.103850856625066, + 44.39799311139372, + 44.73325964485628, + 44.96227787342554, + 45.074790918184725, + 45.25759941452838 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.162243131656478, + 2.50608086920485, + 2.800135200203635, + 3.143381170918518, + 3.5136057262283957, + 3.8641712198649474, + 4.475260872110251, + 4.959425510440203, + 5.379693207017334, + 6.106601260754777, + 6.722637018065401, + 8.528638883723994, + 10.623851599654815, + 11.310007813090413, + 11.970287296452913, + 12.657070617789401, + 13.220469781950905, + 13.724042057825097, + 14.173710613496118, + 14.56110815373381, + 14.85664824384475, + 15.199171912619363, + 15.437555700306685, + 15.556613870889356, + 15.752943428510724 + ], + "5._96._0.075": [ + 2.209271810327425, + 2.5553235640439804, + 2.8519159056633585, + 3.200382094106491, + 3.5254534783270928, + 4.010555209941921, + 4.7086690174435235, + 5.486564791796593, + 6.960466499958647, + 8.122676901219236, + 9.082259823438818, + 10.614933173232428, + 11.806296937426033, + 14.863786751236088, + 17.868529391565563, + 18.7569328533705, + 19.570286843352978, + 20.376436408779508, + 21.0067509084551, + 21.550039040478893, + 22.018051472490008, + 22.408822611638655, + 22.70042249283506, + 23.031840078095186, + 23.258640617664703, + 23.370517372775247, + 23.55319778353115 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169936838708, + 3.187357960008049, + 3.5232357909851264, + 4.035086953193373, + 4.6546487190496775, + 5.7363823904591, + 7.402021812569548, + 9.169726113979845, + 12.091092125883382, + 14.11177233071667, + 15.649787540407395, + 17.915463881900397, + 19.55219150397979, + 23.354290434525353, + 26.672060578834827, + 27.5904516322598, + 28.410736278754868, + 29.20611497081066, + 29.817262909009095, + 30.33861214824501, + 30.784174755800006, + 31.15437651586068, + 31.43004725158398, + 31.743556757745534, + 31.957785954971765, + 32.06317910548703, + 32.23479637581128 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615413, + 1.4813847491413081, + 1.819821321700435, + 2.111467924224727, + 2.451192833192302, + 2.788420307595429, + 3.045033722796751, + 3.3887187335945717, + 3.6192048702080424, + 3.8058440401729654, + 4.113661009738462, + 4.369296966617309, + 5.1559467220688795, + 6.217691758576991, + 6.607819990513524, + 7.009169224489294, + 7.4546953630792565, + 7.84576422993605, + 8.215937395867353, + 8.567332857060926, + 8.88900791047931, + 9.147654742446754, + 9.465906702883128, + 9.701035053654353, + 9.823741096332515, + 10.03545653462901 + ], + "5._384._0.0875": [ + 3.4935422581373548, + 4.031469867408314, + 4.690064476748284, + 5.851299960696446, + 7.344027677675676, + 9.80985024739698, + 13.114820884286313, + 16.19613684645826, + 20.70032868844784, + 23.517929335566116, + 25.5372297341606, + 28.34377962405098, + 30.269331755037463, + 34.49173428181525, + 37.98669719046684, + 38.93286475037836, + 39.77565625786472, + 40.59051170961838, + 41.21676964929246, + 41.750764504994116, + 42.2079456168458, + 42.588637962047116, + 42.87229752544123, + 43.195629318738646, + 43.4164807786609, + 43.52497145079148, + 43.70120903917444 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.8679037053125405, + 2.1622431316564774, + 2.506080869194802, + 2.80013517361793, + 3.143376866575047, + 3.5135428962810344, + 3.863947790901422, + 4.473634725290266, + 4.954229344173796, + 5.3692443011613, + 6.082846268907401, + 6.684174611730365, + 8.434146858934893, + 10.450592739305849, + 11.109175202674326, + 11.742874330287153, + 12.4021238682182, + 12.943219886428746, + 13.427225689073168, + 13.859880303014396, + 14.233078619344498, + 14.518097194753162, + 14.848905698968808, + 15.079399900746777, + 15.19458153948156, + 15.384579037036188 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235640019545, + 2.8519158450290445, + 3.200375368269043, + 3.5253918406243376, + 4.0102229250800265, + 4.705959492863432, + 5.475480546491025, + 6.918449051275929, + 8.046748551763418, + 8.974042898622207, + 10.449576364442562, + 11.593464790946753, + 14.525054090367778, + 17.407804980652106, + 18.26110328024095, + 19.04329447454562, + 19.81930955861042, + 20.426775498229993, + 20.95075970988606, + 21.402569300568786, + 21.78013311764411, + 22.06200914050932, + 22.38256241455653, + 22.601983947789613, + 22.710222413759976, + 22.886919056210502 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351697950605073, + 3.1873468907120697, + 3.5231501253907114, + 4.034620631375291, + 4.651742943593542, + 5.719035362675216, + 7.341190913891028, + 9.045312319617048, + 11.841119743899107, + 13.768209901543369, + 15.23427591590831, + 17.39538504424844, + 18.958081627196314, + 22.596509502339575, + 25.780519221349174, + 26.663163285428887, + 27.452147587854753, + 28.217688772754116, + 28.80636800141023, + 29.308685218598832, + 29.7381878524967, + 30.09518648126877, + 30.361049329746123, + 30.663452565133806, + 30.87008755987229, + 30.971734256827133, + 31.13720401043036 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413081, + 1.8198213217004342, + 2.111467924224728, + 2.451192833189987, + 2.7884202749609552, + 3.0450317246445295, + 3.388676592483349, + 3.6190827596963775, + 3.8056116050292204, + 4.112974082038731, + 4.367656779489664, + 5.145865877835606, + 6.183103470608258, + 6.561216239673124, + 6.9488071434275955, + 7.3776406306021585, + 7.7529876779736915, + 8.107569626304745, + 8.44369613945766, + 8.751182981735429, + 8.99842143158867, + 9.302930602829662, + 9.528255393415055, + 9.646006405279788, + 9.849569502106615 + ], + "5._384._0.0875": [ + 3.4934348035741953, + 4.030866073184972, + 4.6862813134058925, + 5.8302092723713645, + 7.283112564745774, + 9.657615170256332, + 12.81595915970922, + 15.752022477574469, + 20.045518358710634, + 22.734729674879873, + 24.66396415763327, + 27.348586783097122, + 29.192275449631637, + 33.24126378526548, + 36.597643895476615, + 37.50690207473821, + 38.31708906279612, + 39.10066798768049, + 39.703118602458424, + 40.21685052103937, + 40.65677777874108, + 41.023166333819965, + 41.296167252365514, + 41.60736140192584, + 41.819908219419254, + 41.924309577367055, + 42.09387045967205 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.867903705312543, + 2.1622431316564787, + 2.506080869183797, + 2.8001351445002554, + 3.143372152294447, + 3.513474082864252, + 3.8637030913374515, + 4.4718540304634695, + 4.948540586488581, + 5.357809257258695, + 6.056883916142686, + 6.642201510519377, + 8.331679602782167, + 10.26344088353877, + 10.89247342020372, + 11.497842078379598, + 12.127886436771808, + 12.645509676134694, + 13.109012627780379, + 13.523943273853844, + 13.882426220299445, + 14.156583051970484, + 14.47534090467753, + 14.69775226180042, + 14.80897403603799, + 14.992522037680377 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.555323563955929, + 2.8519157786200346, + 3.2003680018766323, + 3.525324332994148, + 4.009859013867742, + 4.702992760187355, + 5.463355018647089, + 6.872678124599346, + 7.964247795033179, + 8.856648514925855, + 10.270744515512261, + 11.363799370181288, + 14.162044662618815, + 16.917554741072625, + 17.734718665011982, + 18.484858934739314, + 19.229977770857122, + 19.814083851098065, + 20.318354414789987, + 20.753634182301614, + 21.117731166222963, + 21.389694987026946, + 21.699173535323016, + 21.911077487139107, + 22.01561222840525, + 22.186224600079964 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169639104508, + 3.187334714490338, + 3.523055894002601, + 4.034107716549585, + 4.648547539418606, + 5.699992328812585, + 7.274887669968994, + 8.910823613024785, + 11.57427141710386, + 13.404010629598535, + 14.79579903406097, + 16.849713599702767, + 18.33694631915551, + 21.80907649513687, + 24.85745565535352, + 25.703862047122556, + 26.461069602433085, + 27.19629793641848, + 27.7621245607021, + 28.245077165737825, + 28.65822548538135, + 29.0017690300782, + 29.257635346745417, + 29.548714950465254, + 29.74760796776277, + 29.845436446285873, + 30.00464548924333 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413081, + 1.8198213217004349, + 2.111467924224728, + 2.451192833187441, + 2.788420239063031, + 3.0450295266771255, + 3.388630237354641, + 3.6189484396580016, + 3.8053559328940816, + 4.1122185110542055, + 4.365852776637426, + 5.13478915302215, + 6.145276457961661, + 6.510346579194503, + 6.883052633296752, + 7.293926870082564, + 7.652458613854536, + 7.990455211384664, + 8.310431776390018, + 8.60299475418908, + 8.838285917451143, + 9.128464499903174, + 9.343619722163398, + 9.456252684963415, + 9.651426898008715 + ], + "5._384._0.0875": [ + 3.4933166111892238, + 4.030201978586011, + 4.682121486183823, + 5.807069987929039, + 7.2167076996199855, + 9.493671500609791, + 12.498181910711812, + 15.284062350154176, + 19.362425925484274, + 21.921527606581023, + 23.759660554874497, + 26.32109405029996, + 28.082126745584166, + 31.955849861462383, + 35.17197473338405, + 36.043846543088996, + 36.82098341646576, + 37.57283875188402, + 38.15112108529445, + 38.64427963902321, + 39.066679452044774, + 39.41853087146775, + 39.680698983354844, + 39.97955535114111, + 40.183661605083714, + 40.28390759866272, + 40.4466871766565 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.8679037053125411, + 2.162243131656476, + 2.506080869171695, + 2.8001351124708154, + 3.1433669665862083, + 3.513398388510412, + 3.8634339318975326, + 4.469895656209952, + 4.94228570883134, + 5.345241772426882, + 6.028398284189293, + 6.5962542212222814, + 8.220698678584661, + 10.062801646482756, + 10.660878687305251, + 11.236712332247956, + 11.83643695239951, + 12.3298327711623, + 12.772221745761142, + 13.168952191687541, + 13.512353405701921, + 13.77538911897043, + 14.08181225599362, + 14.29595753077187, + 14.403133401417438, + 14.58009977969633 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235639052994, + 2.851915705570118, + 3.20035989884617, + 3.5252500749993736, + 4.009458735473732, + 4.699730369699117, + 5.450034217524713, + 6.822660851890806, + 7.874527110008156, + 8.729502324079315, + 10.078420196272814, + 11.118044031825994, + 13.777876015338343, + 16.40291510439776, + 17.18332021097654, + 17.90079300385095, + 18.61444855131162, + 19.174776881558895, + 19.65897399247814, + 20.077413673289936, + 20.427781395417732, + 20.68963560753587, + 20.987811475801415, + 21.192043327806594, + 21.29279970933702, + 21.457211019192822 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169466732104, + 3.1873212565657596, + 3.522951744454303, + 4.033540858433562, + 4.645016935242976, + 5.678992820956938, + 7.202309948732058, + 8.765066187747177, + 11.290359594464103, + 13.02055849828533, + 14.33698797964176, + 16.282617813798932, + 17.693823965392248, + 20.998220348956185, + 23.90944997945753, + 24.719146530665824, + 25.444107721622732, + 26.1485398487978, + 26.69111444433231, + 27.15435427173422, + 27.550837796055117, + 27.88065942845894, + 28.12632926085659, + 28.405854978832984, + 28.596849116799195, + 28.69078295126085, + 28.84361033954047 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.4511928331846287, + 2.7884201993863793, + 3.04502709734479, + 3.388579002852824, + 3.618799982526267, + 3.805073355852959, + 4.111383466592799, + 4.36385912617233, + 5.122561599657229, + 6.103721102359734, + 6.454572732284367, + 6.811149229667091, + 7.20274802101906, + 7.543437359907617, + 7.864014684573396, + 8.167196783491738, + 8.444370004027066, + 8.66741083124234, + 8.942949058357554, + 9.147740973691093, + 9.255162113993634, + 9.441785113167429 + ], + "5._384._0.0875": [ + 3.4931859868041757, + 4.029468075635026, + 4.6775258027939, + 5.781569697208013, + 7.144007067897414, + 9.316829273900815, + 12.161865768885702, + 14.795091305528313, + 18.656696315234445, + 21.085080488230965, + 22.831638034348614, + 25.269121052168355, + 26.946915693292755, + 30.64374327882403, + 33.717973832467116, + 34.55197681055981, + 35.295614037202945, + 36.01529350051965, + 36.56904254688452, + 37.04131389983078, + 37.44591020952468, + 37.782989576827426, + 38.034149715844165, + 38.320467498391174, + 38.51599684228762, + 38.61202115926842, + 38.76791423571458 + ], + "5._48._0.075": [ + 1.5268463243731414, + 1.8679037053125422, + 2.1622431316564774, + 2.5060808691583176, + 2.8001350770698514, + 3.1433612350144524, + 3.5133147268230167, + 3.863136452170992, + 4.467731612570313, + 4.935375786256741, + 5.331364621730058, + 5.996997747131702, + 6.545721747120606, + 8.100164308702006, + 9.84836605894351, + 10.414646003868013, + 10.960274894343831, + 11.529108272835428, + 11.997908666976404, + 12.418869744076261, + 12.797128633097028, + 13.125207027816469, + 13.376926687179866, + 13.670768377810841, + 13.876468152888597, + 13.979507682552843, + 14.14974520802135 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.555323563849342, + 2.851915624830741, + 3.2003509428665815, + 3.5251680008591997, + 4.009016351688737, + 4.696125809593819, + 5.435332742393516, + 6.767763025412212, + 7.776586248239833, + 8.591494371695196, + 9.871843598242316, + 10.85612057770882, + 13.374683318675565, + 15.86778943476632, + 16.611118766531888, + 17.295518689303748, + 17.977288193165396, + 18.513480833593235, + 18.977273713022672, + 19.37856646598129, + 19.714931997057892, + 19.96646647615069, + 20.253091748020143, + 20.44948023992272, + 20.5463743378781, + 20.70445173910805 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "9": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169275207241, + 3.1873063033220075, + 3.5228360238832863, + 4.032911074834425, + 4.641095703493277, + 5.655702171523309, + 7.122267217420147, + 8.606458609026575, + 10.989290181709228, + 12.61948926537863, + 13.860718612709004, + 15.69840163571581, + 17.033770737976386, + 20.169992909210812, + 22.942817842852495, + 23.715338717796516, + 24.407586419256607, + 25.08072936148252, + 25.599637293164616, + 26.04280150412272, + 26.422294861288364, + 26.738114160299766, + 26.973377246701503, + 27.241107082469476, + 27.42403713906356, + 27.513995670147068, + 27.660313416641788 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615422, + 1.4813847491413084, + 1.8198213217004355, + 2.111467924224729, + 2.4511928331815027, + 2.7884201553012105, + 3.0450243980867033, + 3.3885220757691257, + 3.618635032445808, + 3.8047593911535196, + 4.110455714247901, + 4.361644241870946, + 5.1089881029593505, + 6.057715151293889, + 6.392963107120187, + 6.732045291772491, + 7.103060046056022, + 7.425034206155502, + 7.727609880994019, + 8.013664743196978, + 8.275300083693113, + 8.486045570304103, + 8.746920988883245, + 8.941324183198253, + 9.043505898099234, + 9.221487559297138 + ], + "5._384._0.0875": [ + 3.4930408601514085, + 4.028652745019903, + 4.67242238637223, + 5.7532991287836746, + 7.0638166269767035, + 9.125563771972397, + 11.807558761765947, + 14.288184343883579, + 17.933937941432575, + 20.23190826092574, + 21.886875458904225, + 24.20004597784966, + 25.794183100775438, + 29.31265554474981, + 32.24337724487302, + 33.039024307395394, + 33.74870970539633, + 34.43575744723277, + 34.96460552494289, + 35.415673602168425, + 35.8021888359652, + 36.12426039521139, + 36.364236899321654, + 36.63781513232735, + 36.82463112130588, + 36.91636734766486, + 37.065268391971976 + ], + "5._48._0.075": [ + 1.526846324373138, + 1.8679037053125451, + 2.162243131656477, + 2.5060808691434557, + 2.8001350377354477, + 3.143354866602017, + 3.513221769999883, + 3.862805934255912, + 4.465327760140367, + 4.927701142222146, + 5.3159495482407255, + 5.962129535031928, + 6.489711926930183, + 7.968700223931462, + 9.61988992163586, + 10.154172815949755, + 10.669499561700764, + 11.20742088279913, + 11.651624522027625, + 12.051118876289918, + 12.41081742020812, + 12.723439731610084, + 12.963702415868317, + 13.244745575975948, + 13.441820958497416, + 13.540628287713435, + 13.70397392862399 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235637871645, + 2.851915535120324, + 3.2003409917799446, + 3.5250768079681407, + 4.008524850002972, + 4.692122512322739, + 5.419017750026673, + 6.707050478120159, + 7.66901425939496, + 8.441188934887725, + 9.650194645471815, + 10.578084439421904, + 12.954874734581079, + 15.316185332035513, + 16.02235946266475, + 16.67346171316059, + 17.32304141898456, + 17.834784537054563, + 18.277862727011797, + 18.661700379209826, + 18.983778200779522, + 19.224769463363526, + 19.499576387812414, + 19.68793395849794, + 19.780872901431074, + 19.932468163649006 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "10": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169061150066, + 3.1872895908803156, + 3.5227066906110913, + 4.032207392187855, + 4.636703426140433, + 5.629335525382722, + 7.03257770523631, + 8.433406503615286, + 10.672549249125927, + 12.204391116149322, + 13.371889982599072, + 15.103383087268462, + 16.363817177166226, + 19.332400332928287, + 21.965843770873757, + 22.70073536996533, + 23.359812164391833, + 24.00117036557515, + 24.49598761156642, + 24.918703552475, + 25.280870901238746, + 25.582397745479565, + 25.807036449271937, + 26.062720160015186, + 26.237415055607684, + 26.323314571382586, + 26.462989504333354 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004358, + 2.1114679242247285, + 2.4511928331780086, + 2.7884201060295486, + 3.0450213812689197, + 3.388458451557053, + 3.6184506793527524, + 3.8044084968389087, + 4.109418360095689, + 4.359162375967974, + 5.093629355069029, + 6.005784849603277, + 6.323922868460796, + 6.644260818131514, + 6.99373896179392, + 7.29658086695124, + 7.5810633658957105, + 7.850128353724553, + 8.096478721260324, + 8.29517375070302, + 8.541660984090134, + 8.72581469323478, + 8.822793422482306, + 8.992114896673694 + ], + "5._384._0.0875": [ + 3.4928786596872783, + 4.027741921549117, + 4.666701280553218, + 5.72129130487075, + 6.973941867906879, + 8.918697621513973, + 11.4376472658877, + 13.768539530372646, + 17.20183330075438, + 19.370555323205455, + 20.934366896869136, + 23.12326937074539, + 24.633500290451735, + 27.972359111553246, + 30.7580127642765, + 31.51482131111572, + 32.19010865331005, + 32.84407405809937, + 33.347658114917614, + 33.77721093917941, + 34.14537171123561, + 34.452203826640684, + 34.6808242756455, + 34.941466206572606, + 35.11943528740849, + 35.2068183602367, + 35.34862380264739 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.506080869126844, + 2.80013499377347, + 3.1433477489653736, + 3.513117877852457, + 3.8624365672197984, + 4.4626385155430555, + 4.919054515296326, + 5.298482319031743, + 5.922548680906539, + 6.426493635580971, + 7.824883546893518, + 9.378267427675146, + 9.881132744939684, + 10.366703250778283, + 10.874265540990947, + 11.294227387204174, + 11.672479692926549, + 12.013700523980749, + 12.310833865647396, + 12.539549687580344, + 12.807605896842205, + 12.995877625686193, + 13.090350668092924, + 13.246623569808706 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235637176734, + 2.851915434855739, + 3.200329869979444, + 3.5249748872578626, + 4.007975636181989, + 4.6876380499422785, + 5.400566025581391, + 6.638621151067135, + 7.549783871813031, + 8.2771757681807, + 9.413633799651278, + 10.285454743156901, + 12.522707194915155, + 14.75389332021095, + 15.423039221985714, + 16.040801062039023, + 16.65800686480039, + 17.145032333466435, + 17.567108258789563, + 17.933183983453524, + 18.240678278451124, + 18.470890966196237, + 18.733593591411818, + 18.91371732499685, + 19.002599696305147, + 19.147549722047657 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "11": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351688203358054, + 3.187270789471169, + 3.5225611039678917, + 4.031369889725306, + 4.631032401032179, + 5.596297037258445, + 6.929386269923412, + 8.245897057497102, + 10.346069404104911, + 11.783959229538283, + 12.88079563664565, + 14.50959284530564, + 15.696890678607435, + 18.499713305466464, + 20.99327931179722, + 21.690135751841165, + 22.315618771097476, + 22.924713225207896, + 23.39501895445452, + 23.79691341327269, + 24.141416058699534, + 24.42835702571564, + 24.642151117762094, + 24.885536067107772, + 25.051822869789387, + 25.133578524572815, + 25.266475242037114 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331740758, + 2.788420050598931, + 3.045017987349207, + 3.388386870370177, + 3.6182423785338593, + 3.8040033879173167, + 4.108131523365679, + 4.355960504228327, + 5.074047224376568, + 5.944556227427054, + 6.2447096917537355, + 6.546002632724687, + 6.874185899744297, + 7.158490448567556, + 7.425652828159638, + 7.678558264679415, + 7.910393700770918, + 8.097626007087383, + 8.330332439807178, + 8.50455668948576, + 8.596439352831254, + 8.757159070651648 + ], + "5._384._0.0875": [ + 3.4926983687554993, + 4.0266490745827745, + 4.659308527980217, + 5.681589826052847, + 6.870442741316222, + 8.697482675631518, + 11.059482663705419, + 13.247045896294287, + 16.474369589257517, + 18.516174760944864, + 19.98990050280165, + 22.055198746323185, + 23.48155616857491, + 26.639913106184615, + 29.279086552612444, + 29.99659896619582, + 30.637066684100937, + 31.257523015683557, + 31.735500165884204, + 32.14324341440146, + 32.49279297804504, + 32.7841692209782, + 33.00127290413302, + 33.248796130539915, + 33.417794630917896, + 33.50076423568705, + 33.635377811952864 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125465, + 2.162243131656477, + 2.5060808691081555, + 2.800134944316244, + 3.143339741630884, + 3.5130009676546328, + 3.8620119676987605, + 4.4591974052772265, + 4.907850547510867, + 5.276242174209772, + 5.8743636312643455, + 6.352315830075878, + 7.668434005168666, + 9.12752698461211, + 9.600531695224545, + 10.057677203653334, + 10.536100576100752, + 10.932582573385188, + 11.290121565777344, + 11.613150770328641, + 11.894886529684086, + 12.112032316505175, + 12.366954751646453, + 12.546246467126897, + 12.636276124307253, + 12.785272151878189 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235636394986, + 2.8519153220580766, + 3.200317357977363, + 3.5248602003008336, + 4.007331338781908, + 4.681845408000647, + 5.377085932329697, + 6.558286408517827, + 7.416668470666493, + 8.099519314868399, + 9.165582409738139, + 9.983762413963428, + 12.08725010456547, + 14.191822159238267, + 14.824346063559009, + 15.408975544466246, + 15.9937971673359, + 16.455917133398145, + 16.856748697881937, + 17.20477155675412, + 17.49738448726193, + 17.7165751604768, + 17.966871656506736, + 18.138543606491623, + 18.223259153402353, + 18.36138487099735 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835165636239734, + 3.187022207622659, + 3.520662700126178, + 4.024811706360364, + 4.618246492085718, + 5.577602357189488, + 6.930593362977536, + 8.27013730911453, + 10.305799407868758, + 11.592006196271335, + 12.513529975375201, + 13.79808800355458, + 14.678979018204332, + 16.62480215658412, + 18.2488264768942, + 18.690716626034398, + 19.085984722477804, + 19.46983352268822, + 19.76659712159539, + 20.019967202996902, + 20.237708518807462, + 20.41961226179577, + 20.555207696500926, + 20.709951202677345, + 20.81558646499876, + 20.867416249016795, + 20.951344739626176 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.451192833122094, + 2.7884193176830028, + 3.0449731122312995, + 3.3874426433772196, + 3.6156114031501847, + 3.7996703668647145, + 4.100882362106419, + 4.346224898925525, + 5.058431311244528, + 5.938205478332148, + 6.2454712872914175, + 6.553322425438452, + 6.885623183027443, + 7.168405190432672, + 7.427814593237117, + 7.66575546132917, + 7.875646469458194, + 8.038201801611946, + 8.229905687023377, + 8.364436565153676, + 8.43170041321568, + 8.542218918216287 + ], + "5._384._0.0875": [ + 3.490341452425285, + 4.019256693703507, + 4.645242475571041, + 5.663015696969794, + 6.870961396281224, + 8.722045952534526, + 10.968017694918828, + 12.850605315815251, + 15.333821659373363, + 16.76783249479386, + 17.755971993298417, + 19.095372128092308, + 19.99702132365333, + 21.961932120277055, + 23.590345099332236, + 24.032380773467327, + 24.428493817447, + 24.813430064076773, + 25.11149023696463, + 25.366028392849262, + 25.58505101682981, + 25.76825577351642, + 25.904849535939963, + 26.06088890444515, + 26.16737568079158, + 26.21958387181005, + 26.304039577016905 + ], + "5._48._0.075": [ + 1.5268463243731403, + 1.8679037053125447, + 2.1622431316564747, + 2.5060808688610523, + 2.800134290381807, + 3.1432338676191445, + 3.51146772321088, + 3.8574550748275773, + 4.448646633722987, + 4.892881358644619, + 5.259328855039348, + 5.860557995824219, + 6.346883434753211, + 7.687273576885126, + 9.101118153759293, + 9.529338705689813, + 9.927289641778144, + 10.326192135238777, + 10.642615140692383, + 10.916900159028845, + 11.15566961322875, + 11.356928805832112, + 11.507619363301462, + 11.67983744328869, + 11.797719211064464, + 11.855743645066019, + 11.949922092002977 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235626058273, + 2.8519138306223555, + 3.2001519249819794, + 3.523354932375397, + 4.001549412014162, + 4.669089316628495, + 5.359101946268944, + 6.552379489671893, + 7.429815477491777, + 8.121820314543074, + 9.173143912712952, + 9.946213029499233, + 11.781039134458084, + 13.403268695619028, + 13.854454372473098, + 14.260003929688882, + 14.655669234316463, + 14.962475413080817, + 15.224731293240202, + 15.450225154706388, + 15.638568709166531, + 15.778910465988814, + 15.938820677805234, + 16.047959625600665, + 16.1015379064994, + 16.188353466015815 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351647264993423, + 3.186951185113044, + 3.520120762095406, + 4.022908840457471, + 4.613192189018059, + 5.553357119545568, + 6.836941764565307, + 8.072417777476293, + 9.917034103843235, + 11.073390796484931, + 11.900087116780503, + 13.051737859601054, + 13.84151299956939, + 15.58897243519494, + 17.050915239385326, + 17.44916920093101, + 17.805773444528953, + 18.152349245604196, + 18.42056433245828, + 18.649624669380906, + 18.846603680143236, + 19.011257479437973, + 19.134008158091746, + 19.27413530400662, + 19.369785226120584, + 19.41670551318206, + 19.49264845544399 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247267, + 2.451192833107242, + 2.7884191082784517, + 3.044960290773892, + 3.3871729161976023, + 3.6148602890949224, + 3.798427780692208, + 4.098671421766258, + 4.342760701025555, + 5.044196907034894, + 5.885761165493484, + 6.173109241648802, + 6.458187213329125, + 6.763304769544556, + 7.021219579646446, + 7.256751563518459, + 7.472114549141299, + 7.661736239898098, + 7.808486494653682, + 7.981608972488866, + 8.103176704421157, + 8.1639743328458, + 8.263914864157965 + ], + "5._384._0.0875": [ + 3.4896748046623505, + 4.0171018504542335, + 4.6391649603613345, + 5.633334582359261, + 6.777423354182605, + 8.48011743093466, + 10.508676150536084, + 12.196848641332405, + 14.418505687057298, + 15.700982948369044, + 16.585012703238007, + 17.784388376412807, + 18.59237334378901, + 20.356297930357258, + 21.820925841542255, + 22.218835703293472, + 22.575624522310008, + 22.922522909474765, + 23.191302577308537, + 23.42086333314305, + 23.61846985157123, + 23.783815779548103, + 23.907095834432504, + 24.04794453869986, + 24.14405292279984, + 24.19116378321505, + 24.267345824271224 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.506080868790454, + 2.8001341035433973, + 3.143203617967474, + 3.511029904247479, + 3.856152805478866, + 4.444974647594222, + 4.884466201927085, + 5.243246979981296, + 5.8227560139656775, + 6.283297777362145, + 7.524103840428952, + 8.807945512182934, + 9.194384924931446, + 9.553166658512048, + 9.912687850486941, + 10.197983773814087, + 10.445428388178932, + 10.661051157114642, + 10.843018763232672, + 10.979390883733371, + 11.135467248125636, + 11.242381692801242, + 11.295016290117196, + 11.380439148692652 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235623104933, + 2.8519134044978625, + 3.2001046586465205, + 3.522925086582346, + 3.9998856532802853, + 4.663987000362338, + 5.342182722576681, + 6.4831737142367984, + 7.300051390954155, + 7.935454728449091, + 8.891221455834549, + 9.589548472760537, + 11.240752602456341, + 12.699955368817093, + 13.106043498915271, + 13.471550686224996, + 13.828500722672317, + 14.10565082229637, + 14.342706531216326, + 14.546746378452665, + 14.717337608943652, + 14.844505073188188, + 14.989509482128286, + 15.088491705043397, + 15.137077502637203, + 15.215769375587161 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351669594995696, + 3.1871255135651895, + 3.521450763630739, + 4.027440927131935, + 4.622901064505621, + 5.590842323594143, + 6.994013251503387, + 8.440417815809157, + 10.728184854157313, + 12.214306632006716, + 13.292549745887117, + 14.80816776521213, + 15.853513199927047, + 18.168200857384697, + 20.099784066308047, + 20.625001327106478, + 21.09399959055764, + 21.548853866921366, + 21.899853567786867, + 22.199376563300056, + 22.456438843198356, + 22.670932167342954, + 22.83077815451506, + 23.0130704568225, + 23.137526387217555, + 23.19861671795847, + 23.297635289834563 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.451192833143696, + 2.78841962227144, + 3.0449917616272018, + 3.3878349676301713, + 3.616701375947365, + 3.801447409704434, + 4.103722699832003, + 4.349851754894547, + 5.066561474113735, + 5.971024315259826, + 6.2955218819689645, + 6.62582828289826, + 6.9882906596436865, + 7.30163597242899, + 7.592950879193618, + 7.863343356618984, + 8.104295595873035, + 8.292390753883636, + 8.515662382368468, + 8.673235627317126, + 8.752330139054957, + 8.882718003075793 + ], + "5._384._0.0875": [ + 3.4913178637505475, + 4.022181073829324, + 4.650368377493574, + 5.679273898695907, + 6.934048801514182, + 8.942879221488022, + 11.489485114208524, + 13.684995808311337, + 16.62944860524694, + 18.344229320003887, + 19.52898140146531, + 21.13567017703279, + 22.217371498825415, + 24.569254502705515, + 26.51258654834882, + 27.039341438027172, + 27.510770170273112, + 27.968408466397904, + 28.322269114374457, + 28.624373254589987, + 28.884097145454795, + 29.10117967968234, + 29.263019527746835, + 29.447835148184783, + 29.5739852640785, + 29.635856995184252, + 29.73602027391017 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.5060808689637466, + 2.800134562146767, + 3.143277867155833, + 3.5121044816704936, + 3.8593228688016947, + 4.4525539637029485, + 4.898703068591462, + 5.26838558887342, + 5.881864911229149, + 6.3870005881946526, + 7.8263540122829225, + 9.412926489035238, + 9.9048563976805, + 10.36562493821697, + 10.83047667908275, + 11.20084087218063, + 11.522844256185813, + 11.80358597118042, + 12.040355409554644, + 12.217672829146709, + 12.42013260243858, + 12.558710792834725, + 12.626965836083905, + 12.73785532838156 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235630354045, + 2.8519144504397986, + 3.200220676151204, + 3.523980108850833, + 4.003890726776593, + 4.6737315111805815, + 5.368629519144982, + 6.595906981770949, + 7.528573477316917, + 8.282223236150426, + 9.45367860913557, + 10.332264553318971, + 12.458704367017562, + 14.368556747552583, + 14.902671587749616, + 15.382706738935145, + 15.850985855448844, + 16.213657057920507, + 16.523527691355074, + 16.7895865650334, + 17.01148425955976, + 17.176729811423197, + 17.364776703032707, + 17.4930992608774, + 17.556120493846507, + 17.6583368081961 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351663640324896, + 3.187079025855097, + 3.5210961280230464, + 4.026256801080415, + 4.620679596130408, + 5.581342227156848, + 6.943112631117537, + 8.3119061968232, + 10.437615443796641, + 11.805968769447427, + 12.795931741961128, + 14.185816514269026, + 15.144100752774316, + 17.26865417032703, + 19.045229973117674, + 19.528819270594727, + 19.96107115280859, + 20.380604312268346, + 20.70466083731581, + 20.98126901903915, + 21.218816320474723, + 21.417137287655024, + 21.564947879714698, + 21.73356300587548, + 21.848673489949775, + 21.905165277405725, + 21.996689417861297 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.451192833133975, + 2.7884194852066417, + 3.044983369398643, + 3.3876584208449128, + 3.6162108734136047, + 3.8006476284261015, + 4.102439785864223, + 4.3481743258226935, + 5.061270999247916, + 5.9447576180517485, + 6.255824443290809, + 6.569549262699487, + 6.910884687344959, + 7.203860980226212, + 7.474829914695701, + 7.725368144099679, + 7.948050522229073, + 8.121647028551868, + 8.327650099025401, + 8.473069945656743, + 8.546070023645806, + 8.666454143188732 + ], + "5._384._0.0875": [ + 3.4908783986811023, + 4.0208629086587555, + 4.647845957178613, + 5.667156867053966, + 6.883390991621373, + 8.779441562788344, + 11.137539539318718, + 13.153520996798933, + 15.848687597244828, + 17.416971545953995, + 18.50067665547721, + 19.971432282122446, + 20.962238600786442, + 23.11998407238362, + 24.906027031814602, + 25.39053284565908, + 25.824397830204305, + 26.2457760431702, + 26.571799833918924, + 26.85017140979974, + 27.089580764047856, + 27.28974768659247, + 27.43897869190371, + 27.609416113730724, + 27.725739368315388, + 27.782781485012812, + 27.875094586767542 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.506080868917536, + 2.8001344398525374, + 3.143258067360414, + 3.511817936630581, + 3.8584822442261126, + 4.450749723549048, + 4.8955487977683045, + 5.2624184546734085, + 5.865189593370569, + 6.354811377674212, + 7.721374527012855, + 9.197553106076711, + 9.651881985036304, + 10.076753245376496, + 10.50504496042398, + 10.846271743861031, + 11.143043320858995, + 11.401993276463116, + 11.620613290765638, + 11.78448197622543, + 11.971839724079764, + 12.100177919593024, + 12.163399901545597, + 12.266104330035484 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235628420974, + 2.85191417152195, + 3.2001897381139464, + 3.52369877575152, + 4.002836709034522, + 4.671507621026489, + 5.3623523958800625, + 6.5608116580657425, + 7.451349226135013, + 8.161408662969507, + 9.253641844400866, + 10.066866858982916, + 12.02528106121994, + 13.781310517260053, + 14.272509409273658, + 14.714493448326069, + 15.14603465003867, + 15.480665262111376, + 15.76675572180131, + 16.012645594548598, + 16.217916740710585, + 16.370845171140513, + 16.544997925700372, + 16.663859571792273, + 16.722227495861578, + 16.816856530786318 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351656362397586, + 3.1870222077625265, + 3.520662542462161, + 4.024725277625346, + 4.6164449457051955, + 5.559562301356887, + 6.854561927969589, + 8.120447900048557, + 10.055027159587599, + 11.293184233597465, + 12.188168530628072, + 13.44527637833843, + 14.31280639256918, + 16.240881996543386, + 17.858017819727984, + 18.2988286039526, + 18.69325791174862, + 19.07639207395043, + 19.37262662305555, + 19.625559559503333, + 19.842912486664606, + 20.024473426844295, + 20.159806725278344, + 20.314229974812832, + 20.419643910451875, + 20.471366570947602, + 20.55512695097287 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.451192833122094, + 2.7884193176830028, + 3.0449731122316335, + 3.3874426359626373, + 3.615609781338652, + 3.7996515176094663, + 4.100646660046628, + 4.345307621318644, + 5.048678100564503, + 5.895766901113474, + 6.187380376051302, + 6.4786400855583235, + 6.79296162577209, + 7.06110990306807, + 7.308183302247539, + 7.536108766536005, + 7.738506630386754, + 7.896321762757711, + 8.083851340310042, + 8.216459592889546, + 8.283096451816174, + 8.393124312240852 + ], + "5._384._0.0875": [ + 3.4903452786224256, + 4.019124865882309, + 4.642710893735971, + 5.64029173843186, + 6.795006074396598, + 8.544031062865198, + 10.684327333208312, + 12.50532190359343, + 14.938880153800072, + 16.35608654578909, + 17.33622230796111, + 18.66804850109008, + 19.56611746845016, + 21.525574457478477, + 23.150610404022757, + 23.59181021466942, + 23.98711759947602, + 24.371231143615073, + 24.668599501471192, + 24.92253152951065, + 25.14099835946385, + 25.32370979150895, + 25.4599275558376, + 25.61551875230526, + 25.7216968242016, + 25.773754741589535, + 25.857973142820374 + ], + "5._48._0.075": [ + 1.5268463243731403, + 1.8679037053125447, + 2.1622431316564747, + 2.5060808688610523, + 2.800134290381807, + 3.143233867629361, + 3.511467665393575, + 3.8574385634398944, + 4.447714789606452, + 4.888302448821012, + 5.248167997117308, + 5.830508297092652, + 6.295296586288774, + 7.56361887389745, + 8.90982360494905, + 9.322335114881888, + 9.708057004364308, + 10.09708949939826, + 10.407398184140611, + 10.677608220924602, + 10.913749061747826, + 11.113444149598129, + 11.263320515047692, + 11.434978919057615, + 11.552688041368015, + 11.610695030571737, + 11.704935810859379 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235626058277, + 2.851913830622356, + 3.200151925018721, + 3.5233548841477056, + 4.001500388394046, + 4.667227780746542, + 5.3473600962024905, + 6.496001656505285, + 7.327146079181405, + 7.981025431062503, + 8.977774653538907, + 9.716112080638158, + 11.490796485403289, + 13.084823547615835, + 13.531443597883513, + 13.93399452961531, + 14.327530265190676, + 14.633154342086335, + 14.89465024576998, + 15.1196599568755, + 15.307696682750466, + 15.447851464430137, + 15.607576325531452, + 15.716613494272394, + 15.770152218969342, + 15.85691750463027 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351678756032506, + 3.187197033234045, + 3.5219963794629896, + 4.029262275664414, + 4.626108581610381, + 5.599113591668784, + 7.03239296960233, + 8.550566761429423, + 11.03026728310728, + 12.682445979852233, + 13.896667870194934, + 15.619478325889647, + 16.816124526964035, + 19.47702985565654, + 21.701034025542437, + 22.30575172633598, + 22.84496116279766, + 23.367327873650233, + 23.769735045786163, + 24.11296810756103, + 24.40717647742584, + 24.652384251630004, + 24.835072768254197, + 25.04327843716534, + 25.185441167942734, + 25.255251281597282, + 25.368507077928804 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.451192833158654, + 2.7884198331403587, + 3.0450046727493625, + 3.3881065808553408, + 3.61745603905012, + 3.802677932810885, + 4.105689469786164, + 4.352354662535813, + 5.071771784305429, + 5.990604353793003, + 6.32576866895374, + 6.670774489738678, + 7.054081232160958, + 7.389701095010413, + 7.705317213736449, + 8.001465741050918, + 8.268010515851842, + 8.47782677957167, + 8.728785748021254, + 8.907165177383826, + 8.997146997899398, + 9.146136327647948 + ], + "5._384._0.0875": [ + 3.4919941422393506, + 4.0242075772002455, + 4.653887630450317, + 5.689308081942313, + 6.972211674358002, + 9.089147996366483, + 11.870647620647508, + 14.333576460609423, + 17.69650961398834, + 19.675061035970785, + 21.047070394496124, + 22.91020128887029, + 24.165468196090195, + 26.89035467851769, + 29.13651163528893, + 29.744583563177716, + 30.288141166386396, + 30.815269093575186, + 31.22231811473582, + 31.569734459016253, + 31.868160532014514, + 32.117404963683086, + 32.30320670140425, + 32.515314916776454, + 32.66011973522588, + 32.73116511297801, + 32.84626109361828 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.5060808690348377, + 2.800134750291741, + 3.143308328392029, + 3.512545332173703, + 3.8606163442269272, + 4.455256585224925, + 4.902607201453992, + 5.274128688342792, + 5.894553145720666, + 6.410821325292352, + 7.915882559451679, + 9.633982066877328, + 10.178383564101987, + 10.692411484337114, + 11.21469209349063, + 11.633054716187477, + 11.998221717063492, + 12.317404270355143, + 12.586994318408669, + 12.789072647953653, + 13.0197545560629, + 13.17771915452565, + 13.255592574824785, + 13.38225594732849 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235633328066, + 2.851914879544181, + 3.2002682731670853, + 3.5244129408138183, + 4.005512413653456, + 4.676929448929882, + 5.374727708765103, + 6.621940724884043, + 7.589870853005851, + 8.385951327479868, + 9.646399038086509, + 10.608186570257482, + 12.981040006670419, + 15.15075166688143, + 15.761896120818106, + 16.31160487644447, + 16.848147121897316, + 17.263428266522705, + 17.618200174819204, + 17.922484495158848, + 18.17595671843651, + 18.36462431208987, + 18.57908536835333, + 18.725421282407385, + 18.797320419257474, + 18.914051059731356 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835167455722319, + 3.1871642533685365, + 3.5217463021268665, + 4.028426662602046, + 4.62454354413647, + 5.592815900651609, + 6.9980463555395716, + 8.458330843638853, + 10.804461078326414, + 12.35285053760395, + 13.486807083979473, + 15.092735335786193, + 16.207142389756154, + 18.68663116701593, + 20.762148280704864, + 21.32699316087631, + 21.831108310028444, + 22.31981894407171, + 22.696644841277067, + 23.018144509699834, + 23.293892910541352, + 23.523839110819093, + 23.69517644015126, + 23.89049897535568, + 24.02385746770547, + 24.089332079043626, + 24.195508758280813 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224729, + 2.451192833151798, + 2.788419736492103, + 3.0449987551515107, + 3.387982091041227, + 3.6171101444151827, + 3.8021138732457986, + 4.104784570053864, + 4.351175408151785, + 5.068239391192692, + 5.973221439545579, + 6.298989920083113, + 6.631876810045916, + 6.999058062226154, + 7.31846206497965, + 7.61730364229279, + 7.8965548670942, + 8.147110776277582, + 8.3439488589875, + 8.579135595904134, + 8.746224126062097, + 8.830484261197244, + 8.970001229581797 + ], + "5._384._0.0875": [ + 3.4916841486790067, + 4.023276848140572, + 4.652114391638063, + 5.681297047378303, + 6.9380463015872325, + 8.969550980116816, + 11.592458510401565, + 13.893870905489923, + 17.023124352605358, + 18.861301588594436, + 20.135740119269016, + 21.86720234972384, + 23.03427662756972, + 25.571284228905018, + 27.66585578907152, + 28.233309819760525, + 28.740832457689756, + 29.23324301773741, + 29.613708748570712, + 29.93847382029068, + 30.21754310926904, + 30.450692718353388, + 30.62449945044773, + 30.82293752979516, + 30.95839666537829, + 31.02484617650055, + 31.132461897123875 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125465, + 2.1622431316564765, + 2.506080869002254, + 2.8001346640586275, + 3.143294366990228, + 3.5123432738891576, + 3.8600234189929123, + 4.45398273115743, + 4.900441591183545, + 5.270180242262298, + 5.883699543259768, + 6.389539521359432, + 7.84087937505485, + 9.467989567546672, + 9.979488425114548, + 10.461437415012329, + 10.95045414466924, + 11.34193521233123, + 11.683607756326742, + 11.982374116271574, + 12.2349019829957, + 12.424319828958442, + 12.640797884018495, + 12.789131752386128, + 12.862265333742265, + 12.981204844619215 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.555323563196497, + 2.851914682871338, + 3.2002464578628014, + 3.5242145577190493, + 4.004768788595522, + 4.6753627135518006, + 5.37053241852847, + 6.598621528704397, + 7.536403213299241, + 8.299327436484226, + 9.495885035568163, + 10.40228941383791, + 12.625319477460103, + 14.65168403480152, + 15.222185838405005, + 15.735781841341742, + 16.237414701089726, + 16.626085230338823, + 16.958307688829994, + 17.243514615884887, + 17.481303648624475, + 17.658368714563647, + 17.859774330495828, + 17.99722390136755, + 18.064748925166498, + 18.17433242823592 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835166959499571, + 3.1871255135651864, + 3.521450763652216, + 4.027439509719664, + 4.622665050057345, + 5.583846715659724, + 6.946707659016489, + 8.3265553009112, + 10.505319652438443, + 11.93311763761484, + 12.97725000674866, + 14.456086793935185, + 15.483012133781871, + 17.772998811838168, + 19.695420994354542, + 20.219331542938093, + 20.68739389074953, + 21.141514852912017, + 21.4920110264619, + 21.79113393514117, + 22.047849742800484, + 22.262039507077684, + 22.42165335199091, + 22.603657952948648, + 22.727915511246838, + 22.78891059998457, + 22.88778113154805 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.4511928331436965, + 2.7884196222714404, + 3.0449917616272018, + 3.3878349676306145, + 3.6167013746295633, + 3.8014473091734824, + 4.103714393597061, + 4.349768250464976, + 5.063380646081302, + 5.947030655664346, + 6.258931937186635, + 6.574628842128573, + 6.919880542921278, + 7.218168650023276, + 7.495977537069345, + 7.754786980386174, + 7.986629239204976, + 8.168703437052322, + 8.386444579796297, + 8.541372509429488, + 8.619577584856017, + 8.749235721147882 + ], + "5._384._0.0875": [ + 3.491317841397805, + 4.022177649567065, + 4.6499644313052, + 5.669713906997397, + 6.886987635077993, + 8.801627394268827, + 11.23024946838743, + 13.348448668205657, + 16.225809232622492, + 17.917005901927773, + 19.090441189215934, + 20.686525283604617, + 21.76333169975019, + 24.108311276579396, + 26.047899885417298, + 26.573796491306776, + 27.044400277448922, + 27.501200829350736, + 27.854353929954815, + 28.155837052490437, + 28.414987370836677, + 28.631557110257923, + 28.793004735183207, + 28.977349871177466, + 29.10317519030175, + 29.164888808603887, + 29.26480279815533 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.5060808689637466, + 2.800134562146768, + 3.1432778671558337, + 3.5121044816823037, + 3.8593227956715968, + 4.452469659452145, + 4.897684287174093, + 5.264681982035116, + 5.8674240578090116, + 6.3573699391817655, + 7.733313505663411, + 9.24644509508276, + 9.719429862534236, + 10.164800698034501, + 10.616779590495764, + 10.978929708493176, + 11.295349343321517, + 11.572438257511756, + 11.807022092122759, + 11.98321229918948, + 12.184926134460873, + 12.323297898135433, + 12.391547646611848, + 12.502558408238174 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235630354054, + 2.8519144504397964, + 3.2002206761512024, + 3.523980108858305, + 4.003890213358664, + 4.673480378566549, + 5.364750964962281, + 6.563539441339237, + 7.457756334536519, + 8.175462820136095, + 9.290007175869095, + 10.129082533861872, + 12.180757487374152, + 14.052558587707095, + 14.580320743982302, + 15.056204625007132, + 15.521577614910443, + 15.882695218554627, + 16.191615927419257, + 16.457124146665187, + 16.67872075075519, + 16.843808836286154, + 17.03172917431043, + 17.160004547586794, + 17.22301808511969, + 17.32524106304212 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351663640325118, + 3.1870790259809763, + 3.5210959861223587, + 4.026178988521359, + 4.619049732684816, + 5.564386056821893, + 6.865229334071739, + 8.146934182345795, + 10.139826035463237, + 11.439632638907808, + 12.389991078308185, + 13.737513012184142, + 14.674635962011365, + 16.77062042438686, + 18.53628582338796, + 19.01824608680174, + 19.449291036641398, + 19.86784597612683, + 20.191212613537253, + 20.46726545426784, + 20.70432976501326, + 20.902228986375412, + 21.049718360720323, + 21.217939821363466, + 21.332779417447323, + 21.389140895462422, + 21.480461862379464 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331339767, + 2.7884194852066435, + 3.0449833693989405, + 3.3876584141717525, + 3.6162094137740954, + 3.8006306635346228, + 4.1022275270280115, + 4.34734641579633, + 5.052220559169416, + 5.902283292465463, + 6.195875587548563, + 6.490198662815166, + 6.809494939541353, + 7.08373433864319, + 7.33825328861699, + 7.574913729471517, + 7.786813574393382, + 7.9533373824498135, + 8.152862813036988, + 8.295172244350077, + 8.367119416715457, + 8.486620784644476 + ], + "5._384._0.0875": [ + 3.490881843490933, + 4.020744190378673, + 4.6455507369189, + 5.6456162497235844, + 6.805701852469171, + 8.579775438884196, + 10.7958753302268, + 12.721802949934933, + 15.34003917006757, + 16.881391897332673, + 17.95212124996099, + 19.410619017845786, + 20.395698431335255, + 22.545124100827895, + 24.326442077342126, + 24.80983613391418, + 25.24263553790218, + 25.66293250539065, + 25.98804746466618, + 26.265623063695553, + 26.504300662233362, + 26.70381615554619, + 26.852549978777425, + 27.02239302015432, + 27.1383065610374, + 27.19514929797835, + 27.287147913124493 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.5060808689175356, + 2.800134439852535, + 3.1432580673696107, + 3.5118178845942074, + 3.8584673823959803, + 4.449908650940928, + 4.891367829027392, + 5.252037626761025, + 5.8360702118053025, + 6.302926359252817, + 7.585418101497831, + 8.972076453933258, + 9.403988173666447, + 9.810804563325926, + 10.224067284658947, + 10.55573813852613, + 10.845996040424307, + 11.100663204079385, + 11.316692633979722, + 11.479200442668107, + 11.665619484440226, + 11.793666325374954, + 11.856856917236017, + 11.959662996987694 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.555323562842096, + 2.8519141715219485, + 3.200189738147014, + 3.523698732345956, + 4.002792577614734, + 4.669822998615447, + 5.351451583019225, + 6.504273254993608, + 7.34236886935079, + 8.00621496865868, + 9.02817982321098, + 9.794047336380968, + 11.664929431464587, + 13.376910168907761, + 13.860748265729352, + 14.297853859181243, + 14.725931072481712, + 15.058665870110621, + 15.343563798028175, + 15.58872793821681, + 15.793571618341714, + 15.94625844067304, + 16.120195575766346, + 16.238955766258172, + 16.297292041193245, + 16.391893056910394 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_7": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351685474129873, + 3.1872494810797103, + 3.522396515076577, + 4.030598431078965, + 4.62846314291775, + 5.605151632193107, + 7.059587486862146, + 8.628986839733331, + 11.256043877826514, + 13.04477531330593, + 14.375361228852615, + 16.281474592077334, + 17.61578829770339, + 20.59963009703216, + 23.101535745821437, + 23.782255738391786, + 24.388533477669718, + 24.975339697214334, + 25.42669181920194, + 25.811516122639098, + 26.14099154210531, + 26.41529792721028, + 26.619616279545873, + 26.8523279152196, + 27.011239351388447, + 27.089304350616462, + 27.216064782478583 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.4511928331696202, + 2.7884199877775666, + 3.045014140906611, + 3.388305766032835, + 3.6180094932466367, + 3.8035804563743674, + 4.107132369185852, + 4.354191290876673, + 5.075585312142147, + 6.00451375269612, + 6.347058482845416, + 6.702388837381045, + 7.100689993926684, + 7.452839739735847, + 7.787045016498727, + 8.103537540079907, + 8.390952467215385, + 8.619005216971487, + 8.893940815777116, + 9.090927878877606, + 9.190866426005947, + 9.357234884170358 + ], + "5._384._0.0875": [ + 3.4924902464479675, + 4.025694491817311, + 4.656471549160489, + 5.696613779483943, + 6.999258653042167, + 9.194265766668934, + 12.159595984794114, + 14.848138949957272, + 18.585809872125736, + 20.809886860249193, + 22.359127184146686, + 24.467406563969945, + 25.88973387102963, + 28.974420475796617, + 31.512510722413317, + 32.19888317225484, + 32.81175231703319, + 33.40553625492646, + 33.863470871795734, + 34.254212839561845, + 34.589578531872796, + 34.86947155555347, + 35.078102156849866, + 35.31619354024466, + 35.47876232553583, + 35.558548535654445, + 35.68789255773329 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.506080869086975, + 2.8001348882647212, + 3.143330666641524, + 3.512868631748361, + 3.8615650829825396, + 4.45724004452433, + 4.90547120148603, + 5.2783204112764945, + 5.903647470909666, + 6.427641527424538, + 7.9794598587120005, + 9.798375038668485, + 10.38555928133678, + 10.944183832763816, + 11.515815423482945, + 11.976378307124401, + 12.380198609729504, + 12.734329724035502, + 13.034122781077311, + 13.25919107507345, + 13.516247995686514, + 13.692437950672547, + 13.779398117347109, + 13.921038614455503 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.5553235635508984, + 2.851915194220728, + 3.2003031776727293, + 3.5247303600022426, + 4.006702008679548, + 4.6792770151689975, + 5.37919224243428, + 6.640456458988597, + 7.633098973707227, + 8.45973332264586, + 9.787148823004136, + 10.814434915745696, + 13.393170008593996, + 15.795100709086574, + 16.477320370423676, + 17.09193689877772, + 17.69254507386099, + 18.157399624298833, + 18.55460126620613, + 18.895032294172186, + 19.178354525697515, + 19.389165587700326, + 19.62856955127534, + 19.791925587101282, + 19.872225405511, + 20.002725135546267 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351682355012864, + 3.1872251302849097, + 3.5222107359798978, + 4.029977394157237, + 4.627288520656847, + 5.600219555301135, + 7.032984884191333, + 8.557289616513783, + 11.07427829369746, + 12.772764176307026, + 14.031434924743515, + 15.830277243710166, + 17.087650239229646, + 19.89921558514177, + 22.258815745463973, + 22.90124490278435, + 23.473891158170815, + 24.028498135357385, + 24.455451753760748, + 24.819566479470723, + 25.131494058087235, + 25.391325146652367, + 25.584882971721253, + 25.80539677333589, + 25.955971053091172, + 26.029927523570134, + 26.149967002852847 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.1114679242247285, + 2.451192833164528, + 2.788419915981722, + 3.0450097449763556, + 3.3882132869744943, + 3.617752528194982, + 3.8031613764423104, + 4.106459519524129, + 4.353311153671507, + 5.072840379487638, + 5.991046288362942, + 6.326425331509614, + 6.672430339018482, + 7.058110268850382, + 7.397264076377373, + 7.717703349335078, + 8.01997776561216, + 8.293603757541934, + 8.510216364100062, + 8.770938275534345, + 8.95752892540082, + 9.052123745497825, + 9.209532558156825 + ], + "5._384._0.0875": [ + 3.4922598947018972, + 4.025002548155721, + 4.655134331755692, + 5.690331540150678, + 6.972791133801964, + 9.100664490653951, + 11.933283148884989, + 14.478603634388744, + 17.999886676263774, + 20.090493756733583, + 21.545987592269274, + 23.527056462207653, + 24.863879481983226, + 27.766545911657303, + 30.158172454655915, + 30.805374595048324, + 31.383563463156968, + 31.943995253532805, + 32.37645599564272, + 32.74550372310608, + 33.062360788911626, + 33.326886229499635, + 33.52406597266024, + 33.74911518842548, + 33.902765355139074, + 33.978163262781706, + 34.10035556402741 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.1622431316564747, + 2.50608086906277, + 2.8001348242058364, + 3.143320295310391, + 3.5127185274005885, + 3.8611245383863726, + 4.456289061469193, + 4.903820115063849, + 5.275258433164214, + 5.895207425247079, + 6.411211541159847, + 7.9212883268575505, + 9.665363575883847, + 10.224151297899045, + 10.754530598875027, + 11.296316096897657, + 11.73236376476089, + 12.114499894637813, + 12.449612786026062, + 12.733407022233301, + 12.946555780308934, + 13.190215942135552, + 13.357305492500565, + 13.439776186958209, + 13.574079786677052 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.555323563449639, + 2.8519150481209055, + 3.2002869720065203, + 3.5245829858479856, + 4.006149417324514, + 4.678100409567329, + 5.375926528254923, + 6.62235679003514, + 7.591819937592109, + 8.392470884621137, + 9.668091853551987, + 10.648845141342614, + 13.095804231171776, + 15.365477677191747, + 16.009403199613907, + 16.58983206969518, + 17.157277346927497, + 17.596832670448485, + 17.972587872841395, + 18.294897885868515, + 18.563350094420663, + 18.76317066042159, + 18.990232439906197, + 19.145188601263747, + 19.221349847441097, + 19.345072496190635 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835167875603251, + 3.1871970332340473, + 3.5219963794131113, + 4.029260917882597, + 4.625928009849139, + 5.594060198530318, + 6.99673245889046, + 8.4585733909559, + 10.833430009370964, + 12.423328161681923, + 13.598961085899786, + 15.27815914939265, + 16.452112666812614, + 19.081691324053235, + 21.294059935413117, + 21.897169732111077, + 22.43529338054611, + 22.95686062737142, + 23.358756686217212, + 23.70160022437435, + 23.99548346209036, + 24.24041147052883, + 24.4228870289199, + 24.630826575283265, + 24.772807028892295, + 24.842530602753733, + 24.95565353335291 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.4511928331586534, + 2.7884198331403587, + 3.0450046727493625, + 3.38810658085504, + 3.6174560378972087, + 3.8026778541817117, + 4.105683214081372, + 4.352294248438615, + 5.069492265954846, + 5.972912824282827, + 6.298130128645553, + 6.63102893896598, + 6.999320522030394, + 7.321086274207917, + 7.623655668921127, + 7.908068949951388, + 8.16494254630586, + 8.368081515178106, + 8.612616074991335, + 8.787772286221983, + 8.87662943524075, + 9.02464412358304 + ], + "5._384._0.0875": [ + 3.491994142114222, + 4.024204307584462, + 4.65358071176194, + 5.682382402113814, + 6.9367573719201205, + 8.972616581907712, + 11.637227522807487, + 14.014679773205113, + 17.297188390973453, + 19.245985992578277, + 20.60345675383314, + 22.452886671606105, + 23.70186246041883, + 26.418244049377332, + 28.660207586271643, + 29.26738230474611, + 29.8100856111004, + 30.336353948257422, + 30.74267700467997, + 31.08945610420344, + 31.387291151685208, + 31.636004809471146, + 31.82139971422212, + 32.03301787279033, + 32.17748404386561, + 32.248364642601594, + 32.363201280351305 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.5060808690348386, + 2.800134750291739, + 3.1433083283920316, + 3.512545332162711, + 3.8606162605768017, + 4.4551905711040956, + 4.9018745033620545, + 5.271501391186219, + 5.884156881969836, + 6.388946874039522, + 7.841043637107727, + 9.488314249149445, + 10.01262574234057, + 10.509674399963247, + 11.017205633320584, + 11.425819214492831, + 11.784169106393282, + 12.098777212814658, + 12.365568671211022, + 12.566184215687349, + 12.795887172024653, + 12.953572485598789, + 13.031431213910349, + 13.158238440528569 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323563332807, + 2.851914879544181, + 3.200268273167084, + 3.5244129408054246, + 4.005511890650542, + 4.676737125702264, + 5.371937642328, + 6.597971443417247, + 7.534858097767492, + 8.299767731324474, + 9.507071697872629, + 10.429220175896317, + 12.720367568755057, + 14.844319424180888, + 15.447451233211849, + 15.99185699130355, + 16.524661035486655, + 16.93795015191708, + 17.291524429505237, + 17.59514013918473, + 17.848274493054614, + 18.03678385863218, + 18.251144379728643, + 18.39746539839732, + 18.46937780038015, + 18.586154730118864 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516745572232, + 3.187164253368532, + 3.5217463021465485, + 4.028425353785383, + 4.624320385309641, + 5.585862533928232, + 6.947833696383779, + 8.330661754033976, + 10.539157052604608, + 12.008728969051205, + 13.094687951791244, + 14.647172714443403, + 15.734034530062555, + 18.175664782412213, + 20.237045907763434, + 20.799914975362725, + 21.302666196094677, + 21.790355036352366, + 22.166516830646184, + 22.487505875651767, + 22.76282585648534, + 22.99240336788429, + 23.16346060813776, + 23.358435112034947, + 23.491555349271668, + 23.55691665903341, + 23.662918983314906 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224729, + 2.4511928331517985, + 2.788419736492105, + 3.044998755151511, + 3.3879820910416334, + 3.617110143206509, + 3.8021137808594885, + 4.104776870552116, + 4.351097074213874, + 5.0651170507068946, + 5.948169096061121, + 6.259903644525017, + 6.575933694444772, + 6.922545183304581, + 7.223325089975568, + 7.50492177546156, + 7.768911460740835, + 8.007072685634785, + 8.195451424028999, + 8.422574142154385, + 8.585634904399814, + 8.668489399723747, + 8.80677777139842 + ], + "5._384._0.0875": [ + 3.491684128183832, + 4.023273679326173, + 4.651730507714633, + 5.671724376919866, + 6.888154138692381, + 8.809043905825527, + 11.28030665244116, + 13.474882039208836, + 16.506164791135582, + 18.308567292433217, + 19.565546634826482, + 21.280546374142233, + 22.44003656266946, + 24.966650724645156, + 27.055972882719914, + 27.622285223882212, + 28.128719838775215, + 28.6200350616598, + 28.999577614641222, + 29.323533183453915, + 29.60185337517716, + 29.834331605315157, + 30.007624262466344, + 30.205444026052074, + 30.340476171243292, + 30.40671795712564, + 30.514006660918742 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125465, + 2.1622431316564765, + 2.506080869002254, + 2.8001346640586284, + 3.143294366990227, + 3.5123432738999814, + 3.8600233517352507, + 4.4539036307211735, + 4.899461835214388, + 5.266539255929433, + 5.868989356782353, + 6.358492761188275, + 7.736657385625711, + 9.270516572139218, + 9.756359845550195, + 10.21688001362137, + 10.687454153375587, + 11.066869510349436, + 11.400135543292478, + 11.693279780901959, + 11.942369436731155, + 12.129981133471361, + 12.345235904478468, + 12.49321089582247, + 12.566319036587998, + 12.68542457740852 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235631964966, + 2.8519146828713393, + 3.2002464578628005, + 3.5242145577258985, + 4.004768315339668, + 4.675125111431721, + 5.366723308980793, + 6.564788240389095, + 7.459179907424581, + 8.179480525742168, + 9.305316633058492, + 10.160346760896672, + 12.280595062171288, + 14.25084949259483, + 14.81164174295183, + 15.318780638847144, + 15.815849625044592, + 16.202077530288285, + 16.53281543911917, + 16.817180484065926, + 17.054531841700324, + 17.23138424087505, + 17.432644216856357, + 17.570060719215157, + 17.637594859230667, + 17.747224080848014 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351669594995905, + 3.187125513679623, + 3.5214506346493266, + 4.027368759543215, + 4.621182513988997, + 5.5683335741465125, + 6.873331275812357, + 8.164538815594387, + 10.19612321541053, + 11.542042633796521, + 12.53668913217655, + 13.960638850864926, + 14.959274771363438, + 17.210053517003836, + 19.117433740339653, + 19.63915300992996, + 20.105654339258454, + 20.558565221250227, + 20.90825097292871, + 21.20674100429993, + 21.46292231306726, + 21.676653523872577, + 21.835920657547177, + 22.017500290716487, + 22.1414675404078, + 22.202324182541727, + 22.30098074120815 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.451192833143697, + 2.78841962227144, + 3.0449917616274744, + 3.3878349615640797, + 3.6167000476783744, + 3.8014318863340906, + 4.103521410809552, + 4.3490154224938316, + 5.055121119534804, + 5.907399820037824, + 6.202198215455947, + 6.498311394934962, + 6.820541542284855, + 7.0985469476257945, + 7.357925770488352, + 7.600640451509106, + 7.819524568261454, + 7.992791669045593, + 8.202129969896706, + 8.352829995143063, + 8.429545395541693, + 8.557869281883468 + ], + "5._384._0.0875": [ + 3.491320973830197, + 4.022069697494956, + 4.647876244938254, + 5.649968268272422, + 6.813845846592735, + 8.603220080465828, + 10.871370150261015, + 12.879268727628514, + 15.656394927977583, + 17.311012522871366, + 18.466509090944335, + 20.0455496400087, + 21.11442085750863, + 23.448252747151205, + 25.381976116182358, + 25.906564052791285, + 26.375925045722266, + 26.83147586782311, + 27.183581359359703, + 27.484148111521442, + 27.742454741169883, + 27.95827180171606, + 28.119144425748928, + 28.30280042312398, + 28.42815057002699, + 28.48963309681101, + 28.589183091565666 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.506080868963746, + 2.800134562146767, + 3.143277867164189, + 3.5121044343759147, + 3.859309283955121, + 4.451704741922789, + 4.893877995441933, + 5.255203986473298, + 5.84056044264124, + 6.308839572564523, + 7.599913162476777, + 9.013296166170198, + 9.45948917497746, + 9.882592614712825, + 10.315427171022868, + 10.665057870895861, + 10.972713521820456, + 11.243900002488559, + 11.47482982792622, + 11.649065178517366, + 11.849402113565995, + 11.987327081992834, + 12.055514684041317, + 12.166643561808627 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.5553235630354054, + 2.8519144504397977, + 3.2002206761812646, + 3.5239800693982257, + 4.003850088721485, + 4.671947965318962, + 5.354802151689906, + 6.510756949600332, + 7.35310095595652, + 8.022898985878424, + 9.060944017249838, + 9.845843681507256, + 11.790920175920078, + 13.604754549814887, + 14.122441090278265, + 14.591525579178287, + 15.052026683061197, + 15.41047918114155, + 15.717737602321739, + 15.982258901937199, + 16.2033023123184, + 16.368096732281188, + 16.55578301675817, + 16.683968860815096, + 16.74696528911953, + 16.84919436111448 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_8": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351690611500637, + 3.1872895883063337, + 3.5227025110324433, + 4.031620482478853, + 4.630264884936776, + 5.609776207057137, + 7.080328438874813, + 8.688540961377582, + 11.431153604664619, + 13.332311387612558, + 14.761943035305716, + 16.828957753688112, + 18.28751522405521, + 21.570874578287754, + 24.33657219554867, + 25.090024243807033, + 25.760502314217543, + 26.408989417268742, + 26.907103220770992, + 27.331648800204125, + 27.69474143358859, + 27.996732680018305, + 28.22162067286917, + 28.477609393702433, + 28.65243364444676, + 28.738348259296234, + 28.87797537203736 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004358, + 2.1114679242247285, + 2.4511928331780073, + 2.788420106029551, + 3.045021381262722, + 3.38845808533481, + 3.6184327426741314, + 3.8042707013606734, + 4.108236105921633, + 4.3555964541384595, + 5.078504755946804, + 6.015130270560566, + 6.363229336721512, + 6.7263149195846905, + 7.135946323737552, + 7.500754069220182, + 7.849445633877918, + 8.182142297767523, + 8.486590739520441, + 8.729890946065366, + 9.025442238447253, + 9.238946140450093, + 9.347936042165172, + 9.530494234655313 + ], + "5._384._0.0875": [ + 3.4928697153769974, + 4.02683200916949, + 4.658448997301193, + 5.702210107635735, + 7.0198883433943005, + 9.274355021536941, + 12.385691192214761, + 15.26395697787159, + 19.334447705976842, + 21.78535131770515, + 23.501367106779696, + 25.843124203731893, + 27.425942973017722, + 30.857741797030908, + 33.67778943708975, + 34.43974666233109, + 35.11940093118032, + 35.77730736135872, + 36.28407112596562, + 36.71636528555267, + 37.087097281286596, + 37.39628808436821, + 37.62673595543031, + 37.88964125802538, + 38.06917833021894, + 38.1573186564167, + 38.30029902414451 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808691268437, + 2.8001349937734705, + 3.143347748837802, + 3.513115866090816, + 3.8622906976579143, + 4.458757645477697, + 4.907663026108237, + 5.281528244779501, + 5.910596810033362, + 6.440441987085992, + 8.027672139620023, + 9.925437201496388, + 10.547528998788032, + 11.143385891566425, + 11.757161249256605, + 12.254559097949482, + 12.692740136300634, + 13.078445941968296, + 13.405907711189013, + 13.652268115515463, + 13.933972575581924, + 14.127331263331724, + 14.22290323814277, + 14.378824011322182 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235637176743, + 2.8519154348557385, + 3.200329869369127, + 3.5249730975082882, + 4.007611903490579, + 4.681073418907745, + 5.382610449937582, + 6.654597221210243, + 7.665886770127152, + 8.515667953522325, + 9.894902522485486, + 10.974343582158987, + 13.72486724696059, + 16.332799223598922, + 17.080225644601605, + 17.755050626379496, + 18.415635009261763, + 18.92717329681781, + 19.36450086774345, + 19.739186229802844, + 20.050820553856067, + 20.2826476149864, + 20.545712562328916, + 20.725229368749982, + 20.81351919596231, + 20.95714989650266 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516882033579, + 3.187270788038401, + 3.522559074339714, + 4.031140816849006, + 4.6293490981195795, + 5.605744055219204, + 7.058407261608492, + 8.629797557297271, + 11.280384469224542, + 13.103231414670695, + 14.468855336122093, + 16.438180546802226, + 17.825267940494715, + 20.945744363665355, + 23.575098755859784, + 24.291720003231596, + 24.92988995151028, + 25.547478293111894, + 26.022239671114885, + 26.426978663342066, + 26.77332522347999, + 27.061530774675564, + 27.276176152941705, + 27.520567541888127, + 27.687463786018217, + 27.769468606257664, + 27.902688133019225 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004344, + 2.111467924224728, + 2.451192833174076, + 2.788420050598931, + 3.045017987345733, + 3.3883866855296882, + 3.6182343419058687, + 3.8039471085438032, + 4.107716181840361, + 4.354913827664863, + 5.076283140315023, + 6.004033739752675, + 6.346287265359569, + 6.701804221850618, + 7.101174357874585, + 7.455326122985901, + 7.792586330326935, + 8.113280165066671, + 8.405869828971618, + 8.639150608170983, + 8.921995988899154, + 9.12599591662209, + 9.230020905472122, + 9.404122307066807 + ], + "5._384._0.0875": [ + 3.492691828945058, + 4.026297430709158, + 4.65740173708857, + 5.697055408424652, + 6.998076870661986, + 9.197535079290326, + 12.196802280843405, + 14.948711749560628, + 18.820381461952607, + 21.145173531392953, + 22.77152434235547, + 24.99070681948609, + 26.49072189061218, + 29.746079335666003, + 32.42433883522291, + 33.148429917915784, + 33.79462158609949, + 34.42040061954318, + 34.90268527405305, + 35.314143219578824, + 35.66712713963073, + 35.96160260209396, + 36.18108779550721, + 36.43151443980727, + 36.60251630476868, + 36.68645473334707, + 36.82257843049222 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125465, + 2.162243131656477, + 2.506080869108155, + 2.800134944316245, + 3.143339741557707, + 3.512999974421148, + 3.861950520165782, + 4.458019975779238, + 4.906354386417928, + 5.2790481846948065, + 5.903653514194394, + 6.426927523809909, + 7.980069569210787, + 9.815445545337695, + 10.413096132780922, + 10.984215672055853, + 11.571405657678412, + 12.046609941753701, + 12.464911703811248, + 12.83299285663751, + 13.145500137939917, + 13.380651007689153, + 13.64970476630406, + 13.83443848174046, + 13.925741340342944, + 14.074659728352419 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235636394978, + 2.8519153220580757, + 3.2003173576347588, + 3.5248593137393507, + 4.007185156719708, + 4.680155552328298, + 5.379963602879159, + 6.639668044713541, + 7.6320441832190715, + 8.460642033004596, + 9.79703666038731, + 10.837145345530926, + 13.472193463332971, + 15.958932958293287, + 16.67043951296796, + 17.31299418299807, + 17.94211351811396, + 18.429586207748514, + 18.846481933680224, + 19.203905714285025, + 19.501387745491787, + 19.72276019831951, + 19.974102102928754, + 20.14563925003203, + 20.22999317182549, + 20.3671640440239 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351685474129864, + 3.187249481079706, + 3.5223965150333623, + 4.030597254149285, + 4.628306283297189, + 5.600807193533765, + 7.029516033891171, + 8.550658495957524, + 11.080905791556, + 12.807293172940938, + 14.097210780701635, + 15.955209505379473, + 17.263430191898752, + 20.209855405058065, + 22.697530776864483, + 23.376287612262566, + 23.981292488713535, + 24.56720154997497, + 25.018014873586978, + 25.40244540286796, + 25.731606615618748, + 26.005650024932937, + 26.209769985379655, + 26.442232914386423, + 26.600975757805582, + 26.67896185950815, + 26.805603012551177 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.4511928331696193, + 2.7884199877775657, + 3.045014140906612, + 3.3883057660325724, + 3.6180094922474413, + 3.8035803882284682, + 4.107126946354655, + 4.354138957525355, + 5.073621050988699, + 5.989593450189367, + 6.323831773439337, + 6.668921828317467, + 7.0542405393026675, + 7.394038406470533, + 7.716227626348914, + 8.021516106362068, + 8.299337338416999, + 8.520510166949208, + 8.788531948684625, + 8.981872970066107, + 9.080488486111282, + 9.24564809740162 + ], + "5._384._0.0875": [ + 3.4924902462240515, + 4.025691659118396, + 4.656204908548113, + 5.690673498303242, + 6.969356814313177, + 9.094213888523191, + 11.949242378603905, + 14.549468365382303, + 18.197282384621133, + 20.38618322735771, + 21.917817017187947, + 24.009276880506814, + 25.4238506890155, + 28.49830231841301, + 31.031694616431917, + 31.717123437954125, + 32.32910715509866, + 32.92201083532564, + 33.379204321007265, + 33.76929634245441, + 34.10405777433087, + 34.3834064999266, + 34.59161930137539, + 34.82920581703783, + 34.991425579526435, + 35.071042086441004, + 35.20011951039427 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.506080869086975, + 2.80013488826472, + 3.143330666641525, + 3.5128686317388342, + 3.8615650104979613, + 4.457182739146115, + 4.904837927925401, + 5.276066571212114, + 5.894839414782315, + 6.409249221581435, + 7.915871872184203, + 9.669424219924101, + 10.236653712993952, + 10.777844220963049, + 11.333776151246415, + 11.783596738436938, + 12.179675308673877, + 12.528459692134719, + 12.824889747857245, + 13.04816048870893, + 13.303980824104247, + 13.479794951778663, + 13.566717725572275, + 13.708502768720066 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323563550898, + 2.8519151942207284, + 3.200303177672732, + 3.524730359994974, + 4.006701555431667, + 4.679109946600958, + 5.3767867296499725, + 6.6202162746618844, + 7.58671208785596, + 8.38639894283139, + 9.665808559526834, + 10.6554219435839, + 13.150686539670682, + 15.501287570103663, + 16.174026967077687, + 16.782241743008807, + 17.378265648267803, + 17.84064950045805, + 18.236367418174268, + 18.575976508571067, + 18.858895304965788, + 19.069528044039036, + 19.308837724460506, + 19.47219808432089, + 19.55252581507207, + 19.68310159657974 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351682355012877, + 3.1872251302849106, + 3.5222107359335757, + 4.029976125228381, + 4.627115022761462, + 5.595063479426118, + 6.994135380612347, + 8.45241782638955, + 10.838566293840268, + 12.45497710659033, + 13.661028272606204, + 15.398697378756273, + 16.623329613596034, + 19.38844025633451, + 21.730480859397304, + 22.37049825352016, + 22.9415580382165, + 23.49503987649358, + 23.921313357230183, + 24.28492891888709, + 24.596456859254175, + 24.85595297491729, + 25.049258303154048, + 25.269455970499102, + 25.419815988361012, + 25.493672139075066, + 25.61355984867646 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.1114679242247285, + 2.451192833164529, + 2.788419915981721, + 3.0450097449763556, + 3.3882132869742114, + 3.617752527123832, + 3.8031613032299614, + 4.106453637569719, + 4.353253524240171, + 5.070546643303833, + 5.9720486259273375, + 6.296148818048067, + 6.628051273828491, + 6.99576552876231, + 7.31789665825938, + 7.621901654946137, + 7.909016051644826, + 8.169814677468294, + 8.37732762367266, + 8.629003704307936, + 8.810865220846225, + 8.903749895121784, + 9.05959075030709 + ], + "5._384._0.0875": [ + 3.492259894585829, + 4.024999486535791, + 4.654837704916314, + 5.683207345007402, + 6.934212844298481, + 8.966390902355753, + 11.651119116272728, + 14.081651711846238, + 17.489512614651918, + 19.53651928324039, + 20.970291541431436, + 22.930682139006592, + 24.25798081595846, + 27.1479973890361, + 29.53374510977232, + 30.17975470326102, + 30.756820762750237, + 31.31613496351443, + 31.747655189817266, + 32.11587851140049, + 32.43196982221272, + 32.695806033258144, + 32.89245697847118, + 33.116867522668265, + 33.270076306963254, + 33.345259641783166, + 33.46711484057328 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.162243131656475, + 2.5060808690627714, + 2.8001348242058364, + 3.143320295310391, + 3.5127185273903803, + 3.8611244605215096, + 4.456226207238566, + 4.9031005091310025, + 5.272608918328101, + 5.884309667073056, + 6.387656104580347, + 7.836015973314944, + 9.491300378591728, + 10.023536715110792, + 10.53097797920762, + 11.052326952064814, + 11.474566664404161, + 11.846818252709182, + 12.175154296263281, + 12.454709441742958, + 12.665595326434111, + 12.907698770216205, + 13.074316458544317, + 13.156741853280069, + 13.291231823658247 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235634496407, + 2.8519150481209055, + 3.200286972006517, + 3.5245829858401927, + 4.006148929437717, + 4.677915500894676, + 5.373118036966156, + 6.596596285265086, + 7.530505040188119, + 8.294084133253216, + 9.504176861155573, + 10.434288915285471, + 12.772029762526978, + 14.976526629423686, + 15.60862762766369, + 16.181074184185544, + 16.7428174374619, + 17.179312147107296, + 17.553223881676672, + 17.874513203787554, + 18.1424645361756, + 18.342063709755255, + 18.569009009603054, + 18.72397266478046, + 18.800170143430456, + 18.923990548634197 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516787560325, + 3.187197033234047, + 3.521996379431283, + 4.0292597096019565, + 4.625721763038559, + 5.587564557569914, + 6.948397562662267, + 8.331353271555528, + 10.556526955969794, + 12.05534570133881, + 13.173332871547018, + 14.786225311921424, + 15.924919319455675, + 18.504535759010306, + 20.69788246672729, + 21.298347548034524, + 21.834695152281, + 22.354980914438027, + 22.75608893376499, + 23.098348453369344, + 23.39176152537687, + 23.636295738546135, + 23.818475411589084, + 24.026047529160575, + 24.16777924704659, + 24.237386134766187, + 24.350332010200432 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.451192833158654, + 2.788419833140359, + 3.0450046727493616, + 3.3881065808554127, + 3.617456036781504, + 3.8026777689014795, + 4.105676105790054, + 4.352221890024729, + 5.066586111104281, + 5.948999978075887, + 6.2603475799171076, + 6.576183238306337, + 6.923103812457311, + 7.224973505504251, + 7.508618231298772, + 7.775809428543845, + 8.01827710255376, + 8.211280703070846, + 8.445791910142795, + 8.615709277147673, + 8.70266508705316, + 8.848912509007295 + ], + "5._384._0.0875": [ + 3.491994123192238, + 4.024201382006676, + 4.6532257370231545, + 5.673416944149244, + 6.888765200324748, + 8.811152101311933, + 11.308305946156384, + 13.559618492709657, + 16.71984335462332, + 18.6220544788699, + 19.956306748862755, + 21.7836035049049, + 23.022349660283407, + 25.724982211188845, + 27.96042317580439, + 28.56625479790605, + 29.10769364205969, + 29.632703630227397, + 30.03797074996076, + 30.383825607311664, + 30.680804518795714, + 30.928749429819597, + 31.113555237101995, + 31.324463093283736, + 31.468438756603597, + 31.539080953515708, + 31.653542951837995 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.506080869034839, + 2.8001347502917415, + 3.1433083283920293, + 3.512545332172703, + 3.860616198489627, + 4.455117506172875, + 4.900966731345335, + 5.268109964688517, + 5.870276226653209, + 6.359249284470196, + 7.737214551140633, + 9.282623035715659, + 9.777232964218948, + 10.248835042363613, + 10.733827284715428, + 11.127318127756938, + 11.474851999782473, + 11.782048174962823, + 12.0441912650588, + 12.242307245768956, + 12.470263234387327, + 12.627399376723938, + 12.70519261553683, + 12.832180031895922 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235633328057, + 2.8519148795441795, + 3.2002682731670817, + 3.5244129408117444, + 4.00551145375924, + 4.676517516723298, + 5.368391997816818, + 6.565666111080066, + 7.459285096223779, + 8.180159809727389, + 9.3115795949611, + 10.176419675857291, + 12.346854341735195, + 14.400021051562382, + 14.990405776399212, + 15.52614249696146, + 16.052728014747434, + 16.462659405134946, + 16.814187588879793, + 17.116650538664505, + 17.369200889359227, + 17.557440325183997, + 17.771641689920152, + 17.917950350289843, + 17.98989255273181, + 18.10676139247415 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351674557223374, + 3.1871642534734326, + 3.5217461838921724, + 4.028360490675938, + 4.622960923391023, + 5.571626931397867, + 6.88001788739797, + 8.17808121322815, + 10.237000024264212, + 11.617850620823386, + 12.647898199173508, + 14.136075740342104, + 15.1886538307502, + 17.581186767163988, + 19.623359697834776, + 20.18344854384773, + 20.684275674704665, + 21.170525183518766, + 21.54576937041802, + 21.866064390995902, + 22.140818754577484, + 22.369922740942208, + 22.540625805468544, + 22.735167702282627, + 22.86799546974674, + 22.93321888029106, + 23.039010472484247 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224729, + 2.4511928331517994, + 2.7884197364921053, + 3.0449987551517603, + 3.3879820854806204, + 3.6171089268298666, + 3.8020996430959118, + 4.104599954792485, + 4.350406882079875, + 5.057540388814563, + 5.911649410658043, + 6.207369717835501, + 6.5047672218410995, + 6.829014332299413, + 7.109581494066122, + 7.37231520006511, + 7.619347638700854, + 7.8434209239801715, + 8.0219086062695, + 8.239216768232712, + 8.397098924117081, + 8.478053359033353, + 8.61453299246815 + ], + "5._384._0.0875": [ + 3.491687000182511, + 4.023174703080854, + 4.649815534242104, + 5.653599523519368, + 6.820571048856125, + 8.62093003417779, + 10.926468658518107, + 12.998655685485373, + 15.911656765322792, + 17.668862520649455, + 18.90318568310825, + 20.596416532032162, + 21.74574316395581, + 24.25838526581032, + 26.340812342403122, + 26.905664867630787, + 27.410730578908392, + 27.90068489837757, + 28.2790922690326, + 28.60205693472487, + 28.879464456643507, + 29.111127392889866, + 29.28379686041137, + 29.480868184859876, + 29.61538430830673, + 29.681375351282792, + 29.788269732315793 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125465, + 2.1622431316564765, + 2.506080869002255, + 2.800134664058628, + 3.143294366997892, + 3.5123432305353424, + 3.8600109652601504, + 4.45320225036707, + 4.895971329985993, + 5.257844860788607, + 5.844302292375319, + 6.313731379592927, + 7.611060940872719, + 9.043180732830411, + 9.500003877034832, + 9.935716124677896, + 10.38428997003507, + 10.748909566324631, + 11.071526882451796, + 11.357309816735846, + 11.601720735079569, + 11.786770770899814, + 12.000167899130295, + 12.147505853074923, + 12.220502934872219, + 12.339715333260198 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.5553235631964974, + 2.8519146828713406, + 3.200246457890359, + 3.5242145215538, + 4.004731530473492, + 4.673719871874442, + 5.357596953475772, + 6.516142954839571, + 7.361685181192804, + 8.035643652199703, + 9.084838858261804, + 9.883383738009085, + 11.886072763284826, + 13.787233922359773, + 14.335483274119806, + 14.833961953379267, + 15.324733297032955, + 15.707486612404416, + 16.036055147235146, + 16.319142475261323, + 16.555795553898104, + 16.732292439181506, + 16.933295218687224, + 17.070633258705772, + 17.138164990246015, + 17.24783556701593 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_9": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351694667320997, + 3.1873212519372207, + 3.522944092846938, + 4.032427539989081, + 4.631688043128086, + 5.613431034186714, + 7.096741873297472, + 8.735654415178857, + 11.571116932150975, + 13.565565480263913, + 15.079573887280452, + 17.287404108534677, + 18.857521002347553, + 22.41740811892238, + 25.433126831431945, + 26.25620722246272, + 26.988224775420143, + 27.69587567813717, + 28.238786757189658, + 28.701380305030696, + 29.096623090697204, + 29.425047584402208, + 29.669567597928566, + 29.94774843010551, + 30.137748274781146, + 30.23115544798631, + 30.383087866026237 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833184628, + 2.7884201993863775, + 3.045027097333687, + 3.388578338165292, + 3.6187668990485813, + 3.8048156805343165, + 4.109107687102011, + 4.356706211679365, + 5.080811370043167, + 6.023525577966797, + 6.37600670993275, + 6.74519473040439, + 7.1637479037782255, + 7.538565804218799, + 7.898815187472416, + 8.244614372149723, + 8.56307405717557, + 8.819151583278083, + 9.132390405373629, + 9.360484149314484, + 9.477661470177082, + 9.675253733105723 + ], + "5._384._0.0875": [ + 3.4931693543633533, + 4.027730333976235, + 4.660011059971689, + 5.706633667700117, + 7.036213396969804, + 9.337820107981067, + 12.567414902151802, + 15.605732969440362, + 19.970656933891036, + 22.629942513537266, + 24.502121050731816, + 27.065449893256574, + 28.802128863936378, + 32.56871743873009, + 35.66146760089406, + 36.49653590724793, + 37.24068560760271, + 37.96042672474026, + 38.514165974863715, + 38.986414629471874, + 39.39109611536659, + 39.72836859288193, + 39.97972292592612, + 40.26638941673585, + 40.46217824490726, + 40.55832440787089, + 40.714390329139 + ], + "5._48._0.075": [ + 1.5268463243731414, + 1.8679037053125422, + 2.1622431316564774, + 2.506080869158317, + 2.8001350770698545, + 3.1433612347855915, + 3.5133110543157127, + 3.862863617821157, + 4.459956264798623, + 4.909394457931452, + 5.284062542995692, + 5.91608858697242, + 6.450554676689523, + 8.065778771234925, + 10.02672859425827, + 10.677526036471356, + 11.304578127476994, + 11.954319371244297, + 12.483776816471734, + 12.952372012443101, + 13.36647712667588, + 13.719188766283581, + 13.98521555115251, + 14.289932467535317, + 14.499479924136082, + 14.603229967604683, + 14.772807287950432 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235638493423, + 2.851915624830739, + 3.2003509417705724, + 3.5251647355560265, + 4.008330366718255, + 4.682492368987401, + 5.3853112436155675, + 6.665782552073982, + 7.6917903372756955, + 8.559835461709806, + 9.980343190378921, + 11.102025772465119, + 13.996615739151329, + 16.786595264038603, + 17.593584378732732, + 18.324044237628474, + 19.04062386957335, + 19.596069993366886, + 20.07134364969443, + 20.47852882288078, + 20.817077304495243, + 21.06890828597218, + 21.354498842905254, + 21.54942114109866, + 21.645342102117002, + 21.80154912414158 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351692752072393, + 3.1873062996636743, + 3.5228300118613274, + 4.032045922902178, + 4.630952703956352, + 5.610046883461695, + 7.0781296612040485, + 8.685916628583788, + 11.442972772566275, + 13.369135626162413, + 14.826213406499342, + 16.945380849781845, + 18.449413678020193, + 21.8558507469505, + 24.741026085745702, + 25.528646050201232, + 26.229572608112672, + 26.907503934479113, + 27.42800081038819, + 27.871594853707137, + 28.250805051053618, + 28.5660557062082, + 28.800792430828423, + 29.067907958521765, + 29.250342087541405, + 29.340015327262613, + 29.485817213899942 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615422, + 1.4813847491413084, + 1.8198213217004355, + 2.111467924224729, + 2.4511928331815023, + 2.7884201553012113, + 3.0450243980779166, + 3.388521552023881, + 3.618609101237458, + 3.804558295561782, + 4.108693852334343, + 4.356160882715093, + 5.078963485259463, + 6.014115295451059, + 6.361644493341716, + 6.724455770392008, + 7.134385398413538, + 7.500240157426202, + 7.850823418573738, + 8.186379133306886, + 8.494591598935013, + 8.74189262937794, + 9.043810110435968, + 9.263258159009624, + 9.37584298352329, + 9.565473082693645 + ], + "5._384._0.0875": [ + 3.4930278516762012, + 4.027304922811799, + 4.659166460988909, + 5.702292942750892, + 7.017694326659761, + 9.272748753711983, + 12.406291441882086, + 15.332992064681491, + 19.515956922265058, + 22.056640535374942, + 23.843389945980213, + 26.288915621577043, + 27.945511613463626, + 31.541033091534537, + 34.496315480422794, + 35.29470554095142, + 36.00649828058117, + 36.695221258450665, + 37.22538143089483, + 37.677569976243916, + 38.06519122924682, + 38.388338206214456, + 38.629171411849484, + 38.90386895453239, + 39.09146948522561, + 39.18358243808109, + 39.3330586680606 + ], + "5._48._0.075": [ + 1.526846324373138, + 1.8679037053125451, + 2.162243131656477, + 2.506080869143455, + 2.800135037735449, + 3.1433548664209883, + 3.513218881740628, + 3.8625930347473103, + 4.459366895140067, + 4.908326834622543, + 5.281997641083917, + 5.910217296035236, + 6.43909723888483, + 8.02550487918053, + 9.933459975540691, + 10.563123373828613, + 11.168481739514561, + 11.794586067185293, + 12.304019456840313, + 12.75446550242115, + 13.152300166844995, + 13.4910738298865, + 13.746575570746154, + 14.039344098021322, + 14.240702289169922, + 14.34038178931234, + 14.503252809964573 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235637871667, + 2.8519155351203236, + 3.2003409909132836, + 3.525074239459178, + 4.007990890620787, + 4.681754940759662, + 5.383106972099744, + 6.653112938286397, + 7.663118666584175, + 8.51331908485106, + 9.897576446704663, + 10.985592895515337, + 13.77870932769235, + 16.458054420231168, + 17.231467453747705, + 17.93155144377606, + 18.618325628397244, + 19.15088442633709, + 19.60667679717963, + 19.99738806150681, + 20.322429963274313, + 20.564283823083866, + 20.83869744795334, + 21.026008738759597, + 21.11817085265809, + 21.268194147562355 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351690611500637, + 3.1872895883063337, + 3.5227025109943106, + 4.031619443862955, + 4.630126428188359, + 5.605938883581677, + 7.053850201804107, + 8.619592998427104, + 11.273630306810157, + 13.114370874240288, + 14.502881309995292, + 16.519197743583145, + 17.949137763765428, + 21.189726837490685, + 23.938567914118494, + 24.689663467906183, + 25.358653728999595, + 26.006122575869444, + 26.503655810125302, + 26.927793860845536, + 27.290577249663173, + 27.59231890085207, + 27.817021071394333, + 28.07277716118093, + 28.247445899561296, + 28.33328905060975, + 28.47281020739012 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004358, + 2.1114679242247285, + 2.4511928331780086, + 2.788420106029548, + 3.0450213812627234, + 3.3884580853345754, + 3.6184327417924886, + 3.8042706412316454, + 4.108231320719229, + 4.355550272921535, + 5.076770277552322, + 6.001988829900531, + 6.342826412225112, + 6.696962402337724, + 7.095173275376825, + 7.44896032176931, + 7.786723550379277, + 8.108977138397364, + 8.404222353465684, + 8.640718733862942, + 8.929171003686202, + 9.138751821189254, + 9.246261545194356, + 9.427397211497368 + ], + "5._384._0.0875": [ + 3.492869715180104, + 4.02682950915902, + 4.658213616999121, + 5.696963115924365, + 6.993558306297854, + 9.185986364201998, + 12.194903760733512, + 14.985281811667303, + 18.95984763775171, + 21.371014953057262, + 23.066594825654153, + 25.388471553673195, + 26.96203766158374, + 30.381769045973385, + 33.196572827632885, + 33.95753570955479, + 34.63627443782625, + 35.29328362352013, + 35.7992960659432, + 36.230932450471165, + 36.601052141131994, + 36.9096902129867, + 37.139713337883734, + 37.402103994237024, + 37.58128525695719, + 37.66925273898901, + 37.8119621029267 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808691268432, + 2.8001349937734705, + 3.1433477488378028, + 3.513115866082412, + 3.8622906336970133, + 4.458707066547458, + 4.907104059929164, + 5.2795392382809405, + 5.902833416754193, + 6.424272333849602, + 7.97176591365823, + 9.809859297563166, + 10.412783947720017, + 10.991426049311166, + 11.58921229444228, + 12.075322391948623, + 12.505133491969694, + 12.884891217172218, + 13.208502577451348, + 13.45275100360101, + 13.732954089961884, + 13.925826163100368, + 14.021329319151926, + 14.177380885678362 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.555323563717674, + 2.8519154348557367, + 3.200329869369127, + 3.5249730975018747, + 4.007611503520477, + 4.6809259448174, + 5.3804861373410615, + 6.636762318900391, + 7.625150882812671, + 8.451185156979, + 9.78715155917044, + 10.83150536589313, + 13.499756393398256, + 16.052709910147982, + 16.789421353970717, + 17.456847823925912, + 18.112029498522777, + 18.620604206056544, + 19.056139447178808, + 19.429825318885907, + 19.740970018764617, + 19.97258523087125, + 20.235548996374305, + 20.415080933380885, + 20.503409296763106, + 20.64713964273299 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351688203357885, + 3.187270788038401, + 3.5225590742991932, + 4.031139706387699, + 4.629196952743262, + 5.60126543870836, + 7.02519726416153, + 8.539415049425639, + 11.069324581652825, + 12.810952528073797, + 14.12208209321274, + 16.025374557342978, + 17.37571597587664, + 20.442034550651577, + 23.050309209521853, + 23.76401853736734, + 24.400332963845333, + 25.016652362712207, + 25.4906914607125, + 25.89492363121643, + 26.24088585073371, + 26.528781038290656, + 26.743195503168074, + 26.98729720225388, + 27.153999962710035, + 27.235916009926093, + 27.369004174983104 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331740758, + 2.7884200505989307, + 3.0450179873457315, + 3.388386685529442, + 3.618234340968611, + 3.803947044482471, + 4.107711034044089, + 4.354863426564926, + 5.074286789580265, + 5.987797548468794, + 6.320489023147341, + 6.663929818749832, + 7.0476382112418605, + 7.386567439192814, + 7.7087199822168655, + 8.01503658618406, + 8.295046569522697, + 8.519099886043582, + 8.792408836679781, + 8.991188741863239, + 9.093255019637324, + 9.265473219746053 + ], + "5._384._0.0875": [ + 3.4926918287352295, + 4.026294752794085, + 4.6571415974633315, + 5.690879653539565, + 6.965095397054236, + 9.080980548287261, + 11.941253924786078, + 14.57632994937708, + 18.32403997897176, + 20.598517223660195, + 22.19917074549147, + 24.393504505133173, + 25.88199285064424, + 29.1222905166399, + 31.79397115234703, + 32.51680863508513, + 33.16184018293703, + 33.78648063612809, + 34.26781144167546, + 34.67843443540314, + 35.0306411967171, + 35.32441513828708, + 35.543361341802026, + 35.79313487383057, + 35.96368527058703, + 36.04740443348767, + 36.18318439274251 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125465, + 2.162243131656477, + 2.5060808691081546, + 2.8001349443162464, + 3.1433397415577065, + 3.5129999744122165, + 3.8619504520461514, + 4.457964893281454, + 4.905726376589851, + 5.276751644533487, + 5.894308063446169, + 6.406853786520043, + 7.9067214829308625, + 9.660288053963523, + 10.231862407682193, + 10.77978467846069, + 11.345636275997055, + 11.805963850596001, + 12.213316759443426, + 12.57368634119657, + 12.881240855990312, + 13.113687697487697, + 13.380829524489227, + 13.564951227589223, + 13.656172897006268, + 13.805271089869713 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.555323563639498, + 2.8519153220580766, + 3.200317357634759, + 3.524859313732532, + 4.007184729846574, + 4.679993400816175, + 5.377517981201647, + 6.617626702486372, + 7.579643523627271, + 8.37591144402161, + 9.653009500816545, + 10.645238845526043, + 13.170260698273236, + 15.585513893803265, + 16.28336920367413, + 16.91652654334935, + 17.53881793839093, + 18.022575071439615, + 18.437225953333737, + 18.793407628605372, + 19.090289495277066, + 19.311407440964448, + 19.562636962992926, + 19.734205602299223, + 19.818614840695023, + 19.955922951179048 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168547412987, + 3.1872494810797045, + 3.5223965149901315, + 4.030596069717042, + 4.6281441485647505, + 5.595928886557852, + 6.991552464610721, + 8.444836617412115, + 10.833290118847401, + 12.466231616977295, + 13.694281386011385, + 15.478328444858514, + 16.745805489175517, + 19.632602790307825, + 22.097135455262173, + 22.772700739434676, + 23.375642356447457, + 23.960130892767033, + 24.4101305449469, + 24.793987747353967, + 25.122713357942217, + 25.39640527633906, + 25.600264421152637, + 25.8324013926441, + 25.990926868624502, + 26.068813252985585, + 26.19530680304342 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.45119283316962, + 2.7884199877775657, + 3.04501414090661, + 3.388305766032309, + 3.6180094912477005, + 3.803580319896537, + 4.107121455740558, + 4.354085128400657, + 5.071459811316562, + 5.971184836431346, + 6.29412199205661, + 6.624785354930963, + 6.991323941077463, + 7.312921009789276, + 7.617153220950307, + 7.905495413698134, + 8.168623762783524, + 8.37910385355933, + 8.63615172599038, + 8.823511148783586, + 8.91988189372738, + 9.082864366465646 + ], + "5._384._0.0875": [ + 3.492490246115708, + 4.025688801237611, + 4.65592755441793, + 5.683913539205314, + 6.931686673698821, + 8.95760550301798, + 11.650421313354668, + 14.117618387704116, + 17.627517157857014, + 19.761215524508657, + 21.264730240599892, + 23.329059995084517, + 24.731050068662665, + 27.788965564942522, + 30.315059415251685, + 30.99908608026868, + 31.609769133113172, + 32.201395987869184, + 32.657521362814194, + 33.04667928132535, + 33.380572527283356, + 33.65913848318701, + 33.86675027176153, + 34.10360903650974, + 34.265325966824314, + 34.34469832385217, + 34.47339299735022 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.506080869086975, + 2.800134888264721, + 3.143330666641523, + 3.5128686317293054, + 3.861564937821583, + 4.457124037683752, + 4.904163441194514, + 5.273567603615603, + 5.884409059142863, + 6.386376359627213, + 7.8298288267134275, + 9.486787336970902, + 10.023713339818778, + 10.538172528614185, + 11.06969724836239, + 11.502664837421815, + 11.88638758238597, + 12.226507209174496, + 12.517384854569803, + 12.737619095973635, + 12.99128100752468, + 13.166396938850337, + 13.253223170590832, + 13.395202145959656 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323563550898, + 2.8519151942207297, + 3.2003031776727324, + 3.5247303599876973, + 4.006701100041771, + 4.678937139046908, + 5.374140292428302, + 6.595248378279139, + 7.525840235401078, + 8.286961832598653, + 9.496081717491418, + 10.429653118402554, + 12.798887331556289, + 15.069404569115127, + 15.727057153807893, + 16.3248548656137, + 16.91331245813624, + 17.371585529054784, + 17.764807378007088, + 18.10303085339502, + 18.385275943661487, + 18.595620254547327, + 18.83479951931609, + 18.998193097420486, + 19.07858195512862, + 19.209310622552955 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168235501288, + 3.1872251302849066, + 3.5222107359504466, + 4.029975003137465, + 4.626923461532184, + 5.589024214871741, + 6.948824386827128, + 8.33115095189156, + 10.566287935312973, + 12.085962404558352, + 13.22859814429511, + 14.890978999303407, + 16.074280469357088, + 18.77878541091316, + 21.097064979222825, + 21.733755739717317, + 22.302620488440255, + 22.854561154508417, + 23.27993237931248, + 23.642903472832373, + 23.953936841224373, + 24.213033440996366, + 24.40604337102169, + 24.62587616317971, + 24.775993057753077, + 24.84973722825645, + 24.969458221439826 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.1114679242247285, + 2.451192833164529, + 2.7884199159817205, + 3.0450097449763565, + 3.3882132869745583, + 3.617752526087821, + 3.8031612240409056, + 4.106447036671525, + 4.353186329322626, + 5.067845958260048, + 5.949696816759566, + 6.260660018818184, + 6.576190710935228, + 6.923068387951884, + 7.225414788644514, + 7.510207286499031, + 7.77942750319624, + 8.024867145333424, + 8.221273797384388, + 8.461580516785933, + 8.637229378205017, + 8.727769509241414, + 8.881301486034602 + ], + "5._384._0.0875": [ + 3.492259877012745, + 4.024996769499327, + 4.6545079880457285, + 5.674868320890108, + 6.8892352749571515, + 8.81162704628612, + 11.325311797433377, + 13.61919593422237, + 16.887245624088916, + 18.878569225085908, + 20.283923424933633, + 22.216826332982837, + 23.53132342900251, + 26.404318928856533, + 28.782396414877738, + 29.42690775784467, + 30.002585186912345, + 30.560536759969676, + 30.990921282395842, + 31.358153198422123, + 31.673326238162094, + 31.93633699498177, + 32.132355085439926, + 32.3560009403866, + 32.50868184098973, + 32.583608911016725, + 32.705062199639386 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.162243131656475, + 2.5060808690627705, + 2.800134824205837, + 3.143320295310391, + 3.5127185273996564, + 3.861124402866451, + 4.456158346763411, + 4.902257299737487, + 5.269457004861231, + 5.8713766337564435, + 6.359870291483894, + 7.737039282243145, + 9.289245770202898, + 9.789917906610638, + 10.26968377982218, + 10.765852842764971, + 11.17077704014672, + 11.530318632024949, + 11.849723864705487, + 12.123527340127158, + 12.331239488021339, + 12.571045512468974, + 12.73689031328919, + 12.819190460468876, + 12.953842094785855 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.555323563449639, + 2.8519150481209046, + 3.200286972006518, + 3.524582985846063, + 4.006148523719296, + 4.677711523524914, + 5.369823117863129, + 6.56639817990707, + 7.459125254127626, + 8.179915971874092, + 9.314258348731386, + 10.18535735549905, + 12.392994738213716, + 14.51572803742392, + 15.13247526966486, + 15.69421889506355, + 16.248144295955765, + 16.68035736691021, + 17.05163648768999, + 17.371434615607118, + 17.63863341293786, + 17.837892275903226, + 18.064655374560772, + 18.21962267402366, + 18.295868664280516, + 18.419824670046456 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351678756032674, + 3.1871970333308792, + 3.521996270272047, + 4.029199829102723, + 4.624466507033341, + 5.574416176054197, + 6.885681050176513, + 8.189304288170664, + 10.269066623562207, + 11.677082127835384, + 12.735693484376148, + 14.27788811788951, + 15.377588913404823, + 17.899292731594656, + 20.069290698367805, + 20.66635465893553, + 21.200392787129587, + 21.718994801575338, + 22.119074253365486, + 22.460579562188794, + 22.75340150450302, + 22.997455555705418, + 23.179281185332194, + 23.38642412047835, + 23.527869586147308, + 23.597343406150753, + 23.710088763490088 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.451192833158654, + 2.7884198331403582, + 3.0450046727495925, + 3.388106575722154, + 3.6174549139686105, + 3.8026647185325797, + 4.105512787318565, + 4.351584711841321, + 5.059588962159057, + 5.915248932658328, + 6.211738765006115, + 6.51017753319415, + 6.836001929772483, + 7.118508132960863, + 7.383745466153934, + 7.634013681571761, + 7.862050111253924, + 8.044631169620486, + 8.268423925084399, + 8.432422123036122, + 8.517118563103647, + 8.661091232192021 + ], + "5._384._0.0875": [ + 3.4919967747385336, + 4.024110003552954, + 4.6514574420777, + 5.656675242688164, + 6.826267247863873, + 8.63546067570197, + 10.969536833521145, + 13.092903613645564, + 16.122021591975056, + 17.971692031352706, + 19.278951874924374, + 21.079915806898722, + 22.306274235736158, + 24.99207976300875, + 27.219631861776048, + 27.8238735026074, + 28.363844508490633, + 28.887414645699103, + 29.291489163492336, + 29.63630596323058, + 29.932329429195555, + 30.179420392268067, + 30.363573312385117, + 30.57369577277349, + 30.717130148642717, + 30.787509603198412, + 30.90155911461386 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.50608086903484, + 2.80013475029174, + 3.1433083283991037, + 3.512545292143451, + 3.860604764246183, + 4.4544699170941495, + 4.897743700062936, + 5.260081091137124, + 5.847471377316361, + 6.3178714972679435, + 7.620295500963156, + 9.066596038466987, + 9.531553783147917, + 9.977177234498251, + 10.438476344818575, + 10.815601714335525, + 11.15103563786843, + 11.449644299315752, + 11.706178442861965, + 11.901144584060084, + 12.126741119906836, + 12.283022658096023, + 12.360639977902254, + 12.487697028929027 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.555323563332806, + 2.8519148795441813, + 3.2002682731925227, + 3.524412907421836, + 4.005477495413504, + 4.675219959739593, + 5.359963634744116, + 6.520705924151853, + 7.368897181629103, + 8.046143801519698, + 9.103833493646194, + 9.912705667992219, + 11.960964404521016, + 13.936842532434799, + 14.512550610146635, + 15.037900634570045, + 15.556794976456239, + 15.962422905166749, + 16.311244391875828, + 16.612107879665622, + 16.86378991676838, + 17.051596665554403, + 17.265504799064267, + 17.411738926600602, + 17.483690290246432, + 17.600631429707434 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_10": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ], + [ + 15.0, + 35.0 + ], + [ + 15.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351697950605055, + 3.1873468844203123, + 3.5231396629940295, + 4.03308098526772, + 4.632840595814789, + 5.616392090200894, + 7.11005727881623, + 8.773952551643184, + 11.685709289767821, + 13.758417024798694, + 15.344645873094716, + 17.6757752371883, + 19.345822045855282, + 23.160166287117832, + 26.412477560916972, + 27.302212201921915, + 28.093268803858543, + 28.85775586693104, + 29.44367468172249, + 29.942801516203488, + 30.368876155858345, + 30.722615047278325, + 30.985930043580787, + 31.285336444289705, + 31.489855958252473, + 31.590438397206164, + 31.754177937451157 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413081, + 1.8198213217004342, + 2.111467924224728, + 2.451192833189987, + 2.7884202749609543, + 3.045031724629453, + 3.3886756861794147, + 3.619037414402901, + 3.80525688576805, + 4.10981338860402, + 4.357604857132801, + 5.082679772993151, + 6.030331162591393, + 6.386367206390177, + 6.760502841872789, + 7.186293855992241, + 7.569245597382349, + 7.938928722541416, + 8.295505538223958, + 8.625621903467637, + 8.892474560353937, + 9.220912215681086, + 9.461863816564069, + 9.58641996695928, + 9.797931045111572 + ], + "5._384._0.0875": [ + 3.4934119569134374, + 4.028457733413053, + 4.661276181552545, + 5.7102179311389545, + 7.049456784270885, + 9.389487443097458, + 12.716755555072746, + 15.891031957443726, + 20.51625304510468, + 23.366263272452034, + 25.38408846096633, + 28.157020292704768, + 30.040894547580347, + 34.13022759003704, + 37.48700679002723, + 38.392911409129844, + 39.19946370512785, + 39.978957297140475, + 40.57798895999467, + 41.08874243718612, + 41.52608880347171, + 41.890340895748025, + 42.16177628321952, + 42.47125008461478, + 42.68264137942656, + 42.78647778978933, + 42.955130308288275 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.867903705312543, + 2.1622431316564787, + 2.506080869183797, + 2.800135144500255, + 3.1433721519835967, + 3.5134690659106047, + 3.8633274532965127, + 4.460926907567308, + 4.910796768283743, + 5.286115283086477, + 5.920538109626331, + 6.458750008666181, + 8.09673598380342, + 10.109485392510985, + 10.784164221483687, + 11.437545455248005, + 12.118081232108915, + 12.675454960041563, + 13.170928628149156, + 13.610511425570897, + 13.986201268031529, + 14.270348923571728, + 14.596523838261504, + 14.82133945515519, + 14.932864766351642, + 15.115529677673015 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.55532356395593, + 2.851915778620031, + 3.200368000387442, + 3.5253198731700977, + 4.008912060745671, + 4.683641519202554, + 5.387499002908741, + 6.6748513801096765, + 7.712805285685651, + 8.595685362913756, + 10.049894385177552, + 11.206407895887795, + 14.222835352428456, + 17.173545032733042, + 18.03478164611877, + 18.816494062413806, + 19.58522048397742, + 20.181902301138276, + 20.693041754282923, + 21.131078414799013, + 21.49525064682972, + 21.766163479578974, + 22.073260019780175, + 22.28291516793278, + 22.386149552829718, + 22.554444663244556 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169639104507, + 3.187334708988613, + 3.5230467667210394, + 4.032770147473956, + 4.632236175851141, + 5.613492444548791, + 7.093941106750839, + 8.730917151269994, + 11.574664704848521, + 13.587339098382854, + 15.12277556138309, + 17.37344878855755, + 18.982532741977302, + 22.65269270298507, + 25.780117929780584, + 26.635693459443683, + 27.396793107074576, + 28.132643526524483, + 28.696999319481485, + 29.177855763647376, + 29.588538974636272, + 29.929651865743452, + 30.183594581870516, + 30.472411092853314, + 30.66968839620724, + 30.76669381170296, + 30.924549776274823 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413081, + 1.8198213217004349, + 2.111467924224728, + 2.4511928331874424, + 2.78842023906303, + 3.0450295266639404, + 3.3886294458185335, + 3.6189089183634486, + 3.805047284269396, + 4.1094761566377365, + 4.357158861273761, + 5.081109265035721, + 6.02219243172041, + 6.373940222335876, + 6.742573131915483, + 7.160940006679834, + 7.536185019682602, + 7.897543455567352, + 8.245258961628599, + 8.566443925704686, + 8.825575257173519, + 9.143920659531938, + 9.377027495092172, + 9.497349882452673, + 9.701383251193116 + ], + "5._384._0.0875": [ + 3.4932967164168494, + 4.028111144153651, + 4.660578982219156, + 5.706487644950198, + 7.033421352341935, + 9.33316598309759, + 12.576824994901155, + 15.652014211812213, + 20.1108807259396, + 22.849703030261086, + 24.786388328299044, + 27.446366794004437, + 29.25289505997882, + 33.17637892761444, + 36.39972061123168, + 37.2700383428891, + 38.04524542071091, + 38.794732855261536, + 39.37100529754368, + 39.862405361280366, + 40.28331756982975, + 40.633980874756226, + 40.89529694935264, + 41.19326560731454, + 41.39678432474598, + 41.49674105748429, + 41.6590468356386 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.8679037053125411, + 2.162243131656476, + 2.506080869171695, + 2.8001351124708167, + 3.143366966314304, + 3.513394010167464, + 3.8631070995326175, + 4.460444842036958, + 4.909905641440201, + 5.284358703316006, + 5.9154730069201635, + 6.448839141616497, + 8.061908058783755, + 10.028811719837675, + 10.685057594585244, + 11.319314446978634, + 11.978793927981506, + 12.518105945944342, + 12.997039208511188, + 13.421636443350696, + 13.78436412918022, + 14.058645162972685, + 14.37353945336968, + 14.590571610365428, + 14.69820866317707, + 14.874434448221987 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.5553235639052962, + 2.8519157055701174, + 3.2003598975437377, + 3.5252461825718, + 4.0086355778155465, + 4.683035044432585, + 5.385623524970403, + 6.663887474038052, + 7.687998277237353, + 8.555490099345452, + 9.978402752069133, + 11.105688767231312, + 14.032386565140282, + 16.882222448782898, + 17.712148065323053, + 18.46533279586521, + 19.205872268872316, + 19.780800282676072, + 20.273359895218995, + 20.69565551610151, + 21.04691128685085, + 21.308278611348836, + 21.604686282281005, + 21.807057923662246, + 21.90669006917981, + 22.06904467550312 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351694667320992, + 3.187321251937218, + 3.5229440928128195, + 4.032426610597283, + 4.631564126810264, + 5.609995403957625, + 7.073009594019539, + 8.6737717374842, + 11.427957061179837, + 13.364735796953463, + 14.83815177397698, + 16.994121230350185, + 18.533883843754875, + 22.046490455031705, + 25.04277244020103, + 25.863077580688078, + 26.593370303676835, + 27.29986234516566, + 27.84213923330586, + 28.30430385445269, + 28.699237771755374, + 29.027423636381915, + 29.271769114470185, + 29.549732746901082, + 29.739589957583387, + 29.832933069961253, + 29.98477285944694 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833184628, + 2.7884201993863784, + 3.045027097333686, + 3.3885783381650834, + 3.6187668982597394, + 3.8048156267344515, + 4.109103405356947, + 4.356664888331129, + 5.079258740182014, + 6.011754396890339, + 6.357735622867094, + 6.718920670989259, + 7.127239365434589, + 7.4921210695235185, + 7.842411722849965, + 8.178543450819955, + 8.488306981584229, + 8.737804396911052, + 9.043962405697554, + 9.267978644700454, + 9.383559604246573, + 9.579542284385127 + ], + "5._384._0.0875": [ + 3.493169354187151, + 4.027728096731426, + 4.659800386378266, + 5.701935414246993, + 7.012614281049865, + 9.258345308835903, + 12.393033647193953, + 15.345664434457454, + 19.611240937109184, + 22.227122355201473, + 24.07634071360206, + 26.61686686435621, + 28.342789481102805, + 32.095400997209275, + 35.182323970477924, + 36.016342972569994, + 36.75954782451215, + 37.4783779800829, + 38.0313601533255, + 38.50294753686443, + 38.90701326204537, + 39.24372904193864, + 39.49465518280837, + 39.78080159218913, + 39.9762309064258, + 40.07220261427535, + 40.227995568391535 + ], + "5._48._0.075": [ + 1.5268463243731414, + 1.8679037053125422, + 2.1622431316564774, + 2.506080869158317, + 2.800135077069854, + 3.1433612347855915, + 3.5133110543081907, + 3.862863560590234, + 4.459910999116694, + 4.908894194373628, + 5.282282300052977, + 5.909138673435639, + 6.43608084034501, + 8.0156404603315, + 9.921972831737065, + 10.554646067191358, + 11.165048855526624, + 11.798933148307164, + 12.316889010076611, + 12.77673732034858, + 13.184459113393377, + 13.53292252351534, + 13.796556717559788, + 14.099514143498958, + 14.30845650917326, + 14.41210039971042, + 14.581784394113235 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.555323563849342, + 2.851915624830741, + 3.200350941770573, + 3.5251647355502858, + 4.0083300088185325, + 4.682360378281331, + 5.383409631677109, + 6.649804364065226, + 7.6553003744628425, + 8.502031058357419, + 9.883242044579921, + 10.972398432505498, + 13.787376935140504, + 16.520291191717376, + 17.3155739520254, + 18.03777200360679, + 18.748190349323064, + 19.30018766831746, + 19.77335076557867, + 20.17934283227156, + 20.517299977611913, + 20.768875254714686, + 21.054347677465433, + 21.249289655686834, + 21.345256800932138, + 21.501582580599848 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351692752072397, + 3.187306299663674, + 3.5228300118253095, + 4.03204493570029, + 4.630817419071829, + 5.606062168412246, + 7.048655305494656, + 8.60569162455325, + 11.252049840111205, + 13.099877310430346, + 14.502382898936581, + 16.552911819613367, + 18.017311579689814, + 21.362959644785875, + 24.223547187570126, + 25.007711095662433, + 25.706478169754526, + 26.382966102750892, + 26.902679509620057, + 27.345746152265235, + 27.72457897617066, + 28.03953891307809, + 28.274063331426998, + 28.54091341722922, + 28.72317371176694, + 28.81276927490796, + 28.958459566216092 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615422, + 1.4813847491413084, + 1.8198213217004355, + 2.111467924224729, + 2.451192833181503, + 2.7884201553012113, + 3.0450243980779157, + 3.388521552023662, + 3.6186091004043384, + 3.804558238618123, + 4.1086892762180085, + 4.356116077687643, + 5.077187752978894, + 5.999703813053983, + 6.338795724414074, + 6.6909550962796, + 7.086995672766665, + 7.439193409462596, + 7.776001927367543, + 8.098169195256894, + 8.394368951302317, + 8.632619079041968, + 8.924864558983892, + 9.138788518574435, + 9.249223973196889, + 9.436690127065424 + ], + "5._384._0.0875": [ + 3.493027851490331, + 4.027302541960601, + 4.65893513001956, + 5.696798149112409, + 6.9884218096083055, + 9.168980692186224, + 12.173380170319273, + 14.984713519540609, + 19.037223640419068, + 21.52206063626332, + 23.279512216955787, + 25.696162055196027, + 27.339205407608937, + 30.917138387216536, + 33.865086255432296, + 34.6621549278939, + 35.37275060551124, + 36.06031786832429, + 36.58951657004706, + 37.040865286428165, + 37.42770412504695, + 37.75014337744569, + 37.99043221193748, + 38.264468242139294, + 38.45161152787152, + 38.54350266281343, + 38.69263193380563 + ], + "5._48._0.075": [ + 1.526846324373138, + 1.8679037053125451, + 2.162243131656477, + 2.5060808691434544, + 2.800135037735448, + 3.143354866420989, + 3.513218881732691, + 3.8625929741932343, + 4.459317919745483, + 4.907768431139118, + 5.279956001742408, + 5.901918143894484, + 6.421309072125651, + 7.960472914617765, + 9.793551836935942, + 10.39828122704247, + 10.980906508410472, + 11.585521401785392, + 12.079541233993934, + 12.518346542731019, + 12.907763548811198, + 13.24098391136831, + 13.49337761205165, + 13.783878628569754, + 13.984469089409036, + 14.084021023913666, + 14.247047267486934 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235637871654, + 2.8519155351203227, + 3.2003409909132845, + 3.5250742394531174, + 4.00799051113972, + 4.68161075326053, + 5.38093142750773, + 6.6335410492873095, + 7.616715544330452, + 8.438197367357109, + 9.768772768742924, + 10.812198490080256, + 13.49759956061027, + 16.101504870277306, + 16.859759223197734, + 17.549190983951235, + 18.228071592896036, + 18.75625524141636, + 19.20937912139736, + 19.59859843226236, + 19.922914990354187, + 20.164463955346225, + 20.438752086536386, + 20.626107856722307, + 20.718339080347747, + 20.86853097589821 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169061150063, + 3.1872895883063355, + 3.52270251095617, + 4.031618398656333, + 4.629983059875722, + 5.601665891257551, + 7.021091393112692, + 8.527539296124017, + 11.050544528588066, + 12.799383385024957, + 14.124557404389321, + 16.062314167801084, + 17.447396903394516, + 20.61989407396707, + 23.34143294233355, + 24.08872413258913, + 24.75531279884091, + 25.401175835079087, + 25.89783917387253, + 26.321392142091575, + 26.683758432990075, + 26.985179875128246, + 27.209648983310117, + 27.465113818365808, + 27.639592466499106, + 27.72535100722631, + 27.864751149051784 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004358, + 2.1114679242247285, + 2.4511928331780077, + 2.7884201060295477, + 3.0450213812627234, + 3.3884580853343444, + 3.6184327409103596, + 3.804270580938309, + 4.108226475086609, + 4.355502800499314, + 5.074873482641779, + 5.986110840693847, + 6.3172672781985595, + 6.6589288419239026, + 7.040636540429564, + 7.378065267988139, + 7.699292127736477, + 8.00550531343637, + 8.286425214358841, + 8.51218421624606, + 8.789230787465828, + 8.992330814767818, + 9.09732371991307, + 9.275911449061745 + ], + "5._384._0.0875": [ + 3.4928697149825934, + 4.026826988520673, + 4.657968350407307, + 5.691053523115026, + 6.961050091996094, + 9.066356839668828, + 11.922858732700675, + 14.57911136584915, + 18.405439164236302, + 20.75416986486436, + 22.417150344640632, + 24.70704328573827, + 26.265632862825978, + 29.665886132659903, + 32.47253410947096, + 33.23202296911221, + 33.909421028808175, + 34.56513544266801, + 35.070071439704975, + 35.5007681821849, + 35.87001305261136, + 36.17786016433135, + 36.4072751259067, + 36.66892684326432, + 36.847597510746915, + 36.935317375639315, + 37.077639518839405 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808691268437, + 2.8001349937734705, + 3.1433477488378028, + 3.513115866074003, + 3.8622905695827425, + 4.4586551932541045, + 4.906510500638506, + 5.277354893696145, + 5.8938098036000275, + 6.404598133253599, + 7.897056270483524, + 9.645993887267212, + 10.219330521639325, + 10.771186892765881, + 11.343821333980426, + 11.812068861811278, + 12.228454023822929, + 12.598562645135798, + 12.915838499526933, + 13.156546541773247, + 13.43416689390025, + 13.626164730584879, + 13.721523150827938, + 13.87775267583671 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235637176726, + 2.8519154348557376, + 3.2003298693691278, + 3.52497309749546, + 4.0076111017382905, + 4.680773140117236, + 5.378162327869877, + 6.615202904598089, + 7.57262627224492, + 8.364754157482771, + 9.63685764766361, + 10.628277852416552, + 13.170632096161583, + 15.63724227937765, + 16.35688613448388, + 17.01231457084113, + 17.658629855796335, + 18.162316797622356, + 18.594866696359063, + 18.966889439680973, + 19.277230722802173, + 19.508511447247095, + 19.77134480174019, + 19.95093649041208, + 20.039348021970138, + 20.18327768077989 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516882033579, + 3.187270788038398, + 3.522559074258664, + 4.031138595899011, + 4.62904492386663, + 5.596686272802725, + 6.989239694701535, + 8.437542674965027, + 10.824277324896237, + 12.467480669722185, + 13.711507671688093, + 15.532404026642771, + 16.836030790712673, + 19.831678990583256, + 22.411589805977396, + 23.12133668117979, + 23.755111110830544, + 24.369715413778742, + 24.84281526464925, + 25.246410746952463, + 25.591916518204183, + 25.879461137764693, + 26.093621336508836, + 26.33740777203477, + 26.503905129659106, + 26.58572961390496, + 26.718686455498254 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331740758, + 2.788420050598932, + 3.045017987345733, + 3.3883866855291935, + 3.6182343400313477, + 3.803946980421113, + 4.107705886392781, + 4.354812958829561, + 5.072259104162802, + 5.970414172493222, + 6.292289609605352, + 6.621756078214251, + 6.987015796947255, + 7.307767056350868, + 7.611677060869624, + 7.900445765098252, + 8.164911497283295, + 8.377387902937283, + 8.638454912069516, + 8.83028770588377, + 8.92964969672179, + 9.099100034499415 + ], + "5._384._0.0875": [ + 3.492691828633645, + 4.026292073213935, + 4.656881519908369, + 5.684531322996634, + 6.929426102700457, + 8.948812818137057, + 11.643675280976376, + 14.136344704275581, + 17.72943119716894, + 19.939424500948764, + 21.506437044610685, + 23.667789044278315, + 25.140819561166172, + 28.360881101240025, + 31.023990566115028, + 31.745263595572972, + 32.388870058001125, + 33.0121343712735, + 33.49232383607148, + 33.90195190243441, + 34.25323444218173, + 34.54617429718625, + 34.764479800408516, + 35.01347576959295, + 35.18348921391545, + 35.26694804393692, + 35.402320849141574 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125465, + 2.162243131656477, + 2.5060808691081555, + 2.800134944316245, + 3.143339741557706, + 3.512999974403283, + 3.8619503839098503, + 4.457909851914139, + 4.9050938620629605, + 5.274406757705306, + 5.884493029082026, + 6.3852319468985295, + 7.823872650016155, + 9.47963192016127, + 10.019251747804374, + 10.538435849785124, + 11.077443931479772, + 11.518840817732313, + 11.9119883607945, + 12.262166676136392, + 12.56302644987083, + 12.7917173231064, + 13.05609412705115, + 13.239262916538648, + 13.330317165444843, + 13.479581423380186 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235636394986, + 2.8519153220580753, + 3.2003173576347597, + 3.5248593137257123, + 4.0071843028930685, + 4.679831361271022, + 5.3750351130602825, + 6.59404902427771, + 7.521546871714049, + 8.280048147923209, + 9.486746278000654, + 10.421409003075485, + 12.81205753827986, + 15.136632618853675, + 15.816732455368244, + 16.437334713170905, + 17.050333412861665, + 17.5289618534286, + 17.940458652874298, + 18.29486955608632, + 18.59088337415965, + 18.811631441747807, + 19.062704099641177, + 19.234324286498765, + 19.318815976403354, + 19.456326766151943 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351685474129877, + 3.187249481079709, + 3.5223965150058727, + 4.030595022338262, + 4.627965320186057, + 5.590289880948332, + 6.949189532309944, + 8.330792034609393, + 10.572608109122296, + 12.107702548344122, + 13.269605340841661, + 14.972738023896717, + 16.1943977089259, + 19.011538352247346, + 21.4477503622282, + 22.11928793719798, + 22.719595184762632, + 23.302265286462955, + 23.751241176965394, + 24.13439113760931, + 24.46260035565245, + 24.735892840944246, + 24.939462846198502, + 25.171246645005525, + 25.329541659841773, + 25.407324379401544, + 25.533667403830524 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.4511928331696207, + 2.788419987777566, + 3.0450141409066123, + 3.388305766032633, + 3.6180094902807536, + 3.803580245986537, + 4.10711529462548, + 4.354022409335569, + 5.068938318219258, + 5.950299867525088, + 6.260921612658738, + 6.576155824686364, + 6.9229024791175355, + 7.225484892615516, + 7.510990764886961, + 7.781581226266285, + 8.02914653075249, + 8.228103217389535, + 8.472981141317703, + 8.653406625074199, + 8.747060289013604, + 8.907219187154311 + ], + "5._384._0.0875": [ + 3.4924902297119944, + 4.025686264990099, + 4.65561973976974, + 5.6761268106143055, + 6.889638290533896, + 8.81168531495887, + 11.336883315567134, + 13.663437743528705, + 17.021952288136546, + 19.092610678471058, + 20.563131873808405, + 22.59499304339821, + 23.98169304115414, + 27.019349088819215, + 29.53666858483924, + 30.21906171203749, + 30.828258522342026, + 31.418450235478915, + 31.873390308709883, + 32.26151715524704, + 32.59445658726223, + 32.87216490038772, + 33.07911905410702, + 33.315181808132365, + 33.47634959162015, + 33.555455730865724, + 33.68373377246206 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.5060808690869747, + 2.8001348882647217, + 3.1433306666415244, + 3.512868631737964, + 3.861564884008023, + 4.457060689413019, + 4.903376283861942, + 5.270625018988458, + 5.872330535079776, + 6.360405634357742, + 7.736734393021971, + 9.29341540864003, + 9.798440069779174, + 10.284352533298824, + 10.789276188703543, + 11.203520012660265, + 11.573156396585789, + 11.90313122057395, + 12.187299477703013, + 12.40373196886646, + 12.654541125367047, + 12.828635849733287, + 12.915260510397404, + 13.05735345804886 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323563550898, + 2.851915194220729, + 3.2003031776727315, + 3.5247303599931783, + 4.006700721344035, + 4.6787467152795825, + 5.371064032913423, + 6.567031487960442, + 7.458940893239535, + 8.179488243460375, + 9.315601035407427, + 10.190996967468017, + 12.42695180181622, + 14.608127977967548, + 15.248279606337192, + 15.833566787440791, + 16.412702169650355, + 16.865779805046785, + 17.25576499685049, + 17.592131094710368, + 17.8734285558169, + 18.083344379701, + 18.322301662739687, + 18.485704724661183, + 18.566156002262037, + 18.697056803912464 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351682355013033, + 3.187225130374825, + 3.5222106345872253, + 4.0299193943562, + 4.625757573564203, + 5.576808812816328, + 6.890542106575977, + 8.198901216434896, + 10.295624514181299, + 11.725469131511014, + 12.807497349529497, + 14.395379176758267, + 15.536230003887058, + 18.1752542385862, + 20.46613613852397, + 21.098776219008236, + 21.664919373194692, + 22.214908688962826, + 22.6391278666577, + 23.00127752083216, + 23.311691872394352, + 23.570302516667827, + 23.762960305599442, + 23.982371238061518, + 24.132211375464163, + 24.20582905626209, + 24.325362642146132 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.1114679242247285, + 2.4511928331645305, + 2.7884199159817205, + 3.0450097449765705, + 3.3882132822079485, + 3.61775148347291, + 3.803149105741243, + 4.1062953745587025, + 4.352594601974564, + 5.061345976131172, + 5.918337382945404, + 6.215486815821476, + 6.514811337705211, + 6.8419570595783945, + 7.126049380829651, + 7.393293198853836, + 7.646123452090563, + 7.87729960410498, + 8.063160338206194, + 8.29227607772689, + 8.461479781288922, + 8.54946545056247, + 8.700288832164876 + ], + "5._384._0.0875": [ + 3.4922623395375068, + 4.024911905526782, + 4.652865500382419, + 5.659313819015876, + 6.83115664247863, + 8.647846898495645, + 11.004994699348817, + 13.169996330048374, + 16.298685674373193, + 18.231467649564017, + 19.605957679256246, + 21.508206178566972, + 22.808120330242257, + 25.6613910086574, + 28.030577675454705, + 28.673374716089608, + 29.247497678658316, + 29.80394697895397, + 30.233098263756435, + 30.599260562286382, + 30.91345080599572, + 31.175583391957304, + 31.370930122759734, + 31.59376735612773, + 31.745891337328683, + 31.820548407462443, + 31.941578579048937 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.162243131656475, + 2.5060808690627714, + 2.800134824205835, + 3.1433202953169572, + 3.512718490229358, + 3.86111378489771, + 4.455556885815679, + 4.8992636680430195, + 5.261999061393691, + 5.8501899634073995, + 6.321423374764875, + 7.62818900977843, + 9.085967361548047, + 9.557383090724482, + 10.0109807836609, + 10.482699395321484, + 10.870313554289144, + 11.216731989198495, + 11.526584048527676, + 11.793978119975868, + 11.997996506974339, + 12.234942401330725, + 12.399697172323853, + 12.481744116882783, + 12.616406408247617 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235634496403, + 2.8519150481209063, + 3.2002869720301432, + 3.52458295484092, + 4.00611698851429, + 4.676506320468504, + 5.3619935671200825, + 6.524621521848928, + 7.3750795074229885, + 8.055092620709853, + 9.11973272004087, + 9.936865738425093, + 12.022078662706496, + 14.062013761145433, + 14.662318028480708, + 15.212135753828145, + 15.757053511070303, + 16.184139328952973, + 16.552156542788136, + 16.870007306361753, + 17.136143172991734, + 17.33487577881149, + 17.56129400672606, + 17.716181308991196, + 17.79244366519042, + 17.91649651461894 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835167455722319, + 3.187164253368534, + 3.521746301971919, + 4.02842259309182, + 4.624013567123641, + 5.579319157812532, + 6.922783553411615, + 8.30414112276388, + 10.554443202049557, + 12.06361508854351, + 13.177921176937739, + 14.765632203836812, + 15.871826450723033, + 18.340824841472102, + 20.411603551648323, + 20.975486018186274, + 21.478663014973144, + 21.96643372840536, + 22.3424675968339, + 22.66326344442359, + 22.938356315678803, + 23.167711416791423, + 23.338592472919593, + 23.533362283094895, + 23.666336688660117, + 23.731623767556734, + 23.837504151333466 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224729, + 2.451192833151798, + 2.788419736492105, + 3.044998755151511, + 3.38798209104026, + 3.6171101408252784, + 3.8021136320949265, + 4.104765706456737, + 4.350995421159938, + 5.061942067728306, + 5.933232821892606, + 6.241751214747318, + 6.556412784504264, + 6.904378380097925, + 7.208806222027389, + 7.4957016563551795, + 7.765888175193149, + 8.010191791482212, + 8.203403906169012, + 8.435769851711482, + 8.60175359267224, + 8.685723191597464, + 8.825143413862401 + ], + "5._384._0.0875": [ + 3.491684146271643, + 4.023267111208729, + 4.651218691924928, + 5.663199686840241, + 6.862873689564256, + 8.786686976394648, + 11.313314244573547, + 13.567098650887633, + 16.663586156894397, + 18.491668382321397, + 19.761273935281313, + 21.487952651753982, + 22.652525290823707, + 25.184527304797125, + 27.27476150099981, + 27.840973062010548, + 28.34727754587184, + 28.838427228024507, + 29.217834027103176, + 29.541672065568456, + 29.81989947502766, + 30.05231053947457, + 30.225558308779714, + 30.42333879464964, + 30.558347490002983, + 30.624578008020414, + 30.73184808075906 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125465, + 2.1622431316564765, + 2.506080869002253, + 2.800134664058629, + 3.143294366990227, + 3.51234327385534, + 3.8600231658561306, + 4.453787470096188, + 4.898329994233693, + 5.262935242511851, + 5.857856131234189, + 6.340376143296084, + 7.714029489979712, + 9.276829700482844, + 9.775169208853415, + 10.247833630544632, + 10.730011223466859, + 11.117786051483273, + 11.457205304493733, + 11.754722085272638, + 12.00663999068362, + 12.19578675949656, + 12.412130414090651, + 12.560463886665968, + 12.633629076525532, + 12.752653332461575 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.555323563196496, + 2.8519146828713384, + 3.200246457862802, + 3.5242145576928374, + 4.0047672157277745, + 4.674798660925404, + 5.362837203747391, + 6.544736994292002, + 7.431727436375156, + 8.154078096982458, + 9.29660560124912, + 10.171668113181864, + 12.348366540431808, + 14.357056679222422, + 14.925150810738675, + 15.437160406302576, + 15.937663402796083, + 16.325676492284472, + 16.657399888535174, + 16.94221489033507, + 17.17967887180835, + 17.356491786631466, + 17.55757963988236, + 17.694807483887693, + 17.762225945191844, + 17.871641922257645 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516695949957, + 3.187125513565185, + 3.521450763542121, + 4.0274366844693406, + 4.622305198264487, + 5.574987899030887, + 6.899514920423678, + 8.233571895585703, + 10.361567151375796, + 11.770672119398977, + 12.806119724273982, + 14.277594819467183, + 15.301463848859186, + 17.587746127405236, + 19.5083096867228, + 20.03178558329116, + 20.499384153600218, + 20.953017047187405, + 21.3030883150575, + 21.601827978076262, + 21.85818317750659, + 22.07204607808607, + 22.231407042996807, + 22.413105363422567, + 22.53714966952561, + 22.598040400811442, + 22.69674565083661 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.451192833143696, + 2.7884196222714395, + 3.0449917616272035, + 3.387834967629922, + 3.61670137207658, + 3.801447139272471, + 4.103701290523978, + 4.349644670978793, + 5.059206388534941, + 5.921618293142949, + 6.223090959697735, + 6.528065282925384, + 6.862361954879716, + 7.152410593684075, + 7.423883366947572, + 7.678081617089843, + 7.906895680513659, + 8.087307807605024, + 8.303854982935414, + 8.45836941604716, + 8.53648651723681, + 8.666159622984987 + ], + "5._384._0.0875": [ + 3.4913178390760735, + 4.022170918370597, + 4.649358590935858, + 5.657897467530965, + 6.839814440760419, + 8.692618423478708, + 11.07156719065026, + 13.168016723339253, + 16.032351313065224, + 17.719961266559274, + 18.89170206591275, + 20.486056320307313, + 21.561890705338104, + 23.90459762499313, + 25.841957653067293, + 26.367190803891226, + 26.83714082894157, + 27.293261963582037, + 27.64584412294378, + 27.94682721016672, + 28.20552399848253, + 28.42169650063815, + 28.582843728808097, + 28.766836070753715, + 28.892419892587082, + 28.954016108064405, + 29.05374472733484 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.5060808689637466, + 2.8001345621467664, + 3.1432778671558337, + 3.512104481658397, + 3.8593226185929863, + 4.452336171721103, + 4.896263231951062, + 5.259875619296617, + 5.850686865673662, + 6.326137067657118, + 7.656587240482737, + 9.135632103729913, + 9.602255301117046, + 10.043373658887337, + 10.492411596852213, + 10.853117154123638, + 11.16872890347636, + 11.445433270902878, + 11.67987463137754, + 11.856019233715672, + 12.057731778936501, + 12.196127491203123, + 12.264398594589776, + 12.37545109403248 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235630354045, + 2.8519144504397973, + 3.200220676151204, + 3.5239801088396194, + 4.003889118188069, + 4.6730975362038425, + 5.359655800012464, + 6.529359393481698, + 7.3932410306803815, + 8.08776254668111, + 9.172995930228549, + 9.996082475136705, + 12.026355584901133, + 13.891291098776723, + 14.418272996114242, + 14.893640486965559, + 15.358645975697575, + 15.719538037111713, + 16.028263662723468, + 16.293598059430366, + 16.51503356313131, + 16.679988311655176, + 16.867732108281, + 16.99587974795607, + 17.05883026444363, + 17.160952025800622 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351663640325113, + 3.1870790259809727, + 3.521095986066066, + 4.026177643506365, + 4.61888550527475, + 5.560524909054289, + 6.846233842334554, + 8.112583382303718, + 10.093123447605226, + 11.390821763471273, + 12.341180847819523, + 13.689790154770082, + 14.627832321306306, + 16.725367492115954, + 18.491438715885913, + 18.973383778484628, + 19.404346540100725, + 19.822777232172758, + 20.146013799088156, + 20.421940179172047, + 20.65887943462162, + 20.856662370095307, + 21.00406069335515, + 21.172171718469528, + 21.286933687818888, + 21.343256805284355, + 21.4345164536736 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.451192833133975, + 2.7884194852066413, + 3.0449833693989414, + 3.3876584141713875, + 3.61620941246458, + 3.8006305788529957, + 4.10222123375797, + 4.347288432367357, + 5.050371575186146, + 5.891791206708273, + 6.181510390521909, + 6.4721326890698325, + 6.787981319660684, + 7.059922600798694, + 7.312933243777524, + 7.548732519484772, + 7.760272672725568, + 7.926745370701878, + 8.126411365877543, + 8.268882851776267, + 8.340915143893158, + 8.46053889796503 + ], + "5._384._0.0875": [ + 3.4908818412596445, + 4.020741025155857, + 4.645275889918925, + 5.640508586510151, + 6.786684372538143, + 8.54055920528448, + 10.746041309441212, + 12.670796140756103, + 15.291202850402206, + 16.833906921134826, + 17.90533837816917, + 19.36445366313152, + 20.3497450530167, + 22.499045351507238, + 24.27980546327062, + 24.762995235382103, + 25.195588225634555, + 25.615666267925814, + 25.940596272570925, + 26.218009385818206, + 26.456540238133748, + 26.65592801625773, + 26.804565583566333, + 26.974296493291742, + 27.090133464134905, + 27.146938961512667, + 27.238878671827738 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.506080868917536, + 2.800134439852537, + 3.143258067369609, + 3.5118178845822023, + 3.8584672962845494, + 4.449846990701017, + 4.890723878553551, + 5.249903512334961, + 5.828928711630364, + 6.29006602259276, + 7.556928395507179, + 8.935423056271237, + 9.36655014455558, + 9.773196249352429, + 10.186659162285936, + 10.518687918776314, + 10.809297924549707, + 11.064279126764733, + 11.280549840055432, + 11.443202921124502, + 11.629741001791093, + 11.757839513373316, + 11.821046768593177, + 11.923864650741955 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235628420974, + 2.851914171521948, + 3.2001897381470155, + 3.52369873233631, + 4.002792052103697, + 4.66964835021353, + 5.349199590220328, + 6.490211183379618, + 7.317357271409015, + 7.973790893008165, + 8.98789672166133, + 9.75059601525352, + 11.620131396920156, + 13.333710573384039, + 13.818022817252677, + 14.25546189999644, + 14.68378356346025, + 15.016643083308646, + 15.301595334547722, + 15.546765890616875, + 15.75158418018831, + 15.904235401879545, + 16.07811112617065, + 16.19681957765148, + 16.255127900435983, + 16.349680909095753 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351682355012886, + 3.187225130284913, + 3.522210735800777, + 4.029972636980602, + 4.626662181505097, + 5.583938756400645, + 6.939599135952784, + 8.362927810062262, + 10.758073687209887, + 12.40906930548783, + 13.645385331866027, + 15.425359374352006, + 16.67503327359461, + 19.47757311113583, + 21.832417948857323, + 22.473654392401116, + 23.044990856063357, + 23.598193970660724, + 24.02391100504954, + 24.38690373531101, + 24.697773197057018, + 24.956645591000978, + 25.149462107675248, + 25.369080906196686, + 25.519032398946276, + 25.592683998771186, + 25.712240863873955 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.1114679242247285, + 2.4511928331645287, + 2.7884199159817205, + 3.0450097449763542, + 3.3882132869733823, + 3.6177525240467596, + 3.803161096532597, + 4.106437474415144, + 4.3530996087156115, + 5.065290017489952, + 5.941790316464481, + 6.255352380129186, + 6.578083679703817, + 6.939081952639077, + 7.258992269782869, + 7.5642001311671585, + 7.855117453414467, + 8.12115992406773, + 8.333594647719876, + 8.591382265116815, + 8.777038368586869, + 8.871476028183224, + 9.029031542834336 + ], + "5._384._0.0875": [ + 3.492259892399763, + 4.02499114238111, + 4.654073599607541, + 5.668427031660625, + 6.8795594026155, + 8.869538628731533, + 11.580777218678778, + 14.0701885150277, + 17.55785178140429, + 19.639423609202826, + 21.090713535502868, + 23.067461220629113, + 24.401770536160623, + 27.298194663854584, + 29.683434626835076, + 30.328710420960675, + 30.905002703715166, + 31.463463788617563, + 31.894270677811072, + 32.26187123771363, + 32.57741835116797, + 32.840799184390114, + 33.03711457494162, + 33.261151468659136, + 33.414109246006305, + 33.48917052927063, + 33.61083135726327 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.1622431316564747, + 2.5060808690627696, + 2.8001348242058373, + 3.14332029531039, + 3.512718527361398, + 3.8611242435521054, + 4.456059086160568, + 4.901311338151137, + 5.266573469928468, + 5.863738640325235, + 6.35063272743358, + 7.761563957952724, + 9.424027415281046, + 9.966779803933857, + 10.486414658866888, + 11.02081738279616, + 11.4533185323382, + 11.833574025391664, + 12.167895891947806, + 12.451494190703572, + 12.664638979784629, + 12.908396034003182, + 13.07558835536145, + 13.158125949299045, + 13.292541306388305 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.55532356344964, + 2.8519150481209032, + 3.2002869720065177, + 3.5245829858177253, + 4.006147581255396, + 4.677433646055923, + 5.366695022382107, + 6.555920264613102, + 7.460858869781202, + 8.209416593362795, + 9.415795314702303, + 10.35712627269337, + 12.74977455371266, + 15.002232798746181, + 15.644308587814747, + 16.223586593425996, + 16.790218753086712, + 17.229257768377447, + 17.604525135982243, + 17.926368927728767, + 18.19436539796486, + 18.393796232330292, + 18.620332489480738, + 18.774902531683512, + 18.850871361394987, + 18.974283136961482 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351678756032506, + 3.1871970332340482, + 3.5219963792700835, + 4.029257160982754, + 4.625438548537246, + 5.581571347639799, + 6.927350925287799, + 8.318967004935404, + 10.61726074208108, + 12.181584444884853, + 13.346896336145143, + 15.019364851073014, + 16.191463662557055, + 18.81976961997921, + 21.030718679525684, + 21.63325729910961, + 22.170631839438595, + 22.691331843073993, + 23.092428564754517, + 23.434532893673673, + 23.727710015211958, + 23.971994134396812, + 24.153970486307404, + 24.36130746963971, + 24.502867655031217, + 24.572384940428588, + 24.685180403460368 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.451192833158654, + 2.788419833140358, + 3.0450046727493625, + 3.388106580854145, + 3.6174560345834403, + 3.802677631579794, + 4.105665799985949, + 4.352128060885872, + 5.063667703036873, + 5.935960480877939, + 6.245434944168357, + 6.561932881433218, + 6.913361290614929, + 7.222473823664502, + 7.5154686757359785, + 7.7931419029978155, + 8.0458580018569, + 8.24694675099684, + 8.490335096308083, + 8.665321716612308, + 8.75424595386709, + 8.902527837573007 + ], + "5._384._0.0875": [ + 3.491994139892584, + 4.024195318040663, + 4.652753355922339, + 5.665633535025146, + 6.867449322109124, + 8.808383682344262, + 11.399292790333975, + 13.748942584532955, + 17.02003258036753, + 18.967253869639176, + 20.324139160359515, + 22.172782525519168, + 23.421026528956038, + 26.134372899160592, + 28.37244494134407, + 28.978381020843116, + 29.51985682418446, + 30.044842973641273, + 30.450089091603385, + 30.79592537366868, + 31.09290839015706, + 31.340879115251134, + 31.525713628546903, + 31.73667702900685, + 31.880695756693797, + 31.95135882186754, + 32.06585183732913 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.5060808690348377, + 2.8001347502917406, + 3.143308328392027, + 3.512545332131492, + 3.8606160269006207, + 4.4550102671411045, + 4.89992311959612, + 5.264799716741715, + 5.860236970238653, + 6.343524048263206, + 7.7260674458265655, + 9.322110356265519, + 9.8376006411807, + 10.32934942169722, + 10.83377786672947, + 11.24135804369911, + 11.599439755208454, + 11.914222918480158, + 12.181338827225302, + 12.382199717087675, + 12.612145127316209, + 12.769960121166498, + 12.84787473255296, + 12.974747598901702 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235633328066, + 2.8519148795441804, + 3.200268273167085, + 3.5244129407812252, + 4.005510438641588, + 4.676216177419605, + 5.364819980203309, + 6.5481814668384875, + 7.438958720784601, + 8.168170746921275, + 9.330656267082633, + 10.229230582041316, + 12.492940115095385, + 14.611783654253092, + 15.214921521950753, + 15.759391351776683, + 16.292252171150597, + 16.705520421007435, + 17.058959524649378, + 17.362365077340574, + 17.6152387529061, + 17.803501656388374, + 18.017508102460514, + 18.163558262044976, + 18.235332053681265, + 18.351880443348918 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351674557223197, + 3.1871642533685347, + 3.5217463020456248, + 4.028422763615535, + 4.623990409869756, + 5.5777387337863935, + 6.904996999994469, + 8.248908799151282, + 10.422479407650744, + 11.884839072166706, + 12.970065083595378, + 14.525034499364757, + 15.614342410292306, + 18.0603693940566, + 20.12290444847456, + 20.68571414889172, + 21.188201673557913, + 21.675499789540037, + 22.051256314639893, + 22.371853011616142, + 22.646786622885514, + 22.87600621530627, + 23.046783959207993, + 23.241420638389847, + 23.37430386973581, + 23.439548154329078, + 23.545363656058306 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224729, + 2.451192833151798, + 2.788419736492103, + 3.044998755151512, + 3.387982091040997, + 3.617110140866267, + 3.8021136251161445, + 4.1047648585497925, + 4.350983781877233, + 5.06128893298051, + 5.925003637112984, + 6.227480513767378, + 6.534250608231321, + 6.8718418949960105, + 7.166327329871255, + 7.4435993158139855, + 7.704966860717649, + 7.941906851090504, + 8.129996459754999, + 8.357401619358855, + 8.520887548515773, + 8.603979129174093, + 8.74262049857559 + ], + "5._384._0.0875": [ + 3.491684126056154, + 4.023267507716046, + 4.651174925558147, + 5.660890609776106, + 6.845321539568308, + 8.714448562778145, + 11.1546797022769, + 13.344257767992442, + 16.38076453653842, + 18.18694881010141, + 19.445955306673266, + 21.162765578761217, + 22.32287364781907, + 24.849058282507865, + 26.936649009114934, + 27.50233081779233, + 28.00813028502735, + 28.498773407013275, + 28.877749410788397, + 29.201208010437, + 29.47908016475411, + 29.711169165462465, + 29.884168799635933, + 30.0816478341597, + 30.21644745255911, + 30.282576152183083, + 30.38968599692364 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125465, + 2.1622431316564765, + 2.506080869002254, + 2.8001346640586275, + 3.1432943669902254, + 3.5123432738780753, + 3.860023189403586, + 4.453781231477062, + 4.89815880376439, + 5.262132947589282, + 5.853674150083607, + 6.330056488054773, + 7.669125795346013, + 9.179802372376678, + 9.662996327323881, + 10.122683829967814, + 10.593553265964477, + 10.973843623457475, + 11.308044409251224, + 11.60206310410503, + 11.85184357726925, + 12.039876838383226, + 12.255479121510879, + 12.403603915227595, + 12.47675996526066, + 12.595897895360725 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.555323563196497, + 2.8519146828713375, + 3.2002464578628, + 3.5242145577087713, + 4.00476731132331, + 4.674774041197153, + 5.362050482567375, + 6.533628009279137, + 7.401325843594434, + 8.10238229251294, + 9.20650021138882, + 10.052042191090058, + 12.166881018900074, + 14.141154721269062, + 14.7032737877692, + 15.211368045163812, + 15.709142915831414, + 16.095730689730015, + 16.426618683663488, + 16.710991874081056, + 16.948257287867833, + 17.124995025450126, + 17.32606168224979, + 17.46331707629899, + 17.53076461300303, + 17.64024585637809 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835166959499591, + 3.187125513679623, + 3.521450634598156, + 4.02736753659825, + 4.6210331510390965, + 5.564819680402334, + 6.856413552589171, + 8.136406518646817, + 10.167113324936727, + 11.51995843818636, + 12.521076487867289, + 13.95428374731642, + 14.958483679998952, + 17.21780072926858, + 19.12827504674581, + 19.650330869482392, + 20.116950944134274, + 20.569848652718548, + 20.919441682410103, + 21.217814306013178, + 21.47386233467655, + 21.687461661817636, + 21.84662276306885, + 22.028073330497463, + 22.151947995902926, + 22.21275794825712, + 22.31133855706593 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615428, + 1.4813847491413066, + 1.819821321700434, + 2.1114679242247285, + 2.4511928331436965, + 2.78841962227144, + 3.044991761627475, + 3.3878349615637453, + 3.6167000464879, + 3.8014318093503445, + 4.1035156891659765, + 4.348962703925465, + 5.053438767650024, + 5.897970394386082, + 6.189528789634334, + 6.482816277175228, + 6.802871585877492, + 7.0799594208862695, + 7.339338146852361, + 7.582743954324521, + 7.802724100835819, + 7.97707656904319, + 8.18781060494777, + 8.339405993377113, + 8.416496687404335, + 8.545253937167901 + ], + "5._384._0.0875": [ + 3.4913209718023595, + 4.022066819255714, + 4.647626246005515, + 5.645321113362411, + 6.796896263013128, + 8.572263883011422, + 10.843632595149678, + 12.863769918752045, + 15.658198071320886, + 17.32040796790547, + 18.479808654848934, + 20.06254992869877, + 21.13303664383957, + 23.468423892265456, + 25.402095720924525, + 25.926528554047547, + 26.395717490985344, + 26.851073021865645, + 27.203010410414887, + 27.50342809513114, + 27.76160166119539, + 27.977305086386924, + 28.138092942928587, + 28.321652749956336, + 28.446937664334694, + 28.508388384737433, + 28.60788773965421 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312546, + 2.1622431316564774, + 2.5060808689637466, + 2.800134562146768, + 3.143277867164189, + 3.512104434365, + 3.8593092056663854, + 4.451648667345192, + 4.893292349778731, + 5.253263926922028, + 5.8340945084566, + 6.297331591525605, + 7.576545103571474, + 8.989796949703502, + 9.438162900188273, + 9.863881194854663, + 10.299609697890237, + 10.651552220228957, + 10.961054061709806, + 11.233647564172562, + 11.465552273918972, + 11.64035131385486, + 11.841128166564312, + 11.979226448827209, + 12.047459612100326, + 12.158600815166283 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323563035405, + 2.851914450439796, + 3.200220676181267, + 3.5239800693894594, + 4.003849610920761, + 4.671789116884014, + 5.352752814882151, + 6.498112920646301, + 7.33152223536234, + 7.9964282480996856, + 9.031987879024442, + 9.818648575237061, + 11.775179346397461, + 13.59977480198555, + 14.119740080639373, + 14.590450386776384, + 15.052153266566297, + 15.411261837734692, + 15.718896746450179, + 15.983602258275024, + 16.204702021418132, + 16.369489064116014, + 16.55711247148256, + 16.685226056357333, + 16.748178014534837, + 16.850324414730537 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_7": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351688203357885, + 3.1872707880384055, + 3.5225590741424675, + 4.031135543730506, + 4.628650423988393, + 5.587366833416984, + 6.95086306454254, + 8.402067695321808, + 10.904891372126123, + 12.6708153755377, + 14.010670613530527, + 15.95998227713012, + 17.3399082389479, + 20.453365530360152, + 23.078241080212067, + 23.793455133457798, + 24.429916403578012, + 25.04558303788607, + 25.518600832557738, + 25.921736512763815, + 26.26655905323652, + 26.553379616526378, + 26.766952905819306, + 27.010052574745778, + 27.176049154428092, + 27.25761283821541, + 27.390133299627223 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331740758, + 2.7884200505989325, + 3.045017987345732, + 3.3883866855284692, + 3.6182343373389, + 3.8039467995645735, + 4.107691750133038, + 4.354678607724848, + 5.067790728832384, + 5.947630268415983, + 6.264317280324333, + 6.592233410811651, + 6.961987894534758, + 7.292828204633072, + 7.611545889017779, + 7.918432045374954, + 8.201911531235776, + 8.430317708925855, + 8.710007607033114, + 8.91323859889943, + 9.01725797158694, + 9.19179519771969 + ], + "5._384._0.0875": [ + 3.4926918267211224, + 4.026284772576977, + 4.656217100609228, + 5.672279382165575, + 6.890749483310308, + 8.925629943813789, + 11.777642084385738, + 14.463760691681767, + 18.300322450685897, + 20.617465039999555, + 22.240555405583013, + 24.4562611495237, + 25.953918549452546, + 29.20182663984494, + 31.871390604867912, + 32.59276643688798, + 33.23627684350578, + 33.859262794128426, + 34.33920420924669, + 34.74861242226284, + 35.09974471823262, + 35.392606376663096, + 35.610874611955936, + 35.85988013943768, + 36.0299107978185, + 36.113376971776674, + 36.24875482455822 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125465, + 2.162243131656477, + 2.506080869108156, + 2.800134944316245, + 3.143339741557704, + 3.512999974377922, + 3.86195019405342, + 4.457763943921927, + 4.903547381838009, + 5.269279767410233, + 5.867907288436105, + 6.357511370663914, + 7.793071230999733, + 9.529483970718067, + 10.107858445224522, + 10.666412132989096, + 11.24540838781851, + 11.717112395005024, + 12.133894941617138, + 12.501693489531975, + 12.814491696617972, + 13.049966364350313, + 13.319408704876295, + 13.504375725602886, + 13.595789388860696, + 13.74485104701633 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235636394973, + 2.8519153220580753, + 3.2003173576347628, + 3.524859313706051, + 4.007183123191358, + 4.6794116807875135, + 5.369577270862288, + 6.563550205186536, + 7.479962094114038, + 8.246165200998934, + 9.498622240187274, + 10.4908167758871, + 13.061976467872231, + 15.531717690612922, + 16.24204284247892, + 16.884016350359374, + 17.51276425810442, + 17.999939756966054, + 18.416398839628723, + 18.773294785874956, + 19.070182988340594, + 19.291011464704162, + 19.54158889148426, + 19.712548313793718, + 19.796609025748438, + 19.933300101856734 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168547412988, + 3.187249481079713, + 3.52239651486618, + 4.030592813742927, + 4.627721482546479, + 5.585586132781207, + 6.942252876708745, + 8.370534236646856, + 10.796400904632465, + 12.488384939274084, + 13.765391230514624, + 15.616776191786146, + 16.924446065190047, + 19.87276397993031, + 22.359801975763418, + 23.03786322214771, + 23.641791941814137, + 24.22638041330231, + 24.675937188655105, + 25.059190225515, + 25.387217875773505, + 25.660224585144125, + 25.8635400761881, + 26.095033868458508, + 26.25310023083977, + 26.330753776241156, + 26.45686654502016 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.4511928331696202, + 2.7884199877775666, + 3.045014140906611, + 3.388305766031536, + 3.6180094883757556, + 3.803580126978429, + 4.107106369569955, + 4.353941475790529, + 5.066564165209557, + 5.943522941998586, + 6.257424383184351, + 6.580948971186158, + 6.943701958562485, + 7.26631300861342, + 7.575380519866607, + 7.871427020733666, + 8.143635394027847, + 8.362170045147026, + 8.628974427676752, + 8.82240017989905, + 8.92126697778735, + 9.087009671738956 + ], + "5._384._0.0875": [ + 3.4924902440751033, + 4.025681012329982, + 4.65521441464559, + 5.670191455383498, + 6.8822340732711265, + 8.881044834052213, + 11.63539898242683, + 14.199402123442821, + 17.83679226376511, + 20.02661442230443, + 21.559182202674144, + 23.651269424674485, + 25.06555041872445, + 28.136212133804257, + 30.66370858011395, + 31.34718936662376, + 31.957236280631964, + 32.54811155089359, + 33.003601711884905, + 33.39220305784771, + 33.72561999306812, + 34.003799284920525, + 34.21113121502547, + 34.44769152198592, + 34.609210542098424, + 34.68848630154257, + 34.8170252835057 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.506080869086975, + 2.8001348882647203, + 3.1433306666415244, + 3.512868631702254, + 3.8615647353093423, + 4.456968040145207, + 4.902494469975342, + 5.267947748354527, + 5.865393325572198, + 6.352567214931404, + 7.76772180729497, + 9.451421094965895, + 10.006723697956039, + 10.54106376568349, + 11.09341360722246, + 11.542515009223523, + 11.938889500630316, + 12.288499489608018, + 12.585828702799336, + 12.809717700989703, + 13.066102138609235, + 13.242186810666816, + 13.329211327476695, + 13.471092849593457 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.5553235635508975, + 2.851915194220728, + 3.2003031776727298, + 3.52473035996673, + 4.006699841652932, + 4.678487388392947, + 5.368158665912254, + 6.558083530918199, + 7.464600170071629, + 8.216638299322032, + 9.435065663892738, + 10.392370744638267, + 12.851804213231175, + 15.198881938500488, + 15.872582172932185, + 16.48161961302125, + 17.078281918452657, + 17.540943631551542, + 17.93663195038179, + 18.276006353820364, + 18.558552448406417, + 18.768803006814576, + 19.007540370717138, + 19.170451962378966, + 19.250546575336667, + 19.380734225183375 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351682355012873, + 3.18722513028491, + 3.5222107358007606, + 4.029972636332023, + 4.626660415726704, + 5.583463942781427, + 6.929872869223122, + 8.32460174819521, + 10.648421241637255, + 12.250081988291685, + 13.453726122308646, + 15.1950154969809, + 16.423908812895952, + 19.197255030318875, + 21.541574290819735, + 22.181487490898178, + 22.752036846066687, + 23.304757268822005, + 23.730238734435343, + 24.09308697813105, + 24.403859631102268, + 24.662656998584477, + 24.855417358810268, + 25.07495776493769, + 25.224857068003622, + 25.298485766282898, + 25.418010597900967 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.1114679242247285, + 2.451192833164528, + 2.7884199159817205, + 3.045009744976355, + 3.388213286973383, + 3.6177525240467543, + 3.803161096527458, + 4.1064374665068675, + 4.353099196304945, + 5.065136634499911, + 5.937776276596052, + 6.24737703547681, + 6.56431352555139, + 6.9169368406013945, + 7.228135477779803, + 7.52433395711089, + 7.806487283728026, + 8.064796271323296, + 8.271575307894325, + 8.523592945203816, + 8.706186502625675, + 8.799505445381719, + 8.956015180800154 + ], + "5._384._0.0875": [ + 3.492259892522562, + 4.02499113779971, + 4.654069229183809, + 5.667652074333671, + 6.870012400628015, + 8.816925916803745, + 11.444820908612867, + 13.863906418259877, + 17.2799195497609, + 19.33388649371495, + 20.771540255502096, + 22.735493777576256, + 24.064037554654973, + 26.95327512714198, + 29.335658803493455, + 29.980437298477327, + 30.556264080667937, + 31.114267766437493, + 31.54468448095281, + 31.91194068996434, + 32.22716118967833, + 32.49024194829176, + 32.68632464591754, + 32.91007544693902, + 33.06283415787967, + 33.13779857570794, + 33.259307506183745 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.1622431316564747, + 2.50608086906277, + 2.8001348242058364, + 3.14332029531039, + 3.5127185273613915, + 3.8611242435272444, + 4.4560587468806165, + 4.901288107653073, + 5.266384521297974, + 5.862099756813723, + 6.345528225867986, + 7.730673191562352, + 9.344421537297626, + 9.871294039421771, + 10.37671571452222, + 10.898197015561678, + 11.32181991608432, + 11.69568876018916, + 12.025612802971441, + 12.30646010740308, + 12.518149678648244, + 12.760924431543001, + 12.927832034329231, + 13.010349921504195, + 13.144900791930889 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.555323563449639, + 2.851915048120904, + 3.20028697200652, + 3.524582985817725, + 4.0061475810374265, + 4.677431636620153, + 5.366507060018139, + 6.550419411407468, + 7.442007739862414, + 8.173571067591539, + 9.345637152148056, + 10.258042476525493, + 12.583703124741143, + 14.794802314624393, + 15.429341944906044, + 16.00359627707255, + 16.566697532663166, + 17.003894260390354, + 17.378099353729944, + 17.699405010834397, + 17.967187862265067, + 18.166561152310834, + 18.3931262939835, + 18.547773585687064, + 18.623801105438158, + 18.747331591898824 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835167875603251, + 3.1871970332340473, + 3.5219963793381237, + 4.0292573183986, + 4.625417083802035, + 5.580061755676867, + 6.908928956024908, + 8.257174582755383, + 10.45714729846731, + 11.956831121983951, + 13.080260227521178, + 14.703952142703317, + 15.850133080237812, + 18.442211591081847, + 20.63996724704262, + 21.24080332793936, + 21.77712224721099, + 22.297136533390013, + 22.697866258991404, + 23.039725987265545, + 23.332723736206056, + 23.576863051712877, + 23.7587309126388, + 23.965925331509965, + 24.107389716439055, + 24.176863430300248, + 24.289595092941102 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.4511928331586534, + 2.788419833140358, + 3.045004672749363, + 3.388106580854825, + 3.6174560346212763, + 3.802677625137808, + 4.105665017121283, + 4.352117303745774, + 5.063050914451576, + 5.927630245302849, + 6.23051559060011, + 6.538011280816131, + 6.877068695077547, + 7.173809640449952, + 7.454377557473311, + 7.720254288380592, + 7.962774750578319, + 8.156531197434967, + 8.39254670787505, + 8.563658918066503, + 8.651173739546687, + 8.798139195929505 + ], + "5._384._0.0875": [ + 3.491994121227876, + 4.024195684098477, + 4.652712715286709, + 5.663411165763376, + 6.849296403772481, + 8.726014488563347, + 11.203914764051587, + 13.46273423763846, + 16.643939648889514, + 18.5570250805148, + 19.897088868929274, + 21.729933480598035, + 22.97101964829107, + 25.67524580083176, + 27.90947995600626, + 28.514706049338628, + 29.055515035649602, + 29.57984243662673, + 29.98452991151296, + 30.329874616160758, + 30.626395289649054, + 30.87394459174358, + 31.05845358019106, + 31.269019306715425, + 31.41276193460984, + 31.483290661136813, + 31.597572744693917 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.5060808690348386, + 2.800134750291739, + 3.1433083283920293, + 3.5125453321524778, + 3.8606160486375507, + 4.455004494169621, + 4.899763598034077, + 5.264041288668976, + 5.856136600833244, + 6.333028185197497, + 7.675908921555161, + 9.204860329189211, + 9.699437520647447, + 10.17275527722966, + 10.660633419162393, + 11.056971504294644, + 11.40701677894836, + 11.716289951601215, + 11.979962741135541, + 12.17899430279973, + 12.407688560443821, + 12.565127825066762, + 12.643007907707338, + 12.770034694180051 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235633328075, + 2.8519148795441813, + 3.200268273167082, + 3.524412940795934, + 4.005510526889623, + 4.676193349723232, + 5.364076752218477, + 6.536919667239534, + 7.406250671346711, + 8.110249747415187, + 9.224519291331704, + 10.084056266250649, + 12.260788157231465, + 14.327568340722971, + 14.921324129793463, + 15.45952463294007, + 15.987961925730136, + 16.398901795708667, + 16.750975259474895, + 17.053664594012243, + 17.30622749519735, + 17.494383556659248, + 17.708383410079637, + 17.854500737821688, + 17.926333476408328, + 18.04300756395123 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351674557223383, + 3.1871642534734352, + 3.521746183845263, + 4.028359369488893, + 4.622823961147695, + 5.568403302527634, + 6.864526392894679, + 8.15313415224542, + 10.216820542331645, + 11.610320546445527, + 12.651543539634721, + 14.15560003440615, + 15.217886959478331, + 17.62581049661035, + 19.673952429136403, + 20.234775692432414, + 20.735950997891393, + 21.222315936277717, + 21.59750998592424, + 21.91769703611597, + 22.19230610946137, + 22.421256512937777, + 22.591832864085365, + 22.78621887236619, + 22.91893274241945, + 22.984097808586117, + 23.089793288855013 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224729, + 2.4511928331517985, + 2.788419736492105, + 3.044998755151761, + 3.387982085480316, + 3.6171089257385938, + 3.802099572527138, + 4.104594709579011, + 4.350358551913859, + 5.055997338363017, + 5.903004775717815, + 6.195805724677951, + 6.490762261916294, + 6.813370017301491, + 7.093641833348739, + 7.357128791434171, + 7.6057241822135095, + 7.831811086319555, + 8.012179954555672, + 8.231866929129952, + 8.391293144694117, + 8.47290238726229, + 8.610143915611317 + ], + "5._384._0.0875": [ + 3.491686998323261, + 4.0231720641270945, + 4.649586274686791, + 5.649335739952878, + 6.80504854813037, + 8.594029497621863, + 10.91006913274814, + 13.003750403000646, + 15.946668238040617, + 17.717370826218165, + 18.958813382316027, + 20.65896830257715, + 21.811416786631245, + 24.32743456314354, + 26.410329027092597, + 26.975065773267524, + 27.479979035379742, + 27.969742915372798, + 28.34798101255416, + 28.67079343922413, + 28.948065677666165, + 29.17961454998364, + 29.352199519632634, + 29.549177103822075, + 29.68362988172937, + 29.74958988446464, + 29.856434413522166 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125465, + 2.1622431316564765, + 2.506080869002254, + 2.8001346640586284, + 3.1432943669978917, + 3.5123432305253424, + 3.8600108934912334, + 4.45315083353895, + 4.895434307829764, + 5.256065717926038, + 5.838372408726856, + 6.303194666150027, + 7.59033061769632, + 9.026309120891435, + 9.48717063928873, + 9.927409195253212, + 10.380908207747142, + 10.749432007681925, + 11.075204935773908, + 11.363414993985696, + 11.609527120555084, + 11.795577430062714, + 12.009769881919118, + 12.157427092449808, + 12.230510098193756, + 12.34975119449185 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235631964966, + 2.851914682871339, + 3.200246457890357, + 3.5242145215457596, + 4.004731092441716, + 4.6735742062707555, + 5.355717278204832, + 6.504548802583241, + 7.342125035284214, + 8.012255949869113, + 9.061447556358392, + 9.864435497972186, + 11.887177483339055, + 13.806909210284111, + 14.359157213573218, + 14.860567671665379, + 15.353550567027737, + 15.737542643679355, + 16.066851632780807, + 16.350332304530777, + 16.587144201318708, + 16.76367328370745, + 16.964619667679475, + 17.101868101374688, + 17.16933973841309, + 17.278893447741456 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_8": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 20.0, + 25.0 + ], + [ + 20.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351692752072397, + 3.1873062996636756, + 3.5228300116499716, + 4.032040248380726, + 4.630197729777157, + 5.5900367196148695, + 6.959466918919208, + 8.431165629619032, + 11.016513561845205, + 12.875798340743232, + 14.30303893549764, + 16.400237093099456, + 17.89736131693401, + 21.29882915936856, + 24.180006772017265, + 24.96602857228584, + 25.664841143623644, + 26.340305879510428, + 26.858514744307456, + 27.299983669680078, + 27.67716180343569, + 27.990561337263422, + 28.223863779528404, + 28.489253311372877, + 28.67048433607842, + 28.759566914926676, + 28.904432117126646 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615422, + 1.4813847491413084, + 1.8198213217004355, + 2.111467924224729, + 2.451192833181503, + 2.788420155301211, + 3.0450243980779184, + 3.3885215520225747, + 3.618609096344806, + 3.804557963972701, + 4.108667564108514, + 4.355907245147609, + 5.069737532482071, + 5.952121913019212, + 6.271090565596982, + 6.602763407652032, + 6.978900069870568, + 7.317843076395118, + 7.646807209651629, + 7.966148327393356, + 8.263643924221123, + 8.505262732583695, + 8.80366827725399, + 9.022460639446457, + 9.135186072054722, + 9.325559119723913 + ], + "5._384._0.0875": [ + 3.4930278495131146, + 4.027291290184815, + 4.657885372208207, + 5.675279738801341, + 6.89930055254186, + 8.967430055572128, + 11.929040745929216, + 14.778894281172104, + 18.923925955344874, + 21.458222744286005, + 23.24276048068518, + 25.685878518164742, + 27.34039997270986, + 30.927331545014606, + 33.87144550068775, + 34.66625840771386, + 35.3745097771422, + 36.05953651264223, + 36.586595667333036, + 37.03607206605586, + 37.42124647210794, + 37.74226451234311, + 37.9814937732909, + 38.254322112390064, + 38.44064573508736, + 38.53213763078866, + 38.68063269652205 + ], + "5._48._0.075": [ + 1.526846324373138, + 1.8679037053125451, + 2.162243131656477, + 2.5060808691434553, + 2.8001350377354495, + 3.143354866420987, + 3.5132188816942658, + 3.862592684304565, + 4.459090584648091, + 4.905287714340043, + 5.271385753812174, + 5.871136008311992, + 6.362761868737102, + 7.816442663471852, + 9.609345457389098, + 10.216347785343006, + 10.807050160555242, + 11.423855779090335, + 11.929632157799421, + 12.378805168139692, + 12.776821145888526, + 13.116376557518889, + 13.372553446871676, + 13.666038156902044, + 13.867780217617952, + 13.967621475369473, + 14.130671896430199 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235637871654, + 2.851915535120322, + 3.2003409909132867, + 3.525074239423523, + 4.007988703478171, + 4.680951049570523, + 5.3718214387796035, + 6.56942239841789, + 7.494248925090364, + 8.273376211081237, + 9.560508529720064, + 10.592382932567057, + 13.310964651615267, + 15.972793766591135, + 16.745667990430313, + 17.445777156138362, + 18.132685147965393, + 18.665218414689686, + 19.120659075482465, + 19.510797575810848, + 19.8351092836748, + 20.076257344556122, + 20.34964931339932, + 20.536173885608747, + 20.62793212120299, + 20.777289452681398 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351690611500633, + 3.1872895883063337, + 3.5227025108086627, + 4.031614480604618, + 4.629468662243947, + 5.5886203025198915, + 6.952537207621614, + 8.406181831954527, + 10.92899249709124, + 12.725308519315464, + 14.097349156915788, + 16.10617431209546, + 17.536576389007866, + 20.782381564939016, + 23.531625705976705, + 24.281927101594732, + 24.94950044148828, + 25.59515614993912, + 26.090925040569424, + 26.51339411884206, + 26.8745617899065, + 27.174822461684084, + 27.39837451094348, + 27.652746551701572, + 27.826448541294805, + 27.911815927270617, + 28.05058076639282 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004358, + 2.1114679242247285, + 2.4511928331780073, + 2.7884201060295517, + 3.045021381262723, + 3.3884580853334287, + 3.6184327374941625, + 3.804270350426825, + 4.10820832499834, + 4.355328854564091, + 5.068768745385377, + 5.948816061397907, + 6.26559476118965, + 6.593841203735273, + 6.964500040156359, + 7.296926426499153, + 7.618115137686643, + 7.92852906581103, + 8.216516453065559, + 8.449613114190237, + 8.736605951284158, + 8.946473582725748, + 9.05441907508556, + 9.236484306162584 + ], + "5._384._0.0875": [ + 3.49286971308677, + 4.026817594414848, + 4.657098247009988, + 5.67361163356625, + 6.892446871651873, + 8.93202710172655, + 11.81326334229535, + 14.557027093473277, + 18.5205652051587, + 20.935097512230247, + 22.63330326648608, + 24.957523814929885, + 26.531396228465045, + 29.94665125076321, + 32.75334000376014, + 33.51155290414542, + 34.18755011411423, + 34.8416826607102, + 35.34527913507292, + 35.77480154191614, + 36.143016698990294, + 36.45000075064438, + 36.678779033931384, + 36.93972218194066, + 37.11791534216598, + 37.20540220718309, + 37.34735186096282 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808691268437, + 2.8001349937734696, + 3.143347748837799, + 3.5131158660417277, + 3.862290326759149, + 4.4584660471404005, + 4.904460473408838, + 5.2703341016781176, + 5.869123036569458, + 6.358805798662599, + 7.796401558015725, + 9.546583375855949, + 10.13410590023302, + 10.703920405229729, + 11.297254269756042, + 11.782726628890211, + 12.213284513662586, + 12.5944924423731, + 12.919603768988342, + 13.164882924033094, + 13.446022427857656, + 13.639332892181764, + 13.7349932629084, + 13.891179275677276 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235637176743, + 2.8519154348557403, + 3.200329869369127, + 3.5249730974705344, + 4.007609589513016, + 4.680225615699856, + 5.370700263465807, + 6.56501207729497, + 7.482045697538973, + 8.250048989837492, + 9.509928256991957, + 10.513052186286783, + 13.135241379133586, + 15.68542151779153, + 16.42405081237506, + 17.093125991643483, + 17.749617922763303, + 18.25883745317747, + 18.694489656443537, + 19.067934796552276, + 19.37859456369727, + 19.60968099867273, + 19.871830028964027, + 20.050713016643154, + 20.13870127997519, + 20.281862258784777 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516882033579, + 3.187270788038405, + 3.522559074142467, + 4.0311355431932805, + 4.628648603784464, + 5.586993226883931, + 6.943524695161556, + 8.371924138308179, + 10.811203225586986, + 12.528759915959991, + 13.834721018977104, + 15.74188379665837, + 17.098145855355963, + 20.17694163901104, + 22.78893190733226, + 23.502512450297743, + 24.138039568867878, + 24.753165265685954, + 25.22595296449976, + 25.628969038271798, + 25.973732524446625, + 26.260518633956135, + 26.474068409399226, + 26.717128531229925, + 26.883101345818094, + 26.96465694792284, + 27.09717022852188 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004344, + 2.111467924224728, + 2.451192833174076, + 2.7884200505989307, + 3.0450179873457324, + 3.388386685528469, + 3.6182343373388983, + 3.803946799559913, + 4.1076917425565265, + 4.354678277515893, + 5.067669581782807, + 5.944640415024359, + 6.258350282357533, + 6.581750835947998, + 6.944703398620202, + 7.268128232707453, + 7.578835830269274, + 7.877575445573338, + 8.153537615842863, + 8.376205520807634, + 8.649753399015811, + 8.849544062925727, + 8.952255777929032, + 9.125509074184095 + ], + "5._384._0.0875": [ + 3.4926918267203604, + 4.02628477024866, + 4.656212810247877, + 5.671675375645698, + 6.883549612993978, + 8.883481733972118, + 11.659229199789147, + 14.273942490699023, + 18.031383115825378, + 20.316169006647094, + 21.922848590439987, + 24.12290116812676, + 25.613455079574145, + 28.852668651317746, + 31.519052018281442, + 32.23993483970909, + 32.8829973427463, + 33.505555171561944, + 33.98513282085118, + 34.39422009330012, + 34.74504508771016, + 35.037621461596686, + 35.25566736200562, + 35.50439684461776, + 35.67423507767919, + 35.757607756035874, + 35.89283957194477 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125465, + 2.162243131656477, + 2.506080869108155, + 2.800134944316244, + 3.1433397415577056, + 3.512999974377923, + 3.8619501940484917, + 4.457763580825443, + 4.903529014061736, + 5.269138916191418, + 5.86670245656227, + 6.353748191512209, + 7.768881776697129, + 9.46186305407285, + 10.024769566937826, + 10.56897334602297, + 11.13440075211493, + 11.596433462100538, + 12.006026955410684, + 12.368723829128244, + 12.678237948652072, + 12.911933166210542, + 13.180138390017142, + 13.364724226536971, + 13.456094782125914, + 13.605290895285181 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235636394978, + 2.851915322058076, + 3.2003173576347597, + 3.524859313706052, + 4.007183123083013, + 4.679409636532822, + 5.369427600681789, + 6.559425971960656, + 7.465567547246499, + 8.21798610863943, + 9.440741663345895, + 10.406232385930029, + 12.910170054982826, + 15.333971487994383, + 16.03545538652465, + 16.67139196751201, + 17.295819237829434, + 17.780704833538554, + 18.19583805915212, + 18.552060390367057, + 18.848684444238803, + 19.06944726647809, + 19.32007468218811, + 19.491140839622854, + 19.575279790230837, + 19.71212686905244 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168547412987, + 3.1872494810797063, + 3.5223965148661653, + 4.0305928131333895, + 4.627719759126345, + 5.585098656290256, + 6.931625748567501, + 8.326396936246887, + 10.662090409407817, + 12.287827457443967, + 13.519361534940963, + 15.31526137227633, + 16.592242558288486, + 19.49614957920816, + 21.96675737794538, + 22.642733175101988, + 23.24544223853786, + 23.829306205386867, + 24.278537942596966, + 24.66161011577881, + 24.989536201892424, + 25.26247569293906, + 25.46574374638024, + 25.697166512409034, + 25.855188436970703, + 25.932824780006513, + 26.058917471088186 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.4511928331696193, + 2.788419987777565, + 3.0450141409066123, + 3.3883057660315345, + 3.6180094883757543, + 3.803580126973619, + 4.107106362075011, + 4.353941080086928, + 5.066408846919868, + 5.939205701940276, + 6.248659887843933, + 6.565476304214355, + 6.918222496375909, + 7.230083013801204, + 7.527706330219998, + 7.812298108650953, + 8.074105990133072, + 8.284818714495293, + 8.543376092633343, + 8.732244598554036, + 8.829390971837142, + 8.993449668652447 + ], + "5._384._0.0875": [ + 3.492490244189735, + 4.0256810080298555, + 4.655210126724206, + 5.6693898727552074, + 6.871815130203044, + 8.819609417603068, + 11.466883804459165, + 13.934467763528797, + 17.468416344475962, + 19.616774569802924, + 21.128444146987263, + 23.20067821380637, + 24.605952649804593, + 27.66548879367651, + 30.188795648621454, + 30.871601059294022, + 31.4810291789569, + 32.071308991468186, + 32.52629431828923, + 32.91445098354656, + 33.247444373839066, + 33.525232413396765, + 33.73226016828302, + 33.968444308699176, + 34.129701420106436, + 34.208849911586405, + 34.337189896997074 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.506080869086975, + 2.8001348882647186, + 3.143330666641526, + 3.5128686317022506, + 3.86156473528612, + 4.456967712506227, + 4.902471516831758, + 5.267756753847028, + 5.863675421970375, + 6.347067919274413, + 7.732177004419352, + 9.354119064643344, + 9.888098889175131, + 10.402908917116749, + 10.937031088131313, + 11.37331552996784, + 11.760250833091131, + 12.1032167625973, + 12.396294559379992, + 12.617884593404314, + 12.872668837594222, + 13.048257714943981, + 13.135225161011045, + 13.277278573186482 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323563550898, + 2.8519151942207284, + 3.200303177672733, + 3.5247303599667297, + 4.006699841448873, + 4.678485426663437, + 5.367968120938165, + 6.552160696745491, + 7.443470067123398, + 8.17528714023652, + 9.351028553165566, + 10.270848535700448, + 12.63896333598115, + 14.92578617289491, + 15.58809085423441, + 16.18937034690555, + 16.780492370828327, + 17.240223558950916, + 17.634205745469036, + 17.972706582566737, + 18.254901959667745, + 18.465057587974677, + 18.703845288078174, + 18.866884983653847, + 18.94707585632017, + 19.07745757832766 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351682355012886, + 3.1872251302849093, + 3.5222107358639363, + 4.029972782513552, + 4.626640476131106, + 5.582053942493779, + 6.912169117856516, + 8.26264417709034, + 10.478044337320485, + 12.003576943122658, + 13.155898645135414, + 14.835373299070952, + 16.03035561395919, + 18.75474307039099, + 21.080752849817944, + 21.71828562511436, + 22.28738963812534, + 22.839204141283858, + 23.264237953661443, + 23.626810143595225, + 23.93740283766205, + 24.196067935080354, + 24.388732912624896, + 24.6081455337736, + 24.75796226908575, + 24.831555687528432, + 24.95103257203199 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.1114679242247285, + 2.451192833164529, + 2.7884199159817213, + 3.045009744976355, + 3.3882132869740174, + 3.6177525240818875, + 3.803161090545601, + 4.106436739519913, + 4.353089206535257, + 5.064561989799957, + 5.929846676598872, + 6.23296813197663, + 6.5408135725456855, + 6.880561085571785, + 7.17845499773702, + 7.4608739999640745, + 7.729537600976471, + 7.975816821516215, + 8.173672261313587, + 8.416382873493102, + 8.593864123022488, + 8.685254511338746, + 8.839867856179117 + ], + "5._384._0.0875": [ + 3.492259875188416, + 4.024991477758671, + 4.654031469747726, + 5.665572332736328, + 6.852579039947414, + 8.733295649423269, + 11.234380788097107, + 13.544010991330907, + 16.845319231623805, + 18.85379862576016, + 20.268544791848544, + 22.21070152491387, + 23.52930648969008, + 26.40603247192086, + 28.78346297526418, + 29.427393592420874, + 30.002440619841124, + 30.559689426631685, + 30.98947037176464, + 31.3561685045018, + 31.67086246854102, + 31.933461092290617, + 32.12917055570806, + 32.35246297133068, + 32.50490326700884, + 32.57971296671886, + 32.70097962753248 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, + 2.162243131656475, + 2.5060808690627714, + 2.8001348242058364, + 3.1433202953103887, + 3.5127185273808763, + 3.8611242637121594, + 4.456053384686184, + 4.901139835383906, + 5.265677810582627, + 5.858241333302596, + 6.335516451129725, + 7.6804125481926535, + 9.21993874257994, + 9.722190914097423, + 10.205342121508512, + 10.706234414087108, + 11.11550614071586, + 11.478845871566255, + 11.80137286575874, + 12.077480471186654, + 12.28659118775596, + 12.527543181582503, + 12.693864437962286, + 12.776301467256078, + 12.911016767302467 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235634496407, + 2.851915048120906, + 3.200286972006516, + 3.524582985831382, + 4.006147662986756, + 4.677410429895274, + 5.365814562026033, + 6.539694409944456, + 7.409950972959052, + 8.11539168475236, + 9.235191521526195, + 10.103379844331736, + 12.324864630920196, + 14.468856792576602, + 15.090799980492083, + 15.656437630883755, + 16.213354742463107, + 16.647250351035467, + 17.019501858791955, + 17.339774629364783, + 17.607108170237424, + 17.806329871184793, + 18.032896605402897, + 18.187649767736396, + 18.26376660307895, + 18.38748536400978 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516787560327, + 3.187197033330878, + 3.5219962702287444, + 4.029198794040404, + 4.62434004419294, + 5.571438695634637, + 6.871364620036569, + 8.166428981961023, + 10.25317939573662, + 11.676915250722683, + 12.749704360781696, + 14.312606423063015, + 15.42540274101135, + 17.968767053339548, + 20.14766786403551, + 20.74590065035735, + 21.280545079135436, + 21.799413663994734, + 22.19949749530918, + 22.540911236702122, + 22.83357875639784, + 23.077457641434304, + 23.259135014777666, + 23.466092841912523, + 23.607400864036418, + 23.6768034244855, + 23.789430321351656 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.451192833158654, + 2.788419833140358, + 3.0450046727495925, + 3.388106575721871, + 3.617454912961281, + 3.802664653391903, + 4.105507945291275, + 4.351540095621734, + 5.058163934337005, + 5.907262118344879, + 6.201060310477912, + 6.497274844964239, + 6.821688845638673, + 7.10413426024912, + 7.370422632779881, + 7.622649281369087, + 7.853184048131894, + 8.03812777343143, + 8.264982109446088, + 8.431044315639914, + 8.51664284663936, + 8.661698687076798 + ], + "5._384._0.0875": [ + 3.4919967730219934, + 4.024107567151913, + 4.651245744362634, + 5.65273673718302, + 6.811922099528438, + 8.610973645408887, + 10.958625192011533, + 13.109036433266299, + 16.177627963673835, + 18.045988858391404, + 19.36340409480691, + 21.174492236267756, + 22.405522425783914, + 25.096627970505246, + 27.325197663423587, + 27.929362479000382, + 28.469195157917127, + 28.992570862623182, + 29.396465215952343, + 29.741117298271583, + 30.036993864053233, + 30.283961433379723, + 30.468023129770735, + 30.67804569442607, + 30.821412507215257, + 30.89175865642795, + 31.0057542400544 + ], + "5._48._0.075": [ + 1.526846324373142, 1.8679037053125447, + 2.1622431316564743, + 2.506080869034839, + 2.8001347502917415, + 3.143308328399102, + 3.5125452921342157, + 3.8606046979946425, + 4.454422443584657, + 4.897247846519907, + 5.258438205447511, + 5.8419943256507185, + 6.308139326475674, + 7.601288737198463, + 9.053023339731885, + 9.52300494352351, + 9.974284956333625, + 10.441857927564534, + 10.82405043694022, + 11.163679950971792, + 11.465586637655631, + 11.724484968572707, + 11.92087459022065, + 12.147634265437976, + 12.304397783712364, + 12.382150947824549, + 12.509268145920466 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235633328057, + 2.8519148795441804, + 3.2002682731925205, + 3.5244129074144133, + 4.0054770910391575, + 4.675085456535995, + 5.358227725862137, + 6.509992904573515, + 7.350857628733763, + 8.024752618822854, + 9.083376252541932, + 9.897868849378614, + 11.971160391153468, + 13.971665049878467, + 14.552893959649786, + 15.082406186668544, + 15.60451190389581, + 16.011982070515547, + 16.361934991138586, + 16.66342697319344, + 16.915391038411418, + 17.103282575262956, + 17.317152415698466, + 17.46328606927267, + 17.535164496060446, + 17.651958347251508 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "6_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 5.0 + ], + [ + 25.0, + 10.0 + ], + [ + 25.0, + 15.0 + ], + [ + 25.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351685474129877, + 3.1872494810797085, + 3.5223965148661844, + 4.030592811656449, + 4.627714361246171, + 5.584140222750663, + 6.918061687061552, + 8.290355577090926, + 10.610082119673034, + 12.244628402545722, + 13.48905336568867, + 15.3074520795651, + 16.599550563347986, + 19.52876103898667, + 22.009314786854148, + 22.6865092018802, + 23.289702737651364, + 23.873648515838408, + 24.32269866914527, + 24.705502830772286, + 25.033105894680233, + 25.305718454120736, + 25.50872247747098, + 25.739823951944064, + 25.89761460786285, + 25.975133842399586, + 26.1010358549801 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413066, + 1.8198213217004349, + 2.1114679242247285, + 2.4511928331696184, + 2.788419987777567, + 3.045014140906611, + 3.388305766031536, + 3.618009488375746, + 3.803580126959415, + 4.107106339047922, + 4.353940144973575, + 5.066087886458091, + 5.933132928810665, + 6.238207730715223, + 6.549862486975425, + 6.89708184384569, + 7.205092455007118, + 7.500540049255561, + 7.784673334424664, + 8.047494575048605, + 8.259906500253773, + 8.521280437622925, + 8.712254948445805, + 8.810346000761752, + 8.975546005165267 + ], + "5._384._0.0875": [ + 3.4924902440842334, + 4.025681002944053, + 4.65519760000662, + 5.667878936320498, + 6.8584047491212345, + 8.77585092097882, + 11.414550125624526, + 13.904004108851833, + 17.481960817629123, + 19.652415109417635, + 21.175935155401216, + 23.259810231923577, + 24.670308023726395, + 27.735125331270456, + 30.25869190995757, + 30.941138655171642, + 31.550146803945236, + 32.13993959408101, + 32.594503538059826, + 32.98228706724444, + 33.31494900309519, + 33.59245597228586, + 33.79927514282707, + 34.03522489602005, + 34.19632350028283, + 34.27539467752157, + 34.40361145943094 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125458, + 2.1622431316564743, + 2.506080869086975, + 2.800134888264721, + 3.1433306666415235, + 3.5128686317022493, + 3.861564735288435, + 4.4569666138242, + 4.90242107152987, + 5.267391343048841, + 5.86090294040104, + 6.339557581151294, + 7.7029822520230935, + 9.314357337639127, + 9.850480698544585, + 10.36952295025419, + 10.909483040664316, + 11.351169515513913, + 11.742796132124422, + 12.089583885487999, + 12.385446224483859, + 12.608696691195538, + 12.864817634520552, + 13.04095751355361, + 13.128084114846052, + 13.27021845572316 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235635508984, + 2.8519151942207284, + 3.2003031776727306, + 3.5247303599667292, + 4.006699841231027, + 4.6784793790260215, + 5.367571004857667, + 6.543782826656962, + 7.421467633844777, + 8.141580510969167, + 9.304802974817639, + 10.222525602077718, + 12.609709440561087, + 14.92379254624852, + 15.592660291861653, + 16.19877951181794, + 16.793582046994793, + 17.25540770111174, + 17.650615126381812, + 17.98975875069552, + 18.272201559087815, + 18.482392727366864, + 18.721061577717897, + 18.883937536313518, + 18.964022464863927, + 19.09420277513519 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 5.0 + ], + [ + 25.0, + 10.0 + ], + [ + 25.0, + 15.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168235501288, + 3.187225130284912, + 3.5222107358007633, + 4.029972634716741, + 4.626654941510988, + 5.582365843376841, + 6.911936516450208, + 8.266572816050711, + 10.517813790901615, + 12.08195630628225, + 13.2649472935055, + 14.985989642844942, + 16.205622486681346, + 18.967982117176128, + 21.308649666993194, + 21.94807232071998, + 22.518176162263448, + 23.07049149936099, + 23.495642807119967, + 23.85819398499391, + 24.168682614351805, + 24.427215051354075, + 24.619765812174965, + 24.83904252651611, + 24.988756230871157, + 25.062294304646596, + 25.18167654227643 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.1114679242247285, + 2.4511928331645287, + 2.7884199159817205, + 3.045009744976354, + 3.3882132869733823, + 3.617752524046741, + 3.8031610965124254, + 4.106437442583411, + 4.35309815866109, + 5.064772945735825, + 5.930012603257466, + 6.233140547165058, + 6.541494487928723, + 6.8830720965925005, + 7.184074914267886, + 7.470931133040509, + 7.745066050105375, + 7.997181964464276, + 8.200000806762334, + 8.448585951095053, + 8.62967112419876, + 8.722523781240746, + 8.87872166961579 + ], + "5._384._0.0875": [ + 3.4922598925323394, + 4.024991130445897, + 4.654056319902517, + 5.665900219074103, + 6.852335139010997, + 8.74136455228804, + 11.29115505303874, + 13.662442100879062, + 17.04233496360507, + 19.08505173530278, + 20.517533731453568, + 22.476843236076107, + 23.80324285554618, + 26.689025930422964, + 29.068928329196435, + 29.713033980065592, + 30.28818141860292, + 30.8454746986736, + 31.275283264838677, + 31.642002366645702, + 31.95672748150394, + 32.21936757112262, + 32.41511435757952, + 32.638465600244224, + 32.79094926872409, + 32.86577983660896, + 32.98707786540897 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125451, 2.1622431316564747, - 2.5060808688610523, - 2.800134290381807, - 3.143233867629361, - 3.511467665393575, - 3.8574385634398944, - 4.447714789606452, - 4.888302448821012, - 5.248167997117308, - 5.830508297092652, - 6.295296586288774, - 7.56361887389745, - 8.90982360494905, - 9.322335114881888, - 9.708057004364308, - 10.09708949939826, - 10.407398184140611, - 10.677608220924602, - 10.913749061747826, - 11.113444149598129, - 11.263320515047692, - 11.434978919057615, - 11.552688041368015, - 11.610695030571737, - 11.704935810859379 + 2.5060808690627696, + 2.800134824205838, + 3.14332029531039, + 3.5127185273613932, + 3.861124243510543, + 4.456057644644423, + 4.901231524411675, + 5.265958172372358, + 5.858702768371778, + 6.335794314578913, + 7.683748963654632, + 9.247995469760264, + 9.762245638224883, + 10.257790273443888, + 10.77143011212698, + 11.19048091319974, + 11.561484174889552, + 11.889753803401739, + 12.169774987563516, + 12.381121173961972, + 12.623776826354845, + 12.790739003647644, + 12.87332738581507, + 13.008041869862234 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.55532356344964, + 2.8519150481209032, + 3.20028697200652, + 3.5245829858177236, + 4.006147580710548, + 4.6774254776815365, + 5.366058857474374, + 6.539743553484839, + 7.410347209629118, + 8.119196661697641, + 9.253027560730573, + 10.138793005810042, + 12.417800315361143, + 14.608866455829881, + 15.240628116462835, + 15.81323128010154, + 16.37530700952727, + 16.812062584925076, + 17.186013265631264, + 17.507198663975746, + 17.774925722568042, + 17.974262625092386, + 18.200779375463416, + 18.355397684465625, + 18.43141496716221, + 18.554933016392738 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 5.0 + ], + [ + 25.0, + 10.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351678756032506, + 3.187197033234046, + 3.5219963793381184, + 4.0292573173269055, + 4.625413507913837, + 5.579360755508458, + 6.897906936615181, + 8.222720380227667, + 10.382937350454533, + 11.86344318095377, + 12.976850099278726, + 14.591318360106637, + 15.733583453934115, + 18.32146124814001, + 20.517938334588, + 21.11860314693513, + 21.654732567305672, + 22.17455591263124, + 22.575116321180126, + 22.916817539632397, + 23.209659378342188, + 23.45365114780809, + 23.635401607638528, + 23.84244824414616, + 23.983808104272214, + 24.05323050585271, + 24.165880983780117 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247294, + 2.451192833158654, + 2.788419833140359, + 3.0450046727493625, + 3.3881065808548247, + 3.6174560346212705, + 3.802677625127374, + 4.10566500081076, + 4.352116604310975, + 5.06281629223933, + 5.922800658963917, + 6.221768357941125, + 6.524181494579025, + 6.85685401094193, + 7.14785418100855, + 7.42329381195661, + 7.6848894895833535, + 7.924204422065353, + 8.115979093427722, + 8.350354466090252, + 8.520794334343224, + 8.608116850856167, + 8.75497869247201 + ], + "5._384._0.0875": [ + 3.4919941212384034, + 4.024195679088714, + 4.652704305074951, + 5.66229774428356, + 6.838423729270405, + 8.681624826573678, + 11.117484203467635, + 13.352612525344206, + 16.517672086709997, + 18.426255204891785, + 19.7643548416468, + 21.595504302754975, + 22.83580670021645, + 25.538610228306386, + 27.77163297871546, + 28.376507042307804, + 28.916956032474136, + 29.440903560831263, + 29.84526486174052, + 30.190321057902928, + 30.4865758728581, + 30.733889048169253, + 30.918218172663828, + 31.12857038911264, + 31.27216609628944, + 31.342623297050814, + 31.456792574013075 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125447, + 2.1622431316564743, + 2.5060808690348377, + 2.800134750291741, + 3.143308328392029, + 3.512545332152475, + 3.8606160486257077, + 4.455003765622254, + 4.899726380403744, + 5.263764232558448, + 5.853979674467659, + 6.326957866335037, + 7.647989147068824, + 9.149800355087564, + 9.637870117204775, + 10.106248206666853, + 10.59035174449623, + 10.984604086309986, + 11.333413876013694, + 11.642033275309593, + 11.905425620615986, + 12.104367023530324, + 12.333069619775559, + 12.490565879173854, + 12.568490634140915, + 12.695606100990457 ], "5._96._0.075": [ 2.2092718103274045, - 2.5553235626058277, - 2.851913830622356, - 3.200151925018721, - 3.5233548841477056, - 4.001500388394046, - 4.667227780746542, - 5.3473600962024905, - 6.496001656505285, - 7.327146079181405, - 7.981025431062503, - 8.977774653538907, - 9.716112080638158, - 11.490796485403289, - 13.084823547615835, - 13.531443597883513, - 13.93399452961531, - 14.327530265190676, - 14.633154342086335, - 14.89465024576998, - 15.1196599568755, - 15.307696682750466, - 15.447851464430137, - 15.607576325531452, - 15.716613494272394, - 15.770152218969342, - 15.85691750463027 + 2.5553235633328066, + 2.85191487954418, + 3.200268273167086, + 3.5244129407959393, + 4.005510526672377, + 4.676189323200988, + 5.363788386868529, + 6.5302904595370554, + 7.387074310567693, + 8.077930446998046, + 9.170904741923847, + 10.016193516318099, + 12.169533901138871, + 14.227465997412715, + 14.820160350180911, + 15.357778162112949, + 15.885894488173262, + 16.296727444158087, + 16.648742700709942, + 16.951410803182466, + 17.20396367522425, + 17.392107168098903, + 17.60608081911169, + 17.752177950304407, + 17.824001416439287, + 17.9406608493037 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 5.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835167455722338, + 3.1871642534734343, + 3.521746183845265, + 4.028359369041448, + 4.622822482434019, + 5.568110170935008, + 6.860114507972074, + 8.140296600267254, + 10.19237726948658, + 11.581996427495334, + 12.622003619464516, + 14.125946778063422, + 15.188736416121062, + 17.598138178518393, + 19.647017310543724, + 20.207941862804287, + 20.709144315409375, + 21.195495932643766, + 21.5706501601108, + 21.890787970397742, + 22.165340287685687, + 22.394232911771752, + 22.56476190317057, + 22.75908792412443, + 22.89175841550086, + 22.95690171381592, + 23.062562049011294 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224729, + 2.451192833151798, + 2.788419736492105, + 3.0449987551517608, + 3.3879820854803158, + 3.617108925738591, + 3.8020995725220432, + 4.1045947020010125, + 4.350358233397575, + 5.055897864018083, + 5.901031435933705, + 6.1923054568926235, + 6.4853892528925385, + 6.8057919851358415, + 7.084236565486805, + 7.3462380745979345, + 7.593741869634274, + 7.819151484892813, + 7.999210011470592, + 8.218782262993555, + 8.378261959423554, + 8.459923325517641, + 8.597262308111468 + ], + "5._384._0.0875": [ + 3.4916869983347407, + 4.023172061806123, + 4.649582794614773, + 5.648871822726241, + 6.80068844615851, + 8.577887630286671, + 10.882515562018003, + 12.972467832974456, + 15.915620453135176, + 17.68734602929525, + 18.929470194880057, + 20.630374480103875, + 21.783168263914195, + 24.299436970510452, + 26.38213317533995, + 26.946768210762006, + 27.45156933435985, + 27.941208634844866, + 28.31933766833771, + 28.64205272989215, + 28.919235503718834, + 29.150705493718498, + 29.323230590645295, + 29.520137897366904, + 29.654542397566953, + 29.720478843262327, + 29.82728605737563 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125465, + 2.1622431316564765, + 2.506080869002254, + 2.8001346640586284, + 3.14329436699789, + 3.512343230525338, + 3.8600108934850286, + 4.453150524125276, + 4.895418065290395, + 5.255945627241403, + 5.8374644089825125, + 6.300707609000339, + 7.5798949221629535, + 9.007999807708698, + 9.467501007397258, + 9.90694237843792, + 10.360088532801647, + 10.728623528044526, + 11.05455434738798, + 11.342981760100686, + 11.589303908942284, + 11.775502729550407, + 11.989840196902158, + 12.137573884819304, + 12.210687402253406, + 12.3299639635133 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235631964974, + 2.851914682871338, + 3.2002464578903593, + 3.5242145215457596, + 4.004731092350689, + 4.673572533052638, + 5.355595695684696, + 6.501850948069073, + 7.334675727605192, + 8.000228392754774, + 9.042821815664453, + 9.84207236762788, + 11.860839379810715, + 13.781058468085934, + 14.333686274237092, + 14.835442832381796, + 15.328729839702325, + 15.712920670778807, + 16.042355161813756, + 16.32591131567509, + 16.562759998903793, + 16.739300352861882, + 16.940240455377996, + 17.07747524120779, + 17.144937580150753, + 17.25447281682658 ] }, "logtime": [ diff --git a/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json index 6c581ef1e8..40665c54cc 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json @@ -903,7 +903,7 @@ ] } }, - "4_4": { + "3_7": { "1": { "bore_locations": [ [ @@ -912,7 +912,7 @@ ], [ 0.0, - 15.0 + 30.0 ], [ 5.0, @@ -920,7 +920,7 @@ ], [ 5.0, - 15.0 + 30.0 ], [ 10.0, @@ -928,178 +928,194 @@ ], [ 10.0, - 15.0 + 30.0 ], [ - 15.0, - 0.0 + 0.0, + 5.0 ], [ - 15.0, + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, 15.0 ], [ 0.0, - 5.0 + 20.0 ], [ - 15.0, - 5.0 + 10.0, + 20.0 ], [ 0.0, - 10.0 + 25.0 ], [ - 15.0, - 10.0 + 10.0, + 25.0 ] ], "g": { "5._192._0.08": [ - 2.8351729205545935, - 3.187613472729638, - 3.5261116642188135, - 4.054253597390166, - 4.70242914864568, - 5.8086030113135525, - 7.467549516284039, - 9.173910326217955, - 11.817549620297518, - 13.50063752774223, - 14.708245124966707, - 16.390506424244155, - 17.542754332347926, - 20.076562667192977, - 22.17930066733775, - 22.74990326709019, - 23.259177076033392, - 23.752891128976884, - 24.133769674524423, - 24.458778473467625, - 24.737703371030964, - 24.9704461779962, - 25.14391178539724, - 25.341768285828188, - 25.47687046952432, - 25.543193094793875, - 25.650707779981367 + 2.8351729189619643, + 3.187607709872632, + 3.5258443886017474, + 4.052114745108451, + 4.706971171375829, + 5.87113667567836, + 7.663251348058056, + 9.533515216068507, + 12.518731309208293, + 14.48946154244564, + 15.936884648715427, + 17.992833535888252, + 19.424655957977727, + 22.614931787032607, + 25.285374477534898, + 26.0117695347434, + 26.659023562550722, + 27.28567747246284, + 27.767904433507724, + 28.17916379843762, + 28.53142328206118, + 28.824822127623804, + 29.043413380831797, + 29.292470363067032, + 29.462572922303504, + 29.5461384559791, + 29.681821703561038 ], "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615426, + 0.8740059532267968, + 1.1958031759615424, 1.4813847491413068, - 1.8198213217004353, - 2.1114679242247276, - 2.451192833240911, - 2.7884209933194914, - 3.0450766572778396, - 3.389902139693359, - 3.623913486030334, - 3.8161259791525683, - 4.137388995029404, - 4.4051267851223574, - 5.214701703132842, - 6.276949476181331, - 6.660407431446878, - 7.049422589341101, - 7.473153414434007, - 7.836070348060081, - 8.170029988786352, - 8.476777753348607, - 8.747261338461222, - 8.956411097426855, - 9.202137045330364, - 9.37395002483599, - 9.459699491909076, - 9.600312664462594 + 1.8198213217004342, + 2.111467924224728, + 2.4511928332409108, + 2.7884209932194746, + 3.0450764139621707, + 3.3898277115342994, + 3.623385257925254, + 3.8148298569302113, + 4.13544100541548, + 4.405658116942111, + 5.24970191286046, + 6.3924662001087995, + 6.808483784822626, + 7.233176760233515, + 7.699566350818755, + 8.103390385235613, + 8.47957310335953, + 8.829975165158368, + 9.143654254144934, + 9.389821468314828, + 9.683568841881728, + 9.892437967249506, + 9.997966251115024, + 10.173095109253776 ], "5._384._0.0875": [ - 3.4974014612635833, - 4.0543778177746645, - 4.742542311205488, - 5.925653912078285, - 7.411046933317475, - 9.777945928796772, - 12.707582672564504, - 15.18137338890359, - 18.44968333281755, - 20.336262258422025, - 21.634806948968798, - 23.391045748332242, - 24.57126459982887, - 27.13330643048112, - 29.248061666688077, - 29.821100755788592, - 30.333976575384245, - 30.83185682051092, - 31.216858652123662, - 31.545573045197322, - 31.828203059721602, - 32.064458178976366, - 32.24060869933254, - 32.4417938093029, - 32.57913099533268, - 32.646493139072525, - 32.75555033459801 + 3.497004656208138, + 4.052120776142045, + 4.750558061841151, + 6.001765983703082, + 7.607564985346876, + 10.209916514358277, + 13.551026130446065, + 16.493953652720812, + 20.525566731147773, + 22.90952127016701, + 24.56697052510634, + 26.820266299627676, + 28.33968915469285, + 31.635679855809784, + 34.349311805259134, + 35.083448968114, + 35.739230912780044, + 36.37479474662217, + 36.865155472499616, + 37.28362913367361, + 37.64290470810855, + 37.94283599455204, + 38.166425919445274, + 38.42163568777262, + 38.595900561544816, + 38.68142431048799, + 38.820052430963116 ], "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125467, - 2.1622431316564783, - 2.506080869425859, - 2.8001357854052342, - 3.143480621708681, - 3.5157195599231095, - 3.8747798570388277, - 4.512229192124728, - 5.010413764679055, - 5.4337256554705515, - 6.151298086195742, - 6.7488452499404605, - 8.445309591581669, - 10.268274360411876, - 10.822950270217252, - 11.337592629263623, - 11.85269991856157, - 12.260211639281591, - 12.612677176675874, - 12.918533381258486, - 13.17548225828373, - 13.367423393448528, - 13.586035310552214, - 13.735408064577877, - 13.808908278883589, - 13.928255410057844 + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.506080869425861, + 2.8001357853262, + 3.143479432986084, + 3.5155376228768187, + 3.8734133806044793, + 4.512869282989751, + 5.026899574940905, + 5.473751267189187, + 6.2431742672824, + 6.889153105826035, + 8.743209488813227, + 10.796846538824974, + 11.441274642202544, + 12.047288576003869, + 12.66243154100179, + 13.15487920802369, + 13.585116611429115, + 13.961265968305405, + 14.279059739034706, + 14.517467177559645, + 14.789625871389529, + 14.976142008663652, + 15.068192057086826, + 15.218159237214326 ], "5._96._0.075": [ - 2.209271810327404, - 2.5553235649685027, - 2.85191724113029, - 3.200540894404338, - 3.5275047266417947, - 4.025970191286226, - 4.753579891339415, - 5.543082335133833, - 6.987551562749769, - 8.092101425207474, - 8.9776988236641, - 10.337085958191386, - 11.342491130110483, - 13.731702648068135, - 15.836916503083607, - 16.420819154043382, - 16.943922157361797, - 17.453033126848272, - 17.846569813436922, - 18.1824859274211, - 18.470631174105463, - 18.71078748729027, - 18.889590015481595, - 19.093028010450833, - 19.231845509633082, - 19.30002062517405, - 19.41061394306638 + 2.209271810327403, + 2.5553235649685018, + 2.851917240752292, + 3.200538186807403, + 3.527331778442404, + 4.024076523179473, + 4.758474811435108, + 5.585699043253727, + 7.14057224661258, + 8.343225271342968, + 9.318187535705926, + 10.839846645000845, + 11.989214623956345, + 14.805710564080492, + 17.383174227683313, + 18.11118391667236, + 18.76627629107351, + 19.405961165619335, + 19.90088550555521, + 20.323830541305583, + 20.686392644999508, + 20.988234692502804, + 21.212912685842664, + 21.468203521384417, + 21.642462821773382, + 21.72813493998855, + 21.867381767777037 ] }, "logtime": [ @@ -1133,7 +1149,7 @@ ] } }, - "4_5": { + "3_8": { "1": { "bore_locations": [ [ @@ -1142,7 +1158,7 @@ ], [ 0.0, - 20.0 + 35.0 ], [ 5.0, @@ -1150,7 +1166,7 @@ ], [ 5.0, - 20.0 + 35.0 ], [ 10.0, @@ -1158,22 +1174,14 @@ ], [ 10.0, - 20.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 20.0 + 35.0 ], [ 0.0, 5.0 ], [ - 15.0, + 10.0, 5.0 ], [ @@ -1181,7 +1189,7 @@ 10.0 ], [ - 15.0, + 10.0, 10.0 ], [ @@ -1189,53 +1197,5015 @@ 15.0 ], [ - 15.0, + 10.0, 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 10.0, + 30.0 ] ], "g": { "5._192._0.08": [ - 2.83517291964452, - 3.1876101757539033, - 3.525952533029806, - 4.05211363467208, - 4.6938069440163, - 5.78058550436625, - 7.420593520479523, - 9.159622018026033, - 11.965509667083033, - 13.807711943883904, - 15.149082048919817, - 17.037210672860628, - 18.340130310898758, - 21.217473513072264, - 23.60864229366581, - 24.257427338066265, - 24.835595044653477, - 25.39544939590001, - 25.826593778720277, - 26.19431780813388, - 26.50949834289068, - 26.77218691852415, - 26.967918531277338, - 27.19102130267829, - 27.34337585972222, - 27.4181972247516, - 27.539599393683137 + 2.835172918431087, + 3.1876057871030743, + 3.52575238245459, + 4.051000081536278, + 4.703877472611951, + 5.869372235601424, + 7.681329353112848, + 9.594822358003931, + 12.696323587856897, + 14.776011994180196, + 16.318819378434824, + 18.529902421302577, + 20.082210923408887, + 23.56580454912274, + 26.49783684092086, + 27.29679487246883, + 28.008285021561854, + 28.696787774478768, + 29.22600403487418, + 29.677223635394117, + 30.06334890913764, + 30.38466904380889, + 30.624016801468127, + 30.896577168569653, + 31.08275285523598, + 31.174247795969965, + 31.322925343863034 ], "5._24._0.075": [ - 0.8740059532267965, - 1.195803175961542, - 1.4813847491413066, - 1.8198213217004344, + 0.8740059532267964, + 1.1958031759615422, + 1.4813847491413075, + 1.8198213217004355, 2.1114679242247285, - 2.4511928332409116, - 2.7884209932623367, - 3.045076518230904, - 3.38985905028238, - 3.6235840764481617, - 3.8151720590575846, - 4.134398178917575, + 2.4511928332409108, + 2.788420993186134, + 3.0450763328525636, + 3.389802645222456, + 3.6231967357174084, + 3.8143029451458825, + 4.1339792147628724, + 4.403333904580574, + 5.247097354146052, + 6.399416264613004, + 6.822122352666752, + 7.255664723608998, + 7.734301522544537, + 8.15117408539098, + 8.541781007215999, + 8.907912575077516, + 9.237849303387788, + 9.498442479482115, + 9.811620763608722, + 10.036121394425086, + 10.150270155313107, + 10.340960263934585 + ], + "5._384._0.0875": [ + 3.4968662446076877, + 4.050746481379307, + 4.747205287055012, + 6.001052648224909, + 7.625410017489632, + 10.29282333549522, + 13.778998164152002, + 16.905335036733813, + 21.25925952903218, + 23.864906056865447, + 25.686387589595572, + 28.170563603061822, + 29.849414799973736, + 33.49200817780871, + 36.48854621440273, + 37.29868474032228, + 38.021677642990326, + 38.721821206207984, + 39.26139901905697, + 39.72176553293678, + 40.11671362611951, + 40.44620701465264, + 40.691812457024454, + 40.972064333263575, + 41.16345307033642, + 41.257406757155586, + 41.40979125384825 + ], + "5._48._0.075": [ + 1.52684632437314, + 1.8679037053125456, + 2.1622431316564765, + 2.50608086942586, + 2.8001357852998567, + 3.1434790366550005, + 3.5154755716478725, + 3.8728575935431007, + 4.510369710680118, + 5.023512851910174, + 5.470938443850579, + 6.244879946020552, + 6.898224361348665, + 8.792082302052858, + 10.924340454034324, + 11.602340857335482, + 12.2438241008562, + 12.899007288734685, + 13.426476674782117, + 13.88952406262073, + 14.295960386748252, + 14.6404447410476, + 14.899523981114227, + 15.195775047750804, + 15.399185526157913, + 15.49974534147104, + 15.663882644585449 + ], + "5._96._0.075": [ + 2.2092718103274005, + 2.5553235649685004, + 2.851917240626292, + 3.2005372838438158, + 3.5272728780536515, + 4.023196056725778, + 4.755396856237598, + 5.582806595496845, + 7.1508662627764945, + 8.375370223752189, + 9.375538035404384, + 10.95024026802689, + 12.150947351655473, + 15.132653927877891, + 17.908632921569787, + 18.700071245859235, + 19.41403351664556, + 20.11266206007901, + 20.6536903947726, + 21.11642917478162, + 21.513089949626806, + 21.843210787727735, + 22.08893287419812, + 22.36797833641933, + 22.55849441645847, + 22.65221257824921, + 22.804690344749616 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_9": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 40.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 40.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 10.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835172918006393, + 3.187604248887456, + 3.525678777626001, + 4.050108418383805, + 4.701403880343332, + 5.867960997097962, + 7.695781932215484, + 9.644074194852983, + 12.840529704732127, + 15.011357169196343, + 16.635688096079242, + 18.982601634687096, + 20.642967445563926, + 24.3969950798548, + 27.576958091093655, + 28.44545617521269, + 29.21862188750233, + 29.966578060639918, + 30.540933162441394, + 31.030545271487547, + 31.449168569328656, + 31.797246764572986, + 32.056480914762744, + 32.35153854533249, + 32.55310476409099, + 32.652198990139766, + 32.813352402278596 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615422, + 1.4813847491413077, + 1.8198213217004353, + 2.1114679242247267, + 2.4511928332409125, + 2.7884209931594643, + 3.0450762679648764, + 3.389782592174411, + 3.6230459182629966, + 3.8138814198689035, + 4.1328098717133255, + 4.401475014462006, + 5.245015603074199, + 6.404967105833082, + 6.833034231372829, + 7.273667283638795, + 7.7621427190844114, + 8.189538587505298, + 8.591852490051506, + 8.970868035879624, + 9.314289286189487, + 9.587023270130029, + 9.916883900460432, + 10.155166094429312, + 10.277092476054818, + 10.482204495555136 + ], + "5._384._0.0875": [ + 3.4967555232158865, + 4.049647201291128, + 4.744524916267494, + 6.000480182542833, + 7.639676686579127, + 10.35957782897239, + 13.96492082303953, + 17.24675073247999, + 21.885776859997108, + 24.694749473417197, + 26.66957402395208, + 29.37262015136273, + 31.204252236364013, + 35.181359660208976, + 38.45199539407159, + 39.33581512233671, + 40.12387737494086, + 40.886466008877896, + 41.473533331299315, + 41.97430429421783, + 42.40360488971503, + 42.76152689305151, + 43.028298780610214, + 43.33261069981593, + 43.540454964779066, + 43.64251385860127, + 43.808141429594016 + ], + "5._48._0.075": [ + 1.5268463243731432, + 1.8679037053125407, + 2.1622431316564765, + 2.506080869425861, + 2.8001357852787785, + 3.1434787195901426, + 3.515425930705912, + 3.872412975538312, + 4.508370768162334, + 5.020805948073357, + 5.468691473952537, + 6.246240673870704, + 6.905469488877982, + 8.831318993887047, + 11.027625452467381, + 11.733470842066685, + 12.404828440832276, + 13.094251854498, + 13.652205926013885, + 14.144261989006404, + 14.5778955224822, + 14.946699144791394, + 15.22485024025256, + 15.543589939696258, + 15.762944850932596, + 15.871598848739824, + 16.049318059093594 + ], + "5._96._0.075": [ + 2.209271810327402, + 2.555323564968499, + 2.8519172405254944, + 3.200536561472959, + 3.5272257577693225, + 4.022491718731378, + 4.75293586325004, + 5.580495270012017, + 7.159086341415322, + 8.401102298727293, + 9.421543430222494, + 11.039262095495653, + 12.282113289854907, + 15.403183610228634, + 18.354522755364528, + 19.203823296853855, + 19.97211348601594, + 20.72572795098937, + 21.3101167813542, + 21.810512745552373, + 22.23957271499897, + 22.596635369937843, + 22.86244367118667, + 23.164180064921837, + 23.370251401131274, + 23.471684357145044, + 23.636883745842276 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_10": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 45.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 45.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 45.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 15.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835172917369344, + 3.1876019333150447, + 3.5255547068980273, + 4.046770637384118, + 4.672930331018968, + 5.7232356156162005, + 7.3408212781331255, + 9.15028265634769, + 12.333330392582573, + 14.61128065602307, + 16.361208348050432, + 18.942290850167915, + 20.79768018641119, + 25.045759226268736, + 28.67477612162631, + 29.668045338727676, + 30.550316084950445, + 31.40232658944957, + 32.054459168618095, + 32.609816510084386, + 33.08343007804131, + 33.476294206174124, + 33.76869259584162, + 34.10103277826036, + 34.32809098656457, + 34.43980381324924, + 34.621829440973066 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.195803175961541, + 1.4813847491413077, + 1.819821321700434, + 2.111467924224724, + 2.4511928332409108, + 2.788420993119457, + 3.04507617061357, + 3.3897513267820183, + 3.6227605635496194, + 3.81278768631041, + 4.126948650409693, + 4.385578249666706, + 5.155922369590932, + 6.178785289352434, + 6.564063288577266, + 6.969385053284215, + 7.431097204450355, + 7.846868052082254, + 8.248660184070799, + 8.63679347576128, + 8.996697025146233, + 9.288019713211344, + 9.647055639782364, + 9.911055268214337, + 10.047880357181668, + 10.28092283315512 + ], + "5._384._0.0875": [ + 3.4965597077101034, + 4.044869829941538, + 4.707625692139501, + 5.830677350127793, + 7.281709151393501, + 9.830502529102436, + 13.475856150247997, + 16.9775271966958, + 22.117253817855893, + 25.302815175530682, + 27.564204282704758, + 30.676213817075304, + 32.79277017725048, + 37.38405935368554, + 41.14782281452795, + 42.16268942132367, + 43.065466700669944, + 43.9372778487395, + 44.60652252930166, + 45.17703235103221, + 45.66521383663046, + 46.071567617119065, + 46.37436770353756, + 46.719531327980405, + 46.95534286635756, + 47.07120878144039, + 47.25951910559131 + ], + "5._48._0.075": [ + 1.5268463243731447, + 1.8679037053125414, + 2.1622431316564765, + 2.50608086942586, + 2.800135785247167, + 3.1434782435850877, + 3.51534491334337, + 3.8712574522720664, + 4.4911198700969575, + 4.966647476480025, + 5.3677663657394294, + 6.051368307132278, + 6.633716977765608, + 8.412440055052345, + 10.604449389609673, + 11.34170640572687, + 12.05701858123397, + 12.803339284414232, + 13.415712410176809, + 13.960722018521126, + 14.444740379740516, + 14.858689122623845, + 15.171966136093364, + 15.531568601458943, + 15.779579126365823, + 15.902729989591679, + 16.104724489036084 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235649685018, + 2.851917240374292, + 3.200535475963637, + 3.5271492486724063, + 4.0202045692643615, + 4.723880315973749, + 5.4736576180890015, + 6.864778023064533, + 7.991176438819989, + 8.950931917137599, + 10.536691230720423, + 11.801281155612562, + 15.11462064268205, + 18.374006458855327, + 19.329315591509697, + 20.196406810864357, + 21.049545705999115, + 21.711597005134887, + 22.278776415959705, + 22.764525519406956, + 23.16805635475832, + 23.468173562881976, + 23.808143464800946, + 24.0402681542896, + 24.154627960836667, + 24.34127252399975 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 15.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 15.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351729205545935, + 3.187613472729638, + 3.5261116642188135, + 4.054253597390166, + 4.70242914864568, + 5.8086030113135525, + 7.467549516284039, + 9.173910326217955, + 11.817549620297518, + 13.50063752774223, + 14.708245124966707, + 16.390506424244155, + 17.542754332347926, + 20.076562667192977, + 22.17930066733775, + 22.74990326709019, + 23.259177076033392, + 23.752891128976884, + 24.133769674524423, + 24.458778473467625, + 24.737703371030964, + 24.9704461779962, + 25.14391178539724, + 25.341768285828188, + 25.47687046952432, + 25.543193094793875, + 25.650707779981367 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615426, + 1.4813847491413068, + 1.8198213217004353, + 2.1114679242247276, + 2.451192833240911, + 2.7884209933194914, + 3.0450766572778396, + 3.389902139693359, + 3.623913486030334, + 3.8161259791525683, + 4.137388995029404, + 4.4051267851223574, + 5.214701703132842, + 6.276949476181331, + 6.660407431446878, + 7.049422589341101, + 7.473153414434007, + 7.836070348060081, + 8.170029988786352, + 8.476777753348607, + 8.747261338461222, + 8.956411097426855, + 9.202137045330364, + 9.37395002483599, + 9.459699491909076, + 9.600312664462594 + ], + "5._384._0.0875": [ + 3.4974014612635833, + 4.0543778177746645, + 4.742542311205488, + 5.925653912078285, + 7.411046933317475, + 9.777945928796772, + 12.707582672564504, + 15.18137338890359, + 18.44968333281755, + 20.336262258422025, + 21.634806948968798, + 23.391045748332242, + 24.57126459982887, + 27.13330643048112, + 29.248061666688077, + 29.821100755788592, + 30.333976575384245, + 30.83185682051092, + 31.216858652123662, + 31.545573045197322, + 31.828203059721602, + 32.064458178976366, + 32.24060869933254, + 32.4417938093029, + 32.57913099533268, + 32.646493139072525, + 32.75555033459801 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125467, + 2.1622431316564783, + 2.506080869425859, + 2.8001357854052342, + 3.143480621708681, + 3.5157195599231095, + 3.8747798570388277, + 4.512229192124728, + 5.010413764679055, + 5.4337256554705515, + 6.151298086195742, + 6.7488452499404605, + 8.445309591581669, + 10.268274360411876, + 10.822950270217252, + 11.337592629263623, + 11.85269991856157, + 12.260211639281591, + 12.612677176675874, + 12.918533381258486, + 13.17548225828373, + 13.367423393448528, + 13.586035310552214, + 13.735408064577877, + 13.808908278883589, + 13.928255410057844 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235649685027, + 2.85191724113029, + 3.200540894404338, + 3.5275047266417947, + 4.025970191286226, + 4.753579891339415, + 5.543082335133833, + 6.987551562749769, + 8.092101425207474, + 8.9776988236641, + 10.337085958191386, + 11.342491130110483, + 13.731702648068135, + 15.836916503083607, + 16.420819154043382, + 16.943922157361797, + 17.453033126848272, + 17.846569813436922, + 18.1824859274211, + 18.470631174105463, + 18.71078748729027, + 18.889590015481595, + 19.093028010450833, + 19.231845509633082, + 19.30002062517405, + 19.41061394306638 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "6_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 25.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 25.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 25.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 25.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351729180063914, + 3.1876042411978536, + 3.5256660977976755, + 4.048261592032999, + 4.678125319836612, + 5.721415778712117, + 7.249330598074599, + 8.90569336262978, + 11.838626126063236, + 13.95237043510521, + 15.57086906704297, + 17.938523673196112, + 19.619403407669935, + 23.405501624053088, + 26.582896385707564, + 27.446230277110857, + 28.21233760663668, + 28.95183954607885, + 29.518403915548774, + 30.000871595907906, + 30.412789740441717, + 30.75487787275584, + 31.009531768524425, + 31.299187278894756, + 31.49701792294762, + 31.594279930921935, + 31.752523892845005 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615422, + 1.4813847491413077, + 1.8198213217004353, + 2.1114679242247267, + 2.451192833240914, + 2.788420993159463, + 3.0450762679464227, + 3.389781489357276, + 3.622991142046268, + 3.8134550103506912, + 4.129011588597102, + 4.389249359886956, + 5.159027046365854, + 6.137812167161886, + 6.494062817147581, + 6.865399913062771, + 7.287477540572042, + 7.66883091276258, + 8.03953962732851, + 8.399696181345396, + 8.734926306301789, + 9.00645585029502, + 9.339969584547898, + 9.582670638299223, + 9.70697325702771, + 9.915429006179368 + ], + "5._384._0.0875": [ + 3.4967280223886856, + 4.046757961011552, + 4.713416260570774, + 5.824033632520895, + 7.19103953420198, + 9.524044676843829, + 12.891471997900261, + 16.133018043058385, + 20.817726296703686, + 23.66018278237287, + 25.65205457328972, + 28.367406627105918, + 30.200350893591008, + 34.158880741811366, + 37.39768972355688, + 38.27094665257348, + 39.048759429166076, + 39.80074618740846, + 40.37905619616961, + 40.872223236363, + 41.29475300063063, + 41.646856403988, + 41.90927284432422, + 42.208562580497265, + 42.41299136531426, + 42.513390124745776, + 42.67639054275802 + ], + "5._48._0.075": [ + 1.5268463243731432, + 1.8679037053125407, + 2.1622431316564765, + 2.5060808694258596, + 2.80013578527878, + 3.1434787192097966, + 3.5154198424482956, + 3.8719615514675434, + 4.495081957558438, + 4.972566962177787, + 5.370979137734892, + 6.033695787358429, + 6.58191888985034, + 8.21442084648854, + 10.238890436144318, + 10.925160112467118, + 11.591341524277142, + 12.28453800774727, + 12.850555068698483, + 13.350759233753926, + 13.79167994985431, + 14.16582689331593, + 14.446825723565079, + 14.76715497336621, + 14.986539836134504, + 15.094906880618826, + 15.271675195383539 + ], + "5._96._0.075": [ + 2.2092718103274014, + 2.5553235649685, + 2.851917240525493, + 3.20053655965176, + 3.527220344124282, + 4.0213554761867405, + 4.729070206698629, + 5.476962862449265, + 6.807448554130743, + 7.844577374566916, + 8.721603713581594, + 10.177585447856124, + 11.348076769291694, + 14.426760802958022, + 17.409975398079716, + 18.269283432923284, + 19.04368211188817, + 19.80049782552116, + 20.38500261475183, + 20.88369219210977, + 21.30981629150404, + 21.663324061694986, + 21.925924051707458, + 22.22331718191104, + 22.426123962950754, + 22.52588374312891, + 22.688336751774283 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 25.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 25.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 25.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 25.0, + 20.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 20.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 20.0 + ], + [ + 5.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 20.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352057051561346, + 3.1902942659748033, + 3.551585222631147, + 4.198198232344726, + 5.110889451548836, + 6.825380789230274, + 9.559811542886276, + 12.56999225900893, + 17.66866521508078, + 21.187298552633735, + 23.82424079623938, + 27.61231422033835, + 30.268731352386318, + 36.168154127656315, + 41.05630771155337, + 42.377358219460696, + 43.546891798947776, + 44.67328607667263, + 45.53395645165399, + 46.26659021350367, + 46.89122415784301, + 47.40942786443812, + 47.79526019025108, + 48.234122488787335, + 48.534046123256246, + 48.681608947258205, + 48.92205350429747 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961542, + 1.4813847491413081, + 1.8198213217004324, + 2.1114679242247236, + 2.451192833775585, + 2.7884285340334354, + 3.04554346061454, + 3.401231492690864, + 3.6632459097848007, + 3.8957468091776644, + 4.317319047948468, + 4.694871508361472, + 5.926829159628528, + 7.645993692124584, + 8.2924381894822, + 8.964349632361243, + 9.71773825901911, + 10.38305138793512, + 11.01363371696495, + 11.60885559721035, + 12.146817659850914, + 12.571522266023756, + 13.078020885330597, + 13.437015319660908, + 13.618117667909207, + 13.917955695945158 + ], + "5._384._0.0875": [ + 3.530364982678175, + 4.226017950709882, + 5.210508997959975, + 7.0603481691790675, + 9.515894507913506, + 13.733369370001448, + 19.532526774392103, + 24.88659121085279, + 32.420608409710404, + 36.932098845435064, + 40.07749606171521, + 44.34192771339277, + 47.20986325872741, + 53.37034580489912, + 58.38683796759706, + 59.73660595795957, + 60.93782636764542, + 62.09803816111037, + 62.989215006692916, + 63.74914745779723, + 64.39985069988693, + 64.94185897656304, + 65.34588496610843, + 65.80672262625593, + 66.1216297390914, + 66.27635570162825, + 66.52777049186813 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125416, + 2.1622431316564787, + 2.5060808719674816, + 2.800142513287279, + 3.14459516672878, + 3.535497509822734, + 3.958496062443845, + 4.823378453158691, + 5.568314843197329, + 6.228713488356831, + 7.381494678618319, + 8.368271243383308, + 11.311118914104373, + 14.770891128353297, + 15.892053787906939, + 16.954911971110278, + 18.039734838412073, + 18.908267732913156, + 19.66658470593993, + 20.32620144684655, + 20.879655836854273, + 21.292496250499706, + 21.759474101465088, + 22.07788228121402, + 22.234953316228815, + 22.49153111558221 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.5553235756005312, + 2.851932589738921, + 3.20230071029849, + 3.546790263231941, + 4.144948992283942, + 5.163046630536585, + 6.3778938224632755, + 8.727357946977191, + 10.62089587447383, + 12.209010163884892, + 14.76907715167389, + 16.76162845154597, + 21.777029376341513, + 26.445060937989062, + 27.76643531433447, + 28.949060760786914, + 30.0980240284765, + 30.97952193415738, + 31.729685310689497, + 32.36810874913483, + 32.89607179114505, + 33.28797596333774, + 33.73128589684139, + 34.03366884993373, + 34.182524306759596, + 34.425456579607676 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_5": { + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 20.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 15.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 15.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 15.0 + ], + [ + 5.0, + 10.0 + ], + [ + 15.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352057059208735, + 3.1902971456855767, + 3.55172665572895, + 4.2004692427836465, + 5.122686838031373, + 6.865356908570625, + 9.59500138070258, + 12.466869971098307, + 17.050525989747886, + 20.063714144127186, + 22.26508504436579, + 25.366297280998058, + 27.508030781471852, + 32.21971861689966, + 36.11062252139669, + 37.162749507149165, + 38.0974158102132, + 39.000124122252984, + 39.69288432619882, + 40.28329078675718, + 40.78822831794044, + 41.20828961403463, + 41.52123434915544, + 41.87769168697783, + 42.121238461972595, + 42.240951515149334, + 42.435565543061436 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.195803175961541, + 1.4813847491413077, + 1.819821321700434, + 2.111467924224724, + 2.451192833775585, + 2.788428534083414, + 3.0455435822026957, + 3.4012693589590515, + 3.663547404849954, + 3.8966874997683734, + 4.3208138446612026, + 4.702412121434503, + 5.954690422801691, + 7.685391819093885, + 8.320567652631645, + 8.967262792911551, + 9.676003416631849, + 10.286623259609499, + 10.85310016673261, + 11.376733828464573, + 11.840983624896886, + 12.201707535720173, + 12.62574672797026, + 12.922438314648945, + 13.070802365443386, + 13.314588227878598 + ], + "5._384._0.0875": [ + 3.530559589137752, + 4.228965321547917, + 5.224867170018315, + 7.104152470404771, + 9.552404325118804, + 13.544468455911344, + 18.684275363310814, + 23.18991127613218, + 29.29844996393653, + 32.87464249622515, + 35.34690990286632, + 38.68809480619628, + 40.931215573239804, + 45.76727481108258, + 49.72699201342414, + 50.79574887687262, + 51.74940650867645, + 52.67270075503068, + 53.38417163150092, + 53.991253963400915, + 54.51212334360592, + 54.946740225530036, + 55.27077189756263, + 55.64062153113238, + 55.89325623754567, + 56.01729260505102, + 56.21850389323961 + ], + "5._48._0.075": [ + 1.5268463243731447, + 1.8679037053125414, + 2.162243131656477, + 2.506080871967487, + 2.800142513326794, + 3.144595760562643, + 3.5355921844189226, + 3.9594774056103, + 4.831323631211377, + 5.587963064752039, + 6.260665264711407, + 7.429071155964175, + 8.414918681999927, + 11.239243666548772, + 14.35295517927832, + 15.320143014541106, + 16.223229416239583, + 17.132252021660157, + 17.852307666356875, + 18.47632437195846, + 19.01665323518551, + 19.46902818790645, + 19.80621093467907, + 20.188244519212198, + 20.44881884457216, + 20.577173724731075, + 20.786257287757223 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235756005335, + 2.8519325899279138, + 3.2023020631585193, + 3.546879963553079, + 4.146640536600958, + 5.1749778185582676, + 6.410650240381366, + 8.773962026425135, + 10.6173048088742, + 12.115104602549367, + 14.447730871086904, + 16.20528297473023, + 20.467954315602896, + 24.29117964791527, + 25.357337948584277, + 26.3099742919826, + 27.23471850605952, + 27.945683389514635, + 28.55130085419605, + 29.06830867568418, + 29.49726435975507, + 29.81614080240825, + 30.177819616816475, + 30.42459884521196, + 30.545959182660177, + 30.74348736335694 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 20.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351729189619634, + 3.1876077030221732, + 3.525833184797946, + 4.05050664724008, + 4.687045073311036, + 5.751478709548568, + 7.33818918743933, + 9.054515166332832, + 11.944587805829432, + 13.909255803542953, + 15.36401288124565, + 17.43654512628854, + 18.878835955716685, + 22.080282515155783, + 24.745790094934836, + 25.4689717479424, + 26.112405196008535, + 26.734713575405582, + 27.21307632981915, + 27.620852377552875, + 27.969890772005147, + 28.260440435035353, + 28.47686458764289, + 28.72337732854118, + 28.891728172622923, + 28.97443694335032, + 29.108761321661518 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004342, + 2.111467924224728, + 2.45119283324091, + 2.7884209932194732, + 3.0450764139457034, + 3.389826733227482, + 3.6233370182276405, + 3.81445650224803, + 4.132145048044015, + 4.395132736743389, + 5.178353901187254, + 6.190533273436082, + 6.562683849364356, + 6.949423435102403, + 7.383948802484938, + 7.769013939266884, + 8.13469576596328, + 8.480777037656146, + 8.79431362080049, + 9.04213526483185, + 9.339101450685295, + 9.550293745392025, + 9.656863286574941, + 9.8332512875261 + ], + "5._384._0.0875": [ + 3.4969805287765614, + 4.049610845053574, + 4.724024011799086, + 5.8591742119555486, + 7.280169967419424, + 9.685345656944277, + 12.95120002256416, + 15.900332959106045, + 19.96429971151604, + 22.363080408134557, + 24.02674149887119, + 26.283058672688007, + 27.801524249076753, + 31.086716085587014, + 33.78487263092562, + 34.51405470361341, + 35.16507936605384, + 35.79575560768902, + 36.28210157061513, + 36.69709677173895, + 37.053282624959635, + 37.35056288344656, + 37.57217026766499, + 37.825094946034696, + 37.997807969998355, + 38.08257829579417, + 38.22001485745728 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.506080869425861, + 2.8001357853261997, + 3.1434794326468762, + 3.5155322363303143, + 3.8730182626560827, + 4.50143610678418, + 4.98608138575969, + 5.392709543113633, + 6.075121774006067, + 6.645486494501959, + 8.339243711062696, + 10.332930898839978, + 10.975302538980678, + 11.584296248755559, + 12.20480617111768, + 12.702474977054884, + 13.136788557395816, + 13.515948973092035, + 13.835570209807281, + 14.074716459425884, + 14.346928567476011, + 14.533038905270708, + 14.624766884906823, + 14.774029985947116 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235649685013, + 2.8519172407522904, + 3.200538185183954, + 3.5273269874556794, + 4.023085197880575, + 4.738056115594018, + 5.499876288678041, + 6.87618738397232, + 7.958436089146634, + 8.862791581692829, + 10.320516438063786, + 11.4495744747687, + 14.270853163270374, + 16.867224880737787, + 17.599089437093166, + 18.25579625551043, + 18.895653663764897, + 19.38961431147736, + 19.811016516402006, + 20.171647018866707, + 20.471433105589288, + 20.69437167239769, + 20.947413245266862, + 21.1200251640414, + 21.204864147655087, + 21.34275589995689 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835172918431085, + 3.187605779786423, + 3.5257403586367153, + 4.049259351764441, + 4.682089957267456, + 5.735117618244403, + 7.295174423866334, + 8.993573874861196, + 11.933244240773512, + 13.989389048126723, + 15.536210396389814, + 17.767361464562363, + 19.33473223231206, + 22.83760126197414, + 25.764790408193367, + 26.55950068384141, + 27.265660068298025, + 27.947969841267987, + 28.47159655158252, + 28.91774143219698, + 29.29914470639263, + 29.616270790248485, + 29.85242152509669, + 30.121221700046792, + 30.304803617925515, + 30.3950283316758, + 30.541690130492167 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615422, + 1.4813847491413075, + 1.8198213217004355, + 2.1114679242247285, + 2.4511928332409116, + 2.7884209931861332, + 3.045076332834993, + 3.3898015977432414, + 3.623144864619185, + 3.8139001155044343, + 4.130404188467039, + 4.391864150259974, + 5.167724628268806, + 6.163912682424848, + 6.52961227249586, + 6.911070206257784, + 7.34296810745254, + 7.729886120449684, + 8.101757121404617, + 8.4582446207257, + 8.785383628767244, + 9.046918392192431, + 9.36388705734761, + 9.591698212132938, + 9.707453692284806, + 9.900228082093184 + ], + "5._384._0.0875": [ + 3.4968402429479086, + 4.04802580879566, + 4.718132682274434, + 5.840206443851195, + 7.236898446727306, + 9.624194250212188, + 12.972482537787066, + 16.090628870527517, + 20.485339892407602, + 23.11367822712819, + 24.945604955097004, + 27.436099052768505, + 29.11456438803184, + 32.74250497302852, + 35.71646564439045, + 36.519262442497784, + 37.235176213791576, + 37.928025861432346, + 38.46159839320984, + 38.916757154116716, + 39.30707493356083, + 39.63259311764718, + 39.875224622872096, + 40.152048465199925, + 40.34110766304057, + 40.43392971410683, + 40.584523886688004 + ], + "5._48._0.075": [ + 1.52684632437314, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808694258596, + 2.800135785299855, + 3.143479036292943, + 3.515469795261635, + 3.8724311940242426, + 4.4979057492173595, + 4.978587460669457, + 5.380762564306489, + 6.0532107359984755, + 6.6135053609962595, + 8.287417939363065, + 10.315699224288924, + 10.985663283002975, + 11.627860762768716, + 12.288607991014729, + 12.822899929123482, + 13.291869092700686, + 13.703077584598297, + 14.050743635392436, + 14.311321359787014, + 14.608110233998882, + 14.811194136458079, + 14.911398561919437, + 15.074659665462221 + ], + "5._96._0.075": [ + 2.2092718103274005, + 2.5553235649684996, + 2.85191724062629, + 3.200537282110509, + 3.5272677411455535, + 4.022124219768105, + 4.733064408466063, + 5.487279529707112, + 6.841682648919831, + 7.906751272507348, + 8.804741506198452, + 10.27586740503049, + 11.436680755430393, + 14.408327616466334, + 17.209868499503674, + 18.007621567384877, + 18.724832548680176, + 19.42460859563263, + 19.9648803655607, + 20.42581817912222, + 20.819976134728407, + 21.147301224103902, + 21.39059730762955, + 21.666447413981093, + 21.854597992256167, + 21.94711306217314, + 22.097626579974996 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 20.0 + ], + [ + 5.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 15.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352057054838817, + 3.190295500925566, + 3.5516471640651286, + 4.199371011347221, + 5.118552314404897, + 6.8601115590632205, + 9.630054213977337, + 12.61443130853699, + 17.511443731307537, + 20.80512225224392, + 23.241056991595435, + 26.70501934179484, + 29.115096940003657, + 34.44129969134381, + 38.846864344891934, + 40.037883259573924, + 41.09417545448372, + 42.112971771260604, + 42.8931763846526, + 43.55773561611095, + 44.12523940550822, + 44.5967182921772, + 44.9478720720997, + 45.34757762789605, + 45.62071061005465, + 45.755029434138066, + 45.97363503807855 + ], + "5._24._0.075": [ + 0.8740059532267972, + 1.195803175961542, + 1.4813847491413068, + 1.819821321700434, + 2.1114679242247245, + 2.451192833775584, + 2.7884285340548534, + 3.0455435127256356, + 3.4012478354363007, + 3.6633809000308393, + 3.8961955151417396, + 4.3192301252371665, + 4.699457753533426, + 5.948948474328306, + 7.695942489583611, + 8.346590384595524, + 9.015934665356127, + 9.757344658750181, + 10.403286679759958, + 11.008323893508065, + 11.572885343717068, + 12.077781171521716, + 12.472947149926677, + 12.940514070753137, + 13.26962250670975, + 13.43489092351233, + 13.707476534263929 + ], + "5._384._0.0875": [ + 3.5304513098812405, + 4.22759458951769, + 5.220172107434986, + 7.10045554189853, + 9.587008472438736, + 13.750456383002424, + 19.278832735784544, + 24.246253802812856, + 31.10328828388795, + 35.16221043654611, + 37.97991610284718, + 41.79380555195936, + 44.35646823951607, + 49.871532101612075, + 54.37513693195798, + 55.588867391944554, + 56.67048156974401, + 57.71644509420542, + 58.52118805786706, + 59.2076435861255, + 59.79603804771926, + 60.28658222064646, + 60.652279821214144, + 61.069545275006824, + 61.354623794143784, + 61.49464114048708, + 61.7219624163916 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.867903705312544, + 2.162243131656476, + 2.5060808719674883, + 2.8001425133042157, + 3.1445954212679244, + 3.53553871995983, + 3.958964896305143, + 4.82825533754784, + 5.582288510130633, + 6.254054009052045, + 7.428263637394244, + 8.428946744446785, + 11.354740597941007, + 14.67808389615023, + 15.730768524755593, + 16.720583663238006, + 17.7234575244014, + 18.521757627717264, + 19.216070634771928, + 19.81852765138508, + 20.32342502738764, + 20.69991867435479, + 21.126160893423634, + 21.416879030278988, + 21.560198013916423, + 21.794000312609192 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235756005304, + 2.8519325898199224, + 3.2023012902822314, + 3.546829270777727, + 4.145796196718361, + 5.1708352973883365, + 6.40419914979403, + 8.790945131785577, + 10.687990334539599, + 12.25320929708268, + 14.729694062148138, + 16.623891617215776, + 21.298538854515435, + 25.566022817649547, + 26.764692416099734, + 27.836597623990734, + 28.87754390158141, + 29.677021161521704, + 30.35776424048104, + 30.9380424668208, + 31.418739434678212, + 31.77584573704637, + 32.18036525117254, + 32.456347276027664, + 32.59214008161628, + 32.813452575270645 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_7": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 30.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835172918006392, + 3.187604241197856, + 3.5256660977976737, + 4.048261593858988, + 4.6781314459346115, + 5.72259309334762, + 7.266444346756667, + 8.954094802205015, + 11.927656553684981, + 14.053606376048359, + 15.675222421583676, + 18.041783343370472, + 19.720295323431912, + 23.501196382822407, + 26.677075733212565, + 27.540453469164408, + 28.306877029979088, + 29.046852765371526, + 29.61391031150395, + 30.096854230821158, + 30.509239876779105, + 30.85175890897055, + 31.10674765477418, + 31.39680514575573, + 31.59491699363435, + 31.69231770042557, + 31.85078235989281 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615422, + 1.4813847491413077, + 1.8198213217004353, + 2.1114679242247267, + 2.4511928332409116, + 2.7884209931594626, + 3.045076267946422, + 3.389781489357278, + 3.6229911420462817, + 3.8134550103679934, + 4.129011615930157, + 4.389250538851609, + 5.159423444013664, + 6.145484469019887, + 6.507487553537916, + 6.885820837297019, + 7.316001954826201, + 7.70394360976519, + 8.079843575741524, + 8.443639720622707, + 8.78093806258029, + 9.053243885101567, + 9.386753064990291, + 9.629034521528666, + 9.753066252479712, + 9.961084837903389 + ], + "5._384._0.0875": [ + 3.4967280223748687, + 4.04675796940754, + 4.713430665530705, + 5.825892290759697, + 7.207956628556452, + 9.584507413797965, + 12.991086701668468, + 16.24363385592111, + 20.92521459243282, + 23.76353895130393, + 25.753003031371655, + 28.466086473506003, + 30.298238304498025, + 34.25728880083861, + 37.49824152176349, + 38.37227999577594, + 39.150876036538975, + 39.90368826792753, + 40.482691336405566, + 40.97646413274174, + 41.39953798929255, + 41.75211221792711, + 42.014882253206046, + 42.31458148462812, + 42.51928948437402, + 42.61982407418271, + 42.78303929527378 + ], + "5._48._0.075": [ + 1.5268463243731432, + 1.8679037053125407, + 2.1622431316564765, + 2.50608086942586, + 2.8001357852787785, + 3.1434787192097993, + 3.515419842448296, + 3.871961551486933, + 4.495083198623996, + 4.972630080023321, + 5.371445533974316, + 6.037226376600358, + 6.59152847920386, + 8.253701399709618, + 10.30535282576457, + 10.995887203926815, + 11.664146970720918, + 12.357832943413532, + 12.923219064699323, + 13.42246607796163, + 13.862363225859049, + 14.235643967986029, + 14.516095387883045, + 14.835958718022873, + 15.055135425937998, + 15.163430882596824, + 15.340137902657759 + ], + "5._96._0.075": [ + 2.209271810327402, + 2.5553235649684996, + 2.851917240525494, + 3.2005365596517543, + 3.527220344124284, + 4.02135547655658, + 4.729077098386667, + 5.477451266797833, + 6.817977622437549, + 7.873054756499029, + 8.766983248320026, + 10.246614891167704, + 11.42977892157351, + 14.519697736813761, + 17.49962521450853, + 18.3574246929739, + 19.130629708735338, + 19.886537090346014, + 20.47055809819104, + 20.9690405528997, + 21.39513707456738, + 21.74873728665216, + 22.011469655688035, + 22.309088859429185, + 22.512083702526276, + 22.611944379778897, + 22.77456835688649 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 30.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 25.0 + ], + [ + 5.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 15.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835205705156133, + 3.1902942680192634, + 3.551588501451931, + 4.198652707258221, + 5.116430859721318, + 6.859930813546439, + 9.661182638931674, + 12.727850116712471, + 17.866976674382055, + 21.390316811291648, + 24.02519816383796, + 27.80681362453494, + 30.458613022688105, + 36.35329110118051, + 41.245099064231496, + 42.568198203658305, + 43.740071023361736, + 44.8690786817117, + 45.73203783407005, + 46.46671435379011, + 47.09321652864812, + 47.61305545984105, + 48.000123612930885, + 48.440422997939734, + 48.74133287830654, + 48.88937799553328, + 49.13058754244556 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961542, + 1.4813847491413081, + 1.8198213217004324, + 2.1114679242247236, + 2.4511928337755844, + 2.7884285340334354, + 3.0455434606194713, + 3.4012317817359237, + 3.663259915162309, + 3.8958537297421305, + 4.318247244930179, + 4.697820688919924, + 5.94724176747158, + 7.707870545008717, + 8.369644178740563, + 9.055236363584603, + 9.82048937726613, + 10.492854095569033, + 11.127476932245129, + 11.724325270900232, + 12.26220911528791, + 12.686076263857414, + 13.190992696224008, + 13.54881656916423, + 13.7294022441434, + 14.028668124833048 + ], + "5._384._0.0875": [ + 3.5303719465885264, + 4.22672359472043, + 5.217887802268212, + 7.10180908650874, + 9.61782104894599, + 13.907878146963892, + 19.741324842629556, + 25.095428326891867, + 32.615829514166464, + 37.1200773030382, + 40.262332030534665, + 44.52540153060283, + 47.394110224139645, + 53.561206527184574, + 58.58676548519515, + 59.939408466295156, + 61.14335350034206, + 62.30634471341287, + 63.19978667945735, + 63.961673987133416, + 64.61410361338541, + 65.15758508616152, + 65.56271035011773, + 66.02480938841497, + 66.34057292571389, + 66.49571521953395, + 66.74778988177653 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125416, + 2.1622431316564787, + 2.506080871967482, + 2.800142513287274, + 3.144595166830273, + 3.5354990911720674, + 3.958609056421058, + 4.826562907914332, + 5.579817289453787, + 6.2520785219590955, + 7.432042505007791, + 8.443934064512947, + 11.443915832697487, + 14.928548275399029, + 16.050628545993614, + 17.112569708077306, + 18.195355648965084, + 19.061803291073893, + 19.81846032409375, + 20.47688349020765, + 21.029700095151068, + 21.442393453031308, + 21.909629182861142, + 22.228454674785333, + 22.38579624071585, + 22.642899453609754 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235756005312, + 2.8519325897389223, + 3.202300710783687, + 3.5467916706692226, + 4.145230363382129, + 5.1687250105033415, + 6.402418936688091, + 8.808610101383627, + 10.744577751776639, + 12.359240026082487, + 14.945035254741496, + 16.94697681578781, + 21.963616089778846, + 26.62422724920901, + 27.944119850142343, + 29.12630772492254, + 30.275588552434975, + 31.157948356692003, + 31.909243665296923, + 32.54897299439045, + 33.07826221349888, + 33.471259051799514, + 33.91594093942623, + 34.219312487057266, + 34.368664489170456, + 34.61239766480438 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_8": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 20.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351729176589204, + 3.1876029823526757, + 3.525605338988854, + 4.047445297729504, + 4.674894318785516, + 5.7123930446380555, + 7.244143978547499, + 8.925328339357938, + 11.925291425689178, + 14.106200939762495, + 15.789193537180248, + 18.27137005809961, + 20.048141399371296, + 24.083996542535104, + 27.495521399812347, + 28.424750677882855, + 29.249076698948166, + 30.044517659395453, + 30.65330647228244, + 31.171603435432996, + 31.613707869749668, + 31.98054418374183, + 32.253564431791865, + 32.56394649094808, + 32.77595429126954, + 32.88022399386509, + 33.05000938761273 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615408, + 1.4813847491413077, + 1.8198213217004344, + 2.1114679242247263, + 2.451192833240911, + 2.788420993137641, + 3.0450762148557766, + 3.3897650370424377, + 3.6228653692395913, + 3.8130908362471754, + 4.12787230457757, + 4.387112542609039, + 5.152647106832586, + 6.130891480511401, + 6.490386660419012, + 6.866767266392388, + 7.2960464542121874, + 7.684920990885535, + 8.063870162482337, + 8.433186367632688, + 8.778353084476684, + 9.059260965269258, + 9.406492449308647, + 9.66130974295716, + 9.792749609540875, + 10.014878798308983 + ], + "5._384._0.0875": [ + 3.496636210899751, + 4.0457207685735135, + 4.709586133395613, + 5.814258946270002, + 7.18546620996103, + 9.555988814007048, + 13.007567957093281, + 16.368779127749956, + 21.298774502498325, + 24.328031099155464, + 26.464146124240013, + 29.387860179501125, + 31.36720260568272, + 35.645782106107156, + 39.14534965448638, + 40.08841765136256, + 40.92765182652145, + 41.73838794290794, + 42.36116970699941, + 42.892132539485004, + 43.34669931053163, + 43.72524532613979, + 44.00734154355572, + 44.32897738537647, + 44.54869473810981, + 44.65663087011391, + 44.831975296375404 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125405, + 2.162243131656477, + 2.5060808694258614, + 2.8001357852615367, + 3.1434784597781356, + 3.515378971992167, + 3.8715773066714485, + 4.492774562512369, + 4.967760064119152, + 5.36384033721051, + 6.0243245343913605, + 6.5741854215377975, + 8.229002553879141, + 10.29875635374084, + 11.00515165562464, + 11.694249657302418, + 12.41507129219129, + 13.006841961524982, + 13.532416721176817, + 13.997830279427646, + 14.394352465518548, + 14.693129405793263, + 15.034574415624407, + 15.268984128553415, + 15.384999010966638, + 15.574629481250478 + ], + "5._96._0.075": [ + 2.2092718103274085, + 2.5553235649685, + 2.8519172404430195, + 3.2005359685491452, + 3.527181564760988, + 4.020726530677376, + 4.7258164668996825, + 5.469429597357325, + 6.799251292463835, + 7.847703644082401, + 8.73938734284763, + 10.225899989962551, + 11.426060102879168, + 14.610999694470571, + 17.745543602190715, + 18.657749583957376, + 19.482463250341194, + 20.290693169572307, + 20.91589699026682, + 21.44995857970152, + 21.906454915070164, + 22.285131532604975, + 22.56643978324661, + 22.88487250584161, + 23.10207842738738, + 23.208985088585454, + 23.383258406779195 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 20.0, + 30.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 30.0 + ], + [ + 5.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 15.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835205704901223, + 3.190293309092156, + 3.5515428750224585, + 4.198094303392608, + 5.114804858477586, + 6.860174201971527, + 9.686650891287966, + 12.817568021087787, + 18.149482626090514, + 21.862742663875764, + 24.6666883110011, + 28.725769332941567, + 31.594233187708163, + 38.0124800793326, + 43.36322623125346, + 44.812055952658994, + 46.09400088910928, + 47.32794651771547, + 48.269503213461185, + 49.0707340228428, + 49.75310123616174, + 50.318625242698786, + 50.73960133988834, + 51.218177300137114, + 51.545285627432804, + 51.7062903257929, + 51.96889527089313 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.195803175961542, + 1.4813847491413084, + 1.8198213217004344, + 2.1114679242247245, + 2.4511928337755835, + 2.7884285340167736, + 3.0455434200924576, + 3.4012192955251606, + 3.663165816253511, + 3.8955879168605954, + 4.317484023957986, + 4.6965576025590074, + 5.946126173848869, + 7.717975190152715, + 8.388494944258165, + 9.086661769424369, + 9.870371145252507, + 10.563331178263832, + 11.221309542651852, + 11.844078767516441, + 12.408973326597458, + 12.856816102611054, + 13.393699704794747, + 13.776834807781226, + 13.971237521445058, + 14.295166176863132 + ], + "5._384._0.0875": [ + 3.5303102229938292, + 4.226046772890181, + 5.216149108049983, + 7.103339563240524, + 9.643040145849088, + 14.032244127098243, + 20.11099765946651, + 25.79041302681861, + 33.896683222712824, + 38.809480946182866, + 42.25517466782903, + 46.94363397079161, + 50.10493992933616, + 56.89828502127495, + 62.42569968958153, + 63.911785765572915, + 65.23300759483486, + 66.50797447478283, + 67.48602685792218, + 68.3198239174181, + 69.03317189786652, + 69.62692166150758, + 70.0694765884, + 70.57410476243466, + 70.91898341274371, + 71.0884864535108, + 71.3641035729667 + ], + "5._48._0.075": [ + 1.5268463243731378, + 1.8679037053125447, + 2.162243131656481, + 2.5060808719674865, + 2.800142513274106, + 3.144594968934317, + 3.5354682688002037, + 3.9583323140882047, + 4.825256483760553, + 5.577985399431248, + 6.250808373641369, + 7.435677678868232, + 8.456579397027829, + 11.514523786407374, + 15.127009267965635, + 16.305925582527454, + 17.428113124092746, + 18.578907150047588, + 19.50453948964067, + 20.316250182134596, + 21.024872190427622, + 21.621262085159454, + 22.067231665796697, + 22.57249773764584, + 22.917597910018237, + 23.08812624452017, + 23.36729099191092 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.555323575600529, + 2.8519325896759256, + 3.202300260062606, + 3.5467624261529918, + 4.144790385713432, + 5.16710899919691, + 6.401286582901264, + 8.823401607802378, + 10.789803518072704, + 12.442866157364218, + 15.114793392375041, + 17.203447631224176, + 22.505859220263005, + 27.513114553177278, + 28.943454273262663, + 30.22726041925208, + 31.47731988336829, + 32.43725559512627, + 33.25486985081253, + 33.950590982730695, + 34.525674253621695, + 34.95250379317669, + 35.43501816445792, + 35.764209643508316, + 35.926367887226945, + 36.19135051501174 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_10": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 45.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 45.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 10.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 10.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351729176589204, + 3.1876029903474183, + 3.525618555552454, + 4.049378920565002, + 4.699380935279384, + 5.866806605153201, + 7.707596204386038, + 9.684501118969736, + 12.959972539641893, + 15.207903478655764, + 16.902342371039314, + 19.36842071387794, + 21.12558977844932, + 25.12829903045526, + 28.54287318649851, + 29.477996778294155, + 30.310410179262018, + 31.115582463509433, + 31.733373898552383, + 32.25994599550608, + 32.709827261984586, + 33.08361487741937, + 33.36195233374284, + 33.67860390089054, + 33.89494872332765, + 34.00134671230323, + 34.17451258111652 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615408, + 1.4813847491413077, + 1.8198213217004344, + 2.1114679242247263, + 2.451192833240912, + 2.788420993137642, + 3.0450762148749564, + 3.3897661851360392, + 3.622922522370131, + 3.8135365382954944, + 4.131853195644855, + 4.399954421540593, + 5.243313610752027, + 6.40950153470484, + 6.841958611939892, + 7.288399797534311, + 7.784954801978073, + 8.221020086147806, + 8.633021868928239, + 9.022763139003274, + 9.377505138197284, + 9.660538380973746, + 10.004770689609275, + 10.25519421691062, + 10.384118994874596, + 10.602561053125395 + ], + "5._384._0.0875": [ + 3.4966649382012998, + 4.048747893250999, + 4.742333107289083, + 6.0000107061877275, + 7.651339112510335, + 10.414482406311864, + 14.119427309061457, + 17.53415087082843, + 22.425545581865563, + 25.420481927795265, + 27.53816963206626, + 30.44809421695119, + 32.42583840390067, + 36.725589380320294, + 40.26200459457205, + 41.21735612003459, + 42.068516655717644, + 42.89159469955522, + 43.52457314587195, + 44.06438980054489, + 44.526838939988636, + 44.91215638006248, + 45.19932081856392, + 45.526797855220124, + 45.75048864048247, + 45.86035686748851, + 46.038759986308875 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125405, + 2.162243131656477, + 2.5060808694258614, + 2.800135785261536, + 3.1434784601734354, + 3.5153853154170003, + 3.872049204869314, + 4.506735742513772, + 5.018592843415825, + 5.466855207356262, + 6.247351162812301, + 6.911387387486451, + 8.863507463151777, + 11.113009222776139, + 11.842239560357433, + 12.538977098474943, + 13.257828662453905, + 13.842373773270808, + 14.36007373583501, + 14.818093853499157, + 15.209009810587181, + 15.504719686641822, + 15.84442215960059, + 16.07882316059886, + 16.19518161933302, + 16.38593974793012 + ], + "5._96._0.075": [ + 2.2092718103274085, + 2.5553235649685004, + 2.8519172404430204, + 3.2005359704422585, + 3.5271872048270474, + 4.021915465441306, + 4.750923229576864, + 5.5786059413282665, + 7.165800581777533, + 8.422158856271384, + 9.459262170660791, + 11.112572985380107, + 12.390592899328388, + 15.630322652056712, + 18.736641477174715, + 19.638613454077777, + 20.45691349588189, + 21.261702877874743, + 21.88680911726592, + 22.42281300491889, + 22.88266184268964, + 23.26541872705511, + 23.550430661214563, + 23.873891947483116, + 24.094887070764447, + 24.203738527959715, + 24.381206763854202 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_11": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 50.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 50.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 50.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 10.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 10.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 10.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835172917369345, + 3.18760194156407, + 3.525568370531681, + 4.04877103648699, + 4.69769576838602, + 5.8658447908564835, + 7.717434209776481, + 9.718275341664071, + 13.060546371157432, + 15.374442202099035, + 17.12961325978986, + 19.700606823661907, + 21.544544865173503, + 25.7755770741041, + 29.41183225653176, + 30.410760745551425, + 31.300101509073887, + 32.16038013750023, + 32.82002646810534, + 33.38223789545967, + 33.8622436942247, + 34.26078835495008, + 34.55751936205106, + 34.89494842923561, + 35.12551970775278, + 35.23895522642348, + 35.42371673821543 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.195803175961541, + 1.4813847491413077, + 1.819821321700434, + 2.111467924224724, + 2.451192833240911, + 2.7884209931194546, + 3.0450761706333505, + 3.389752512604718, + 3.6228196926011678, + 3.8132491388709044, + 4.1310560062552595, + 4.39868747881526, + 5.241896148176188, + 6.413275387211524, + 6.849392727621515, + 7.300677979387535, + 7.803986281055883, + 8.24731811720122, + 8.667469437588833, + 9.066272208250895, + 9.430634303693447, + 9.722484076461868, + 10.079161723404981, + 10.34029220323121, + 10.475505190900318, + 10.706239891993773 + ], + "5._384._0.0875": [ + 3.4965894542742135, + 4.04799854064753, + 4.740507439248547, + 5.999618730291386, + 7.6610507476131655, + 10.460430633767627, + 14.24987828770109, + 17.77919320054549, + 22.894502342469647, + 26.059284987175147, + 28.309741310994525, + 31.414731954056787, + 33.53194416044285, + 38.14265762648792, + 41.936940436877656, + 42.961818045444204, + 43.87425106693688, + 44.75601645250454, + 45.433456315201454, + 46.01107186547499, + 46.505566088974845, + 46.91733281754147, + 47.224181170670995, + 47.57400410818487, + 47.812983997306546, + 47.930390796311, + 48.121141787490984 + ], + "5._48._0.075": [ + 1.5268463243731447, + 1.8679037053125414, + 2.1622431316564765, + 2.506080869425861, + 2.8001357852471664, + 3.1434782439928526, + 3.515351469361636, + 3.87174606793782, + 4.505373546077348, + 5.016749712856131, + 5.465326470827821, + 6.248274621656474, + 6.9163120177246595, + 8.89038655766982, + 11.184788727256928, + 11.933904152475412, + 12.6524062728742, + 13.396717521036193, + 14.004544789257194, + 14.544948774348738, + 15.02483361018247, + 15.435833210636368, + 15.747683783381511, + 16.106900456077646, + 16.355493108864398, + 16.479186862445918, + 16.68247583863575 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235649685, + 2.8519172403742936, + 3.2005354779166733, + 3.527155077387271, + 4.021435270350537, + 4.7492466574650205, + 5.577032706823618, + 7.171388177737547, + 8.439706816043635, + 9.490745953798262, + 11.173995278182321, + 12.481793730284808, + 15.823544060301352, + 19.06711466727736, + 20.016984222354065, + 20.881242484434424, + 21.733570770855643, + 22.396857681897966, + 22.966500675061244, + 23.455602487691912, + 23.862877732386814, + 24.16627123184885, + 24.510570481398094, + 24.745915097848037, + 24.86191731813652, + 25.051247902480167 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_12": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 55.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 55.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 55.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 10.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 10.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 10.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 10.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351729171243214, + 3.187601054132012, + 3.5255259063120996, + 4.048256694884497, + 4.696270298489871, + 5.865031075045978, + 7.7257536460680605, + 9.746912682563382, + 13.146405357336528, + 15.517331945397682, + 17.325516103835923, + 19.989293631704026, + 21.91114068481085, + 26.351668453359306, + 30.197120085575673, + 31.25711960877503, + 32.20115744723729, + 33.11453711393264, + 33.81455685665782, + 34.41118027725483, + 34.9202668671387, + 35.342697684485955, + 35.65717479122515, + 36.01463898976846, + 36.258935571276346, + 36.37916738353926, + 36.57514749644587 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961542, + 1.481384749141308, + 1.8198213217004335, + 2.1114679242247227, + 2.451192833240911, + 2.7884209931040687, + 3.045076133198145, + 3.3897409435402133, + 3.6227326828973156, + 3.813005956081982, + 4.130381490262945, + 4.397615605169147, + 5.240697369979265, + 6.416465238224162, + 6.8556810914084645, + 7.311067827483638, + 7.820104659014642, + 8.269615147421211, + 8.696717081073842, + 9.10327477397851, + 9.475905193638114, + 9.775372518875297, + 10.142894543525387, + 10.4134892428957, + 10.554350655169035, + 10.796401047047395 + ], + "5._384._0.0875": [ + 3.496525585804449, + 4.047364523300975, + 4.738963238999856, + 5.999286529809756, + 7.669263375407443, + 10.499446208611992, + 14.361503416088373, + 17.990513583562944, + 23.30515990660234, + 26.62502371353094, + 28.99866481340433, + 32.287227650990936, + 34.53733805234568, + 39.44751547751874, + 43.49209513216288, + 44.584614911654484, + 45.556619366900826, + 46.49540263579172, + 47.21596599048325, + 47.8302310399762, + 48.35575455433802, + 48.79310048411075, + 49.11898117113028, + 49.490397040407885, + 49.74415379347651, + 49.86885040739751, + 50.07155652334508 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125418, + 2.162243131656476, + 2.506080869425862, + 2.8001357852350077, + 3.143478061070816, + 3.5153228304050113, + 3.871489571215379, + 4.504221148991917, + 5.015190938094992, + 5.46403397849071, + 6.249054628163599, + 6.920474080425104, + 8.913168721553468, + 11.245983008213736, + 12.012204058307491, + 12.749545560837298, + 13.516044698847935, + 14.144355156502044, + 14.704915538966729, + 15.204424582733576, + 15.633661636662714, + 15.96033525806803, + 16.337696741631706, + 16.599666316734886, + 16.73034326323736, + 16.94568251673763 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235649685004, + 2.85191724031614, + 3.200535061164258, + 3.52712789263915, + 4.021028962776988, + 4.747828461447667, + 5.5757023639921846, + 7.176110780995019, + 8.454555579364747, + 9.517422085038572, + 11.226203173956176, + 12.559536520581906, + 15.989840267789255, + 19.35534602878828, + 20.348769052917326, + 21.25522525048462, + 22.151654238861763, + 22.850699773446074, + 23.45209194097165, + 23.968976469234217, + 24.399653604478313, + 24.72065603200915, + 25.08497100714779, + 25.33413794242311, + 25.457046736612956, + 25.657871414186317 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_13": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 60.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 60.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 60.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 10.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 10.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 10.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 10.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 10.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835172916914305, + 3.1876002934759677, + 3.525489508430597, + 4.047815846593318, + 4.69504878847922, + 5.864333697071719, + 7.732880935534273, + 9.771501957614763, + 13.220561599021373, + 15.641266447182696, + 17.496073500053292, + 20.242315255814457, + 22.2342920997709, + 26.867059387021403, + 30.909720338108432, + 32.028141199270515, + 33.024724085558724, + 33.98928669477665, + 34.72828171110082, + 35.35816826017557, + 35.89536787328923, + 36.34088338720324, + 36.67251246554157, + 37.04933303793817, + 37.30689759525256, + 37.43370595624031, + 37.64056182501586 + ], + "5._24._0.075": [ + 0.8740059532267972, + 1.195803175961542, + 1.4813847491413068, + 1.819821321700434, + 2.1114679242247245, + 2.451192833240913, + 2.788420993090879, + 3.04507610111083, + 3.3897310271995487, + 3.6226581032245933, + 3.8127975146688273, + 4.1298033547653485, + 4.39669696927479, + 5.239670292881503, + 6.419196912662795, + 6.861069632866126, + 7.319973845918856, + 7.8339311389450685, + 8.288759517045783, + 8.721859381920225, + 9.135128392610397, + 9.514938696475395, + 9.821046691519475, + 10.198081486173209, + 10.477069883954801, + 10.623008550293827, + 10.8754622470328 + ], + "5._384._0.0875": [ + 3.4964708432588196, + 4.046821116513314, + 4.73764007330228, + 5.999001401507786, + 7.67629920292421, + 10.532987264162399, + 14.458112754728523, + 18.174599666896764, + 23.667411922608114, + 27.128955239275, + 29.61678629607734, + 33.07785632825493, + 35.45441743981722, + 40.65275110176261, + 44.94034730011483, + 46.09872930752453, + 47.12871187188901, + 48.12295879785625, + 48.88540543179596, + 49.53525585862141, + 50.09086983509031, + 50.55299177824653, + 50.89730341861964, + 51.28961758390209, + 51.55767876440547, + 51.6894358336446, + 51.90373512336941 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.867903705312544, + 2.162243131656476, + 2.5060808694258583, + 2.800135785224582, + 3.143477904280504, + 3.5152982827376067, + 3.871269719623683, + 4.503233548320705, + 5.013855426880181, + 5.4629268963001465, + 6.2497221980179365, + 6.924037968581767, + 8.932724142814548, + 11.298775166460373, + 12.079864030128823, + 12.833658040575322, + 13.619637730314368, + 14.266065718472499, + 14.844584745625529, + 15.36174080258417, + 15.807548236636638, + 16.147829824772582, + 16.542048128642143, + 16.81661758721264, + 16.953940466743298, + 17.18087160310948 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235649685004, + 2.8519172402662947, + 3.2005347039479077, + 3.5271045914327526, + 4.02068070742273, + 4.746613187180097, + 5.574562693904319, + 7.180154819130176, + 8.46728344665813, + 9.540313501425647, + 11.271124617086672, + 12.62659389585306, + 16.13444929447562, + 19.6087002085521, + 20.6417543202309, + 21.58694879252136, + 22.524253361003694, + 23.256757896701572, + 23.88808941201745, + 24.431347232089262, + 24.884360827209584, + 25.22224071412789, + 25.605802600560484, + 25.86830386071744, + 25.997894628224234, + 26.209877024672302 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83517291964452, + 3.1876101757539033, + 3.525952533029806, + 4.05211363467208, + 4.6938069440163, + 5.78058550436625, + 7.420593520479523, + 9.159622018026033, + 11.965509667083033, + 13.807711943883904, + 15.149082048919817, + 17.037210672860628, + 18.340130310898758, + 21.217473513072264, + 23.60864229366581, + 24.257427338066265, + 24.835595044653477, + 25.39544939590001, + 25.826593778720277, + 26.19431780813388, + 26.50949834289068, + 26.77218691852415, + 26.967918531277338, + 27.19102130267829, + 27.34337585972222, + 27.4181972247516, + 27.539599393683137 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.195803175961542, + 1.4813847491413066, + 1.8198213217004344, + 2.1114679242247285, + 2.4511928332409116, + 2.7884209932623367, + 3.045076518230904, + 3.38985905028238, + 3.6235840764481617, + 3.8151720590575846, + 4.134398178917575, 4.399472215935768, 5.196052968742087, 6.241796315968224, @@ -1253,91 +6223,1123 @@ 9.766125270029438 ], "5._384._0.0875": [ - 3.4971609162458233, - 4.051656615125228, - 4.732248351210825, - 5.893919652077772, - 7.3631917153337465, - 9.787660788126857, - 12.926033000028275, - 15.661017953707479, - 19.346600513663347, - 21.496639445791523, - 22.981860600869524, - 24.99308548712326, - 26.345530187761003, - 29.276388573997952, - 31.689549865259668, - 32.342595899677626, - 32.926373526045, - 33.4925044471273, - 33.92969208257005, - 34.30285565404692, - 34.62342694833785, - 34.89119459294894, - 35.09082250719603, - 35.31874308885447, - 35.47435720985385, - 35.550709681997546, - 35.67440933495609 + 3.4971609162458233, + 4.051656615125228, + 4.732248351210825, + 5.893919652077772, + 7.3631917153337465, + 9.787660788126857, + 12.926033000028275, + 15.661017953707479, + 19.346600513663347, + 21.496639445791523, + 22.981860600869524, + 24.99308548712326, + 26.345530187761003, + 29.276388573997952, + 31.689549865259668, + 32.342595899677626, + 32.926373526045, + 33.4925044471273, + 33.92969208257005, + 34.30285565404692, + 34.62342694833785, + 34.89119459294894, + 35.09082250719603, + 35.31874308885447, + 35.47435720985385, + 35.550709681997546, + 35.67440933495609 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125458, + 2.1622431316564765, + 2.5060808694258614, + 2.8001357853600726, + 3.1434799422447908, + 3.515612517816602, + 3.873773290653522, + 4.506122795199485, + 4.997198890417131, + 5.41272372077986, + 6.11681051077621, + 6.707327803870584, + 8.429089305083417, + 10.36366447234366, + 10.968263993871286, + 11.534670954770592, + 12.10622150797133, + 12.561157983519418, + 12.95626052909181, + 13.300027412729714, + 13.589249498360601, + 13.805461423269591, + 14.051629097627456, + 14.219885773491233, + 14.302747448049644, + 14.437444554948076 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323564968504, + 2.851917240914291, + 3.200539346278396, + 3.5274031613593095, + 4.02432205207084, + 4.744889028751256, + 5.520988392549123, + 6.943133814435939, + 8.053168239942085, + 8.962949116562063, + 10.392868307378329, + 11.473530341995346, + 14.101483788574436, + 16.464069579688307, + 17.12428878395319, + 17.716151871093476, + 18.29245407136119, + 18.737611633137337, + 19.117499424844905, + 19.442986678155897, + 19.71391981844301, + 19.915529683643555, + 20.144650636173814, + 20.300975362123253, + 20.377780106752258, + 20.502493352845047 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835172918961964, + 3.1876077030221746, + 3.5258331849493194, + 4.050510527423462, + 4.6875358104459455, + 5.763054549531828, + 7.394144426998772, + 9.153863581243023, + 12.076108771897163, + 14.044790624626577, + 15.498443845100452, + 17.566854807807655, + 19.00626350925429, + 22.203908259017155, + 24.869656663923113, + 25.59335433266986, + 26.237485729078696, + 26.86062404764487, + 27.339747584657555, + 27.74821904389734, + 28.09790935519036, + 28.38904155777396, + 28.605911231709207, + 28.85295031407458, + 29.02166508893666, + 29.104552225057226, + 29.23915973148136 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004342, + 2.111467924224728, + 2.4511928332409103, + 2.788420993219474, + 3.045076413945704, + 3.3898267332284386, + 3.6233370217379157, + 3.8144567358471533, + 4.132163043503081, + 4.395301996674714, + 5.183886157157078, + 6.221530079956745, + 6.604806774222066, + 7.002081207305576, + 7.44620896660154, + 7.837444575811893, + 8.206926007248612, + 8.554917866962386, + 8.868973604799308, + 9.116574360533686, + 9.412781674942373, + 9.623353597521293, + 9.729629000310686, + 9.905628228999316 + ], + "5._384._0.0875": [ + 3.4969805319915226, + 4.049620081733721, + 4.724847849018053, + 5.874471258350123, + 7.336209379180362, + 9.798097948543466, + 13.090738857806173, + 16.04076772811319, + 20.09679516696246, + 22.49149159865858, + 24.15329213670406, + 26.40837255241915, + 27.92673468797962, + 31.213803225273367, + 33.91507942055283, + 34.64528915089786, + 35.29731069658607, + 35.92901793983281, + 36.416215928480646, + 36.831951205765286, + 37.18879666762015, + 37.486644467998254, + 37.70867687081119, + 37.96209233759232, + 38.13513903409502, + 38.22007141675804, + 38.35776421710837 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.50608086942586, + 2.8001357853262006, + 3.1434794326468762, + 3.515532236363175, + 3.8730185060347346, + 4.5016186698654055, + 4.988001465581483, + 5.39908254739294, + 6.096358101366976, + 6.683501137191759, + 8.421557592648387, + 10.43591946863569, + 11.079753455501395, + 11.68843722508494, + 12.307739877888435, + 12.804009105926998, + 13.237137698921986, + 13.615346100169361, + 13.93431480393316, + 14.173125855122136, + 14.44514376095033, + 14.63122820633119, + 14.722973028779395, + 14.8723097797544 + ], + "5._96._0.075": [ + 2.2092718103274027, + 2.5553235649685018, + 2.8519172407522912, + 3.2005381851839534, + 3.527326987481365, + 4.023086702457184, + 4.738577851516029, + 5.506630901365102, + 6.917796325536122, + 8.031533120591579, + 8.956672664295077, + 10.435417905360405, + 11.572155871183657, + 14.394417604782115, + 16.985543010715418, + 17.71613737544944, + 18.372130170565537, + 19.011625575620993, + 19.505563106313698, + 19.92712729063385, + 20.288041928414057, + 20.58817197638323, + 20.81141895800279, + 21.064877851195654, + 21.23780314460188, + 21.32280258510182, + 21.460957618508484 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_7": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351729184310863, + 3.187605779786425, + 3.5257403588072855, + 4.0492637898046455, + 4.682663916059215, + 5.7497347921176205, + 7.375905721537113, + 9.15173845372725, + 12.161840019293384, + 14.231880555008651, + 15.779441375472862, + 18.004431807756962, + 19.566345146273502, + 23.06061861879693, + 25.987221252867094, + 26.782708667341943, + 27.49007651655167, + 28.173884598211384, + 28.698921712504987, + 29.146371524870975, + 29.52901089214577, + 29.847249175927015, + 30.084253549884693, + 30.354065501404136, + 30.538348968932766, + 30.628918114242666, + 30.776127014364754 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615422, + 1.4813847491413075, + 1.8198213217004355, + 2.1114679242247285, + 2.4511928332409108, + 2.788420993186134, + 3.045076332834991, + 3.389801597744311, + 3.6231448685725804, + 3.8139003801007396, + 4.130424773525185, + 4.392059883687705, + 5.17454473621128, + 6.207065787581612, + 6.5908237981659585, + 6.990629869845069, + 7.440596986040388, + 7.84016815625442, + 8.220653512254856, + 8.582196132188283, + 8.91145343900644, + 9.17322463804432, + 9.489163200044548, + 9.715839290633093, + 9.831004955998706, + 10.022946843816802 + ], + "5._384._0.0875": [ + 3.4968402459763515, + 4.048036407775718, + 4.719101919680178, + 5.85980791253314, + 7.317574829778804, + 9.808048514589679, + 13.218897014227998, + 16.346018060112396, + 20.72812734011748, + 23.348151881021572, + 25.175919596364324, + 27.663217456671568, + 29.34103708177526, + 32.97201595504033, + 35.95183263998288, + 36.75660669407012, + 37.474452630169495, + 38.169309586601166, + 38.704547072702276, + 39.161154055243294, + 39.55276471010081, + 39.87939650732782, + 40.12286245900509, + 40.4006501940374, + 40.59036524262374, + 40.68350602260782, + 40.83460429057368 + ], + "5._48._0.075": [ + 1.52684632437314, + 1.8679037053125456, + 2.1622431316564765, + 2.506080869425859, + 2.8001357852998567, + 3.1434790362929435, + 3.5154697952987837, + 3.8724314709528036, + 4.4981175648179486, + 4.980875531266282, + 5.388620834554591, + 6.081250402229724, + 6.666605925280091, + 8.417741276950908, + 10.492093811356062, + 11.166976341501423, + 11.810194915424471, + 12.469656120671925, + 13.00164301393173, + 13.468371011513677, + 13.877605679622594, + 14.22380985595394, + 14.483571094842059, + 14.779795823835961, + 14.982717349718277, + 15.08290424667884, + 15.246238680458847 + ], + "5._96._0.075": [ + 2.2092718103274005, + 2.5553235649685013, + 2.8519172406262894, + 3.2005372821105076, + 3.5272677411744464, + 4.022125937124743, + 4.7336751625562, + 5.495613849846325, + 6.8998308415910214, + 8.017338941791289, + 8.95393486264382, + 10.468951438153287, + 11.648714196825944, + 14.629601349116921, + 17.421952725019192, + 18.21698164372945, + 18.93243995827619, + 19.63113703362167, + 20.17108004145561, + 20.632127353059186, + 21.026683395251307, + 21.35456758904455, + 21.598395527669066, + 21.874993663202247, + 22.063717231376177, + 22.15652858727655, + 22.30753151860715 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_8": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835172918006393, + 3.1876042411978553, + 3.5256660979836165, + 4.048266477188433, + 4.678768851669018, + 5.739117069458447, + 7.361793238007429, + 9.150940499466731, + 12.230382253809593, + 14.38286833121705, + 16.0092513280118, + 18.369926587423958, + 20.041193341585334, + 23.80873769572107, + 26.982656986749706, + 27.846935901877355, + 28.614984260472816, + 29.35705396868417, + 29.92612958351552, + 30.410960911977313, + 30.825149947235815, + 31.169300648129674, + 31.42554531788392, + 31.717094969141165, + 31.916243718251007, + 32.01415422062864, + 32.17342909263989 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615422, + 1.4813847491413077, + 1.8198213217004353, + 2.1114679242247267, + 2.4511928332409125, + 2.7884209931594612, + 3.045076267946422, + 3.389781489358436, + 3.6229911463541593, + 3.8134552997522118, + 4.129034257586797, + 4.389466815672509, + 5.167087215031027, + 6.195713737158889, + 6.580044036365015, + 6.982014375391867, + 7.436656813429096, + 7.842739592562435, + 8.231817492736575, + 8.604063085026402, + 8.945562107988184, + 9.219002607207443, + 9.551661808202514, + 9.79246620993239, + 9.915647788313224, + 10.122386961242835 + ], + "5._384._0.0875": [ + 3.496728025268031, + 4.046769653441883, + 4.714508934705566, + 5.848132621465119, + 7.303147688027152, + 9.816819680889695, + 13.321510888008158, + 16.59553916640079, + 21.263679052197755, + 24.089982207536448, + 26.072907439466864, + 28.78047279289825, + 30.611178778252057, + 34.57402806773173, + 37.82343636455381, + 38.70039035136525, + 39.48185291465819, + 40.23765385248561, + 40.819142953381615, + 41.315080416804655, + 41.74008899572019, + 42.09433082732998, + 42.35835090035965, + 42.65949421245082, + 42.86518542073209, + 42.966198089955505, + 43.13016963976938 ], "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125458, + 1.5268463243731432, + 1.8679037053125407, 2.1622431316564765, - 2.5060808694258614, - 2.8001357853600726, - 3.1434799422447908, - 3.515612517816602, - 3.873773290653522, - 4.506122795199485, - 4.997198890417131, - 5.41272372077986, - 6.11681051077621, - 6.707327803870584, - 8.429089305083417, - 10.36366447234366, - 10.968263993871286, - 11.534670954770592, - 12.10622150797133, - 12.561157983519418, - 12.95626052909181, - 13.300027412729714, - 13.589249498360601, - 13.805461423269591, - 14.051629097627456, - 14.219885773491233, - 14.302747448049644, - 14.437444554948076 + 2.5060808694258596, + 2.8001357852787785, + 3.1434787192097993, + 3.5154198424888783, + 3.8719618552433253, + 4.495317764902503, + 4.975180588849802, + 5.38026965451384, + 6.069269598253574, + 6.653391527203778, + 8.415443821732918, + 10.537012645241475, + 11.23683832361941, + 11.908495413314549, + 12.601769239871638, + 13.1645430357506, + 13.66081458648382, + 14.09784544243856, + 14.468860735683993, + 14.74796927056448, + 15.06681880681194, + 15.285643499697485, + 15.393862887105179, + 15.570610715981447 ], "5._96._0.075": [ - 2.209271810327403, - 2.555323564968504, - 2.851917240914291, - 3.200539346278396, - 3.5274031613593095, - 4.02432205207084, - 4.744889028751256, - 5.520988392549123, - 6.943133814435939, - 8.053168239942085, - 8.962949116562063, - 10.392868307378329, - 11.473530341995346, - 14.101483788574436, - 16.464069579688307, - 17.12428878395319, - 17.716151871093476, - 18.29245407136119, - 18.737611633137337, - 19.117499424844905, - 19.442986678155897, - 19.71391981844301, - 19.915529683643555, - 20.144650636173814, - 20.300975362123253, - 20.377780106752258, - 20.502493352845047 + 2.2092718103274014, + 2.5553235649685, + 2.851917240525495, + 3.200536559651756, + 3.5272203441557424, + 4.021357363932796, + 4.729755541449148, + 5.486820160821196, + 6.885755294310318, + 8.006727643784446, + 8.952539982614386, + 10.496001174224421, + 11.709828252365519, + 14.821522903041293, + 17.790354084932996, + 18.644078925465404, + 19.41441599377918, + 20.168378204507142, + 20.751622059252178, + 21.250048561457113, + 21.676568118118222, + 22.030878664363115, + 22.294328399718342, + 22.59299240108333, + 22.79680142573057, + 22.897086582988912, + 23.06041564974294 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_9": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 40.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 40.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 40.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83517291765892, + 3.187602982352677, + 3.5256053391873565, + 4.04745054536083, + 4.675583597915248, + 5.730447794451338, + 7.350337665291939, + 9.150554688408526, + 12.286509205798117, + 14.507176440378153, + 16.200216428638292, + 18.678666263685415, + 20.447321067388216, + 24.46569286067437, + 27.87364225503123, + 28.803818321918136, + 29.630130100937535, + 30.428221758462886, + 31.039619079717376, + 31.560379506478533, + 32.00485512931413, + 32.37384673665776, + 32.64852994454906, + 32.96089142723196, + 33.17427716711755, + 33.27922515105846, + 33.45008904225406 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615408, + 1.4813847491413077, + 1.8198213217004344, + 2.1114679242247263, + 2.451192833240911, + 2.7884209931376414, + 3.0450762148557757, + 3.38976503704367, + 3.6228653738375076, + 3.8130911459124053, + 4.127896628869495, + 4.387345625558778, + 5.160994121177612, + 6.1864693859244895, + 6.571312357494993, + 6.975105582922639, + 7.433601237790833, + 7.844974687605468, + 8.241003205776835, + 8.621932326860938, + 8.973466523626684, + 9.256615734842338, + 9.603491961349873, + 9.856663347593996, + 9.987042294485457, + 10.207466551700795 + ], + "5._384._0.0875": [ + 3.4966362136821494, + 4.045733340264032, + 4.710753511690287, + 5.838603113043211, + 7.291436569993537, + 9.824260223571406, + 13.405615844110969, + 16.802811266857148, + 21.721876378174834, + 24.736278964834206, + 26.863638943798247, + 29.779412724801215, + 31.756368423736298, + 36.03926021426468, + 39.54983750387637, + 40.49677051757302, + 41.33982464612402, + 42.15455528147514, + 42.78066742763326, + 43.314532501288646, + 43.77169548866444, + 44.1524802806459, + 44.43625513571722, + 44.75983010798709, + 44.980868437374475, + 45.089447206632535, + 45.26580858010412 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125405, + 2.162243131656477, + 2.5060808694258605, + 2.8001357852615354, + 3.143478459778138, + 3.515378972035553, + 3.871577632377447, + 4.493027735637699, + 4.97052478116828, + 5.373446208188501, + 6.059495891903427, + 6.6426448570915735, + 8.413783404942896, + 10.57378376575409, + 11.29402254217491, + 11.989364879041675, + 12.711263496016072, + 13.300610964664298, + 13.822822179419028, + 14.284682079688448, + 14.678222302301359, + 14.975141628068924, + 15.315095338546186, + 15.548936295904666, + 15.664803661652305, + 15.854426274154452 + ], + "5._96._0.075": [ + 2.209271810327408, + 2.5553235649685, + 2.8519172404430213, + 3.2005359685491497, + 3.5271815647945406, + 4.020728557154013, + 4.726550247529513, + 5.479636435020345, + 6.874298467262564, + 7.998222214282798, + 8.951635675476409, + 10.518202570482739, + 11.759745208235087, + 14.98067666272447, + 18.104205306414826, + 19.011220642657722, + 19.832021330180762, + 20.637415092730787, + 21.26133206276325, + 21.795111770169413, + 22.252004723197587, + 22.631506140623678, + 22.913697632919366, + 23.23345743261951, + 23.45171318755091, + 23.559171019427765, + 23.734364222442366 ] }, "logtime": [ diff --git a/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json index 7fe6ac7648..0443fd130e 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json @@ -677,7 +677,7 @@ ] } }, - "3_3": { + "3_7": { "1": { "bore_locations": [ [ @@ -707,153 +707,185 @@ [ 10.0, 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 10.0, + 30.0 ] ], "g": { "5._192._0.08": [ - 2.8351635568339257, - 3.18685987649175, - 3.5194341168753853, - 4.021964695453296, - 4.625373168858598, - 5.631213203703021, - 7.017734131113873, - 8.301128331626503, - 10.117778789699045, - 11.210610651605968, - 11.976583504775217, - 13.028692005585269, - 13.742865870882106, - 15.311494952074163, - 16.618169400815415, - 16.97370980694966, - 17.292351934429536, - 17.602231685890924, - 17.842328567513636, - 18.047436530328493, - 18.223984896573956, - 18.37169673522136, - 18.48184538753949, - 18.60766758338057, - 18.693552413788066, - 18.735670645551725, - 18.803797793376237 + 2.835168547412995, + 3.1872494898604957, + 3.522410946467774, + 4.032684670090972, + 4.654023445970472, + 5.750715925406672, + 7.441794543779469, + 9.209065650562295, + 12.028211908191846, + 13.887871931821303, + 15.253208244697303, + 17.192063513139097, + 18.542033858374815, + 21.550993372874228, + 24.071119764312858, + 24.7568454640089, + 25.3681009382456, + 25.96007756211007, + 26.415806384359716, + 26.804500877436972, + 27.137519762034753, + 27.414955087466684, + 27.621655802131386, + 27.857185290816126, + 28.018036820617635, + 28.09704802500887, + 28.225304676666546 ], "5._24._0.075": [ 0.8740059532267965, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004349, - 2.1114679242247276, - 2.4511928330881463, - 2.7884188390440285, - 3.0449438060593743, - 3.3868270121676423, - 3.6139397405790454, - 3.7971850654668238, - 4.098986094465467, - 4.3483461306850195, - 5.091563856634515, - 6.003348584673112, - 6.30869169255662, - 6.606373821842283, - 6.918310269197569, - 7.176309365099972, - 7.407231942536657, - 7.614477838086076, - 7.793880568509998, - 7.930774556315486, - 8.090147260210866, - 8.200733499237531, - 8.255609007591945, - 8.345178145421313 + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004355, + 2.111467924224727, + 2.451192833169619, + 2.788419987777567, + 3.045014140927697, + 3.3883070230574344, + 3.6180717439013645, + 3.804063683447519, + 4.11140211546309, + 4.367751956161955, + 5.163554966124934, + 6.242767904109348, + 6.636768087182504, + 7.039017356441888, + 7.480903481108109, + 7.863533793910553, + 8.220093365652007, + 8.55225931305743, + 8.849672308609028, + 9.083140676566902, + 9.361880434062318, + 9.560131691390612, + 9.660293492069464, + 9.826512606569564 ], "5._384._0.0875": [ - 3.4888288086422636, - 4.016644434684756, - 4.656097350048851, - 5.724643914605977, - 6.959907389349164, - 8.718829385823275, - 10.692998326451791, - 12.268677784338763, - 14.289104442978177, - 15.439317116143096, - 16.228160365480026, - 17.295731529216958, - 18.01381604634192, - 19.582369160770195, - 20.886702784603084, - 21.241361732916218, - 21.559695690469532, - 21.869461495310855, - 22.109738789160463, - 22.315010727642687, - 22.4918421881964, - 22.639906318278147, - 22.75031584383327, - 22.876508470046037, - 22.962608610867996, - 23.004802522166397, - 23.072995900320393 + 3.492521703980014, + 4.028952948525272, + 4.690360254763027, + 5.868855167821229, + 7.384184533385384, + 9.841524860263968, + 12.99462018636414, + 15.768848563789204, + 19.566011203576267, + 21.810059371382483, + 23.37007702002737, + 25.49127964773133, + 26.921820435757866, + 30.02683239339849, + 32.58488775849014, + 33.27714723415718, + 33.89566474901201, + 34.49523522545308, + 34.9579494645981, + 35.35284424283011, + 35.691929164403774, + 35.9750417098565, + 36.186091912798595, + 36.42699698419073, + 36.591483568970325, + 36.67220137615987, + 36.80301735521155 ], "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125447, - 2.162243131656477, - 2.506080868699679, - 2.800133863322582, - 3.14316472586218, - 3.5104718549266547, - 3.854845417542254, - 4.451018321828257, - 4.9116776892091, - 5.297016704953429, - 5.92640690466214, - 6.423636872828878, - 7.719212181270855, - 8.980633064022445, - 9.346857075629213, - 9.682185873929484, - 10.01431289649661, - 10.275472721434395, - 10.500494849414341, - 10.695612308471505, - 10.859690701170848, - 10.982362439165628, - 11.122558142675226, - 11.218429945956188, - 11.265557218538145, - 11.341930946657234 + 1.526846324373142, + 1.8679037053125451, + 2.1622431316564765, + 2.50608086908698, + 2.8001348882647212, + 3.1433306670760293, + 3.512875564734423, + 3.8620768415013647, + 4.471986784846617, + 4.956955922636253, + 5.378117879718729, + 6.103932829009752, + 6.7143079519054565, + 8.46763682791091, + 10.41162110587674, + 11.021389478586116, + 11.59507234209772, + 12.177449672030301, + 12.643748388181887, + 13.051217446168089, + 13.40757798827984, + 13.708768285958596, + 13.93477373629367, + 14.192893401603552, + 14.36981357317643, + 14.457119684843972, + 14.599319600545355 ], "5._96._0.075": [ - 2.2092619209324726, - 2.5553055502990443, - 2.8518822508487456, - 3.199985852874824, - 3.5222728206245484, - 3.9984334914448545, - 4.675890638522396, - 5.39760263087033, - 6.630658201542146, - 7.489891206956369, - 8.137933780063445, - 9.080671485080162, - 9.748385559930018, - 11.273174243711193, - 12.580380605681452, - 12.94004337232528, - 13.262876866410474, - 13.577523541572688, - 13.821599056356835, - 14.03034643518104, - 14.210092929480233, - 14.360493279700068, - 14.472700352633987, - 14.600821880462636, - 14.688349595590935, - 14.731324538344243, - 14.800941414503159 + 2.2092718103274023, + 2.555323563550898, + 2.8519151942207315, + 3.200303179752876, + 3.5247365251559386, + 4.0079874978489425, + 4.705451448765458, + 5.484941704219999, + 6.951699784385171, + 8.088410450547496, + 9.0101852007518, + 10.44827084159664, + 11.534294234850115, + 14.195133739335644, + 16.62997741968012, + 17.317641527636738, + 17.936737909514484, + 18.541441605971116, + 19.009514738877346, + 19.40958686361222, + 19.75267224583673, + 20.03840034048691, + 20.25110680017244, + 20.49285009536575, + 20.6578575935991, + 20.73897025242924, + 20.87076658806696 ] }, "logtime": [ @@ -887,7 +919,7 @@ ] } }, - "4_4": { + "3_8": { "1": { "bore_locations": [ [ @@ -902,16 +934,12 @@ 10.0, 0.0 ], - [ - 15.0, - 0.0 - ], [ 0.0, 5.0 ], [ - 15.0, + 10.0, 5.0 ], [ @@ -919,7 +947,7 @@ 10.0 ], [ - 15.0, + 10.0, 10.0 ], [ @@ -927,155 +955,187 @@ 15.0 ], [ - 15.0, + 10.0, 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 10.0, + 35.0 ] ], "g": { "5._192._0.08": [ - 2.8351663640324887, - 3.1870790258551014, - 3.5210961279932578, - 4.026258003624487, - 4.620874215132077, - 5.586704760859376, - 6.975975240133478, - 8.385515378636665, - 10.572004132104373, - 11.970612978165319, - 12.977584396047362, - 14.385269064815402, - 15.352257347698204, - 17.488292201888967, - 19.26916115727457, - 19.75338533767014, - 20.18611186851185, - 20.606034675672227, - 20.930371875826708, - 21.20720898473744, - 21.444958809834272, - 21.643459009031766, - 21.791407096906152, - 21.960191851340355, - 22.075419755393312, - 22.131968272416074, - 22.22358119190958 + 2.8351690611500695, + 3.1872895973536273, + 3.522717430862419, + 4.03378970907044, + 4.656977641220336, + 5.7629269653417055, + 7.485831544508645, + 9.308172055960728, + 12.260671350847355, + 14.239050872911623, + 15.706060504399423, + 17.807684388812714, + 19.282578702538235, + 22.592754166682457, + 25.379604519843245, + 26.1391485269006, + 26.81577318101457, + 27.470706507624065, + 27.97431028615888, + 28.40372603707861, + 28.771283870557852, + 29.077218063157073, + 29.30510823857548, + 29.564642749974233, + 29.741908563663536, + 29.829014631016243, + 29.970526299709224 ], "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961543, - 1.4813847491413061, - 1.8198213217004344, - 2.1114679242247276, - 2.4511928331339754, - 2.788419485206642, - 3.044983369398642, - 3.387658420844403, - 3.61621087467806, - 3.800647721718858, - 4.102447078162199, - 4.3482454201841785, - 5.063761085434357, - 5.961844910337476, - 6.281053980373686, - 6.603822067448765, - 6.95537175531292, - 7.256945499031273, - 7.535358466093733, - 7.792070377777192, - 8.019450760285471, - 8.19605530658293, - 8.404727988051604, - 8.551378686479197, - 8.624779509112326, - 8.745473319995293 + 0.8740059532267965, + 1.1958031759615428, + 1.481384749141308, + 1.8198213217004362, + 2.1114679242247285, + 2.451192833178006, + 2.788420106029547, + 3.045021381284434, + 3.38845938280911, + 3.6184971890096134, + 3.804772148056533, + 4.112681729643056, + 4.369750429462295, + 5.170906851267666, + 6.267291582499868, + 6.670676414826562, + 7.084470317408594, + 7.541474296262455, + 7.939551124840915, + 8.312674094813019, + 8.662450476127592, + 8.97768707060287, + 9.226718464588842, + 9.526105482424901, + 9.7407291797187, + 9.849834180975432, + 10.032058130519584 ], "5._384._0.0875": [ - 3.490878423401478, - 4.020865767973589, - 4.648176032065668, - 5.674399499861875, - 6.916132435192409, - 8.869255322450169, - 11.291850797714199, - 13.34706889292032, - 16.074575342864755, - 17.653878358549843, - 18.74281157645554, - 20.218463293681307, - 21.211546808244698, - 23.372625740632863, - 25.160615694186212, - 25.645589407971297, - 26.07990639815786, - 26.50174629776772, - 26.828160051242154, - 27.10687395162787, - 27.34659864893684, - 27.547046683084734, - 27.69649241841502, - 27.867186693474277, - 27.983687149119135, - 28.040815557314513, - 28.133264868112562 + 3.4929022917496706, + 4.03022261665977, + 4.6938926401601195, + 5.8835966176042795, + 7.428220407940365, + 9.966889426867072, + 13.283562085329121, + 16.254684294803873, + 20.388075264049768, + 22.859787959634286, + 24.587222429292108, + 26.943211467737253, + 28.535467813670657, + 31.991792129034692, + 34.836656803985285, + 35.60599810079289, + 36.29273355028421, + 36.95789481714895, + 37.470646019133554, + 37.90814026057783, + 38.28352368142686, + 38.59673513532809, + 38.83020251590502, + 39.09661357773846, + 39.27853938526354, + 39.367840300733874, + 39.51265492697088 ], "5._48._0.075": [ - 1.5268463243731425, - 1.8679037053125433, - 2.1622431316564765, - 2.5060808689175333, - 2.8001344398525356, - 3.143258067360416, - 3.511817936616393, - 3.8584823063559384, - 4.450820115805174, - 4.896372927658499, - 5.265314109663766, - 5.875866438354276, - 6.375812833672173, - 7.781652584834328, - 9.298539449880645, - 9.762692744890986, - 10.195323728092962, - 10.629929896539666, - 10.975093504823272, - 11.274487256102537, - 11.535122656382152, - 11.754735236467663, - 11.919110587980263, - 12.106800684140174, - 12.235228520520732, - 12.298450749380303, - 12.401097139217644 + 1.5268463243731418, + 1.8679037053125453, + 2.1622431316564774, + 2.506080869126846, + 2.8001349937734705, + 3.1433477492852946, + 3.5131230298852603, + 3.8628217779493426, + 4.47414980511332, + 4.961598964807018, + 5.3863741088792265, + 6.121943923067568, + 6.74399418391771, + 8.54879561861235, + 10.583052045310557, + 11.229648805175845, + 11.84160942223588, + 12.466632620318647, + 12.969823713466472, + 13.411592072060714, + 13.799415695857661, + 14.128198104822753, + 14.375498282775048, + 14.658371880370419, + 14.852606468317697, + 14.948616330875947, + 15.105279153629233 ], "5._96._0.075": [ - 2.2092718103274023, - 2.555323562842096, - 2.85191417152195, - 3.2001897381139504, - 3.523698775742411, - 4.002837144576757, - 4.67171432905596, - 5.3653840526168555, - 6.583808098627554, - 7.498820819534223, - 8.230410547630026, - 9.35496261489984, - 10.189524424276817, - 12.186066303279896, - 13.960309446498885, - 14.454460899435773, - 14.898355927882445, - 15.331231711411391, - 15.666581859040832, - 15.953119427418569, - 16.199278410806752, - 16.40470718918719, - 16.557725016433995, - 16.731959681699756, - 16.850860777538816, - 16.9092413045836, - 17.00388218199376 + 2.2092718103274027, + 2.5553235637176757, + 2.851915434855737, + 3.2003298715118706, + 3.5249794672432038, + 4.008947564668668, + 4.7084308536195625, + 5.493701484280023, + 6.9841459805526025, + 8.150527318966649, + 9.103627305689471, + 10.603713275857153, + 11.747368862845699, + 14.586604774327428, + 17.22898666277745, + 17.98206316244691, + 18.66168052476697, + 19.326808225196906, + 19.84206762432334, + 20.282820991871464, + 20.660753797822963, + 20.97538232815122, + 21.20959337594951, + 21.47561997037711, + 21.65724078021099, + 21.74657077682527, + 21.891865550916876 ] }, "logtime": [ @@ -1109,7 +1169,7 @@ ] } }, - "4_5": { + "3_9": { "1": { "bore_locations": [ [ @@ -1124,16 +1184,12 @@ 10.0, 0.0 ], - [ - 15.0, - 0.0 - ], [ 0.0, 5.0 ], [ - 15.0, + 10.0, 5.0 ], [ @@ -1141,7 +1197,7 @@ 10.0 ], [ - 15.0, + 10.0, 10.0 ], [ @@ -1149,7 +1205,7 @@ 15.0 ], [ - 15.0, + 10.0, 15.0 ], [ @@ -1157,142 +1213,2756 @@ 20.0 ], [ - 15.0, + 10.0, 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 10.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 10.0, + 40.0 ] ], "g": { "5._192._0.08": [ - 2.835167455722321, - 3.187164253368536, - 3.5217463021757833, - 4.028427836363309, - 4.624684630082045, - 5.596396180422826, - 7.021654999732946, - 8.516485795859836, - 10.922679147334124, - 12.504736239346794, - 13.658836270238554, - 15.286897355848462, - 16.412526210829927, - 18.90716185189082, - 20.988260218620216, - 21.553888068081033, - 22.058549347226762, - 22.547678348313518, - 22.924785442127003, - 23.246506041112095, - 23.522444349706053, - 23.752556634864902, - 23.924021079341824, - 24.1195019132571, - 24.252969516975394, - 24.318496397162527, - 24.424754094441145 + 2.8351694667321095, + 3.187321261194926, + 3.522959398296323, + 4.0346622999682396, + 4.6593112724796715, + 5.772584143072288, + 7.52079865725593, + 9.387324295594253, + 12.448783714711505, + 14.526767866998277, + 16.080964723897576, + 18.325538308333638, + 19.912766920367304, + 23.50113114766947, + 26.540874593926414, + 27.371143414638457, + 28.110497790192902, + 28.82590425500508, + 29.375455056704215, + 29.84395561110788, + 30.244621563917793, + 30.577835930595995, + 30.826003657034835, + 31.108488185189163, + 31.30145225762393, + 31.396306763787294, + 31.550529145700658 ], "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615426, - 1.4813847491413068, - 1.8198213217004353, + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141308, + 1.8198213217004335, 2.1114679242247276, - 2.4511928331518, - 2.7884197364921053, - 3.044998755151511, - 3.3879820910415375, - 3.617110145509905, - 3.802113944017799, - 4.104789809067644, - 4.35122359689819, - 5.069884325161107, - 5.985111909717598, - 6.3172037017256075, - 6.657572709404107, - 7.033770157964548, - 7.361258663222535, - 7.6675128839922255, - 7.953255729334022, - 8.209016631065653, - 8.409350881388876, - 8.647796141532217, - 8.816459337544055, - 8.901251809332873, - 9.041206675006105 + 2.451192833184627, + 2.7884201993863793, + 3.0450270973558933, + 3.3885796675737705, + 3.6188330788331755, + 3.805331511541035, + 4.113692184539553, + 4.3713287297346435, + 5.176717810724106, + 6.28672496344539, + 6.697577569661208, + 7.120578401024117, + 7.589693201563713, + 8.000218838426207, + 8.386793943521104, + 8.751023469163487, + 9.081085009838214, + 9.34325569878249, + 9.66042448898008, + 9.889520978287852, + 10.006710135602445, + 10.203779549882478 ], "5._384._0.0875": [ - 3.491684148784791, - 4.023279636156971, - 4.652351039645069, - 5.686157113357087, - 6.961545153770087, - 9.042383172066298, - 11.731244489922352, - 14.07796471915153, - 17.247822837975477, - 19.100513820330104, - 20.381936081030982, - 22.119937946398608, - 23.290017266302243, - 25.831183370975197, - 27.927934039212506, - 28.49587688585577, - 29.00386861500027, - 29.496754840839348, - 29.877622933863588, - 30.202741434415195, - 30.48213787781195, - 30.715580588180487, - 30.889611742253454, - 31.088319475857705, - 31.22396489190118, - 31.290505095979746, - 31.39826375473448 + 3.4932028143747442, + 4.031225313396911, + 4.696683351956656, + 5.895258949336692, + 7.463183615052691, + 10.067311843808248, + 13.518546824042419, + 16.657150557450745, + 21.088844656849805, + 23.769834351145242, + 25.65403847603591, + 28.232841118555676, + 29.980157025676654, + 33.77553858626234, + 36.898145953599624, + 37.74216561558882, + 38.49489705349406, + 39.223431713280675, + 39.78442442296848, + 40.26297101985203, + 40.6732807879178, + 41.015412876169414, + 41.270414879901935, + 41.56131118331108, + 41.75998163028608, + 41.857528189959375, + 42.01580799948635 ], "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125467, - 2.1622431316564783, - 2.506080869002253, - 2.8001346640586293, - 3.14329436699023, - 3.5123432739000746, - 3.860023494374007, - 4.454035537585791, - 4.9009907314408885, - 5.272074128547903, - 5.890863348417758, - 6.40420697216, - 7.88824247911931, - 9.55575813824719, - 10.07810160532861, - 10.569009178861092, - 11.065616271434864, - 11.462006453770927, - 11.807038786816884, - 12.108016745187705, - 12.361872337880557, - 12.55197315674844, - 12.768899382365463, - 12.917354994433628, - 12.990490268666912, - 13.109354087626448 + 1.5268463243731418, + 1.8679037053125427, + 2.1622431316564756, + 2.5060808691583203, + 2.8001350770698523, + 3.1433612352433395, + 3.513318400330735, + 3.863409953862411, + 4.475858258287028, + 4.965267195005759, + 5.392898888624619, + 6.136191660028293, + 6.767505975605476, + 8.613537551900135, + 10.721349836664997, + 11.398597575879053, + 12.042895947840163, + 12.704503302769288, + 13.239898855377094, + 13.712069043053095, + 14.128201853046834, + 14.48215897685615, + 14.74912048071562, + 15.05510115789881, + 15.265666709327906, + 15.369947353325761, + 15.540455431866032 ], "5._96._0.075": [ - 2.209271810327404, - 2.5553235631964983, - 2.85191468287134, - 3.2002464578628005, - 3.524214557727399, - 4.004769247598286, - 4.675512731336439, - 5.372544388972258, - 6.614708573868588, - 7.572011644721387, - 8.35376448018417, - 9.581192812625266, - 10.509754370843844, - 12.776316922635896, + 2.209271810327403, + 2.5553235638493415, + 2.851915624830743, + 3.2003509439627287, + 3.52517126680515, + 4.0097056454423585, + 4.710784459073923, + 5.500625917645478, + 7.009869748002816, + 8.19992142806117, + 9.178156756083277, + 10.728532163023628, + 11.919593176824328, + 14.909739412500201, + 17.735954585796947, + 18.54880902258721, + 19.284352741312123, + 20.00589284361037, + 20.56554154558609, + 21.04478615321821, + 21.4558116727621, + 21.797950390563877, + 22.05266557767269, + 22.341859125618985, + 22.53935478447103, + 22.636552607072513, + 22.794807232316032 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_3": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351635568339257, + 3.18685987649175, + 3.5194341168753853, + 4.021964695453296, + 4.625373168858598, + 5.631213203703021, + 7.017734131113873, + 8.301128331626503, + 10.117778789699045, + 11.210610651605968, + 11.976583504775217, + 13.028692005585269, + 13.742865870882106, + 15.311494952074163, + 16.618169400815415, + 16.97370980694966, + 17.292351934429536, + 17.602231685890924, + 17.842328567513636, + 18.047436530328493, + 18.223984896573956, + 18.37169673522136, + 18.48184538753949, + 18.60766758338057, + 18.693552413788066, + 18.735670645551725, + 18.803797793376237 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004349, + 2.1114679242247276, + 2.4511928330881463, + 2.7884188390440285, + 3.0449438060593743, + 3.3868270121676423, + 3.6139397405790454, + 3.7971850654668238, + 4.098986094465467, + 4.3483461306850195, + 5.091563856634515, + 6.003348584673112, + 6.30869169255662, + 6.606373821842283, + 6.918310269197569, + 7.176309365099972, + 7.407231942536657, + 7.614477838086076, + 7.793880568509998, + 7.930774556315486, + 8.090147260210866, + 8.200733499237531, + 8.255609007591945, + 8.345178145421313 + ], + "5._384._0.0875": [ + 3.4888288086422636, + 4.016644434684756, + 4.656097350048851, + 5.724643914605977, + 6.959907389349164, + 8.718829385823275, + 10.692998326451791, + 12.268677784338763, + 14.289104442978177, + 15.439317116143096, + 16.228160365480026, + 17.295731529216958, + 18.01381604634192, + 19.582369160770195, + 20.886702784603084, + 21.241361732916218, + 21.559695690469532, + 21.869461495310855, + 22.109738789160463, + 22.315010727642687, + 22.4918421881964, + 22.639906318278147, + 22.75031584383327, + 22.876508470046037, + 22.962608610867996, + 23.004802522166397, + 23.072995900320393 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656477, + 2.506080868699679, + 2.800133863322582, + 3.14316472586218, + 3.5104718549266547, + 3.854845417542254, + 4.451018321828257, + 4.9116776892091, + 5.297016704953429, + 5.92640690466214, + 6.423636872828878, + 7.719212181270855, + 8.980633064022445, + 9.346857075629213, + 9.682185873929484, + 10.01431289649661, + 10.275472721434395, + 10.500494849414341, + 10.695612308471505, + 10.859690701170848, + 10.982362439165628, + 11.122558142675226, + 11.218429945956188, + 11.265557218538145, + 11.341930946657234 + ], + "5._96._0.075": [ + 2.2092619209324726, + 2.5553055502990443, + 2.8518822508487456, + 3.199985852874824, + 3.5222728206245484, + 3.9984334914448545, + 4.675890638522396, + 5.39760263087033, + 6.630658201542146, + 7.489891206956369, + 8.137933780063445, + 9.080671485080162, + 9.748385559930018, + 11.273174243711193, + 12.580380605681452, + 12.94004337232528, + 13.262876866410474, + 13.577523541572688, + 13.821599056356835, + 14.03034643518104, + 14.210092929480233, + 14.360493279700068, + 14.472700352633987, + 14.600821880462636, + 14.688349595590935, + 14.731324538344243, + 14.800941414503159 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "6_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 25.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 25.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 25.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 25.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 25.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351688203357908, + 3.1872707880384024, + 3.5225590741424657, + 4.031135541235536, + 4.628641926666353, + 5.585645304932676, + 6.921730797376026, + 8.303776891137797, + 10.670246859573522, + 12.35938221680729, + 13.654523031680132, + 15.557327632239552, + 16.914753490365563, + 19.999923936363622, + 22.615083266571194, + 23.329006355126353, + 23.96442398157154, + 24.579204790181233, + 25.051541725021607, + 25.454080509912362, + 25.798342585486534, + 26.084644241025433, + 26.297807403852996, + 26.54038946829001, + 26.706022546026723, + 26.78740944908537, + 26.919653114206056 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004342, + 2.111467924224728, + 2.4511928331740758, + 2.7884200505989325, + 3.0450179873457315, + 3.388386685528471, + 3.6182343373388854, + 3.8039467995420844, + 4.107691713941779, + 4.354677029988393, + 5.067224521351216, + 5.935177645196042, + 6.24115932528188, + 6.554524405631771, + 6.90497734414584, + 7.217398188333452, + 7.518664213649857, + 7.810028379669547, + 8.081055914267598, + 8.30119339315461, + 8.573395443557756, + 8.773167965651105, + 8.876072190696307, + 9.049803725403915 + ], + "5._384._0.0875": [ + 3.492691826729683, + 4.02628476143444, + 4.656197045628261, + 5.669524198136654, + 6.862062483361687, + 8.795894682333266, + 11.497705199482061, + 14.082534322245108, + 17.83466142235737, + 20.12332143179579, + 21.732947996611177, + 23.936347012259414, + 25.42834521474103, + 28.667762418484884, + 31.331882972906488, + 32.051858935333534, + 32.69396763984234, + 33.31549631839161, + 33.79419067455685, + 34.20249765009862, + 34.55261224331392, + 34.8445667096732, + 35.06214269701846, + 35.31032320787869, + 35.47978559743173, + 35.562975247110145, + 35.69791777336454 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.506080869108157, + 2.800134944316243, + 3.143339741557704, + 3.5129999743779248, + 3.8619501940288443, + 4.457762243767006, + 4.90346028655612, + 5.2686198209886275, + 5.862560258188004, + 6.341931977794788, + 7.713788137858659, + 9.357339183606713, + 9.910235858360533, + 10.448110467773986, + 11.010057398482223, + 11.471333852428037, + 11.881322858173476, + 12.244994955261525, + 12.555590011199671, + 12.790079614717015, + 13.059080490720548, + 13.244094019349328, + 13.335640587066575, + 13.485048223766206 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.555323563639498, + 2.851915322058079, + 3.200317357634756, + 3.524859313706055, + 4.007183122686854, + 4.679402126659913, + 5.368878258314808, + 6.546401203985863, + 7.427650304679995, + 8.15420954683679, + 9.336544871331913, + 10.277190626181516, + 12.750732356824619, + 15.173559196085266, + 15.876734004874015, + 16.514342013049138, + 17.140266436855892, + 17.626143665794014, + 18.041860373394147, + 18.398400424432207, + 18.69513534873061, + 18.91588328117409, + 19.16637766834288, + 19.337300112598786, + 19.421354880004817, + 19.558049433909147 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 25.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 25.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 25.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 25.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 25.0, + 25.0 + ], + [ + 5.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 20.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352010213947767, + 3.1899104640722453, + 3.547901176617397, + 4.176423613783134, + 5.041633789411094, + 6.610996216373288, + 9.020621402087025, + 11.627698315600325, + 16.047131965622203, + 19.113431437188, + 21.41995410308729, + 24.74546387019528, + 27.08416620026099, + 32.30009779569913, + 36.640684439366424, + 37.81606407468059, + 38.85776697572198, + 39.861978097086855, + 40.63016658573869, + 41.28422417080363, + 41.84222476693173, + 42.3053842741757, + 42.65022958307706, + 43.042509249060835, + 43.310547187408545, + 43.44238674406689, + 43.65708287103435 + ], + "5._24._0.075": [ + 0.8740059532267972, + 1.195803175961542, + 1.4813847491413068, + 1.819821321700434, + 2.1114679242247245, + 2.451192833699204, + 2.7884274567742824, + 3.0454767396044895, + 3.3996017694135356, + 3.6575248733556807, + 3.883984586642546, + 4.289526881829095, + 4.64766370477973, + 5.78568217680796, + 7.314403567563282, + 7.878866010806036, + 8.4628434072144, + 9.116969142282851, + 9.695555921367747, + 10.245994751949999, + 10.768114636292287, + 11.24272505446609, + 11.619538194499759, + 12.072169462066954, + 12.395178545226626, + 12.558781769323065, + 12.830586064311573 + ], + "5._384._0.0875": [ + 3.525571773166252, + 4.199729938413051, + 5.129214236448039, + 6.813752012164907, + 8.973917257773913, + 12.624408956302672, + 17.65280434032769, + 22.32069638533293, + 28.920673886855347, + 32.88458156626552, + 35.652430031044595, + 39.41179301392662, + 41.94331853884102, + 47.3928405151213, + 51.839231542846434, + 53.03668884851427, + 54.10282716815036, + 55.13303797049809, + 55.92481516051304, + 56.600025895914165, + 57.1783621052627, + 57.6602080778789, + 58.01937075260192, + 58.42904211234614, + 58.70894301861549, + 58.846444165775914, + 59.06978954258852 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.867903705312544, + 2.162243131656476, + 2.5060808716043965, + 2.800141552149977, + 3.1444357755182475, + 3.53264280605078, + 3.9461193603563443, + 4.772490188440044, + 5.466769576927177, + 6.070435365918531, + 7.102611914128007, + 7.970827575978542, + 10.527803834340826, + 13.54179086340255, + 14.524942676401523, + 15.461956386482195, + 16.422368841540337, + 17.194850186950386, + 17.87156312077681, + 18.46243391714731, + 18.95992249252498, + 19.33187154618109, + 19.753734923819554, + 20.041832754443554, + 20.184015131810686, + 20.416155712817897 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.555323574081672, + 2.8519303970265413, + 3.2020489189654233, + 3.5440075077734736, + 4.127124464799331, + 5.09339261561932, + 6.21084814241123, + 8.29666212623099, + 9.942809103211697, + 11.316731403931621, + 13.53444705107568, + 15.26698723978405, + 19.66056229681443, + 23.785701338066644, + 24.95863592256592, + 26.011096574186784, + 27.0356457906595, + 27.823524330731853, + 28.494719073356826, + 29.066825251647835, + 29.540547646151087, + 29.89233024009111, + 30.290491483877474, + 30.562083717166022, + 30.69574821149879, + 30.913713990892884 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_10": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 15.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 15.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516993683871, + 3.1873579529980915, + 3.523224114834591, + 4.033363427901735, + 4.633363962912164, + 5.618246832687198, + 7.119285680866576, + 8.799049772024896, + 11.754619284900851, + 13.86945301414951, + 15.493448212123159, + 17.887808093404015, + 19.608330344296633, + 23.54943345477123, + 26.918384466041836, + 27.84085376446059, + 28.660835109239606, + 29.453119529665372, + 30.06002704129387, + 30.576967589938864, + 31.018054479452765, + 31.384104611882634, + 31.65655756256214, + 31.966279552967332, + 32.177856444859856, + 32.281927822528345, + 32.451414787153674 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615408, + 1.4813847491413077, + 1.8198213217004344, + 2.1114679242247263, + 2.4511928331923047, + 2.78842030759543, + 3.04503372277996, + 3.388717722956018, + 3.619154230269169, + 3.805447430390857, + 4.110119193962556, + 4.35800188612341, + 5.083756893172275, + 6.035037561122144, + 6.393493368790233, + 6.7708223659570494, + 7.201063433352396, + 7.588801231422987, + 7.963839500107231, + 8.326340114429785, + 8.662683322868082, + 8.935155239875828, + 9.271335269294465, + 9.51869808152905, + 9.64689170332045, + 9.865203696177453 + ], + "5._384._0.0875": [ + 3.493516727583599, + 4.028772451514918, + 4.661864856462748, + 5.712537931576787, + 7.058641395680877, + 9.422722968072815, + 12.805081443580814, + 16.05134458163086, + 20.809654389272605, + 23.755472895938194, + 25.845959735260017, + 28.72301871002367, + 30.679821447065645, + 34.9284813508408, + 38.41515602451335, + 39.355849510370106, + 40.19302045715762, + 41.00180638950452, + 41.62301560941838, + 42.15261924882933, + 42.605946288098856, + 42.98339088144304, + 43.264645852491334, + 43.58527192567165, + 43.80429415823622, + 43.91189286509824, + 44.086707292214015 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125405, + 2.162243131656477, + 2.506080869194804, + 2.800135173617932, + 3.143376866228786, + 3.5135372987681186, + 3.8635277742337903, + 4.461355964530047, + 4.911496609785115, + 5.287310006309192, + 5.923553841214227, + 6.4644500776212785, + 8.117032224282216, + 10.15935092470897, + 10.846838648605964, + 11.51406100627956, + 12.21047964130188, + 12.782050885461688, + 13.291023290379664, + 13.743281164639443, + 14.130311992341811, + 14.423347774190725, + 14.759984998180947, + 14.992213543322022, + 15.107506537143387, + 15.296507933917225 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235640019554, + 2.851915845029044, + 3.200375366610068, + 3.5253868649820927, + 4.009163365772939, + 4.684164982450781, + 5.388774460976104, + 6.681163317498867, + 7.72704766588997, + 8.619123246249597, + 10.09302463243466, + 11.268935933988638, + 14.350006592055744, + 17.382126375854963, + 18.27041416088171, + 19.077488462610308, + 19.87189645926701, + 20.48880704129185, + 21.017489825519913, + 21.470573843035766, + 21.84721156577614, + 22.127392765270866, + 22.444916640747326, + 22.66170876826733, + 22.7684859683759, + 22.94264299682115 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_10": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 10.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 10.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 10.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169795060513, + 3.187346893848356, + 3.523155280617886, + 4.035368806994226, + 4.661201289664253, + 5.78041278903457, + 7.549234541760137, + 9.452009063163977, + 12.604120429267944, + 14.766515327825836, + 16.395857090540186, + 18.766122107234732, + 20.45419904434237, + 24.29876189460571, + 27.577922585638593, + 28.47594391764054, + 29.275535654313064, + 30.04910539795833, + 30.64283621370808, + 31.148931495900474, + 31.581412392430558, + 31.94081138873253, + 32.20843818584458, + 32.51292793318534, + 32.72094995503735, + 32.82324352780976, + 32.98969123402188 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.4813847491413075, + 1.819821321700434, + 2.111467924224728, + 2.4511928331899893, + 2.7884202749609504, + 3.0450317246520586, + 3.3886770414395038, + 3.6191049974667653, + 3.805784361474252, + 4.1145103225532145, + 4.372606762225955, + 5.181426346809605, + 6.302503364258972, + 6.7194401406441875, + 7.149956692990554, + 7.628993207238195, + 8.049761103745677, + 8.44746255555381, + 8.823730184359762, + 9.16625471673779, + 9.439592793489714, + 9.772113646054821, + 10.01398807247955, + 10.138464486249635, + 10.349268935084034 + ], + "5._384._0.0875": [ + 3.4934461324734865, + 4.032037231786688, + 4.698943784358756, + 5.904715646459202, + 7.491614375915535, + 10.14958461832136, + 13.713323433211603, + 16.99537116271131, + 21.691720676126497, + 24.56448672057875, + 26.594969982865365, + 29.384600108843056, + 31.28029655868139, + 35.40272902560372, + 38.79454386921021, + 39.71102163941051, + 40.527709153182144, + 41.31759037849807, + 41.925187604391105, + 42.44337707239873, + 42.88736409250495, + 43.257344806802585, + 43.53307849554864, + 43.84753153537074, + 44.0623148094132, + 44.167800068191525, + 44.33905999563422 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125407, + 2.162243131656477, + 2.5060808691838012, + 2.800135144500258, + 3.1433721524496367, + 3.5134765594397335, + 3.863886140341405, + 4.47724181269682, + 4.968238441864553, + 5.398185189968358, + 6.147743943796443, + 6.786588203768167, + 8.66639596310323, + 10.835257092023097, + 11.538293101300253, + 12.210114446801734, + 12.903231242725662, + 13.466777425721169, + 13.965877002630359, + 14.407436585758397, + 14.784313266803512, + 15.069391602487975, + 15.39691749544762, + 15.622888964157115, + 15.735036986985598, + 15.918824177540337 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.5553235639559286, + 2.851915778620036, + 3.200368002619603, + 3.5253265351705654, + 4.010319416029917, + 4.712690692372387, + 5.506237117592, + 7.030763397646094, + 8.240139130747183, + 9.238992142145294, + 10.83095896835687, + 12.061608496088542, + 15.180457065696647, + 18.16948698551964, + 19.0368432999429, + 19.823933707296604, + 20.598021909769667, + 21.199370480448337, + 21.715013082440926, + 22.157476347832684, + 22.525834630227017, + 22.800136654860705, + 23.111487841868033, + 23.32419640797805, + 23.428950689023168, + 23.599688215446356 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_11": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 10.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 10.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 10.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 10.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351700662883723, + 3.1873680686624972, + 3.5233170990960523, + 4.035952526875691, + 4.662763207184387, + 5.786887319485472, + 7.572812354374332, + 9.505860779166701, + 12.734577177549287, + 14.969254319863868, + 16.663785323327552, + 19.144890963250248, + 20.923513391475684, + 25.003606743808547, + 28.50910311466367, + 29.472007469248716, + 30.329462646536786, + 31.159025512398625, + 31.795300696442446, + 32.33762137558391, + 32.80073860495974, + 33.185329813628556, + 33.47167566115652, + 33.79731866494461, + 34.0198221620338, + 34.12927669057939, + 34.307514053513394 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141308, + 1.8198213217004349, + 2.111467924224725, + 2.4511928331944177, + 2.7884203373921217, + 3.045035547201222, + 3.3887574810470666, + 3.6193296311833936, + 3.8061584764086343, + 4.115186277420731, + 4.373662771771624, + 5.185318997070212, + 6.315569203511882, + 6.73755829885092, + 7.1743262111331, + 7.661639856950827, + 8.090981492225994, + 8.498034391007623, + 8.884470037146546, + 9.237590124600374, + 9.520497178250713, + 9.866330875250942, + 10.119492723868309, + 10.250527323758453, + 10.47401090611532 + ], + "5._384._0.0875": [ + 3.4936471599491608, + 4.03270808975875, + 4.700811965642921, + 5.912538357696873, + 7.515186603729773, + 10.2182232685083, + 13.877401562013999, + 17.2832973227974, + 22.21486367940057, + 25.26306820605535, + 27.429680062825383, + 30.418297144707754, + 32.45571416808425, + 36.89340121136781, + 40.54632728090228, + 41.53319663388153, + 42.411954918276216, + 43.261318842143865, + 43.91401981385223, + 44.47056112537411, + 44.94708250883536, + 45.34393173597746, + 45.63966305886921, + 45.97682421708353, + 46.20714291983397, + 46.32028640951883, + 46.50408339606979 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125425, + 2.1622431316564765, + 2.5060808692048493, + 2.8001352002036333, + 3.143381171012834, + 3.5136072140216155, + 3.864279541525984, + 4.478385100618678, + 4.970694116434439, + 5.402555063575379, + 6.157299570092233, + 6.802384828949929, + 8.71036785650641, + 10.930713036286052, + 11.655694031138552, + 12.351141513024372, + 13.071554601851648, + 13.65978571734247, + 14.182764063866818, + 14.647152918655744, + 15.044870367444213, + 15.346616593607786, + 15.694207230853651, + 15.934708189135836, + 16.054343409022554, + 16.250883130272815 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235640439804, + 2.8519159056633625, + 3.200382094557704, + 3.5254548017277325, + 4.010826502055223, + 4.714266037253779, + 5.510876311783492, + 7.048070477378532, + 8.273519739378633, + 9.289589899849627, + 10.91652313303612, + 12.18069782755099, + 15.410299719320104, + 18.5437532015212, + 19.46074067621607, + 20.295256175939652, + 21.118200992380036, + 21.75866987812453, + 22.308703778499964, + 22.781031825065803, + 23.17439845917733, + 23.46743658331913, + 23.800022528343725, + 24.027344282321184, + 24.13937469974316, + 24.322168434162624 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_12": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 10.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 10.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 10.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 10.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 10.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351702941198202, + 3.1873858555158168, + 3.5234530284687264, + 4.036442910067871, + 4.664075636877076, + 5.792331097317525, + 7.592678989002933, + 9.551389349721674, + 12.845700958863757, + 15.142897396167205, + 16.894383698812288, + 19.47362637837505, + 21.33365402093398, + 25.630093891591656, + 29.349288806282207, + 30.37429955707189, + 31.287342528012992, + 32.17084237173575, + 32.84813449267922, + 33.4254117207103, + 33.91808281324539, + 34.326960888005615, + 34.631352239319554, + 34.97737544106979, + 35.21383823550688, + 35.330202214054324, + 35.51983588911598 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224723, + 2.451192833198135, + 2.7884203898343114, + 3.0450387581426184, + 3.3888250505461928, + 3.6195183271972917, + 3.8064727479945892, + 4.115754150643894, + 4.374549990130282, + 5.188590915665898, + 6.3265665974815475, + 6.752818055214826, + 7.194867145072558, + 7.689190679659194, + 8.125814080415223, + 8.540835553611277, + 8.93596867954762, + 9.298195014768218, + 9.58937269663101, + 9.946815828244993, + 10.209967457945718, + 10.346900957999573, + 10.582067704022808 + ], + "5._384._0.0875": [ + 3.493816040909042, + 4.033271710312212, + 4.702381844826308, + 5.919116897728456, + 7.535047584500053, + 10.276356254629055, + 14.01752483688956, + 17.531247959571516, + 22.6724782880981, + 25.881084282374, + 28.17414906306516, + 31.35019946487351, + 33.52274348827974, + 38.26408438049878, + 42.17039267202717, + 43.22571710018815, + 44.16479325259079, + 45.07191637205323, + 45.768338339566625, + 46.36204323833072, + 46.87004848921036, + 47.29286621011351, + 47.60792118298828, + 47.96701155831589, + 48.21233581488487, + 48.332880206816185, + 48.528807917039664 + ], + "5._48._0.075": [ + 1.5268463243731383, + 1.8679037053125402, + 2.1622431316564765, + 2.5060808692225316, + 2.80013524699447, + 3.1433887466069352, + 3.513716964852692, + 3.8646100193203328, + 4.479345708444171, + 4.972757698948523, + 5.4062278067008975, + 6.165335001432045, + 6.815677140014365, + 8.747519621024272, + 11.011874066986064, + 11.755734805376699, + 12.471642810420501, + 13.21586209440886, + 13.82583290404224, + 14.370034541705893, + 14.854936184422717, + 15.2715973644631, + 15.588663114051522, + 15.954919535935758, + 16.2091164920848, + 16.335877721240685, + 16.54467437707544 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.55532356411794, + 2.8519160123797547, + 3.200393931788631, + 3.525562546604677, + 4.011252494978863, + 4.715589767937546, + 5.514775932770895, + 7.062641462396603, + 8.301669879460908, + 9.3323330468497, + 10.989071487402216, + 12.281990091607067, + 15.607765014538504, + 18.869677638519473, + 19.831849062269875, + 20.70995331434296, + 21.578258249731455, + 22.2553841345927, + 22.837885368256256, + 23.338576233096305, + 23.7558051846037, + 24.066782808373418, + 24.41975112768232, + 24.661137473593794, + 24.780189231148, + 24.974653883023166 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_13": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 10.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 10.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 10.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 10.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 10.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 10.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 10.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 10.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 10.0, + 60.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835170488198483, + 3.1874010072865393, + 3.5235688214896226, + 4.036860686027274, + 4.665193934376262, + 5.796972118327723, + 7.609646698175321, + 9.590385260098653, + 12.941497975989797, + 15.293272361793857, + 17.094876287684325, + 19.761410689994705, + 21.694788308445357, + 26.189936616575284, + 30.110686651010017, + 31.195115525249996, + 32.16155510563719, + 33.097030510444846, + 33.81390215647702, + 34.424951394248446, + 34.94617514384109, + 35.37850876725491, + 35.70032882860203, + 36.066026762403624, + 36.31597322170891, + 36.439017961314576, + 36.63969090451188 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.1958031759615417, + 1.4813847491413072, + 1.8198213217004335, + 2.111467924224724, + 2.4511928332013038, + 2.788420434507277, + 3.045041493389074, + 3.388882609913897, + 3.6196790709049846, + 3.806740471659334, + 4.11623794573388, + 4.375305891425016, + 5.191379613498481, + 6.335950691508625, + 6.765846353012054, + 7.212415942358391, + 7.712752224265555, + 8.155636624962492, + 8.577528798521826, + 8.980184583493633, + 9.350316072163286, + 9.648703608636747, + 10.016334133852533, + 10.288353186323143, + 10.430594923131759, + 10.676512846962048 + ], + "5._384._0.0875": [ + 3.4939599153461143, + 4.0337519034527975, + 4.703719586571984, + 5.92472622026134, + 7.55200977470499, + 10.326222884658625, + 14.138593329969698, + 17.746964721082268, + 23.075764059298827, + 26.431070902972177, + 28.841475917948898, + 32.19380764455028, + 34.49499872234122, + 39.5285910733961, + 43.68086406846051, + 44.802817823040286, + 45.800573050255025, + 46.76385356673046, + 47.50271671142753, + 48.13248671066459, + 48.67100625681101, + 49.11896273424673, + 49.452720099899615, + 49.83302203732864, + 50.09286374901038, + 50.22057206728203, + 50.42825647393145 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.867903705312541, + 2.162243131656476, + 2.5060808692375924, + 2.800135286853327, + 3.1433951998915486, + 3.5138104570088227, + 3.8648915524211507, + 4.480164181189177, + 4.974516153341687, + 5.409357916364279, + 6.172186274036022, + 6.827016913810926, + 8.779323341516598, + 11.081731675384802, + 11.841998940112783, + 12.575778014651782, + 13.340906231905768, + 13.970118694058801, + 14.533244569832899, + 15.036608141194499, + 15.470495636856151, + 15.801635351935873, + 16.18524136979212, + 16.452340719610504, + 16.585883011911328, + 16.806465821408842 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235641809455, + 2.851916103286318, + 3.200404015357804, + 3.5256543299754224, + 4.0116154071262855, + 4.716717708070514, + 5.518099776474245, + 7.075077635927676, + 8.3257294595485, + 9.368918381563025, + 11.051362922280518, + 12.36919391727828, + 15.779204840319627, + 19.155777571056234, + 20.159105586935695, + 21.077259490744133, + 21.987638782563298, + 22.699081390646555, + 23.312208474205775, + 23.83982480562099, + 24.27982540998338, + 24.607990783044553, + 24.98054716433097, + 25.23549190376203, + 25.36133138322122, + 25.56711608284355 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351663640324887, + 3.1870790258551014, + 3.5210961279932578, + 4.026258003624487, + 4.620874215132077, + 5.586704760859376, + 6.975975240133478, + 8.385515378636665, + 10.572004132104373, + 11.970612978165319, + 12.977584396047362, + 14.385269064815402, + 15.352257347698204, + 17.488292201888967, + 19.26916115727457, + 19.75338533767014, + 20.18611186851185, + 20.606034675672227, + 20.930371875826708, + 21.20720898473744, + 21.444958809834272, + 21.643459009031766, + 21.791407096906152, + 21.960191851340355, + 22.075419755393312, + 22.131968272416074, + 22.22358119190958 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961543, + 1.4813847491413061, + 1.8198213217004344, + 2.1114679242247276, + 2.4511928331339754, + 2.788419485206642, + 3.044983369398642, + 3.387658420844403, + 3.61621087467806, + 3.800647721718858, + 4.102447078162199, + 4.3482454201841785, + 5.063761085434357, + 5.961844910337476, + 6.281053980373686, + 6.603822067448765, + 6.95537175531292, + 7.256945499031273, + 7.535358466093733, + 7.792070377777192, + 8.019450760285471, + 8.19605530658293, + 8.404727988051604, + 8.551378686479197, + 8.624779509112326, + 8.745473319995293 + ], + "5._384._0.0875": [ + 3.490878423401478, + 4.020865767973589, + 4.648176032065668, + 5.674399499861875, + 6.916132435192409, + 8.869255322450169, + 11.291850797714199, + 13.34706889292032, + 16.074575342864755, + 17.653878358549843, + 18.74281157645554, + 20.218463293681307, + 21.211546808244698, + 23.372625740632863, + 25.160615694186212, + 25.645589407971297, + 26.07990639815786, + 26.50174629776772, + 26.828160051242154, + 27.10687395162787, + 27.34659864893684, + 27.547046683084734, + 27.69649241841502, + 27.867186693474277, + 27.983687149119135, + 28.040815557314513, + 28.133264868112562 + ], + "5._48._0.075": [ + 1.5268463243731425, + 1.8679037053125433, + 2.1622431316564765, + 2.5060808689175333, + 2.8001344398525356, + 3.143258067360416, + 3.511817936616393, + 3.8584823063559384, + 4.450820115805174, + 4.896372927658499, + 5.265314109663766, + 5.875866438354276, + 6.375812833672173, + 7.781652584834328, + 9.298539449880645, + 9.762692744890986, + 10.195323728092962, + 10.629929896539666, + 10.975093504823272, + 11.274487256102537, + 11.535122656382152, + 11.754735236467663, + 11.919110587980263, + 12.106800684140174, + 12.235228520520732, + 12.298450749380303, + 12.401097139217644 + ], + "5._96._0.075": [ + 2.2092718103274023, + 2.555323562842096, + 2.85191417152195, + 3.2001897381139504, + 3.523698775742411, + 4.002837144576757, + 4.67171432905596, + 5.3653840526168555, + 6.583808098627554, + 7.498820819534223, + 8.230410547630026, + 9.35496261489984, + 10.189524424276817, + 12.186066303279896, + 13.960309446498885, + 14.454460899435773, + 14.898355927882445, + 15.331231711411391, + 15.666581859040832, + 15.953119427418569, + 16.199278410806752, + 16.40470718918719, + 16.557725016433995, + 16.731959681699756, + 16.850860777538816, + 16.9092413045836, + 17.00388218199376 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835167455722321, + 3.187164253368536, + 3.5217463021757833, + 4.028427836363309, + 4.624684630082045, + 5.596396180422826, + 7.021654999732946, + 8.516485795859836, + 10.922679147334124, + 12.504736239346794, + 13.658836270238554, + 15.286897355848462, + 16.412526210829927, + 18.90716185189082, + 20.988260218620216, + 21.553888068081033, + 22.058549347226762, + 22.547678348313518, + 22.924785442127003, + 23.246506041112095, + 23.522444349706053, + 23.752556634864902, + 23.924021079341824, + 24.1195019132571, + 24.252969516975394, + 24.318496397162527, + 24.424754094441145 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615426, + 1.4813847491413068, + 1.8198213217004353, + 2.1114679242247276, + 2.4511928331518, + 2.7884197364921053, + 3.044998755151511, + 3.3879820910415375, + 3.617110145509905, + 3.802113944017799, + 4.104789809067644, + 4.35122359689819, + 5.069884325161107, + 5.985111909717598, + 6.3172037017256075, + 6.657572709404107, + 7.033770157964548, + 7.361258663222535, + 7.6675128839922255, + 7.953255729334022, + 8.209016631065653, + 8.409350881388876, + 8.647796141532217, + 8.816459337544055, + 8.901251809332873, + 9.041206675006105 + ], + "5._384._0.0875": [ + 3.491684148784791, + 4.023279636156971, + 4.652351039645069, + 5.686157113357087, + 6.961545153770087, + 9.042383172066298, + 11.731244489922352, + 14.07796471915153, + 17.247822837975477, + 19.100513820330104, + 20.381936081030982, + 22.119937946398608, + 23.290017266302243, + 25.831183370975197, + 27.927934039212506, + 28.49587688585577, + 29.00386861500027, + 29.496754840839348, + 29.877622933863588, + 30.202741434415195, + 30.48213787781195, + 30.715580588180487, + 30.889611742253454, + 31.088319475857705, + 31.22396489190118, + 31.290505095979746, + 31.39826375473448 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125467, + 2.1622431316564783, + 2.506080869002253, + 2.8001346640586293, + 3.14329436699023, + 3.5123432739000746, + 3.860023494374007, + 4.454035537585791, + 4.9009907314408885, + 5.272074128547903, + 5.890863348417758, + 6.40420697216, + 7.88824247911931, + 9.55575813824719, + 10.07810160532861, + 10.569009178861092, + 11.065616271434864, + 11.462006453770927, + 11.807038786816884, + 12.108016745187705, + 12.361872337880557, + 12.55197315674844, + 12.768899382365463, + 12.917354994433628, + 12.990490268666912, + 13.109354087626448 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235631964983, + 2.85191468287134, + 3.2002464578628005, + 3.524214557727399, + 4.004769247598286, + 4.675512731336439, + 5.372544388972258, + 6.614708573868588, + 7.572011644721387, + 8.35376448018417, + 9.581192812625266, + 10.509754370843844, + 12.776316922635896, 14.825606887511555, 15.399996571961866, 15.916126916831454, @@ -1338,5 +4008,3157 @@ 3.003 ] } + }, + "4_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168235501287, + 3.187225130284909, + 3.5222107360218113, + 4.02997840041794, + 4.627409825333906, + 5.603248489768871, + 7.05243281246964, + 8.605984674689251, + 11.178826753871103, + 12.911691333108958, + 14.192145315858346, + 16.016131103395832, + 17.286801987111335, + 20.116973372286008, + 22.483534481875175, + 23.126927897093587, + 23.700214013485763, + 24.255286841487692, + 24.682534242150155, + 25.046870976012332, + 25.35898234727682, + 25.618970843623128, + 25.812648388034702, + 26.033311921476066, + 26.183988618234917, + 26.257993610467494, + 26.378107415172135 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.195803175961542, + 1.4813847491413066, + 1.8198213217004344, + 2.1114679242247285, + 2.4511928331645287, + 2.7884199159817205, + 3.045009744976354, + 3.3882132869747608, + 3.617752529133315, + 3.8031614371046776, + 4.106464011358775, + 4.353352429920457, + 5.074237492245742, + 6.000837952290013, + 6.34138033437576, + 6.693622153718276, + 7.087049110302825, + 7.433424975465707, + 7.760751439062382, + 8.0693160257882, + 8.348210963891466, + 8.56851690028365, + 8.83284946927001, + 9.02127848810832, + 9.116520435454001, + 9.274493727612288 + ], + "5._384._0.0875": [ + 3.492259894917149, + 4.025004936754169, + 4.6553378239473915, + 5.694428342145734, + 6.992152202699412, + 9.162314380873108, + 12.057849245018245, + 14.6510818727442, + 18.219063650460807, + 20.327334273521956, + 21.791517295290035, + 23.780808543593466, + 25.12140957263153, + 28.029136601412134, + 30.423206808084387, + 31.07092333391018, + 31.649599886851615, + 32.21052115801187, + 32.64339521242799, + 33.01280579162818, + 33.32999968850202, + 33.5948278881234, + 33.79223980563305, + 34.0175688954002, + 34.17141251753898, + 34.246904560203106, + 34.36924498034679 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125458, + 2.1622431316564765, + 2.5060808690627714, + 2.800134824205838, + 3.143320295310389, + 3.5127185274099437, + 3.8611246029854076, + 4.456334420411525, + 4.904288889799071, + 5.276857311162185, + 5.901145716645142, + 6.423254393102804, + 7.960849779374967, + 9.74251159980519, + 10.312285707725744, + 10.852087706637393, + 11.402178752864387, + 11.843802223655274, + 12.229876834859011, + 12.567659921349026, + 12.853102212611725, + 13.067116296192332, + 13.311358681834932, + 13.478617334898406, + 13.561099489050957, + 13.695323354273706 + ], + "5._96._0.075": [ + 2.2092718103274027, + 2.55532356344964, + 2.8519150481209032, + 3.200286972006519, + 3.5245829858551394, + 4.006149810727657, + 4.678229392979975, + 5.37763655618152, + 6.635624639372579, + 7.621221753122868, + 8.43802635211238, + 9.741625539452174, + 10.743705895284736, + 13.236144010172131, + 15.532292302466427, + 16.180955443028406, + 16.764531231371677, + 17.334204095845855, + 17.77495214351862, + 18.151422697914864, + 18.474131899489475, + 18.742785124679088, + 18.942699175818188, + 19.169819199730124, + 19.3247833719786, + 19.40093639963708, + 19.524631143912814 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_7": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351688203357908, + 3.1872707880384006, + 3.5225590743763915, + 4.031141697470602, + 4.629455285056693, + 5.608397617273535, + 7.075349642170789, + 8.672196371716607, + 11.37385590328267, + 13.23032490775426, + 14.618298733635688, + 16.614610105878967, + 18.01658875268129, + 21.15878441163157, + 23.79651993106107, + 24.51431050921618, + 25.153230372020154, + 25.771345369858018, + 26.246421015349867, + 26.651388476651924, + 26.997916081886654, + 27.286272279042212, + 27.501031104215546, + 27.7455643995728, + 27.912556679964613, + 27.994606374201542, + 28.127893647693245 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004342, + 2.111467924224728, + 2.4511928331740753, + 2.7884200505989307, + 3.0450179873457333, + 3.3883866855299227, + 3.618234342726912, + 3.803947161623676, + 4.107720112525002, + 4.35494994866659, + 5.077506717291564, + 6.012571161261899, + 6.359277370069171, + 6.720177799679841, + 7.126299319863856, + 7.4868650253233255, + 7.830388845417834, + 8.156972905126898, + 8.454663605818626, + 8.691645876959452, + 8.978264427124536, + 9.184285160290239, + 9.289051259153586, + 9.463835564514097 + ], + "5._384._0.0875": [ + 3.492691829132685, + 4.026299521277214, + 4.657579888953234, + 5.70064432883764, + 7.0149448832845795, + 9.251442054763267, + 12.309251632411385, + 15.109435391496786, + 19.031901219124943, + 21.377067344519194, + 23.013710293874176, + 25.242793777816658, + 26.747389556676197, + 30.008771925978046, + 32.689762560307514, + 33.41439574408507, + 34.06109295115862, + 34.68737302183485, + 35.17007898982935, + 35.58190632875483, + 35.9352337009237, + 36.23001858548865, + 36.44974133463374, + 36.700455100206696, + 36.87165547202282, + 36.95569042158567, + 37.0919657277796 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808691081577, + 2.800134944316244, + 3.1433397415577047, + 3.512999974429333, + 3.8619505766938853, + 4.4580596785761655, + 4.906764729400385, + 5.280447334812117, + 5.908839324560329, + 6.437404071779548, + 8.014469799997999, + 9.884148973109411, + 10.492449889901733, + 11.072990774211396, + 11.668778115855742, + 12.149954088687794, + 12.572605874487834, + 12.943726716621093, + 13.258167087261874, + 13.49435950304998, + 13.764137482457873, + 13.949097034005423, + 14.040426504408533, + 14.189269838905673 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235636395, + 2.851915322058077, + 3.2003173576347543, + 3.524859313745609, + 4.0071855009920885, + 4.680268466394042, + 5.38146142361432, + 6.6512427877621585, + 7.657572311570688, + 8.50027038823875, + 9.861801060100557, + 10.921838407685007, + 13.602223021294469, + 16.117871042356168, + 16.834846308097642, + 17.48111788370607, + 18.112917580905474, + 18.601848082475087, + 19.019621280120592, + 19.3775351146002, + 19.67526065696996, + 19.89674235172266, + 20.148144368159564, + 20.31968274620834, + 20.404022326809063, + 20.541152066723136 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_8": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351692752072393, + 3.1873062996636787, + 3.522830011893929, + 4.032046705775042, + 4.631047121369011, + 5.612407366063844, + 7.093215322932616, + 8.723697745283589, + 11.527478060593165, + 13.48585377259962, + 14.965174857482191, + 17.112270310627302, + 18.6323294596025, + 22.063161752254924, + 24.95813312476431, + 25.747144024843976, + 26.448943489349418, + 27.127473165574315, + 27.648311172187235, + 28.092144221720982, + 28.47153507197085, + 28.78693076642966, + 29.021775244829573, + 29.28902504743075, + 29.471548819736196, + 29.561263238140764, + 29.707126183685745 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615422, + 1.4813847491413075, + 1.8198213217004355, + 2.1114679242247285, + 2.4511928331815023, + 2.788420155301208, + 3.0450243980779135, + 3.3885215520240872, + 3.618609101967282, + 3.8045583427440977, + 4.1086973465039245, + 4.356192993203295, + 5.080051687400434, + 6.02171279333475, + 6.373197448039349, + 6.740784213186807, + 7.156718586943188, + 7.528323396056365, + 7.884596873144551, + 8.225605837732004, + 8.538655327889064, + 8.789560950494065, + 9.095282311765391, + 9.316861787856402, + 9.43025974686089, + 9.62067878332003 + ], + "5._384._0.0875": [ + 3.493027851843019, + 4.027306781460973, + 4.659324877369516, + 5.7054858957634345, + 7.032713544595373, + 9.320892917320288, + 12.508614638204401, + 15.482685861234579, + 19.718910913273724, + 22.282194805187416, + 24.080691171289466, + 26.537744768445236, + 28.19973622736213, + 31.802295811851423, + 34.76061691175507, + 35.559578674805124, + 36.27189392482168, + 36.96112725570806, + 37.49171391829774, + 37.944275675222386, + 38.33224416371286, + 38.65570448764056, + 38.89677848614203, + 39.171767744069705, + 39.35956995138008, + 39.45178087741804, + 39.601410714569504 + ], + "5._48._0.075": [ + 1.52684632437314, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808691434566, + 2.800135037735452, + 3.1433548664209874, + 3.5132188817479064, + 3.862593084997211, + 4.459402196001838, + 4.908691695977329, + 5.283241809688558, + 5.914829544635133, + 6.4484123262850055, + 8.056132601343641, + 9.995388950126594, + 10.635158565009457, + 11.249686153039862, + 11.884398986296608, + 12.399991473228802, + 12.855049902370876, + 13.256200760094083, + 13.59714611201034, + 13.853850397087104, + 14.14748482504152, + 14.349131083427185, + 14.448856015973076, + 14.61166281299538 + ], + "5._96._0.075": [ + 2.2092718103274005, + 2.5553235637871654, + 2.8519155351203227, + 3.2003409909132827, + 3.5250742394647423, + 4.007991196671116, + 4.681855343099465, + 5.384439095576195, + 6.663415668062967, + 7.685825339637546, + 8.548589167517237, + 9.955570794135197, + 11.062050382646401, + 13.899278865940156, + 16.609019775326185, + 17.388500678499938, + 18.092805952174153, + 18.78268859683356, + 19.316971388041356, + 19.7738115626916, + 20.165114064065477, + 20.49045113267196, + 20.732435900227088, + 21.0069171416595, + 21.194226398583666, + 21.286369714338772, + 21.436341160436445 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_9": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 15.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169639104507, + 3.1873347089886157, + 3.5230467667503773, + 4.032770852130202, + 4.63232117245887, + 5.615618031441836, + 7.107542438415692, + 8.765063543919664, + 11.651808161180966, + 13.695075430001566, + 15.25226913067192, + 17.5311777359599, + 19.157031123006632, + 22.85379344780366, + 25.99238599126197, + 26.849584461086945, + 27.61169040736368, + 28.348220370709036, + 28.91294997044361, + 29.394059626444587, + 29.80492523912211, + 30.146178625426803, + 30.40022392119084, + 30.689167252838683, + 30.886527813016755, + 30.983570681427576, + 31.141480940570492 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615422, + 1.4813847491413077, + 1.8198213217004353, + 2.1114679242247267, + 2.451192833187444, + 2.7884202390630266, + 3.0450295266639387, + 3.3886294458187187, + 3.6189089190202908, + 3.805047326733636, + 4.1094793015542965, + 4.357187762823741, + 5.082089047026489, + 6.029037552886479, + 6.384352604202716, + 6.757292068618604, + 7.181083738899558, + 7.561544038378338, + 7.928102929024764, + 8.280862264416237, + 8.606596258393731, + 8.869185447513718, + 9.191282594727669, + 9.426574198738848, + 9.54776090955464, + 9.752674402835543 + ], + "5._384._0.0875": [ + 3.4932967165669933, + 4.028112817201913, + 4.660721599681195, + 5.709363089430584, + 7.046962475898584, + 9.376757550195558, + 12.670664827266489, + 15.791692023847283, + 20.305053162252985, + 23.068223623783616, + 25.017933090065565, + 27.690972808704753, + 29.50370570583695, + 33.43527595839543, + 36.66198322268002, + 37.53290458613724, + 38.308650841399796, + 39.058656340609986, + 39.6353582400006, + 40.12713316830233, + 40.548394098898434, + 40.8993724419915, + 41.16093079985029, + 41.45919360520396, + 41.66291563615794, + 41.762971032785195, + 41.92543119955358 + ], + "5._48._0.075": [ + 1.5268463243731432, + 1.8679037053125407, + 2.1622431316564765, + 2.5060808691716976, + 2.800135112470815, + 3.143366966314302, + 3.513394010174011, + 3.8631071447594705, + 4.460476619644367, + 4.9102340972806635, + 5.285478803365044, + 5.919626261644965, + 6.457229119504843, + 8.089572435248849, + 10.085211301317639, + 10.750963788112326, + 11.394022716767424, + 12.061953556913876, + 12.607465481844363, + 13.091153855922277, + 13.519259066100389, + 13.884347782132005, + 14.159971641436057, + 14.47586675565077, + 14.69325174518255, + 14.800955540579196, + 14.977132525247987 + ], + "5._96._0.075": [ + 2.2092718103274027, + 2.5553235639053007, + 2.851915705570122, + 3.200359897543739, + 3.5252461825768133, + 4.008635853282756, + 4.683125431249428, + 5.3868229293102345, + 6.673171103856618, + 7.708475879994559, + 8.58733156004287, + 10.03097990241987, + 11.175376646425542, + 14.144484291356706, + 17.0254698330761, + 17.861931984251083, + 18.619764923566983, + 19.363801911470023, + 19.94071076025164, + 20.434490484280673, + 20.857485040590255, + 21.20909462126535, + 21.47061928180624, + 21.76710670213935, + 21.969475872457526, + 22.069086100357673, + 22.231380126729356 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351678756032506, + 3.187197033234048, + 3.5219963792700995, + 4.029257161545586, + 4.625439813195518, + 5.581918076563316, + 6.933990603917165, + 8.343409539198467, + 10.682306034572184, + 12.27292622506223, + 13.455015982599358, + 15.146758080716909, + 16.328931987926094, + 18.971040219347593, + 21.186885586822314, + 21.790040722228873, + 22.32779285108981, + 22.84873536291079, + 23.249961972039905, + 23.59215328523894, + 23.885395855817396, + 24.129734539851317, + 24.311752570840557, + 24.519145420373643, + 24.660743710822437, + 24.73027853379732, + 24.843099967208566 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413072, + 1.8198213217004355, + 2.111467924224728, + 2.4511928331586517, + 2.788419833140358, + 3.045004672749363, + 3.3881065808541444, + 3.6174560345834483, + 3.8026776315843276, + 4.105665806331061, + 4.352128394869591, + 5.063781538734141, + 5.938762311957236, + 6.250846167726924, + 6.571007902567478, + 6.927526759376401, + 7.241737001718092, + 7.539835064668187, + 7.822320740946058, + 8.079156421197728, + 8.283171480085318, + 8.529448644853195, + 8.705911969659454, + 8.795360019155062, + 8.944111262053404 + ], + "5._384._0.0875": [ + 3.491994139759413, + 4.024195322361277, + 4.652756511449665, + 5.666195652760058, + 6.87397566775641, + 8.84136432472171, + 11.478860758463973, + 13.865186639973748, + 17.171757358351368, + 19.132163677896564, + 20.495455696933355, + 22.35005710100194, + 23.600978711799947, + 26.31771759579538, + 28.557226854855696, + 29.16343278711373, + 29.705165021229035, + 30.230406981773392, + 30.635871798031026, + 30.981901197422236, + 31.2790664638916, + 31.527203675858313, + 31.71216694327748, + 31.923287762128375, + 32.067415909683454, + 32.138132265115175, + 32.25270903482283 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125465, + 2.162243131656475, + 2.5060808690348373, + 2.800134750291741, + 3.1433083283920285, + 3.5125453321314977, + 3.860616026926391, + 4.455010512716528, + 4.899940946216643, + 5.26494227778323, + 5.861420441918838, + 6.347081096565084, + 7.745803779378014, + 9.369490750413814, + 9.893449331662142, + 10.392597214820164, + 10.903576860785785, + 11.315555495653392, + 11.676731963072786, + 11.993603874722568, + 12.262000667972892, + 12.4635272524625, + 12.693911196271408, + 12.851845828191463, + 12.929763191645833, + 13.056563502626716 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235633328057, + 2.8519148795441818, + 3.2002682731670866, + 3.524412940781227, + 4.005510438850903, + 4.676217623216871, + 5.364959040807383, + 6.552010893962662, + 7.451409752832565, + 8.191003352594112, + 9.3733885417648, + 10.287988859750532, + 12.586847732805381, + 14.726017512491744, + 15.332735933927033, + 15.879551465801764, + 16.414041367682128, + 16.828152267784894, + 17.182075910973094, + 17.485727379908106, + 17.73870066966237, + 17.926992844773178, + 18.14099206118265, + 18.287011663381687, + 18.358761066128682, + 18.475259237687844 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 5.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 15.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351997446336936, + 3.1898081491331167, + 3.5470149893140412, + 4.172787317952708, + 5.03874480801709, + 6.636504419581775, + 9.111380637561625, + 11.71898589498456, + 15.901912528221231, + 18.6610213860998, + 20.679975449062216, + 23.52863850528271, + 25.49835808784029, + 29.839352016117104, + 33.43057836996524, + 34.40242758058818, + 35.266167232713464, + 36.10068911488741, + 36.74141570431017, + 37.287521442409776, + 37.75469082995189, + 38.14341111665056, + 38.43300259204478, + 38.76287125644654, + 38.98822991830052, + 39.09898886772435, + 39.27900014597818 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615408, + 1.4813847491413077, + 1.8198213217004344, + 2.1114679242247263, + 2.4511928336783706, + 2.7884271630172246, + 3.0454586424573686, + 3.3991885241771826, + 3.656223455443289, + 3.881644259429857, + 4.285731906210324, + 4.644110402078949, + 5.797896442783604, + 7.370263226199228, + 7.94658698842093, + 8.53477878918855, + 9.181274907990586, + 9.74012817543478, + 10.260075586951727, + 10.742197626219165, + 11.170964730101094, + 11.505001167656221, + 11.898961525638406, + 12.175414400446003, + 12.313878751773133, + 12.541681201583328 + ], + "5._384._0.0875": [ + 3.5244317680822506, + 4.19568251536074, + 5.127510545370031, + 6.846487004071386, + 9.065356097107006, + 12.692449555277014, + 17.384789956865728, + 21.510344044598103, + 27.11478175617391, + 30.399923872229486, + 32.672392111696915, + 35.74587045246488, + 37.810363705152525, + 42.26527447178794, + 45.91591438950784, + 46.90160389922867, + 47.78130561420668, + 48.63315720494332, + 49.28972926019018, + 49.84997911333422, + 50.33072571100778, + 50.73190255458976, + 51.03099535539379, + 51.37238082192726, + 51.60555550336848, + 51.72002802595047, + 51.9056957813001 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125405, + 2.162243131656477, + 2.5060808715053717, + 2.800141290053961, + 3.14439279119691, + 3.5319430654979547, + 3.9436516923217337, + 4.768594218773206, + 5.469245976303344, + 6.084991982014356, + 7.1466448080231, + 8.03996039972485, + 10.607721318691233, + 13.45877242767244, + 14.34833017936, + 15.180755307676748, + 16.020208043902265, + 16.686521265362632, + 17.26472929393689, + 17.766192135245117, + 18.186619457261983, + 18.50025577686741, + 18.855984362821612, + 19.098743293836836, + 19.21833403013218, + 19.413087033693323 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.555323573667436, + 2.851929799168709, + 3.201981356047324, + 3.543323173450602, + 4.123916764246417, + 5.090690290458453, + 6.226009710863209, + 8.37084118686906, + 10.042157836627153, + 11.403732621876193, + 13.531493753236248, + 15.13917772097235, + 19.052395625126614, + 22.575910758338924, + 23.560310809647966, + 24.44080361054919, + 25.29621802791297, + 25.954502399334082, + 26.515463259565653, + 26.994642596076044, + 27.392411802017104, + 27.6881436127361, + 28.02364732371345, + 28.252560150656553, + 28.365119579376145, + 28.54825995188916 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_6": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351685474129935, + 3.187249481079706, + 3.522396514866175, + 4.030592814196732, + 4.627722868303493, + 5.585841086958176, + 6.9469377655061955, + 8.389070850379817, + 10.851330609673159, + 12.569648938217183, + 13.86454498953832, + 15.737589739648987, + 17.05710413614582, + 20.022309865805664, + 22.51547507480264, + 23.19430474482107, + 23.798678892592097, + 24.383531892141182, + 24.833209858039353, + 25.216532343985165, + 25.544602231283324, + 25.81763968957515, + 26.020977958294246, + 26.252505406182365, + 26.410593790630703, + 26.48825655310354, + 26.614381411120902 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004355, + 2.111467924224727, + 2.451192833169619, + 2.788419987777565, + 3.0450141409066105, + 3.388305766031537, + 3.6180094883757605, + 3.803580126982537, + 4.107106375769473, + 4.3539417324984395, + 5.066648574115097, + 5.945456762285798, + 6.261223586417359, + 6.587518100882298, + 6.954348346746133, + 7.28129581131679, + 7.5949399774541835, + 7.895531879757293, + 8.171834130739583, + 8.393419775516348, + 8.663398494202083, + 8.858541085761054, + 8.958042164428168, + 9.12438421650145 + ], + "5._384._0.0875": [ + 3.4924902440759262, + 4.025681014266933, + 4.655217634927266, + 5.6705992538837435, + 6.886835581961211, + 8.906693804089493, + 11.704142832053767, + 14.306316280561097, + 17.984098613642125, + 20.189855550645685, + 21.73035945402206, + 23.82992795556813, + 25.247581453373627, + 28.322397269431466, + 30.851482285367695, + 31.535226791331933, + 32.14551836262141, + 32.73663215011843, + 33.19232607801402, + 33.58110747176217, + 33.91469605853329, + 34.19303384972863, + 34.40048899131228, + 34.63720142858958, + 34.79882642799924, + 34.87815374617774, + 35.00677348032432 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125451, + 2.1622431316564765, + 2.50608086908698, + 2.80013488826472, + 3.1433306666415226, + 3.5128686317022537, + 3.8615647353136846, + 4.456968323575433, + 4.902507826271181, + 5.268045845797907, + 5.866193120266112, + 6.355002524244668, + 7.78261094985483, + 9.491143688568082, + 10.054875557426008, + 10.596882993666739, + 11.15631979053995, + 11.610370300360149, + 12.010348903781642, + 12.362467689404339, + 12.661380281985315, + 12.886110921438517, + 13.143065470847077, + 13.31931646922876, + 13.406353618783722, + 13.548159121835953 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323563550899, + 2.8519151942207306, + 3.2003031776727373, + 3.52473035996673, + 4.006699841745819, + 4.67848894195067, + 5.368262813606941, + 6.560747951824675, + 7.47363008849471, + 8.233951728295116, + 9.46962181160411, + 10.441918133638021, + 12.937479643452814, + 15.307845855269182, + 15.98588001334119, + 16.59782391531588, + 17.19653710758874, + 17.660272096555012, + 18.05657642249162, + 18.396260469670775, + 18.67892627242685, + 18.88920599246353, + 19.127920499433873, + 19.290783044111105, + 19.37084154617619, + 19.500957119722518 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 5.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 15.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352006612825598, + 3.1898816085116395, + 3.5476553411392207, + 4.175988853683191, + 5.048398637518791, + 6.670690514170177, + 9.227098505564035, + 11.982196493167962, + 16.518064741282018, + 19.576306208825955, + 21.840947451843213, + 25.065258157862058, + 27.310758918343417, + 32.28080932342437, + 36.39824867079298, + 37.51216030980156, + 38.500490292192985, + 39.45407729755205, + 40.18466878030269, + 40.80701908168089, + 41.338611741599706, + 41.78034378779823, + 42.10933877961321, + 42.48383536106067, + 42.73971983138274, + 42.865541499383, + 43.07026687504246 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961542, + 1.481384749141308, + 1.8198213217004335, + 2.1114679242247227, + 2.4511928336933257, + 2.7884273739197263, + 3.045471635286713, + 3.3994855726654136, + 3.6571755154210557, + 3.8834614215639, + 4.289671857339597, + 4.650608056845512, + 5.81911240802793, + 7.434702680852298, + 8.035576168303997, + 8.654580508880029, + 9.34159153732549, + 9.941524258163117, + 10.504730149578211, + 11.031534558748772, + 11.503839962725861, + 11.874323686999102, + 12.313928661628148, + 12.62414865768061, + 12.780153238206358, + 13.037747543471877 + ], + "5._384._0.0875": [ + 3.5252591204622568, + 4.1995123893490245, + 5.1389390410559495, + 6.887157512787819, + 9.181201474250624, + 13.025936120479658, + 18.14757193803137, + 22.75932991449598, + 29.134970869282185, + 32.91246643771006, + 35.53612369250372, + 39.08966099333476, + 41.4784804715733, + 46.6236174302725, + 50.82835023003159, + 51.96192496945695, + 52.97229076275527, + 53.949532155416506, + 54.70157567786765, + 55.3430919109562, + 55.89303446942886, + 56.35156602460726, + 56.693391217296174, + 57.08342012723163, + 57.34987290747199, + 57.48073198383071, + 57.69315258372424 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125418, + 2.162243131656476, + 2.5060808715764673, + 2.800141478225463, + 3.144423651857475, + 3.5324474223378184, + 3.945568303100065, + 4.775678093292894, + 5.4836333090335465, + 6.108754920031067, + 7.194985248442829, + 8.118310601164671, + 10.822475691747156, + 13.909693340072309, + 14.890793004366627, + 15.815107179975435, + 16.75305993838713, + 17.50096119572592, + 18.15220817967321, + 18.71809035005923, + 19.19293630868651, + 19.54730143889941, + 19.948880699446285, + 20.222911285320865, + 20.35801441553482, + 20.57834977022931 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.555323573964835, + 2.851930228399971, + 3.2020298633481756, + 3.5438162503855466, + 4.126583606425951, + 5.100409358221385, + 6.25129982360889, + 8.456297278364591, + 10.206318547971142, + 11.652439241863053, + 13.945816094894854, + 15.703521036209818, + 20.05358007847467, + 24.03722198520634, + 25.157879440336306, + 26.160976362962128, + 27.135814753583162, + 27.8851683330389, + 28.523466571721702, + 29.067878629260132, + 29.519078395103858, + 29.854314635700103, + 30.2341419588738, + 30.49327088256919, + 30.62075533750573, + 30.82845628600888 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_7": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 20.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351690611500686, + 3.1872895883063315, + 3.5227025108086574, + 4.0316144810065735, + 4.6294698885543815, + 5.588846159662422, + 6.956513804611963, + 8.421692802765948, + 10.976720188004103, + 12.798216162783751, + 14.188273207628768, + 16.219985206988895, + 17.663483162263187, + 20.92883160888769, + 23.685451938829353, + 24.43669852926097, + 25.10480573945114, + 25.75076762839724, + 26.24666332279367, + 26.669195670913492, + 27.030391507190817, + 27.33066628523628, + 27.554227370773003, + 27.80861639761433, + 27.982327981927934, + 28.067698012609306, + 28.20646380880107 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615428, + 1.481384749141308, + 1.8198213217004362, + 2.1114679242247285, + 2.4511928331780064, + 2.7884201060295486, + 3.04502138126272, + 3.388458085333429, + 3.6184327374941647, + 3.8042703504304507, + 4.108208330468932, + 4.355329081130759, + 5.068843530585821, + 5.950467756558149, + 6.268782231076257, + 6.599309172038539, + 6.973367498986294, + 7.309500578254664, + 7.634718031079673, + 7.949274287163613, + 8.241136626201332, + 8.477234122402383, + 8.767494053548841, + 8.979226648656196, + 9.087890035399594, + 9.270668274192175 + ], + "5._384._0.0875": [ + 3.492869713086777, + 4.026817596137845, + 4.657101099604458, + 5.673971945515603, + 6.896353988095101, + 8.95361094214871, + 11.873782119735951, + 14.655249829534322, + 18.662088930573987, + 21.094796157090943, + 22.802319853777995, + 25.13549950033528, + 26.71345392387172, + 30.13368697457794, + 32.94216075507964, + 33.7006417953185, + 34.37687942241924, + 35.03123964863093, + 35.53502927341769, + 35.96472210924489, + 36.33310092097411, + 36.64023736672703, + 36.86913460367665, + 37.13022584595728, + 37.308522296706684, + 37.3960593314506, + 37.53808726303711 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125453, + 2.1622431316564774, + 2.506080869126846, + 2.8001349937734727, + 3.143347748837802, + 3.513115866041727, + 3.862290326763022, + 4.45846629731112, + 4.904472264622647, + 5.270420103115579, + 5.8698126245839095, + 6.360864879671247, + 7.808829994192228, + 9.580969328693548, + 10.17649105055843, + 10.753820358777707, + 11.354364372401923, + 11.845056214095862, + 12.279543370206444, + 12.663573869227953, + 12.990522433133835, + 13.236805420545116, + 13.518649149766405, + 13.712180069826088, + 13.807867852395061, + 13.963983079866981 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235637176748, + 2.8519154348557367, + 3.2003298693691313, + 3.524973097470532, + 4.007609589595562, + 4.6802269908076655, + 5.370792711227943, + 6.567293222133164, + 7.489594416161239, + 8.264519580278973, + 9.539337935508783, + 10.556076569909521, + 13.21355467501141, + 15.788835649379081, + 16.532411430695603, + 17.20489358172976, + 17.86384143966091, + 18.37437359773183, + 18.810787200000394, + 19.18462155824599, + 19.495435575160577, + 19.726561264718153, + 19.988682995725057, + 20.167506137271765, + 20.255450381067636, + 20.39852349857796 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 20.0, + 30.0 + ], + [ + 5.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 15.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352013334921073, + 3.1899354788143652, + 3.5481249534000185, + 4.178337732300235, + 5.055489771147242, + 6.695883695032752, + 9.312624001185608, + 12.178337850386914, + 16.99176604873781, + 20.297540488261824, + 22.772110970019522, + 26.32698656606, + 28.821649109065337, + 34.374159479707636, + 38.988257351919074, + 40.23702886993472, + 41.34351539522447, + 42.40988423856816, + 43.225312471660835, + 43.91957825507585, + 44.51176388044633, + 45.003223818451765, + 45.36915832847008, + 45.78543267082879, + 46.06990056317962, + 46.209840785138056, + 46.43779014891051 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615433, + 1.481384749141307, + 1.8198213217004335, + 2.1114679242247254, + 2.4511928337042943, + 2.788427528581559, + 3.0454811633625707, + 3.3997034105880393, + 3.65787373481769, + 3.884794208065459, + 4.292562498504417, + 4.655377054475657, + 5.8347222107764045, + 7.482158606424015, + 8.101037411087594, + 8.742862580980555, + 9.460327714766647, + 10.091773142765842, + 10.688824558328738, + 11.251398973077478, + 11.759409387853998, + 12.16047909195028, + 12.639392510758373, + 12.979532699860258, + 13.151405210234223, + 13.436513395979473 + ], + "5._384._0.0875": [ + 3.5258660925924397, + 4.202322992879835, + 5.147337125857051, + 6.917148796290579, + 9.26681120783209, + 13.27609531482578, + 18.740049125352545, + 23.762517903058352, + 30.82480751030232, + 35.05753491786813, + 38.01154773035239, + 42.021421137362445, + 44.72079302944064, + 50.528154310134035, + 55.263894999107315, + 56.538949815263436, + 57.67403157507341, + 58.77069534981074, + 59.61337411947689, + 60.331988860021596, + 60.94743804466872, + 61.46016425431274, + 61.842356802756804, + 62.278301201150086, + 62.57617466448527, + 62.72251645963684, + 62.96025760762381 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125422, + 2.1622431316564765, + 2.5060808716285963, + 2.8001416162179003, + 3.1444462830183775, + 3.532817294877352, + 3.9469741323563414, + 4.780879186940065, + 5.494205158541272, + 6.12621748346293, + 7.230495410583618, + 8.175824474844951, + 10.982025238307399, + 14.254351211233507, + 15.310575443027425, + 16.311895271706533, + 17.334169143713098, + 18.153338465809078, + 18.869449216094015, + 19.493346162156552, + 20.017759696246827, + 20.40953122748662, + 20.85347119857767, + 21.156536632318847, + 21.306110250972882, + 21.550447850148217 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.55532357418293, + 2.851930543169569, + 3.2020654353969285, + 3.5441778506908608, + 4.128539991991974, + 5.107548849800096, + 6.269914983147781, + 8.51934016949441, + 10.327666407116885, + 11.837525732172805, + 14.259356179318454, + 16.137116222510468, + 20.852900245070256, + 25.244972633155083, + 26.49034685862584, + 27.606765951144585, + 28.692806557773586, + 29.527265007917876, + 30.238017717631447, + 30.843549060042456, + 31.34476592469648, + 31.716965766532482, + 32.13820013296897, + 32.42556809880774, + 32.56702415966184, + 32.79779464881953 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_8": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 20.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 20.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351694667321072, + 3.1873212519372247, + 3.522944092612583, + 4.03242123481628, + 4.630849818506817, + 5.591220924805269, + 6.964067226845193, + 8.446952375529703, + 11.074273288756757, + 12.979796204962051, + 14.450034119331406, + 16.61984667217375, + 18.174467879273973, + 21.717026904047245, + 24.723497076153272, + 25.544074439719495, + 26.27324910998033, + 26.97778121872506, + 27.51789994254744, + 27.977935713911318, + 28.37075592086284, + 28.696983814572896, + 28.939804327962936, + 29.21593925715253, + 29.404515041167937, + 29.497224380668893, + 29.64805231480198 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141308, + 1.8198213217004335, + 2.1114679242247276, + 2.4511928331846278, + 2.788420199386379, + 3.0450270973336875, + 3.388578338163847, + 3.618766893624587, + 3.8048153125999447, + 4.10907850459407, + 4.356424771963522, + 5.0705776231491875, + 5.954425070556873, + 6.274709210418784, + 6.608463960476365, + 6.988004804140037, + 7.331129493232378, + 7.665267382522548, + 7.990803770668974, + 8.2952043426534, + 8.543293466201213, + 8.850824549109518, + 9.077184111405295, + 9.194141686617298, + 9.392212819948524 + ], + "5._384._0.0875": [ + 3.4931693521377487, + 4.027715182112536, + 4.658588908721927, + 5.676637760748852, + 6.903862586930828, + 8.989906823560416, + 12.006772262838828, + 14.937435014285525, + 19.234154508146588, + 21.875306366127315, + 23.73932798423881, + 26.294392263681708, + 28.02611673450778, + 31.779496570356425, + 34.857967954408636, + 35.688650859151714, + 36.42848234316304, + 37.143734418932745, + 37.6937096425489, + 38.16266684900968, + 38.564375003793764, + 38.89905632359789, + 39.14845667068011, + 39.432841903530154, + 39.62707130233068, + 39.72245898998227, + 39.87732715086438 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125427, + 2.1622431316564756, + 2.5060808691583216, + 2.800135077069853, + 3.14336123478559, + 3.5133110542642734, + 3.862863228587932, + 4.4596494130594735, + 4.906024071461582, + 5.272295808695539, + 5.872671547609131, + 6.365479247890142, + 7.829104262050452, + 9.650637814652443, + 10.271766188261278, + 10.878261687846724, + 11.513567541066418, + 12.03599235386469, + 12.500960526957698, + 12.913692157870098, + 13.266257279189972, + 13.53248267362831, + 13.837606202375325, + 14.047451355399524, + 14.15136069996523, + 14.32116382873384 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.55532356384934, + 2.851915624830741, + 3.2003509417705716, + 3.525164735516513, + 4.008327936777883, + 4.681599839483933, + 5.37279154351239, + 6.572464556414569, + 7.502035389339191, + 8.288088861976316, + 9.59303095427473, + 10.644778613888954, + 13.436072384839042, + 16.19185883264976, + 16.9953178314237, + 17.723793514613263, + 18.439044660472202, + 18.993638836743365, + 19.468008482353614, + 19.87425165075718, + 20.21181692493187, + 20.4627698842311, + 20.747148038784125, + 20.941161617210494, + 21.036624223263583, + 21.19208536006469 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2": { + "bore_locations": [ + [ + 20.0, + 5.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 20.0, + 20.0 + ], + [ + 5.0, + 10.0 + ], + [ + 10.0, + 0.0 + ], + [ + 20.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 5.0, + 25.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 20.0 + ], + [ + 20.0, + 10.0 + ], + [ + 5.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 15.0, + 35.0 + ], + [ + 5.0, + 15.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 5.0, + 30.0 + ], + [ + 15.0, + 10.0 + ], + [ + 20.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 15.0 + ], + [ + 5.0, + 5.0 + ], + [ + 20.0, + 30.0 + ], + [ + 0.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 35.0 + ], + [ + 15.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352018475349174, + 3.1899766738041593, + 3.548484080603995, + 4.180134553847632, + 5.060918832717767, + 6.7152238875119235, + 9.378691477159375, + 12.33083148310555, + 17.367227913396817, + 20.87924575793508, + 23.53324602093391, + 27.37808485745505, + 30.096727343258493, + 36.18638957003464, + 41.2690969803904, + 42.64611544726972, + 43.864981695042964, + 45.038574626805215, + 45.93444318922741, + 46.69685289146488, + 47.34631054663387, + 47.884660865188515, + 48.285406666102176, + 48.74100028679999, + 49.052376966877105, + 49.205622221603875, + 49.455512832807806 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615428, + 1.4813847491413072, + 1.8198213217004342, + 2.111467924224725, + 2.451192833712682, + 2.7884276468523734, + 3.0454884495387997, + 3.3998699938789185, + 3.6584076913226915, + 3.8858135124714557, + 4.2947737557088415, + 4.659026262415168, + 5.846690342862623, + 7.518701519292506, + 8.151468447510322, + 8.81095216512148, + 9.552161207357566, + 10.208442209228412, + 10.832498429332865, + 11.424065001140573, + 11.961540234698408, + 12.388316422006762, + 12.901011348160473, + 13.267570021318038, + 13.45375836905364, + 13.764269679933369 + ], + "5._384._0.0875": [ + 3.5263303887990465, + 4.2044734388356275, + 5.153768575853586, + 6.94018839310381, + 9.332933106428094, + 13.471413993905427, + 19.213029912634518, + 24.58328986876397, + 32.25439935193894, + 36.905700498137044, + 40.169011976107555, + 44.61134034011652, + 47.60765142549959, + 54.050755517502246, + 59.29658257097697, + 60.70739838146629, + 61.961906507961395, + 63.17270142448641, + 64.1017327670064, + 64.89375668768089, + 65.57144791945123, + 66.13557341747463, + 66.55604100613394, + 67.03548782273188, + 67.36313844333323, + 67.52416304061077, + 67.78595722538174 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125431, + 2.1622431316564765, + 2.5060808716684684, + 2.800141721741523, + 3.144463589205842, + 3.53310014478284, + 3.948049357968011, + 4.7848600216947315, + 5.502302225009756, + 6.139601454414939, + 7.257759242108006, + 8.220038729039118, + 11.105818651171193, + 14.526287186434223, + 15.644574609833828, + 16.71061666317861, + 17.805006035201377, + 18.686276258786283, + 19.45979275281087, + 20.135779017090815, + 20.705261042250612, + 21.131384640465285, + 21.614549758500814, + 21.94468931338982, + 22.107833250348712, + 22.37482952734204 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235743497016, + 2.8519307838757304, + 3.202092637567919, + 3.544454374596635, + 4.130036452149964, + 5.113015180988668, + 6.2841903609752015, + 8.567934509176, + 10.421459762462637, + 11.981149679370441, + 14.505140843905714, + 16.480411680966427, + 21.503724034664625, + 26.25707004137565, + 27.616207088469878, + 28.837095737242436, + 30.02656017088674, + 30.94060188011402, + 31.719372363508867, + 32.38236685097292, + 32.930623244038166, + 33.337590952531926, + 33.79773812204282, + 34.1116622633555, + 34.26628147739859, + 34.51886202603377 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json index ddd791ffba..d6261a6259 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json @@ -3011,7 +3011,7 @@ 3.003 ] }, - "1_3": { + "1_21": { "bore_locations": [ [ 0.0, @@ -3024,153 +3024,225 @@ [ 10.0, 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 ] ], "g": { "5._192._0.08": [ - 2.8351510677223124, - 3.185839705255709, - 3.509771540026878, - 3.966330673031906, - 4.453898436646452, - 5.141063225581686, - 5.935299849182006, - 6.591064822401665, - 7.4573397084792585, - 7.960204506246263, - 8.308428386398862, - 8.784434241747197, - 9.106869195173443, - 9.819004468262776, - 10.417553200063558, - 10.581112939206577, - 10.728355197827176, - 10.872032730663653, - 10.983845567697387, - 11.079470322916373, - 11.162021309221977, - 11.23127300322087, - 11.282940091757375, - 11.342050731061262, - 11.382382337920458, - 11.402138935562201, - 11.434024927322461 + 2.835169793240369, + 3.187340290500403, + 3.522821437662679, + 4.02880606850882, + 4.615142279529427, + 5.538070710245464, + 6.793184361475052, + 8.033619982294447, + 10.040440351716166, + 11.443098829752309, + 12.53177907931668, + 14.182906123577247, + 15.416886548168474, + 18.442460351745197, + 21.285280169404846, + 22.106111753397624, + 22.85044660048752, + 23.581775742486418, + 24.149630029196366, + 24.637124721157054, + 25.05586506428397, + 25.404956133969797, + 25.665374444589204, + 25.961771857534274, + 26.164633189132086, + 26.26459995224738, + 26.427638957165094 ], "5._24._0.075": [ - 0.8740013793970963, - 1.1957934696806856, - 1.4813667488882378, - 1.819785366250676, - 2.1114044341807157, - 2.4510705250300893, - 2.788182499477228, - 3.0443852106901215, - 3.381782256847064, - 3.5979049641354917, - 3.7653169707122243, - 4.025976647688318, - 4.226681022892984, - 4.7519775047763355, - 5.289276786959019, - 5.452176058421596, - 5.605172805309302, - 5.760500989302295, - 5.885820943128873, - 5.9960544830599956, - 6.093756080482953, - 6.177649611559798, - 6.241387660406869, - 6.315575367344118, - 6.367049048904869, - 6.3925661935266564, - 6.434203924751947 + 0.8740059532267965, + 1.1958031759615424, + 1.4813847491413075, + 1.819821321700434, + 2.111467924224728, + 2.451192833189989, + 2.7884202748466453, + 3.045031446535647, + 3.388589509421585, + 3.618378676974611, + 3.8033496112021505, + 4.103824757682689, + 4.346153773369789, + 5.036182554455577, + 5.857699499172582, + 6.139943732562841, + 6.423688594010761, + 6.733876861824094, + 7.0041052817680605, + 7.259762143074677, + 7.50380627402948, + 7.729798857117023, + 7.914422819303466, + 8.147597990710628, + 8.326279306878854, + 8.422781262165968, + 8.598306007073642 ], "5._384._0.0875": [ - 3.4763066788959396, - 3.949772974187067, - 4.456260341450167, - 5.169408748681231, - 5.871115554030923, - 6.760870364124674, - 7.687802150819135, - 8.402209462252888, - 9.30497492062296, - 9.81638347479816, - 10.167150006594197, - 10.64346476548816, - 10.964771566054742, - 11.672408151280557, - 12.266242640000142, - 12.42833604434291, - 12.574279870681229, - 12.716647611846046, - 12.827426487106704, - 12.92212131446228, - 13.003853316799084, - 13.072405876226359, - 13.123529770395518, - 13.182008691940712, - 13.22188408446242, - 13.241405445087377, - 13.272897556367255 + 3.4929320025429207, + 4.0230250491489, + 4.639839329774228, + 5.614682143790885, + 6.733400991227226, + 8.45686899909088, + 10.724459818075463, + 12.879902058347124, + 16.18050224234337, + 18.359205454851935, + 19.97864336250751, + 22.312894387845716, + 23.968652318492857, + 27.733927590686918, + 30.955844476221202, + 31.839776873863467, + 32.628708288331325, + 33.39284290162256, + 33.980210236303186, + 34.48117681812316, + 34.90974304179571, + 35.26622930001565, + 35.5317455706717, + 35.834054013224716, + 36.04054423053691, + 36.14202875492882, + 36.307045813034286 ], "5._48._0.075": [ - 1.5268359332879173, - 1.867883938514737, - 2.1622087383456456, - 2.5060151095371266, - 2.8000177309803878, - 3.1425235015701425, - 3.50253927551839, - 3.8221513912839025, - 4.3219203208202615, - 4.662094623549054, - 4.920779665355623, - 5.305197220055999, - 5.584574633595157, - 6.250240097046942, - 6.8508100598561175, - 7.02032416411666, - 7.174704624548563, - 7.3270420254642925, - 7.446781361568329, - 7.54998768102832, - 7.639728763200551, - 7.715491511685074, - 7.772309526957078, - 7.837607291416172, - 7.882394856115053, - 7.904425286274421, - 7.940124399290625 + 1.5268463243731418, + 1.8679037053125407, + 2.162243131656477, + 2.5060808691838004, + 2.8001351444099334, + 3.143370793057716, + 3.5132549988240633, + 3.861315836802722, + 4.448582667038862, + 4.8819328718540556, + 5.233547028553512, + 5.799109102929008, + 6.248706299154747, + 7.488881645886046, + 8.885494102117143, + 9.346333828674165, + 9.796423816335842, + 10.273480931462933, + 10.674769619724872, + 11.042216778014167, + 11.379981921197478, + 11.680259463639278, + 11.916254929525858, + 12.199781519580494, + 12.404818660026793, + 12.510131197404112, + 12.68889576371312 ], "5._96._0.075": [ - 2.2092619209324704, - 2.5553055462488583, - 2.8518764040875877, - 3.1993160118959567, - 3.514955741603026, - 3.9527389763946745, - 4.503681602688366, - 5.006861923779691, - 5.738944199243816, - 6.194547647991565, - 6.520747151603693, - 6.97831807732745, - 7.294240982610546, - 8.004586646061995, - 8.61032697321235, - 8.776955960336549, - 8.927246070742218, - 9.074228802677638, - 9.188836957686432, - 9.287022505975273, - 9.37190962826258, - 9.4432139118431, - 9.496477965097244, - 9.557471885031982, - 9.599147261960589, - 9.619587423820962, - 9.652619821039247 + 2.2092718103274067, + 2.5553235639559286, + 2.8519157781880358, + 3.200364904143093, + 3.5251167573315576, + 4.005619275078615, + 4.665767028855828, + 5.332055578110901, + 6.446348230660432, + 7.253445315934177, + 7.897961775777913, + 8.912224677532567, + 9.699549665956999, + 11.768293486965486, + 13.925474114554785, + 14.598081480610954, + 15.23104939962344, + 15.87649939446312, + 16.396249847290367, + 16.85457075712345, + 17.258444178575, + 17.60245943730846, + 17.86293748030772, + 18.163112870171826, + 18.37100519835866, + 18.47438648089748, + 18.644283059191896 ] }, "logtime": [ @@ -3203,7 +3275,7 @@ 3.003 ] }, - "1_4": { + "1_22": { "bore_locations": [ [ 0.0, @@ -3220,153 +3292,225 @@ [ 15.0, 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351565293061927, - 3.186277369725293, - 3.5135763440050924, - 3.984482530615498, - 4.500328527187433, - 5.252929853813622, - 6.166049558164793, - 6.954818862458517, - 8.035329575127863, - 8.677316270389335, - 9.126260992463921, - 9.74365052040903, - 10.163560451553488, - 11.09224837617182, - 11.87253405098203, - 12.085668095178917, - 12.277305834288796, - 12.464136810401527, - 12.609345157930006, - 12.733492953922616, - 12.840568813105348, - 12.930315914522732, - 12.997261077795526, - 13.073806543685494, - 13.126038789048899, - 13.151633867822897, - 13.192971097467371 ], - "5._24._0.075": [ - 0.8740013793970963, - 1.1957934696806856, - 1.4813667488882372, - 1.8197853662506762, - 2.1114044341807157, - 2.451070525119184, - 2.78818375566569, - 3.044462584972616, - 3.3835492733852717, - 3.6035402764592814, - 3.775936601553508, - 4.04783928375391, - 4.260199503376492, - 4.83026072820424, - 5.440316619613034, - 5.631817647925681, - 5.8144603766946545, - 6.002746075381008, - 6.15671652137846, - 6.293698523897438, - 6.416260465066006, - 6.522333986896158, - 6.603431531688164, - 6.698303675873532, - 6.764456015353557, - 6.797366566033298, - 6.851243600007028 + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351699351013053, + 3.187351658800507, + 3.5229203528588706, + 4.029281965388362, + 4.616386259706996, + 5.541227726687679, + 6.800387204571251, + 8.046537252026768, + 10.066589949219782, + 11.481599047085332, + 12.581774685381085, + 14.253794677278407, + 15.506355693359684, + 18.588831453731814, + 21.502319535822622, + 22.34706858064212, + 23.114113043891038, + 23.86872259402826, + 24.455158390019587, + 24.958990200403857, + 25.391927213772398, + 25.75292829701442, + 26.022298574255064, + 26.328895089610302, + 26.538805012220735, + 26.6422869379382, + 26.81115736236544 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615408, + 1.4813847491413077, + 1.8198213217004344, + 2.1114679242247263, + 2.451192833192303, + 2.7884203074863216, + 3.0450334573267774, + 3.3886354632370828, + 3.6185254319094318, + 3.803626787666764, + 4.1043995943852165, + 4.347043051878554, + 5.038356442491675, + 5.862237507625182, + 6.145528819093735, + 6.430476245517716, + 6.742168707574648, + 7.013895388913404, + 7.271153451092598, + 7.516927788825538, + 7.744737217753353, + 7.931034876751183, + 8.16664812231494, + 8.347559620415202, + 8.445476472566819, + 8.624266573501489 ], "5._384._0.0875": [ - 3.4811393655885206, - 3.971010269644954, - 4.508976665415018, - 5.294251139816838, - 6.103114537954158, - 7.177936460766827, - 8.343480110490887, - 9.262841494572463, - 10.439178278648443, - 11.109549088367109, - 11.570154220595375, - 12.195693347635098, - 12.617618287524184, - 13.544949039519576, - 14.321132217443383, - 14.532760907779526, - 14.723102299691968, - 14.908625655760929, - 15.052829037332357, - 15.176068454958983, - 15.282364173235125, - 15.37146341955096, - 15.43790498694524, - 15.513878999541594, - 15.565692266203763, - 15.591066210539713, - 15.632024448327295 + 3.4930585588446146, + 4.0235847364397, + 4.641261162978073, + 5.618246748308688, + 6.740638717555091, + 8.472490948551819, + 10.756445329191317, + 12.933443753825427, + 16.279540789380352, + 18.49756558533162, + 20.151284429588475, + 22.542419366813515, + 24.243997129043976, + 28.126949747351354, + 31.461339663906124, + 32.37749479494242, + 33.19523310981677, + 33.98728594786803, + 34.59592635097838, + 35.115034980788714, + 35.55898543857702, + 35.928153741584424, + 36.20310398241579, + 36.516094751587325, + 36.72990047303777, + 36.83500003054253, + 37.00595970721941 ], "5._48._0.075": [ - 1.5268359332879173, - 1.8678839385147374, - 2.1622087383456443, - 2.5060151099606895, - 2.8000188519866724, - 3.1427073206177853, - 3.5055373540001047, - 3.8333195360139745, - 4.357904355255417, - 4.7240568674260475, - 5.008175496203009, - 5.440407740861426, - 5.762629797534667, - 6.557057784804414, - 7.302738578001398, - 7.517295299755165, - 7.713813485892955, - 7.90866356380504, - 8.062297541151557, - 8.19505899526737, - 8.310650013821848, - 8.408302728791881, - 8.481590072964535, - 8.565802485788343, - 8.623600723744266, - 8.652055179321795, - 8.698212371267878 + 1.5268463243731418, + 1.8679037053125405, + 2.162243131656477, + 2.506080869194805, + 2.80013517353171, + 3.1433755690721896, + 3.513332961349259, + 3.8616075061495603, + 4.449541397810828, + 4.8836153336454915, + 5.235965043844581, + 5.803011223197802, + 6.254060254535791, + 7.499673509209754, + 8.905252857905698, + 9.36984939715998, + 9.824077232707184, + 10.306086791563468, + 10.712088571643777, + 11.084356549319347, + 11.427084724278389, + 11.732311125625047, + 11.97264787430162, + 12.262069359928088, + 12.472042776882272, + 12.58020630884848, + 12.764479457226965 ], "5._96._0.075": [ - 2.2092619209324704, - 2.5553055480208138, - 2.851878961478617, - 3.199605002205937, - 3.5178882395629185, - 3.968046678185059, - 4.55014749155164, - 5.098742395066348, - 5.930851539740409, - 6.470185581628055, - 6.865730338663789, - 7.431794194211518, - 7.82918121122223, - 8.73596275485232, - 9.51800957209451, - 9.734023351563122, - 9.928834742576504, - 10.119361285092724, - 10.267811157313929, - 10.394989586500742, - 10.504853818991128, - 10.597056343718467, - 10.665915874567876, - 10.744705908389962, - 10.798543354928198, - 10.824959083605435, - 10.867680397495905 + 2.209271810327404, + 2.555323564001953, + 2.851915844616682, + 3.200372411103785, + 3.525192981099091, + 4.006019872828364, + 4.667013768336452, + 5.334605449291082, + 6.452157143560606, + 7.262487038857301, + 7.9101482954323945, + 8.930476845553372, + 9.723486773505856, + 11.811773214872447, + 13.997665906421934, + 14.681605952902137, + 15.32635417360657, + 15.98509902317832, + 16.516646447241445, + 16.986263547326324, + 17.400841217637208, + 17.754574131865965, + 18.02282011710705, + 18.33237607961774, + 18.547101807603717, + 18.65401626049025, + 18.829957829988352 ] }, "logtime": [ @@ -3399,7 +3543,7 @@ 3.003 ] }, - "1_5": { + "1_23": { "bore_locations": [ [ 0.0, @@ -3420,153 +3564,225 @@ [ 20.0, 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 ] ], "g": { "5._192._0.08": [ - 2.8351598062666232, - 3.186539970868435, - 3.5158597860966205, - 3.9954013132700497, - 4.528420506228125, - 5.3215759636561835, - 6.31279536227868, - 7.197643286509492, - 8.449802285616565, - 9.21208449967516, - 9.751349000396456, - 10.498844387141098, - 11.01019344790078, - 12.144898313237372, - 13.099625948047745, - 13.360473668577686, - 13.594785319219229, - 13.823057700360815, - 14.00027547815332, - 14.151752764767862, - 14.282290873883106, - 14.39161564155346, - 14.47315005172904, - 14.566327283043137, - 14.629913935163467, - 14.661082947670087, - 14.7114545821795 + 2.8351700646265035, + 3.187362038555789, + 3.523010667421206, + 4.029716514194435, + 4.617522366814459, + 5.544112266251565, + 6.806973459651767, + 8.058358643973987, + 10.090561703424724, + 11.516934177651272, + 12.627704792463744, + 14.319032074305824, + 15.588805981540627, + 18.7242986659053, + 21.704460282077747, + 22.572053254175636, + 23.360890024797758, + 24.137951788380132, + 24.742388190017827, + 25.262102756118257, + 25.708880057679707, + 26.081517281924512, + 26.35964788926543, + 26.67623694172776, + 26.893062490090003, + 26.999997902414915, + 27.174606589925 ], "5._24._0.075": [ - 0.8740013793970968, - 1.195793469680686, - 1.4813667488882376, - 1.8197853662506758, - 2.111404434180715, - 2.451070525172641, - 2.7881845093787754, - 3.0445090095690146, - 3.384609546576235, - 3.60692258803915, - 3.782313721304198, - 4.060991129105417, - 4.280408476405369, - 4.878001605922317, - 5.534874882442655, - 5.745943502422536, - 5.949666959848923, - 6.162379721752643, - 6.338479744874569, - 6.49689031949909, - 6.64004768398907, - 6.76506132893069, - 6.861365674024911, - 6.974792013370061, - 7.054411305581753, - 7.094208003200405, - 7.159645254280049 + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141308, + 1.8198213217004349, + 2.111467924224725, + 2.4511928331944146, + 2.788420337287759, + 3.045035293266533, + 3.388677421146425, + 3.6186594269289127, + 3.803879868410371, + 4.104924487764751, + 4.347855123987537, + 5.040342318004613, + 5.866385418030912, + 6.150634724792366, + 6.436682944021793, + 6.7497530797584595, + 7.022852840583504, + 7.281579243316307, + 7.52894138258392, + 7.758419460903269, + 7.946255468667704, + 8.184112063736421, + 8.367077903174614, + 8.466299693355069, + 8.648117070559945 ], "5._384._0.0875": [ - 3.484045428228503, - 3.983803041186735, - 4.5409283279405095, - 5.371119867045962, - 6.250610707585901, - 7.460822088981469, - 8.822064064479669, - 9.923056162452188, - 11.35373942918458, - 12.175784657247368, - 12.742211991048363, - 13.512226599200405, - 14.031877063359648, - 15.172488335257922, - 16.125332896405297, - 16.38489296263954, - 16.618121258210458, - 16.84527448121368, - 17.021659665212646, - 17.17237123947259, - 17.30227791766592, - 17.41110415604465, - 17.492249758034, - 17.585007675061036, - 17.64827611166057, - 17.67926884036746, - 17.72932432908714 + 3.493174118260073, + 4.024095818049704, + 4.642559774486403, + 5.621504020072952, + 6.74725683076478, + 8.486793710367532, + 10.785785627902195, + 12.982651475889707, + 16.37087374942108, + 18.62547735310718, + 20.311246545140353, + 22.75592733266292, + 24.500985635141625, + 28.496838916124858, + 31.940606434080866, + 32.88830336636922, + 33.73428432027013, + 34.55374166123901, + 35.183270624134046, + 35.72020110051546, + 36.17926177001173, + 36.56088247707136, + 36.84509606053064, + 37.168573338491015, + 37.389562578535234, + 37.49821367926529, + 37.67501672355087 ], "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125438, - 2.1622431316564774, - 2.506080868409208, - 2.800133094236608, - 3.1430345625688068, - 3.5077674641030474, - 3.8408116625904216, - 4.381586671332468, - 4.765025811641742, - 5.0664282724592455, - 5.532471379825891, - 5.886390053018073, - 6.785527080084026, - 7.663765491037, - 7.921985185406946, - 8.160457294662926, - 8.39852958441645, - 8.587237147922867, - 8.750825350971988, - 8.893568538257197, - 9.014297504376565, - 9.104922018464343, - 9.208990335965863, - 9.280380743302517, - 9.315523178898712, - 9.372516058367696 + 1.526846324373142, + 1.8679037053125425, + 2.1622431316564765, + 2.5060808692048506, + 2.80013520012116, + 3.1433799297813794, + 3.513404144881383, + 3.8618738231515186, + 4.450416934981255, + 4.885152033977876, + 5.23817389163908, + 5.806576898360043, + 6.258953876103529, + 7.509547838706128, + 8.923356955525916, + 9.391405185135953, + 9.849439162386178, + 10.336009767027946, + 10.746357884160757, + 11.123077264232533, + 11.470395668254781, + 11.780209121632645, + 12.024580974010341, + 12.31950721680498, + 12.534127635589305, + 12.644998275469689, + 12.834566307315562 ], "5._96._0.075": [ - 2.209261920932471, - 2.5553055490839878, - 2.8518804959132367, - 3.199778397146007, - 3.519648020844696, - 3.977249406611028, - 4.578267520113382, - 5.154848731697201, - 6.051483672644926, - 6.64903109207958, - 7.095749573899366, - 7.746739141717749, - 8.21143309928475, - 9.290062728168119, - 10.234593250466354, - 10.497074014542322, - 10.733965995209655, - 10.965795245194869, - 11.1463870323713, - 11.301144547056056, - 11.434763905850694, - 11.546829250128546, - 11.630513785636808, - 11.726204400187711, - 11.791598239536073, - 11.82369792476395, - 11.875650777827616 + 2.209271810327413, + 2.5553235640439786, + 2.851915905268927, + 3.2003792652862146, + 3.5252625770599466, + 4.006385658378571, + 4.668152404317884, + 5.33693488596732, + 6.457467442838747, + 7.270756699625633, + 7.921298945444598, + 8.947191279457849, + 9.74542170375293, + 11.851707943839461, + 14.06415124872164, + 14.75860414229486, + 15.414314260146307, + 16.085475145727465, + 16.628095799107882, + 17.108368099996223, + 17.533100435846638, + 17.89610740796363, + 18.17180892018186, + 18.490422564352254, + 18.711789561572846, + 18.822154124929295, + 19.00402698930411 ] }, "logtime": [ @@ -3599,7 +3815,7 @@ 3.003 ] }, - "1_6": { + "1_24": { "bore_locations": [ [ 0.0, @@ -3624,153 +3840,225 @@ [ 25.0, 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 ] ], "g": { "5._192._0.08": [ - 2.835161990911118, - 3.1867150393227837, - 3.517382314078809, - 4.002692053524816, - 4.547247743896627, - 5.367980602934978, - 6.413570897056565, - 7.368631251473461, - 8.756431479101177, - 9.620653096642311, - 10.239410857054358, - 11.104845246864013, - 11.701048412476972, - 13.030666099915301, - 14.15275812389436, - 14.459600600779275, - 14.73502536672501, - 15.003207714105734, - 15.211206411368803, - 15.388959622334651, - 15.54202512808495, - 15.670121922445576, - 15.765641438969773, - 15.874746584972375, - 15.949209240564953, - 15.985720622448445, - 16.044762103825423 + 2.8351701833579566, + 3.187371553333999, + 3.5230934563465475, + 4.030114879334108, + 4.6185640492245765, + 5.54675814487875, + 6.813019047762281, + 8.069217930693853, + 10.112616756155399, + 11.549478970009305, + 12.670045642660634, + 14.379267703934133, + 15.665030583593053, + 18.850021700725332, + 21.893125465131018, + 22.782534922970296, + 23.59227848512995, + 24.39098663085836, + 25.012856304295862, + 25.54800909002831, + 26.008278662735176, + 26.392285701220093, + 26.678991154880674, + 27.005374054197283, + 27.22898791886398, + 27.339317954909017, + 27.51957629809993 ], "5._24._0.075": [ - 0.8740059532267962, - 1.1958031759615424, - 1.4813847491413075, - 1.8198213217004349, - 2.111467924224728, - 2.451192833062686, - 2.7884184796647324, - 3.0449208530816416, - 3.386062186750797, - 3.610309594636148, - 3.788116506186535, - 4.0722835555242085, - 4.297458391423497, - 4.918397013470395, - 5.61584433170168, - 5.843837463130339, - 6.066165491561771, - 6.300813022308235, - 6.497258102773271, - 6.675709755400152, - 6.838541308355629, - 6.982014684034514, - 7.0933559921619755, - 7.2254301846344235, - 7.318753499591462, - 7.365610745077294, - 7.442978084331978 + 0.8740059532267966, + 1.195803175961541, + 1.4813847491413077, + 1.819821321700434, + 2.111467924224724, + 2.4511928331963535, + 2.788420364605745, + 3.0450369762113487, + 3.3887158826285635, + 3.6187822568567576, + 3.8041118646099017, + 4.105405675650201, + 4.348599625873345, + 5.042163560748403, + 5.870191457352085, + 6.155320579398301, + 6.442380211017218, + 6.756716812766428, + 7.031079522717561, + 7.291157271856184, + 7.539981677350151, + 7.770997608103563, + 7.960252371348408, + 8.200179978279499, + 8.385044225079497, + 8.485473065504461, + 8.670102217577858 ], "5._384._0.0875": [ - 3.4859855003899294, - 3.9923526176916058, - 4.562366681191675, - 5.423179572495527, - 6.351897707188339, - 7.662034742866547, - 9.181066820380732, - 10.43987096909204, - 12.103673142668287, - 13.069209871928068, - 13.737033095912324, - 14.646499652878957, - 15.260947136768802, - 16.60872995583057, - 17.733078357411195, - 18.03913778800683, - 18.313907521596736, - 18.5813341907395, - 18.78879675179029, - 18.966027440371185, - 19.118697950718726, - 19.246521975063747, - 19.341825483318093, - 19.450734107695883, - 19.525027676769373, - 19.561430791160035, - 19.620254657474046 + 3.4932800544412466, + 4.024564362176223, + 4.643750517304037, + 5.624492062436755, + 6.753331628704037, + 8.499937596820722, + 10.812795744744253, + 13.028030719563052, + 16.45536724267342, + 18.744074403027536, + 20.459856338969004, + 22.954985977014818, + 24.74131591735773, + 28.845463095026318, + 32.39556704329113, + 33.374136224066724, + 34.24780737655746, + 35.0941690142712, + 35.74421471584748, + 36.2986585478471, + 36.77256656361369, + 37.16642011447721, + 37.459734100286845, + 37.793511179747625, + 38.02155821625865, + 38.133700437840155, + 38.31625247765066 ], "5._48._0.075": [ - 1.5268463243731434, - 1.8679037053125456, - 2.162243131656478, - 2.5060808685786498, - 2.8001335427120204, - 3.1431081128315754, - 3.508967689277732, - 3.8452920087841305, - 4.396158399568936, - 4.790341907673497, - 5.1024668122352, - 5.589462598819013, - 5.963237889259346, - 6.930182846399339, - 7.9023401724775715, - 8.193762340376306, - 8.464899445380386, - 8.737487450753207, - 8.95476995829216, - 9.143990687370689, - 9.309650406466377, - 9.450109469695633, - 9.555748290333073, - 9.677192905925992, - 9.76062836275538, - 9.801755151911522, - 9.86854588921472 + 1.5268463243731447, + 1.8679037053125414, + 2.1622431316564765, + 2.5060808692140597, + 2.800135224494824, + 3.1433839270984025, + 3.513469396751802, + 3.8621179556292846, + 4.451219656904182, + 4.886561128559948, + 5.240199587194301, + 5.809847842388775, + 6.26344408449944, + 7.518616870518701, + 8.940005864344126, + 9.411236334932566, + 9.872783022528173, + 10.363567792694909, + 10.777936530758641, + 11.158778522227783, + 11.510354206494007, + 11.824429776842289, + 12.072559579449825, + 12.372632924465817, + 12.591629841892164, + 12.70507056594037, + 12.89972575539405 ], "5._96._0.075": [ - 2.2092619209324704, - 2.5553055497927706, - 2.8518815188696505, - 3.1998939940869224, - 3.5208213260912595, - 3.9833921153927623, - 4.597116326255696, - 5.192666633794937, - 6.133875980646579, - 6.772999136289317, - 7.25762498277739, - 7.974401186413238, - 8.493701931753968, - 9.71993303662497, - 10.812582732567138, - 11.11854192062693, - 11.395086505922585, - 11.666052948584051, - 11.877194636648637, - 12.058233088047688, - 12.214508475351074, - 12.345520563404403, - 12.443354501252804, - 12.555167327733807, - 12.631594925930047, - 12.669128294461094, - 12.729922063086406 + 2.209271810327403, + 2.5553235640825003, + 2.8519159608668145, + 3.2003855482875525, + 3.525326373648384, + 4.006720980573583, + 4.669196412845865, + 5.339071288188706, + 6.462340683680253, + 7.278349132391487, + 7.931540405615576, + 8.962554425321235, + 9.765595519833592, + 11.888514085738567, + 14.125581375456678, + 14.829810126908729, + 15.495741139368295, + 16.178515172762214, + 16.731539848143992, + 17.221867864622986, + 17.65623483659549, + 18.028091449607974, + 18.31094674820345, + 18.638303828411235, + 18.86612434806142, + 18.9798578169419, + 19.167551203109994 ] }, "logtime": [ @@ -3803,7 +4091,7 @@ 3.003 ] }, - "1_7": { + "1_25": { "bore_locations": [ [ 0.0, @@ -3832,153 +4120,225 @@ [ 30.0, 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 ] ], "g": { "5._192._0.08": [ - 2.8351635513735327, - 3.1868400887210777, - 3.518469948327196, - 4.007905391760889, - 4.560744629535112, - 5.401449083758796, - 6.486976321316337, - 7.494819690011772, - 8.990031148978208, - 9.939742486515406, - 10.62756995709885, - 11.598631317944045, - 12.272809342815531, - 13.785766062801317, - 15.068231886920891, - 15.419442920350987, - 15.734535049510566, - 16.041230270215344, - 16.27890182163994, - 16.481985532426044, - 16.65674348422391, - 16.802895065437415, - 16.911862557914205, - 17.036270572370665, - 17.12118489782945, - 17.16283345665093, - 17.230222114881137 + 2.8351702925909015, + 3.1873803069320994, + 3.5231696226449367, + 4.030481399539048, + 4.619522609052897, + 5.549193805173456, + 6.818587917404494, + 8.079227965006394, + 10.132976110462028, + 11.579551278994836, + 12.709201928579317, + 14.435055187044185, + 15.735707947015714, + 18.967005939675037, + 22.06957112333232, + 22.97981564069447, + 23.80961289606634, + 24.629184645818984, + 25.267933992315296, + 25.818090085870256, + 26.291511772845997, + 26.68662919196237, + 26.981729580306727, + 27.317714761628178, + 27.54799476781106, + 27.66166311939918, + 27.84748664705179 ], "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004349, - 2.1114679242247276, - 2.4511928330881467, - 2.788418838701112, - 3.044942971763282, - 3.386567629728472, - 3.6119230278460517, - 3.7911613045797923, - 4.078580049636962, - 4.307163752177449, - 4.941677435556674, - 5.663027618983758, - 5.901361759594423, - 6.135247696883413, - 6.383886230396662, - 6.59370507369637, - 6.785803776503792, - 6.962509782107197, - 7.119485626994295, - 7.242243538718094, - 7.389029028716575, - 7.493643635612574, - 7.5465023506515365, - 7.634332582782971 + 0.8740059532267971, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224723, + 2.451192833198135, + 2.788420389738297, + 3.045038524520596, + 3.3887512672472395, + 3.6188952613703376, + 3.804325305775034, + 4.105848398598836, + 4.349284654168841, + 5.043839828349951, + 5.873696217707763, + 6.159636168631479, + 6.447628291149841, + 6.763133089700157, + 7.038661351128249, + 7.299986890773831, + 7.550162336106925, + 7.782600103898503, + 7.973167433971227, + 8.215012804195908, + 8.401636569155801, + 8.503185029381335, + 8.6904308259697 ], "5._384._0.0875": [ - 3.487372589585155, - 3.998469801266941, - 4.5777474410051315, - 5.460776223461212, - 6.425674739213298, - 7.811448320008934, - 9.457393874786662, - 10.851633705797674, - 12.726622455189958, - 13.826818124689655, - 14.591252079696888, - 15.634857218384486, - 16.341099374278958, - 17.89012008611717, - 19.18120760165275, - 19.532466736275204, - 19.84756093006916, - 20.15403736620567, - 20.391581915199563, - 20.59447307028286, - 20.76914405185987, - 20.915308582552065, - 21.024277607388683, - 21.148765882915125, - 21.233696595705158, - 21.275322017056848, - 21.342617449775894 + 3.4933775214029796, + 4.024995467257823, + 4.644846295571922, + 5.627242930014972, + 6.758927376643568, + 8.512057958112573, + 10.837742607381948, + 13.070011336456053, + 16.53376213465702, + 18.854334173675525, + 20.598266453829414, + 23.140974025386207, + 24.966493672727083, + 29.174501943547362, + 32.82795743090862, + 33.83674020705184, + 34.73755999009746, + 35.61033798692983, + 36.2805401533977, + 36.852199557402635, + 37.340702296399364, + 37.74657841410071, + 38.04883695580883, + 38.392735551582184, + 38.627720455010184, + 38.74329621275265, + 38.931507389710845 ], "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125447, - 2.162243131656477, - 2.506080868699679, - 2.8001338630516033, - 3.14316064878727, - 3.509825052299018, - 3.848493949538661, - 4.406595353628653, - 4.808512554916006, - 5.128385046179502, - 5.630621991594365, - 6.018944136982413, - 7.036679243449652, - 8.083085612065275, - 8.402118479140187, - 8.701041197701302, - 9.003679581690063, - 9.246361952110863, - 9.458765264812914, - 9.64545370153571, - 9.80423770945946, - 9.923954658858502, - 10.061818993725646, - 10.156722307309312, - 10.203578162091253, - 10.279798091320455 + 1.5268463243731383, + 1.8679037053125402, + 2.1622431316564765, + 2.506080869222531, + 2.8001352469185923, + 3.1433876046302958, + 3.5135294287254393, + 3.8623425647399436, + 4.451958284594152, + 4.887857878066339, + 5.242064003331624, + 5.8128591471928885, + 6.267578787709766, + 7.526975253408407, + 8.955368234746953, + 9.429541824935413, + 9.894340406834004, + 10.389030492206563, + 10.807129303226773, + 11.191800065998057, + 11.54733464419291, + 11.865379817701488, + 12.117016424528465, + 12.421909149276905, + 12.645030076488485, + 12.760910700186884, + 12.960451519080586 ], "5._96._0.075": [ - 2.2092619209324726, - 2.555305550299042, - 2.8518822495528053, - 3.199976563484331, - 3.5216594589333883, - 3.987783469991948, - 4.610630051411952, - 5.219885841408891, - 6.193697119043065, - 6.863688145465759, - 7.37701355174114, - 8.145097648783063, - 8.708507627471517, - 10.06015942648566, - 11.28655314742143, - 11.632954167739143, - 11.94671528792384, - 12.254687309217946, - 12.494851774934968, - 12.700949413835472, - 12.87886828832538, - 13.02799852954206, - 13.13937721517926, - 13.266623199224691, - 13.353625807082219, - 13.396374577666606, - 13.465670536191942 + 2.2092718103274085, + 2.555323564117939, + 2.8519160120168783, + 3.200391328649437, + 3.525385066755577, + 4.007029492854211, + 4.670157119453648, + 5.3410376955918695, + 6.466828689743093, + 7.2853442513591675, + 7.940979510328468, + 8.97672376282244, + 9.784212087402047, + 11.922545306027317, + 14.182512016737254, + 14.895852566701084, + 15.57133264798879, + 16.26498617548411, + 16.82779658184618, + 17.327620512633175, + 17.77113099237226, + 18.151431970086875, + 18.441150115569517, + 18.776945077004044, + 19.011035585708875, + 19.12805846472729, + 19.32146420406816 ] }, "logtime": [ @@ -4011,7 +4371,7 @@ 3.003 ] }, - "1_8": { + "1_27": { "bore_locations": [ [ 0.0, @@ -4044,153 +4404,229 @@ [ 35.0, 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 + ], + [ + 125.0, + 0.0 + ], + [ + 130.0, + 0.0 ] ], "g": { "5._192._0.08": [ - 2.8351647217214677, - 3.186933876044517, - 3.519285736505398, - 4.011818497662372, - 4.570894108303604, - 5.426728791536699, - 6.54283296440728, - 7.591620694148268, - 9.17287427882817, - 10.194107684929786, - 10.941523251610322, - 12.00638612842619, - 12.751640249349293, - 14.436094492467918, - 15.871970204591033, - 16.265984796584448, - 16.619382638898305, - 16.963296056123465, - 17.22962699562798, - 17.457181743403964, - 17.652877641644146, - 17.81643860401857, - 17.938371584706154, - 18.07752195433133, - 18.172508033742663, - 18.21911029705349, - 18.294558020175877 + 2.835170486782816, + 3.1873958688893316, + 3.5233050305501425, + 4.031133048464014, + 4.621227217240194, + 5.553527306787878, + 6.828504557605653, + 8.097069844261203, + 10.169334004284242, + 11.633325588847116, + 12.779296782425806, + 14.535119913927199, + 15.862676320154982, + 19.178146296403025, + 22.39012650547752, + 23.33927833367518, + 24.206754831657502, + 25.065800419056774, + 25.736704226022514, + 26.31560021526555, + 26.814335249351625, + 27.230920086277475, + 27.54229046120604, + 27.8969307853053, + 28.140194828795572, + 28.260379983415643, + 28.457095216012135 ], "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615428, - 1.481384749141307, - 1.8198213217004344, - 2.1114679242247276, - 2.4511928331072417, - 2.788419107978398, - 3.0449595607775213, - 3.38694671903478, - 3.6131332285032456, - 3.793445501332113, - 4.083306271732066, - 4.314453820052616, - 4.959227826323579, - 5.698797092038951, - 5.945050639137389, - 6.187843159811322, - 6.447351967369248, - 6.667688198809891, - 6.870670508507129, - 7.058642033713825, - 7.226812270639648, - 7.359240903062616, - 7.518811155763976, - 7.633534711150006, - 7.691889342711376, - 7.78953283313596 + 0.8740059532267971, + 1.1958031759615417, + 1.4813847491413072, + 1.8198213217004335, + 2.111467924224724, + 2.4511928332013038, + 2.788420434418377, + 3.045041277070427, + 3.388814173366417, + 3.619096160602223, + 3.804704767765848, + 4.106635532833023, + 4.350502687098148, + 5.0468215745976766, + 5.879934495833406, + 6.167319237042168, + 6.456973845502078, + 6.774562673524841, + 7.052171668144201, + 7.31572632132504, + 7.56831730564961, + 7.803299482289213, + 7.9962176911426495, + 8.241502093854152, + 8.431284902445395, + 8.534845424103077, + 8.726810431811309 ], "5._384._0.0875": [ - 3.4884136311046037, - 4.003063355715507, - 4.589320170805375, - 5.489201774443061, - 6.481812737411748, - 7.926527425106713, - 9.675279758487836, - 11.185093060011493, - 13.249766296660328, - 14.475431511368184, - 15.331419463282488, - 16.503586351457493, - 17.298532622656356, - 19.042952677600642, - 20.49631606502745, - 20.891580909268864, - 21.245886489210218, - 21.59029727570618, - 21.85701793916289, - 22.084788611103733, - 22.28076589101648, - 22.444673214799938, - 22.566859934104503, - 22.706408405934326, - 22.801623258318443, - 22.84829984392765, - 22.923796795536 + 3.493550809431671, + 4.025761981571622, + 4.646795043843613, + 5.632137787526959, + 6.768891812150048, + 8.5336717390016, + 10.882324934867754, + 13.1451968743755, + 16.674719787490936, + 19.053118169692137, + 20.848382838518848, + 23.478461610822386, + 25.376600006843596, + 29.77973651808322, + 33.63117569588843, + 34.69845173187269, + 35.651983767967394, + 36.57617450782001, + 37.285650033116745, + 37.890885666944094, + 38.40785691796956, + 38.83718094118817, + 39.156886804528945, + 39.520524217237146, + 39.76904615078867, + 39.8913265589588, + 40.09060287122764 ], "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808687904506, - 2.800134103306287, - 3.143200050783419, - 3.510468107010462, - 3.8508963316091953, - 4.414438740817388, - 4.822188729027952, - 5.147920809779815, - 5.6617412665866, - 6.061172234912023, - 7.118222625355691, - 8.223977400646614, - 8.565926354152591, - 8.888368587760395, - 9.216982914172783, - 9.482070651932084, - 9.715283521502554, - 9.92114303118358, - 10.096861017270282, - 10.229732025255013, - 10.383086671728998, - 10.488908728979549, - 10.541255081907316, - 10.626567721596818 + 1.526846324373142, + 1.867903705312541, + 2.162243131656476, + 2.5060808692375884, + 2.800135286783076, + 3.143394142465318, + 3.5136361528324747, + 3.8627418869368393, + 4.453271692839796, + 4.890164115943647, + 5.245380358647602, + 5.818217400909063, + 6.274938164641301, + 7.541869897370922, + 8.982787014848215, + 9.462229647777457, + 9.93285756767762, + 10.434558007465046, + 10.85936246866269, + 11.25092610059461, + 11.613599687783031, + 11.938817149966185, + 12.19680440574113, + 12.510460104631044, + 12.741139322750914, + 12.861536092178424, + 13.07026927241733 ], "5._96._0.075": [ - 2.2092718103274045, - 2.555323562310493, - 2.851913403363865, - 3.200096530994641, - 3.522392018642154, - 3.991314729739165, - 4.621427261157848, - 5.2418623011263055, - 6.243476466214302, - 6.940573200551681, - 7.479616008236281, - 8.295144787010088, - 8.900299636780371, - 10.376719238156289, - 11.74301450802422, - 12.132732242709551, - 12.486853442375677, - 12.835330841652922, - 13.10754000849982, - 13.341321271536831, - 13.543201038346496, - 13.71239405971962, - 13.838714322240936, - 13.982915022417407, - 14.08146763778019, - 14.129887734480553, - 14.208373458997382 + 2.209271810327405, + 2.5553235641809455, + 2.851916102950318, + 3.200401604849893, + 3.5254894106389445, + 4.007577996665169, + 4.671865560131055, + 5.344535703149877, + 6.4748183277903015, + 7.297803925222143, + 7.957800385627323, + 9.00199741444542, + 9.817442909517528, + 11.983449865156665, + 14.284717846103195, + 15.014538946276645, + 15.70734181369466, + 16.420798881633196, + 17.001511406475736, + 17.51879636984451, + 17.979231662667516, + 18.375281081087874, + 18.677895602369684, + 19.029684746436708, + 19.27578094414583, + 19.399150448745555, + 19.60366550891927 ] }, "logtime": [ @@ -4223,7 +4659,7 @@ 3.003 ] }, - "1_9": { + "1_28": { "bore_locations": [ [ 0.0, @@ -4260,153 +4696,229 @@ [ 40.0, 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351656319927545, - 3.1870068219033163, - 3.519920275456365, - 4.014863864275213, - 4.578804079347618, - 5.446497302574992, - 6.5867638892224605, - 7.668210630295387, - 9.31948595678537, - 10.400751592603127, - 11.199460533416461, - 12.347208567557189, - 13.156859528019162, - 15.000946441179334, - 16.583279549015096, - 17.01857367752908, - 17.4089778114082, - 17.788893833730206, - 18.0829461087665, - 18.334181903923373, - 18.55012717027752, - 18.730511529439973, - 18.864972877443385, - 19.018358910344357, - 19.12307397596743, - 19.174464676721957, - 19.2577123592597 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 + ], + [ + 125.0, + 0.0 + ], + [ + 130.0, + 0.0 + ], + [ + 135.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351705734756507, + 3.187402816193764, + 3.52336548098413, + 4.031423986906555, + 4.621988410484003, + 5.555463328098155, + 6.832938430563296, + 8.105054142546754, + 10.185633120059142, + 11.657461943623746, + 12.810790568693324, + 14.580161985969752, + 15.91991052394946, + 19.273735742794045, + 22.536101616256527, + 23.503414237307084, + 24.388581848509915, + 25.266286128883614, + 25.952493147895396, + 26.54514467077048, + 27.056055071032482, + 27.48300838556064, + 27.802262719483053, + 28.16596715023576, + 28.415557245942036, + 28.538924947196584, + 28.740973291799257 ], "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833122094, - 2.7884193174162886, - 3.04497246334593, - 3.3872415704645307, - 3.6140745702022876, - 3.7952224531880465, - 4.086984505796733, - 4.320130426044472, - 4.9729318086172745, - 5.726847809033363, - 5.979358867048692, - 6.229217031584646, - 6.497391994910775, - 6.72617189207539, - 6.937966719710192, - 7.135171064256747, - 7.3126583934509215, - 7.4532752755923175, - 7.623914203819442, - 7.747637887561994, - 7.810998147346106, - 7.9178111669112 + 0.8740059532267972, + 1.195803175961542, + 1.4813847491413068, + 1.819821321700434, + 2.1114679242247245, + 2.451192833202719, + 2.78842045436484, + 3.045042505887342, + 3.388842256509229, + 3.619185848717624, + 3.804874174998917, + 4.106986961476761, + 4.351046536464688, + 5.048153420479637, + 5.882722583630704, + 6.170753693780705, + 6.461152440443229, + 6.779674637481651, + 7.0582161146369415, + 7.322770397649632, + 7.576445433301732, + 7.812570447827001, + 8.00654540606352, + 8.253377453844312, + 8.444583483240208, + 8.549051223756079, + 8.74314986056589 ], "5._384._0.0875": [ - 3.489223759869314, - 4.006639482911057, - 4.598343276007638, - 5.511446901966879, - 6.525963758174213, - 8.017847288010064, - 9.850905469534082, - 11.459298557513014, - 13.693400435541571, - 15.035278395984449, - 15.977598076151251, - 17.272541012503424, - 18.153014168043356, - 20.087039880660246, - 21.698451737439473, - 22.13661438713422, - 22.529104227366194, - 22.91042431111111, - 23.205490461365894, - 23.457425178969224, - 23.674073103378994, - 23.85517602846363, - 23.99017047005815, - 24.144303566541343, - 24.249479358635817, - 24.30105041601473, - 24.384501702015786 + 3.493628175709517, + 4.026104218976515, + 4.64766530931896, + 5.634324822779097, + 6.773347026823234, + 8.54334831493959, + 10.902324362210345, + 13.17899246276733, + 16.738313479394755, + 19.143022402426507, + 20.9617414804728, + 23.631990081949283, + 25.563786847620488, + 30.058542102576936, + 34.00473587190203, + 35.10031211911839, + 36.079426133864274, + 37.02863298526988, + 37.7572438918384, + 38.37885747496043, + 38.90971919722473, + 39.35048379208872, + 39.67870412968809, + 40.05197280831217, + 40.307103520849864, + 40.43265975649582, + 40.63734956518062 ], "5._48._0.075": [ - 1.526846324373141, - 1.8679037053125445, - 2.1622431316564743, - 2.5060808688610527, - 2.800134290171044, - 3.1432306967978354, - 3.510968279902779, - 3.8527654002068767, - 4.420548459229536, - 4.832854404892467, - 5.163173093427485, - 5.686094377701076, - 6.094284879986048, - 7.18264666289096, - 8.336585270179654, - 8.697625890919033, - 9.039982296550278, - 9.390985403061684, - 9.675748443344334, - 9.927540494293723, - 10.150785408708634, - 10.342080301255882, - 10.487197918838648, - 10.655135183964207, - 10.77134700075032, - 10.82895715943251, - 10.923049524254044 + 1.5268463243731423, + 1.867903705312544, + 2.162243131656476, + 2.506080869244314, + 2.80013530457972, + 3.1433970611418847, + 3.5136837977703896, + 3.8629201628464727, + 4.453858156652562, + 4.891194060737777, + 5.246861634264923, + 5.820611473360854, + 6.278227239051302, + 7.548533917870565, + 8.99507233716158, + 9.476882539160453, + 9.950132909465063, + 10.454991146085717, + 10.88282026798728, + 11.277497099415939, + 11.643399968842882, + 11.971867332066365, + 12.232737676618205, + 12.550384829940361, + 12.784529878033535, + 12.907015973048535, + 13.120069050856403 ], "5._96._0.075": [ - 2.209271810327404, - 2.5553235626058286, - 2.851913829614357, - 3.200144700434344, - 3.5228810369142374, - 3.9938798036542758, - 4.629352674794193, - 5.257913589969824, - 6.279213384934956, - 6.9952773092555445, - 7.552289038871843, - 8.401007319695614, - 9.035923080498607, - 10.603863876776305, - 12.079333118352304, - 12.504253880805331, - 12.891518221104416, - 13.273615481615817, - 13.572592520008799, - 13.829730304265892, - 14.051931208170306, - 14.238218102995257, - 14.377356608283858, - 14.536178758759824, - 14.64477430111061, - 14.698160519875215, - 14.784765590895411 + 2.209271810327406, + 2.5553235642090715, + 2.8519161435456, + 3.2004061924400253, + 3.5255359929701253, + 4.007822879950554, + 4.6726284709245345, + 5.346098211912283, + 6.478389666968315, + 7.303376179773238, + 7.96532637875014, + 9.013315016609234, + 9.832334010365152, + 12.0108079106571, + 14.330762256347034, + 15.068058544123545, + 15.768739135465797, + 16.491228570390565, + 17.08014142984534, + 17.60546048184383, + 18.07373003453598, + 18.477120432349174, + 18.78579020506179, + 19.145153345286918, + 19.396993240493753, + 19.523422905332733, + 19.733338968088553 ] }, "logtime": [ @@ -4439,234 +4951,270 @@ 3.003 ] }, - "2_10": { + "1_29": { "bore_locations": [ [ 0.0, 0.0 ], [ - 0.0, - 5.0 + 5.0, + 0.0 ], [ - 0.0, - 10.0 + 10.0, + 0.0 ], [ - 0.0, - 15.0 + 15.0, + 0.0 ], [ - 0.0, - 20.0 + 20.0, + 0.0 ], [ - 0.0, - 25.0 + 25.0, + 0.0 ], [ - 0.0, - 30.0 + 30.0, + 0.0 ], [ - 0.0, - 35.0 + 35.0, + 0.0 ], [ - 0.0, - 40.0 + 40.0, + 0.0 ], [ - 0.0, - 45.0 + 45.0, + 0.0 ], [ - 5.0, + 50.0, 0.0 ], [ - 5.0, - 5.0 + 55.0, + 0.0 ], [ - 5.0, - 10.0 - ], + 60.0, + 0.0 + ], [ - 5.0, - 15.0 + 65.0, + 0.0 ], [ - 5.0, - 20.0 + 70.0, + 0.0 ], [ - 5.0, - 25.0 + 75.0, + 0.0 ], [ - 5.0, - 30.0 + 80.0, + 0.0 ], [ - 5.0, - 35.0 + 85.0, + 0.0 ], [ - 5.0, - 40.0 + 90.0, + 0.0 ], [ - 5.0, - 45.0 + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 + ], + [ + 125.0, + 0.0 + ], + [ + 130.0, + 0.0 + ], + [ + 135.0, + 0.0 + ], + [ + 140.0, + 0.0 ] ], "g": { "5._192._0.08": [ - 2.8351991469769, - 3.1897534909045384, - 3.5462612127065505, - 4.165346312107027, - 5.002616329336359, - 6.470554507992012, - 8.571173310445168, - 10.65082372359197, - 13.905563753564394, - 16.071489070674993, - 17.684516279019636, - 20.014091404434257, - 21.66558600985996, - 25.423102269743364, - 28.633684825612843, - 29.514427826915952, - 30.30045824758507, - 31.0623256184991, - 31.648600086899247, - 32.148777787873556, - 32.5769929299841, - 32.93343246797113, - 33.198976834733706, - 33.50136861552825, - 33.70795368596633, - 33.80949652010646, - 33.974530352437924 + 2.8351706541896635, + 3.187409284374913, + 3.523421762686986, + 4.031694873805318, + 4.622697222782923, + 5.5572666205893695, + 6.837070299717256, + 8.112498467215886, + 10.20084602464598, + 11.680006280900084, + 12.84022495377408, + 14.622305141775325, + 15.973507186987108, + 19.363483193746248, + 22.67361816135384, + 23.658286762416957, + 24.560423073958614, + 25.456099911724845, + 26.157113342404273, + 26.763123451818167, + 27.285897463832264, + 27.722982851392576, + 28.049959160411973, + 28.42255875334268, + 28.678369123217795, + 28.804871222269455, + 29.01218145562214 ], "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615422, - 1.4813847491413077, - 1.8198213217004353, - 2.1114679242247267, - 2.4511928336686477, - 2.7884270258106443, - 3.0454499053115835, - 3.3989047567863793, - 3.654887762132971, - 3.8782412065362943, - 4.274881577540001, - 4.621494849663018, - 5.696502493814167, - 7.055781734610631, - 7.527997342671619, - 8.000258200538303, - 8.511307146049397, - 8.94960365640068, - 9.356770526831879, - 9.736380136576985, - 10.07798774386081, - 10.348508748622342, - 10.675599750982503, - 10.912472275504095, - 11.034029278685303, - 11.239525434602365 + 0.8740059532267971, + 1.1958031759615424, + 1.4813847491413064, + 1.819821321700434, + 2.1114679242247245, + 2.4511928332040336, + 2.7884204729356936, + 3.0450436499582687, + 3.3888684029134755, + 3.6192693519775085, + 3.805031901504122, + 4.107314169994832, + 4.3515529259638015, + 5.049393808655655, + 5.885320135300333, + 6.173953800583426, + 6.465046453846793, + 6.784439318070044, + 7.063850963690024, + 7.329338437561237, + 7.584025931789781, + 7.821218840126646, + 8.016181716325347, + 8.264461586181655, + 8.456999922105739, + 8.562317328689025, + 8.758416927792833 ], "5._384._0.0875": [ - 3.5234313882275057, - 4.18621884622795, - 5.082828535054123, - 6.648539510592799, - 8.524672288795037, - 11.407014036342856, - 15.052051705930182, - 18.31371908314974, - 22.91322836951863, - 25.707205368568737, - 27.67810471640075, - 30.386095209426983, - 32.226928486167274, - 36.24259959767141, - 39.559600445103385, - 40.45769918609362, - 41.259258990121275, - 42.03557354772715, - 42.63380669065918, - 43.144213037543096, - 43.58202232326349, - 43.947207667040026, - 44.219398693423685, - 44.52993320177161, - 44.74199748090885, - 44.84610539171864, - 45.01497707169361 + 3.4937002094623097, + 4.026422877951178, + 4.648475716663186, + 5.636362044948955, + 6.777498768208755, + 8.552372886995911, + 10.92099842365542, + 13.210586298648328, + 16.79789588891411, + 19.22738050353652, + 21.06823895227275, + 23.776540618330444, + 25.740371760613936, + 30.3230134207313, + 34.361221429277656, + 35.48448048648546, + 36.48867185092956, + 37.46244657695228, + 38.20986975877449, + 38.84759824680781, + 39.39213131688473, + 39.84415678626316, + 40.180759253539364, + 40.563508941344715, + 40.825147801891845, + 40.953931739352655, + 41.16396023436924 ], "5._48._0.075": [ - 1.5268463243731432, - 1.8679037053125407, - 2.1622431316564765, - 2.506080871459159, - 2.8001411676476406, - 3.1443713066571433, - 3.5313889767378863, - 3.940088503760774, - 4.7444982960048785, - 5.406355670159458, - 5.9696851789601215, - 6.903215173759388, - 7.656680527891103, - 9.722680603679587, - 11.955138820788742, - 12.659611735984495, - 13.327440806397332, - 14.012450060044808, - 14.567306504957273, - 15.057911845932214, - 15.491714460448948, - 15.862170885282818, - 16.14269238137118, - 16.46572995289578, - 16.688950295165203, - 16.79976400390867, - 16.9813285308534 + 1.5268463243731383, + 1.867903705312542, + 2.162243131656476, + 2.506080869250573, + 2.800135321149011, + 3.1433997785305388, + 3.5137281569877223, + 3.8630861477899723, + 4.454404241755811, + 4.892153182629838, + 5.248241174775111, + 5.822841545223678, + 6.281291501796825, + 7.5547464866991305, + 9.006535358339379, + 9.490558398916365, + 9.966261574528883, + 10.474075591937314, + 10.904738180546499, + 11.302333717231564, + 11.671266866330049, + 12.00278688496421, + 12.26636816070333, + 12.587775052150556, + 12.825196490990638, + 12.949667809965332, + 13.166865502665264 ], "5._96._0.075": [ - 2.2092718103274116, - 2.5553235734741278, - 2.8519295197148, - 3.2019465798473306, - 3.5427882589935717, - 4.118194248576405, - 5.05407889856666, - 6.105211761938466, - 7.958297064223382, - 9.316513763584762, - 10.392361400931774, - 12.051416521178915, - 13.303983720198387, - 16.4144548178818, - 19.355442379883744, - 20.20550552660126, - 20.97775910486863, - 21.73795713551596, - 22.329783919789033, - 22.83792190039124, - 23.274953317284055, - 23.639637381018275, - 23.911551627956943, - 24.220802859709742, - 24.43222119458885, - 24.536319181072194, - 24.705808136247086 + 2.2092718103274036, + 2.555323564235259, + 2.8519161813412093, + 3.200410463644995, + 3.5255793628601486, + 4.0080508833419, + 4.673338885996601, + 5.347553460170311, + 6.481717227686606, + 7.308569644909852, + 7.9723426117566065, + 9.023871425615866, + 9.846229290722574, + 12.036373373797403, + 14.373865148544661, + 15.118187296153739, + 15.826283199523534, + 16.557288915181854, + 17.15395200359406, + 17.686883232862897, + 18.162601632609462, + 18.57300134542715, + 18.887478761491426, + 19.25414570195323, + 19.511561809525343, + 19.64097806734624, + 19.8561951026781 ] }, "logtime": [ @@ -4699,170 +5247,166 @@ 3.003 ] }, - "2_2": { + "1_3": { "bore_locations": [ [ 0.0, 0.0 ], - [ - 0.0, - 5.0 - ], [ 5.0, 0.0 ], [ - 5.0, - 5.0 + 10.0, + 0.0 ] ], "g": { "5._192._0.08": [ - 2.8351729237398393, - 3.187625001099388, - 3.526650044183149, - 4.058948328555595, - 4.695595826630846, - 5.645955947827803, - 6.75199902668803, - 7.654056125477437, - 8.8295373343034, - 9.505225082070822, - 9.970821690581543, - 10.604517453302051, - 11.032316935322866, - 11.972865896385606, - 12.759872798830232, - 12.974553793259052, - 13.167610267540615, - 13.355840260878113, - 13.502187407405124, - 13.627318928756589, - 13.735282746334141, - 13.825809741457272, - 13.893347166070974, - 13.970596790045226, - 14.023313509428306, - 14.049144330457892, - 14.090854715886588 - ], - "5._24._0.075": [ - 0.8740013793970963, - 1.1957934696806856, - 1.4813667488882372, - 1.8197853662506762, - 2.1114044341807157, - 2.4510705253864713, - 2.788187524831072, - 3.044696167323624, - 3.389301466509918, - 3.6238334445562486, - 3.8172234620513863, - 4.139359785435122, - 4.401879357678648, - 5.121352318381859, - 5.866280620300906, - 6.090065304640391, - 6.298807049848143, - 6.509232545774595, - 6.6778214753752865, - 6.825248855115401, - 6.955178640279667, - 7.066160722878991, - 7.150130631281159, - 7.247402603037865, - 7.314637831281445, - 7.347899492449007, - 7.402074061153792 + 2.8351510677223124, + 3.185839705255709, + 3.509771540026878, + 3.966330673031906, + 4.453898436646452, + 5.141063225581686, + 5.935299849182006, + 6.591064822401665, + 7.4573397084792585, + 7.960204506246263, + 8.308428386398862, + 8.784434241747197, + 9.106869195173443, + 9.819004468262776, + 10.417553200063558, + 10.581112939206577, + 10.728355197827176, + 10.872032730663653, + 10.983845567697387, + 11.079470322916373, + 11.162021309221977, + 11.23127300322087, + 11.282940091757375, + 11.342050731061262, + 11.382382337920458, + 11.402138935562201, + 11.434024927322461 + ], + "5._24._0.075": [ + 0.8740013793970963, + 1.1957934696806856, + 1.4813667488882378, + 1.819785366250676, + 2.1114044341807157, + 2.4510705250300893, + 2.788182499477228, + 3.0443852106901215, + 3.381782256847064, + 3.5979049641354917, + 3.7653169707122243, + 4.025976647688318, + 4.226681022892984, + 4.7519775047763355, + 5.289276786959019, + 5.452176058421596, + 5.605172805309302, + 5.760500989302295, + 5.885820943128873, + 5.9960544830599956, + 6.093756080482953, + 6.177649611559798, + 6.241387660406869, + 6.315575367344118, + 6.367049048904869, + 6.3925661935266564, + 6.434203924751947 ], "5._384._0.0875": [ - 3.498202657558257, - 4.059507710829742, - 4.728549908300283, - 5.718298478054254, - 6.695598384635395, - 7.918919559501185, - 9.175209287898596, - 10.134696989496492, - 11.3395882766406, - 12.019506670062515, - 12.48495026821673, - 13.115725677557018, - 13.540591400366639, - 14.474053667337763, - 15.255546352872228, - 15.468670821792806, - 15.660444883601343, - 15.847432011925115, - 15.992846228666961, - 16.117138946341278, - 16.22438283629357, - 16.31430880283502, - 16.381374505740233, - 16.45808138679694, - 16.51039562508549, - 16.536012812409567, - 16.577355525545745 + 3.4763066788959396, + 3.949772974187067, + 4.456260341450167, + 5.169408748681231, + 5.871115554030923, + 6.760870364124674, + 7.687802150819135, + 8.402209462252888, + 9.30497492062296, + 9.81638347479816, + 10.167150006594197, + 10.64346476548816, + 10.964771566054742, + 11.672408151280557, + 12.266242640000142, + 12.42833604434291, + 12.574279870681229, + 12.716647611846046, + 12.827426487106704, + 12.92212131446228, + 13.003853316799084, + 13.072405876226359, + 13.123529770395518, + 13.182008691940712, + 13.22188408446242, + 13.241405445087377, + 13.272897556367255 ], "5._48._0.075": [ 1.5268359332879173, - 1.8678839385147374, - 2.1622087383456443, - 2.506015111231376, - 2.800022215479672, - 3.143265912621415, - 3.5156496031342086, - 3.876810167448651, - 4.510598902563926, - 4.97292547403106, - 5.3314780742753, - 5.86690818888861, - 6.254410228495219, - 7.165237276197894, - 7.97067816717318, - 8.195759462193532, - 8.399726151723728, - 8.600223537255848, - 8.757233427901257, - 8.892268671966473, - 9.009391745097531, - 9.108052422862833, - 9.181950800737681, - 9.266735500969588, - 9.324840376214043, - 9.353415812152894, - 9.399728543565555 + 1.867883938514737, + 2.1622087383456456, + 2.5060151095371266, + 2.8000177309803878, + 3.1425235015701425, + 3.50253927551839, + 3.8221513912839025, + 4.3219203208202615, + 4.662094623549054, + 4.920779665355623, + 5.305197220055999, + 5.584574633595157, + 6.250240097046942, + 6.8508100598561175, + 7.02032416411666, + 7.174704624548563, + 7.3270420254642925, + 7.446781361568329, + 7.54998768102832, + 7.639728763200551, + 7.715491511685074, + 7.772309526957078, + 7.837607291416172, + 7.882394856115053, + 7.904425286274421, + 7.940124399290625 ], "5._96._0.075": [ - 2.209261920932471, - 2.555305553336681, - 2.8518866359196213, - 3.2004882339226746, - 3.5277476508021492, - 4.02978044724101, - 4.745286216946609, - 5.439130433328325, - 6.459200418166225, - 7.08807746324128, - 7.534287055485237, - 8.154677466719678, - 8.57963145524655, - 9.525731186489454, - 10.324498118789299, - 10.543323487480553, - 10.740258694731052, - 10.932543867544993, - 11.082214965494755, - 11.210350854440943, - 11.321010221886622, - 11.413873719757635, - 11.483221068226714, - 11.562584991721117, - 11.616811000251728, - 11.64341307682708, - 11.68642648116794 + 2.2092619209324704, + 2.5553055462488583, + 2.8518764040875877, + 3.1993160118959567, + 3.514955741603026, + 3.9527389763946745, + 4.503681602688366, + 5.006861923779691, + 5.738944199243816, + 6.194547647991565, + 6.520747151603693, + 6.97831807732745, + 7.294240982610546, + 8.004586646061995, + 8.61032697321235, + 8.776955960336549, + 8.927246070742218, + 9.074228802677638, + 9.188836957686432, + 9.287022505975273, + 9.37190962826258, + 9.4432139118431, + 9.496477965097244, + 9.557471885031982, + 9.599147261960589, + 9.619587423820962, + 9.652619821039247 ] }, "logtime": [ @@ -4895,186 +5439,274 @@ 3.003 ] }, - "2_4": { + "1_30": { "bore_locations": [ [ 0.0, 0.0 ], [ - 0.0, - 5.0 + 5.0, + 0.0 ], [ - 0.0, - 10.0 + 10.0, + 0.0 ], [ - 0.0, - 15.0 + 15.0, + 0.0 ], [ - 5.0, + 20.0, 0.0 ], [ - 5.0, - 5.0 + 25.0, + 0.0 ], [ - 5.0, - 10.0 + 30.0, + 0.0 ], [ - 5.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835189313206151, - 3.1889552931299114, - 3.538903600312914, - 4.125245273292659, - 4.885340092341224, - 6.143016730599865, - 7.795423613565886, - 9.27950543596083, - 11.353436747367905, - 12.596840822504834, - 13.468067160431177, - 14.664470966131761, - 15.476574467940123, - 17.259801418963622, - 18.744684236603973, - 19.148663438954305, - 19.510655248879416, - 19.862646518364635, - 20.135320763803648, - 20.368260758547958, - 20.56874655291972, - 20.73647327867843, - 20.86155289126196, - 21.004430911305807, - 21.101968292861095, - 21.14980656381263, - 21.2272004431566 + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 + ], + [ + 125.0, + 0.0 + ], + [ + 130.0, + 0.0 + ], + [ + 135.0, + 0.0 + ], + [ + 140.0, + 0.0 + ], + [ + 145.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835170729522757, + 3.187415321344995, + 3.523474292506245, + 4.031947713041556, + 4.62335888111881, + 5.558950381151416, + 6.840930003772339, + 8.119455801001529, + 10.215077785141705, + 11.701111047703169, + 12.867795468864816, + 14.661820364930357, + 16.023802143635955, + 19.44790809805366, + 22.803376979043826, + 23.804637855137987, + 24.72305227834873, + 25.63604012748017, + 26.351377716937332, + 26.97035901427703, + 27.504691569044354, + 27.951677620174447, + 28.28621759803615, + 28.667547917406786, + 28.929476058653634, + 29.059066035133572, + 29.27156958548801 ], "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615428, + 0.874005953226797, + 1.1958031759615433, 1.481384749141307, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833508249, - 2.7884247637014252, - 3.045310119636185, - 3.3955843569013524, - 3.6436674974056684, - 3.855925700780031, - 4.224811171067863, - 4.5397453647967625, - 5.475296090778514, - 6.570578898325478, - 6.92687615541592, - 7.270320655734392, - 7.627303621650882, - 7.920731222490932, - 8.182500131978642, - 8.41680285150039, - 8.619260142203307, - 8.773624250962664, - 8.953159155105311, - 9.077674641056438, - 9.139455677919402, - 9.240304416029538 + 1.8198213217004335, + 2.1114679242247254, + 2.4511928332052646, + 2.7884204902684795, + 3.0450447177578166, + 3.3888928062501393, + 3.619347288816046, + 3.805179115109707, + 4.1076195788214935, + 4.352025597043063, + 5.050551846965407, + 5.887746036979405, + 6.17694275195782, + 6.468683999559705, + 6.788890940656452, + 7.069116482994202, + 7.33547711651833, + 7.591112337940916, + 7.829305328285832, + 8.025193797504635, + 8.274831010723839, + 8.468619167320599, + 8.574733981361298, + 8.772713568546413 ], "5._384._0.0875": [ - 3.513927363245156, - 4.138323236620862, - 4.946934659382122, - 6.276023786386213, - 7.745123433015339, - 9.775152078177463, - 12.027507501059624, - 13.821671148549264, - 16.122385823361906, - 17.4324968039469, - 18.331112481880304, - 19.547113368196523, - 20.364969660768274, - 22.15086918925759, - 23.635424304237905, - 24.039034587050264, - 24.401264702494476, - 24.753712834574596, - 25.027064089428094, - 25.260592821811322, - 25.461753936083383, - 25.63018173599274, - 25.755780013529776, - 25.899333215570362, - 25.997285001804187, - 26.04529040415504, - 26.122885369700576 + 3.4937674436450186, + 4.026720314006036, + 4.649232236236229, + 5.638264337578413, + 6.781377021642147, + 8.560809201173699, + 10.938474621704195, + 13.240186684868874, + 16.853834746558, + 19.30668972088395, + 21.168477457253395, + 23.9128688275948, + 25.907210467217954, + 30.57417561823812, + 34.70172268690635, + 35.85205728217887, + 36.88082953512335, + 37.87873209820619, + 38.64465197155618, + 39.298239375826554, + 39.85623151696442, + 40.319344457193374, + 40.6642015802873, + 41.056287859123266, + 41.32433826215072, + 41.456303749704105, + 41.67159926179055 ], "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808706966746, - 2.800139149366015, - 3.1440381898974845, - 3.5256483410086874, - 3.916608969868303, - 4.6564326435683565, - 5.2408522575199115, - 5.722156280418049, - 6.488021692642983, - 7.078108817637764, - 8.576263856323838, - 10.010562551630642, - 10.425304910732308, - 10.804721194183715, - 11.180326309928033, - 11.475509468067585, - 11.729855694876939, - 11.950339156563452, - 12.135706243920572, - 12.274298805136475, - 12.43266659756452, - 12.540977602810342, - 12.594230671057593, - 12.680561756879944 + 1.5268463243731423, + 1.8679037053125422, + 2.162243131656476, + 2.5060808692564143, + 2.800135336613675, + 3.143402314760063, + 3.5137695590432787, + 3.863241070484692, + 4.454913979545062, + 4.893048543865527, + 5.249529113025349, + 5.824923909987449, + 6.284153239956393, + 7.560551974335891, + 9.017255957479012, + 9.503351782254454, + 9.9813540446412, + 10.491940580728466, + 10.925405895689684, + 11.32562891707915, + 11.69739982973214, + 12.031786551956115, + 12.297916362763074, + 12.622869718027074, + 12.863386414838612, + 12.989744427765839, + 13.210917845983817 ], "5._96._0.075": [ - 2.209271810327405, - 2.5553235702845147, - 2.851924915529097, - 3.201421474439214, - 3.5371855730616306, - 4.085002516161643, - 4.9363362454780155, - 5.844581988979856, - 7.333675535782044, - 8.340589006658128, - 9.091921499272008, - 10.179343803963988, - 10.948160171270874, - 12.705528852454755, - 14.213545899477472, - 14.628526877105443, - 15.001108095533844, - 15.364261803956104, - 15.645980395169984, - 15.886802623855722, - 16.09410089941256, - 16.267481710205853, - 16.396752054083837, - 16.544255556142314, - 16.644951440401478, - 16.694366889837227, - 16.774367453977067 + 2.209271810327404, + 2.555323564259701, + 2.8519162166171115, + 3.2004144501032696, + 3.5256198415402134, + 4.008263693996773, + 4.674002043453629, + 5.348912125933494, + 6.484825146176308, + 7.3134216736416935, + 7.978899176880267, + 9.033740929664344, + 9.85922539546581, + 12.06031680582134, + 14.414299600452965, + 15.165237362117129, + 15.880325170450968, + 16.619372896706004, + 17.223369978391208, + 17.763520585005683, + 18.24632588197106, + 18.66342042293434, + 18.983468458979562, + 19.357177922820906, + 19.6200067043803, + 19.75233733998025, + 19.972756956369107 ] }, "logtime": [ @@ -5107,194 +5739,278 @@ 3.003 ] }, - "2_5": { + "1_31": { "bore_locations": [ [ 0.0, 0.0 ], [ - 0.0, - 5.0 + 5.0, + 0.0 ], [ - 0.0, - 10.0 + 10.0, + 0.0 ], [ - 0.0, - 15.0 + 15.0, + 0.0 ], [ - 0.0, - 20.0 + 20.0, + 0.0 ], [ - 5.0, + 25.0, 0.0 ], [ - 5.0, - 5.0 + 30.0, + 0.0 ], [ - 5.0, - 10.0 + 35.0, + 0.0 ], [ - 5.0, - 15.0 + 40.0, + 0.0 ], [ - 5.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351925911221576, - 3.1892213571751724, - 3.541355680931138, - 4.138584767756017, - 4.9241374783226926, - 6.249826317837372, - 8.042260934494504, - 9.703216610321878, - 12.09809062521322, - 13.56908007334359, - 14.612006032564038, - 16.055720129237326, - 17.041446513509268, - 19.21235807125101, - 21.021394579795135, - 21.51348253987512, - 21.953838825026494, - 22.381596137133617, - 22.71246057740695, - 22.995009669704974, - 23.237929131473347, - 23.440952165864083, - 23.592323435875723, - 23.765132002398985, - 23.883117319556238, - 23.9410075258365, - 24.034741663406493 + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 + ], + [ + 125.0, + 0.0 + ], + [ + 130.0, + 0.0 + ], + [ + 135.0, + 0.0 + ], + [ + 140.0, + 0.0 + ], + [ + 145.0, + 0.0 + ], + [ + 150.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351707999956375, + 3.1874209688340143, + 3.5235234335058956, + 4.032184250090117, + 4.623977939409734, + 5.560526113295022, + 6.844543575988252, + 8.125972414876957, + 10.228420342879218, + 11.72090983363596, + 12.893673659983115, + 14.698945901746974, + 16.071091150804005, + 19.527470351950363, + 22.92600623597834, + 23.943135268521328, + 24.877168356306644, + 25.806830169942792, + 26.53602426839845, + 27.167598950538515, + 27.713191586696666, + 28.16985169213015, + 28.51180047853234, + 28.901701243342792, + 29.169647666252818, + 29.30228049659512, + 29.51991123135962 ], "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961543, - 1.4813847491413061, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833561717, - 2.788425517737825, - 3.045356714841056, - 3.3966911071229466, - 3.6474066614447547, - 3.8633595181679907, - 4.24146678775765, - 4.566884714356566, - 5.547880470514063, - 6.726814251230247, - 7.118959710629289, - 7.50128704873647, - 7.9035098800175545, - 8.238003360525568, - 8.5395714881233, - 8.812074243127194, - 9.049545264964225, - 9.231894169168777, - 9.445246167913844, - 9.59406803876897, - 9.66821594998837, - 9.789711570773129 + 0.874005953226797, + 1.1958031759615426, + 1.4813847491413075, + 1.819821321700434, + 2.111467924224724, + 2.451192833206413, + 2.7884205064830305, + 3.045045716667082, + 3.3889156352007053, + 3.6194201978758245, + 3.805316832986985, + 4.1079052962739, + 4.352467808949108, + 5.051635472764212, + 5.890016758642696, + 6.179740779353468, + 6.472089606416639, + 6.793059376511488, + 7.074047829651038, + 7.341227201397993, + 7.597751430860609, + 7.836882947171558, + 8.03364039671905, + 8.284552689314712, + 8.479515600105112, + 8.586380230437612, + 8.78612927332769 ], "5._384._0.0875": [ - 3.517089669530491, - 4.154236578069029, - 4.991813562490588, - 6.397124777871605, - 7.993192537890449, - 10.273204407311878, - 12.894363852555866, - 15.03591773423202, - 17.826301894246654, - 19.428894473358316, - 20.531330089142955, - 22.024350568112386, - 23.028917741747733, - 25.218676239030803, - 27.034574164062334, - 27.527694270576607, - 27.969766769490864, - 28.399509205537253, - 28.732408761913508, - 29.016742293317094, - 29.261480255157917, - 29.466255352215995, - 29.61894760132361, - 29.793411897991778, - 29.91247707075819, - 29.970849669315502, - 30.06526432438584 + 3.493830342481267, + 4.026998579005837, + 4.649940069954882, + 5.640044675895824, + 6.785007948143941, + 8.568712956342962, + 10.954864614834113, + 13.267976460264022, + 16.906454161743053, + 19.381389684025184, + 21.26299128303932, + 24.04164985876534, + 26.065072306465883, + 30.812963223187857, + 35.02724049251235, + 36.204053507186416, + 37.25691810059146, + 38.27851616938577, + 39.062624124006625, + 39.73182098836914, + 40.30306626993099, + 40.77709912368774, + 41.13008796677949, + 41.53137186947526, + 41.805740969961185, + 41.940843700165914, + 42.16133749476193 ], "5._48._0.075": [ - 1.5268463243731425, - 1.8679037053125433, - 2.1622431316564765, - 2.5060808709508366, - 2.8001398221265577, - 3.1441492286179065, - 3.527561651194066, - 3.9244278621678506, - 4.685625175731641, - 5.295453920390567, - 5.803427043965115, - 6.6229181920128095, - 7.264275168426223, - 8.932368370759292, - 10.58456660789766, - 11.071975122419524, - 11.520931091653425, - 11.96807575491938, - 12.320962857674967, - 12.626044874588079, - 12.890997615805377, - 13.113976808931236, - 13.280824408999106, - 13.471430249883822, - 13.601864227263004, - 13.666054533956704, - 13.770242133670214 + 1.5268463243731476, + 1.8679037053125431, + 2.162243131656476, + 2.506080869261878, + 2.8001353510806246, + 3.1434046873619654, + 3.5138082901028174, + 3.8633860011511376, + 4.455390882043405, + 4.893886297931131, + 5.250734279462611, + 5.826872772000518, + 6.286831888938312, + 7.565989121367248, + 9.027303992950214, + 9.515345426007686, + 9.995507052390712, + 10.50869935105854, + 10.944523351612517, + 11.347441255045352, + 11.721907020589372, + 12.059007899198084, + 12.327551896742767, + 12.655856401354512, + 12.899314894492166, + 13.027468148017775, + 13.25245605736712 ], "5._96._0.075": [ - 2.2092718103274054, - 2.555323571347717, - 2.8519264502576633, - 3.20159650900156, - 3.539052908031279, - 4.096048940752249, - 4.975279344723372, - 5.929988032282506, - 7.533985925741476, - 8.64781926922027, - 9.494276092360495, - 10.740984617263898, - 11.637037095800018, - 13.720762587803135, - 15.536368860385512, - 16.03891768592228, - 16.490303967511636, - 16.930398915078918, - 17.271561697172185, - 17.563187144528, - 17.81397563275722, - 18.023509191350684, - 18.179684517471944, - 18.35771990199947, - 18.47926197550023, - 18.538934132395124, - 18.635627554320685 + 2.2092718103274067, + 2.555323564282565, + 2.851916249617151, + 3.2004181793709434, + 3.525657708793978, + 4.0084627814788085, + 4.67462250694664, + 5.350183515382195, + 6.487734474239329, + 7.317964864175922, + 7.985039811681928, + 9.042988455571148, + 9.871406857153785, + 12.082787792584321, + 14.452305892209422, + 15.209483749917732, + 15.931174925341994, + 16.67782809366934, + 17.28877392026948, + 17.8357781530378, + 18.325330588445485, + 18.748822023746584, + 19.074214043856404, + 19.454713654947653, + 19.722795520827084, + 19.857969646174052, + 20.08349498507663 ] }, "logtime": [ @@ -5327,202 +6043,282 @@ 3.003 ] }, - "2_6": { + "1_32": { "bore_locations": [ [ 0.0, 0.0 ], [ - 0.0, - 5.0 + 5.0, + 0.0 ], [ - 0.0, - 10.0 + 10.0, + 0.0 ], [ - 0.0, - 15.0 + 15.0, + 0.0 ], [ - 0.0, - 20.0 + 20.0, + 0.0 ], [ - 0.0, - 25.0 + 25.0, + 0.0 ], [ - 5.0, + 30.0, 0.0 ], [ - 5.0, - 5.0 + 35.0, + 0.0 ], [ - 5.0, - 10.0 + 40.0, + 0.0 ], [ - 5.0, - 15.0 + 45.0, + 0.0 ], [ - 5.0, - 20.0 + 50.0, + 0.0 ], [ - 5.0, - 25.0 + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 + ], + [ + 125.0, + 0.0 + ], + [ + 130.0, + 0.0 + ], + [ + 135.0, + 0.0 + ], + [ + 140.0, + 0.0 + ], + [ + 145.0, + 0.0 + ], + [ + 150.0, + 0.0 + ], + [ + 155.0, + 0.0 ] ], "g": { "5._192._0.08": [ - 2.835194776403702, - 3.189398734249572, - 3.5429906551271997, - 4.147493036610092, - 4.950165526407451, - 6.322325947945721, - 8.213140523575431, - 10.00404673135627, - 12.651839280952673, - 14.314270284959207, - 15.507089118840375, - 17.173211426297815, - 18.318916424353645, - 20.854215039208412, - 22.97220757935492, - 23.548640740966395, - 24.06392881596858, - 24.564066263714846, - 24.950393726779343, - 25.280205384945937, - 25.563473873179056, - 25.799997143659894, - 25.976312530096294, - 26.17748488544885, - 26.314852124828327, - 26.382277368678544, - 26.491536968616256 + 2.8351708660639874, + 3.187426263355768, + 3.523569503369532, + 4.032406012371374, + 4.624558383466829, + 5.562003890318857, + 6.847933832078334, + 8.132088898174898, + 10.240954500833427, + 11.73952019856559, + 12.918010655031841, + 14.733892058328793, + 16.11563568876514, + 19.60257846366803, + 23.042070193032597, + 24.074381246509645, + 25.02340388687948, + 25.969126910803286, + 26.711724477746095, + 27.355524378528315, + 27.912085189838177, + 28.37819738467053, + 28.727403368642616, + 29.125718140920004, + 29.399586133743572, + 29.535218172650445, + 29.757912206666315 ], "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615426, - 1.4813847491413068, - 1.8198213217004353, - 2.1114679242247276, - 2.4511928335973625, - 2.788426020428762, - 3.04538777832223, - 3.39742896823682, - 3.6498999508935053, - 3.8683179986236484, - 4.252589697250231, - 4.585038912230555, - 5.596902232638405, - 6.833949903612745, - 7.251586682059921, - 7.662168207694794, - 8.098052429433398, - 8.46398881849528, - 8.796861276508569, - 9.100273090291651, - 9.366884545269267, - 9.573131053829176, - 9.816132842538343, - 9.986844739411623, - 10.072338303554865, - 10.213112455870055 + 0.874005953226797, + 1.195803175961542, + 1.4813847491413081, + 1.8198213217004324, + 2.1114679242247236, + 2.451192833207491, + 2.7884205216841638, + 3.045046653144524, + 3.3889370373618477, + 3.6194885504743928, + 3.8054459451857876, + 4.108173167290637, + 4.352882413985793, + 5.052651635098933, + 5.89214672850831, + 6.1823656096679676, + 6.475284772012818, + 6.796970813845815, + 7.078675835969997, + 7.346624456713784, + 7.603984265493397, + 7.843998261513456, + 8.041573114203885, + 8.293685472827125, + 8.489754628040425, + 8.597325613101797, + 8.798742911340494 ], "5._384._0.0875": [ - 3.519201037735992, - 4.1648742333474305, - 5.021964575889329, - 6.479529112750988, - 8.164916022435744, - 10.630335740400797, - 13.54754130003539, - 15.988556742531603, - 19.224440531444987, - 21.10214682620412, - 22.39892239656571, - 24.158089937150905, - 25.342956130398463, - 27.92303179392658, - 30.058740712492458, - 30.63815212060242, - 31.15705060709677, - 31.66104776330363, - 32.0510235263629, - 32.384028781889945, - 32.67044998779967, - 32.90994501000154, - 33.088512792653496, - 33.29247820507928, - 33.431698508036504, - 33.49997326323534, - 33.61047259070623 + 3.4938893121971613, + 4.027259468570057, + 4.650603771071162, + 5.641714423161281, + 6.788414475257787, + 8.576133035135191, + 10.970266604053094, + 13.29411677400437, + 16.95604091612804, + 19.451870482736112, + 21.352255966419698, + 24.163488438869056, + 26.214650374580707, + 31.04022964233407, + 35.33869545300146, + 36.54139997054669, + 37.617876077760435, + 38.6627446118536, + 39.4647385271881, + 40.149301457567, + 40.7335998399704, + 41.21839048749643, + 41.57939234831516, + 41.98974000354764, + 42.27033847434185, + 42.40853586526047, + 42.63416195368961 ], "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125467, - 2.1622431316564783, - 2.506080871120279, - 2.800140270633584, - 3.1442232545423314, - 3.528837321897716, - 3.929644688159898, - 4.705176992300043, - 5.3321680348045115, - 5.858291153692439, - 6.714771973749863, - 7.392082765391023, - 9.184216030899579, - 11.007835289852359, - 11.555817753283268, - 12.064102628815379, - 12.573710137268211, - 12.977960802632031, - 13.328917619045004, - 13.634567638782286, - 13.892292968473821, - 14.085424182697414, - 14.30615918712256, - 14.457372546436877, - 14.531880291070685, - 14.652988007211588 + 1.5268463243731423, + 1.8679037053125416, + 2.1622431316564787, + 2.506080869267004, + 2.8001353646433884, + 3.1434069116763377, + 3.5138446005627424, + 3.8635218762709913, + 4.455838022931285, + 4.894671831169764, + 5.251864404869224, + 5.8287005709024635, + 6.289344474431319, + 7.571091903930872, + 9.03674082585325, + 9.526612038930091, + 10.008805655126155, + 10.52445154482053, + 10.962632629288924, + 11.367983552328523, + 11.744981354767198, + 12.084639488044136, + 12.355460206376934, + 12.686934949990114, + 12.933178093673398, + 13.063039305073413, + 13.291686148978576 ], "5._96._0.075": [ - 2.2092718103274054, - 2.5553235720565195, - 2.851927473410041, - 3.2017131990285077, - 3.5402979241200945, - 4.103422930866219, - 5.001409883129368, - 5.987732431051312, - 7.671784593185418, - 8.862593624388174, - 9.779801614056705, - 11.149820778158503, - 12.14859515300512, - 14.510485397336991, - 16.604474674321583, - 17.188433137775124, - 17.7136216535764, - 18.22617257113618, - 18.623459282003946, - 18.96315582480573, - 19.25510392043533, - 19.49883596128978, - 19.68046561589149, - 19.887355846574007, - 20.028612014935717, - 20.097996583186443, - 20.210531112544956 + 2.209271810327408, + 2.5553235643040018, + 2.85191628055469, + 3.200421675559636, + 3.5256932094334448, + 4.008649431741077, + 4.675204270838946, + 5.351375776313982, + 6.49046365669701, + 7.322227793131552, + 7.990802875712068, + 9.051670998193904, + 9.882847935650299, + 12.103918079244389, + 14.488096294842704, + 15.251169677194838, + 15.979106911426772, + 16.732962961931012, + 17.350500604584653, + 17.90401778408393, + 18.399998517972566, + 18.82960480266617, + 19.160124322034054, + 19.54717055740062, + 19.82034987315455, + 19.958297911438624, + 20.188833561811823 ] }, "logtime": [ @@ -5555,210 +6351,286 @@ 3.003 ] }, - "2_7": { + "1_33": { "bore_locations": [ [ 0.0, 0.0 ], [ - 0.0, - 5.0 + 5.0, + 0.0 ], [ - 0.0, - 10.0 + 10.0, + 0.0 ], [ - 0.0, - 15.0 + 15.0, + 0.0 ], [ - 0.0, - 20.0 + 20.0, + 0.0 ], [ - 0.0, - 25.0 + 25.0, + 0.0 ], [ - 0.0, - 30.0 + 30.0, + 0.0 ], [ - 5.0, + 35.0, 0.0 ], [ - 5.0, - 5.0 + 40.0, + 0.0 ], [ - 5.0, - 10.0 + 45.0, + 0.0 ], [ - 5.0, - 15.0 + 50.0, + 0.0 ], [ - 5.0, - 20.0 + 55.0, + 0.0 ], [ - 5.0, - 25.0 + 60.0, + 0.0 ], [ - 5.0, - 30.0 + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 + ], + [ + 125.0, + 0.0 + ], + [ + 130.0, + 0.0 + ], + [ + 135.0, + 0.0 + ], + [ + 140.0, + 0.0 + ], + [ + 145.0, + 0.0 + ], + [ + 150.0, + 0.0 + ], + [ + 155.0, + 0.0 + ], + [ + 160.0, + 0.0 ] ], "g": { "5._192._0.08": [ - 2.8351963373211526, - 3.189525432671323, - 3.5441586181564264, - 4.153863578420259, - 4.968837350679872, - 6.374765189955052, - 8.338435532940242, - 10.227924235923822, - 13.07667744467613, - 14.899216964004614, - 16.22157557832085, - 18.085611206462346, - 19.3773839575985, - 22.253326929252243, - 24.665607531774025, - 25.32290199772217, - 25.910008879139216, - 26.4794990185844, - 26.91887561651495, - 27.293881055164704, - 27.61566790717984, - 27.88411833618692, - 28.08419851671805, - 28.312364693175297, - 28.46818244123285, - 28.544691410541315, - 28.668765753189405 + 2.835170928128181, + 3.1874312369980786, + 3.523612781275765, + 4.032614342270746, + 4.6251037169048725, + 5.563392570878039, + 6.851120852388221, + 8.137841004642436, + 10.252751560577726, + 11.757046006416466, + 12.940940112869459, + 14.766845178134755, + 16.157667783980145, + 19.673596456321732, + 23.15207677990012, + 24.198920047621264, + 25.162332558318656, + 26.12352801976333, + 26.879090580407148, + 27.534757200362105, + 28.102000800501614, + 28.577347640230673, + 28.933662293899285, + 29.34023820465336, + 29.619933622517184, + 29.7585224960741, + 29.986218018158613 ], "5._24._0.075": [ - 0.8740059532267965, - 1.195803175961542, - 1.4813847491413066, - 1.8198213217004344, - 2.1114679242247285, - 2.451192833622822, - 2.7884263794937194, - 3.045409966528578, - 3.397956025424473, - 3.651681123419255, - 3.871861045175125, - 4.260544029058912, - 4.598036282181444, - 5.632233733917122, - 6.911990032935292, - 7.348562914574632, - 7.78038615503268, - 8.241930786777354, - 8.632288563414834, - 8.98993245080486, - 9.31834432206036, - 9.60908718406086, - 9.835583579650885, - 10.10436619003651, - 10.294663417617404, - 10.390522851782857, - 10.549284342416126 + 0.8740059532267969, + 1.1958031759615422, + 1.481384749141308, + 1.8198213217004338, + 2.111467924224724, + 2.4511928332085033, + 2.7884205359640264, + 3.0450475328657656, + 3.3889571424399083, + 3.619552760804202, + 3.8055672338916406, + 4.108424813313886, + 4.353271919104228, + 5.053606443886188, + 5.894148639915744, + 6.18483284117036, + 6.478288416906532, + 6.800648308459817, + 7.083027654609269, + 7.35170038901853, + 7.609847022132023, + 7.850692323310206, + 8.049037457966618, + 8.302281293057863, + 8.499393998637256, + 8.607631543299291, + 8.810624246598424 ], "5._384._0.0875": [ - 3.5207107105767967, - 4.172486685832283, - 5.04361535233427, - 6.539238771629346, - 8.290823424995548, - 10.897851125859063, - 14.053556094702584, - 16.750421010307743, - 20.387366959629162, - 22.52182567501487, - 24.0028806054672, - 26.016906929358765, - 27.37561986803111, - 30.333082187151593, - 32.77808502329351, - 33.4408977970093, - 34.033921738549736, - 34.609458476118434, - 35.05430372502859, - 35.43407705021292, - 35.76049119191312, - 36.03325310775754, - 36.236608202722216, - 36.46881511674917, - 36.62733410445668, - 36.705095253830414, - 36.831022119800515 + 3.493944709804192, + 4.027504560863145, + 4.651227342223847, + 5.643283573451738, + 6.791616781635786, + 8.583112515622382, + 10.984767300750718, + 13.318750208190613, + 17.00284969280605, + 19.518479436411997, + 21.43669605186097, + 24.278927510700562, + 26.35657033218998, + 31.256755482179024, + 35.63693598819045, + 36.86495535813209, + 37.964569734028, + 39.03229063667099, + 39.851874456265996, + 40.551565697619814, + 41.14872261828051, + 41.6441140031463, + 42.01301413375906, + 42.432296440011015, + 42.719038249193076, + 42.86028933537506, + 43.090984301552034 ], "5._48._0.075": [ 1.5268463243731418, 1.8679037053125458, - 2.1622431316564765, - 2.5060808712413083, - 2.800140590995746, - 3.1442761302569138, - 3.5297485792209886, - 3.9333730661275474, - 4.719186917317336, - 5.358546917521309, - 5.897818294295266, - 6.781339816883465, - 7.485187602696929, - 9.37107376118838, - 11.330559442278814, - 11.928785231530378, - 12.48730495904651, - 13.05095909356793, - 13.500543415541326, - 13.892672496932104, - 14.235364076732068, - 14.52508549238362, - 14.742640279650308, - 14.991570236901701, - 15.16236207344109, - 15.246643307399514, - 15.383865538978908 + 2.16224313165648, + 2.5060808692718175, + 2.8001353773841697, + 3.14340900118384, + 3.513878710469487, + 3.8636495188448166, + 4.456258103865205, + 4.895409878715638, + 5.252926286371768, + 5.830418247419486, + 6.291705974635625, + 7.575890244280432, + 9.045620573763609, + 9.53721577615852, + 10.021324944547077, + 10.53928518805767, + 10.979690985378628, + 11.387339685808689, + 11.76673044535217, + 12.108807162613381, + 12.381782654312193, + 12.71626096184229, + 12.96514736206668, + 13.096634902522178, + 13.328791996443183 ], "5._96._0.075": [ - 2.209271810327406, - 2.555323572562807, - 2.851928204233168, - 3.2017965492038645, - 3.541187283099064, - 4.108694827048994, - 5.020157591633424, - 6.0293823589962185, - 7.772395988356641, - 9.020893246502068, - 9.992125954630469, - 11.458833301601528, - 12.540663840621466, - 15.137968789154458, - 17.481764918967876, - 18.140996507450293, - 18.73505764069588, - 19.315730519637945, - 19.76601839452198, - 20.151266342940364, - 20.482270484553275, - 20.758468346547456, - 20.96427808400023, - 21.19856448999212, - 21.358556705411893, - 21.437185909378837, - 21.56483305389653 + 2.2092718103274076, + 2.5553235643241377, + 2.8519163096172213, + 3.2004249598583194, + 3.5257265585975146, + 4.00882477493339, + 4.675750846290433, + 5.352496072939995, + 6.493028922816034, + 7.3262356171384635, + 7.996222152426862, + 9.059838795721534, + 9.893614132389757, + 12.123824152431656, + 14.521859040492313, + 15.290511033062359, + 16.02436504548192, + 16.785052123095525, + 17.408850518247448, + 17.968563159726287, + 18.470673015643655, + 18.906127302933136, + 19.241567718581233, + 19.63492583181368, + 19.91305092557182, + 20.053704602158895, + 20.289156532115715 ] }, "logtime": [ @@ -5791,218 +6663,290 @@ 3.003 ] }, - "2_8": { + "1_34": { "bore_locations": [ [ 0.0, 0.0 ], [ - 0.0, - 5.0 + 5.0, + 0.0 ], [ - 0.0, - 10.0 + 10.0, + 0.0 ], [ - 0.0, - 15.0 + 15.0, + 0.0 ], [ - 0.0, - 20.0 + 20.0, + 0.0 ], [ - 0.0, - 25.0 + 25.0, + 0.0 ], [ - 0.0, - 30.0 + 30.0, + 0.0 ], [ - 0.0, - 35.0 + 35.0, + 0.0 ], [ - 5.0, + 40.0, 0.0 ], [ - 5.0, - 5.0 + 45.0, + 0.0 ], [ - 5.0, - 10.0 + 50.0, + 0.0 ], [ - 5.0, - 15.0 + 55.0, + 0.0 ], [ - 5.0, - 20.0 + 60.0, + 0.0 ], [ - 5.0, - 25.0 + 65.0, + 0.0 ], [ - 5.0, - 30.0 + 70.0, + 0.0 ], [ - 5.0, - 35.0 + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 + ], + [ + 125.0, + 0.0 + ], + [ + 130.0, + 0.0 + ], + [ + 135.0, + 0.0 + ], + [ + 140.0, + 0.0 + ], + [ + 145.0, + 0.0 + ], + [ + 150.0, + 0.0 + ], + [ + 155.0, + 0.0 + ], + [ + 160.0, + 0.0 + ], + [ + 165.0, + 0.0 ] ], "g": { "5._192._0.08": [ - 2.8351975080103657, - 3.1896204567673427, - 3.5450346584205175, - 4.158645586977014, - 4.982885349041962, - 6.414457224860929, - 8.434260555603638, - 10.4009213179499, - 13.41176726606915, - 15.368452215986, - 16.802330909530166, - 18.841384554308217, - 20.26561355395392, - 23.458439082609456, - 26.150709208225802, - 26.885581925639688, - 27.54163574143345, - 28.17772807252831, - 28.66798691944528, - 29.086338063810278, - 29.445016368135864, - 29.74400096673775, - 29.96680277464305, - 30.22075259479998, - 30.394198976970667, - 30.47939383405256, - 30.617657151921577 + 2.8351709865415544, + 3.1874359180738123, + 3.5236535135604816, + 4.0328104243343725, + 4.625617031920641, + 5.5646999767039125, + 6.854122379888427, + 8.143260351690627, + 10.263874678820542, + 11.773579362844227, + 12.962580675752761, + 14.797970958961766, + 16.197394040478404, + 19.740849718951857, + 23.25648416035427, + 24.317244485195395, + 25.29447563206189, + 26.27057833599589, + 27.038681889452285, + 27.705866409347795, + 28.283513907495877, + 28.767882369727513, + 29.131160108303835, + 29.54584761703691, + 29.83127869231737, + 29.97278320147652, + 30.205420317188988 ], "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004342, - 2.111467924224728, - 2.4511928336419166, - 2.7884266487924356, - 3.0454266076863563, - 3.398351325717276, - 3.6530171403547804, - 3.8745190273400456, - 4.266514920247846, - 4.607800786511952, - 5.658906817890103, - 6.97137719342753, - 7.422553385002921, - 7.870877175482006, - 8.352526094457385, - 8.762239856677033, - 9.139756733004683, - 9.488541614977851, - 9.799310885445944, - 10.04293370014671, - 10.33403068586692, - 10.54175862779562, - 10.64704793916489, - 10.822560261357017 + 0.8740059532267969, + 1.1958031759615428, + 1.4813847491413072, + 1.8198213217004329, + 2.1114679242247245, + 2.451192833209457, + 2.7884205494038894, + 3.0450483608386962, + 3.3889760648818865, + 3.6196131943327448, + 3.8056813892852563, + 4.108661665137623, + 4.353638536635561, + 5.05450529286154, + 5.896033704470797, + 6.187156253689374, + 6.481117259530002, + 6.804112238472135, + 7.087127291581878, + 7.356482862225854, + 7.6153717090079605, + 7.857001464129365, + 8.056073717048836, + 8.31038615046112, + 8.508484888743821, + 8.617352463975381, + 8.82183520484332 ], "5._384._0.0875": [ - 3.521843815484846, - 4.178203766401465, - 5.059916289769679, - 6.584493394590957, - 8.387110607219094, - 11.105528291689232, - 14.455516162254296, - 17.37051570657643, - 21.36607785316105, - 23.73859073927171, - 25.39348869281476, - 27.65073505691816, - 29.176769303984504, - 32.49910864788708, - 35.24368633771473, - 35.98727554907545, - 36.65198172234362, - 37.296608957568495, - 37.7943357856378, - 38.219163059929286, - 38.58404830143178, - 38.88876891818065, - 39.115931429479964, - 39.37524549113963, - 39.55229168840916, - 39.639164660112286, - 39.779927116162895 + 3.4939968503332497, + 4.027735248545233, + 4.651814316226323, + 5.644760951849332, + 6.794632697014524, + 8.589689508012844, + 10.998443559101675, + 13.342003376265088, + 17.047107447054888, + 19.58152679033341, + 21.516691679562218, + 24.388455684718053, + 26.491398073018463, + 31.463255867493242, + 35.92274538761726, + 37.17551329649973, + 38.297800179899426, + 39.3879620098285, + 40.22484536771916, + 40.939432423747114, + 41.54925842007993, + 42.0550982061573, + 42.43178555649116, + 42.85987788214114, + 43.15268008834444, + 43.296945420584535, + 43.532648261688855 ], "5._48._0.075": [ 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808713320784, - 2.80014083126737, - 3.1443157870725327, - 3.530432057195756, - 3.93617048414868, - 4.729718687744946, - 5.378416024939635, - 5.927650167082058, - 6.831797854977626, - 7.556026218629943, - 9.515121535061022, - 11.583871445050967, - 12.223865385593657, - 12.824870765046922, - 13.435095381146187, - 13.924486882948283, - 14.353363915378884, - 14.729608312946509, - 15.048691240780647, - 15.288897090394657, - 15.564212942873112, - 15.753484460131938, - 15.847049602754923, - 15.999675657394397 + 1.8679037053125436, + 2.1622431316564783, + 2.506080869276348, + 2.8001353893754906, + 3.1434109677792073, + 3.513910813982594, + 3.863769655075967, + 4.456653509109647, + 4.896104620020496, + 5.253925924258091, + 5.832035462524861, + 6.293929619060821, + 7.580410597869832, + 9.0539911488716, + 9.5472134609793, + 10.033131464484466, + 10.553278335387136, + 10.995787302287175, + 11.405609485924966, + 11.787265245153536, + 12.131632817230177, + 12.406650616458979, + 12.743978406523155, + 12.995376526630984, + 13.128413702313663, + 13.363938798114857 ], "5._96._0.075": [ - 2.209271810327405, - 2.555323572942525, - 2.8519287523505126, - 3.201859061920749, - 3.5418543361171233, - 4.112651354784914, - 5.034263989539381, - 6.060842911721544, - 7.849093185252161, - 9.14236624190215, - 10.156017221383621, - 11.699967632878995, - 12.8495813191719, - 15.646072480134803, - 18.212739171423223, - 18.941239075007537, - 19.599334474182076, - 20.243910047272013, - 20.744216038223744, - 21.172648244032946, - 21.540772175137285, - 21.84787026063639, - 22.076721059740787, - 22.337114812401982, - 22.51498546269777, - 22.602451514080382, - 22.74457961479501 + 2.209271810327409, + 2.55532356434309, + 2.851916336970189, + 3.200428050963151, + 3.5257579461155175, + 4.008989808304586, + 4.676265332179803, + 5.35355072995726, + 6.495444609266364, + 7.33001056958272, + 8.001327511777367, + 9.067536302021653, + 9.903763444489373, + 12.142609386662699, + 14.553761633763203, + 15.327700110089408, + 16.067166829534813, + 16.834340834826786, + 17.464092537492377, + 18.029704582442683, + 18.53766282264108, + 18.978712758118043, + 19.31887705268885, + 19.718320969554192, + 20.001244137354284, + 20.144536475915466, + 20.384811978980686 ] }, "logtime": [ @@ -6035,226 +6979,294 @@ 3.003 ] }, - "2_9": { + "1_35": { "bore_locations": [ [ 0.0, 0.0 ], [ - 0.0, - 5.0 + 5.0, + 0.0 ], [ - 0.0, - 10.0 + 10.0, + 0.0 ], [ - 0.0, - 15.0 + 15.0, + 0.0 ], [ - 0.0, - 20.0 + 20.0, + 0.0 ], [ - 0.0, - 25.0 + 25.0, + 0.0 ], [ - 0.0, - 30.0 + 30.0, + 0.0 ], [ - 0.0, - 35.0 + 35.0, + 0.0 ], [ - 0.0, - 40.0 + 40.0, + 0.0 ], [ - 5.0, + 45.0, 0.0 ], [ - 5.0, - 5.0 + 50.0, + 0.0 ], [ - 5.0, - 10.0 + 55.0, + 0.0 ], [ - 5.0, - 15.0 + 60.0, + 0.0 ], [ - 5.0, - 20.0 + 65.0, + 0.0 ], [ - 5.0, - 25.0 + 70.0, + 0.0 ], [ - 5.0, - 30.0 - ], + 75.0, + 0.0 + ], [ - 5.0, - 35.0 + 80.0, + 0.0 ], [ - 5.0, - 40.0 + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 + ], + [ + 125.0, + 0.0 + ], + [ + 130.0, + 0.0 + ], + [ + 135.0, + 0.0 + ], + [ + 140.0, + 0.0 + ], + [ + 145.0, + 0.0 + ], + [ + 150.0, + 0.0 + ], + [ + 155.0, + 0.0 + ], + [ + 160.0, + 0.0 + ], + [ + 165.0, + 0.0 + ], + [ + 170.0, + 0.0 ] ], "g": { "5._192._0.08": [ - 2.835198418547093, - 3.1896943645633273, - 3.545716063364626, - 4.162367359950148, - 4.993837801795569, - 6.445545831743682, - 8.509920678607969, - 10.538617685064448, - 13.682447511574487, - 15.752224503905364, - 17.282177876097418, - 19.47559514513419, - 21.01939914915772, - 24.505794584289276, - 27.46406311323045, - 28.273380035511796, - 28.995693679826125, - 29.695854532997593, - 30.235026179564322, - 30.695052984414993, - 31.089161790852845, - 31.417435244433054, - 31.662027415434142, - 31.940682448256794, - 32.13102606331549, - 32.22455320303138, - 32.3764500545759 + 2.8351710416170253, + 3.187440331660009, + 3.5236919184083235, + 4.032995307805451, + 4.6261010679599215, + 5.565933040007484, + 6.856954150643887, + 8.148375001721586, + 10.27437999800527, + 11.78920223305721, + 12.983038020030586, + 14.827417233941004, + 16.23499902705823, + 19.804629978833344, + 23.355706438707237, + 24.429801630190305, + 25.42030758946564, + 26.41077543467133, + 27.19101031643517, + 27.869373591729683, + 28.457152573687562, + 28.950333980188066, + 29.320432044466703, + 29.74308472856306, + 30.034161900453554, + 30.178541933769115, + 30.416062522626085 ], "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615422, + 0.8740059532267969, + 1.195803175961543, 1.4813847491413075, - 1.8198213217004355, - 2.1114679242247285, - 2.4511928336567665, - 2.788426858246996, - 3.0454395508108583, - 3.3986587858870467, - 3.6540563461469944, - 3.8765867600299537, - 4.271161995637254, - 4.615405175484388, - 5.679756664442103, - 7.018085006853974, - 7.48086287452734, - 7.942362725697819, - 8.440161375337219, - 8.865539150725466, - 9.25926528960598, - 9.624846063864272, - 9.952346659195861, - 10.210490003647902, - 10.520878090072602, - 10.744064497108202, - 10.857899584318131, - 11.048973887632274 + 1.819821321700433, + 2.111467924224724, + 2.4511928332103556, + 2.7884205620757574, + 3.0450491414989034, + 3.388993906055309, + 3.619670174762784, + 3.805789022683699, + 4.108884990127895, + 4.353984226335824, + 5.055352961526817, + 5.8978118621225235, + 6.189348066096852, + 6.4837861275011095, + 6.807380682070508, + 7.090996049225032, + 7.360996609229086, + 7.620586746774943, + 7.862957954589051, + 8.062717688776502, + 8.318040937385458, + 8.517072813180821, + 8.626536808717715, + 8.832430937147976 ], "5._384._0.0875": [ - 3.522725623674997, - 4.1826549787548455, - 5.072632188592192, - 6.619974580091965, - 8.463131086967564, - 11.271425810809793, - 14.781921603063866, - 17.883370250368863, - 22.198461731165903, - 24.790578981186382, - 26.608735188663495, - 29.09733118292373, - 30.78408865582497, - 34.45909150998949, - 37.49416295960211, - 38.31612082778855, - 39.0502792708857, - 39.76176991589837, - 40.31057401883343, - 40.77890042412573, - 41.18087695465329, - 41.516370466928876, - 41.766452127657075, - 42.051845066198084, - 42.24671906842188, - 42.342364272199916, - 42.49742578082318 + 3.4940460128288913, + 4.0279527652503, + 4.652367823035839, + 5.646154380504296, + 6.797478034329019, + 8.595897850682949, + 11.011363737882123, + 13.363989097065001, + 17.089017079927423, + 19.641290529104907, + 21.592584196954796, + 24.49251368272612, + 26.619646416452547, + 31.66038689989671, + 36.19684801838351, + 37.473808561353394, + 38.618309611298066, + 39.73050734564226, + 40.58440523912061, + 41.31366053054943, + 41.93597089654401, + 42.4521111532556, + 42.83647813511737, + 43.27326004206337, + 43.572042605981814, + 43.71928415898927, + 43.95993613872868 ], "5._48._0.075": [ - 1.52684632437314, - 1.8679037053125456, - 2.1622431316564765, - 2.506080871402683, - 2.800141018145298, - 3.144346631280049, - 3.5309636719073954, - 3.9383469262623554, - 4.737924514571376, - 5.3939203096996176, - 5.950963882047983, - 6.87136170113179, - 7.611730315035198, - 9.629562641841172, - 11.787686421025292, - 12.462636985661309, - 13.099692223816705, - 13.750038685728187, - 14.274313235840253, - 14.735879222325778, - 15.142407828124924, - 15.488351037826146, - 15.749517321062976, - 16.049507592930876, - 16.25623567729539, - 16.358634985170532, - 16.526024259848008 + 1.526846324373142, + 1.8679037053125418, + 2.162243131656481, + 2.506080869280619, + 2.800135400681593, + 3.143412821997759, + 3.51394108307271, + 3.8638829281950784, + 4.457026350816353, + 4.896759758043998, + 5.25486863542053, + 5.833560779239377, + 6.296027136482711, + 7.584676441286279, + 9.061895122565378, + 9.556655603017074, + 10.044284393366686, + 10.566500442808067, + 11.011000716200414, + 11.42288188877613, + 11.80668466070193, + 12.153225183635584, + 12.430181360431158, + 12.770215960660058, + 13.024003350979806, + 13.158518124400434, + 13.397275270689706 ], "5._96._0.075": [ - 2.2092718103274054, - 2.5553235732378576, - 2.8519291786640055, - 3.2019076829733635, - 3.542373175152058, - 4.1157301991876505, - 5.0452627549044005, - 6.085445400890604, - 7.909495952865928, - 9.238517507415333, - 10.286309160851365, - 11.89318186739695, - 13.098818792766913, - 16.064542838393542, - 18.829420127710723, - 19.621422679970937, - 20.338851908077856, - 21.043225025641945, - 21.59067698646771, - 22.060041420722968, - 22.463475028896674, - 22.800035447222456, - 23.050893457286666, - 23.336239786241798, - 23.53122685607122, - 23.62716968819104, - 23.783224284174963 + 2.2092718103274005, + 2.5553235643609615, + 2.851916362760134, + 3.200430965433572, + 3.5257875401227774, + 4.009145415180342, + 4.67675047389153, + 5.354545352017953, + 6.497723428187463, + 7.333572373216954, + 8.006145460916835, + 9.07480299578222, + 9.91334740939417, + 12.16036583842112, + 14.583953629064741, + 15.36290874143678, + 16.10770682298475, + 16.881048782815633, + 17.516467917669605, + 18.087703078600523, + 18.601246220081514, + 19.0476532307378, + 19.392353655055526, + 19.79766584321908, + 20.085243350176246, + 20.23110867253371, + 20.476116326286267 ] }, "logtime": [ @@ -6287,202 +7299,298 @@ 3.003 ] }, - "3_4": { + "1_36": { "bore_locations": [ [ 0.0, 0.0 ], [ - 0.0, - 5.0 + 5.0, + 0.0 ], [ - 0.0, - 10.0 + 10.0, + 0.0 ], [ - 0.0, - 15.0 + 15.0, + 0.0 ], [ - 5.0, + 20.0, 0.0 ], [ - 5.0, - 5.0 + 25.0, + 0.0 ], [ - 5.0, - 10.0 + 30.0, + 0.0 ], [ - 5.0, - 15.0 + 35.0, + 0.0 ], [ - 10.0, + 40.0, 0.0 ], [ - 10.0, - 5.0 + 45.0, + 0.0 ], [ - 10.0, - 10.0 + 50.0, + 0.0 ], [ - 10.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352002410885504, - 3.189847920478392, - 3.5473525792099516, - 4.173513343591349, - 5.031103387411992, - 6.549814266069877, - 8.69442879239438, - 10.721324554732862, - 13.65066964685244, - 15.44052750504318, - 16.70336338021932, - 18.442387607021207, - 19.624242629285188, - 22.21124949222853, - 24.354935950516587, - 24.93652914059481, - 25.45632976083144, - 25.960761123219662, - 26.35050366363597, - 26.683238448122456, - 26.969127500138683, - 27.207942691806487, - 27.384862363531592, - 27.58807304902318, - 27.726771272570428, - 27.794843355039397, - 27.90509303114989 + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 + ], + [ + 125.0, + 0.0 + ], + [ + 130.0, + 0.0 + ], + [ + 135.0, + 0.0 + ], + [ + 140.0, + 0.0 + ], + [ + 145.0, + 0.0 + ], + [ + 150.0, + 0.0 + ], + [ + 155.0, + 0.0 + ], + [ + 160.0, + 0.0 + ], + [ + 165.0, + 0.0 + ], + [ + 170.0, + 0.0 + ], + [ + 175.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835171093632735, + 3.187444500047474, + 3.523728189762474, + 4.033169925406286, + 4.626558260624043, + 5.567097926433287, + 6.859630169758153, + 8.153209948098766, + 10.28431759368571, + 11.803987799723066, + 13.002406579807888, + 14.855316314953408, + 16.27064813719232, + 19.86519953833987, + 23.45011863269227, + 24.536997797783464, + 25.540261080097846, + 26.544574507151744, + 27.33654520930458, + 28.025757743794372, + 28.623402254482816, + 29.125192209050244, + 29.50197056712138, + 29.93244493781838, + 30.229080699108877, + 30.376297153749025, + 30.61864473934257 ], "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615426, - 1.4813847491413068, - 1.8198213217004353, - 2.1114679242247276, - 2.451192833686473, - 2.7884272772560266, - 3.0454656800625717, - 3.3993485393835376, - 3.6567087082817475, - 3.8824142106708246, - 4.285999244949475, - 4.64140506131016, - 5.752918587514246, - 7.150877891153093, - 7.625157114941832, - 8.089389542953798, - 8.578662964181403, - 8.985091297075328, - 9.350608889757698, - 9.679499813117744, - 9.964576379686473, - 10.182272185752982, - 10.435156613231342, - 10.610355923351054, - 10.697293161936095, - 10.839197931839957 + 0.8740059532267968, + 1.195803175961542, + 1.4813847491413084, + 1.8198213217004344, + 2.1114679242247245, + 2.4511928332112043, + 2.788420574043638, + 3.045049878789105, + 3.389010756064753, + 3.619723989832602, + 3.8058906774917673, + 4.109095914908762, + 4.354310730430312, + 5.056153700165011, + 5.899491956484735, + 6.191419151246364, + 6.486308217576494, + 6.810469733070167, + 7.094652896390301, + 7.365263659649986, + 7.625517457416045, + 7.868590556289696, + 8.069001287706815, + 8.32528212791029, + 8.525198386656957, + 8.635227808541899, + 8.84246071675754 ], "5._384._0.0875": [ - 3.524813013470324, - 4.196082597982126, - 5.115976700938693, - 6.735607643646009, - 8.64884312392933, - 11.433330763113077, - 14.640392275429818, - 17.244403752490573, - 20.612198870306447, - 22.53576380936692, - 23.85529131495063, - 25.637609078985058, - 26.834547309355262, - 29.43671810893321, - 31.589403095738646, - 32.17341065027805, - 32.69669213307692, - 33.205149395583696, - 33.59881448123163, - 33.93502709709848, - 34.22433851221049, - 34.46635467357401, - 34.64682518692814, - 34.85302282193397, - 34.99376891856543, - 35.06278474363444, - 35.174454122124004 + 3.494092445345096, + 4.028158207654891, + 4.652890645585196, + 5.647470817171797, + 6.800166867028141, + 8.601767692381163, + 11.023588842613687, + 13.384808223201876, + 17.128760541926795, + 19.698020461089126, + 21.664680953347265, + 24.59149992207715, + 26.741780960681808, + 31.84875137518641, + 36.459914806544596, + 37.76052255449013, + 38.92678681300619, + 40.06062165409103, + 40.93125415779198, + 41.674954715525395, + 42.309569188809235, + 42.8358661020677, + 43.227808371697016, + 43.67316336022734, + 43.97784897073151, + 44.128030057942745, + 44.373574571194844 ], "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125467, - 2.1622431316564783, - 2.506080871543884, - 2.800141391980189, - 3.144409505548065, - 3.532211674254694, - 3.9444357938732804, - 4.765296944453598, - 5.448739751006118, - 6.033258183172322, - 6.998288087184899, - 7.7674948917547475, - 9.79428865808197, - 11.802490368795349, - 12.390872724774988, - 12.930279814376554, - 13.464929069909926, - 13.884729934838585, - 14.246253191878566, - 14.55894010657095, - 14.821120177884682, - 15.016811451464584, - 15.23971426470978, - 15.391971646535712, - 15.466843972899632, - 15.588341534532205 + 1.5268463243731378, + 1.8679037053125447, + 2.162243131656481, + 2.5060808692846526, + 2.8001354113595824, + 3.1434145732042134, + 3.5139696706032693, + 3.86398990998108, + 4.457378506767342, + 4.897378585276887, + 5.25575914795513, + 5.835001814296529, + 6.298008961873132, + 7.588708680033055, + 9.069370449388888, + 9.565587251347093, + 10.054836535703606, + 10.579013519824004, + 11.025401917058558, + 11.439236382434363, + 11.825077143506979, + 12.173681559908374, + 12.452479885945154, + 12.795088970569681, + 13.051151548759735, + 13.187076263933465, + 13.428935645794816 ], "5._96._0.075": [ - 2.209271810327406, - 2.5553235738285265, - 2.851930031668963, - 3.202007625224777, - 3.543586030366084, - 4.124736958241059, - 5.082713019435455, - 6.171003447660342, - 8.075248025750884, - 9.427832536161716, - 10.462184889371523, - 11.986453113820447, - 13.078953428323361, - 15.599578889002377, - 17.769616806353657, - 18.366645113318807, - 18.901131312514813, - 19.42097004808437, - 19.82294703284428, - 20.166134149668775, - 20.460792123371245, - 20.706648075957443, - 20.889798157998282, - 21.09842186937948, - 21.240818571675668, - 21.31073706027092, - 21.424089701005023 + 2.209271810327408, + 2.555323564377844, + 2.8519163871173085, + 3.2004337179891276, + 3.5258154900735104, + 4.0092923807793674, + 4.677208712322843, + 5.355484923361614, + 6.499876690947692, + 7.336938584804072, + 8.010699604462998, + 9.08167405753446, + 9.9224119797625, + 12.17717575356634, + 14.61256897231103, + 15.396290950619207, + 16.14615958404328, + 16.925373308491526, + 17.566193706942506, + 18.142793926535095, + 18.6616746055373, + 19.113213191805887, + 19.462270931486472, + 19.873242246702617, + 20.16533432248025, + 20.31370825094366, + 20.56335788610802 ] }, "logtime": [ @@ -6515,214 +7623,302 @@ 3.003 ] }, - "3_5": { + "1_37": { "bore_locations": [ [ 0.0, 0.0 ], [ - 0.0, - 5.0 + 5.0, + 0.0 ], [ - 0.0, - 10.0 + 10.0, + 0.0 ], [ - 0.0, - 15.0 + 15.0, + 0.0 ], [ - 0.0, - 20.0 + 20.0, + 0.0 ], [ - 5.0, + 25.0, 0.0 ], [ - 5.0, - 5.0 + 30.0, + 0.0 ], [ - 5.0, - 10.0 + 35.0, + 0.0 ], [ - 5.0, - 15.0 + 40.0, + 0.0 ], [ - 5.0, - 20.0 + 45.0, + 0.0 ], [ - 10.0, + 50.0, 0.0 ], [ - 10.0, - 5.0 + 55.0, + 0.0 ], [ - 10.0, - 10.0 - ], + 60.0, + 0.0 + ], [ - 10.0, - 15.0 + 65.0, + 0.0 ], [ - 10.0, - 20.0 + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 + ], + [ + 125.0, + 0.0 + ], + [ + 130.0, + 0.0 + ], + [ + 135.0, + 0.0 + ], + [ + 140.0, + 0.0 + ], + [ + 145.0, + 0.0 + ], + [ + 150.0, + 0.0 + ], + [ + 155.0, + 0.0 + ], + [ + 160.0, + 0.0 + ], + [ + 165.0, + 0.0 + ], + [ + 170.0, + 0.0 + ], + [ + 175.0, + 0.0 + ], + [ + 180.0, + 0.0 ] ], "g": { "5._192._0.08": [ - 2.8352035193230685, - 3.190115138800661, - 3.5498609390674054, - 4.187688439336998, - 5.074041478141767, - 6.674851559973054, - 9.000044409053602, - 11.265363589488713, - 14.640705302321196, - 16.753121867319063, - 18.261395800878635, - 20.355240076506362, - 21.78665838351262, - 24.92844738952389, - 27.5317040745881, - 28.23775895426794, - 28.8677789647084, - 29.478403256846654, - 29.94933188617236, - 30.351197015774652, - 30.69604102364139, - 30.983769286271553, - 31.19824205188385, - 31.44289297464086, - 31.609982581668845, - 31.692023877482363, - 31.825060805735905 + 2.83517114283679, + 3.1874484431171286, + 3.523762500600301, + 4.0333351090762015, + 4.6269907826591625, + 5.568200138167545, + 6.862162943006732, + 8.157787523522796, + 10.293732272405565, + 11.818001608398214, + 13.020771002832856, + 14.881786976730778, + 16.304490014948833, + 19.922794895245993, + 23.540061017462417, + 24.639202919043292, + 25.654731270513917, + 26.67239265329968, + 27.47571760634825, + 28.175459504263543, + 28.782710028368363, + 29.292908366696814, + 29.676229631945635, + 30.114384973914646, + 30.416493733238088, + 30.566508443420492, + 30.81362807508817 ], "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004355, - 2.111467924224727, - 2.451192833739939, - 2.7884280313124297, - 3.045512323934649, - 3.400470421944272, - 3.660565779681686, - 3.8902025074456943, - 4.303887086797668, - 4.671126564722622, - 5.836664507123772, - 7.340846191318556, - 7.862325920906742, - 8.378434762821415, - 8.928717654497387, - 9.390964497926422, - 9.810888100082494, - 10.192152505169856, - 10.525265720066491, - 10.781314206342634, - 11.080292619880323, - 11.288426782296373, - 11.392078377270282, - 11.561816421662916 + 0.874005953226797, + 1.1958031759615428, + 1.4813847491413077, + 1.819821321700434, + 2.1114679242247245, + 2.451192833212005, + 2.7884205853646042, + 3.0450505762257873, + 3.3890266952739028, + 3.6197748961757257, + 3.8059868383777595, + 4.109295444371453, + 4.354619602980738, + 5.056911301115542, + 5.901081881930616, + 6.193379216348411, + 6.488695313866397, + 6.813393765906244, + 7.09811477943288, + 7.369303699330432, + 7.630186475323355, + 7.873924986116038, + 8.074953058129907, + 8.332142358836581, + 8.532897965879878, + 8.643464172125796, + 8.85196869848307 ], "5._384._0.0875": [ - 3.5280599856953785, - 4.213080973607932, - 5.165964107748593, - 6.878390066508662, - 8.955789180466084, - 12.078589755638017, - 15.802405759794022, - 18.903720339012498, - 22.98036958608921, - 25.329307120729734, - 26.94539178766916, - 29.12973200874632, - 30.597052358018693, - 33.78032438092293, - 36.406449930074466, - 37.1179215124281, - 37.75463540337469, - 38.3726714132892, - 38.85052568468331, - 39.25853134546095, - 39.6093215162144, - 39.9025466523854, - 40.12118910579749, - 40.37091898315502, - 40.54141449038774, - 40.62504903311347, - 40.76047255508587 + 3.4941363691313923, + 4.028352553971058, + 4.653385266579702, + 5.6487164714024845, + 6.802711761857217, + 8.60732598174471, + 11.035173488288976, + 13.404551186215729, + 17.166501467855568, + 19.751941698491297, + 21.733259409505205, + 24.6857753653492, + 26.858225211991037, + 32.02890385883092, + 36.7125680940458, + 38.03628815238589, + 39.223872027377276, + 40.37895124698359, + 41.26604344179737, + 42.02397047374259, + 42.670712927761755, + 43.20702653304423, + 43.60644279181411, + 44.060258064600795, + 44.37077198027448, + 44.52385717521128, + 44.77423962302525 ], "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125451, - 2.162243131656477, - 2.506080871798045, - 2.800142064756538, - 3.144520782096798, - 3.534162728595581, - 3.952628090970952, - 4.797262842492293, - 5.5104147945451665, - 6.127267242589088, - 7.159631758201581, - 7.995211026076231, - 10.248998514382093, - 12.556617414498104, - 13.24599147390895, - 13.882164392659803, - 14.51636929107626, - 15.016212753998312, - 15.447931515019524, - 15.82181908321612, - 16.135455325602557, - 16.369632358543218, - 16.636147059457226, - 16.81822829471624, - 16.907840987543533, - 17.0534457869186 + 1.526846324373138, + 1.8679037053125453, + 2.16224313165648, + 2.5060808692884677, + 2.800135421460376, + 3.1434162297509074, + 3.5139967129124905, + 3.86409111041446, + 4.45771165200517, + 4.89796403908223, + 5.256601680470399, + 5.836365365343462, + 6.299884410009899, + 7.592525991112464, + 9.076451076353935, + 9.574048712930992, + 10.064835157627996, + 10.590873101181998, + 11.03905424590374, + 11.454744228850583, + 11.842522035634993, + 12.193089274205482, + 12.473640485762681, + 12.818701124147637, + 13.076932506616659, + 13.214203620719134, + 13.459041382452773 ], "5._96._0.075": [ - 2.2092718103274054, - 2.55532357489173, - 2.851931566473131, - 3.202183201710241, - 3.54548916192579, - 4.136413501500515, - 5.125849398712307, - 6.269765395047149, - 8.32027253206208, - 9.8149750604999, - 10.97845798628486, - 12.722398994312112, - 13.992652563395433, - 16.97356671612827, - 19.578683271043086, - 20.29937994043897, - 20.944626862714102, - 21.572169037324258, - 22.05685533073115, - 22.47052748366812, - 22.8252259401652, - 23.120766658247714, - 23.34082659747316, - 23.591209104025143, - 23.762105877575106, - 23.846059645802825, - 23.982316413754653 + 2.209271810327409, + 2.5553235643938055, + 2.851916410157874, + 3.2004363217580294, + 3.5258419292652703, + 4.009431405465741, + 4.677642224957686, + 5.356373891349707, + 6.501914495911434, + 7.340124884506552, + 8.015011031182558, + 9.088180939056995, + 9.93099825992412, + 12.193112840115628, + 14.639727985021318, + 15.427985199895135, + 16.182682171788375, + 16.967492165828098, + 17.613465675990494, + 18.19518969923837, + 18.719175589435437, + 19.175632627081782, + 19.52887745799167, + 19.94530696938441, + 20.241777796932787, + 20.39259725810676, + 20.646799936394654 ] }, "logtime": [ @@ -6755,226 +7951,306 @@ 3.003 ] }, - "3_6": { + "1_38": { "bore_locations": [ [ 0.0, 0.0 ], [ - 0.0, - 5.0 + 5.0, + 0.0 ], [ - 0.0, - 10.0 + 10.0, + 0.0 ], [ - 0.0, - 15.0 + 15.0, + 0.0 ], [ - 0.0, - 20.0 + 20.0, + 0.0 ], [ - 0.0, - 25.0 + 25.0, + 0.0 ], [ - 5.0, + 30.0, 0.0 ], [ - 5.0, - 5.0 + 35.0, + 0.0 ], [ - 5.0, - 10.0 + 40.0, + 0.0 ], [ - 5.0, - 15.0 + 45.0, + 0.0 ], [ - 5.0, - 20.0 + 50.0, + 0.0 ], [ - 5.0, - 25.0 + 55.0, + 0.0 ], [ - 10.0, + 60.0, 0.0 ], [ - 10.0, - 5.0 + 65.0, + 0.0 ], [ - 10.0, - 10.0 + 70.0, + 0.0 ], [ - 10.0, - 15.0 + 75.0, + 0.0 ], [ - 10.0, - 20.0 + 80.0, + 0.0 ], [ - 10.0, - 25.0 + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 + ], + [ + 125.0, + 0.0 + ], + [ + 130.0, + 0.0 + ], + [ + 135.0, + 0.0 + ], + [ + 140.0, + 0.0 + ], + [ + 145.0, + 0.0 + ], + [ + 150.0, + 0.0 + ], + [ + 155.0, + 0.0 + ], + [ + 160.0, + 0.0 + ], + [ + 165.0, + 0.0 + ], + [ + 170.0, + 0.0 + ], + [ + 175.0, + 0.0 + ], + [ + 180.0, + 0.0 + ], + [ + 185.0, + 0.0 ] ], "g": { "5._192._0.08": [ - 2.835205704816959, - 3.190293285399311, - 3.5515334397035314, - 4.19715513589494, - 5.102856999602241, - 6.759849032154584, - 9.212342591476311, - 11.65329422908895, - 15.379832421395756, - 17.762546930011908, - 19.484068428300247, - 21.895402312117103, - 23.55565494352747, - 27.21634362064644, - 30.255883688788987, - 31.080452306813484, - 31.815263715778293, - 32.52671775525227, - 33.07450510088772, - 33.54177168256636, - 33.942257965367105, - 34.27604754317096, - 34.52480137724168, - 34.80838532926366, - 35.0020923195893, - 35.097242840611095, - 35.25168166225623 + 2.835171189451182, + 3.1874521786571877, + 3.5237950056919396, + 4.033491603225922, + 4.627400578484581, + 5.569244600839934, + 6.864563672244399, + 8.162127744892098, + 10.302664246896326, + 11.83130253827685, + 13.038207385903695, + 14.906936144301534, + 16.336658621851665, + 19.977629845251812, + 23.6258429286415, + 24.736754382698486, + 25.764079676345094, + 26.794612668069018, + 27.60892398861907, + 28.318884885181102, + 28.935488323510437, + 29.453899071838517, + 29.843628434643815, + 30.28932666649967, + 30.59682462450165, + 30.749600296601308, + 31.001438441464163 ], "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615422, + 0.874005953226797, + 1.1958031759615426, 1.4813847491413075, - 1.8198213217004355, - 2.1114679242247285, - 2.451192833775585, - 2.7884285340166994, - 3.0455434198606337, - 3.4012183716952746, - 3.6631376890722773, - 3.895397436319461, - 4.3158332530702035, - 4.691010151229295, - 5.89328012010944, - 7.4714612866346615, - 8.026604691859681, - 8.580512360129228, - 9.1762579817188, - 9.681254889734719, - 10.143911497686958, - 10.567432226228624, - 10.940357945620761, - 11.228984748685384, - 11.568123077498209, - 11.805700190015722, - 11.924564375597381, - 12.120071229868115 + 1.819821321700433, + 2.1114679242247223, + 2.451192833212767, + 2.788420596089729, + 3.0450512369552833, + 3.3890417955872016, + 3.619823123413419, + 3.806077939000696, + 4.109484477683608, + 4.354912234619921, + 5.057629158832328, + 5.902588707623522, + 6.195236955097376, + 6.490957971925826, + 6.816165659267466, + 7.101396884758011, + 7.373134373944576, + 7.63461409463003, + 7.878984308721704, + 8.08059860748654, + 8.338650921354, + 8.540204193279592, + 8.651280662048471, + 8.86099456428967 ], "5._384._0.0875": [ - 3.53022795930162, - 4.2244448279434845, - 5.199561646858205, - 6.975714944684915, - 9.168995707213172, - 12.543370473894523, - 16.681275678101866, - 20.2094096446599, - 24.92799701261454, - 27.6755069399848, - 29.573397725890672, - 32.14270118970849, - 33.87025443341328, - 37.613002937038466, - 40.694046012280246, - 41.527794262549854, - 42.27309038330444, - 42.995821292705266, - 43.5538972802211, - 44.03027369131587, - 44.439507992169546, - 44.78133754053311, - 45.036202338067945, - 45.3272113694606, - 45.52592424418663, - 45.62343329258464, - 45.78143339885348 + 3.494177982158168, + 4.028536679521545, + 4.653853907920194, + 5.649896902482179, + 6.8051239752339265, + 8.612596880898835, + 11.046166714718504, + 13.423299308388202, + 17.20238742372472, + 19.803257634410357, + 21.798570671144358, + 24.77566774083097, + 26.96936508828995, + 32.20135520343323, + 36.955385956561706, + 38.30169401275357, + 39.51016127554764, + 40.686098090872726, + 41.58937956010675, + 42.36131845781154, + 43.02001667927843, + 43.566210619432354, + 43.97300242635688, + 44.43516867016757, + 44.75143856713977, + 44.90739363043174, + 45.16256130421926 ], "5._48._0.075": [ - 1.52684632437314, - 1.8679037053125456, - 2.1622431316564765, - 2.506080871967489, - 2.8001425132741034, - 3.144594966573821, - 3.535463565273232, - 3.9580941285098836, - 4.818676511301623, - 5.551905165101823, - 6.190784885090294, - 7.269689573977297, - 8.15195325978915, - 10.57190391575667, - 13.114786056846384, - 13.88801224236919, - 14.606358313810917, - 15.327027223147484, - 15.897704379180679, - 16.392499684667463, - 16.82202224253226, - 17.18284914035004, - 17.452544174931923, - 17.75946151517089, - 17.96928823640093, - 18.072670614473463, - 18.240900765698264 + 1.5268463243731416, + 1.867903705312544, + 2.1622431316564827, + 2.506080869292083, + 2.8001354310295548, + 3.1434177991109755, + 3.5140223319876265, + 3.864186985806589, + 4.458027285475464, + 4.898518748318245, + 5.257400008913101, + 5.83765751816109, + 6.30166182186237, + 7.596145112255164, + 9.08316745824157, + 9.582076160542165, + 10.07432269437477, + 10.602129070334817, + 11.05201462550809, + 11.469469500943399, + 11.859090712730673, + 12.211526929446833, + 12.493748075031078, + 12.841145880139795, + 13.10144676381248, + 13.240004587432704, + 13.487702641714368 ], "5._96._0.075": [ - 2.2092718103274054, - 2.5553235756005317, - 2.8519325896759065, - 3.2023002530207605, - 3.546758045225016, - 4.144208344536223, - 5.154803547420688, - 6.336612534881606, - 8.489323728253032, - 10.086688355252646, - 11.346424983670472, - 13.260460519421951, - 14.673903856811481, - 18.045400892386333, - 21.042239152299054, - 21.87731014069735, - 22.62574246274712, - 23.35415088489598, - 23.916447514396122, - 24.396374340196605, - 24.807482872044265, - 25.149651158090396, - 25.404341483409727, - 25.693844446082803, - 25.89145399417834, - 25.988581225612954, - 26.146391301460568 + 2.209271810327404, + 2.555323564408928, + 2.8519164319857833, + 3.20043878848657, + 3.5258669769647164, + 4.00956311590974, + 4.678052960466597, + 5.357216236857246, + 6.50384588679176, + 7.343145320087329, + 8.01909864046389, + 9.094351844602944, + 9.939143128805096, + 12.208243347920476, + 14.665539053153203, + 15.458116306443857, + 16.21741628292372, + 17.00756588387231, + 17.65846083982408, + 18.245082895846927, + 18.773955683584717, + 19.23512974097381, + 19.592399677832944, + 20.01409447500626, + 20.31481217194874, + 20.46801540117042, + 20.726683400384758 ] }, "logtime": [ @@ -7007,218 +8283,310 @@ 3.003 ] }, - "4_4": { + "1_39": { "bore_locations": [ [ 0.0, 0.0 ], [ - 0.0, - 5.0 + 5.0, + 0.0 ], [ - 0.0, - 10.0 + 10.0, + 0.0 ], [ - 0.0, - 15.0 + 15.0, + 0.0 ], [ - 5.0, + 20.0, 0.0 ], [ - 5.0, - 5.0 + 25.0, + 0.0 ], [ - 5.0, - 10.0 + 30.0, + 0.0 ], [ - 5.0, - 15.0 + 35.0, + 0.0 ], [ - 10.0, + 40.0, 0.0 ], [ - 10.0, - 5.0 + 45.0, + 0.0 ], [ - 10.0, - 10.0 + 50.0, + 0.0 ], [ - 10.0, - 15.0 + 55.0, + 0.0 ], [ - 15.0, + 60.0, 0.0 ], [ - 15.0, - 5.0 + 65.0, + 0.0 ], [ - 15.0, - 10.0 + 70.0, + 0.0 ], [ - 15.0, - 15.0 + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 + ], + [ + 125.0, + 0.0 + ], + [ + 130.0, + 0.0 + ], + [ + 135.0, + 0.0 + ], + [ + 140.0, + 0.0 + ], + [ + 145.0, + 0.0 + ], + [ + 150.0, + 0.0 + ], + [ + 155.0, + 0.0 + ], + [ + 160.0, + 0.0 + ], + [ + 165.0, + 0.0 + ], + [ + 170.0, + 0.0 + ], + [ + 175.0, + 0.0 + ], + [ + 180.0, + 0.0 + ], + [ + 185.0, + 0.0 + ], + [ + 190.0, + 0.0 ] ], "g": { "5._192._0.08": [ - 2.8352057050613384, - 3.190294242055475, - 3.551579047869279, - 4.197770654769028, - 5.1054120007203085, - 6.7678989750914, - 9.223529620147279, - 11.643191719638494, - 15.264731051826653, - 17.53099848045213, - 19.146834311027266, - 21.385549244341814, - 22.91296317062012, - 26.25623404457498, - 29.018865847773657, - 29.76728194372418, - 30.43471243912256, - 31.081298204444867, - 31.579710618632273, - 32.00497113457921, - 32.36978762980547, - 32.674111151169065, - 32.9009496756597, - 33.15968804910977, - 33.33640963015014, - 33.42318886201574, - 33.56393896764539 + 2.8351712336750636, + 3.1874557226314355, + 3.5238258439343753, + 4.033640075953617, + 4.627789393417546, + 5.5702357371148805, + 6.86684242102844, + 8.166248605881817, + 10.311149710049557, + 11.843943628562892, + 13.054784327781006, + 14.930860334254115, + 16.367275005177802, + 20.029898148895533, + 23.707746098618127, + 24.82996041874242, + 25.868637547421237, + 26.91158639131642, + 27.73652959988864, + 28.456408570922388, + 29.08211821070303, + 29.60854955057774, + 30.004554721429216, + 30.45766027474356, + 30.770465312804852, + 30.925965466473215, + 31.18246991080115 ], "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004342, - 2.111467924224728, - 2.4511928337755844, - 2.7884285340333554, - 3.045543460360317, - 3.4012308424856124, - 3.6632333298732687, - 3.895679416225261, - 4.31675891175422, - 4.692833948174316, - 5.899118182564597, - 7.48182609108996, - 8.036130969316716, - 8.586360956960199, - 9.174427810982532, - 9.668875717075965, - 10.118139436466775, - 10.525684289909554, - 10.881172619214876, - 11.153862223043946, - 11.471314013282175, - 11.691614772754814, - 11.801113409711034, - 11.980093093119201 + 0.874005953226797, + 1.1958031759615417, + 1.4813847491413064, + 1.8198213217004333, + 2.111467924224724, + 2.4511928332134887, + 2.7884206062648516, + 3.0450518638012096, + 3.3890561215343404, + 3.61986887761754, + 3.8061643685489224, + 4.109663821836776, + 4.355189873484604, + 5.0583103207318265, + 5.904018782595706, + 6.197000176580089, + 6.4931056747892635, + 6.818796985710866, + 7.1045128615052375, + 7.37677154660896, + 7.6388185640367405, + 7.883789269830207, + 8.085960974581624, + 8.344834179004733, + 8.547146459493641, + 8.658708585116132, + 8.869574074248101 ], "5._384._0.0875": [ - 3.5302822737344224, - 4.225196089371995, - 5.202543479706359, - 6.9845076031642765, - 9.180197396034956, - 12.517560061523431, - 16.51590495451879, - 19.843103403321294, - 24.204871060071238, - 26.712008336560274, - 28.43468369345217, - 30.76023182086211, - 32.321016474020226, - 35.70296883297569, - 38.4899869029692, - 39.24471154047153, - 39.91998782836852, - 40.575325478060925, - 41.081902738143405, - 41.51441975468773, - 41.886238751676515, - 42.19701198353821, - 42.42874356296075, - 42.693420979465074, - 42.87413361981612, - 42.96278712311065, - 43.10635847412245 + 3.494217462099807, + 4.0287113699208374, + 4.654298564073013, + 5.651017102379615, + 6.807413619691099, + 8.617602116527655, + 11.056612680162957, + 13.441125921306266, + 17.236551830899717, + 19.852152499467167, + 21.860842536630035, + 24.861475222878028, + 27.07555288042482, + 32.366576579205145, + 37.188906054016044, + 38.55728841166938, + 39.786210204551075, + 40.98262368075322, + 41.90182840293129, + 42.68756844976211, + 43.35805389103791, + 43.91399519090029, + 44.328066791724545, + 44.79847797477122, + 45.12043380986162, + 45.279225621756176, + 45.539127596096534 ], "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808719674896, - 2.8001425132872746, - 3.1445951642087775, - 3.5354943555535385, - 3.958383257412994, - 4.82049654334741, - 5.55608555439892, - 6.197585289305629, - 7.280477073704636, - 8.164075596561373, - 10.566510726760388, - 13.03739726929072, - 13.774655267379785, - 14.454030782462283, - 15.130054743922495, - 15.661707506033217, - 16.12007990765267, - 16.516291073142064, - 16.84806774892725, - 17.095482272655033, - 17.376664199368363, - 17.56859366785283, - 17.66301600159165, - 17.816417053290447 + 1.5268463243731416, + 1.867903705312545, + 2.1622431316564814, + 2.506080869295512, + 2.800135440108009, + 3.143419287991072, + 3.5140466373048436, + 3.8642779456788174, + 4.458326752575517, + 4.8990450728039905, + 5.258157523145044, + 5.838883737471574, + 6.303348688606769, + 7.599581087244509, + 9.089546995390075, + 9.5897021495152, + 10.083337352024392, + 10.612826360363742, + 11.064334353098825, + 11.483469966677825, + 11.874847559176843, + 12.22906546618157, + 12.512879327866907, + 12.862507694221907, + 13.124785287083782, + 13.264573734672995, + 13.515019561301726 ], "5._96._0.075": [ - 2.209271810327405, - 2.555323575600532, - 2.8519325897389014, - 3.2023007030249224, - 3.546787236114989, - 4.144682387847334, - 5.157372873719228, - 6.343302644340462, - 8.50140385797139, - 10.092625153883795, - 11.33723466762142, - 13.206986255752291, - 14.569711913815667, - 17.761408408023094, - 20.53774599629982, - 21.30372051619266, - 21.98844832655775, - 22.653610907399276, - 23.166744166689213, - 23.604428796379032, - 23.97942908490322, - 24.291686885464387, - 24.524133862685446, - 24.78851590779729, - 24.96894880690779, - 25.05758985180375, - 25.2014847208316 + 2.2092718103274116, + 2.555323564423278, + 2.8519164526943106, + 3.2004411287163173, + 3.525890740206425, + 4.00968807453211, + 4.678442667992372, + 5.358015533872271, + 6.505678986827839, + 7.346012513945492, + 8.02297941923929, + 9.100212139478707, + 9.946879769225385, + 12.222626988569747, + 14.690100070797717, + 15.486797082225292, + 16.250490083599555, + 17.045739798098726, + 17.701339634825047, + 18.29264822366978, + 18.82620264197892, + 19.291903317090057, + 19.653044259005522, + 20.079819243738946, + 20.38465583611674, + 20.540182381839884, + 20.803229186936782 ] }, "logtime": [ @@ -7251,178 +8619,12986 @@ 3.003 ] }, - "2_3": { + "1_4": { "bore_locations": [ [ 0.0, 0.0 ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], [ 5.0, 0.0 ], [ - 5.0, - 5.0 + 10.0, + 0.0 ], [ - 5.0, - 10.0 + 15.0, + 0.0 ] ], "g": { "5._192._0.08": [ - 2.8351838500296616, - 3.1885118572313673, - 3.534817814223326, - 4.1030737424674095, - 4.821317420742483, - 5.969919191578708, - 7.41028413925126, - 8.648650678142598, - 10.318019242462421, - 11.295421939311396, - 11.97337743517005, - 12.898811056559623, - 13.524508345420257, - 14.897437624552998, - 16.042123430945267, - 16.35383097791215, - 16.633592896224254, - 16.90595883307184, - 17.117309952985618, - 17.297937101829362, - 17.45358097851654, - 17.58393310527604, - 17.6811611636915, - 17.79229429280022, - 17.868148885395772, - 17.905336255686425, - 17.965445068310917 + 2.8351565293061927, + 3.186277369725293, + 3.5135763440050924, + 3.984482530615498, + 4.500328527187433, + 5.252929853813622, + 6.166049558164793, + 6.954818862458517, + 8.035329575127863, + 8.677316270389335, + 9.126260992463921, + 9.74365052040903, + 10.163560451553488, + 11.09224837617182, + 11.87253405098203, + 12.085668095178917, + 12.277305834288796, + 12.464136810401527, + 12.609345157930006, + 12.733492953922616, + 12.840568813105348, + 12.930315914522732, + 12.997261077795526, + 13.073806543685494, + 13.126038789048899, + 13.151633867822897, + 13.192971097467371 ], "5._24._0.075": [ - 0.8740059532267962, - 1.1958031759615424, - 1.4813847491413075, - 1.8198213217004349, - 2.111467924224728, - 2.4511928334191357, - 2.788423506974107, - 3.0452324610064143, - 3.3937398837242934, - 3.637437610795647, - 3.843546410724326, - 4.197128320327028, - 4.494757418969375, - 5.356757547871304, - 6.322806150411278, - 6.626738081951607, - 6.915404542282874, - 7.21101958981349, - 7.450860982652266, - 7.66246734371669, - 7.850165882224263, - 8.011164200847652, - 8.133224321258036, - 8.274627098240014, - 8.37233003387617, - 8.420668855356707, - 8.49937572606141 + 0.8740013793970963, + 1.1957934696806856, + 1.4813667488882372, + 1.8197853662506762, + 2.1114044341807157, + 2.451070525119184, + 2.78818375566569, + 3.044462584972616, + 3.3835492733852717, + 3.6035402764592814, + 3.775936601553508, + 4.04783928375391, + 4.260199503376492, + 4.83026072820424, + 5.440316619613034, + 5.631817647925681, + 5.8144603766946545, + 6.002746075381008, + 6.15671652137846, + 6.293698523897438, + 6.416260465066006, + 6.522333986896158, + 6.603431531688164, + 6.698303675873532, + 6.764456015353557, + 6.797366566033298, + 6.851243600007028 ], "5._384._0.0875": [ - 3.508669460749622, - 4.111915670923915, - 4.873040032123389, - 6.080558225789574, - 7.357967553781383, - 9.04485058828995, - 10.84277364416776, - 12.241098615273712, - 14.011222366677718, - 15.01309719121016, - 15.699134890832847, - 16.62764066517033, - 17.252332732919882, - 18.619928993318393, - 19.76028670279949, - 20.070751033016197, - 20.34972432420409, - 20.621432400545174, - 20.832432856467467, - 21.012738747514504, - 21.168177723656544, - 21.298415605446706, - 21.395540979639048, - 21.50658808640696, - 21.58234324516048, - 21.619456039757466, - 21.679401052203215 + 3.4811393655885206, + 3.971010269644954, + 4.508976665415018, + 5.294251139816838, + 6.103114537954158, + 7.177936460766827, + 8.343480110490887, + 9.262841494572463, + 10.439178278648443, + 11.109549088367109, + 11.570154220595375, + 12.195693347635098, + 12.617618287524184, + 13.544949039519576, + 14.321132217443383, + 14.532760907779526, + 14.723102299691968, + 14.908625655760929, + 15.052829037332357, + 15.176068454958983, + 15.282364173235125, + 15.37146341955096, + 15.43790498694524, + 15.513878999541594, + 15.565692266203763, + 15.591066210539713, + 15.632024448327295 ], "5._48._0.075": [ - 1.5268463243731434, - 1.8679037053125456, - 2.162243131656478, - 2.5060808702730704, - 2.8001380280984436, - 3.1438531258067117, - 3.5224600129449035, - 3.9035943923639613, - 4.608135080323152, - 5.1510836559379705, - 5.589462884077594, - 6.27130271990618, - 6.783963554912862, - 8.04316830464235, - 9.202414931053042, - 9.53127928011967, - 9.83044491677738, - 10.125260643940114, - 10.356342764412293, - 10.555043007864295, - 10.727181907122153, - 10.87191268601469, - 10.980113122105404, - 11.103877010708246, - 11.188516611811483, - 11.230104665601413, - 11.297459077760191 + 1.5268359332879173, + 1.8678839385147374, + 2.1622087383456443, + 2.5060151099606895, + 2.8000188519866724, + 3.1427073206177853, + 3.5055373540001047, + 3.8333195360139745, + 4.357904355255417, + 4.7240568674260475, + 5.008175496203009, + 5.440407740861426, + 5.762629797534667, + 6.557057784804414, + 7.302738578001398, + 7.517295299755165, + 7.713813485892955, + 7.90866356380504, + 8.062297541151557, + 8.19505899526737, + 8.310650013821848, + 8.408302728791881, + 8.481590072964535, + 8.565802485788343, + 8.623600723744266, + 8.652055179321795, + 8.698212371267878 ], "5._96._0.075": [ - 2.2092619209324718, - 2.555305556880593, - 2.8518917514576345, - 3.201071628572207, - 3.5339683812307245, - 4.066374782143852, - 4.871306856588727, - 5.703345918840731, - 7.011014828442001, - 7.859290682278471, - 8.476335068125367, - 9.349652040268383, - 9.955723894960455, - 11.316721448596432, - 12.4702954875727, - 12.786558094229333, - 13.070633086294775, - 13.347621860741711, - 13.562753164373564, - 13.746815702553597, - 13.905500700816589, - 14.038445223288367, - 14.137675478115584, - 14.251099311683415, - 14.328597138129837, - 14.366636071121864, - 14.428211518355958 + 2.2092619209324704, + 2.5553055480208138, + 2.851878961478617, + 3.199605002205937, + 3.5178882395629185, + 3.968046678185059, + 4.55014749155164, + 5.098742395066348, + 5.930851539740409, + 6.470185581628055, + 6.865730338663789, + 7.431794194211518, + 7.82918121122223, + 8.73596275485232, + 9.51800957209451, + 9.734023351563122, + 9.928834742576504, + 10.119361285092724, + 10.267811157313929, + 10.394989586500742, + 10.504853818991128, + 10.597056343718467, + 10.665915874567876, + 10.744705908389962, + 10.798543354928198, + 10.824959083605435, + 10.867680397495905 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_40": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 + ], + [ + 125.0, + 0.0 + ], + [ + 130.0, + 0.0 + ], + [ + 135.0, + 0.0 + ], + [ + 140.0, + 0.0 + ], + [ + 145.0, + 0.0 + ], + [ + 150.0, + 0.0 + ], + [ + 155.0, + 0.0 + ], + [ + 160.0, + 0.0 + ], + [ + 165.0, + 0.0 + ], + [ + 170.0, + 0.0 + ], + [ + 175.0, + 0.0 + ], + [ + 180.0, + 0.0 + ], + [ + 185.0, + 0.0 + ], + [ + 190.0, + 0.0 + ], + [ + 195.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835171275687775, + 3.1874590894072745, + 3.5238551403355647, + 4.033781128579467, + 4.628158798521362, + 5.571177529291744, + 6.869008255622753, + 8.170166326259787, + 10.31922132493572, + 11.855972784907479, + 13.07056383029445, + 14.95364689071097, + 16.39644881681502, + 20.079775831236535, + 23.786027588944403, + 24.91910308467764, + 25.968708864908706, + 27.023637678959116, + 27.858871392229002, + 28.58837684385814, + 29.222952321751183, + 29.757216558711054, + 30.159367720743443, + 30.619747435368602, + 30.937779015658258, + 31.095967930367927, + 31.35708768935699 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961541, + 1.4813847491413068, + 1.819821321700433, + 2.1114679242247245, + 2.4511928332141726, + 2.788420615931216, + 3.0450524593048454, + 3.3890697311921416, + 3.6199123442540326, + 3.8062464772980267, + 4.109834203162788, + 4.35545364301136, + 5.0589575304375485, + 5.905377825169635, + 6.198675914997585, + 6.495146965813912, + 6.8212981731455615, + 7.107475011256944, + 7.380229517421522, + 7.642816338164548, + 7.8883585805081555, + 8.091060943757208, + 8.350715924519246, + 8.553751298430942, + 8.665776211353926, + 8.877739538467898 + ], + "5._384._0.0875": [ + 3.4942549688707145, + 4.02887733228018, + 4.654721030444231, + 5.652081566313319, + 6.809589805578065, + 8.622361279174177, + 11.066551253932008, + 13.458097323587342, + 17.269115620358697, + 19.898793565608397, + 21.92028213385679, + 24.943469647665886, + 27.177110742658325, + 32.52500307800076, + 37.41362907441923, + 38.803582672590345, + 40.0525375223868, + 41.26905249717306, + 42.20391869985192, + 43.00325285909416, + 43.685360420168045, + 44.25091927955977, + 44.672177448087425, + 45.150730631862366, + 45.478304514872264, + 45.63990101256992, + 45.904488045726524 + ], + "5._48._0.075": [ + 1.526846324373144, + 1.8679037053125487, + 2.1622431316564796, + 2.506080869298771, + 2.8001354487325325, + 3.143420702427206, + 3.5140697273929837, + 3.8643643586098095, + 4.458611264324774, + 4.899545136877749, + 5.2588772750587545, + 5.840048944191337, + 6.304951757160064, + 7.602847474919426, + 9.095614407239376, + 9.596956058882732, + 10.091913621496825, + 10.623005553119036, + 11.076059778442632, + 11.49679784583472, + 11.88985080346057, + 12.245769073843187, + 12.531103652846621, + 12.882863074296523, + 13.14703057254651, + 13.287996924217405, + 13.541083361351898 + ], + "5._96._0.075": [ + 2.209271810327416, + 2.5553235644369052, + 2.8519164723674164, + 3.20044335193468, + 3.525913315321795, + 4.009806787532314, + 4.678812922050219, + 5.358775000185647, + 6.507421112985986, + 7.348737839422122, + 8.026668677913955, + 9.10578469845536, + 9.954238119584424, + 12.236317722436151, + 14.713499679314666, + 15.51412974292976, + 16.282019785649446, + 17.082145802705494, + 17.742247803520183, + 18.338044582337712, + 18.87608750416984, + 19.346134784717687, + 19.711000160939207, + 20.142677826160504, + 20.451509214511113, + 20.609299942089237, + 20.876640241057743 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351598062666232, + 3.186539970868435, + 3.5158597860966205, + 3.9954013132700497, + 4.528420506228125, + 5.3215759636561835, + 6.31279536227868, + 7.197643286509492, + 8.449802285616565, + 9.21208449967516, + 9.751349000396456, + 10.498844387141098, + 11.01019344790078, + 12.144898313237372, + 13.099625948047745, + 13.360473668577686, + 13.594785319219229, + 13.823057700360815, + 14.00027547815332, + 14.151752764767862, + 14.282290873883106, + 14.39161564155346, + 14.47315005172904, + 14.566327283043137, + 14.629913935163467, + 14.661082947670087, + 14.7114545821795 + ], + "5._24._0.075": [ + 0.8740013793970968, + 1.195793469680686, + 1.4813667488882376, + 1.8197853662506758, + 2.111404434180715, + 2.451070525172641, + 2.7881845093787754, + 3.0445090095690146, + 3.384609546576235, + 3.60692258803915, + 3.782313721304198, + 4.060991129105417, + 4.280408476405369, + 4.878001605922317, + 5.534874882442655, + 5.745943502422536, + 5.949666959848923, + 6.162379721752643, + 6.338479744874569, + 6.49689031949909, + 6.64004768398907, + 6.76506132893069, + 6.861365674024911, + 6.974792013370061, + 7.054411305581753, + 7.094208003200405, + 7.159645254280049 + ], + "5._384._0.0875": [ + 3.484045428228503, + 3.983803041186735, + 4.5409283279405095, + 5.371119867045962, + 6.250610707585901, + 7.460822088981469, + 8.822064064479669, + 9.923056162452188, + 11.35373942918458, + 12.175784657247368, + 12.742211991048363, + 13.512226599200405, + 14.031877063359648, + 15.172488335257922, + 16.125332896405297, + 16.38489296263954, + 16.618121258210458, + 16.84527448121368, + 17.021659665212646, + 17.17237123947259, + 17.30227791766592, + 17.41110415604465, + 17.492249758034, + 17.585007675061036, + 17.64827611166057, + 17.67926884036746, + 17.72932432908714 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125438, + 2.1622431316564774, + 2.506080868409208, + 2.800133094236608, + 3.1430345625688068, + 3.5077674641030474, + 3.8408116625904216, + 4.381586671332468, + 4.765025811641742, + 5.0664282724592455, + 5.532471379825891, + 5.886390053018073, + 6.785527080084026, + 7.663765491037, + 7.921985185406946, + 8.160457294662926, + 8.39852958441645, + 8.587237147922867, + 8.750825350971988, + 8.893568538257197, + 9.014297504376565, + 9.104922018464343, + 9.208990335965863, + 9.280380743302517, + 9.315523178898712, + 9.372516058367696 + ], + "5._96._0.075": [ + 2.209261920932471, + 2.5553055490839878, + 2.8518804959132367, + 3.199778397146007, + 3.519648020844696, + 3.977249406611028, + 4.578267520113382, + 5.154848731697201, + 6.051483672644926, + 6.64903109207958, + 7.095749573899366, + 7.746739141717749, + 8.21143309928475, + 9.290062728168119, + 10.234593250466354, + 10.497074014542322, + 10.733965995209655, + 10.965795245194869, + 11.1463870323713, + 11.301144547056056, + 11.434763905850694, + 11.546829250128546, + 11.630513785636808, + 11.726204400187711, + 11.791598239536073, + 11.82369792476395, + 11.875650777827616 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835161990911118, + 3.1867150393227837, + 3.517382314078809, + 4.002692053524816, + 4.547247743896627, + 5.367980602934978, + 6.413570897056565, + 7.368631251473461, + 8.756431479101177, + 9.620653096642311, + 10.239410857054358, + 11.104845246864013, + 11.701048412476972, + 13.030666099915301, + 14.15275812389436, + 14.459600600779275, + 14.73502536672501, + 15.003207714105734, + 15.211206411368803, + 15.388959622334651, + 15.54202512808495, + 15.670121922445576, + 15.765641438969773, + 15.874746584972375, + 15.949209240564953, + 15.985720622448445, + 16.044762103825423 + ], + "5._24._0.075": [ + 0.8740059532267962, + 1.1958031759615424, + 1.4813847491413075, + 1.8198213217004349, + 2.111467924224728, + 2.451192833062686, + 2.7884184796647324, + 3.0449208530816416, + 3.386062186750797, + 3.610309594636148, + 3.788116506186535, + 4.0722835555242085, + 4.297458391423497, + 4.918397013470395, + 5.61584433170168, + 5.843837463130339, + 6.066165491561771, + 6.300813022308235, + 6.497258102773271, + 6.675709755400152, + 6.838541308355629, + 6.982014684034514, + 7.0933559921619755, + 7.2254301846344235, + 7.318753499591462, + 7.365610745077294, + 7.442978084331978 + ], + "5._384._0.0875": [ + 3.4859855003899294, + 3.9923526176916058, + 4.562366681191675, + 5.423179572495527, + 6.351897707188339, + 7.662034742866547, + 9.181066820380732, + 10.43987096909204, + 12.103673142668287, + 13.069209871928068, + 13.737033095912324, + 14.646499652878957, + 15.260947136768802, + 16.60872995583057, + 17.733078357411195, + 18.03913778800683, + 18.313907521596736, + 18.5813341907395, + 18.78879675179029, + 18.966027440371185, + 19.118697950718726, + 19.246521975063747, + 19.341825483318093, + 19.450734107695883, + 19.525027676769373, + 19.561430791160035, + 19.620254657474046 + ], + "5._48._0.075": [ + 1.5268463243731434, + 1.8679037053125456, + 2.162243131656478, + 2.5060808685786498, + 2.8001335427120204, + 3.1431081128315754, + 3.508967689277732, + 3.8452920087841305, + 4.396158399568936, + 4.790341907673497, + 5.1024668122352, + 5.589462598819013, + 5.963237889259346, + 6.930182846399339, + 7.9023401724775715, + 8.193762340376306, + 8.464899445380386, + 8.737487450753207, + 8.95476995829216, + 9.143990687370689, + 9.309650406466377, + 9.450109469695633, + 9.555748290333073, + 9.677192905925992, + 9.76062836275538, + 9.801755151911522, + 9.86854588921472 + ], + "5._96._0.075": [ + 2.2092619209324704, + 2.5553055497927706, + 2.8518815188696505, + 3.1998939940869224, + 3.5208213260912595, + 3.9833921153927623, + 4.597116326255696, + 5.192666633794937, + 6.133875980646579, + 6.772999136289317, + 7.25762498277739, + 7.974401186413238, + 8.493701931753968, + 9.71993303662497, + 10.812582732567138, + 11.11854192062693, + 11.395086505922585, + 11.666052948584051, + 11.877194636648637, + 12.058233088047688, + 12.214508475351074, + 12.345520563404403, + 12.443354501252804, + 12.555167327733807, + 12.631594925930047, + 12.669128294461094, + 12.729922063086406 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351635513735327, + 3.1868400887210777, + 3.518469948327196, + 4.007905391760889, + 4.560744629535112, + 5.401449083758796, + 6.486976321316337, + 7.494819690011772, + 8.990031148978208, + 9.939742486515406, + 10.62756995709885, + 11.598631317944045, + 12.272809342815531, + 13.785766062801317, + 15.068231886920891, + 15.419442920350987, + 15.734535049510566, + 16.041230270215344, + 16.27890182163994, + 16.481985532426044, + 16.65674348422391, + 16.802895065437415, + 16.911862557914205, + 17.036270572370665, + 17.12118489782945, + 17.16283345665093, + 17.230222114881137 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004349, + 2.1114679242247276, + 2.4511928330881467, + 2.788418838701112, + 3.044942971763282, + 3.386567629728472, + 3.6119230278460517, + 3.7911613045797923, + 4.078580049636962, + 4.307163752177449, + 4.941677435556674, + 5.663027618983758, + 5.901361759594423, + 6.135247696883413, + 6.383886230396662, + 6.59370507369637, + 6.785803776503792, + 6.962509782107197, + 7.119485626994295, + 7.242243538718094, + 7.389029028716575, + 7.493643635612574, + 7.5465023506515365, + 7.634332582782971 + ], + "5._384._0.0875": [ + 3.487372589585155, + 3.998469801266941, + 4.5777474410051315, + 5.460776223461212, + 6.425674739213298, + 7.811448320008934, + 9.457393874786662, + 10.851633705797674, + 12.726622455189958, + 13.826818124689655, + 14.591252079696888, + 15.634857218384486, + 16.341099374278958, + 17.89012008611717, + 19.18120760165275, + 19.532466736275204, + 19.84756093006916, + 20.15403736620567, + 20.391581915199563, + 20.59447307028286, + 20.76914405185987, + 20.915308582552065, + 21.024277607388683, + 21.148765882915125, + 21.233696595705158, + 21.275322017056848, + 21.342617449775894 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656477, + 2.506080868699679, + 2.8001338630516033, + 3.14316064878727, + 3.509825052299018, + 3.848493949538661, + 4.406595353628653, + 4.808512554916006, + 5.128385046179502, + 5.630621991594365, + 6.018944136982413, + 7.036679243449652, + 8.083085612065275, + 8.402118479140187, + 8.701041197701302, + 9.003679581690063, + 9.246361952110863, + 9.458765264812914, + 9.64545370153571, + 9.80423770945946, + 9.923954658858502, + 10.061818993725646, + 10.156722307309312, + 10.203578162091253, + 10.279798091320455 + ], + "5._96._0.075": [ + 2.2092619209324726, + 2.555305550299042, + 2.8518822495528053, + 3.199976563484331, + 3.5216594589333883, + 3.987783469991948, + 4.610630051411952, + 5.219885841408891, + 6.193697119043065, + 6.863688145465759, + 7.37701355174114, + 8.145097648783063, + 8.708507627471517, + 10.06015942648566, + 11.28655314742143, + 11.632954167739143, + 11.94671528792384, + 12.254687309217946, + 12.494851774934968, + 12.700949413835472, + 12.87886828832538, + 13.02799852954206, + 13.13937721517926, + 13.266623199224691, + 13.353625807082219, + 13.396374577666606, + 13.465670536191942 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_26": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ], + [ + 45.0, + 0.0 + ], + [ + 50.0, + 0.0 + ], + [ + 55.0, + 0.0 + ], + [ + 60.0, + 0.0 + ], + [ + 65.0, + 0.0 + ], + [ + 70.0, + 0.0 + ], + [ + 75.0, + 0.0 + ], + [ + 80.0, + 0.0 + ], + [ + 85.0, + 0.0 + ], + [ + 90.0, + 0.0 + ], + [ + 95.0, + 0.0 + ], + [ + 100.0, + 0.0 + ], + [ + 105.0, + 0.0 + ], + [ + 110.0, + 0.0 + ], + [ + 115.0, + 0.0 + ], + [ + 120.0, + 0.0 + ], + [ + 125.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835170393421313, + 3.1873883871783186, + 3.5232399304115853, + 4.030819746532886, + 4.62040761388765, + 5.551443342893337, + 6.823734315007371, + 8.088484615210456, + 10.151828055850618, + 11.607422464180203, + 12.74551973706557, + 14.486869383953303, + 15.801421647321236, + 19.076126171558055, + 22.234909140887403, + 23.165052852397746, + 24.014083468146467, + 24.85375967327871, + 25.508849022953584, + 26.073583027118985, + 26.559824142498194, + 26.96579885983915, + 27.26911934221851, + 27.614521704929764, + 27.85135035025999, + 27.968303034431422, + 28.159611044541748 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961542, + 1.481384749141308, + 1.8198213217004335, + 2.1114679242247227, + 2.4511928331997788, + 2.788420412937566, + 3.0450399537291557, + 3.388783930019056, + 3.618999574062581, + 3.8045223323541233, + 4.106257091534953, + 4.349917061614497, + 5.04538776867076, + 5.87693410968033, + 6.1636237097452105, + 6.4524782903903235, + 6.7690640234497295, + 7.045671282354786, + 7.308152513938637, + 7.559579988412103, + 7.793336215411448, + 7.985121399955396, + 8.228747660071749, + 8.417006719091983, + 8.519596442347417, + 8.709282057731489 + ], + "5._384._0.0875": [ + 3.4934674957336784, + 4.02539344825342, + 4.64585803409726, + 5.629783783120462, + 6.764098589237183, + 8.523269858446136, + 10.860853882113345, + 13.10896117617859, + 16.60669584040968, + 18.957103258281542, + 20.72748204852442, + 23.315107446953288, + 25.177857430125357, + 29.485470022045188, + 33.23935048462212, + 34.277698765829676, + 35.2051356968036, + 36.10385330670727, + 36.79386220087496, + 37.382449203391765, + 37.885303461874834, + 38.30300043300665, + 38.61405424256533, + 38.96790387008743, + 39.20971207833941, + 39.32866641761304, + 39.52245105710482 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125418, + 2.162243131656476, + 2.5060808692303502, + 2.8001352676174576, + 3.1433909992753186, + 3.5135848430700425, + 3.8625499023776078, + 4.452640199855078, + 4.889055203052394, + 5.243785663371583, + 5.81564054649845, + 6.2713985968998145, + 7.534703363636782, + 8.96958762820137, + 9.446491163213379, + 9.914308786008066, + 10.412628015875795, + 10.834196653426119, + 11.222432554023689, + 11.581657694087056, + 11.903408466970498, + 12.158323976828193, + 12.467735800862195, + 12.69474541195319, + 12.81294250862731, + 13.017173814013772 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235641506533, + 2.8519160592323156, + 3.200396664368657, + 3.5254392452174708, + 4.0073142869130915, + 4.671044111678564, + 5.342853621596416, + 6.470975403126834, + 7.291809873751646, + 7.949706987977282, + 8.98983321948766, + 9.80144498143959, + 11.95410391571966, + 14.235420230971025, + 14.957272714369356, + 15.641691748220959, + 16.345553983552563, + 16.917579106470455, + 17.42637683063041, + 17.878567737632128, + 18.26692676482874, + 18.563227689775385, + 18.90716373243116, + 19.14734479345649, + 19.2675791823036, + 19.466591442511284 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351647217214677, + 3.186933876044517, + 3.519285736505398, + 4.011818497662372, + 4.570894108303604, + 5.426728791536699, + 6.54283296440728, + 7.591620694148268, + 9.17287427882817, + 10.194107684929786, + 10.941523251610322, + 12.00638612842619, + 12.751640249349293, + 14.436094492467918, + 15.871970204591033, + 16.265984796584448, + 16.619382638898305, + 16.963296056123465, + 17.22962699562798, + 17.457181743403964, + 17.652877641644146, + 17.81643860401857, + 17.938371584706154, + 18.07752195433133, + 18.172508033742663, + 18.21911029705349, + 18.294558020175877 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615428, + 1.481384749141307, + 1.8198213217004344, + 2.1114679242247276, + 2.4511928331072417, + 2.788419107978398, + 3.0449595607775213, + 3.38694671903478, + 3.6131332285032456, + 3.793445501332113, + 4.083306271732066, + 4.314453820052616, + 4.959227826323579, + 5.698797092038951, + 5.945050639137389, + 6.187843159811322, + 6.447351967369248, + 6.667688198809891, + 6.870670508507129, + 7.058642033713825, + 7.226812270639648, + 7.359240903062616, + 7.518811155763976, + 7.633534711150006, + 7.691889342711376, + 7.78953283313596 + ], + "5._384._0.0875": [ + 3.4884136311046037, + 4.003063355715507, + 4.589320170805375, + 5.489201774443061, + 6.481812737411748, + 7.926527425106713, + 9.675279758487836, + 11.185093060011493, + 13.249766296660328, + 14.475431511368184, + 15.331419463282488, + 16.503586351457493, + 17.298532622656356, + 19.042952677600642, + 20.49631606502745, + 20.891580909268864, + 21.245886489210218, + 21.59029727570618, + 21.85701793916289, + 22.084788611103733, + 22.28076589101648, + 22.444673214799938, + 22.566859934104503, + 22.706408405934326, + 22.801623258318443, + 22.84829984392765, + 22.923796795536 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808687904506, + 2.800134103306287, + 3.143200050783419, + 3.510468107010462, + 3.8508963316091953, + 4.414438740817388, + 4.822188729027952, + 5.147920809779815, + 5.6617412665866, + 6.061172234912023, + 7.118222625355691, + 8.223977400646614, + 8.565926354152591, + 8.888368587760395, + 9.216982914172783, + 9.482070651932084, + 9.715283521502554, + 9.92114303118358, + 10.096861017270282, + 10.229732025255013, + 10.383086671728998, + 10.488908728979549, + 10.541255081907316, + 10.626567721596818 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323562310493, + 2.851913403363865, + 3.200096530994641, + 3.522392018642154, + 3.991314729739165, + 4.621427261157848, + 5.2418623011263055, + 6.243476466214302, + 6.940573200551681, + 7.479616008236281, + 8.295144787010088, + 8.900299636780371, + 10.376719238156289, + 11.74301450802422, + 12.132732242709551, + 12.486853442375677, + 12.835330841652922, + 13.10754000849982, + 13.341321271536831, + 13.543201038346496, + 13.71239405971962, + 13.838714322240936, + 13.982915022417407, + 14.08146763778019, + 14.129887734480553, + 14.208373458997382 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_9": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ], + [ + 35.0, + 0.0 + ], + [ + 40.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351656319927545, + 3.1870068219033163, + 3.519920275456365, + 4.014863864275213, + 4.578804079347618, + 5.446497302574992, + 6.5867638892224605, + 7.668210630295387, + 9.31948595678537, + 10.400751592603127, + 11.199460533416461, + 12.347208567557189, + 13.156859528019162, + 15.000946441179334, + 16.583279549015096, + 17.01857367752908, + 17.4089778114082, + 17.788893833730206, + 18.0829461087665, + 18.334181903923373, + 18.55012717027752, + 18.730511529439973, + 18.864972877443385, + 19.018358910344357, + 19.12307397596743, + 19.174464676721957, + 19.2577123592597 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833122094, + 2.7884193174162886, + 3.04497246334593, + 3.3872415704645307, + 3.6140745702022876, + 3.7952224531880465, + 4.086984505796733, + 4.320130426044472, + 4.9729318086172745, + 5.726847809033363, + 5.979358867048692, + 6.229217031584646, + 6.497391994910775, + 6.72617189207539, + 6.937966719710192, + 7.135171064256747, + 7.3126583934509215, + 7.4532752755923175, + 7.623914203819442, + 7.747637887561994, + 7.810998147346106, + 7.9178111669112 + ], + "5._384._0.0875": [ + 3.489223759869314, + 4.006639482911057, + 4.598343276007638, + 5.511446901966879, + 6.525963758174213, + 8.017847288010064, + 9.850905469534082, + 11.459298557513014, + 13.693400435541571, + 15.035278395984449, + 15.977598076151251, + 17.272541012503424, + 18.153014168043356, + 20.087039880660246, + 21.698451737439473, + 22.13661438713422, + 22.529104227366194, + 22.91042431111111, + 23.205490461365894, + 23.457425178969224, + 23.674073103378994, + 23.85517602846363, + 23.99017047005815, + 24.144303566541343, + 24.249479358635817, + 24.30105041601473, + 24.384501702015786 + ], + "5._48._0.075": [ + 1.526846324373141, + 1.8679037053125445, + 2.1622431316564743, + 2.5060808688610527, + 2.800134290171044, + 3.1432306967978354, + 3.510968279902779, + 3.8527654002068767, + 4.420548459229536, + 4.832854404892467, + 5.163173093427485, + 5.686094377701076, + 6.094284879986048, + 7.18264666289096, + 8.336585270179654, + 8.697625890919033, + 9.039982296550278, + 9.390985403061684, + 9.675748443344334, + 9.927540494293723, + 10.150785408708634, + 10.342080301255882, + 10.487197918838648, + 10.655135183964207, + 10.77134700075032, + 10.82895715943251, + 10.923049524254044 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235626058286, + 2.851913829614357, + 3.200144700434344, + 3.5228810369142374, + 3.9938798036542758, + 4.629352674794193, + 5.257913589969824, + 6.279213384934956, + 6.9952773092555445, + 7.552289038871843, + 8.401007319695614, + 9.035923080498607, + 10.603863876776305, + 12.079333118352304, + 12.504253880805331, + 12.891518221104416, + 13.273615481615817, + 13.572592520008799, + 13.829730304265892, + 14.051931208170306, + 14.238218102995257, + 14.377356608283858, + 14.536178758759824, + 14.64477430111061, + 14.698160519875215, + 14.784765590895411 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_10": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351991469769, + 3.1897534909045384, + 3.5462612127065505, + 4.165346312107027, + 5.002616329336359, + 6.470554507992012, + 8.571173310445168, + 10.65082372359197, + 13.905563753564394, + 16.071489070674993, + 17.684516279019636, + 20.014091404434257, + 21.66558600985996, + 25.423102269743364, + 28.633684825612843, + 29.514427826915952, + 30.30045824758507, + 31.0623256184991, + 31.648600086899247, + 32.148777787873556, + 32.5769929299841, + 32.93343246797113, + 33.198976834733706, + 33.50136861552825, + 33.70795368596633, + 33.80949652010646, + 33.974530352437924 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615422, + 1.4813847491413077, + 1.8198213217004353, + 2.1114679242247267, + 2.4511928336686477, + 2.7884270258106443, + 3.0454499053115835, + 3.3989047567863793, + 3.654887762132971, + 3.8782412065362943, + 4.274881577540001, + 4.621494849663018, + 5.696502493814167, + 7.055781734610631, + 7.527997342671619, + 8.000258200538303, + 8.511307146049397, + 8.94960365640068, + 9.356770526831879, + 9.736380136576985, + 10.07798774386081, + 10.348508748622342, + 10.675599750982503, + 10.912472275504095, + 11.034029278685303, + 11.239525434602365 + ], + "5._384._0.0875": [ + 3.5234313882275057, + 4.18621884622795, + 5.082828535054123, + 6.648539510592799, + 8.524672288795037, + 11.407014036342856, + 15.052051705930182, + 18.31371908314974, + 22.91322836951863, + 25.707205368568737, + 27.67810471640075, + 30.386095209426983, + 32.226928486167274, + 36.24259959767141, + 39.559600445103385, + 40.45769918609362, + 41.259258990121275, + 42.03557354772715, + 42.63380669065918, + 43.144213037543096, + 43.58202232326349, + 43.947207667040026, + 44.219398693423685, + 44.52993320177161, + 44.74199748090885, + 44.84610539171864, + 45.01497707169361 + ], + "5._48._0.075": [ + 1.5268463243731432, + 1.8679037053125407, + 2.1622431316564765, + 2.506080871459159, + 2.8001411676476406, + 3.1443713066571433, + 3.5313889767378863, + 3.940088503760774, + 4.7444982960048785, + 5.406355670159458, + 5.9696851789601215, + 6.903215173759388, + 7.656680527891103, + 9.722680603679587, + 11.955138820788742, + 12.659611735984495, + 13.327440806397332, + 14.012450060044808, + 14.567306504957273, + 15.057911845932214, + 15.491714460448948, + 15.862170885282818, + 16.14269238137118, + 16.46572995289578, + 16.688950295165203, + 16.79976400390867, + 16.9813285308534 + ], + "5._96._0.075": [ + 2.2092718103274116, + 2.5553235734741278, + 2.8519295197148, + 3.2019465798473306, + 3.5427882589935717, + 4.118194248576405, + 5.05407889856666, + 6.105211761938466, + 7.958297064223382, + 9.316513763584762, + 10.392361400931774, + 12.051416521178915, + 13.303983720198387, + 16.4144548178818, + 19.355442379883744, + 20.20550552660126, + 20.97775910486863, + 21.73795713551596, + 22.329783919789033, + 22.83792190039124, + 23.274953317284055, + 23.639637381018275, + 23.911551627956943, + 24.220802859709742, + 24.43222119458885, + 24.536319181072194, + 24.705808136247086 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_11": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ], + [ + 5.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835199742965203, + 3.189801867070939, + 3.5467072607715213, + 4.167784651192716, + 5.009809733973495, + 6.491107819068051, + 8.621774801797184, + 10.744017555211947, + 14.092631245058312, + 16.34105996802032, + 18.02631119754084, + 20.47622533839053, + 22.224645367845195, + 26.232010019699533, + 29.681563384954295, + 30.630810317116495, + 31.478129292940125, + 32.29947865611202, + 32.93117593435185, + 33.47009948083765, + 33.93121062266946, + 34.31479616028715, + 34.60053280242791, + 34.925785609739386, + 35.14802021336619, + 35.25729344082422, + 35.43501749719455 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615408, + 1.4813847491413077, + 1.8198213217004344, + 2.1114679242247263, + 2.4511928336783733, + 2.7884271629081727, + 3.0454583771765567, + 3.399106007531155, + 3.6555680455287143, + 3.8795950167329134, + 4.2779261427071615, + 4.626481387733931, + 5.710247422118949, + 7.086845258955859, + 7.566887565362279, + 8.048101099377584, + 8.570214671830778, + 9.019342168461808, + 9.437823268830705, + 9.829302985028262, + 10.182926094205476, + 10.464073384001406, + 10.805677549049651, + 11.054666586161792, + 11.183187822233911, + 11.402018941499165 + ], + "5._384._0.0875": [ + 3.524009042329743, + 4.189136655289777, + 5.091186658957902, + 6.672030665200386, + 8.575509917495884, + 11.519907853799706, + 15.279263952281198, + 18.679560357979373, + 23.532453685410527, + 26.51156381587673, + 28.624948565354412, + 31.540447153905365, + 33.52869726506723, + 37.8732165409921, + 41.464006016443335, + 42.436168421428995, + 43.30323042001106, + 44.1424895986598, + 44.78863758276456, + 45.33982134349292, + 45.812309475099724, + 46.20619614128068, + 46.499754648970274, + 46.83457219738619, + 47.0632428692688, + 47.17553005028697, + 47.35776439441371 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125405, + 2.162243131656477, + 2.5060808715053726, + 2.800141289967739, + 3.144391495609368, + 3.5317369620531176, + 3.9415137110641045, + 4.749882882923018, + 5.416551219068939, + 5.985049259102155, + 6.929411774602361, + 7.693716056715292, + 9.799927685965667, + 12.095151920259088, + 12.824807669314163, + 13.519104789828258, + 14.234204310945772, + 14.815934314190464, + 15.332346316648877, + 15.790690171849619, + 16.18348283532243, + 16.48184626229431, + 16.826383805464705, + 17.06518052749808, + 17.184012201220362, + 17.37920422253316 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.5553235736674367, + 2.8519297987563554, + 3.2019784045834627, + 3.5431278813854825, + 4.1202109331185275, + 5.06130345683903, + 6.1214402707612825, + 7.998545482656954, + 9.381051132025013, + 10.480357397289968, + 12.183368116280931, + 13.475758497471716, + 16.711019044361535, + 19.80859949121743, + 20.711660213537222, + 21.534465542185675, + 22.346673537629567, + 22.980206185534886, + 23.52504132257942, + 23.994038663231287, + 24.385586413273945, + 24.6776721195698, + 25.009867038941014, + 25.237093977484427, + 25.34905679523205, + 25.531538851685934 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_12": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ], + [ + 5.0, + 50.0 + ], + [ + 5.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352002396223046, + 3.189842180590413, + 3.54707897903254, + 4.1698172982584065, + 5.015811793417501, + 6.508298918306948, + 8.664280447778166, + 10.822651891202582, + 14.251740634138335, + 16.571623927608666, + 18.320064509168986, + 20.876685062126285, + 22.7124018190964, + 26.94972088721287, + 30.62529366865215, + 31.64020748372183, + 32.54648103713905, + 33.42519948976322, + 34.100746411911196, + 34.67711025187851, + 35.17000256638202, + 35.57980077139165, + 35.885036114706075, + 36.23235314938975, + 36.469699760603625, + 36.58644475431739, + 36.77645474750113 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.195803175961541, + 1.4813847491413077, + 1.819821321700434, + 2.111467924224724, + 2.4511928336864712, + 2.788427277156116, + 3.045465437064551, + 3.39927371774131, + 3.656134971701408, + 3.880723310253186, + 4.280464154308078, + 4.630639640820035, + 5.721731745464834, + 7.112884573969467, + 7.599522106085801, + 8.088299625964137, + 8.61979028366504, + 9.078126780082867, + 9.506259045994017, + 9.907903391036394, + 10.27186490796404, + 10.562207317834803, + 10.916483827278359, + 11.176214294723227, + 11.311010977083873, + 11.542148590287328 + ], + "5._384._0.0875": [ + 3.5244905654552388, + 4.191569482088172, + 5.098162548399366, + 6.691689503517511, + 8.618212277018115, + 11.61536359909829, + 15.473036401120062, + 18.99419034538388, + 24.073313037078066, + 27.222029290226015, + 29.4680457754824, + 32.57937811345392, + 34.7084199285761, + 39.37012510298696, + 43.22691398925782, + 44.27118979992794, + 45.201984544061226, + 46.10244691921389, + 46.79511162070511, + 47.385871464605515, + 47.89197555882731, + 48.313651990898826, + 48.62789532940837, + 48.98620617794586, + 49.2309462433432, + 49.35115207636218, + 49.546337780603714 + ], + "5._48._0.075": [ + 1.5268463243731447, + 1.8679037053125414, + 2.162243131656477, + 2.506080871543882, + 2.800141391901159, + 3.144408319741254, + 3.5320269557530333, + 3.942701576526373, + 4.754374195041566, + 5.425062087847098, + 5.997884824484694, + 6.951335341185521, + 7.724757703110086, + 9.865041623392917, + 12.21396361523975, + 12.965315912041714, + 13.682562919409003, + 14.423939663252604, + 15.029370476934474, + 15.568755557595702, + 16.049187333687584, + 16.46231770448756, + 16.777107630608086, + 17.141677562392015, + 17.395177228837536, + 17.521649342752642, + 17.729952404573474 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.5553235738285274, + 2.851930031290988, + 3.2020049252113947, + 3.543410905779109, + 4.121891946554401, + 5.067331738149123, + 6.135002690545728, + 8.032308052383982, + 9.435335227659287, + 10.554543787522325, + 12.295077927066899, + 13.621659883163575, + 16.96540341198735, + 20.202505278563127, + 21.15390758361545, + 22.023261617391803, + 22.883846452111953, + 23.55652467849364, + 24.136058769129466, + 24.635458815450253, + 25.052674567987022, + 25.36410064770449, + 25.71834852002395, + 25.960812722049013, + 26.080375786866888, + 26.27545163153375 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_14": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 65.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ], + [ + 5.0, + 50.0 + ], + [ + 5.0, + 55.0 + ], + [ + 5.0, + 60.0 + ], + [ + 5.0, + 65.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352010200838147, + 3.1899055304939035, + 3.5476631289254206, + 4.173012740213884, + 5.025257500732775, + 6.535430448421685, + 8.731702708020274, + 10.94804021058728, + 14.507908112108485, + 16.94521880685443, + 18.798643787706418, + 21.535233439744765, + 23.520921191886735, + 28.16441638092275, + 32.25500567552028, + 33.39306216422044, + 34.41055450898533, + 35.39802691369615, + 36.15689403138563, + 36.804542308906804, + 37.35796328068206, + 37.81767141605935, + 38.16004226986927, + 38.549358899052486, + 38.81549743311725, + 38.9464986496815, + 39.16000872547332 + ], + "5._24._0.075": [ + 0.8740059532267972, + 1.195803175961542, + 1.4813847491413068, + 1.819821321700434, + 2.1114679242247245, + 2.4511928336992033, + 2.7884274566885985, + 3.045476531175191, + 3.399537264664532, + 3.657025898562647, + 3.8824965603286987, + 4.2844540639217055, + 4.637179192831405, + 5.739834242427371, + 7.154087049352276, + 7.651224188799972, + 8.152080854465247, + 8.69860007933182, + 9.171752024351754, + 9.615470253797856, + 10.033601013878384, + 10.41441454343363, + 10.719829370778353, + 11.095065801488643, + 11.372852861827866, + 11.518405946213266, + 11.771324960527853 + ], + "5._384._0.0875": [ + 3.5252475105777656, + 4.195394920570193, + 5.109144511307937, + 6.722735100540504, + 8.685943356319221, + 11.767952834986632, + 15.786026725127922, + 19.507303872818106, + 24.971137300800955, + 28.417591303679682, + 30.90140500487607, + 34.37081614231891, + 36.76193620263044, + 42.02367662661513, + 46.390236575951555, + 47.57330398167349, + 48.626687397265314, + 49.64479439578831, + 50.42669064050051, + 51.09334161042843, + 51.66379861052378, + 52.13858916125286, + 52.49235634277888, + 52.89551958094843, + 53.17094775707232, + 53.306287128932034, + 53.52626558012392 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.867903705312544, + 2.162243131656476, + 2.506080871604398, + 2.8001415520822306, + 3.144434757672044, + 3.5324826710439763, + 3.94456857626816, + 4.761439614625184, + 5.438463139952625, + 6.018114247665053, + 6.985958512058199, + 7.77386809593864, + 9.968748912830435, + 12.404722213723828, + 13.19149971363113, + 13.946478716158985, + 14.731387517404881, + 15.376505111900116, + 15.954762063001494, + 16.473067157843897, + 16.92158992659705, + 17.26539321232327, + 17.665952547177874, + 17.9463936565027, + 18.087076528263513, + 18.320147416417996 + ], + "5._96._0.075": [ + 2.209271810327409, + 2.5553235740816707, + 2.851930396702549, + 3.2020466005104686, + 3.543855668929185, + 4.124534353010243, + 5.076819132476015, + 6.156386344177028, + 8.085775619011201, + 9.521574903323264, + 10.672721399932554, + 12.47391490818078, + 13.856136417586772, + 17.378940208927123, + 20.852524229107974, + 21.88828154896148, + 22.839881241846708, + 23.787136257224795, + 24.530898125544514, + 25.174150201224023, + 25.729911568886266, + 26.195086943650978, + 26.542871013081605, + 26.93877494525698, + 27.21016280337114, + 27.34421450333225, + 27.56341388596575 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_15": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 65.0 + ], + [ + 0.0, + 70.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ], + [ + 5.0, + 50.0 + ], + [ + 5.0, + 55.0 + ], + [ + 5.0, + 60.0 + ], + [ + 5.0, + 65.0 + ], + [ + 5.0, + 70.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352013322685434, + 3.189930870485119, + 3.5478967961368797, + 4.174291355982785, + 5.029040546822261, + 6.546323259050281, + 8.75888857526571, + 10.998828219354516, + 14.612539354413904, + 17.09864870073849, + 18.996077981758557, + 21.809010862271354, + 23.85927563848103, + 28.68197284399027, + 32.96258773265809, + 34.15827970666526, + 35.228172735303396, + 36.26717524634053, + 37.06565053259994, + 37.747273322147144, + 38.329569184997425, + 38.813092124479326, + 39.173190753916394, + 39.582552019187965, + 39.862445974219455, + 40.000268724115266, + 40.22505201688486 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615433, + 1.481384749141307, + 1.8198213217004335, + 2.1114679242247254, + 2.451192833704296, + 2.788427528501591, + 3.0454809688197715, + 3.399642684223431, + 3.6573822839803634, + 3.8832059347616106, + 4.286050577388845, + 4.639796778374605, + 5.7470943634159015, + 7.1706657951019634, + 7.672049694151753, + 8.177804886959905, + 8.730437500080908, + 9.209635730957803, + 9.659735448759575, + 10.084641041344229, + 10.47240731136186, + 10.784066410186632, + 11.168041993517308, + 11.45344616368607, + 11.60360798751532, + 11.866134153859944 + ], + "5._384._0.0875": [ + 3.5255503796720915, + 4.196925926365243, + 5.1135441014123435, + 6.7352060136911165, + 8.713252594427878, + 11.829890734494345, + 15.914233467323026, + 19.71921819079604, + 25.34737688114094, + 28.92446904507142, + 31.514622961157208, + 35.14721032885701, + 37.65991009479262, + 43.20486760297167, + 47.815671415748255, + 49.06558853372572, + 50.17800860007091, + 51.25275232284675, + 52.077530496090596, + 52.78064291095734, + 53.38196954121695, + 53.88220013248199, + 54.254893224879645, + 54.67951669941554, + 54.96963264724299, + 55.112220564147805, + 55.34409383688387 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125422, + 2.1622431316564765, + 2.506080871628597, + 2.8001416161546704, + 3.144445332847532, + 3.5326649608924923, + 3.9453154973339752, + 4.7642684008969605, + 5.443832758175643, + 6.026226342742068, + 6.999866858925323, + 7.793626123171431, + 10.010712913842521, + 12.482451303008988, + 13.283866237086407, + 14.054522698161808, + 14.857626555274472, + 15.519466978795673, + 16.11423575754629, + 16.64880467083016, + 17.11272162658789, + 17.46931468203843, + 17.885998124421178, + 18.17875315856271, + 18.326033888529754, + 18.570799073073765 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.5553235741829274, + 2.8519305428671795, + 3.2020632706392016, + 3.5440335777934204, + 4.12559159421023, + 5.0806190188553835, + 6.164964276967722, + 8.10730483097837, + 9.55639474902032, + 10.72054734008956, + 12.5465994461793, + 13.951751010255329, + 17.549253975723822, + 21.123495715279354, + 22.196048748953814, + 23.18392845026459, + 24.169909268324297, + 24.94586137605532, + 25.618295420167193, + 26.20013205984512, + 26.687690176007177, + 27.052561698864917, + 27.4681576998614, + 27.753297469145988, + 27.894270438332697, + 28.12505350513997 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_16": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 65.0 + ], + [ + 0.0, + 70.0 + ], + [ + 0.0, + 75.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ], + [ + 5.0, + 50.0 + ], + [ + 5.0, + 55.0 + ], + [ + 5.0, + 60.0 + ], + [ + 5.0, + 65.0 + ], + [ + 5.0, + 70.0 + ], + [ + 5.0, + 75.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835201605430227, + 3.1899530429914433, + 3.5481012583474194, + 4.175410350620747, + 5.032352947467394, + 6.555873383164447, + 8.782778789919368, + 11.043568324629152, + 14.705131056113126, + 17.23482768618569, + 19.171735997970387, + 22.053583650272476, + 24.162584096980723, + 29.15045691299291, + 33.61018173911657, + 34.860994822208795, + 35.981233657891714, + 37.06995084562557, + 37.906741967502434, + 38.62129897064203, + 39.231613599196216, + 39.73825637534639, + 40.115573578200916, + 40.54440403481415, + 40.83766882895398, + 40.98212957937605, + 41.217901438212515 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961542, + 1.4813847491413081, + 1.8198213217004324, + 2.1114679242247236, + 2.451192833708749, + 2.788427591337959, + 3.045484851758927, + 3.3997349267075827, + 3.6576941280990285, + 3.883826672268031, + 4.287447784358506, + 4.642087993277021, + 5.753455956806287, + 7.185218312094895, + 7.690340314768808, + 8.20041341418194, + 8.75844370591497, + 9.242989692473808, + 9.698743577565681, + 10.129663666829654, + 10.52361538497026, + 10.840841044022484, + 11.232630487416385, + 11.524880097160374, + 11.679214888401168, + 11.950580958518422 + ], + "5._384._0.0875": [ + 3.52581543282321, + 4.198265945901948, + 5.117396937215473, + 6.746142862163244, + 8.737250662973482, + 11.884516213940126, + 16.027866814221436, + 19.907894333993433, + 25.68493544949115, + 29.382073186423778, + 32.07100477803156, + 35.856904783787265, + 38.48513375291481, + 44.302393258553444, + 49.15061412887461, + 50.46577885195908, + 51.63583200928826, + 52.76586600027737, + 53.63246565629438, + 54.37113398896956, + 55.002535364127766, + 55.52752804564284, + 55.91863986238979, + 56.36413804509573, + 56.66854416843634, + 56.81818795303488, + 57.0616525990023 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125416, + 2.1622431316564787, + 2.5060808716497824, + 2.8001416722180466, + 3.144454586127559, + 3.532824466259407, + 3.9459691100715193, + 4.766744817365787, + 5.448535491706804, + 6.033333973631099, + 7.012064463505546, + 7.81096806132483, + 10.047659783990632, + 12.551147314023844, + 13.365595123894279, + 14.150251183211816, + 14.96965223492637, + 15.646529349847683, + 16.25620273242059, + 16.805533252827576, + 17.283518001162072, + 17.651886649995355, + 18.08355877044326, + 18.387906519636623, + 18.541463892140253, + 18.79748428445383 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.555323574271527, + 2.8519306707612295, + 3.2020778570061146, + 3.5441892497390945, + 4.126516810893802, + 5.083946232648775, + 6.172481470562311, + 8.126210010483101, + 9.587015453929912, + 10.76265828388434, + 12.610746604222886, + 14.036286710647804, + 17.700660812153266, + 21.36589577976528, + 22.47213613775176, + 23.49344187329061, + 24.515367935143534, + 25.321449869875796, + 26.021393867075368, + 26.627978931445025, + 27.136910363836222, + 27.51818121572214, + 27.95276029377461, + 28.251214156648615, + 28.39891079197108, + 28.640988030657343 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_17": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 65.0 + ], + [ + 0.0, + 70.0 + ], + [ + 0.0, + 75.0 + ], + [ + 0.0, + 80.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ], + [ + 5.0, + 50.0 + ], + [ + 5.0, + 55.0 + ], + [ + 5.0, + 60.0 + ], + [ + 5.0, + 65.0 + ], + [ + 5.0, + 70.0 + ], + [ + 5.0, + 75.0 + ], + [ + 5.0, + 80.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835201846455302, + 3.1899726069784435, + 3.5482816688159917, + 4.176397858405252, + 5.035277387696189, + 6.564314657661088, + 8.803938316383382, + 11.08327979597285, + 14.78764685049213, + 17.35650734611131, + 19.32902434144303, + 22.27336075432403, + 24.435953828927353, + 29.576291363404586, + 34.20478785121655, + 35.50829294762541, + 36.67688389530612, + 37.81355528977075, + 38.687417777740066, + 39.43391340048111, + 40.071434483969306, + 40.60054298029896, + 40.994601654957506, + 41.44236484066223, + 41.74864292289229, + 41.89957142591264, + 42.14606837755359 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615428, + 1.4813847491413072, + 1.8198213217004329, + 2.1114679242247245, + 2.4511928337126805, + 2.7884276467818063, + 3.045488277881821, + 3.399816317421668, + 3.6579692900055463, + 3.884374408866304, + 4.288680813790297, + 4.644110295064712, + 5.7590761048397825, + 7.198094648634915, + 7.706532269475185, + 8.220440019204636, + 8.783270850165456, + 9.272580277787057, + 9.733378342968127, + 10.16967337821606, + 10.569163054441354, + 10.891381350160534, + 11.290196205319715, + 11.588624039596354, + 11.746747042472443, + 12.026250205652978 + ], + "5._384._0.0875": [ + 3.5260493363493777, + 4.199448618052139, + 5.120798976384402, + 6.755812295375743, + 8.758505269884841, + 11.93305161673836, + 16.129276293799528, + 20.076956359664972, + 25.98943308683796, + 29.797083294691312, + 32.57782606950433, + 36.507743862791585, + 39.24567795268489, + 45.32457129084727, + 50.4035580680982, + 51.78242846391278, + 53.00877575064312, + 54.19282438022843, + 55.10024673503052, + 55.87361984508507, + 56.534350772523766, + 57.08347115515284, + 57.49252727295247, + 57.95835285926516, + 58.276677688441325, + 58.43319741197209, + 58.68797022898703 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564783, + 2.5060808716684715, + 2.8001417216857334, + 3.1444627507875644, + 3.5329652076450486, + 3.9465458712248633, + 4.768930843410474, + 5.452688311937375, + 6.039612822327427, + 7.022848654866394, + 7.826311501582485, + 10.080438330352193, + 12.612297723460896, + 13.438422722529982, + 14.23565416107178, + 15.069733021615587, + 15.760195674150214, + 16.383377592230215, + 16.946147362195017, + 17.437013543806092, + 17.816235326115187, + 18.261842802889614, + 18.5770995998889, + 18.736624873466262, + 19.00347484589308 + ], + "5._96._0.075": [ + 2.2092718103274103, + 2.5553235743497025, + 2.851930783608917, + 3.2020907273331662, + 3.544326608647739, + 4.127333279822889, + 5.0868838038296404, + 6.179123218594112, + 8.142943296238633, + 9.614153274126263, + 10.800020527920088, + 12.6677763219132, + 14.111562188554249, + 17.83614544086916, + 21.583977233808106, + 22.721118679591232, + 23.773258598585592, + 24.828563974538273, + 25.662846587791712, + 26.388715139045086, + 27.01877955380572, + 27.5481141479437, + 27.94512242229719, + 28.398005766783264, + 28.709357747012774, + 28.86359133664205, + 29.116691169770814 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_18": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 65.0 + ], + [ + 0.0, + 70.0 + ], + [ + 0.0, + 75.0 + ], + [ + 0.0, + 80.0 + ], + [ + 0.0, + 85.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ], + [ + 5.0, + 50.0 + ], + [ + 5.0, + 55.0 + ], + [ + 5.0, + 60.0 + ], + [ + 5.0, + 65.0 + ], + [ + 5.0, + 70.0 + ], + [ + 5.0, + 75.0 + ], + [ + 5.0, + 80.0 + ], + [ + 5.0, + 85.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835202060699834, + 3.1899899971976353, + 3.548442035751396, + 4.177275768714856, + 5.037878255511087, + 6.57182960130087, + 8.82280997910934, + 11.118765106615607, + 14.861645600789473, + 17.46588409453256, + 19.47067646161018, + 22.4719165108488, + 24.68356670432791, + 29.9648715713144, + 34.75238393013055, + 36.10623959754885, + 37.321249977546216, + 38.50416675528362, + 39.41389891363579, + 40.19137677482895, + 40.855330201125156, + 41.40628595529109, + 41.81663718903847, + 42.282831022978, + 42.60178872654317, + 42.75902647543182, + 43.01600376801937 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.195803175961542, + 1.4813847491413084, + 1.8198213217004344, + 2.1114679242247245, + 2.4511928337161795, + 2.7884276960652374, + 3.0454913233244967, + 3.3998886649488713, + 3.658213882562811, + 3.884861307119581, + 4.289776997181166, + 4.645908401708438, + 5.764077291293349, + 7.209568616240353, + 7.7209671271505105, + 8.23830303648798, + 8.80543105005237, + 9.299010251704193, + 9.764335953512004, + 10.20546295262792, + 10.609939326771718, + 10.936660245320084, + 11.341824267647064, + 11.645851881633893, + 11.807423726897333, + 12.094422795576879 + ], + "5._384._0.0875": [ + 3.526257276650006, + 4.200500119917819, + 5.123824963125083, + 6.764422551061731, + 8.77746137435855, + 11.976461315592928, + 16.22033225474752, + 20.229311443571724, + 26.265474492183493, + 30.175066641198566, + 33.04122495681791, + 37.10644114895142, + 39.9485016465147, + 46.27863288516858, + 51.58189628077384, + 53.02298347384298, + 54.30434293639775, + 55.54119334053803, + 56.48849462803322, + 57.295770057847896, + 57.98512997273697, + 58.55778287405837, + 58.98433837622122, + 59.46997851840003, + 59.80187414368709, + 59.965101377580304, + 60.230917428321426 + ], + "5._48._0.075": [ + 1.5268463243731378, + 1.8679037053125447, + 2.162243131656481, + 2.506080871685079, + 2.800141765657014, + 3.1444700082640185, + 3.5330903121661894, + 3.9470585824626783, + 4.770874727829162, + 5.456382345912045, + 6.045199859378088, + 7.032451637386005, + 7.839983052706887, + 10.10971614992085, + 12.667080515921379, + 13.503727219598218, + 14.312315354604507, + 15.159680422747796, + 15.862473314621774, + 16.497947412486855, + 17.072991454484338, + 17.57567917288179, + 17.964917232650006, + 18.423486260253387, + 18.749005893413358, + 18.914202732303615, + 19.191469176000158 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.5553235744191958, + 2.8519308839179747, + 3.202102167626491, + 3.5444487064860666, + 4.1280591096933135, + 5.089496391344708, + 6.185034033269123, + 8.157858601541896, + 9.638370360616092, + 10.833394212667864, + 12.71881034734174, + 14.179018972873672, + 17.95809497255998, + 21.7812054700895, + 22.946752874484517, + 24.027378580373938, + 25.11370378330145, + 25.97438722779366, + 26.724682101758145, + 27.37701485966383, + 27.925820853879806, + 28.337929096476643, + 28.808464572089612, + 29.132317597280927, + 29.292910796273016, + 29.556777062262263 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_19": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 65.0 + ], + [ + 0.0, + 70.0 + ], + [ + 0.0, + 75.0 + ], + [ + 0.0, + 80.0 + ], + [ + 0.0, + 85.0 + ], + [ + 0.0, + 90.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ], + [ + 5.0, + 50.0 + ], + [ + 5.0, + 55.0 + ], + [ + 5.0, + 60.0 + ], + [ + 5.0, + 65.0 + ], + [ + 5.0, + 70.0 + ], + [ + 5.0, + 75.0 + ], + [ + 5.0, + 80.0 + ], + [ + 5.0, + 85.0 + ], + [ + 5.0, + 90.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352022523923535, + 3.19000555687425, + 3.5485855236117585, + 4.178061367639416, + 5.040206437649483, + 6.578562760075657, + 8.839745773805387, + 11.15066464887152, + 14.92838056220315, + 17.564732379862456, + 19.598910276836012, + 22.6521752097251, + 24.90887347896897, + 30.320755973915674, + 35.25810676632628, + 36.6600610902497, + 37.919619685578645, + 39.147122623238324, + 40.09156169908482, + 40.899100220939296, + 41.58874541339774, + 42.1609612245348, + 42.58718096041409, + 43.07133380544489, + 43.40265865814589, + 43.566057567255136, + 43.8332870699292 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615426, + 1.4813847491413075, + 1.819821321700433, + 2.1114679242247223, + 2.451192833719306, + 2.788427740160931, + 3.0454940481943296, + 3.399953397127015, + 3.6584327318825354, + 3.885296969899943, + 4.290757918293374, + 4.647517636969432, + 5.768556429898698, + 7.219857471346091, + 7.733916154744024, + 8.254335069285924, + 8.825332051894332, + 9.322760210077778, + 9.792172330647444, + 10.237666424264695, + 10.64665637303462, + 10.977458348009526, + 11.388387699173855, + 11.697511802741365, + 11.862233103722845, + 12.156144967674201 + ], + "5._384._0.0875": [ + 3.5264433492880074, + 4.20144112708512, + 5.12653398323379, + 6.7721386187540356, + 8.794472657605299, + 12.015516335973343, + 16.302542217345177, + 20.367318584705565, + 26.516860216591525, + 30.520690566664104, + 33.46640661661961, + 37.65877102456574, + 40.599636827257854, + 47.1709048711102, + 52.69210759232937, + 54.19396991758214, + 55.529110145144486, + 56.81760526876093, + 57.80389096760289, + 58.644309986867974, + 59.36163854290172, + 59.9572641917249, + 60.400900831052475, + 60.905873855367794, + 61.25101368865115, + 61.42079041508131, + 61.697401297568504 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312544, + 2.162243131656483, + 2.5060808716999428, + 2.8001418049997335, + 3.1444765017963188, + 3.5332022486417975, + 3.9475173517469444, + 4.772614591549732, + 5.459689640390155, + 6.050203449519789, + 7.041057394717512, + 7.852241837338804, + 10.136025528067247, + 12.716440699317683, + 13.562616421318346, + 14.381510664197029, + 15.240957925359602, + 15.954989360867858, + 16.60169189227084, + 17.18798211943497, + 17.701544662036582, + 18.100041137042748, + 18.57067399243466, + 18.905847371977092, + 19.076431854234354, + 19.36371362071867 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.555323574481373, + 2.8519309736681797, + 3.202112403680485, + 3.54455795274259, + 4.128708600019108, + 5.091835097694025, + 6.190328279544215, + 8.171236912201028, + 9.660114082357246, + 10.863385501899193, + 12.76474657409809, + 14.239814338966243, + 18.068441205412867, + 21.96042689851408, + 23.152146118390927, + 24.259132775348192, + 25.374314045937528, + 26.259724083395014, + 27.0330337472743, + 27.706481987917407, + 28.273865498399115, + 28.70045950578394, + 29.188018993189, + 29.52399251708459, + 29.690776093444843, + 29.965165950409748 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351729237398393, + 3.187625001099388, + 3.526650044183149, + 4.058948328555595, + 4.695595826630846, + 5.645955947827803, + 6.75199902668803, + 7.654056125477437, + 8.8295373343034, + 9.505225082070822, + 9.970821690581543, + 10.604517453302051, + 11.032316935322866, + 11.972865896385606, + 12.759872798830232, + 12.974553793259052, + 13.167610267540615, + 13.355840260878113, + 13.502187407405124, + 13.627318928756589, + 13.735282746334141, + 13.825809741457272, + 13.893347166070974, + 13.970596790045226, + 14.023313509428306, + 14.049144330457892, + 14.090854715886588 + ], + "5._24._0.075": [ + 0.8740013793970963, + 1.1957934696806856, + 1.4813667488882372, + 1.8197853662506762, + 2.1114044341807157, + 2.4510705253864713, + 2.788187524831072, + 3.044696167323624, + 3.389301466509918, + 3.6238334445562486, + 3.8172234620513863, + 4.139359785435122, + 4.401879357678648, + 5.121352318381859, + 5.866280620300906, + 6.090065304640391, + 6.298807049848143, + 6.509232545774595, + 6.6778214753752865, + 6.825248855115401, + 6.955178640279667, + 7.066160722878991, + 7.150130631281159, + 7.247402603037865, + 7.314637831281445, + 7.347899492449007, + 7.402074061153792 + ], + "5._384._0.0875": [ + 3.498202657558257, + 4.059507710829742, + 4.728549908300283, + 5.718298478054254, + 6.695598384635395, + 7.918919559501185, + 9.175209287898596, + 10.134696989496492, + 11.3395882766406, + 12.019506670062515, + 12.48495026821673, + 13.115725677557018, + 13.540591400366639, + 14.474053667337763, + 15.255546352872228, + 15.468670821792806, + 15.660444883601343, + 15.847432011925115, + 15.992846228666961, + 16.117138946341278, + 16.22438283629357, + 16.31430880283502, + 16.381374505740233, + 16.45808138679694, + 16.51039562508549, + 16.536012812409567, + 16.577355525545745 + ], + "5._48._0.075": [ + 1.5268359332879173, + 1.8678839385147374, + 2.1622087383456443, + 2.506015111231376, + 2.800022215479672, + 3.143265912621415, + 3.5156496031342086, + 3.876810167448651, + 4.510598902563926, + 4.97292547403106, + 5.3314780742753, + 5.86690818888861, + 6.254410228495219, + 7.165237276197894, + 7.97067816717318, + 8.195759462193532, + 8.399726151723728, + 8.600223537255848, + 8.757233427901257, + 8.892268671966473, + 9.009391745097531, + 9.108052422862833, + 9.181950800737681, + 9.266735500969588, + 9.324840376214043, + 9.353415812152894, + 9.399728543565555 + ], + "5._96._0.075": [ + 2.209261920932471, + 2.555305553336681, + 2.8518866359196213, + 3.2004882339226746, + 3.5277476508021492, + 4.02978044724101, + 4.745286216946609, + 5.439130433328325, + 6.459200418166225, + 7.08807746324128, + 7.534287055485237, + 8.154677466719678, + 8.57963145524655, + 9.525731186489454, + 10.324498118789299, + 10.543323487480553, + 10.740258694731052, + 10.932543867544993, + 11.082214965494755, + 11.210350854440943, + 11.321010221886622, + 11.413873719757635, + 11.483221068226714, + 11.562584991721117, + 11.616811000251728, + 11.64341307682708, + 11.68642648116794 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_20": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 0.0, + 65.0 + ], + [ + 0.0, + 70.0 + ], + [ + 0.0, + 75.0 + ], + [ + 0.0, + 80.0 + ], + [ + 0.0, + 85.0 + ], + [ + 0.0, + 90.0 + ], + [ + 0.0, + 95.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ], + [ + 5.0, + 50.0 + ], + [ + 5.0, + 55.0 + ], + [ + 5.0, + 60.0 + ], + [ + 5.0, + 65.0 + ], + [ + 5.0, + 70.0 + ], + [ + 5.0, + 75.0 + ], + [ + 5.0, + 80.0 + ], + [ + 5.0, + 85.0 + ], + [ + 5.0, + 90.0 + ], + [ + 5.0, + 95.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352024249156385, + 3.1900195605886963, + 3.548714664022493, + 4.1787684876152635, + 5.042302682086068, + 6.584630093979505, + 8.855029017124851, + 11.179495678760015, + 14.988870732174055, + 17.65450132672627, + 19.715543835171367, + 22.816550175175298, + 25.11474280412505, + 30.64781633743519, + 35.72639486078876, + 37.17428667156419, + 38.47658443403769, + 39.747062748117905, + 40.725082083121244, + 41.56179096715348, + 42.27641701480397, + 42.86933322340247, + 43.31101940659542, + 43.81268667957311, + 44.156085090989656, + 44.32550636028518, + 44.60277475675237 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961541, + 1.4813847491413068, + 1.819821321700433, + 2.1114679242247245, + 2.4511928337221214, + 2.7884277798470625, + 3.0454965005772374, + 3.4000116562328095, + 3.6586296989733604, + 3.885689080109618, + 4.291640848601012, + 4.648966274182615, + 5.7725912058807305, + 7.229135799301715, + 7.745597517663005, + 8.268803878263052, + 8.843302526419494, + 9.34421803201584, + 9.817336740021041, + 10.266796911932282, + 10.679891397017379, + 11.0144091984667, + 11.430596594983319, + 11.744377448317444, + 11.911983786334567, + 12.212279403790365 + ], + "5._384._0.0875": [ + 3.52661083145288, + 4.2022881867611686, + 5.128973360425757, + 6.779092912880758, + 8.80982378451993, + 12.050840485874518, + 16.3771347730144, + 20.492912195970003, + 26.74674955182948, + 30.83788998938396, + 33.85780650830196, + 38.16972239652327, + 41.20433636583176, + 48.00695397697509, + 53.739903906477544, + 55.30114211570355, + 56.68887672400879, + 58.02790929683504, + 59.05232909062495, + 59.925172368833785, + 60.669845579047625, + 61.287916289157565, + 61.74824000325579, + 62.27209253399691, + 62.63016934665649, + 62.80634700297716, + 63.09351933319999 + ], + "5._48._0.075": [ + 1.526846324373144, + 1.8679037053125487, + 2.1622431316564796, + 2.5060808717133214, + 2.8001418404081853, + 3.144482345975965, + 3.5333029921573815, + 3.947930266431675, + 4.774180952541709, + 5.462667907219772, + 6.054710448759875, + 7.048813588657112, + 7.863296064981113, + 10.159796061385041, + 12.761145168598654, + 13.615990925532394, + 14.444279396909947, + 15.314760469801133, + 16.039075934305302, + 16.69607274654622, + 17.292699702644896, + 17.816290978902725, + 18.223360235175036, + 18.705231230149288, + 19.04948577065328, + 19.225186409260942, + 19.52209401886293 + ], + "5._96._0.075": [ + 2.2092718103274196, + 2.555323574537322, + 2.8519310544433654, + 3.202121616130755, + 3.544656275037424, + 4.129293192674264, + 5.093940844791635, + 6.1950976467339745, + 8.183304149406414, + 9.679744894898722, + 10.890483681449624, + 12.806312204648108, + 14.294888042256245, + 18.16876447706913, + 22.12399747887236, + 23.339886999410982, + 24.47131326462637, + 25.613370231264, + 26.521953212051674, + 27.31695141495086, + 28.010420160276546, + 28.595524821613136, + 29.03601282791452, + 29.539990227619764, + 29.88771830769227, + 30.06053010807043, + 30.345212280231845 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835189313206151, + 3.1889552931299114, + 3.538903600312914, + 4.125245273292659, + 4.885340092341224, + 6.143016730599865, + 7.795423613565886, + 9.27950543596083, + 11.353436747367905, + 12.596840822504834, + 13.468067160431177, + 14.664470966131761, + 15.476574467940123, + 17.259801418963622, + 18.744684236603973, + 19.148663438954305, + 19.510655248879416, + 19.862646518364635, + 20.135320763803648, + 20.368260758547958, + 20.56874655291972, + 20.73647327867843, + 20.86155289126196, + 21.004430911305807, + 21.101968292861095, + 21.14980656381263, + 21.2272004431566 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615428, + 1.481384749141307, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833508249, + 2.7884247637014252, + 3.045310119636185, + 3.3955843569013524, + 3.6436674974056684, + 3.855925700780031, + 4.224811171067863, + 4.5397453647967625, + 5.475296090778514, + 6.570578898325478, + 6.92687615541592, + 7.270320655734392, + 7.627303621650882, + 7.920731222490932, + 8.182500131978642, + 8.41680285150039, + 8.619260142203307, + 8.773624250962664, + 8.953159155105311, + 9.077674641056438, + 9.139455677919402, + 9.240304416029538 + ], + "5._384._0.0875": [ + 3.513927363245156, + 4.138323236620862, + 4.946934659382122, + 6.276023786386213, + 7.745123433015339, + 9.775152078177463, + 12.027507501059624, + 13.821671148549264, + 16.122385823361906, + 17.4324968039469, + 18.331112481880304, + 19.547113368196523, + 20.364969660768274, + 22.15086918925759, + 23.635424304237905, + 24.039034587050264, + 24.401264702494476, + 24.753712834574596, + 25.027064089428094, + 25.260592821811322, + 25.461753936083383, + 25.63018173599274, + 25.755780013529776, + 25.899333215570362, + 25.997285001804187, + 26.04529040415504, + 26.122885369700576 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808706966746, + 2.800139149366015, + 3.1440381898974845, + 3.5256483410086874, + 3.916608969868303, + 4.6564326435683565, + 5.2408522575199115, + 5.722156280418049, + 6.488021692642983, + 7.078108817637764, + 8.576263856323838, + 10.010562551630642, + 10.425304910732308, + 10.804721194183715, + 11.180326309928033, + 11.475509468067585, + 11.729855694876939, + 11.950339156563452, + 12.135706243920572, + 12.274298805136475, + 12.43266659756452, + 12.540977602810342, + 12.594230671057593, + 12.680561756879944 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.5553235702845147, + 2.851924915529097, + 3.201421474439214, + 3.5371855730616306, + 4.085002516161643, + 4.9363362454780155, + 5.844581988979856, + 7.333675535782044, + 8.340589006658128, + 9.091921499272008, + 10.179343803963988, + 10.948160171270874, + 12.705528852454755, + 14.213545899477472, + 14.628526877105443, + 15.001108095533844, + 15.364261803956104, + 15.645980395169984, + 15.886802623855722, + 16.09410089941256, + 16.267481710205853, + 16.396752054083837, + 16.544255556142314, + 16.644951440401478, + 16.694366889837227, + 16.774367453977067 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351925911221576, + 3.1892213571751724, + 3.541355680931138, + 4.138584767756017, + 4.9241374783226926, + 6.249826317837372, + 8.042260934494504, + 9.703216610321878, + 12.09809062521322, + 13.56908007334359, + 14.612006032564038, + 16.055720129237326, + 17.041446513509268, + 19.21235807125101, + 21.021394579795135, + 21.51348253987512, + 21.953838825026494, + 22.381596137133617, + 22.71246057740695, + 22.995009669704974, + 23.237929131473347, + 23.440952165864083, + 23.592323435875723, + 23.765132002398985, + 23.883117319556238, + 23.9410075258365, + 24.034741663406493 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961543, + 1.4813847491413061, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833561717, + 2.788425517737825, + 3.045356714841056, + 3.3966911071229466, + 3.6474066614447547, + 3.8633595181679907, + 4.24146678775765, + 4.566884714356566, + 5.547880470514063, + 6.726814251230247, + 7.118959710629289, + 7.50128704873647, + 7.9035098800175545, + 8.238003360525568, + 8.5395714881233, + 8.812074243127194, + 9.049545264964225, + 9.231894169168777, + 9.445246167913844, + 9.59406803876897, + 9.66821594998837, + 9.789711570773129 + ], + "5._384._0.0875": [ + 3.517089669530491, + 4.154236578069029, + 4.991813562490588, + 6.397124777871605, + 7.993192537890449, + 10.273204407311878, + 12.894363852555866, + 15.03591773423202, + 17.826301894246654, + 19.428894473358316, + 20.531330089142955, + 22.024350568112386, + 23.028917741747733, + 25.218676239030803, + 27.034574164062334, + 27.527694270576607, + 27.969766769490864, + 28.399509205537253, + 28.732408761913508, + 29.016742293317094, + 29.261480255157917, + 29.466255352215995, + 29.61894760132361, + 29.793411897991778, + 29.91247707075819, + 29.970849669315502, + 30.06526432438584 + ], + "5._48._0.075": [ + 1.5268463243731425, + 1.8679037053125433, + 2.1622431316564765, + 2.5060808709508366, + 2.8001398221265577, + 3.1441492286179065, + 3.527561651194066, + 3.9244278621678506, + 4.685625175731641, + 5.295453920390567, + 5.803427043965115, + 6.6229181920128095, + 7.264275168426223, + 8.932368370759292, + 10.58456660789766, + 11.071975122419524, + 11.520931091653425, + 11.96807575491938, + 12.320962857674967, + 12.626044874588079, + 12.890997615805377, + 13.113976808931236, + 13.280824408999106, + 13.471430249883822, + 13.601864227263004, + 13.666054533956704, + 13.770242133670214 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.555323571347717, + 2.8519264502576633, + 3.20159650900156, + 3.539052908031279, + 4.096048940752249, + 4.975279344723372, + 5.929988032282506, + 7.533985925741476, + 8.64781926922027, + 9.494276092360495, + 10.740984617263898, + 11.637037095800018, + 13.720762587803135, + 15.536368860385512, + 16.03891768592228, + 16.490303967511636, + 16.930398915078918, + 17.271561697172185, + 17.563187144528, + 17.81397563275722, + 18.023509191350684, + 18.179684517471944, + 18.35771990199947, + 18.47926197550023, + 18.538934132395124, + 18.635627554320685 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835194776403702, + 3.189398734249572, + 3.5429906551271997, + 4.147493036610092, + 4.950165526407451, + 6.322325947945721, + 8.213140523575431, + 10.00404673135627, + 12.651839280952673, + 14.314270284959207, + 15.507089118840375, + 17.173211426297815, + 18.318916424353645, + 20.854215039208412, + 22.97220757935492, + 23.548640740966395, + 24.06392881596858, + 24.564066263714846, + 24.950393726779343, + 25.280205384945937, + 25.563473873179056, + 25.799997143659894, + 25.976312530096294, + 26.17748488544885, + 26.314852124828327, + 26.382277368678544, + 26.491536968616256 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615426, + 1.4813847491413068, + 1.8198213217004353, + 2.1114679242247276, + 2.4511928335973625, + 2.788426020428762, + 3.04538777832223, + 3.39742896823682, + 3.6498999508935053, + 3.8683179986236484, + 4.252589697250231, + 4.585038912230555, + 5.596902232638405, + 6.833949903612745, + 7.251586682059921, + 7.662168207694794, + 8.098052429433398, + 8.46398881849528, + 8.796861276508569, + 9.100273090291651, + 9.366884545269267, + 9.573131053829176, + 9.816132842538343, + 9.986844739411623, + 10.072338303554865, + 10.213112455870055 + ], + "5._384._0.0875": [ + 3.519201037735992, + 4.1648742333474305, + 5.021964575889329, + 6.479529112750988, + 8.164916022435744, + 10.630335740400797, + 13.54754130003539, + 15.988556742531603, + 19.224440531444987, + 21.10214682620412, + 22.39892239656571, + 24.158089937150905, + 25.342956130398463, + 27.92303179392658, + 30.058740712492458, + 30.63815212060242, + 31.15705060709677, + 31.66104776330363, + 32.0510235263629, + 32.384028781889945, + 32.67044998779967, + 32.90994501000154, + 33.088512792653496, + 33.29247820507928, + 33.431698508036504, + 33.49997326323534, + 33.61047259070623 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125467, + 2.1622431316564783, + 2.506080871120279, + 2.800140270633584, + 3.1442232545423314, + 3.528837321897716, + 3.929644688159898, + 4.705176992300043, + 5.3321680348045115, + 5.858291153692439, + 6.714771973749863, + 7.392082765391023, + 9.184216030899579, + 11.007835289852359, + 11.555817753283268, + 12.064102628815379, + 12.573710137268211, + 12.977960802632031, + 13.328917619045004, + 13.634567638782286, + 13.892292968473821, + 14.085424182697414, + 14.30615918712256, + 14.457372546436877, + 14.531880291070685, + 14.652988007211588 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235720565195, + 2.851927473410041, + 3.2017131990285077, + 3.5402979241200945, + 4.103422930866219, + 5.001409883129368, + 5.987732431051312, + 7.671784593185418, + 8.862593624388174, + 9.779801614056705, + 11.149820778158503, + 12.14859515300512, + 14.510485397336991, + 16.604474674321583, + 17.188433137775124, + 17.7136216535764, + 18.22617257113618, + 18.623459282003946, + 18.96315582480573, + 19.25510392043533, + 19.49883596128978, + 19.68046561589149, + 19.887355846574007, + 20.028612014935717, + 20.097996583186443, + 20.210531112544956 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351963373211526, + 3.189525432671323, + 3.5441586181564264, + 4.153863578420259, + 4.968837350679872, + 6.374765189955052, + 8.338435532940242, + 10.227924235923822, + 13.07667744467613, + 14.899216964004614, + 16.22157557832085, + 18.085611206462346, + 19.3773839575985, + 22.253326929252243, + 24.665607531774025, + 25.32290199772217, + 25.910008879139216, + 26.4794990185844, + 26.91887561651495, + 27.293881055164704, + 27.61566790717984, + 27.88411833618692, + 28.08419851671805, + 28.312364693175297, + 28.46818244123285, + 28.544691410541315, + 28.668765753189405 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.195803175961542, + 1.4813847491413066, + 1.8198213217004344, + 2.1114679242247285, + 2.451192833622822, + 2.7884263794937194, + 3.045409966528578, + 3.397956025424473, + 3.651681123419255, + 3.871861045175125, + 4.260544029058912, + 4.598036282181444, + 5.632233733917122, + 6.911990032935292, + 7.348562914574632, + 7.78038615503268, + 8.241930786777354, + 8.632288563414834, + 8.98993245080486, + 9.31834432206036, + 9.60908718406086, + 9.835583579650885, + 10.10436619003651, + 10.294663417617404, + 10.390522851782857, + 10.549284342416126 + ], + "5._384._0.0875": [ + 3.5207107105767967, + 4.172486685832283, + 5.04361535233427, + 6.539238771629346, + 8.290823424995548, + 10.897851125859063, + 14.053556094702584, + 16.750421010307743, + 20.387366959629162, + 22.52182567501487, + 24.0028806054672, + 26.016906929358765, + 27.37561986803111, + 30.333082187151593, + 32.77808502329351, + 33.4408977970093, + 34.033921738549736, + 34.609458476118434, + 35.05430372502859, + 35.43407705021292, + 35.76049119191312, + 36.03325310775754, + 36.236608202722216, + 36.46881511674917, + 36.62733410445668, + 36.705095253830414, + 36.831022119800515 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125458, + 2.1622431316564765, + 2.5060808712413083, + 2.800140590995746, + 3.1442761302569138, + 3.5297485792209886, + 3.9333730661275474, + 4.719186917317336, + 5.358546917521309, + 5.897818294295266, + 6.781339816883465, + 7.485187602696929, + 9.37107376118838, + 11.330559442278814, + 11.928785231530378, + 12.48730495904651, + 13.05095909356793, + 13.500543415541326, + 13.892672496932104, + 14.235364076732068, + 14.52508549238362, + 14.742640279650308, + 14.991570236901701, + 15.16236207344109, + 15.246643307399514, + 15.383865538978908 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.555323572562807, + 2.851928204233168, + 3.2017965492038645, + 3.541187283099064, + 4.108694827048994, + 5.020157591633424, + 6.0293823589962185, + 7.772395988356641, + 9.020893246502068, + 9.992125954630469, + 11.458833301601528, + 12.540663840621466, + 15.137968789154458, + 17.481764918967876, + 18.140996507450293, + 18.73505764069588, + 19.315730519637945, + 19.76601839452198, + 20.151266342940364, + 20.482270484553275, + 20.758468346547456, + 20.96427808400023, + 21.19856448999212, + 21.358556705411893, + 21.437185909378837, + 21.56483305389653 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351975080103657, + 3.1896204567673427, + 3.5450346584205175, + 4.158645586977014, + 4.982885349041962, + 6.414457224860929, + 8.434260555603638, + 10.4009213179499, + 13.41176726606915, + 15.368452215986, + 16.802330909530166, + 18.841384554308217, + 20.26561355395392, + 23.458439082609456, + 26.150709208225802, + 26.885581925639688, + 27.54163574143345, + 28.17772807252831, + 28.66798691944528, + 29.086338063810278, + 29.445016368135864, + 29.74400096673775, + 29.96680277464305, + 30.22075259479998, + 30.394198976970667, + 30.47939383405256, + 30.617657151921577 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004342, + 2.111467924224728, + 2.4511928336419166, + 2.7884266487924356, + 3.0454266076863563, + 3.398351325717276, + 3.6530171403547804, + 3.8745190273400456, + 4.266514920247846, + 4.607800786511952, + 5.658906817890103, + 6.97137719342753, + 7.422553385002921, + 7.870877175482006, + 8.352526094457385, + 8.762239856677033, + 9.139756733004683, + 9.488541614977851, + 9.799310885445944, + 10.04293370014671, + 10.33403068586692, + 10.54175862779562, + 10.64704793916489, + 10.822560261357017 + ], + "5._384._0.0875": [ + 3.521843815484846, + 4.178203766401465, + 5.059916289769679, + 6.584493394590957, + 8.387110607219094, + 11.105528291689232, + 14.455516162254296, + 17.37051570657643, + 21.36607785316105, + 23.73859073927171, + 25.39348869281476, + 27.65073505691816, + 29.176769303984504, + 32.49910864788708, + 35.24368633771473, + 35.98727554907545, + 36.65198172234362, + 37.296608957568495, + 37.7943357856378, + 38.219163059929286, + 38.58404830143178, + 38.88876891818065, + 39.115931429479964, + 39.37524549113963, + 39.55229168840916, + 39.639164660112286, + 39.779927116162895 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808713320784, + 2.80014083126737, + 3.1443157870725327, + 3.530432057195756, + 3.93617048414868, + 4.729718687744946, + 5.378416024939635, + 5.927650167082058, + 6.831797854977626, + 7.556026218629943, + 9.515121535061022, + 11.583871445050967, + 12.223865385593657, + 12.824870765046922, + 13.435095381146187, + 13.924486882948283, + 14.353363915378884, + 14.729608312946509, + 15.048691240780647, + 15.288897090394657, + 15.564212942873112, + 15.753484460131938, + 15.847049602754923, + 15.999675657394397 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.555323572942525, + 2.8519287523505126, + 3.201859061920749, + 3.5418543361171233, + 4.112651354784914, + 5.034263989539381, + 6.060842911721544, + 7.849093185252161, + 9.14236624190215, + 10.156017221383621, + 11.699967632878995, + 12.8495813191719, + 15.646072480134803, + 18.212739171423223, + 18.941239075007537, + 19.599334474182076, + 20.243910047272013, + 20.744216038223744, + 21.172648244032946, + 21.540772175137285, + 21.84787026063639, + 22.076721059740787, + 22.337114812401982, + 22.51498546269777, + 22.602451514080382, + 22.74457961479501 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_9": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835198418547093, + 3.1896943645633273, + 3.545716063364626, + 4.162367359950148, + 4.993837801795569, + 6.445545831743682, + 8.509920678607969, + 10.538617685064448, + 13.682447511574487, + 15.752224503905364, + 17.282177876097418, + 19.47559514513419, + 21.01939914915772, + 24.505794584289276, + 27.46406311323045, + 28.273380035511796, + 28.995693679826125, + 29.695854532997593, + 30.235026179564322, + 30.695052984414993, + 31.089161790852845, + 31.417435244433054, + 31.662027415434142, + 31.940682448256794, + 32.13102606331549, + 32.22455320303138, + 32.3764500545759 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615422, + 1.4813847491413075, + 1.8198213217004355, + 2.1114679242247285, + 2.4511928336567665, + 2.788426858246996, + 3.0454395508108583, + 3.3986587858870467, + 3.6540563461469944, + 3.8765867600299537, + 4.271161995637254, + 4.615405175484388, + 5.679756664442103, + 7.018085006853974, + 7.48086287452734, + 7.942362725697819, + 8.440161375337219, + 8.865539150725466, + 9.25926528960598, + 9.624846063864272, + 9.952346659195861, + 10.210490003647902, + 10.520878090072602, + 10.744064497108202, + 10.857899584318131, + 11.048973887632274 + ], + "5._384._0.0875": [ + 3.522725623674997, + 4.1826549787548455, + 5.072632188592192, + 6.619974580091965, + 8.463131086967564, + 11.271425810809793, + 14.781921603063866, + 17.883370250368863, + 22.198461731165903, + 24.790578981186382, + 26.608735188663495, + 29.09733118292373, + 30.78408865582497, + 34.45909150998949, + 37.49416295960211, + 38.31612082778855, + 39.0502792708857, + 39.76176991589837, + 40.31057401883343, + 40.77890042412573, + 41.18087695465329, + 41.516370466928876, + 41.766452127657075, + 42.051845066198084, + 42.24671906842188, + 42.342364272199916, + 42.49742578082318 + ], + "5._48._0.075": [ + 1.52684632437314, + 1.8679037053125456, + 2.1622431316564765, + 2.506080871402683, + 2.800141018145298, + 3.144346631280049, + 3.5309636719073954, + 3.9383469262623554, + 4.737924514571376, + 5.3939203096996176, + 5.950963882047983, + 6.87136170113179, + 7.611730315035198, + 9.629562641841172, + 11.787686421025292, + 12.462636985661309, + 13.099692223816705, + 13.750038685728187, + 14.274313235840253, + 14.735879222325778, + 15.142407828124924, + 15.488351037826146, + 15.749517321062976, + 16.049507592930876, + 16.25623567729539, + 16.358634985170532, + 16.526024259848008 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235732378576, + 2.8519291786640055, + 3.2019076829733635, + 3.542373175152058, + 4.1157301991876505, + 5.0452627549044005, + 6.085445400890604, + 7.909495952865928, + 9.238517507415333, + 10.286309160851365, + 11.89318186739695, + 13.098818792766913, + 16.064542838393542, + 18.829420127710723, + 19.621422679970937, + 20.338851908077856, + 21.043225025641945, + 21.59067698646771, + 22.060041420722968, + 22.463475028896674, + 22.800035447222456, + 23.050893457286666, + 23.336239786241798, + 23.53122685607122, + 23.62716968819104, + 23.783224284174963 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_10": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 10.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835210075814847, + 3.1906495811177646, + 3.5548790668397516, + 4.2161285407558, + 5.160948249795461, + 6.933945313810361, + 9.659364306545045, + 12.49380096465744, + 17.069098452026115, + 20.164087232963933, + 22.482078237485656, + 25.835663220953847, + 28.21431748617899, + 33.600815663638635, + 38.16887949338064, + 39.41672429858512, + 40.52608809749482, + 41.59792192992798, + 42.41919409019706, + 43.11902347279221, + 43.716489268641475, + 44.21262001514479, + 44.58208288439175, + 45.002384918847234, + 45.289632239057035, + 45.430951384776755, + 45.66112615869285 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615433, + 1.481384749141307, + 1.8198213217004335, + 2.1114679242247254, + 2.451192833846876, + 2.788429539425253, + 3.045605611739641, + 3.4027143385056156, + 3.668282776282311, + 3.9057938503323393, + 4.339775909578282, + 4.730944015226396, + 6.008446836145554, + 7.742906921837534, + 8.370579445855215, + 9.00758399630217, + 9.70561846213718, + 10.309722926163866, + 10.874387249954985, + 11.40246002032353, + 11.877934308548776, + 12.253983546656094, + 12.706357795581718, + 13.032093733339085, + 13.198767552928906, + 13.47967079761278 + ], + "5._384._0.0875": [ + 3.534571909596633, + 4.247248697407099, + 5.267418019274389, + 7.175753034995917, + 9.617858755624695, + 13.562803774105587, + 18.724898871030092, + 23.421842012276066, + 30.09428378511947, + 34.15983192856568, + 37.02838731002652, + 40.96043843321205, + 43.62819305490235, + 49.41266547578336, + 54.15878672488727, + 55.439592147409215, + 56.580161424788045, + 57.682540018402705, + 58.52977491984013, + 59.252283575794586, + 59.87104495827262, + 60.3864799587319, + 60.77065009296159, + 61.20876328318569, + 61.50808969479934, + 61.65514069722072, + 61.89402426407251 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125422, + 2.1622431316564765, + 2.5060808723063666, + 2.8001434103092397, + 3.1447433357947294, + 3.5380655597514, + 3.9690370279738114, + 4.861752835812768, + 5.635792918459037, + 6.31988121746601, + 7.4959838889232815, + 8.477580349283024, + 11.267285459867372, + 14.374771200580676, + 15.364999347517248, + 16.30411935266805, + 17.266611358061834, + 18.043713532831116, + 18.72895273615689, + 19.33195133164648, + 19.8441621606034, + 20.23045938157088, + 20.672620334908984, + 20.977061888159607, + 21.12809427961614, + 21.375843115373893 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.5553235770181355, + 2.851934636081463, + 3.202534356410317, + 3.5492961212811234, + 4.159823229325833, + 5.213187984742428, + 6.472791012126626, + 8.8422250058252, + 10.664412260031558, + 12.141764390064173, + 14.457594115660617, + 16.226711325132328, + 20.64892619002576, + 24.829529426407504, + 26.035201704314964, + 27.12587718226382, + 28.195623110939962, + 29.02398382761888, + 29.733317137528964, + 30.340669083239288, + 30.84539563324061, + 31.221051206418, + 31.64709196881909, + 31.93818877938485, + 32.081621147319815, + 32.31571201120421 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_11": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ], + [ + 5.0, + 50.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 10.0, + 45.0 + ], + [ + 10.0, + 50.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352106718610526, + 3.190698167158004, + 3.555335353385531, + 4.218719963688649, + 5.168917627526714, + 6.958118518872828, + 9.722784317638625, + 12.615696767603318, + 17.323564315709945, + 20.536233728271327, + 22.957231246571446, + 26.481896689655407, + 28.997887645863536, + 34.735146948572414, + 39.6349822472307, + 40.97731465654018, + 42.17071811904262, + 43.323676275791584, + 44.20641140088534, + 44.95853473317054, + 45.600157838318765, + 46.132557579915996, + 46.528970213535025, + 46.979726701554334, + 47.287831576395625, + 47.43947010369973, + 47.686657920895414 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615422, + 1.481384749141308, + 1.8198213217004338, + 2.111467924224724, + 2.4511928338565987, + 2.788429676526422, + 3.0456140924532105, + 3.402918340933328, + 3.668984510129585, + 3.907212220588279, + 4.343046021450768, + 4.736406798952442, + 6.024354320544625, + 7.781025352446509, + 8.419150484086654, + 9.068288744300512, + 9.781494949003458, + 10.400563793637522, + 10.980905327095437, + 11.52540717031958, + 12.017429363808409, + 12.40799991071165, + 12.879932907738462, + 13.221756762690756, + 13.397604991245304, + 13.695949085689344 + ], + "5._384._0.0875": [ + 3.5351650948848614, + 4.250366207173127, + 5.276740022916981, + 7.2036015892132825, + 9.681528530366322, + 13.712074401474817, + 19.036629554057868, + 23.932220374168146, + 30.967667052404593, + 35.29843207545871, + 38.37105138425359, + 42.599368460756416, + 45.47713661048706, + 51.72613987139242, + 56.855165352314884, + 58.23896702853923, + 59.470294461056405, + 60.65956903732257, + 61.57262005394929, + 62.35108785426607, + 63.017294719064935, + 63.57189791224761, + 63.98522437832787, + 64.45645055898137, + 64.77843742703702, + 64.93666234950933, + 65.1938509113892 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125458, + 2.16224313165648, + 2.5060808723525816, + 2.800143532632209, + 3.1447635679887873, + 3.5384204103572396, + 3.970530360483989, + 4.867652725872986, + 5.647326609397021, + 6.337700655096179, + 7.527495349461646, + 8.523278053166411, + 11.367653079233834, + 14.56263670383012, + 15.588084514732099, + 16.564046855674796, + 17.568134644083276, + 18.382078324678332, + 19.102416739397132, + 19.73847270998194, + 20.28047207738758, + 20.690372344633595, + 21.16067097052536, + 21.48534110175388, + 21.646766502892522, + 21.912219272522034 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235772114453, + 2.851934915136768, + 3.2025662796792025, + 3.5496422545328943, + 4.16195513832651, + 5.221199025986556, + 6.491621381623833, + 8.891950989803965, + 10.74693882631047, + 12.256720030748594, + 14.634228374343612, + 16.459703282788468, + 21.058167944458503, + 25.457320448150295, + 26.736433992682684, + 27.89669575770228, + 29.0375951809885, + 29.92251458439744, + 30.681365466870076, + 31.33151424166479, + 31.87194138765432, + 32.27429703629286, + 32.73054686333194, + 33.042422264140505, + 33.19620410605444, + 33.4474770481297 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_12": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ], + [ + 5.0, + 50.0 + ], + [ + 5.0, + 55.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 10.0, + 45.0 + ], + [ + 10.0, + 50.0 + ], + [ + 10.0, + 55.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835211168566421, + 3.1907386555726203, + 3.555715604029822, + 4.220880242865249, + 5.175567589473242, + 6.978343498094728, + 9.776103326422756, + 12.718702712382926, + 17.540533370838595, + 20.85545235778205, + 23.366833381267767, + 27.043492655060387, + 29.683274831280645, + 35.74307032648724, + 40.956014289410135, + 42.388688570654274, + 43.66271096229513, + 44.8936811202469, + 45.83555205851139, + 46.638027096445526, + 47.32214479720741, + 47.88941977543867, + 48.3117436160535, + 48.7917621316761, + 49.11991778264804, + 49.28148648380018, + 49.54507774514221 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.195803175961542, + 1.4813847491413084, + 1.8198213217004344, + 2.1114679242247245, + 2.451192833864699, + 2.788429790777389, + 3.0456211597150284, + 3.403088344231274, + 3.6695693123621176, + 3.9083943200171825, + 4.345772069533417, + 4.740962287617559, + 6.037648186239969, + 7.81299866664244, + 8.45994148276447, + 9.11934522642864, + 9.845432248640932, + 10.477252596906032, + 11.07100204808063, + 11.629613453658616, + 12.13591647547864, + 12.539087336683885, + 13.02812996661641, + 13.384223339494797, + 13.568333447049236, + 13.882741170568162 + ], + "5._384._0.0875": [ + 3.5356595680708787, + 4.252965581978755, + 5.284521061158263, + 7.226915304517654, + 9.735055005326704, + 13.83850489971923, + 19.30319710387336, + 24.372505240499635, + 31.732554896860318, + 36.3062517207829, + 39.568614831604, + 44.0760779672877, + 47.1540442561334, + 53.85011347059078, + 59.35019200802955, + 60.83398870028925, + 62.153353570733024, + 63.42684492285784, + 64.40356147383629, + 65.23613987417029, + 65.94815868282058, + 66.54053140614964, + 66.9819669323844, + 67.48509666260952, + 67.82892098257537, + 67.99791993971608, + 68.27278160656516 + ], + "5._48._0.075": [ + 1.5268463243731378, + 1.8679037053125447, + 2.1622431316564814, + 2.5060808723910877, + 2.8001436345680197, + 3.1447804281555505, + 3.5387161252783312, + 3.971775009484365, + 4.872574056772496, + 5.656955440836209, + 6.352590024420149, + 7.553876655628024, + 8.561602318170074, + 11.452375238931394, + 14.72241866442464, + 15.778311211935119, + 16.78631366655131, + 17.82681418817368, + 18.673307653622555, + 19.424916292444205, + 20.090722516523208, + 20.6598195068072, + 21.09141325297641, + 21.587865298661637, + 21.931571443345412, + 22.10286685522202, + 22.38529323091085 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.555323577372537, + 2.85193514768286, + 3.202592882417825, + 3.5499307047711626, + 4.163732207494736, + 5.22788402148015, + 6.507361689023943, + 8.933692340577565, + 10.816427726704154, + 12.353771369201542, + 14.784062169061853, + 16.658071826926577, + 21.41021641434649, + 26.00431750416352, + 27.35040080575251, + 28.574669201446728, + 29.78163499307329, + 30.71952416991671, + 31.5250756153583, + 32.21580932869844, + 32.79023690907256, + 33.21810127442672, + 33.703275599499214, + 34.0350956361088, + 34.19883706762389, + 34.46669915740793 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352002410885504, + 3.189847920478392, + 3.5473525792099516, + 4.173513343591349, + 5.031103387411992, + 6.549814266069877, + 8.69442879239438, + 10.721324554732862, + 13.65066964685244, + 15.44052750504318, + 16.70336338021932, + 18.442387607021207, + 19.624242629285188, + 22.21124949222853, + 24.354935950516587, + 24.93652914059481, + 25.45632976083144, + 25.960761123219662, + 26.35050366363597, + 26.683238448122456, + 26.969127500138683, + 27.207942691806487, + 27.384862363531592, + 27.58807304902318, + 27.726771272570428, + 27.794843355039397, + 27.90509303114989 + ], + "5._24._0.075": [ + 0.8740059532267963, + 1.1958031759615426, + 1.4813847491413068, + 1.8198213217004353, + 2.1114679242247276, + 2.451192833686473, + 2.7884272772560266, + 3.0454656800625717, + 3.3993485393835376, + 3.6567087082817475, + 3.8824142106708246, + 4.285999244949475, + 4.64140506131016, + 5.752918587514246, + 7.150877891153093, + 7.625157114941832, + 8.089389542953798, + 8.578662964181403, + 8.985091297075328, + 9.350608889757698, + 9.679499813117744, + 9.964576379686473, + 10.182272185752982, + 10.435156613231342, + 10.610355923351054, + 10.697293161936095, + 10.839197931839957 + ], + "5._384._0.0875": [ + 3.524813013470324, + 4.196082597982126, + 5.115976700938693, + 6.735607643646009, + 8.64884312392933, + 11.433330763113077, + 14.640392275429818, + 17.244403752490573, + 20.612198870306447, + 22.53576380936692, + 23.85529131495063, + 25.637609078985058, + 26.834547309355262, + 29.43671810893321, + 31.589403095738646, + 32.17341065027805, + 32.69669213307692, + 33.205149395583696, + 33.59881448123163, + 33.93502709709848, + 34.22433851221049, + 34.46635467357401, + 34.64682518692814, + 34.85302282193397, + 34.99376891856543, + 35.06278474363444, + 35.174454122124004 + ], + "5._48._0.075": [ + 1.5268463243731443, + 1.8679037053125467, + 2.1622431316564783, + 2.506080871543884, + 2.800141391980189, + 3.144409505548065, + 3.532211674254694, + 3.9444357938732804, + 4.765296944453598, + 5.448739751006118, + 6.033258183172322, + 6.998288087184899, + 7.7674948917547475, + 9.79428865808197, + 11.802490368795349, + 12.390872724774988, + 12.930279814376554, + 13.464929069909926, + 13.884729934838585, + 14.246253191878566, + 14.55894010657095, + 14.821120177884682, + 15.016811451464584, + 15.23971426470978, + 15.391971646535712, + 15.466843972899632, + 15.588341534532205 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235738285265, + 2.851930031668963, + 3.202007625224777, + 3.543586030366084, + 4.124736958241059, + 5.082713019435455, + 6.171003447660342, + 8.075248025750884, + 9.427832536161716, + 10.462184889371523, + 11.986453113820447, + 13.078953428323361, + 15.599578889002377, + 17.769616806353657, + 18.366645113318807, + 18.901131312514813, + 19.42097004808437, + 19.82294703284428, + 20.166134149668775, + 20.460792123371245, + 20.706648075957443, + 20.889798157998282, + 21.09842186937948, + 21.240818571675668, + 21.31073706027092, + 21.424089701005023 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352035193230685, + 3.190115138800661, + 3.5498609390674054, + 4.187688439336998, + 5.074041478141767, + 6.674851559973054, + 9.000044409053602, + 11.265363589488713, + 14.640705302321196, + 16.753121867319063, + 18.261395800878635, + 20.355240076506362, + 21.78665838351262, + 24.92844738952389, + 27.5317040745881, + 28.23775895426794, + 28.8677789647084, + 29.478403256846654, + 29.94933188617236, + 30.351197015774652, + 30.69604102364139, + 30.983769286271553, + 31.19824205188385, + 31.44289297464086, + 31.609982581668845, + 31.692023877482363, + 31.825060805735905 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004355, + 2.111467924224727, + 2.451192833739939, + 2.7884280313124297, + 3.045512323934649, + 3.400470421944272, + 3.660565779681686, + 3.8902025074456943, + 4.303887086797668, + 4.671126564722622, + 5.836664507123772, + 7.340846191318556, + 7.862325920906742, + 8.378434762821415, + 8.928717654497387, + 9.390964497926422, + 9.810888100082494, + 10.192152505169856, + 10.525265720066491, + 10.781314206342634, + 11.080292619880323, + 11.288426782296373, + 11.392078377270282, + 11.561816421662916 + ], + "5._384._0.0875": [ + 3.5280599856953785, + 4.213080973607932, + 5.165964107748593, + 6.878390066508662, + 8.955789180466084, + 12.078589755638017, + 15.802405759794022, + 18.903720339012498, + 22.98036958608921, + 25.329307120729734, + 26.94539178766916, + 29.12973200874632, + 30.597052358018693, + 33.78032438092293, + 36.406449930074466, + 37.1179215124281, + 37.75463540337469, + 38.3726714132892, + 38.85052568468331, + 39.25853134546095, + 39.6093215162144, + 39.9025466523854, + 40.12118910579749, + 40.37091898315502, + 40.54141449038774, + 40.62504903311347, + 40.76047255508587 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125451, + 2.162243131656477, + 2.506080871798045, + 2.800142064756538, + 3.144520782096798, + 3.534162728595581, + 3.952628090970952, + 4.797262842492293, + 5.5104147945451665, + 6.127267242589088, + 7.159631758201581, + 7.995211026076231, + 10.248998514382093, + 12.556617414498104, + 13.24599147390895, + 13.882164392659803, + 14.51636929107626, + 15.016212753998312, + 15.447931515019524, + 15.82181908321612, + 16.135455325602557, + 16.369632358543218, + 16.636147059457226, + 16.81822829471624, + 16.907840987543533, + 17.0534457869186 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.55532357489173, + 2.851931566473131, + 3.202183201710241, + 3.54548916192579, + 4.136413501500515, + 5.125849398712307, + 6.269765395047149, + 8.32027253206208, + 9.8149750604999, + 10.97845798628486, + 12.722398994312112, + 13.992652563395433, + 16.97356671612827, + 19.578683271043086, + 20.29937994043897, + 20.944626862714102, + 21.572169037324258, + 22.05685533073115, + 22.47052748366812, + 22.8252259401652, + 23.120766658247714, + 23.34082659747316, + 23.591209104025143, + 23.762105877575106, + 23.846059645802825, + 23.982316413754653 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835205704816959, + 3.190293285399311, + 3.5515334397035314, + 4.19715513589494, + 5.102856999602241, + 6.759849032154584, + 9.212342591476311, + 11.65329422908895, + 15.379832421395756, + 17.762546930011908, + 19.484068428300247, + 21.895402312117103, + 23.55565494352747, + 27.21634362064644, + 30.255883688788987, + 31.080452306813484, + 31.815263715778293, + 32.52671775525227, + 33.07450510088772, + 33.54177168256636, + 33.942257965367105, + 34.27604754317096, + 34.52480137724168, + 34.80838532926366, + 35.0020923195893, + 35.097242840611095, + 35.25168166225623 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615422, + 1.4813847491413075, + 1.8198213217004355, + 2.1114679242247285, + 2.451192833775585, + 2.7884285340166994, + 3.0455434198606337, + 3.4012183716952746, + 3.6631376890722773, + 3.895397436319461, + 4.3158332530702035, + 4.691010151229295, + 5.89328012010944, + 7.4714612866346615, + 8.026604691859681, + 8.580512360129228, + 9.1762579817188, + 9.681254889734719, + 10.143911497686958, + 10.567432226228624, + 10.940357945620761, + 11.228984748685384, + 11.568123077498209, + 11.805700190015722, + 11.924564375597381, + 12.120071229868115 + ], + "5._384._0.0875": [ + 3.53022795930162, + 4.2244448279434845, + 5.199561646858205, + 6.975714944684915, + 9.168995707213172, + 12.543370473894523, + 16.681275678101866, + 20.2094096446599, + 24.92799701261454, + 27.6755069399848, + 29.573397725890672, + 32.14270118970849, + 33.87025443341328, + 37.613002937038466, + 40.694046012280246, + 41.527794262549854, + 42.27309038330444, + 42.995821292705266, + 43.5538972802211, + 44.03027369131587, + 44.439507992169546, + 44.78133754053311, + 45.036202338067945, + 45.3272113694606, + 45.52592424418663, + 45.62343329258464, + 45.78143339885348 + ], + "5._48._0.075": [ + 1.52684632437314, + 1.8679037053125456, + 2.1622431316564765, + 2.506080871967489, + 2.8001425132741034, + 3.144594966573821, + 3.535463565273232, + 3.9580941285098836, + 4.818676511301623, + 5.551905165101823, + 6.190784885090294, + 7.269689573977297, + 8.15195325978915, + 10.57190391575667, + 13.114786056846384, + 13.88801224236919, + 14.606358313810917, + 15.327027223147484, + 15.897704379180679, + 16.392499684667463, + 16.82202224253226, + 17.18284914035004, + 17.452544174931923, + 17.75946151517089, + 17.96928823640093, + 18.072670614473463, + 18.240900765698264 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235756005317, + 2.8519325896759065, + 3.2023002530207605, + 3.546758045225016, + 4.144208344536223, + 5.154803547420688, + 6.336612534881606, + 8.489323728253032, + 10.086688355252646, + 11.346424983670472, + 13.260460519421951, + 14.673903856811481, + 18.045400892386333, + 21.042239152299054, + 21.87731014069735, + 22.62574246274712, + 23.35415088489598, + 23.916447514396122, + 24.396374340196605, + 24.807482872044265, + 25.149651158090396, + 25.404341483409727, + 25.693844446082803, + 25.89145399417834, + 25.988581225612954, + 26.146391301460568 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352072658860914, + 3.1904205334842937, + 3.5527282107360296, + 4.203925222236156, + 5.123533201493656, + 6.821391451122628, + 9.368436397732365, + 11.943162572636414, + 15.949393739546375, + 18.557973706123164, + 20.463295294916723, + 23.15613829329123, + 25.024503666745364, + 29.168298866373274, + 32.62163554135902, + 33.5592998191031, + 34.39405196827756, + 35.201603548524346, + 35.822467373331286, + 36.35188673414025, + 36.80513948363441, + 37.18252071011594, + 37.463703405301935, + 37.784072252632136, + 38.00293477554098, + 38.11048523625906, + 38.285207836430395 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.4813847491413075, + 1.819821321700434, + 2.111467924224728, + 2.4511928338010445, + 2.788428893091184, + 3.045565631241853, + 3.4017526352536334, + 3.664975026063789, + 3.8991094377086237, + 4.324376494978305, + 4.705246703143643, + 5.93411253906267, + 7.566801177922631, + 8.14703546303203, + 8.729462473320325, + 9.359983386075301, + 9.898278667828516, + 10.394804274460423, + 10.852510498229758, + 11.258362925642443, + 11.574519759595608, + 11.948433390185716, + 12.212210637558458, + 12.34488936194736, + 12.564281097940267 + ], + "5._384._0.0875": [ + 3.531778143868566, + 4.232577391674354, + 5.2236944248031145, + 7.046321415124095, + 9.325746807549638, + 12.893053255225862, + 17.365066724862338, + 21.257119977452273, + 26.551527124188016, + 29.66968754325377, + 31.833932865422923, + 34.7707163855328, + 36.74841924532966, + 41.03023542182837, + 44.549454092182714, + 45.50085654302919, + 46.35042503079395, + 47.173520380980065, + 47.80830236475757, + 48.35001757193086, + 48.81500711028401, + 49.203132891395676, + 49.492491838173734, + 49.822782474151644, + 50.0483538173161, + 50.15907705356923, + 50.33860892539618 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125407, + 2.1622431316564774, + 2.5060808720885155, + 2.8001428336437937, + 3.144647955540441, + 3.5363927998615297, + 3.9620006495333975, + 4.834022706615588, + 5.581725666949762, + 6.236573337279973, + 7.349551361231286, + 8.26635964712362, + 10.812389315542237, + 13.542081604007649, + 14.384786717014432, + 15.172562341132798, + 15.967795428751282, + 16.6007331253139, + 17.15186859398305, + 17.631759269143853, + 18.0357881780892, + 18.338277168024973, + 18.682736727237906, + 18.918501316217476, + 19.03482261703996, + 19.224431210587166 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.5553235761068187, + 2.851933320535034, + 3.202383861256546, + 3.5476644535913353, + 4.149781229554295, + 5.175581991367814, + 6.3848644223057835, + 8.613031149365078, + 10.287618435116254, + 11.621141621655099, + 13.66894338618213, + 15.198288028572723, + 18.89972457972761, + 22.246632625232692, + 23.186983577331137, + 24.03127223357871, + 24.854064002342966, + 25.489269396880914, + 26.031625564119697, + 26.495930237310198, + 26.882065305089665, + 27.169417872648395, + 27.49578329898258, + 27.718584133845496, + 27.828154337091263, + 28.00637741408611 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835208436689069, + 3.1905159698294137, + 3.5536243588638925, + 4.209007254815328, + 5.139091810656374, + 6.868008923843148, + 9.488066450456998, + 12.167916964981599, + 16.40058205876062, + 19.198676238570247, + 21.26213262081574, + 24.20341882343351, + 26.259946796872796, + 30.851560857867664, + 34.69709101456677, + 35.742815220599844, + 36.67309331806136, + 37.57249839739963, + 38.26308499443793, + 38.85178843740266, + 39.35528034257376, + 39.77409004148697, + 40.08608046740968, + 40.44135642057948, + 40.68409763432837, + 40.80342901542499, + 40.99746060468074 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.195803175961541, + 1.4813847491413077, + 1.819821321700434, + 2.111467924224724, + 2.451192833820142, + 2.788429162397046, + 3.045582289780788, + 3.402153340434567, + 3.6663531703762815, + 3.9018941705197836, + 4.330789544643986, + 4.715942732641851, + 5.964953807012271, + 7.639465698109971, + 8.239103181609954, + 8.843754787016477, + 9.501621773269132, + 10.066408072472177, + 10.59019172218022, + 11.07581857563665, + 11.509021814286065, + 11.84844942564679, + 12.25239638172775, + 12.53940349662911, + 12.68459182145681, + 12.926111302917246 + ], + "5._384._0.0875": [ + 3.532941676023963, + 4.238685321972887, + 5.2418679857005035, + 7.0998822503641295, + 9.445870951992244, + 13.165545967090711, + 17.910624922655778, + 22.11299031659934, + 27.921098107035835, + 31.381884986606853, + 33.796660822403695, + 37.08312145277919, + 39.30090034382501, + 44.10226769696981, + 48.04433378065071, + 49.10922481085599, + 50.05919641678497, + 50.978779492163355, + 51.68712390843502, + 52.2914679875054, + 52.809809877188755, + 53.24216943643232, + 53.56447810633849, + 53.932265171865616, + 54.1834802251864, + 54.30682727028212, + 54.50695686877147 + ], + "5._48._0.075": [ + 1.5268463243731447, + 1.8679037053125414, + 2.162243131656477, + 2.5060808721792887, + 2.8001430739210664, + 3.144687697295194, + 3.5370897616433643, + 3.9649317486105478, + 4.845560181129666, + 5.604192509901537, + 6.271145487062485, + 7.410142404574125, + 8.353531878924258, + 10.99836759220473, + 13.87879667280827, + 14.779339303479189, + 15.62583876454124, + 16.485229557077798, + 17.172706392963274, + 17.77395993465592, + 18.299291238262576, + 18.742782019434262, + 19.075528458814198, + 19.454920246430248, + 19.71500938793799, + 19.843539185167817, + 20.053448880570645 + ], + "5._96._0.075": [ + 2.209271810327409, + 2.5553235764865336, + 2.851933868679379, + 3.202446567519156, + 3.548344294404596, + 4.153963706741686, + 5.1912190720837055, + 6.421331840121233, + 8.70749307177083, + 10.442200648952939, + 11.833885633195116, + 13.98897211928729, + 15.613191714982714, + 19.59388388162565, + 23.252245479435548, + 24.28912580255754, + 25.22219584462156, + 26.13316514396154, + 26.836867809736717, + 27.438124368269076, + 27.952720396480785, + 28.380460232782763, + 28.698744687554065, + 29.060008265901747, + 29.30668480449682, + 29.428069363904708, + 29.625728599437423 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_9": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835209347314263, + 3.190590198264583, + 3.5543214043606906, + 4.212962596705303, + 5.1512235430151545, + 6.904542872589432, + 9.58267436755654, + 12.347301291021939, + 16.766474484705668, + 19.724788568983108, + 21.9246159028046, + 25.084907034383033, + 27.3109850038689, + 32.31627680404597, + 36.53314633543599, + 37.6821865760017, + 38.70391325794995, + 39.69131096892082, + 40.44860845436374, + 41.09403251299731, + 41.64551837710639, + 42.10384277219545, + 42.44520812132989, + 42.833734241377044, + 43.09922862610516, + 43.22979582026925, + 43.442279025649974 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.1958031759615417, + 1.4813847491413072, + 1.8198213217004335, + 2.111467924224724, + 2.4511928338349938, + 2.788429371857161, + 3.045595246423972, + 3.40246500447147, + 3.667425144292986, + 3.904060507502699, + 4.335780803250038, + 4.7242729100994, + 5.9890709972497875, + 7.696684029608159, + 8.311769237433873, + 8.934213133134474, + 9.61411815681868, + 10.200420906830395, + 10.746518361533488, + 11.255237229363766, + 11.71134360474764, + 12.070521975363835, + 12.500417012444714, + 12.807977269824569, + 12.964464574587549, + 13.22645683578083 + ], + "5._384._0.0875": [ + 3.5338471756390373, + 4.243440983525481, + 5.25604699446988, + 7.141904217286183, + 9.54086261309936, + 13.383895821458474, + 18.35544238226275, + 22.82348940304751, + 29.08886073062521, + 32.86499276758752, + 35.51444497972394, + 39.13263811507234, + 41.58042346508839, + 46.88249910892325, + 51.233223042116485, + 52.40781155708563, + 53.454681637184336, + 54.46725318818644, + 55.246327525735936, + 55.910860019175274, + 56.48039129780531, + 56.95512871455668, + 57.30899726574982, + 57.71267441422352, + 57.988439951580766, + 58.12387946005577, + 58.34376632410615 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.867903705312541, + 2.162243131656476, + 2.506080872249888, + 2.8001432608033827, + 3.1447186075665337, + 3.53763186426914, + 3.9672122086089443, + 4.854550303550217, + 5.621727094994757, + 6.298172519872817, + 7.457685136150757, + 8.422155980635695, + 11.146501702775446, + 14.15068876331347, + 15.099775356391865, + 15.996183739997655, + 16.91085551660979, + 17.646082341128594, + 18.29182912246625, + 18.85805879512229, + 19.337522892385987, + 19.69815357662434, + 20.110059494143368, + 20.393003932742577, + 20.53308554314836, + 20.762344000308314 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235767818676, + 2.8519342950138724, + 3.2024953391075672, + 3.5488730799497015, + 4.15721841286256, + 5.2034129108566844, + 6.449861706483356, + 8.78198205912175, + 10.56480276074678, + 12.003454876857722, + 14.24627531377879, + 15.949206285638818, + 20.1675883695264, + 24.102533041345332, + 25.22766557154372, + 26.24274495734458, + 27.23594328846332, + 28.003963133213883, + 28.66081765139372, + 29.22303495004049, + 29.690246054915036, + 30.03791647956293, + 30.43234417933908, + 30.701742909879727, + 30.834393478894228, + 31.050640942243973 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_10": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 10.0, + 45.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ], + [ + 15.0, + 35.0 + ], + [ + 15.0, + 40.0 + ], + [ + 15.0, + 45.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352155402654335, + 3.1910976341695036, + 3.5591900204293077, + 4.241652041536282, + 5.24171949396765, + 7.182936888226474, + 10.302721307884687, + 13.680644113004497, + 19.316353987909178, + 23.213395747429903, + 26.159914337557296, + 30.445316998312613, + 33.49467590504104, + 40.38914003693473, + 46.20740576963803, + 47.79141958607468, + 49.194964590676555, + 50.54722077058344, + 51.57932317433709, + 52.45783615112389, + 53.205913700995225, + 53.825741797079196, + 54.287130640410425, + 54.81152164590888, + 55.17000212316612, + 55.34650141538502, + 55.6345347741917 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961541, + 1.4813847491413068, + 1.819821321700433, + 2.1114679242247245, + 2.4511928339359916, + 2.788430796232586, + 3.045683465038299, + 3.4046193440079198, + 3.6749844025486302, + 3.9195920161181945, + 4.372401388010593, + 4.786329403494248, + 6.173010240482175, + 8.136371342963601, + 8.869131687075104, + 9.622989136162882, + 10.459911574901794, + 11.192306489285478, + 11.883018956743255, + 12.533255147185786, + 13.121340689495254, + 13.587533856607337, + 14.147847599563326, + 14.550329419694714, + 14.756016943103335, + 15.102173668697063 + ], + "5._384._0.0875": [ + 3.5401698118427123, + 4.2780166961608534, + 5.362028064745618, + 7.46201237539137, + 10.263500721024824, + 14.983285402903114, + 21.39220849783048, + 27.357600085390374, + 35.93928737868593, + 41.20058578311279, + 44.91885401303913, + 50.009739651562825, + 53.45978872545569, + 60.903591083480165, + 66.97629692432217, + 68.6102105793335, + 70.06234745388832, + 71.46322972277306, + 72.53722061466122, + 73.4526901270822, + 74.23554352402222, + 74.88685863227347, + 75.37227732866307, + 75.92564584260464, + 76.30385326029787, + 76.48976698860798, + 76.79218295459374 + ], + "5._48._0.075": [ + 1.526846324373144, + 1.8679037053125487, + 2.1622431316564796, + 2.5060808727299757, + 2.8001445316400346, + 3.14492935120152, + 3.54140488776489, + 3.9835472186598357, + 4.921233884858785, + 5.7543937909609015, + 6.505191705985544, + 7.82487334234465, + 8.951972222331316, + 12.2539289246367, + 16.06130908157437, + 17.293783614266104, + 18.467384754047103, + 19.673021838138368, + 20.646177876032347, + 21.50365940104872, + 22.25609193500655, + 22.892875907813213, + 23.371599803401796, + 23.916873837838313, + 24.291157683918307, + 24.47674558526666, + 24.781592224288648 + ], + "5._96._0.075": [ + 2.2092718103274196, + 2.5553235787901345, + 2.8519371942648046, + 3.202828247109315, + 3.552551048670487, + 4.180721137001639, + 5.294399687099114, + 6.667157251134592, + 9.352240447151873, + 11.493722069492803, + 13.267835690989934, + 16.099461412084842, + 18.296059095844857, + 23.85930592685619, + 29.15900723905656, + 30.688746394143784, + 32.069001036933976, + 33.419293538690305, + 34.46032951872535, + 35.34973521012785, + 36.10829783187206, + 36.73639290249071, + 37.20308802544895, + 37.7310678587544, + 38.091610971988196, + 38.26937088570593, + 38.56013729661122 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352057050613384, + 3.190294242055475, + 3.551579047869279, + 4.197770654769028, + 5.1054120007203085, + 6.7678989750914, + 9.223529620147279, + 11.643191719638494, + 15.264731051826653, + 17.53099848045213, + 19.146834311027266, + 21.385549244341814, + 22.91296317062012, + 26.25623404457498, + 29.018865847773657, + 29.76728194372418, + 30.43471243912256, + 31.081298204444867, + 31.579710618632273, + 32.00497113457921, + 32.36978762980547, + 32.674111151169065, + 32.9009496756597, + 33.15968804910977, + 33.33640963015014, + 33.42318886201574, + 33.56393896764539 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004342, + 2.111467924224728, + 2.4511928337755844, + 2.7884285340333554, + 3.045543460360317, + 3.4012308424856124, + 3.6632333298732687, + 3.895679416225261, + 4.31675891175422, + 4.692833948174316, + 5.899118182564597, + 7.48182609108996, + 8.036130969316716, + 8.586360956960199, + 9.174427810982532, + 9.668875717075965, + 10.118139436466775, + 10.525684289909554, + 10.881172619214876, + 11.153862223043946, + 11.471314013282175, + 11.691614772754814, + 11.801113409711034, + 11.980093093119201 + ], + "5._384._0.0875": [ + 3.5302822737344224, + 4.225196089371995, + 5.202543479706359, + 6.9845076031642765, + 9.180197396034956, + 12.517560061523431, + 16.51590495451879, + 19.843103403321294, + 24.204871060071238, + 26.712008336560274, + 28.43468369345217, + 30.76023182086211, + 32.321016474020226, + 35.70296883297569, + 38.4899869029692, + 39.24471154047153, + 39.91998782836852, + 40.575325478060925, + 41.081902738143405, + 41.51441975468773, + 41.886238751676515, + 42.19701198353821, + 42.42874356296075, + 42.693420979465074, + 42.87413361981612, + 42.96278712311065, + 43.10635847412245 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808719674896, + 2.8001425132872746, + 3.1445951642087775, + 3.5354943555535385, + 3.958383257412994, + 4.82049654334741, + 5.55608555439892, + 6.197585289305629, + 7.280477073704636, + 8.164075596561373, + 10.566510726760388, + 13.03739726929072, + 13.774655267379785, + 14.454030782462283, + 15.130054743922495, + 15.661707506033217, + 16.12007990765267, + 16.516291073142064, + 16.84806774892725, + 17.095482272655033, + 17.376664199368363, + 17.56859366785283, + 17.66301600159165, + 17.816417053290447 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.555323575600532, + 2.8519325897389014, + 3.2023007030249224, + 3.546787236114989, + 4.144682387847334, + 5.157372873719228, + 6.343302644340462, + 8.50140385797139, + 10.092625153883795, + 11.33723466762142, + 13.206986255752291, + 14.569711913815667, + 17.761408408023094, + 20.53774599629982, + 21.30372051619266, + 21.98844832655775, + 22.653610907399276, + 23.166744166689213, + 23.604428796379032, + 23.97942908490322, + 24.291686885464387, + 24.524133862685446, + 24.78851590779729, + 24.96894880690779, + 25.05758985180375, + 25.2014847208316 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_13": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ], + [ + 5.0, + 50.0 + ], + [ + 5.0, + 55.0 + ], + [ + 5.0, + 60.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352006598707553, + 3.1898762920636603, + 3.5473935180632306, + 4.1715377260635895, + 5.020895830883935, + 6.522890397495444, + 8.700488863909614, + 10.889889762348467, + 14.388728224919818, + 16.77104450494998, + 18.575136452074414, + 21.22676058341145, + 23.141232634714896, + 27.590093276032498, + 31.47917982350957, + 32.5570037403776, + 33.51997807732878, + 34.454044930204454, + 35.17195700108144, + 35.78453894859285, + 36.30817832191067, + 36.74332966804524, + 37.06742682689267, + 37.43607898109859, + 37.68804677670192, + 37.812027825755756, + 38.013955965723426 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961542, + 1.481384749141308, + 1.8198213217004335, + 2.1114679242247227, + 2.451192833693326, + 2.7884273738274508, + 3.0454714108162904, + 3.3994156272726337, + 3.656614695038024, + 3.88167810419859, + 4.282612323285663, + 4.63416015504307, + 5.731470768807269, + 7.13502727491078, + 7.627297711996777, + 8.122549874223196, + 8.662087897971082, + 9.12834908333362, + 9.564809161134086, + 9.975251718249439, + 10.34819436209166, + 10.646557775211628, + 11.011962534000862, + 11.281238745299008, + 11.421690709135857, + 11.664169099718864 + ], + "5._384._0.0875": [ + 3.524898110893181, + 4.193628965156947, + 5.104072895261537, + 6.708383037632419, + 8.654587039742907, + 11.697129826878683, + 15.64025310003894, + 19.267577509799665, + 24.549305103618522, + 27.853376822536482, + 30.22267903734085, + 33.5185052753241, + 35.78179491307977, + 40.74918280211661, + 44.86447763166951, + 45.97902438701196, + 46.971894059028806, + 47.93193766975734, + 48.66982219087215, + 49.299045198691914, + 49.83778213799759, + 50.2864061110406, + 50.62070367203176, + 51.00177857485403, + 51.262092296985514, + 51.38997625929076, + 51.597733912216576 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125418, + 2.162243131656476, + 2.5060808715764678, + 2.800141478152505, + 3.14442255554874, + 3.5322723392534385, + 3.943706830309592, + 4.758177490218428, + 5.432273960243295, + 6.008768579784901, + 6.969952418995137, + 7.751151360410304, + 9.920671832003787, + 12.316054106072752, + 13.086276693261397, + 13.823584586698994, + 14.588058234012035, + 15.214484968470689, + 15.774376030958493, + 16.274711374743337, + 16.70636032178794, + 17.036262767920842, + 17.419478923670248, + 17.686847410289747, + 17.820598495124457, + 18.041521059397294 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.555323573964834, + 2.851930228051061, + 3.202027365753009, + 3.543650392029674, + 4.1233146571676595, + 5.072438149178273, + 6.146506120156569, + 8.061035398490636, + 9.481628884071474, + 10.617933083706443, + 12.390868807454716, + 13.747115296554318, + 17.1859400558244, + 20.54771812900628, + 21.54321866767704, + 22.45540627868258, + 23.36093568736147, + 24.0703157875775, + 24.68262880105878, + 25.21093053682736, + 25.65267293396371, + 25.982652654112712, + 26.358120768973517, + 26.615293426789542, + 26.742213502934213, + 26.949518708273327 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351838500296616, + 3.1885118572313673, + 3.534817814223326, + 4.1030737424674095, + 4.821317420742483, + 5.969919191578708, + 7.41028413925126, + 8.648650678142598, + 10.318019242462421, + 11.295421939311396, + 11.97337743517005, + 12.898811056559623, + 13.524508345420257, + 14.897437624552998, + 16.042123430945267, + 16.35383097791215, + 16.633592896224254, + 16.90595883307184, + 17.117309952985618, + 17.297937101829362, + 17.45358097851654, + 17.58393310527604, + 17.6811611636915, + 17.79229429280022, + 17.868148885395772, + 17.905336255686425, + 17.965445068310917 + ], + "5._24._0.075": [ + 0.8740059532267962, + 1.1958031759615424, + 1.4813847491413075, + 1.8198213217004349, + 2.111467924224728, + 2.4511928334191357, + 2.788423506974107, + 3.0452324610064143, + 3.3937398837242934, + 3.637437610795647, + 3.843546410724326, + 4.197128320327028, + 4.494757418969375, + 5.356757547871304, + 6.322806150411278, + 6.626738081951607, + 6.915404542282874, + 7.21101958981349, + 7.450860982652266, + 7.66246734371669, + 7.850165882224263, + 8.011164200847652, + 8.133224321258036, + 8.274627098240014, + 8.37233003387617, + 8.420668855356707, + 8.49937572606141 + ], + "5._384._0.0875": [ + 3.508669460749622, + 4.111915670923915, + 4.873040032123389, + 6.080558225789574, + 7.357967553781383, + 9.04485058828995, + 10.84277364416776, + 12.241098615273712, + 14.011222366677718, + 15.01309719121016, + 15.699134890832847, + 16.62764066517033, + 17.252332732919882, + 18.619928993318393, + 19.76028670279949, + 20.070751033016197, + 20.34972432420409, + 20.621432400545174, + 20.832432856467467, + 21.012738747514504, + 21.168177723656544, + 21.298415605446706, + 21.395540979639048, + 21.50658808640696, + 21.58234324516048, + 21.619456039757466, + 21.679401052203215 + ], + "5._48._0.075": [ + 1.5268463243731434, + 1.8679037053125456, + 2.162243131656478, + 2.5060808702730704, + 2.8001380280984436, + 3.1438531258067117, + 3.5224600129449035, + 3.9035943923639613, + 4.608135080323152, + 5.1510836559379705, + 5.589462884077594, + 6.27130271990618, + 6.783963554912862, + 8.04316830464235, + 9.202414931053042, + 9.53127928011967, + 9.83044491677738, + 10.125260643940114, + 10.356342764412293, + 10.555043007864295, + 10.727181907122153, + 10.87191268601469, + 10.980113122105404, + 11.103877010708246, + 11.188516611811483, + 11.230104665601413, + 11.297459077760191 + ], + "5._96._0.075": [ + 2.2092619209324718, + 2.555305556880593, + 2.8518917514576345, + 3.201071628572207, + 3.5339683812307245, + 4.066374782143852, + 4.871306856588727, + 5.703345918840731, + 7.011014828442001, + 7.859290682278471, + 8.476335068125367, + 9.349652040268383, + 9.955723894960455, + 11.316721448596432, + 12.4702954875727, + 12.786558094229333, + 13.070633086294775, + 13.347621860741711, + 13.562753164373564, + 13.746815702553597, + 13.905500700816589, + 14.038445223288367, + 14.137675478115584, + 14.251099311683415, + 14.328597138129837, + 14.366636071121864, + 14.428211518355958 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_13": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 0.0, + 45.0 + ], + [ + 0.0, + 50.0 + ], + [ + 0.0, + 55.0 + ], + [ + 0.0, + 60.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 5.0, + 45.0 + ], + [ + 5.0, + 50.0 + ], + [ + 5.0, + 55.0 + ], + [ + 5.0, + 60.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 10.0, + 45.0 + ], + [ + 10.0, + 50.0 + ], + [ + 10.0, + 55.0 + ], + [ + 10.0, + 60.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352115888557163, + 3.190772915034292, + 3.5560373629937767, + 4.222708711284617, + 5.181200747095087, + 6.995514461436926, + 9.821555926381665, + 12.806891110520562, + 17.727729652831986, + 21.132249123333395, + 23.723462479939972, + 27.53574672795674, + 30.287352759889096, + 36.6437421421003, + 42.15193549304779, + 43.67096354497362, + 45.022334435646236, + 46.328369520344566, + 47.32720232447755, + 48.178228319362994, + 48.903312552277995, + 49.50419053638759, + 49.95147977738863, + 50.459677804151866, + 50.80715296433605, + 50.97829960001236, + 51.25774347080595 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615417, + 1.4813847491413064, + 1.8198213217004333, + 2.111467924224724, + 2.4511928338715547, + 2.7884298874512945, + 3.0456271397061605, + 3.4032321940809167, + 3.6700641620808914, + 3.9093946461996776, + 4.348079403756525, + 4.744819182987006, + 6.0489236448939145, + 7.840201809802898, + 8.494682676763372, + 9.162883487837572, + 9.900041383924576, + 10.542855292667, + 11.148200056404882, + 11.719055372031143, + 12.237798294671274, + 12.651990363578587, + 13.156089521928232, + 13.524877112379013, + 13.716432493101697, + 14.045620978478409 + ], + "5._384._0.0875": [ + 3.5360780765139292, + 4.255166083200758, + 5.29111405094006, + 7.246718372859257, + 9.78068259109057, + 13.946960992537598, + 19.533764907053822, + 24.756133711660876, + 32.40744198345068, + 37.20374130279261, + 40.64236684493673, + 45.41248197779373, + 48.68103177722378, + 55.807087839035646, + 61.66691220857489, + 63.24788934245661, + 64.65276024628109, + 66.00798943232864, + 67.04638927137164, + 67.93137619471358, + 68.68770507380076, + 69.31656277601168, + 69.78514563919967, + 70.31906874020058, + 70.68397518373732, + 70.86338125599785, + 71.15533647142837 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312545, + 2.1622431316564814, + 2.5060808724236745, + 2.800143720821401, + 3.144794694454098, + 3.5389663499154795, + 3.972828319777032, + 4.876741640220147, + 5.665115305459974, + 6.365217078059232, + 7.5762861535312025, + 8.59420409507729, + 11.524843841404845, + 14.859981018401964, + 15.942430631817126, + 16.978519482404938, + 18.051107967181835, + 18.92649753837637, + 19.706054568416143, + 20.398682321702786, + 20.992444869299153, + 21.4439745986043, + 21.96472441378349, + 22.326341420962663, + 22.50701283196082, + 22.805727147646582 + ], + "5._96._0.075": [ + 2.2092718103274143, + 2.5553235775088416, + 2.85193534445262, + 3.2026153924377607, + 3.550174782211989, + 4.165236221144645, + 5.233547046854669, + 6.52071484133149, + 8.969228949697433, + 10.875741017343405, + 12.436796088437582, + 14.912759621338642, + 16.828988279200853, + 21.716215668574343, + 26.484795410373476, + 27.891989676176898, + 29.175124078931383, + 30.443389814975784, + 31.430855310076836, + 32.280427738655675, + 33.00964572834221, + 33.61646965452663, + 34.06872852107129, + 34.58164074605417, + 34.932642094761974, + 35.10598828939342, + 35.389903169774406 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835194777381192, + 3.1894025608097913, + 3.5431730221711955, + 4.14995457114244, + 4.9602850236753655, + 6.347578461069761, + 8.219303063204094, + 9.914516638470111, + 12.278861307216795, + 13.689375428116989, + 14.674344858546927, + 16.022611202493785, + 16.935365383865182, + 18.932857449180446, + 20.590866358188737, + 21.041366524348163, + 21.444770448561922, + 21.836821848945775, + 22.14035060837515, + 22.399611200201736, + 22.622676684137772, + 22.809243153220393, + 22.948370714060438, + 23.107281147415655, + 23.21577422790068, + 23.26899392646864, + 23.35511895816213 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.4511928335973607, + 2.7884260204953697, + 3.04538794032085, + 3.397478847285279, + 3.65028236953504, + 3.8694446367968838, + 4.256269763172383, + 4.592145183247248, + 5.616342141065902, + 6.8505258017449835, + 7.255864594819363, + 7.646968809849212, + 8.053276846734915, + 8.386585501883108, + 8.683166345880695, + 8.947757383742928, + 9.175550285120444, + 9.348629321286626, + 9.549090750604586, + 9.687603583920982, + 9.75618204850785, + 9.867903170019959 + ], + "5._384._0.0875": [ + 3.519414642750923, + 4.167877970390456, + 5.033726376163877, + 6.505666850113914, + 8.171517377809307, + 10.490884518790367, + 13.057641798784514, + 15.091596800768148, + 17.68751684607798, + 19.161074457078783, + 20.170244304416116, + 21.533887452770426, + 22.450098703200283, + 24.44785294350101, + 26.106290008466924, + 26.556935572090406, + 26.961259778317036, + 27.354567382479086, + 27.659517769608016, + 27.920033833407945, + 28.144407005050972, + 28.332246401451023, + 28.47232450648087, + 28.632424722805496, + 28.741678395827968, + 28.795229262854185, + 28.881805767853283 + ], + "5._48._0.075": [ + 1.526846324373141, + 1.8679037053125445, + 2.1622431316564743, + 2.5060808711202784, + 2.8001402706862746, + 3.144224045078283, + 3.5289604520774644, + 3.9307999739317094, + 4.712428254185614, + 5.347418921621241, + 5.879965415980396, + 6.739706948129181, + 7.408865386614326, + 9.11626514200392, + 10.744546670597042, + 11.212791446300308, + 11.639773033803978, + 12.061220509658641, + 12.391458830061971, + 12.675406212948246, + 12.921007864313719, + 13.127088899769337, + 13.280972380875744, + 13.456545976421273, + 13.576513141553155, + 13.63547462786866, + 13.731049929860575 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323572056519, + 2.851927473662024, + 3.2017149990298575, + 3.5404146600729027, + 4.105317906966819, + 5.011588848511913, + 6.010214756195945, + 7.689683107068938, + 8.83802759134417, + 9.696161835980128, + 10.936159020578424, + 11.810006714617264, + 13.795953525503256, + 15.487658517857962, + 15.951619872839778, + 16.36743918194945, + 16.772210126218116, + 17.08580136939843, + 17.353701914617353, + 17.584116928288115, + 17.77669672785507, + 17.92024261930604, + 18.08396769607562, + 18.195727750777714, + 18.25057695718145, + 18.33939900223481 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835211169055195, + 3.190740568900505, + 3.555806837447424, + 4.222114481719129, + 5.180726827978714, + 6.994692210986222, + 9.801801306478529, + 12.711669365740184, + 17.306958196040448, + 20.313979559079527, + 22.509229131489796, + 25.60266092158644, + 27.740831900656737, + 32.45277663278692, + 36.35173915683929, + 37.40702211445346, + 38.34494163120891, + 39.25111930270079, + 39.94681177557848, + 40.53979417561562, + 41.04705009845453, + 41.46911805581384, + 41.78357052831432, + 42.141771426922816, + 42.38650797893885, + 42.50680080963859, + 42.70233331345696 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.195803175961541, + 1.4813847491413077, + 1.819821321700434, + 2.111467924224724, + 2.451192833864698, + 2.7884297908107003, + 3.0456212407144294, + 3.403113286830256, + 3.6697606314251296, + 3.9089586001860983, + 4.347627656190297, + 4.744628758757631, + 6.049505830754877, + 7.835822093388059, + 8.484042429292838, + 9.139760876169989, + 9.854491322893697, + 10.467358498125922, + 11.034232893032646, + 11.557007985163457, + 12.019866257839624, + 12.37938824387906, + 12.80221488254162, + 13.098433387581728, + 13.246723705247986, + 13.490724587617915 + ], + "5._384._0.0875": [ + 3.5357685212015846, + 4.25447453108904, + 5.290552426961249, + 7.244804859254682, + 9.760735554762402, + 13.799119746084859, + 18.943513819560053, + 23.43681594702994, + 29.529034129749576, + 33.09995548130835, + 35.57087257807374, + 38.91325256763047, + 41.158739210652634, + 46.00440012951232, + 49.975289841764415, + 51.0474459312075, + 52.00428965653315, + 52.93080690361388, + 53.64488507074211, + 54.25421161819308, + 54.77705586647584, + 55.21335367191182, + 55.53863775593689, + 55.90992278140478, + 56.16353003712956, + 56.2880385146237, + 56.48999763797806 + ], + "5._48._0.075": [ + 1.5268463243731447, + 1.8679037053125414, + 2.162243131656477, + 2.5060808723910917, + 2.8001436345943644, + 3.144780823426412, + 3.538777713746986, + 3.9723539371763015, + 4.876240923140578, + 5.66543730741923, + 6.36658716267569, + 7.577124315285288, + 8.59017046930741, + 11.455134478048976, + 14.575088037078471, + 15.540175272345705, + 16.441043549310255, + 17.3479118169563, + 18.066663521644067, + 18.690130397965042, + 19.230542638083087, + 19.683498534013406, + 20.02145513661169, + 20.40478985489511, + 20.6664658538358, + 20.79541745205557, + 21.005528502493263 + ], + "5._96._0.075": [ + 2.2092718103274085, + 2.555323577372538, + 2.8519351478088426, + 3.2025937824298785, + 3.549989093500739, + 4.1646821336920805, + 5.233072953961854, + 6.520941979756781, + 8.960132724550686, + 10.837614671983362, + 12.351003593271576, + 14.693412994353347, + 16.451183264414418, + 20.70497126457557, + 24.522982220920643, + 25.589238623553253, + 26.543013953636727, + 27.46965590738078, + 28.182708846279542, + 28.79043976220002, + 29.309569829839248, + 29.740509716301837, + 30.06094627545974, + 30.424510834948624, + 30.67261564059115, + 30.794632755555284, + 30.993212156611094 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352127302001513, + 3.1908680918238215, + 3.5570150199982864, + 4.229085793544763, + 5.202433855230753, + 7.061209600473721, + 9.97651692656453, + 13.045185967390168, + 17.982480772017013, + 21.271252047103506, + 23.697922500153087, + 27.147785397936314, + 29.55046850167983, + 34.87533964765561, + 39.29603173361724, + 40.49325768734383, + 41.55604916049398, + 42.58183308195911, + 43.36798167624348, + 44.037777549175374, + 44.61000733483925, + 45.08558369172983, + 45.43981914127112, + 45.843090179460155, + 46.118659307443615, + 46.25416652264142, + 46.474655921283706 + ], + "5._24._0.075": [ + 0.8740059532267972, + 1.195803175961542, + 1.4813847491413068, + 1.819821321700434, + 2.1114679242247245, + 2.451192833890158, + 2.7884301498899418, + 3.0456434636831005, + 3.403651154015615, + 3.6716260670279346, + 3.912755221106316, + 4.356467374998892, + 4.759494769105454, + 6.09328298629729, + 7.9412961364592025, + 8.618724055769915, + 9.308071765574113, + 10.064260360602603, + 10.717195857795145, + 11.325096100196635, + 11.889467717197507, + 12.392483773476206, + 12.785587197205533, + 13.250683008757768, + 13.578570131573304, + 13.74351121988725, + 14.016228207959381 + ], + "5._384._0.0875": [ + 3.537339153860883, + 4.262870226284847, + 5.315969547277279, + 7.321435619388486, + 9.936112947019334, + 14.204407248698367, + 19.760318152314884, + 24.711582703072196, + 31.538394290946147, + 35.58587684680458, + 38.40005171341498, + 42.21538744661634, + 44.78238327983052, + 50.31658473923125, + 54.843081044919614, + 56.06383304058538, + 57.152036746920864, + 58.204675152254794, + 59.01482369808337, + 59.70593397335717, + 60.298426206338625, + 60.79245889428853, + 61.16075650450086, + 61.581001719574665, + 61.868100632538244, + 62.00909943185183, + 62.23797631783918 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.867903705312544, + 2.162243131656476, + 2.5060808725121233, + 2.800143954967821, + 3.144833869019466, + 3.539715940436163, + 3.9763498286837806, + 4.892269086965696, + 5.697055737439854, + 6.415737434527838, + 7.664515806699038, + 8.71719044431535, + 11.730877029278274, + 15.077757799141612, + 16.128311640677573, + 17.114880392496225, + 18.113909573290012, + 18.90949206451863, + 19.6023514064881, + 20.20452205705877, + 20.710154059290744, + 21.087896491828268, + 21.516443602278002, + 21.80920321775351, + 21.9536484374961, + 22.189416381947453 + ], + "5._96._0.075": [ + 2.209271810327409, + 2.555323577878822, + 2.8519358786859716, + 3.2026775196974895, + 3.550904029602273, + 4.170406343368212, + 5.254896591986804, + 6.572735408808356, + 9.09746000703989, + 11.065487415857547, + 12.667096150360281, + 15.17198621958764, + 17.07241908811606, + 21.737005948793204, + 25.99396089914289, + 27.192298309433397, + 28.265943079205663, + 29.310200016390944, + 30.11354705536849, + 30.79832861996199, + 31.38274219229705, + 31.867354406306237, + 32.22756320353797, + 32.635854327515396, + 32.91449904138233, + 33.05161467034174, + 33.27504744118438 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ], + [ + 15.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83521390106, + 3.1909637342985233, + 3.55792122770089, + 4.234318933581562, + 5.21876950941556, + 7.111614832990994, + 10.11056373615037, + 13.304255026541057, + 18.518970532685664, + 22.044369042102705, + 24.670085957378262, + 28.434126481214705, + 31.075480596923956, + 36.967007522101625, + 41.88064955012611, + 43.21301957496745, + 44.39471524848902, + 45.53435313062214, + 46.406403039672874, + 47.14910821992622, + 47.78287187409569, + 48.309014452774974, + 48.70082700343199, + 49.14661704007344, + 49.45128227834391, + 49.60116095758315, + 49.84527856023825 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961542, + 1.4813847491413081, + 1.8198213217004324, + 2.1114679242247236, + 2.451192833909255, + 2.7884304191993747, + 3.045660130912619, + 3.4040545619719356, + 3.673025287330593, + 3.915603436073409, + 4.3631030270647555, + 4.770664010851438, + 6.126356768914951, + 8.021748700704597, + 8.72179146205668, + 9.437383875780068, + 10.226232074423642, + 10.91110526838138, + 11.552079601686485, + 12.150467839428664, + 12.68686045634634, + 13.108340945912543, + 13.609889982570108, + 13.965779928180952, + 14.145746264998753, + 14.444957297715039 + ], + "5._384._0.0875": [ + 3.5385180443847837, + 4.269175902621764, + 5.335112367817748, + 7.379592591251421, + 10.070655171657723, + 14.520872246351406, + 20.41372246224612, + 25.75554473720777, + 33.23673822372381, + 37.72379594664652, + 40.86011425688447, + 45.1244555049501, + 47.99929091160211, + 54.19529713477677, + 59.25620226786147, + 60.619758800680756, + 61.8339551761055, + 63.00734086876476, + 63.909207169555096, + 64.67835052887197, + 65.33716938764755, + 65.8860903375165, + 66.29527052137485, + 66.76201612494658, + 67.08093212493662, + 67.23760673727163, + 67.4921115091408 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125416, + 2.1622431316564787, + 2.5060808726028916, + 2.8001441952479063, + 3.144873653244084, + 3.540419646725224, + 3.979347993289872, + 4.9043198907596155, + 5.72087999808215, + 6.452855636219181, + 7.730850257680718, + 8.814043861479881, + 11.944482885330554, + 15.474794979081432, + 16.596556232651924, + 17.65562068060096, + 18.733878742144945, + 19.59665855248339, + 20.351104333427344, + 21.008829430595267, + 21.5624093872475, + 21.97671152472228, + 22.447132616129196, + 22.768884006828337, + 22.92786376219209, + 23.187857918321356 + ], + "5._96._0.075": [ + 2.2092718103274085, + 2.555323578258537, + 2.8519364268438174, + 3.202740322734169, + 3.5515902665958445, + 4.17470242064408, + 5.271321661919149, + 6.611890211942486, + 9.202412304313315, + 11.241029886489315, + 12.912307765949919, + 15.547770731455877, + 17.5651830408324, + 22.57755912255198, + 27.224315411933127, + 28.543427122381996, + 29.727774258476046, + 30.881564599580837, + 31.76943586199232, + 32.526622809091194, + 33.17247843436801, + 33.70762672579371, + 34.10529811219582, + 34.555689074760835, + 34.863105519047224, + 35.01447149304295, + 35.26143654077793 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_9": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 5.0, + 40.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 10.0, + 40.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ], + [ + 15.0, + 35.0 + ], + [ + 15.0, + 40.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835214811729444, + 3.191038123057198, + 3.5586260978660595, + 4.238391915228239, + 5.231507946561699, + 7.151128794054718, + 10.21666120368133, + 13.51133038977782, + 18.95501459271787, + 22.68079532669389, + 25.478283028568413, + 29.51920190891991, + 32.37535708575504, + 38.789233330324116, + 44.1683364420255, + 45.62951232379906, + 46.92465726843978, + 48.17296798232406, + 49.12686757227683, + 49.939024528029485, + 50.631292559991415, + 51.20542047577396, + 51.632876455622025, + 52.118952686496925, + 52.45119539017573, + 52.61470895470477, + 52.88129493138586 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.195803175961542, + 1.4813847491413084, + 1.8198213217004344, + 2.1114679242247245, + 2.451192833924107, + 2.788430628662272, + 3.0456730943151524, + 3.4043683282001433, + 3.674113654888109, + 3.917819158442404, + 4.368267565977953, + 4.77936290586547, + 6.152224701749474, + 8.08513832059299, + 8.803202919999432, + 9.539830269951565, + 10.35503948614304, + 11.06590011084179, + 11.73400085242105, + 12.360572370538987, + 12.92495150207961, + 13.370532578627307, + 13.903563757528335, + 14.284189074108486, + 14.477692670437904, + 14.801337136500607 + ], + "5._384._0.0875": [ + 3.5394355026319917, + 4.274085602627163, + 5.3500488215462605, + 7.425236257140273, + 10.17713588762754, + 14.774879383536906, + 20.947741259822074, + 26.624299595764533, + 34.687651857560326, + 39.578630547015486, + 43.01613214228379, + 47.70555841801493, + 50.87469271101252, + 57.70692180805619, + 63.28276018304753, + 64.78388418981623, + 66.11924227563452, + 67.40855454167266, + 68.39824062554061, + 69.24205985445857, + 69.96423391652506, + 70.56549748344443, + 71.01365450613962, + 71.52470105844701, + 71.87393656167646, + 72.04555849742648, + 72.32453770628041 + ], + "5._48._0.075": [ + 1.5268463243731378, + 1.8679037053125447, + 2.1622431316564814, + 2.506080872673493, + 2.8001443821324234, + 3.144904596547583, + 3.5409669953346103, + 3.981680637696233, + 4.913710370813636, + 5.739475696557407, + 6.48187766970423, + 7.782917874190976, + 8.890331486785566, + 12.11485689658106, + 15.796060837074295, + 16.97769093703813, + 18.098431650851865, + 19.244963353568604, + 20.166542850529325, + 20.97558880332802, + 21.683214573456116, + 22.28038892240046, + 22.728275600410328, + 23.237526442669882, + 23.586396747025454, + 23.75906287369005, + 24.04203712455829 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.555323578553876, + 2.851936853188805, + 3.2027891695914237, + 3.5521240271724186, + 4.1780455456090975, + 5.284130818287365, + 6.642528963770898, + 9.28522818536104, + 11.380398541252108, + 13.108024122402853, + 15.850470852742214, + 17.965131262109672, + 23.273855985236416, + 28.26644710647456, + 29.69575479033731, + 30.98212603155965, + 32.23778982021208, + 33.20478452958437, + 34.030084770436815, + 34.733897352935024, + 35.316785359950075, + 35.74988121185051, + 36.24008018455158, + 36.57473419230536, + 36.7396177323459, + 37.00897849580251 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835212261944466, + 3.1908301793012535, + 3.5566689765509913, + 4.227215949610627, + 5.196842224885245, + 7.0440820866322404, + 9.928731546062709, + 12.943897997835265, + 17.731924831712323, + 20.87229986876777, + 23.165206928936378, + 26.393573310751727, + 28.62231096260378, + 33.523419151724845, + 37.569205395827126, + 38.66304767321368, + 39.63470574734655, + 40.573074572594216, + 41.29313958945059, + 41.906812798474704, + 42.43162674355349, + 42.86821000783666, + 43.1934677847563, + 43.56395236687505, + 43.817090546221344, + 43.941521932125596, + 44.14381796186636 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224723, + 2.45119283388252, + 2.788430042172163, + 3.045636811371912, + 3.403494282353935, + 3.671100852200699, + 3.9117176975869334, + 4.354148691102873, + 4.755692530827026, + 6.082237929165074, + 7.913815192741123, + 8.582889494151143, + 9.26155944309715, + 10.003161606353768, + 10.640190300135753, + 11.230143857435756, + 11.774445582811454, + 12.25625466428401, + 12.630210189019634, + 13.069251260944311, + 13.376120281818041, + 13.529495346282447, + 13.78144439602977 + ], + "5._384._0.0875": [ + 3.536887439631412, + 4.260621986890672, + 5.30941743513026, + 7.301520558516979, + 9.888095658935889, + 14.0750989618675, + 19.441219378080824, + 24.136796960934703, + 30.49804481780765, + 34.22088340990063, + 36.79426596763055, + 40.27155943657565, + 42.605807850364556, + 47.63750456045575, + 51.756810235839026, + 52.868572894975635, + 53.860578190825606, + 54.82096936395555, + 55.56099759279513, + 56.19244726142982, + 56.734213685759, + 57.186261258870765, + 57.52329130296054, + 57.907979170443376, + 58.17075394245952, + 58.29977096376778, + 58.50906818280206 + ], + "5._48._0.075": [ + 1.5268463243731383, + 1.8679037053125402, + 2.1622431316564765, + 2.5060808724758146, + 2.800143858860523, + 3.1448180264855656, + 3.5394455528414155, + 3.9752550951869865, + 4.88811680385552, + 5.689083227445786, + 6.403497873623544, + 7.642527663005111, + 8.684436343273642, + 11.648957886171534, + 14.89666948542051, + 15.902523330107925, + 16.84120545052638, + 17.785407337985987, + 18.532757895495582, + 19.180217121778256, + 19.740574932404513, + 20.209541459248, + 20.55903247757555, + 20.954923737649256, + 21.224930037000323, + 21.357933327907748, + 21.574617724454846 + ], + "5._96._0.075": [ + 2.2092718103274103, + 2.555323577726938, + 2.851935659445512, + 3.2026525605057574, + 3.5506400534107025, + 4.168859674233158, + 5.249275018150159, + 6.559575615112115, + 9.060991140192742, + 11.00111555945029, + 12.571624795887127, + 15.009731452208731, + 16.84307515732602, + 21.281943234606615, + 25.257616427573492, + 26.3656960429444, + 27.355646640430965, + 28.316439477280184, + 29.054961075778653, + 29.684015441755214, + 30.220964434886575, + 30.666423612436333, + 30.997567553990688, + 31.373152571066402, + 31.629428561237248, + 31.755464598806842, + 31.96062194630897 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 20.0, + 25.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83521444760823, + 3.1910089415373464, + 3.558371518524349, + 4.237133309139093, + 5.227965201817827, + 7.140189532584869, + 10.182468257593936, + 13.428955201521454, + 18.706211502923495, + 22.239533993863674, + 24.849313964051788, + 28.556222502919436, + 31.133425901563022, + 36.82439937606868, + 41.52816069862249, + 42.79940828612951, + 43.926705494618346, + 45.013830502345606, + 45.846214343889294, + 46.55520845436563, + 47.16060387944192, + 47.6635302173305, + 48.038114502365254, + 48.464494271093166, + 48.7558705053121, + 48.899169080629825, + 49.13241567285412 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615433, + 1.481384749141307, + 1.8198213217004335, + 2.1114679242247254, + 2.4511928339181654, + 2.7884305448871074, + 3.045667933253777, + 3.4042503042014327, + 3.673735701494519, + 3.917102165990339, + 4.366758858486466, + 4.776985655289066, + 6.145437110680342, + 8.067025750967296, + 8.778968118174959, + 9.506885099448699, + 10.308906033125632, + 11.003798309787776, + 11.652430740721604, + 12.255423745848491, + 12.792977488071054, + 13.21274209185525, + 13.70813815559165, + 14.056069053909402, + 14.230597917294789, + 14.518285259048824 + ], + "5._384._0.0875": [ + 3.5391012065704643, + 4.27257508662953, + 5.345889427189335, + 7.412291480943808, + 10.142744419166958, + 14.663452979232003, + 20.614715814725013, + 25.942454693616966, + 33.28516160400033, + 37.6284983481508, + 40.643055925946996, + 44.72214156766028, + 47.46243059870045, + 53.35784662574217, + 58.170660500533735, + 59.46755947309802, + 60.62322798305135, + 61.740733053025075, + 62.600448750904675, + 63.33379545882413, + 63.96235802518071, + 64.48637518027024, + 64.87703241648606, + 65.32278075535028, + 65.62732850998472, + 65.77691300888307, + 66.01978121692412 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125422, + 2.162243131656476, + 2.5060808726452497, + 2.800144307386522, + 3.1448923378057554, + 3.5407665316111783, + 3.9809213055219472, + 4.911057341258801, + 5.7345975049091935, + 6.474537807895156, + 7.769421641992184, + 8.869380266985297, + 12.050480846329132, + 15.622575450385499, + 16.747476412188277, + 17.8039400651553, + 18.87283340211514, + 19.722349216325487, + 20.46069464508857, + 21.100723676375814, + 21.636692011386113, + 22.036210019007218, + 22.488312031797026, + 22.796615439289024, + 22.94860772550027, + 23.196627062518044 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.5553235784357407, + 2.8519366826886094, + 3.2027699008474553, + 3.551928038647379, + 4.176993437005642, + 5.28056873400609, + 6.634338338040775, + 9.260386370828902, + 11.33290413347482, + 13.031844236198308, + 15.70385568905499, + 17.739578598838328, + 22.74599951979482, + 27.303324886066342, + 28.582002562638632, + 29.725139989989078, + 30.8348642059186, + 31.686794411028234, + 32.41211428105273, + 33.03023309777194, + 33.5421790522247, + 33.92249660138713, + 34.35329023329461, + 34.647215311901654, + 34.79184866232004, + 35.02761301644761 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5_7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 20.0, + 25.0 + ], + [ + 20.0, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352160087987066, + 3.1911366293658077, + 3.5595877503960627, + 4.2442258511149475, + 5.250301167990765, + 7.209834757435488, + 10.36946086103237, + 13.792684956117702, + 19.460364137362607, + 23.32183130951512, + 26.20397536446149, + 30.33348488832197, + 33.22604151779046, + 39.64827311393372, + 44.97200414444327, + 46.41127011587434, + 47.68578885421903, + 48.91342537141683, + 49.85152025041537, + 50.650144168377885, + 51.331085392040585, + 51.89603834505562, + 52.316710961073035, + 52.795241892930925, + 53.12230443525592, + 53.283229491687074, + 53.54546750520715 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.195803175961543, + 1.4813847491413075, + 1.819821321700433, + 2.111467924224724, + 2.451192833943628, + 2.7884309039692052, + 3.045690163174915, + 3.404790333704355, + 3.6756180015140654, + 3.920949604119146, + 4.375777106300585, + 4.792232315544887, + 6.191042916717176, + 8.179051062298406, + 8.92302047211656, + 9.688190819428279, + 10.53655133305984, + 11.276621759075839, + 11.971828282663182, + 12.62231575277514, + 13.205917703571588, + 13.664282486065678, + 14.208249404485976, + 14.592466717555043, + 14.786042977933816, + 15.10653662461536 + ], + "5._384._0.0875": [ + 3.540684166099684, + 4.281129708236007, + 5.37209309695766, + 7.492732493714258, + 10.330392110744432, + 15.107838626652223, + 21.531921606667996, + 27.397568581029397, + 35.61692924396306, + 40.534587818598, + 43.96424146655387, + 48.61512863810956, + 51.74386465616055, + 58.46675592745313, + 63.94290211563782, + 65.41653920624294, + 66.72807614527058, + 67.99487586748367, + 68.96794571772581, + 69.79773260382063, + 70.50826362353733, + 71.10011728023058, + 71.54130902347457, + 72.04455176042308, + 72.3884446193061, + 72.55741510918489, + 72.83198153791605 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125418, + 2.162243131656481, + 2.506080872766288, + 2.8001446277622337, + 3.1449454173747937, + 3.541710154672102, + 3.984970917712823, + 4.927499616546537, + 5.7673187213549815, + 6.525772345222051, + 7.86159324032452, + 9.00458261598653, + 12.350505865953032, + 16.180592259946017, + 17.4040338769195, + 18.559814340883175, + 19.735850474942875, + 20.674742293418838, + 21.49379075977045, + 22.205450107178287, + 22.802264947234267, + 23.247545440767514, + 23.75132329563177, + 24.094984358774592, + 24.26458597393411, + 24.541834895954246 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.5553235789420263, + 2.851937413576538, + 3.2028537155346757, + 3.5528480923641514, + 4.182808720655418, + 5.303030370647647, + 6.688336567634186, + 9.406571160161274, + 11.57894262352434, + 13.37663647905118, + 16.233052481758186, + 18.43276902172264, + 23.917790891601452, + 28.992380257414332, + 30.427134839076754, + 31.71168828859476, + 32.95982336482503, + 33.917455765621916, + 34.73269171783086, + 35.426599409249704, + 36.00054806778224, + 36.42669535644342, + 36.90885453560493, + 37.237820141561905, + 37.399791107516585, + 37.66418988617597 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5_8": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ], + [ + 15.0, + 35.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 20.0, + 25.0 + ], + [ + 20.0, + 30.0 + ], + [ + 20.0, + 35.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8352171796926875, + 3.1912323955198802, + 3.56049999565259, + 4.249550028573317, + 5.267110970892145, + 7.262622452490169, + 10.513023481366805, + 14.075543864660455, + 20.060281189008855, + 24.197506543401715, + 27.313866241728935, + 31.81556173840786, + 34.99223632333103, + 42.089113929496186, + 47.99705654658159, + 49.595787304114204, + 51.01001516903632, + 52.37090685322932, + 53.408958395159274, + 54.2922718199328, + 55.04440678104219, + 55.66766757792533, + 56.13163963757638, + 56.65910131703204, + 57.01965614833479, + 57.19714145360328, + 57.48668867212045 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961541, + 1.4813847491413068, + 1.819821321700433, + 2.1114679242247245, + 2.451192833962722, + 2.788431173280784, + 3.045706835618799, + 3.40519536343196, + 3.6770298713540206, + 3.9238359425768987, + 4.382546804128344, + 4.803687731545685, + 6.22550348281308, + 8.26454272545655, + 9.033327122241456, + 9.827594044338952, + 10.712497255272448, + 11.488618159662211, + 12.221409490821387, + 12.910766728530104, + 13.532654737824, + 14.023630504289848, + 14.609443480426677, + 15.025682797415206, + 15.236399684731932, + 15.587059398091673 + ], + "5._384._0.0875": [ + 3.5418723153370695, + 4.2875548225430595, + 5.391829583210791, + 7.553797923045855, + 10.47444288412533, + 15.4552764443417, + 22.26690742381884, + 28.591324881289722, + 37.590797272722426, + 43.03731757173099, + 46.85583270985285, + 52.048524431573, + 55.5484418342339, + 63.06474107299005, + 69.17697562347936, + 70.81987198491822, + 72.28036229442219, + 73.68953892650171, + 74.7703665517925, + 75.6917736235231, + 76.48001038324286, + 77.13605237149497, + 77.62504853785302, + 78.1826382392934, + 78.5637326590175, + 78.75104578471024, + 79.0556567040888 + ], + "5._48._0.075": [ + 1.526846324373144, + 1.8679037053125487, + 2.1622431316564796, + 2.506080872857054, + 2.8001448680440215, + 3.1449852270814374, + 3.5424179084997003, + 3.9880093956834037, + 4.939862149723824, + 5.79197569202499, + 6.564469395710022, + 7.931575415279252, + 9.107719981191298, + 12.583168624254064, + 16.62201014777784, + 17.92759700079677, + 19.16739965914743, + 20.43548697638933, + 21.452461518109263, + 22.34301280497745, + 23.118964178222107, + 23.771011667028986, + 24.258204548647722, + 24.80965662349337, + 25.18613943442992, + 25.37217522339887, + 25.67688529446201 + ], + "5._96._0.075": [ + 2.209271810327418, + 2.555323579321738, + 2.851937961742485, + 3.202916576636184, + 3.5535381677970186, + 4.18717316823856, + 5.319936490017815, + 6.729164937306775, + 9.518352219988081, + 11.768632926224731, + 13.64439883883691, + 16.64917886255251, + 18.983504338698914, + 24.87378358615821, + 30.407113640680546, + 31.984277484052726, + 33.39913505617774, + 34.775837801132, + 35.8321176604548, + 36.73155863532055, + 37.496514530753714, + 38.128583165876954, + 38.5976884009178, + 39.12794358595513, + 39.489739271230974, + 39.6679839630719, + 39.95935698577689 ] }, "logtime": [ @@ -7455,7 +21631,7 @@ 3.003 ] }, - "3_3": { + "6_6": { "bore_locations": [ [ 0.0, @@ -7469,6 +21645,18 @@ 0.0, 10.0 ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], [ 5.0, 0.0 @@ -7481,6 +21669,18 @@ 5.0, 10.0 ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ], + [ + 5.0, + 25.0 + ], [ 10.0, 0.0 @@ -7492,153 +21692,237 @@ [ 10.0, 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 20.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 15.0, + 15.0 + ], + [ + 15.0, + 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 20.0, + 25.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 5.0 + ], + [ + 25.0, + 10.0 + ], + [ + 25.0, + 15.0 + ], + [ + 25.0, + 20.0 + ], + [ + 25.0, + 25.0 ] ], "g": { "5._192._0.08": [ - 2.835194777381192, - 3.1894025608097913, - 3.5431730221711955, - 4.14995457114244, - 4.9602850236753655, - 6.347578461069761, - 8.219303063204094, - 9.914516638470111, - 12.278861307216795, - 13.689375428116989, - 14.674344858546927, - 16.022611202493785, - 16.935365383865182, - 18.932857449180446, - 20.590866358188737, - 21.041366524348163, - 21.444770448561922, - 21.836821848945775, - 22.14035060837515, - 22.399611200201736, - 22.622676684137772, - 22.809243153220393, - 22.948370714060438, - 23.107281147415655, - 23.21577422790068, - 23.26899392646864, - 23.35511895816213 + 2.83521663331447, + 3.1911878576853034, + 3.560081573640177, + 4.247163908669402, + 5.259677180126459, + 7.23924511472876, + 10.447868176066773, + 13.942965071629349, + 19.756898724440635, + 23.729200231483375, + 26.69673685660295, + 30.948444394774704, + 33.92505912275877, + 40.524097910570646, + 45.9832741565197, + 47.4576772357258, + 48.76263040219454, + 50.019062314583046, + 50.97872071412914, + 51.79559022146965, + 52.491905154499115, + 53.06949237423321, + 53.49955846204977, + 53.98874282668598, + 54.32309322448679, + 54.48761334687621, + 54.75575287511337 ], "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, + 0.8740059532267968, + 1.195803175961542, + 1.4813847491413084, 1.8198213217004344, - 2.1114679242247276, - 2.4511928335973607, - 2.7884260204953697, - 3.04538794032085, - 3.397478847285279, - 3.65028236953504, - 3.8694446367968838, - 4.256269763172383, - 4.592145183247248, - 5.616342141065902, - 6.8505258017449835, - 7.255864594819363, - 7.646968809849212, - 8.053276846734915, - 8.386585501883108, - 8.683166345880695, - 8.947757383742928, - 9.175550285120444, - 9.348629321286626, - 9.549090750604586, - 9.687603583920982, - 9.75618204850785, - 9.867903170019959 + 2.1114679242247245, + 2.451192833953814, + 2.7884310476047123, + 3.0456990616246222, + 3.4050083442379275, + 3.6763862918772694, + 3.922534072185545, + 4.379535772365788, + 4.798634609761959, + 6.210355322197774, + 8.22643764956269, + 8.983943999600514, + 9.764602568872254, + 10.631773827593644, + 11.389517931978578, + 12.102275928811814, + 12.769780079251275, + 13.368914884380999, + 13.83947432411354, + 14.397489882942963, + 14.79105444325335, + 14.989097631357176, + 15.316529077620034 ], "5._384._0.0875": [ - 3.519414642750923, - 4.167877970390456, - 5.033726376163877, - 6.505666850113914, - 8.171517377809307, - 10.490884518790367, - 13.057641798784514, - 15.091596800768148, - 17.68751684607798, - 19.161074457078783, - 20.170244304416116, - 21.533887452770426, - 22.450098703200283, - 24.44785294350101, - 26.106290008466924, - 26.556935572090406, - 26.961259778317036, - 27.354567382479086, - 27.659517769608016, - 27.920033833407945, - 28.144407005050972, - 28.332246401451023, - 28.47232450648087, - 28.632424722805496, - 28.741678395827968, - 28.795229262854185, - 28.881805767853283 + 3.5413264893585925, + 4.284676712376069, + 5.383098592540394, + 7.526658021972517, + 10.409048595000398, + 15.289396365782563, + 21.886075688945958, + 27.92564939113464, + 36.39223498336281, + 41.45410657070107, + 44.981767532899354, + 49.7613536617339, + 52.974359824952735, + 59.87135121110951, + 65.48414489132358, + 66.99393802272574, + 68.33742448077338, + 69.63486168361176, + 70.63126359831513, + 71.48091931235662, + 72.2083847655162, + 72.81429242500884, + 73.26596320751466, + 73.7811526798732, + 74.13322224635995, + 74.30621875235995, + 74.58735669198336 ], "5._48._0.075": [ - 1.526846324373141, - 1.8679037053125445, - 2.1622431316564743, - 2.5060808711202784, - 2.8001402706862746, - 3.144224045078283, - 3.5289604520774644, - 3.9307999739317094, - 4.712428254185614, - 5.347418921621241, - 5.879965415980396, - 6.739706948129181, - 7.408865386614326, - 9.11626514200392, - 10.744546670597042, - 11.212791446300308, - 11.639773033803978, - 12.061220509658641, - 12.391458830061971, - 12.675406212948246, - 12.921007864313719, - 13.127088899769337, - 13.280972380875744, - 13.456545976421273, - 13.576513141553155, - 13.63547462786866, - 13.731049929860575 + 1.5268463243731378, + 1.8679037053125447, + 2.1622431316564814, + 2.5060808728146964, + 2.80014475591463, + 3.1449666808368937, + 3.542092547198847, + 3.9866376733728646, + 4.9343853105653634, + 5.78114564180377, + 6.547535874658476, + 7.900826591060631, + 9.062077226182737, + 12.475260733403815, + 16.402185096714526, + 17.659079007551213, + 18.846866902266196, + 20.05539223099621, + 21.019578887090393, + 21.86007361399316, + 22.58957375290493, + 23.200618615117648, + 23.65603924643864, + 24.170665609820286, + 24.521416307101852, + 24.694447090878644, + 24.97726355402357 ], "5._96._0.075": [ - 2.2092718103274045, - 2.555323572056519, - 2.851927473662024, - 3.2017149990298575, - 3.5404146600729027, - 4.105317906966819, - 5.011588848511913, - 6.010214756195945, - 7.689683107068938, - 8.83802759134417, - 9.696161835980128, - 10.936159020578424, - 11.810006714617264, - 13.795953525503256, - 15.487658517857962, - 15.951619872839778, - 16.36743918194945, - 16.772210126218116, - 17.08580136939843, - 17.353701914617353, - 17.584116928288115, - 17.77669672785507, - 17.92024261930604, - 18.08396769607562, - 18.195727750777714, - 18.25057695718145, - 18.33939900223481 + 2.209271810327407, + 2.5553235791445417, + 2.851937705941786, + 3.202887313447567, + 3.5532208005038974, + 4.185212253897755, + 5.312459990141107, + 6.711174904651938, + 9.46817736922537, + 11.682032084341168, + 13.51960769519183, + 16.446955263544993, + 18.70607114245926, + 24.347455523773686, + 29.564725517415805, + 31.03792026154789, + 32.355678492669284, + 33.6349571575402, + 34.61550898062674, + 35.449755980580974, + 36.15934343210846, + 36.74591393187839, + 37.181310902310514, + 37.67377194157702, + 38.00972016000984, + 38.17512689782224, + 38.445178505993205 ] }, "logtime": [ diff --git a/HPXMLtoOpenStudio/resources/g_functions/util.rb b/HPXMLtoOpenStudio/resources/g_functions/util.rb index 85b1c43b01..92e35ca579 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/util.rb +++ b/HPXMLtoOpenStudio/resources/g_functions/util.rb @@ -6,7 +6,7 @@ def process_g_functions(filepath) require 'zip' # downselect criteria - n_x_m = 20 # for example, upper bound on number of boreholes + n_x_m = 40 # for example, upper bound on number of boreholes g_functions_path = File.dirname(filepath) Dir[File.join(filepath, '*.json')].each do |config_json| diff --git a/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json index 609a3002a0..7abe24dbaa 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json @@ -1,6 +1,6 @@ { - "4_4": { - "1_1": { + "4_7": { + "1_4": { "bore_locations": [ [ 0.0, @@ -8,7 +8,7 @@ ], [ 0.0, - 15.0 + 30.0 ], [ 5.0, @@ -16,7 +16,7 @@ ], [ 5.0, - 15.0 + 30.0 ], [ 10.0, @@ -24,7 +24,7 @@ ], [ 10.0, - 15.0 + 30.0 ], [ 15.0, @@ -32,7 +32,7 @@ ], [ 15.0, - 15.0 + 30.0 ], [ 0.0, @@ -50,156 +50,192 @@ 15.0, 10.0 ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], [ 7.5, - 7.5 + 6.0 + ], + [ + 7.5, + 12.0 + ], + [ + 7.5, + 18.0 + ], + [ + 7.5, + 24.0 ] ], "g": { "5._192._0.08": [ - 2.8351678798604345, - 3.1872177656117713, - 3.5232854354783685, - 4.052438428723101, - 4.737474926415511, - 5.977489432905987, - 7.856754647922466, - 9.757886641432913, - 12.65721965944212, - 14.489023102379893, - 15.799787506923897, - 17.621687420628838, - 18.867683164022797, - 21.602860244685026, - 23.86907055587442, - 24.48364661201678, - 25.03200961694053, - 25.563482964117686, - 25.973372450536573, - 26.32312358373291, - 26.623239533466247, - 26.873638232417136, - 27.060269509428625, - 27.27314400577993, - 27.418514658262378, - 27.48988549628561, - 27.605605098659062 + 2.8351612916549174, + 3.1868118480930505, + 3.5214760491745505, + 4.05541257046864, + 4.771496959063462, + 6.12565548187168, + 8.290021197651777, + 10.617578986370207, + 14.43343219344073, + 17.00258897338687, + 18.90655991463661, + 21.62426801164568, + 23.52280167025776, + 27.74646832744757, + 31.265776505863187, + 32.22033513840285, + 33.06835088365426, + 33.887389707677684, + 34.515597443151904, + 35.05088784987197, + 35.508395902047724, + 35.88874698113723, + 36.17203324658834, + 36.49453298790829, + 36.71486144283248, + 36.82317859241036, + 36.99934126554211 ], "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413072, - 1.8198213217004355, - 2.111467924224728, - 2.451192833158653, - 2.7884198333956856, - 3.0450054383047207, - 3.388423414909576, - 3.620332527088513, - 3.8120682594158315, - 4.140041187434159, - 4.422886678754824, - 5.321234989615849, - 6.5263437404866025, - 6.957686304348439, - 7.391567154083204, - 7.860314222708644, - 8.258606025392256, - 8.623043600790599, - 8.956058309223891, - 9.248420146003598, - 9.473772823909444, - 9.737610667646901, - 9.921562602400382, - 10.01322191695006, - 10.163325953713956 + 0.8740059532267969, + 1.1958031759615408, + 1.4813847491413077, + 1.8198213217004344, + 2.1114679242247263, + 2.451192833046527, + 2.788418287458567, + 3.0449206951020633, + 3.38724757051266, + 3.61850403632618, + 3.811381364984323, + 4.146977082287915, + 4.442544645371403, + 5.413478476339766, + 6.781701103121397, + 7.291352600640382, + 7.8165537505901765, + 8.398984539340237, + 8.907547084916636, + 9.384864022289396, + 9.831958727375463, + 10.233791670273815, + 10.549942179579354, + 10.927052327407726, + 11.194866351434037, + 11.330130421717449, + 11.554449103316042 ], "5._384._0.0875": [ - 3.493996636696855, - 4.054659256266985, - 4.78875306945473, - 6.121025206876537, - 7.80352951065869, - 10.433901019383976, - 13.640941694839348, - 16.331370561092573, - 19.87431599525205, - 21.916007808617138, - 23.320390687400792, - 25.218451029282615, - 26.493354059266988, - 29.259069977783355, - 31.540586806336844, - 32.158670408518, - 32.711800316168194, - 33.24870064288903, - 33.66382260617443, - 34.018254057586034, - 34.32297815575483, - 34.577691682824415, - 34.76761085869214, - 34.98452514114636, - 35.13260942703353, - 35.205247646838394, - 35.322859512661175 + 3.492053721540635, + 4.059924988462409, + 4.831616160647287, + 6.295250843698073, + 8.237966962975912, + 11.485751935408194, + 15.788001538866416, + 19.65783869681176, + 25.023377870409895, + 28.214597935016197, + 30.436395983107474, + 33.4532649761495, + 35.485214833814986, + 39.8730027276945, + 43.466962885258845, + 44.436812830029055, + 45.3015964174609, + 46.138365231134905, + 46.78261142032229, + 47.33220364407575, + 47.803456786665606, + 48.19645061624461, + 48.48940624074326, + 48.82367353732015, + 49.05200308691436, + 49.1641229433298, + 49.34607296631648 ], "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125465, - 2.1622431316564756, - 2.5060808690348377, - 2.8001347504925422, - 3.143312305355372, - 3.5133861797008517, - 3.8705310824159427, - 4.531769197972898, - 5.077899785965173, - 5.55462300227648, - 6.3711748012195075, - 7.048675915142177, - 8.939167539808523, - 10.931806169001842, - 11.533159553013329, - 12.089419777562865, - 12.64489905654875, - 13.083338715281778, - 13.462104966217911, - 13.790303957182326, - 14.065688463472014, - 14.271267984243181, - 14.505221390976585, - 14.665007991014143, - 14.743623198045242, - 14.871293402214993 + 1.5268463243731418, + 1.8679037053125405, + 2.162243131656477, + 2.506080868502034, + 2.8001333694180275, + 3.143123764336332, + 3.5117741342402353, + 3.869847203468731, + 4.553213060341413, + 5.1373427818355735, + 5.659087925892351, + 6.57554494440892, + 7.357716813213112, + 9.649828684776594, + 12.258669789309865, + 13.088698811742663, + 13.87190080517147, + 14.668765310395022, + 15.306598615779649, + 15.863754483050641, + 16.349763364999447, + 16.759133394456633, + 17.065511273163285, + 17.413840689640484, + 17.65204476731939, + 17.769591021507456, + 17.961321479632183 ], "5._96._0.075": [ - 2.209271810327403, - 2.555323563332806, - 2.8519148805355723, - 3.2002776648469786, - 3.525206128924598, - 4.022767075983574, - 4.789456780493782, - 5.670963648218378, - 7.310927123196966, - 8.550282587645464, - 9.533176072028752, - 11.027135098862418, - 12.124848504513153, - 14.717167899186993, - 16.98976615396995, - 17.618790577984015, - 18.181887823775902, - 18.729541065237587, - 19.15255691604014, - 19.51353906417054, - 19.82305155110091, - 20.080928561476814, - 20.27291183541213, - 20.491317598553422, - 20.640355442461797, - 20.71355755380681, - 20.832334532578137 + 2.209271810327407, + 2.555323561105395, + 2.8519117587431215, + 3.1999948076739755, + 3.523597835586041, + 4.0240024863817885, + 4.8240099032301815, + 5.781399711036753, + 7.6457389772889846, + 9.126575202466062, + 10.34706179841653, + 12.279051484227715, + 13.757850810805675, + 17.423446758352718, + 20.80195216851114, + 21.757216773287116, + 22.61472641002419, + 23.450180757546274, + 24.094123893208806, + 24.64343073330391, + 25.112774325089926, + 25.502323683358696, + 25.791924853668867, + 26.120290025742555, + 26.344357234454808, + 26.454584900774663, + 26.634076144186242 ] }, "logtime": [ @@ -232,7 +268,7 @@ 3.003 ] }, - "1_2": { + "2_4": { "bore_locations": [ [ 0.0, @@ -240,7 +276,7 @@ ], [ 0.0, - 15.0 + 30.0 ], [ 5.0, @@ -248,7 +284,7 @@ ], [ 5.0, - 15.0 + 30.0 ], [ 10.0, @@ -256,7 +292,7 @@ ], [ 10.0, - 15.0 + 30.0 ], [ 15.0, @@ -264,7 +300,7 @@ ], [ 15.0, - 15.0 + 30.0 ], [ 0.0, @@ -283,159 +319,16341 @@ 10.0 ], [ - 7.5, - 5.0 + 0.0, + 15.0 ], [ - 7.5, - 10.0 + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 5.0, + 6.0 + ], + [ + 5.0, + 12.0 + ], + [ + 5.0, + 18.0 + ], + [ + 5.0, + 24.0 + ], + [ + 10.0, + 6.0 + ], + [ + 10.0, + 12.0 + ], + [ + 10.0, + 18.0 + ], + [ + 10.0, + 24.0 ] ], "g": { "5._192._0.08": [ - 2.8351711814013543, - 3.1877619161150377, - 3.5300521987323443, - 4.092350053972336, - 4.846045715867644, - 6.226030365575266, - 8.301646015806089, - 10.37896592317485, - 13.521464069334, - 15.498792833674043, - 16.91154931578895, - 18.872602017133534, - 20.21246432782293, - 23.15028892524921, - 25.581789694205543, - 26.240913949035075, - 26.828903751768717, - 27.39868300301964, - 27.838026505409367, - 28.212900954378327, - 28.534542552922407, - 28.80288099513015, - 29.002888521067113, - 29.231021045823017, - 29.386821853893696, - 29.46331909418647, - 29.587366908436255 + 2.8351768029084212, + 3.1884982140870126, + 3.5399655200950084, + 4.159132680579318, + 5.043310167827616, + 6.734259570844476, + 9.403990067197196, + 12.230685926252091, + 16.799137258280933, + 19.84988363722113, + 22.103226594199434, + 25.309810138806267, + 27.544737903040392, + 32.50274532876693, + 36.62282072399607, + 37.73908229161835, + 38.73021146656613, + 39.68700512221716, + 40.420444096405184, + 41.04535067254345, + 41.57929222819405, + 42.023086570204796, + 42.35364264345615, + 42.729956598487135, + 42.9870898811391, + 43.11352296562639, + 43.319219775856574 ], "5._24._0.075": [ - 0.8740059532267965, + 0.874005953226797, 1.195803175961542, - 1.4813847491413066, - 1.8198213217004344, - 2.1114679242247285, - 2.45119283317253, - 2.7884204452488497, - 3.0450776854767603, - 3.391231242253256, - 3.6310826882034704, - 3.834200811876476, - 4.189479548289206, - 4.501000324208016, - 5.500154502892341, - 6.83397784285001, - 7.307508114996968, - 7.781213144781125, - 8.290675036159072, - 8.72167336973038, - 9.114874342962088, - 9.473097792217311, - 9.786763933623792, - 10.028064719450208, - 10.309933726858137, - 10.506088603242873, - 10.603728742838797, - 10.76349911300112 + 1.481384749141308, + 1.8198213217004335, + 2.1114679242247227, + 2.4511928332496473, + 2.7884216544938134, + 3.045178887900911, + 3.3951756681773415, + 3.647403063117421, + 3.869751395720987, + 4.2742568516716375, + 4.63998151281358, + 5.852393416749416, + 7.543618311470251, + 8.166785670322346, + 8.802971460615792, + 9.5028003808606, + 10.108803377340507, + 10.67415431855699, + 11.200213498597687, + 11.670085751452397, + 12.037925021288329, + 12.474057204273898, + 12.782107518981976, + 12.937226802856864, + 13.193888130251025 ], "5._384._0.0875": [ - 3.502951035108636, - 4.1021182676846255, - 4.912099940002563, - 6.394312539684579, - 8.251758092475313, - 11.12198110832681, - 14.595001329381112, - 17.4984730325936, - 21.314758329968765, - 23.51166411917869, - 25.022151255906795, - 27.062667289719766, - 28.43281242316016, - 31.403766951270235, - 33.853595240469225, - 34.5171700430619, - 35.11096376694695, - 35.68729155277061, - 36.13285736527143, - 36.51328211340298, - 36.840340494020914, - 37.113714720973874, - 37.31755224691423, - 37.55036585440934, - 37.70931169123703, - 37.78728131747946, - 37.913535295118905 + 3.51623638528283, + 4.182534380219341, + 5.138893108464726, + 6.964803756377397, + 9.359896218845194, + 13.294388352464951, + 18.43720782464621, + 23.030152342317198, + 29.371211004039207, + 33.13359756303134, + 35.75044586340833, + 39.29969188300404, + 41.68832858235261, + 46.84026996267815, + 51.05575507502951, + 52.192822438810694, + 53.20650747173057, + 54.187144650984834, + 54.94195765916947, + 55.585865897587354, + 56.137920155609734, + 56.598252720203455, + 56.94142138280945, + 57.33299072172242, + 57.600488850415246, + 57.73185603482696, + 57.945082230400764 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125418, + 2.162243131656476, + 2.5060808694791796, + 2.8001363596457067, + 3.143779784957073, + 3.525998673951438, + 3.9312434206565907, + 4.764852471148493, + 5.495069050579647, + 6.148319481319552, + 7.28812477272002, + 8.252677604278032, + 11.03105602396165, + 14.13579478459462, + 15.113580026971484, + 16.032891650581963, + 16.964929251937875, + 17.708127326709146, + 18.355877840429706, + 18.91938615060825, + 19.392944147846794, + 19.74689160614836, + 20.148670677216572, + 20.423213393642694, + 20.55867343727451, + 20.779728198358104 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323565250502, + 2.8519187898338996, + 3.2010666917293418, + 3.5374432224056935, + 4.110406212012664, + 5.095977645190078, + 6.293398632019837, + 8.601773242944848, + 10.411075495579066, + 11.88821503257597, + 14.205072939425177, + 15.966576487271793, + 20.30033048783651, + 24.265076472165678, + 25.382386972372124, + 26.383971012272927, + 27.358576320055015, + 28.108722551058037, + 28.74828104984055, + 29.294272042076493, + 29.74713536783998, + 30.083761152224803, + 30.465354645278932, + 30.72576827515188, + 30.853902218864985, + 31.062657465686442 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 7.5, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169469722837, + 3.187332693904426, + 3.5235625416258682, + 4.042883946041353, + 4.682646457191729, + 5.801313493538155, + 7.560151968316116, + 9.486585685710137, + 12.714013129307281, + 14.91412690355804, + 16.552920312310743, + 18.902325976242317, + 20.54859975292621, + 24.22444869877162, + 27.297774297100904, + 28.13254522306131, + 28.8746325354482, + 29.591794562091454, + 30.14225344892876, + 30.61134410096529, + 31.012419222452944, + 31.345946496706134, + 31.594343672097203, + 31.877125099713126, + 32.07028302878385, + 32.165222810782666, + 32.319565177673596 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141308, + 1.8198213217004335, + 2.1114679242247276, + 2.4511928331846287, + 2.7884201995762328, + 3.045027566749336, + 3.3887371108015327, + 3.620114237655505, + 3.8091027520312246, + 4.124603185075481, + 4.388729861259154, + 5.20157320039569, + 6.312813410699086, + 6.729961403815689, + 7.164355278572759, + 7.651344019372893, + 8.081366418358783, + 8.488562759448369, + 8.873350980964906, + 9.22199766254238, + 9.498074542287275, + 9.829852263641033, + 10.06703368032835, + 10.187284944878344, + 10.387344624111247 + ], + "5._384._0.0875": [ + 3.4941094991523753, + 4.041430406753463, + 4.722109676453478, + 5.924096504794645, + 7.502609933927765, + 10.19996566127224, + 13.848851936104701, + 17.16738702391159, + 21.79759492384403, + 24.560528034019235, + 26.486678390185606, + 29.10590966486106, + 30.871820551891055, + 34.69072697793446, + 37.82278844141152, + 38.66845608296655, + 39.42269412989945, + 40.15268825264609, + 40.714906960091824, + 41.194528814816785, + 41.605848822209474, + 41.948901644039026, + 42.204614466223546, + 42.496379441863034, + 42.6956519344267, + 42.79349085479697, + 42.95222811935028 ], "5._48._0.075": [ 1.5268463243731418, - 1.8679037053125458, - 2.1622431316564765, - 2.5060808691112553, - 2.8001352858759265, - 3.1435101206117877, - 3.5185458782381347, - 3.8938257837458465, - 4.615538123293564, - 5.222669763731222, - 5.7542059909967485, - 6.661109585044995, - 7.409053123901263, - 9.473867374906161, - 11.627812881089339, - 12.274783066123721, - 12.872278339628457, - 13.468077371448969, - 13.937653596310543, - 14.34299477885783, - 14.693880322398936, - 14.988062080556276, - 15.207579986864737, - 15.457259764071907, - 15.627744146780127, - 15.711618851192473, - 15.847848859102404 + 1.8679037053125427, + 2.1622431316564756, + 2.5060808691583207, + 2.8001350772198865, + 3.143363552797332, + 3.5137195266023293, + 3.867384816078826, + 4.494670373352554, + 4.991392555263045, + 5.419804757092543, + 6.161737214157857, + 6.79637572096678, + 8.695090561861797, + 10.914785249282179, + 11.630698383114662, + 12.310171764673694, + 13.004763635094156, + 13.563453621279448, + 14.052848062584541, + 14.4811792721289, + 14.842996252952485, + 15.114238986949626, + 15.423239350153306, + 15.634780629621114, + 15.739200435570952, + 15.909453656407013 ], "5._96._0.075": [ 2.209271810327403, - 2.5553235637037206, - 2.851916258652669, - 3.2006127849279995, - 3.530219822586601, - 4.055842692400081, - 4.898148492299303, - 5.879869422948944, - 7.695974590146078, - 9.055304631317874, - 10.126995612407795, - 11.747734775736093, - 12.93448191707208, - 15.727331901290837, - 18.16795636288144, - 18.84260051387258, - 19.44620431858016, - 20.032976785916762, - 20.485981307087, - 20.872483756031464, - 21.20378005998712, - 21.479742725429944, - 21.685182126746238, - 21.91887558652922, - 22.078352298963235, - 22.156687893966236, - 22.283817115227492 + 2.5553235638493397, + 2.8519156255490095, + 3.2003562651196305, + 3.525550971809609, + 4.0161373222253385, + 4.734023327599434, + 5.52902856116355, + 7.041222729277607, + 8.256261343307644, + 9.27110252873261, + 10.89995822237019, + 12.15952834421259, + 15.316948372201745, + 18.256318977298086, + 19.09107132043628, + 19.841687754300604, + 20.57414204616125, + 21.13967609469519, + 21.622422137421932, + 22.035330646172145, + 22.378324766081132, + 22.63336373411643, + 22.922632352920715, + 23.12000490910507, + 23.21707866420464, + 23.375058018079258 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 7.5, + 10.0 + ], + [ + 7.5, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351663658925808, + 3.1870869210357737, + 3.5216078941912636, + 4.037835741578408, + 4.6899149070726205, + 5.878591920339216, + 7.777580920679048, + 9.844350689060867, + 13.27444080282156, + 15.599890676513857, + 17.32808205166118, + 19.80088730524011, + 21.531336169822332, + 25.38916459785127, + 28.610025902680636, + 29.48435320604841, + 30.2613983074769, + 31.01215859042278, + 31.588239144229988, + 32.079142356365914, + 32.498804573851665, + 32.84774944270824, + 33.107634911305034, + 33.40349454430398, + 33.60560043285796, + 33.704946555051336, + 33.866478982642626 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615422, + 1.4813847491413077, + 1.8198213217004353, + 2.1114679242247267, + 2.4511928331339767, + 2.7884194853273234, + 3.044983677296911, + 3.3877795440354466, + 3.6174090388005493, + 3.804951414351753, + 4.120721913796074, + 4.389742533833025, + 5.246165594921308, + 6.444965021137562, + 6.894526860761225, + 7.3609703418165005, + 7.8815565541779895, + 8.339081165477271, + 8.770638822409719, + 9.176928391204294, + 9.543799502813703, + 9.833517613798032, + 10.180609387601532, + 10.428061913692437, + 10.553319087582594, + 10.76141959049578 + ], + "5._384._0.0875": [ + 3.491666654771148, + 4.036555039229863, + 4.734223037156891, + 6.016731965294465, + 7.721544157793291, + 10.611277865038081, + 14.484320931552226, + 17.98934975073714, + 22.865975969468906, + 25.771763470079236, + 27.796355138815436, + 30.54776286937325, + 32.40200036605496, + 36.40949278222393, + 39.69446488918187, + 40.581219483841494, + 41.372024527716185, + 42.13732975474072, + 42.726667690501834, + 43.22942227116025, + 43.660553967384715, + 44.02011386070993, + 44.28813727529421, + 44.59395180153474, + 44.80283049884675, + 44.905391220938824, + 45.07180507572196 + ], + "5._48._0.075": [ + 1.5268463243731432, + 1.8679037053125407, + 2.1622431316564765, + 2.5060808689175333, + 2.800134439947913, + 3.1432596179608434, + 3.5121468806320206, + 3.863020565905418, + 4.495956902063145, + 5.014225637206339, + 5.470787620096626, + 6.271080069255243, + 6.957068709296682, + 8.993903874007302, + 11.347886602621138, + 12.102730601487488, + 12.817264067782439, + 13.546217357998287, + 14.131332664855416, + 14.643267489110713, + 15.090700973570737, + 15.468205064292778, + 15.751008353198518, + 16.072908783826968, + 16.293175215310605, + 16.401885729558153, + 16.579156757828745 + ], + "5._96._0.075": [ + 2.209271810327402, + 2.555323562842096, + 2.8519141719794616, + 3.200193350975481, + 3.5240082029429076, + 4.011182245987465, + 4.7417739234257255, + 5.583310139820175, + 7.21549819081575, + 8.523736592954299, + 9.610460294207183, + 11.344230323172535, + 12.678898824255567, + 16.007948120271127, + 19.093766354891258, + 19.968456849944104, + 20.75442838525945, + 21.520882564555926, + 22.11224308138297, + 22.6168935256422, + 23.048349185033743, + 23.406626836233144, + 23.673008066089107, + 23.97510044465487, + 24.181228056445093, + 24.282616407449478, + 24.44765534809854 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 7.5, + 7.5 + ], + [ + 7.5, + 15.0 + ], + [ + 7.5, + 22.5 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351635580256604, + 3.1868700404538632, + 3.5202733026573148, + 4.040309792932084, + 4.720083459051813, + 5.990614734967209, + 8.024310347090275, + 10.223561864968083, + 13.84857484741107, + 16.2966012415779, + 18.11298918502549, + 20.70842323599815, + 22.52291755877334, + 26.56337067694557, + 29.932979411823094, + 30.8472671484664, + 31.659650426704424, + 32.44439934367994, + 33.04642059250584, + 33.55941144163968, + 33.99790321020989, + 34.362471803799416, + 34.63399869621654, + 34.943111115963305, + 35.154282869055336, + 35.25809249564105, + 35.42690529931335 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.4813847491413075, + 1.819821321700434, + 2.111467924224728, + 2.4511928330881476, + 2.7884188391102973, + 3.044944113859872, + 3.3870145536937994, + 3.615935956740703, + 3.8042583331092863, + 4.126833785480621, + 4.407304930041428, + 5.319495770623669, + 6.6041325569847595, + 7.08428946776401, + 7.580670468072656, + 8.13273320179482, + 8.616188581950206, + 9.070936388173825, + 9.497857583496534, + 9.882362141739208, + 10.185381123740937, + 10.547535885387022, + 10.805176757455673, + 10.935430823690655, + 11.151611894596037 + ], + "5._384._0.0875": [ + 3.4901551614952333, + 4.041097881412215, + 4.771848974435697, + 6.144587936966614, + 7.97025351938825, + 11.041794067893326, + 15.131453081443718, + 18.81974921668134, + 23.941237317823834, + 26.989747785252334, + 29.112882986060225, + 31.99685541770366, + 33.939796946082446, + 38.13699512583497, + 41.57601668952772, + 42.50418984793176, + 43.331865643285646, + 44.13278456607795, + 44.749482556501285, + 45.275575582028935, + 45.72669799612162, + 46.10291581909021, + 46.38336158698881, + 46.70335272100703, + 46.921923281162364, + 47.02924731066947, + 47.20340350607982 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125407, + 2.162243131656477, + 2.506080868699682, + 2.800133863374056, + 3.1431664867990414, + 3.511003879199242, + 3.8623156451160527, + 4.515173719049069, + 5.06479992787909, + 5.55370685411924, + 6.412750788291099, + 7.147635684054228, + 9.314256445469622, + 11.79706691534515, + 12.58976257881212, + 13.338760107902576, + 14.101727895855928, + 14.713191789486814, + 15.247697832108951, + 15.71435529791113, + 16.107716935146748, + 16.402240388063763, + 16.7372647486207, + 16.96643110165261, + 17.079523899775598, + 17.263965765956055 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.5553235619307806, + 2.8519128568997587, + 3.2000482708937437, + 3.52287575342177, + 4.012109809731903, + 4.772385757748915, + 5.670806651992732, + 7.420622298774972, + 8.816630526323616, + 9.971270947948478, + 11.805342676830222, + 13.212700238326887, + 16.710685300724073, + 19.94278603555217, + 20.85765915429973, + 21.679279014564994, + 22.480091054444397, + 23.097613097003524, + 23.624473626034565, + 24.074763282987433, + 24.44857947629786, + 24.72649680566013, + 25.041639412758165, + 25.25667775021034, + 25.362456901059495, + 25.53467629980608 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_8": { + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 7.5, + 17.5 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169797270246, + 3.1873565955049634, + 3.523698914875385, + 4.042636415747127, + 4.679086176627898, + 5.784197393736978, + 7.521220830944112, + 9.445174819621897, + 12.726518184290763, + 15.002194652978792, + 16.715555270613894, + 19.195492550903992, + 20.94805815716021, + 24.891360875775305, + 28.207689797070817, + 29.110108757093318, + 29.911830627391875, + 30.6862112669186, + 31.27986277652867, + 31.785604511672425, + 32.2175803818633, + 32.576462301801236, + 32.84368135091169, + 33.147716322664856, + 33.35540951111465, + 33.457530104994795, + 33.62368458644538 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.4813847491413075, + 1.819821321700434, + 2.111467924224728, + 2.451192833189991, + 2.788420275097119, + 3.0450321005892036, + 3.3888169178476653, + 3.6202641569863396, + 3.809175680020829, + 4.123955031722743, + 4.386735281574301, + 5.190962817653696, + 6.2870815737944055, + 6.700592769215197, + 7.133340331683953, + 7.621552622981938, + 8.055747235442517, + 8.469798019276292, + 8.863991439213548, + 9.223928643814144, + 9.51103911112572, + 9.858885661498869, + 10.10978323915151, + 10.237858378584402, + 10.452421756416168 + ], + "5._384._0.0875": [ + 3.4942656681079076, + 4.040971278222298, + 4.717540376736331, + 5.9040864016957375, + 7.463221803343502, + 10.16301884534146, + 13.890164278426766, + 17.34622787563684, + 22.252941259885226, + 25.217927538243224, + 27.29677952527105, + 30.13327634443982, + 32.050206205632115, + 36.196844104975575, + 39.59485570226279, + 40.51167357607459, + 41.32857078021392, + 42.11854616330715, + 42.726236545340825, + 43.24451675523966, + 43.68864026660027, + 44.058794317564704, + 44.33468066206288, + 44.64936237898076, + 44.86431248352875, + 44.96987808467706, + 45.14125843225491 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125407, + 2.162243131656477, + 2.506080869183801, + 2.800135144607571, + 3.143374062009305, + 3.513836878311045, + 3.8674606132706066, + 4.492504540274874, + 4.984813896344954, + 5.40779569080493, + 6.138910528757699, + 6.765429333993832, + 8.658939013288999, + 10.915835705620678, + 11.654609035713799, + 12.360768942098689, + 13.087581864576237, + 13.675894372860066, + 14.193882654548496, + 14.649215635163303, + 15.035190064363924, + 15.32529586592365, + 15.656365088908501, + 15.883427633880977, + 15.995694427026992, + 16.179069290951226 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.5553235639559264, + 2.851915779142888, + 3.2003724544342167, + 3.5256673583250495, + 4.016048934196492, + 4.7303960697276555, + 5.516316610225044, + 7.007867394592321, + 8.214725126751047, + 9.2313005899022, + 10.879978600880344, + 12.168730628579155, + 15.447897264272536, + 18.55765978776065, + 19.449629020763542, + 20.25387427176925, + 21.0404124287667, + 21.648325089555986, + 22.167666587967346, + 22.611849713614102, + 22.9806808045161, + 23.254898035786866, + 23.56571701843824, + 23.77782279758467, + 23.882199280437234, + 24.052235385654473 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 7.5, + 11.666666666666698 + ], + [ + 7.5, + 23.3333333333333 + ] + ], + "g": { + "5._192._0.08": [ + 2.835166960720879, + 3.1871321955021763, + 3.5219211566154387, + 4.037673395003338, + 4.681926936241187, + 5.842153103790585, + 7.702839014214701, + 9.755571959385927, + 13.226081840795217, + 15.620286864410794, + 17.41877474092838, + 20.01689368172398, + 21.850525273814647, + 25.969726674661292, + 29.42889461959045, + 30.369600975231247, + 31.205108381708975, + 32.011914421108145, + 32.63023568865273, + 33.15696771576153, + 33.60680080897036, + 33.98047368975826, + 34.2587114216045, + 34.57528201126229, + 34.79155372376095, + 34.897901048406894, + 35.07096171953132 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615408, + 1.4813847491413077, + 1.8198213217004344, + 2.1114679242247263, + 2.451192833143698, + 2.7884196223472686, + 3.0449919974516058, + 3.3879447727981766, + 3.6178004309384613, + 3.8053263532337063, + 4.119674460601333, + 4.385508699550363, + 5.2228803661924825, + 6.39482348755364, + 6.8376199683282035, + 7.299761192674103, + 7.819066416192497, + 8.278920162139174, + 8.715812322708459, + 9.130281559921087, + 9.507491987292344, + 9.807578355400388, + 10.170036257172521, + 10.430761137386138, + 10.563633440898554, + 10.785907811188576 + ], + "5._384._0.0875": [ + 3.492043109992415, + 4.03595094701054, + 4.723814128728142, + 5.974912681257754, + 7.645895149305873, + 10.522784559082238, + 14.45987149777272, + 18.09316023903547, + 23.236837335479528, + 26.340467672811638, + 28.515259695018717, + 31.480800287060315, + 33.484064700819424, + 37.81476157297041, + 41.36164278188219, + 42.31840110140284, + 43.17079968660562, + 43.995015605522305, + 44.62895927760343, + 45.16962663759632, + 45.63290343141323, + 46.01900178246487, + 46.306778159246235, + 46.63502513430439, + 46.859252288918775, + 46.969379681792766, + 47.148183048522114 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125405, + 2.162243131656477, + 2.5060808689637466, + 2.800134562206415, + 3.143279115476509, + 3.51240617554137, + 3.863412784021317, + 4.4913177785603535, + 4.9992446339918555, + 5.444424391679893, + 6.2248877379339085, + 6.896930783082895, + 8.917073844100175, + 11.299381696203385, + 12.075000007913399, + 12.814397315266337, + 13.573885247140069, + 14.187377856834724, + 14.726879674235825, + 15.200449566820632, + 15.601391267650452, + 15.902519399717042, + 16.245862692987703, + 16.48121650994105, + 16.597561831083205, + 16.787618274738126 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.555323563035406, + 2.8519144507350873, + 3.200223661964631, + 3.5242637317263545, + 4.0113191976945455, + 4.733609866561337, + 5.555415234069362, + 7.150900564240685, + 8.44250610439751, + 9.525368292155106, + 11.271757129714937, + 12.630984636541557, + 16.072558215686378, + 19.32242841346877, + 20.25278792468201, + 21.091037526517727, + 21.910278864927648, + 22.54299466288797, + 23.083361960891775, + 23.545315472721963, + 23.928762821108396, + 24.213819128325678, + 24.536876490672643, + 24.757337226983676, + 24.865833890730343, + 25.04262328630157 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 7.5, + 8.75 + ], + [ + 7.5, + 17.5 + ], + [ + 7.5, + 26.25 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351643703796903, + 3.1869268949218093, + 3.5203553000828394, + 4.035632209234826, + 4.697697200536918, + 5.926451905317148, + 7.908799844366956, + 10.083725577917932, + 13.736524554944438, + 16.246660146411728, + 18.12907383550448, + 20.844506405394167, + 22.75897059261554, + 27.054418064626965, + 30.657344251793205, + 31.63665863746843, + 32.50625438067732, + 33.345798822315885, + 33.98904715433488, + 34.536991753730184, + 35.00487845837196, + 35.39350950690269, + 35.68289020281972, + 36.01213811885565, + 36.23708412986984, + 36.34770465390815, + 36.527744963023814 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141308, + 1.8198213217004349, + 2.111467924224725, + 2.4511928331014317, + 2.7884190263257524, + 3.0449553382632883, + 3.3871547831879862, + 3.6157309845602406, + 3.802652193068878, + 4.119710617902083, + 4.392820251462485, + 5.27523768842361, + 6.523989357505093, + 6.994707692953451, + 7.484483941530732, + 8.033048717304094, + 8.517161661849112, + 8.975825767809063, + 9.409747033649518, + 9.803640676777311, + 10.116342420388051, + 10.493108094324915, + 10.763523018072704, + 10.901152082095088, + 11.131122031553744 + ], + "5._384._0.0875": [ + 3.4901255546394805, + 4.034797255647659, + 4.745193576357573, + 6.073093708967332, + 7.853437426441619, + 10.898450968064411, + 15.038796109765787, + 18.846240019386645, + 24.225226707008474, + 27.46725873856015, + 29.738007550529417, + 32.832847462090605, + 34.922726814894965, + 39.438360164230005, + 43.13502657418355, + 44.131993952004066, + 45.02013987970927, + 45.87884162609885, + 46.53923392979351, + 47.10245533529058, + 47.58503065256028, + 47.98719566588265, + 48.28695271981084, + 48.62886795534734, + 48.86244161374305, + 48.977164464847206, + 49.16344420497706 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125425, + 2.1622431316564765, + 2.5060808687628278, + 2.800134030422866, + 3.143192269379365, + 3.5111307353644503, + 3.860609001131126, + 4.499434025731459, + 5.031459537838914, + 5.503918450522629, + 6.336424305710959, + 7.0527472130753495, + 9.19253947755475, + 11.695309533835124, + 12.506696984072471, + 13.278681619780496, + 14.070408299377384, + 14.708908876512645, + 15.269863158891232, + 15.761702775285956, + 16.177702665595948, + 16.48995233295852, + 16.84572335635143, + 17.08949559895313, + 17.209987953271234, + 17.406842759884665 + ], + "5._96._0.075": [ + 2.2092718103274085, + 2.555323562194929, + 2.8519132377249674, + 3.2000875311587906, + 3.5230101355035424, + 4.00875625516151, + 4.749825680797558, + 5.6184628527421, + 7.319258503603456, + 8.691314816476849, + 9.83705080162265, + 11.67701423412214, + 13.10451064831868, + 16.70581051734762, + 20.09532268946245, + 21.06421380685831, + 21.936662973015014, + 22.788866015231612, + 23.446639743432993, + 24.008269495012613, + 24.488219545411013, + 24.88648661185218, + 25.182537581347592, + 25.518016083151505, + 25.746958013918004, + 25.85963684365112, + 26.04327801674626 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 7.5, + 7.0 + ], + [ + 7.5, + 14.0 + ], + [ + 7.5, + 21.0 + ], + [ + 7.5, + 28.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351619994628505, + 3.186752520833827, + 3.51955978757887, + 4.0403125061503875, + 4.728226436259568, + 6.028070344384858, + 8.129327484739141, + 10.423999316494138, + 14.256525300539296, + 16.881529041501757, + 18.84737420027856, + 21.67977211833264, + 23.675001088942718, + 28.14705108469578, + 31.89443699215745, + 32.91259737334496, + 33.816511602157576, + 34.68903212912509, + 35.35740294097356, + 35.92672920877177, + 36.41281910744506, + 36.816535865979674, + 37.11715437804924, + 37.4591879523753, + 37.69288142624205, + 37.807810590258725, + 37.99488640236864 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.195803175961541, + 1.4813847491413077, + 1.819821321700434, + 2.111467924224724, + 2.451192833062686, + 2.7884184801919725, + 3.0449223024893945, + 3.3866096819502696, + 3.6151015379905447, + 3.8034993059809996, + 4.127893642059773, + 4.41170665283013, + 5.34278195334716, + 6.666819991050252, + 7.1648636250259194, + 7.681611421095316, + 8.258756880148889, + 8.766596109333685, + 9.246614091190608, + 9.699645778186671, + 10.109963485787098, + 10.435114324774538, + 10.826043992076645, + 11.10608339428264, + 11.248450754742857, + 11.486116194696246 + ], + "5._384._0.0875": [ + 3.4893347039183387, + 4.041664358627259, + 4.7823279988568075, + 6.188522915276659, + 8.075663481798427, + 11.285397885038305, + 15.626400365074174, + 19.60668405926818, + 25.220221338353387, + 28.600562400997916, + 30.96732380944429, + 34.1916895425578, + 36.3684093148798, + 41.069673812588306, + 44.9168451786361, + 45.954232578712954, + 46.878320307322355, + 47.77170212541695, + 48.45869818843817, + 49.04460624087136, + 49.54659571103754, + 49.96492498451099, + 50.27673503452289, + 50.63240082051509, + 50.87537644587597, + 50.99472160783708, + 51.18852017986433 + ], + "5._48._0.075": [ + 1.5268463243731447, + 1.8679037053125414, + 2.1622431316564765, + 2.5060808685786515, + 2.8001335431276213, + 3.143115477862344, + 3.5103976454626267, + 3.86152803674152, + 4.5200167174579065, + 5.0796487092453795, + 5.580138125938582, + 6.463835055409945, + 7.223380344805953, + 9.480125533475501, + 12.101564986516044, + 12.948286242854616, + 13.752611895347739, + 14.576422097797664, + 15.239878043390412, + 15.822287263288457, + 16.33244223636534, + 16.763573773171487, + 17.087019351287903, + 17.45532860690535, + 17.70760824535113, + 17.832294870472605, + 18.036028084154434 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235614244936, + 2.8519121266348346, + 3.199969204120678, + 3.522275664380955, + 4.01170976222281, + 4.780683183580726, + 5.698762586674148, + 7.502747282680261, + 8.953518384334261, + 10.160935647012899, + 12.092998887177734, + 13.587933418579762, + 17.34794267542127, + 20.877029794569935, + 21.884563069237696, + 22.791368978301616, + 23.676730123828932, + 24.3597479162878, + 24.942813960268467, + 25.440925346169237, + 25.854159987093947, + 26.161318900674964, + 26.509351815007673, + 26.746866763887155, + 26.86377270604872, + 27.05433684216844 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 7.5, + 5.83333333333333 + ], + [ + 7.5, + 11.666666666666698 + ], + [ + 7.5, + 17.5 + ], + [ + 7.5, + 23.3333333333333 + ], + [ + 7.5, + 29.1666666666667 + ] + ], + "g": { + "5._192._0.08": [ + 2.835160935436525, + 3.1868513061797277, + 3.522109226552801, + 4.058916910217595, + 4.781510018290014, + 6.155106271693841, + 8.369821364191848, + 10.777765611330146, + 14.783755827914032, + 17.52151619899021, + 19.569902332327192, + 22.518771516729682, + 24.59476989483064, + 29.244190199866043, + 33.13724172826346, + 34.19463786458545, + 35.13323160485285, + 36.039095928542785, + 36.73288755324075, + 37.3238518922433, + 37.82836999898943, + 38.247363054570414, + 38.55936080688802, + 38.914340857540715, + 39.15689045809694, + 39.27618103620443, + 39.47037598309252 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224723, + 2.451192833029333, + 2.7884181637710057, + 3.0449223679137036, + 3.3875054399047, + 3.6194984330958744, + 3.8133650903874146, + 4.151324756046323, + 4.44957541723896, + 5.433025518385966, + 6.829452746302856, + 7.353087038054823, + 7.895090545108844, + 8.499132438536055, + 9.029485349594106, + 9.529953484634133, + 10.001468552655254, + 10.42783130739095, + 10.765247331993033, + 11.170271049178728, + 11.459983984264111, + 11.607145831300443, + 11.852645644486135 + ], + "5._384._0.0875": [ + 3.492882462594741, + 4.064071643976168, + 4.843212833654895, + 6.32915152161983, + 8.317905631947884, + 11.683968967575979, + 16.2195342970227, + 20.370183535226886, + 26.217212075483175, + 29.73588961660947, + 32.1988233415454, + 35.55313638311747, + 37.81707658312739, + 42.705041103641946, + 46.70377146823235, + 47.78188318594358, + 48.742189667894486, + 49.67052656439825, + 50.384344462428395, + 50.993125363250996, + 51.51469072610566, + 51.94932034356942, + 52.273284260047234, + 52.64281521074822, + 52.895270209720856, + 53.0192752733766, + 53.220652427162804 + ], + "5._48._0.075": [ + 1.5268463243731383, + 1.8679037053125402, + 2.1622431316564765, + 2.506080868423246, + 2.800133256061025, + 3.1431338877332955, + 3.5122567216395923, + 3.8719318571039025, + 4.560741645636349, + 5.151622754318021, + 5.6809417372059, + 6.61433603026378, + 7.414801619801712, + 9.782040579873577, + 12.517866139774474, + 13.39923687923432, + 14.235559945620091, + 15.09132515595599, + 15.779820080246257, + 16.383836811381123, + 16.912527418913104, + 17.359036532942465, + 17.69388892823754, + 18.075011271439244, + 18.336003635482506, + 18.464989692110045, + 18.675773570759805 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235607903275, + 2.8519115447450543, + 3.200015964541127, + 3.5240665650049254, + 4.026921835955737, + 4.834061171893603, + 5.80441961931526, + 7.707714731810569, + 9.232651186085834, + 10.498474652172181, + 12.518938752669758, + 14.079401170586774, + 17.996118836237155, + 21.664971577866634, + 22.71146059167286, + 23.652946116226406, + 24.57184116662423, + 25.28044455726192, + 25.885253615397488, + 26.401810236035267, + 26.83026195341878, + 27.14871708230486, + 27.509522379936534, + 27.75575944131046, + 27.87696539129626, + 28.07456811972431 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 5.0, + 5.83333333333333 + ], + [ + 5.0, + 11.666666666666698 + ], + [ + 5.0, + 17.5 + ], + [ + 5.0, + 23.3333333333333 + ], + [ + 5.0, + 29.1666666666667 + ], + [ + 10.0, + 5.83333333333333 + ], + [ + 10.0, + 11.666666666666698 + ], + [ + 10.0, + 17.5 + ], + [ + 10.0, + 23.3333333333333 + ], + [ + 10.0, + 29.1666666666667 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351828421003793, + 3.1889162105828097, + 3.5432029761105506, + 4.173814256695744, + 5.079863468737567, + 6.821966110237225, + 9.597280099184662, + 12.568702566345522, + 17.441272290397443, + 20.743120501947004, + 23.204619983878768, + 26.73636160750024, + 29.216375864155445, + 34.75282341509192, + 39.37421370838594, + 40.627785349245926, + 41.739794916704035, + 42.81240233037382, + 43.633324255738835, + 44.33250411354304, + 44.92918898432837, + 45.424588043262325, + 45.79350017203132, + 46.213234644600696, + 46.500078410032486, + 46.64118173646535, + 46.87097921802992 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615433, + 1.481384749141307, + 1.8198213217004335, + 2.1114679242247254, + 2.4511928333554143, + 2.788423074476667, + 3.045258609640092, + 3.3967357677809824, + 3.6521160768201897, + 3.8784615353155876, + 4.291850043776406, + 4.666596515689791, + 5.913680140693791, + 7.666489734854778, + 8.316755594023519, + 8.983539370669678, + 9.720523937890082, + 10.362104727667537, + 10.963688689323424, + 11.526497454533475, + 12.032002889564447, + 12.429850947427521, + 12.904207917937574, + 13.241405994968742, + 13.412085896363305, + 13.696048128981584 + ], + "5._384._0.0875": [ + 3.5203043126364992, + 4.199641488261283, + 5.180276551511109, + 7.063159175667152, + 9.554156579021802, + 13.697730673008198, + 19.206097189854173, + 24.20939740286298, + 31.224857088239265, + 35.435461302742674, + 38.3793966814095, + 42.38356816866399, + 45.08366557780701, + 50.90528727970205, + 55.66200606670417, + 56.943797599704446, + 58.08526082886659, + 59.188439362646484, + 60.0364231424926, + 60.75961671332702, + 61.37910526636609, + 61.89527451689839, + 62.28003535692553, + 62.7189236849628, + 63.01879585041029, + 63.16610971032365, + 63.40539315477605 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125422, + 2.162243131656476, + 2.5060808699803925, + 2.800137628654088, + 3.1439627653951674, + 3.5285770212296232, + 3.940392453278868, + 4.7934067372374285, + 5.543524481004366, + 6.216532827357565, + 7.39562486126754, + 8.398376961133817, + 11.313098663156692, + 14.61900303107054, + 15.672760076337998, + 16.6686263748455, + 17.683653180745566, + 18.49681549704643, + 19.208379263738365, + 19.82926891646122, + 20.35224080883121, + 20.74380666106344, + 21.188641326985408, + 21.492966680793185, + 21.643339916637252, + 21.889209777450304 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.555323567339309, + 2.8519216530492066, + 3.2013484569266835, + 3.539968849386015, + 4.122841827165889, + 5.132565637626151, + 6.365119690402001, + 8.759022256174644, + 10.652158337668455, + 12.208844087057757, + 14.670370202681072, + 16.558361949457574, + 21.25930158965087, + 25.627008313049572, + 26.86815124564095, + 27.982981926206673, + 29.06948206263259, + 29.905955175932835, + 30.619435261468418, + 31.228183520428797, + 31.73269730013102, + 32.10762015751907, + 32.53227883216182, + 32.82212120056376, + 32.964823832544326, + 33.19761226122462 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_9": { + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 40.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 40.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 40.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 7.5, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835170068758978, + 3.1873775111617735, + 3.5238121252744743, + 4.0422585708783485, + 4.675730820680686, + 5.77065147619262, + 7.491371116236748, + 9.412720332304541, + 12.735935862302583, + 15.073170165280814, + 16.849081080266494, + 19.441809801935015, + 21.28878484096337, + 25.477296367296375, + 29.023594053199165, + 29.9908510676327, + 30.849875646111105, + 31.679325209183204, + 32.31452804624852, + 32.85553410858817, + 33.317206591785755, + 33.700422664367814, + 33.98570002532905, + 34.31010694806243, + 34.53173723480634, + 34.64074942186788, + 34.81826230507517 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141308, + 1.8198213217004349, + 2.111467924224725, + 2.4511928331944173, + 2.788420337548957, + 3.0450359349564455, + 3.388887265004769, + 3.6203739248026743, + 3.80916293766458, + 4.1231924261003865, + 4.384749403075436, + 5.182315075188425, + 6.267306702248411, + 6.677950454559443, + 7.109256023311873, + 7.598187023558923, + 8.035438148543527, + 8.454732555595376, + 8.856319003755482, + 9.225346398883532, + 9.521540158935188, + 9.882975781097985, + 10.145854317842177, + 10.280949611421297, + 10.508933026568126 + ], + "5._384._0.0875": [ + 3.4943891946547767, + 4.040375148803086, + 4.713355159022485, + 5.8884290785499545, + 7.433033714365236, + 10.133811416753947, + 13.92272707043771, + 17.492906868789557, + 22.64123255655335, + 25.79011382829199, + 28.01094598610131, + 31.052687866945654, + 33.11405209481811, + 37.576807302255084, + 41.23259880543493, + 42.21844254758018, + 43.096046122624905, + 43.94406187201493, + 44.59565485629165, + 45.15124182582196, + 45.62697059861039, + 46.02319751741648, + 46.31848694156693, + 46.6551947793449, + 46.88521602195558, + 46.99821345937625, + 47.181770775001006 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125425, + 2.1622431316564765, + 2.506080869204849, + 2.8001352003275732, + 3.143383085419685, + 3.5139370364721705, + 3.8674457449912953, + 4.490348770656598, + 4.979091448011679, + 5.39803132274762, + 6.121284526961562, + 6.741718855627343, + 8.63060984685441, + 10.916299540197242, + 11.673462775983188, + 12.401616491244631, + 13.155527908273466, + 13.769315773229499, + 14.312355943243968, + 14.79178557190238, + 15.199690169177815, + 15.507169841387935, + 15.858847339428118, + 16.100587276798343, + 16.22033799539218, + 16.41633060681391 + ], + "5._96._0.075": [ + 2.209271810327409, + 2.5553235640439755, + 2.8519159062567163, + 3.200386489843664, + 3.5257671002439284, + 4.015842077954414, + 4.726992389396811, + 5.5059924918418, + 6.9823379831898436, + 8.182583948099538, + 9.200052282815651, + 10.863689625201761, + 12.175447027615055, + 15.555156837461194, + 18.813828533316457, + 19.757687681388532, + 20.611224940644668, + 21.448097501024353, + 22.095837301857333, + 22.6498175433471, + 23.12375085917942, + 23.517242597008536, + 23.809803129589323, + 24.141255823096397, + 24.367492748601983, + 24.478888750872862, + 24.660548083838783 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 40.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 40.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 40.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 7.5, + 13.333333333333302 + ], + [ + 7.5, + 26.6666666666667 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351674568418495, + 3.187170378460999, + 3.5221772684679373, + 4.037710229470168, + 4.677134931942406, + 5.816849124440087, + 7.647144896094423, + 9.688011228042658, + 13.189075689909362, + 15.638592346284796, + 17.495556871217573, + 20.20136659083157, + 22.126337523806093, + 26.48490220315927, + 30.16976794946685, + 31.17419174979153, + 32.0659830806098, + 32.92684691032232, + 33.585902981577206, + 34.14719508073352, + 34.6261006573842, + 35.02357236226425, + 35.319467112655275, + 35.65594603903937, + 35.885839047683675, + 35.99892438736497, + 36.1831006939669 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.195803175961541, + 1.4813847491413077, + 1.819821321700434, + 2.111467924224724, + 2.4511928331517994, + 2.788419736561618, + 3.044998971323878, + 3.388082734960557, + 3.6181161713503402, + 3.805652136418744, + 4.119185121750708, + 4.3830748124551295, + 5.207149516747439, + 6.358090459920626, + 6.795477952820412, + 7.254062252125338, + 7.772117309615391, + 8.233551951446408, + 8.674438084043137, + 9.09524618893855, + 9.48069339794033, + 9.789251251217742, + 10.164642497916756, + 10.436934700659997, + 10.576635333990497, + 10.812035919258262 + ], + "5._384._0.0875": [ + 3.492348467580125, + 4.03573852175107, + 4.717432112030226, + 5.945501737144653, + 7.589569830332809, + 10.45504345486116, + 14.441659272965673, + 18.180281967228144, + 23.556120617539925, + 26.839360839627677, + 29.15362332185621, + 32.32135887434499, + 34.467176103762974, + 39.10989246483906, + 42.91100324558082, + 43.93578873531772, + 44.847967229507205, + 45.729293658174896, + 46.40638775641261, + 46.983714091889645, + 47.47802382372292, + 47.889705619718406, + 48.19651912059655, + 48.546370595417756, + 48.78538209960519, + 48.90280183206316, + 49.09356100667274 + ], + "5._48._0.075": [ + 1.5268463243731447, + 1.8679037053125414, + 2.1622431316564765, + 2.506080869002256, + 2.800134664113307, + 3.1432955112839607, + 3.5126197351907824, + 3.8637541038517735, + 4.488655694791383, + 4.989665585414462, + 5.426591866413335, + 6.191816095457576, + 6.852785237760771, + 8.858929777780533, + 11.262713009000295, + 12.054827327017938, + 12.814538922942909, + 13.599548076469329, + 14.23734092395602, + 14.800934697659951, + 15.297802053872612, + 15.720021605936997, + 16.03804538215206, + 16.40145270873223, + 16.65111119181177, + 16.774759275443646, + 16.977148276371512 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235631964974, + 2.8519146831420232, + 3.200249194856068, + 3.524474466862927, + 4.011523500729819, + 4.728696900365399, + 5.536520964840269, + 7.10329974227939, + 8.381382015395435, + 9.460719547904393, + 11.216170949914419, + 12.59441364449244, + 16.128041186596064, + 19.520751791638137, + 20.501525217192537, + 21.387819819213718, + 22.256222205947395, + 22.92785798606695, + 23.502096303982146, + 23.99312967981386, + 24.400667153545175, + 24.703638191666467, + 25.046832864022274, + 25.28108601167103, + 25.396437810374614, + 25.584591786763507 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 40.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 40.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 40.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 7.5, + 10.0 + ], + [ + 7.5, + 20.0 + ], + [ + 7.5, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351650547090013, + 3.186980688212253, + 3.5206620106255917, + 4.033829088184277, + 4.683561765509022, + 5.879139536726041, + 7.82014974517546, + 9.974831533838346, + 13.647234878272519, + 16.206648965018854, + 18.143571906511152, + 20.961660451704184, + 22.96437431762188, + 27.49305121887755, + 31.316961094604427, + 32.358728060881596, + 33.28344670140875, + 34.175891792640684, + 34.8589390987797, + 35.44063629274549, + 35.93688024532917, + 36.34869719498268, + 36.655275868491366, + 37.00390250013427, + 37.242109380324194, + 37.35929271503263, + 37.550171776726486 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224723, + 2.45119283311259, + 2.7884191837128927, + 3.044965042377167, + 3.3873429258621885, + 3.6160126791803595, + 3.8024210593267798, + 4.116293045705996, + 4.384294263885441, + 5.243415440612806, + 6.463336132167189, + 6.926509108983703, + 7.41087644737771, + 7.956361112002564, + 8.440632905841708, + 8.902059329147692, + 9.341276483176573, + 9.742555961558399, + 10.063109673719058, + 10.452124850295881, + 10.73365829386581, + 10.877900417980577, + 11.120652933691101 + ], + "5._384._0.0875": [ + 3.4904530829056597, + 4.032036866096728, + 4.727823087853641, + 6.019904955105208, + 7.763764337133147, + 10.786133733385642, + 14.964245960963538, + 18.86859472828863, + 24.47054394459515, + 27.88791545472592, + 30.29556720892744, + 33.589392302366576, + 35.81979579345043, + 40.64290662933854, + 44.58979950712191, + 45.65366308656147, + 46.60054022752268, + 47.51530060081833, + 48.21799370478835, + 48.81714296779331, + 49.33010619186676, + 49.75730381127666, + 50.07568648615388, + 50.43873270780076, + 50.68676891667433, + 50.80862765298279, + 51.00661521762972 + ], + "5._48._0.075": [ + 1.5268463243731383, + 1.8679037053125402, + 2.1622431316564765, + 2.50608086881587, + 2.8001341708438034, + 3.1432152270501255, + 3.5114021222365284, + 3.8603577137807035, + 4.49013387322001, + 5.008675025659283, + 5.468027173637792, + 6.279198486602413, + 6.980651503854152, + 9.098274758738045, + 11.615293522365544, + 12.441305018122828, + 13.231913375476031, + 14.047543488763099, + 14.709118527102783, + 15.293138629818229, + 15.807402353544685, + 16.243951152512118, + 16.572552303321388, + 16.947757370806187, + 17.205398612886544, + 17.332980627122122, + 17.541830432425318 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235624168145, + 2.8519135580888157, + 3.2001234090452986, + 3.5232802487837804, + 4.007687556408312, + 4.735511544816177, + 5.580623013787889, + 7.241979813811867, + 8.594641848234287, + 9.732696528068825, + 11.575978539618248, + 13.01859012096629, + 16.703570371608045, + 20.229704181448316, + 21.247452929927437, + 22.166587327329665, + 23.066647515620385, + 23.762317991298506, + 24.35694349875292, + 24.86520339348142, + 25.286901879401633, + 25.600371770770437, + 25.955412541946007, + 26.197754233630853, + 26.317097490323526, + 26.511802938109902 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 40.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 40.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 40.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 7.5, + 8.0 + ], + [ + 7.5, + 16.0 + ], + [ + 7.5, + 24.0 + ], + [ + 7.5, + 32.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351628361920165, + 3.1868054047612775, + 3.5194425014509974, + 4.034261897292192, + 4.703739033702754, + 5.962696749340307, + 8.012452279518492, + 10.277287026586677, + 14.116867238724952, + 16.78444784290071, + 18.800498549233957, + 21.73025750801041, + 23.810570855532895, + 28.509807914283297, + 32.47374264436566, + 33.5531911166691, + 34.51116177674711, + 35.43552405123954, + 36.142839123326326, + 36.74518075066815, + 37.258974845541815, + 37.68531758028336, + 38.00271452292085, + 38.36364224445966, + 38.610266775123755, + 38.73159847959083, + 38.9292599082117 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961542, + 1.481384749141308, + 1.8198213217004335, + 2.1114679242247227, + 2.4511928330763975, + 2.788418673305684, + 3.0449336291103064, + 3.3866901560093967, + 3.6145325875840033, + 3.8010866047751666, + 4.1192418735890906, + 4.395378133176947, + 5.297121566405144, + 6.585749729313428, + 7.073941118427813, + 7.583106439033022, + 8.15497487837232, + 8.661260252110894, + 9.142578631343156, + 9.599687240049207, + 10.016417958497733, + 10.348731432460033, + 10.751176894102901, + 11.041873013268624, + 11.19063930568199, + 11.440758415374495 + ], + "5._384._0.0875": [ + 3.489015294355486, + 4.033799923843057, + 4.7535725796719746, + 6.115984976149539, + 7.957564628186365, + 11.13175083816206, + 15.49715402408615, + 19.56508940257129, + 25.391901402299652, + 28.943233074832417, + 31.44433027410756, + 34.86454820336213, + 37.179851490548515, + 42.1843330455541, + 46.27802444143149, + 47.38126478342864, + 48.36311503223758, + 49.311583455696905, + 50.04009433135148, + 50.66125359495393, + 51.1930333876155, + 51.63588443574116, + 51.9659383218816, + 52.34229539729108, + 52.59943468790607, + 52.72577043831398, + 52.931046630083586 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125418, + 2.162243131656476, + 2.5060808686438207, + 2.800133715449931, + 3.1431408472824436, + 3.5103848837870215, + 3.8589695707223757, + 4.502316316189344, + 5.044426579832137, + 5.528866252487682, + 6.386684279396166, + 7.127664828068744, + 9.352843754606786, + 11.980163939738642, + 12.839397213817902, + 13.66049356116856, + 14.506480523557771, + 15.191748367945461, + 15.796190411839255, + 16.327916491817277, + 16.778904523580557, + 17.1181945267422, + 17.505362640214173, + 17.77112023637636, + 17.902707355816727, + 18.11813855293153 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.5553235616971084, + 2.851912519275822, + 3.2000069431507296, + 3.5222766591494223, + 4.00717884832881, + 4.756057595204926, + 5.6449169431034765, + 7.400481360918528, + 8.825326242427044, + 10.020211237974125, + 11.948913659516657, + 13.45452133711772, + 17.289101293223975, + 20.948448061145086, + 22.00332344890346, + 22.955510053112036, + 23.887500142091284, + 24.607468338649515, + 25.22272711061862, + 25.74844819894794, + 26.184518828759842, + 26.50864946578353, + 26.875726761130682, + 27.126288531335994, + 27.24968780892263, + 27.45104723862411 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 40.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 40.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 40.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 7.5, + 6.66666666666667 + ], + [ + 7.5, + 13.333333333333302 + ], + [ + 7.5, + 20.0 + ], + [ + 7.5, + 26.6666666666667 + ], + [ + 7.5, + 33.3333333333333 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351608703692106, + 3.186699227023219, + 3.5195706334324983, + 4.0428515165949825, + 4.739022814022848, + 6.062900197725623, + 8.217647177053024, + 10.589110198266889, + 14.592630048489978, + 17.36720945052083, + 19.461867759628912, + 22.502967089863276, + 24.660845852728126, + 29.531078442917106, + 33.63581640286018, + 34.75320605563113, + 35.744674758232115, + 36.70120681571397, + 37.432996013151374, + 38.056160072552196, + 38.58766106158225, + 39.02866268864585, + 39.35697674381342, + 39.73031807347095, + 39.98543626141951, + 40.110953217135204, + 40.31545533691805 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.1958031759615417, + 1.4813847491413072, + 1.8198213217004335, + 2.111467924224724, + 2.451192833042894, + 2.788418211372714, + 3.044908942150018, + 3.3865272957199357, + 3.6153224268391226, + 3.8045135112106188, + 4.1315383636024565, + 4.418762114753414, + 5.36572204215577, + 6.720905699726244, + 7.23314149443984, + 7.766163271682532, + 8.363514289168922, + 8.891163647302605, + 9.39188808405859, + 9.866531680979211, + 10.298475557375351, + 10.642414456718418, + 11.058203750925554, + 11.358051100347659, + 11.511354199253836, + 11.768893761208867 + ], + "5._384._0.0875": [ + 3.489442702604155, + 4.044966269955405, + 4.7952026506571865, + 6.22851564203788, + 8.164308985636847, + 11.485684638774854, + 16.035199609815994, + 20.265304416573073, + 26.316247719757662, + 30.001493736329397, + 32.59611455488376, + 36.14298227076282, + 38.543432434983245, + 43.73001781852471, + 47.97125120774145, + 49.1140848117803, + 50.13110621786603, + 51.11347982200607, + 51.86796519859124, + 52.511268316193416, + 53.061981080057244, + 53.52058357356989, + 53.862381298976516, + 54.25213175418077, + 54.51842981720462, + 54.64926959883911, + 54.86187728004538 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.867903705312541, + 2.162243131656476, + 2.506080868484627, + 2.800133302759138, + 3.1430876470710682, + 3.510359115720163, + 3.862604804596787, + 4.527651430824921, + 5.0960360169514125, + 5.605957105761465, + 6.5091444889623915, + 7.288152531295865, + 9.61722585450025, + 12.35263827171699, + 13.24467693620639, + 14.096047390530359, + 14.972289192618048, + 15.681262246032029, + 16.306185915323166, + 16.855477748412905, + 17.321031252916068, + 17.671124590998836, + 18.070412601815704, + 18.344407814432635, + 18.480063218282826, + 18.702180940578312 + ], + "5._96._0.075": [ + 2.2092718103274023, + 2.5553235610315768, + 2.8519115868510534, + 3.1999295584307883, + 3.5222297418107766, + 4.013612835879308, + 4.791561035457416, + 5.725959980763115, + 7.572795593317915, + 9.067242487692669, + 10.317241476287421, + 12.329456483688327, + 13.897065334279638, + 17.88015396496326, + 21.672754689826593, + 22.764921418547605, + 23.750351167125825, + 24.71450218145654, + 25.45898331435926, + 26.09507322998872, + 26.63844125062079, + 27.089049134646775, + 27.42396617763477, + 27.803226553905763, + 28.062109011740667, + 28.189613552181733, + 28.397705036659318 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 40.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 40.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 40.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 7.5, + 5.71428571428571 + ], + [ + 7.5, + 11.4285714285714 + ], + [ + 7.5, + 17.1428571428571 + ], + [ + 7.5, + 22.857142857142897 + ], + [ + 7.5, + 28.571428571428598 + ], + [ + 7.5, + 34.2857142857143 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351622192136787, + 3.186932832966185, + 3.522598510413625, + 4.060630844173668, + 4.78707305850437, + 6.176233905229876, + 8.4337215528789, + 10.909258998978235, + 15.074035521291732, + 17.954675332565337, + 20.12757073411259, + 23.279856747335863, + 25.515360883190855, + 30.55713876154386, + 34.80345333481621, + 35.95903050301487, + 36.984227970654324, + 37.97316457266292, + 38.72961846024047, + 39.37376883596574, + 39.92312065514981, + 40.37890318117258, + 40.718224877090464, + 41.10408281393436, + 41.367764187099404, + 41.49750010986978, + 41.708896209260395 + ], + "5._24._0.075": [ + 0.8740059532267972, + 1.195803175961542, + 1.4813847491413068, + 1.819821321700434, + 2.1114679242247245, + 2.4511928330520014, + 2.7884184669104846, + 3.044938868026206, + 3.387771044164756, + 3.620144366848768, + 3.814413950599497, + 4.153437257219755, + 4.453244668649678, + 5.446327521771922, + 6.866807616815766, + 7.40246210978401, + 7.958680067034483, + 8.580834307512795, + 9.12932957733705, + 9.649067061244844, + 10.140960115305258, + 10.587935610552536, + 10.943408493737541, + 11.372501767263921, + 11.681516511697788, + 11.839379612182292, + 12.104403974881272 + ], + "5._384._0.0875": [ + 3.493480598044306, + 4.066101545515, + 4.849906976918042, + 6.354011496645642, + 8.381904152780276, + 11.84702393823923, + 16.577999254340174, + 20.969175006110486, + 27.243849790767488, + 31.063088914469233, + 33.75136996211129, + 37.425188270968725, + 39.911041873201945, + 45.280441342383256, + 49.66991204062836, + 50.852539394200306, + 51.90491508641422, + 52.92137588883455, + 53.70198039652418, + 54.36755085245823, + 54.93730398349374, + 55.41174837977269, + 55.76535698281573, + 56.1685770307134, + 56.4440853028881, + 56.579454066780194, + 56.7994328131703 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.867903705312544, + 2.162243131656476, + 2.506080868530667, + 2.800133527041056, + 3.143170941585358, + 3.5126622119805915, + 3.8730350961646813, + 4.564689424835949, + 5.160454446162293, + 5.695941691651459, + 6.643759149409968, + 7.459924916422396, + 9.890329063427478, + 12.73205660235987, + 13.6565795317767, + 14.538085061859043, + 15.444545896789434, + 16.177280109090184, + 16.822778216280742, + 17.38976001415425, + 17.870015269559755, + 18.231029129426517, + 18.64259057267688, + 18.9249383559563, + 19.064720990133967, + 19.293622065973796 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235612379916, + 2.8519121549781774, + 3.200072064157095, + 3.524466617348279, + 4.028375983183299, + 4.839673596504613, + 5.820225506834013, + 7.7566138213001805, + 9.318940853471391, + 10.62275740519715, + 12.716919352268075, + 14.345706071182125, + 18.476505704873542, + 22.40258058253732, + 23.532225440184828, + 24.55110318284237, + 25.547649042672642, + 26.316852624373787, + 26.97396247307402, + 27.535151688865373, + 28.000449905207752, + 28.346269066987436, + 28.73784666857547, + 29.005141485306236, + 29.136796021752044, + 29.351690313884696 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 40.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 40.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 40.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 40.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 5.0, + 5.71428571428571 + ], + [ + 5.0, + 11.4285714285714 + ], + [ + 5.0, + 17.1428571428571 + ], + [ + 5.0, + 22.857142857142897 + ], + [ + 5.0, + 28.571428571428598 + ], + [ + 5.0, + 34.2857142857143 + ], + [ + 10.0, + 5.71428571428571 + ], + [ + 10.0, + 11.4285714285714 + ], + [ + 10.0, + 17.1428571428571 + ], + [ + 10.0, + 22.857142857142897 + ], + [ + 10.0, + 28.571428571428598 + ], + [ + 10.0, + 34.2857142857143 + ] + ], + "g": { + "5._192._0.08": [ + 2.835184813624687, + 3.189131165423414, + 3.545356744252871, + 4.18473873462797, + 5.108456211113644, + 6.893791683303347, + 9.758219103033362, + 12.850630984813641, + 17.97789144229745, + 21.49380098569, + 24.135828279814266, + 27.955133356181317, + 30.656283881555463, + 36.7270082390543, + 41.82242652714847, + 43.20702741309369, + 44.434518586634255, + 45.61781145874865, + 46.52220486570194, + 47.29223465079107, + 47.94866207639994, + 48.49310823643331, + 48.898459661380734, + 49.35940021520625, + 49.67444780546822, + 49.82949041418244, + 50.08223708551247 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615428, + 1.4813847491413072, + 1.8198213217004329, + 2.1114679242247245, + 2.4511928333766897, + 2.788423490965625, + 3.045292207209134, + 3.397695786468975, + 3.6553847657643024, + 3.8847837583808427, + 4.3051460645099295, + 4.687217908266763, + 5.963532280485104, + 7.768767437239841, + 8.44201458732713, + 9.134433045173473, + 9.902404263076468, + 10.5735678475288, + 11.205370333295177, + 11.798961426555039, + 12.334546995377195, + 12.757991236619628, + 13.265431282040101, + 13.628370661515381, + 13.81305120099802, + 14.122144391809702 + ], + "5._384._0.0875": [ + 3.523070359780667, + 4.212454479636687, + 5.212842058518179, + 7.14390425862233, + 9.715792772493083, + 14.033716908630918, + 19.849435440958963, + 25.20630756506176, + 32.823441142027434, + 37.44662774652155, + 40.696828194287484, + 45.13222952641827, + 48.13039805060863, + 54.59644659415324, + 59.87518606485176, + 61.29653606638462, + 62.561010520291184, + 63.78197172313699, + 64.7192768822837, + 65.51843938426437, + 66.20242574428649, + 66.77191490416882, + 67.19638325069776, + 67.6804145369154, + 68.01117872373422, + 68.17371823650619, + 68.43791707853396 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564783, + 2.506080870084627, + 2.8001379975210337, + 3.1440476392061356, + 3.530254974914842, + 3.947034395102561, + 4.8154773236152, + 5.582289147498631, + 6.272233886256382, + 7.484880999877681, + 8.52004989295708, + 11.548648207561097, + 15.022744221627013, + 16.140731169064964, + 17.20212719651548, + 18.28899828963052, + 19.163549814235957, + 19.931821629541396, + 20.604333790257343, + 21.172279845984082, + 21.598428873913814, + 22.083208632211093, + 22.415399778596573, + 22.579817309759886, + 22.849224368826295 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235677904254, + 2.851922534655338, + 3.201486238754876, + 3.5416057412547253, + 4.132019664762227, + 5.161204525149512, + 6.423520531121944, + 8.88989838269673, + 10.853437475052077, + 12.476521430060279, + 15.05877837313237, + 17.053126410372897, + 22.06898584221572, + 26.795288696780133, + 28.149605034722764, + 29.369011765355335, + 30.559764827139134, + 31.477175492469204, + 32.26029932081243, + 32.92833033015455, + 33.48170607380953, + 33.89289431861205, + 34.358333149481126, + 34.676074758107255, + 34.83261540112632, + 35.08830304533989 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_5": { + "2_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 20.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 6.66666666666667, + 10.0 + ], + [ + 13.333333333333302, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351657345873336, + 3.1870727503912026, + 3.521982753412592, + 4.041616148900451, + 4.698783026804452, + 5.890635106272722, + 7.779720170992983, + 9.821960521659463, + 13.172632884556535, + 15.410821505126743, + 17.056647286823818, + 19.388652974814157, + 21.00597103616414, + 24.58239839598278, + 27.550085960301686, + 28.35414852245792, + 29.06913223676383, + 29.760255583720905, + 30.291171205589407, + 30.743704416712983, + 31.13092532598734, + 31.453180164572377, + 31.69323526564007, + 31.966665436253198, + 32.15343180781915, + 32.245205992003605, + 32.394309797112435 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615422, + 1.4813847491413075, + 1.8198213217004355, + 2.1114679242247285, + 2.4511928331221116, + 2.788419330311878, + 3.044977358319714, + 3.387859235933277, + 3.618179497618861, + 3.8069220513831072, + 4.125342464110532, + 4.396514215897897, + 5.256536284538244, + 6.4512208912391245, + 6.8971655732656565, + 7.358728455273069, + 7.872203729989412, + 8.32150758574725, + 8.743227310368821, + 9.137900479273588, + 9.491870459162875, + 9.7694545554817, + 10.099326763949266, + 10.33232724099065, + 10.449445378462618, + 10.642653797339428 + ], + "5._384._0.0875": [ + 3.49224347652155, + 4.041064869164032, + 4.743880756840067, + 6.0285925882382285, + 7.723922462926962, + 10.575655462543793, + 14.344867027567286, + 17.695549029483953, + 22.27531483915372, + 24.968505027524774, + 26.833823306050036, + 29.359948670221417, + 31.05828842651195, + 34.727516438580835, + 37.737376043348306, + 38.55038437835451, + 39.276090691001244, + 39.97894975440218, + 40.520804489469505, + 40.9831621268072, + 41.37994551166122, + 41.711077130110226, + 41.95793321393818, + 42.23968310338636, + 42.432103175704185, + 42.526557691086424, + 42.67972854331501 + ], + "5._48._0.075": [ + 1.52684632437314, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808688612117, + 2.8001343010558144, + 3.143248368886363, + 3.512391469978415, + 3.8651024449745655, + 4.503233267093543, + 5.024491298271462, + 5.482215083703422, + 6.281166546398598, + 6.9633940187189936, + 8.977769977258447, + 11.278164715643596, + 12.006469733688716, + 12.691448374961837, + 13.385456271975523, + 13.938978346204152, + 14.420601678661834, + 14.839623337883081, + 15.191848060451923, + 15.454973542986501, + 15.753906491843123, + 15.95806202743579, + 16.058647974417166, + 16.222367400052594 + ], + "5._96._0.075": [ + 2.2092718103274005, + 2.555323562607016, + 2.851913864540251, + 3.2001796360299273, + 3.524238363964395, + 4.014280569245819, + 4.750596731762358, + 5.59517455902985, + 7.2216305844556095, + 8.517894758551254, + 9.589979630416423, + 11.28927876086917, + 12.586607344391009, + 15.779007151483587, + 18.682166155666557, + 19.496605512250042, + 20.226212923846926, + 20.9360234027032, + 21.483074011761314, + 21.9494898424667, + 22.348247331075147, + 22.67947101298694, + 22.92574714971439, + 23.205194307088473, + 23.39583116956993, + 23.489547933860138, + 23.641948697026425 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 20.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 6.66666666666667, + 6.66666666666667 + ], + [ + 6.66666666666667, + 13.333333333333302 + ], + [ + 13.333333333333302, + 6.66666666666667 + ], + [ + 13.333333333333302, + 13.333333333333302 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351599997534733, + 3.186703336446965, + 3.521092481164318, + 4.059313020933388, + 4.788189577342276, + 6.162781272014343, + 8.345292851315753, + 10.676504474975355, + 14.448865581245432, + 16.948658904085182, + 18.78097280584794, + 21.370066546020315, + 23.1621857129937, + 27.115991149876702, + 30.389797743506584, + 31.276027205787074, + 32.06375151339001, + 32.82490670172234, + 33.409367133998146, + 33.90751120296878, + 34.33366619065526, + 34.6882646773629, + 34.95242464297974, + 35.25331235310287, + 35.45885855171617, + 35.55987457149555, + 35.724036263396904 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615422, + 1.4813847491413077, + 1.8198213217004353, + 2.1114679242247267, + 2.451192833027056, + 2.788417998915073, + 3.044901043274957, + 3.386927783383287, + 3.618364577070543, + 3.8125545270972716, + 4.152943341827983, + 4.453914846908808, + 5.440712112104673, + 6.82229901014234, + 7.335017140753599, + 7.861777053274915, + 8.443663952615292, + 8.949105686227796, + 9.420845535863021, + 9.859780481739303, + 10.25135344331256, + 10.557132964254265, + 10.918743496257653, + 11.173083203853237, + 11.300626542914664, + 11.510637024286607 + ], + "5._384._0.0875": [ + 3.4917159668172433, + 4.065158966476996, + 4.850863023721858, + 6.335415762954903, + 8.293980115111522, + 11.541816897809717, + 15.778013462479818, + 19.517384443650464, + 24.60822768352863, + 27.595731211173327, + 29.6631553485588, + 32.460410604178605, + 34.33984147872651, + 38.396587146913, + 41.72164747583962, + 42.61949576464608, + 43.420811065889666, + 44.19677595522341, + 44.79487349744912, + 45.30522022719408, + 45.74314619654415, + 46.10858823737837, + 46.38103286749354, + 46.69199414343684, + 46.904381302228074, + 47.00864588233013, + 47.177750223676 + ], + "5._48._0.075": [ + 1.5268463243731432, + 1.8679037053125407, + 2.1622431316564765, + 2.506080868409371, + 2.800133112547571, + 3.1430767931454193, + 3.511386848717033, + 3.8710890578512656, + 4.565514537506568, + 5.159967424672273, + 5.68948199888322, + 6.616540287691154, + 7.40529923467462, + 9.702550418181303, + 12.281642651222278, + 13.090793778877762, + 13.84910693801245, + 14.615091200054472, + 15.224108064381122, + 15.753072591918855, + 16.212309739505855, + 16.597653774799877, + 16.88523289321435, + 17.211554092525482, + 17.43427872425332, + 17.543998539184912, + 17.722636910383695 + ], + "5._96._0.075": [ + 2.209271810327402, + 2.5553235607170253, + 2.85191116392723, + 3.199921625014676, + 3.523204807642179, + 4.0267419184683275, + 4.840760204163394, + 5.813332336326741, + 7.696094684224542, + 9.18388822428947, + 10.403936138091717, + 12.320796371321462, + 13.774670680800304, + 17.326878347330336, + 20.536479425646146, + 21.434414637449454, + 22.237929897764705, + 23.018880741361954, + 23.6201138371665, + 24.13252122891918, + 24.570317147279777, + 24.933785086454822, + 25.204009676221734, + 25.510574922835644, + 25.719726015521935, + 25.82255982870878, + 25.989848857401267 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 20.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 5.0, + 6.66666666666667 + ], + [ + 5.0, + 13.333333333333302 + ], + [ + 10.0, + 6.66666666666667 + ], + [ + 10.0, + 13.333333333333302 + ], + [ + 15.0, + 6.66666666666667 + ], + [ + 15.0, + 13.333333333333302 + ] + ], + "g": { + "5._192._0.08": [ + 2.83517506150512, + 3.188084149750735, + 3.5338694903630508, + 4.120772613488644, + 4.940732472986014, + 6.501653001612625, + 8.967822182231144, + 11.576289358494135, + 15.75821977880861, + 18.51532133869308, + 20.53234294951659, + 23.37750009470285, + 25.344386097329892, + 29.677129129947204, + 33.259556860091344, + 34.228765241011274, + 35.089999748903516, + 35.92197371361982, + 36.56062040849432, + 37.1049279637809, + 37.57050377458143, + 37.957859665667755, + 38.2464317093403, + 38.575127370639464, + 38.79968971819924, + 38.91006194764505, + 39.089461828297104 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615408, + 1.4813847491413077, + 1.8198213217004344, + 2.1114679242247263, + 2.451192833246048, + 2.7884213638417794, + 3.0451313548122245, + 3.392771863217782, + 3.6374374468885233, + 3.8486409128162546, + 4.226783721492134, + 4.565705611453768, + 5.685367531266004, + 7.248567974247921, + 7.825040743687937, + 8.413788118213947, + 9.060790768565193, + 9.619817451469801, + 10.139603298409016, + 10.621299767718048, + 11.049440288985398, + 11.38281323765505, + 11.775722402614818, + 12.051266106250484, + 12.189224707269556, + 12.416120146465303 + ], + "5._384._0.0875": [ + 3.508081047714071, + 4.136962196301595, + 5.022763777100336, + 6.708325201748374, + 8.9208025775383, + 12.548995540472646, + 17.240228493141537, + 21.36326179949014, + 26.962884668883728, + 30.24464507947175, + 32.51448735958012, + 35.58374201073144, + 37.64505804313861, + 42.09162213587395, + 45.73419473145637, + 46.717553353599484, + 47.59509352438236, + 48.44477782155921, + 49.099606913169595, + 49.65836013233257, + 50.13779217307387, + 50.5378511421908, + 50.83611132097161, + 51.176542193269555, + 51.409070344221014, + 51.52322914254473, + 51.70840002675176 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125405, + 2.162243131656477, + 2.506080869457111, + 2.8001361076527793, + 3.1436398137531314, + 3.521417433383787, + 3.909028593705896, + 4.68520962828333, + 5.359520678387415, + 5.962020550344118, + 7.014321044335631, + 7.905674773759608, + 10.47384294060144, + 13.32311760057119, + 14.211490816317712, + 15.042301286740182, + 15.879841207709852, + 16.54434098830463, + 17.12080804735399, + 17.62055836379206, + 18.039386895778044, + 18.351747993902713, + 18.705903941573403, + 18.947538053129197, + 19.06656757736786, + 19.260415803113826 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235651331954, + 2.851918102641616, + 3.2008204122301893, + 3.533004064889046, + 4.078659570784809, + 4.993323190615415, + 6.098361640004133, + 8.230294504830068, + 9.901681198813938, + 11.263769223904522, + 13.39115650270654, + 14.99784295951474, + 18.905889714403816, + 22.422187708341607, + 23.404163442439863, + 24.282226237000863, + 25.13506821344426, + 25.791165816943135, + 26.35018332266246, + 26.827592120490102, + 27.22381188129518, + 27.518369693593417, + 27.85250171321998, + 28.080474244346835, + 28.192574970025092, + 28.374989221504144 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 20.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 10.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351690633539097, + 3.187297729317165, + 3.5231036913448337, + 4.03829515196311, + 4.668769284467644, + 5.777440926784886, + 7.516980560016233, + 9.408208653929846, + 12.541448581917443, + 14.646742465310703, + 16.198463432247014, + 18.401364382030078, + 19.931126947261973, + 23.3189624425537, + 26.133972642596465, + 26.897088922535158, + 27.575829825847972, + 28.232069929758374, + 28.736322872950243, + 29.166145539318638, + 29.533983455420717, + 29.840138163659294, + 30.06819405504583, + 30.32795615627281, + 30.50537347615724, + 30.592546488854328, + 30.734152414556835 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615428, + 1.481384749141308, + 1.8198213217004362, + 2.1114679242247285, + 2.4511928331780077, + 2.7884201061707126, + 3.0450217246869804, + 3.388565179481605, + 3.6192868993770895, + 3.8069539331658686, + 4.118538407429997, + 4.378744130427089, + 5.183253508727977, + 6.284020672155531, + 6.695014469215383, + 7.122157330148088, + 7.599498561101806, + 8.01923069211515, + 8.414766798479853, + 8.786413185216366, + 9.120942300420413, + 9.384027154875726, + 9.697662373564988, + 9.919793749932527, + 10.031619073169086, + 10.21632971726765 + ], + "5._384._0.0875": [ + 3.4934572709321556, + 4.035691721022439, + 4.706624305572615, + 5.8985057336757425, + 7.459178539186731, + 10.104211957553916, + 13.633796669906554, + 16.787891397377003, + 21.111139215244012, + 23.65703513151427, + 25.421283303472304, + 27.81192564136665, + 29.419825079624587, + 32.895639191448346, + 35.74827181162997, + 36.518970300658175, + 37.20697324196509, + 37.87338036975562, + 38.38719415998495, + 38.825625902051655, + 39.20189768001081, + 39.515924303129665, + 39.75002320078204, + 40.017209438135325, + 40.19967417152731, + 40.28923726732824, + 40.43446284012706 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125453, + 2.1622431316564774, + 2.506080869126845, + 2.800134993885049, + 3.143349426668005, + 3.513384089652635, + 3.865111868446782, + 4.483801482406906, + 4.974525454681382, + 5.399366104195478, + 6.135266526023098, + 6.762751058745606, + 8.628872573609703, + 10.78479744712892, + 11.471690880303774, + 12.119406999486857, + 12.777009627174387, + 13.302587787154682, + 13.760422830412521, + 14.15928564800977, + 14.494942818422327, + 14.745850943130364, + 15.031122437439242, + 15.226028694352411, + 15.322068749754699, + 15.478367110702123 + ], + "5._96._0.075": [ + 2.2092718103274023, + 2.5553235637176743, + 2.851915435389374, + 3.200333692339888, + 3.5252272673310836, + 4.012534865719168, + 4.720170488536042, + 5.5076987699385676, + 7.005583313020637, + 8.201820604148494, + 9.196497756966165, + 10.782952382200207, + 11.99995619143155, + 15.010254291210055, + 17.75981255164101, + 18.532566088636568, + 19.22529556804791, + 19.899642099253548, + 20.41971051192545, + 20.863231028104984, + 21.24256674314214, + 21.55775696138165, + 21.79212690758522, + 22.058095593622557, + 22.239531227056123, + 22.328716918121458, + 22.47371715520643 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_6": { + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 10.0, + 12.5 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351694687039664, + 3.1873285330833565, + 3.523298993086346, + 4.037857676485525, + 4.660152860286639, + 5.732696330391313, + 7.409457133000339, + 9.265895914357825, + 12.440911662681614, + 14.634405342539148, + 16.27554092604608, + 18.632836346287444, + 20.284742330159077, + 23.967054678904983, + 27.037454103635262, + 27.87029057978814, + 28.610076485807504, + 29.32461972855016, + 29.872751794833064, + 30.339747248690742, + 30.738888785314757, + 31.070710011349497, + 31.317811729766714, + 31.59907674982727, + 31.79119147157856, + 31.885620910577956, + 32.0391537316673 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141308, + 1.8198213217004335, + 2.1114679242247276, + 2.4511928331846295, + 2.788420199512683, + 3.0450274046000447, + 3.3886737897263868, + 3.619514079008248, + 3.807087969227413, + 4.117252607445643, + 4.37419125638628, + 5.1557152742019365, + 6.215185245063147, + 6.613361489935756, + 7.03082951261164, + 7.502741238481832, + 7.923191525096671, + 8.324419001941129, + 8.706259524630008, + 9.054232036724946, + 9.330827071126809, + 9.664090030657572, + 9.902487743423018, + 10.023297819970265, + 10.224014902768637 + ], + "5._384._0.0875": [ + 3.493686223247902, + 4.034818041917828, + 4.695286202222272, + 5.846087347940122, + 7.350533817943262, + 9.957373874316726, + 13.561901915019792, + 16.879857713377454, + 21.526317333419982, + 24.29775225470112, + 26.22766737168768, + 28.848869605873418, + 30.614289856188755, + 34.426815302652344, + 37.54963436398097, + 38.39233664537438, + 39.143736056848844, + 39.870818263892545, + 40.43065013894707, + 40.90820627045633, + 41.31769476517519, + 41.65917905272685, + 41.913719788986214, + 42.2041361472295, + 42.40249282692727, + 42.49988688072049, + 42.65792001963899 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125427, + 2.1622431316564756, + 2.5060808691583216, + 2.800135077169685, + 3.1433627358474254, + 3.513549073781385, + 3.8652513396076986, + 4.478815998844064, + 4.957787900494696, + 5.368218795608704, + 6.075463003253535, + 6.679656075508203, + 8.507475821922554, + 10.693440444607246, + 11.40730181597588, + 12.087380841799945, + 12.784171529912118, + 13.34532620076285, + 13.83678847181513, + 14.266692979223741, + 14.62946172071643, + 14.901060493736342, + 15.2099983115044, + 15.421225440801702, + 15.525415808145468, + 15.69518734786503 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.555323563849339, + 2.8519156253082074, + 3.2003543616083143, + 3.5253903945670104, + 4.012397626775901, + 4.711352088249862, + 5.474621802989541, + 6.915973253506186, + 8.079106374554685, + 9.060767733700345, + 10.65623437022798, + 11.903090610203705, + 15.058364134120605, + 18.007098130364255, + 18.843907706887975, + 19.595412325205288, + 20.32792187252642, + 20.892840825675552, + 21.37462206884474, + 21.78633336789877, + 22.12806030989264, + 22.38203021654616, + 22.669924129937844, + 22.866292937140873, + 22.96285951455357, + 23.120015210603356 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 10.0, + 8.33333333333333 + ], + [ + 10.0, + 16.6666666666667 + ] + ], + "g": { + "5._192._0.08": [ + 2.835166363979474, + 3.1870797355335543, + 3.521207804448792, + 4.031023724097261, + 4.66035672819702, + 5.790224605008705, + 7.598409205700306, + 9.597236292286109, + 12.981230229358184, + 15.302780686315655, + 17.034564583313347, + 19.51607669820588, + 21.25229916764419, + 25.115784551405202, + 28.33217274109507, + 29.204041108347607, + 29.97828437221068, + 30.72590894448695, + 31.29923719473004, + 31.787677116349453, + 32.20507967837409, + 32.552040061083986, + 32.81042244977902, + 33.10452802366989, + 33.30542932472885, + 33.40418655591054, + 33.564784912767045 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615422, + 1.4813847491413077, + 1.8198213217004353, + 2.1114679242247267, + 2.4511928331339763, + 2.788419485207269, + 3.0449833824823838, + 3.387678467870019, + 3.6165293696485006, + 3.802135968097245, + 4.110879395069579, + 4.370514564916897, + 5.186377982541512, + 6.325697587106456, + 6.7558604961388795, + 7.205890450029461, + 7.712542774210724, + 8.161714570358729, + 8.58840187867678, + 8.99263343303595, + 9.359453342140323, + 9.650035760513893, + 9.998833287487546, + 10.24753641975879, + 10.373333886194557, + 10.582004391903176 + ], + "5._384._0.0875": [ + 3.4910375189425884, + 4.0276765763561135, + 4.699034057073624, + 5.917059869318452, + 7.540613081317836, + 10.343234104028417, + 14.178413457963051, + 17.68610064088216, + 22.58067394019115, + 25.495151398306493, + 27.52340514843496, + 30.276303979095594, + 32.129564230794784, + 36.12916300940241, + 39.40331666619901, + 40.286641334826356, + 41.07418044509514, + 41.836146115358005, + 42.42275504876172, + 42.92315068919159, + 43.35219461073805, + 43.70996915708998, + 43.9766593051476, + 44.28094126531311, + 44.48877959335471, + 44.59083491707867, + 44.75644849821898 + ], + "5._48._0.075": [ + 1.5268463243731432, + 1.8679037053125407, + 2.1622431316564765, + 2.5060808689175333, + 2.800134439853044, + 3.14325816374314, + 3.5118840447907793, + 3.8600422314387015, + 4.475055792744343, + 4.970093764721541, + 5.40356386196328, + 6.162385020553538, + 6.815144066054368, + 8.782497928050793, + 11.107585115556367, + 11.86146121473633, + 12.57724402415079, + 13.308773197959257, + 13.896416084401107, + 14.410345761179858, + 14.859173414637072, + 15.237396561331241, + 15.52034264645664, + 15.841888384523926, + 16.061617541551367, + 16.169982972022257, + 16.34658154347361 + ], + "5._96._0.075": [ + 2.209271810327402, + 2.5553235628420943, + 2.851914171525622, + 3.200190011153421, + 3.523759866853767, + 4.00606459901289, + 4.7119862551821985, + 5.512518864194617, + 7.06335675746193, + 8.31925133503675, + 9.374626935519023, + 11.078615700313033, + 12.40287274271961, + 15.732588316775649, + 18.827871475181475, + 19.704325161366974, + 20.490817548066733, + 21.25687953771731, + 21.847202509905376, + 22.35050070011437, + 22.780393210982588, + 23.137077096178274, + 23.402140514602785, + 23.702566992407522, + 23.90749001022024, + 24.008272579374843, + 24.172331237160424 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 6.66666666666667, + 8.33333333333333 + ], + [ + 6.66666666666667, + 16.6666666666667 + ], + [ + 13.333333333333302, + 8.33333333333333 + ], + [ + 13.333333333333302, + 16.6666666666667 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351610872837996, + 3.1867164372085854, + 3.5195396635007343, + 4.039121237522495, + 4.719098832026887, + 5.994828174374967, + 8.057792157620788, + 10.320684331786696, + 14.099772162137233, + 16.669682886388795, + 18.579667333275758, + 21.30798441325289, + 23.212767703199937, + 27.440763751855673, + 30.95252613316534, + 31.90355953656099, + 32.74774445275871, + 33.56258040317286, + 34.18715547110399, + 34.719219685396745, + 35.173791636828525, + 35.55158021751866, + 35.83293214745588, + 36.15318402319302, + 36.371972374351635, + 36.47953724771939, + 36.65450667756401 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615408, + 1.4813847491413077, + 1.8198213217004344, + 2.1114679242247263, + 2.45119283304649, + 2.788418261235872, + 3.0449120982764595, + 3.386564555585336, + 3.615084239461561, + 3.803231177203992, + 4.1257310234075995, + 4.406279557040129, + 5.3210041209108105, + 6.6201125898541955, + 7.110226598789162, + 7.620005152898807, + 8.190285469834162, + 8.692304615247705, + 9.166399506219403, + 9.612791724989746, + 10.015535085310253, + 10.33308818802776, + 10.712216157370767, + 10.981261105525986, + 11.116980771606247, + 11.34161356304978 + ], + "5._384._0.0875": [ + 3.489316636454216, + 4.039872206862295, + 4.7710140343775365, + 6.150578370242928, + 8.003497245570976, + 11.169202370278374, + 15.443653173786542, + 19.322160909984923, + 24.70961622929955, + 27.910205628134534, + 30.135596632706385, + 33.1531035094959, + 35.18313044450232, + 39.559958543149406, + 43.139854028288184, + 44.10531303656802, + 44.965945826230076, + 45.79848906417702, + 46.43929723745629, + 46.985922804249604, + 47.45455707270575, + 47.84531625131873, + 48.13660456885794, + 48.46895809951328, + 48.69598912415713, + 48.80747810208587, + 48.988428483325436 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125405, + 2.162243131656477, + 2.506080868501707, + 2.800133347256768, + 3.1430951606826176, + 3.510368166180444, + 3.8612401353457133, + 4.514067995014405, + 5.064578162279747, + 5.5554908461283015, + 6.421892604254496, + 7.167766514243787, + 9.3928358339436, + 11.97985092364917, + 12.810529229234543, + 13.596017524220638, + 14.396066625098053, + 15.036499536090906, + 15.595472283739372, + 16.082489764636257, + 16.49208377683801, + 16.798146682390374, + 17.145493531027352, + 17.382680369805957, + 17.49963296408954, + 17.69028076822833 + ], + "5._96._0.075": [ + 2.2092718103274076, + 2.5553235611029175, + 2.8519116882934883, + 3.199941237696881, + 3.5222439642356296, + 4.01095608929747, + 4.771427951048562, + 5.672792853782765, + 7.442639930905666, + 8.871164523575647, + 10.062994896368664, + 11.970274797863052, + 13.442169727024702, + 17.113430737587276, + 20.50181692373179, + 21.45831446287822, + 22.315645794072307, + 23.14982476724349, + 23.791881516399023, + 24.339046208312578, + 24.806075601840266, + 25.193357734874695, + 25.4811263917665, + 25.807221674385733, + 26.029667024768873, + 26.13908378479256, + 26.317268432935368 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 6.66666666666667, + 6.25 + ], + [ + 6.66666666666667, + 12.5 + ], + [ + 6.66666666666667, + 18.75 + ], + [ + 13.333333333333302, + 6.25 + ], + [ + 13.333333333333302, + 12.5 + ], + [ + 13.333333333333302, + 18.75 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351569223626014, + 3.1865404257177086, + 3.5207045543359103, + 4.063210591206855, + 4.809556450377362, + 6.241781646261672, + 8.557304620347475, + 11.075093750107822, + 15.23740022526726, + 18.05107576458621, + 20.137216116541527, + 23.110883830806557, + 25.183828330544284, + 29.776737029422865, + 33.58510696367523, + 34.61573951845329, + 35.5302762428902, + 36.4127486842924, + 37.08892099672075, + 37.66491228979662, + 38.15692151241992, + 38.56576661619077, + 38.870257661743786, + 39.216849237206794, + 39.45365505561612, + 39.57009069368329, + 39.75953063809353 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.195803175961541, + 1.4813847491413077, + 1.819821321700434, + 2.111467924224724, + 2.451192832973612, + 2.7884172693650284, + 3.0448635266603343, + 3.3865570131229163, + 3.6182443105100095, + 3.813701198053618, + 4.159114877928057, + 4.467268114676162, + 5.491372375266899, + 6.950646835128457, + 7.498842992517277, + 8.065810670872981, + 8.696710401071487, + 9.249002587522842, + 9.768348526387227, + 10.255141347636249, + 10.692483869896305, + 11.036148350047668, + 11.444817769403953, + 11.733796457126477, + 11.87928311512644, + 12.11971192209192 + ], + "5._384._0.0875": [ + 3.491430375464833, + 4.070537833315201, + 4.876912928151545, + 6.427150391264343, + 8.506763437722867, + 12.02293890328615, + 16.72492333893336, + 20.969049728927253, + 26.846762422381317, + 30.333078006086865, + 32.75560001022239, + 36.038031863910234, + 38.24518982951953, + 43.00041137612287, + 46.88728020049392, + 47.93523554072574, + 48.869294389277165, + 49.772746987475294, + 50.46801890273723, + 51.06110024447133, + 51.56952143008126, + 51.993430835725476, + 52.309439833161235, + 52.67000404528583, + 52.91632134606413, + 53.037289237555335, + 53.233647934232415 + ], + "5._48._0.075": [ + 1.5268463243731447, + 1.8679037053125414, + 2.1622431316564765, + 2.5060808681554296, + 2.8001324603803206, + 3.142996407807979, + 3.5109778495579107, + 3.8723182109076335, + 4.58000390636217, + 5.194416740375317, + 5.746751505455564, + 6.722513187765832, + 7.560181844033206, + 10.033639034347503, + 12.873357182719428, + 13.77878985614987, + 14.632684247501482, + 15.500332581849237, + 16.19312322257067, + 16.796913141856333, + 17.32205919172322, + 17.763069212341193, + 18.092329229244818, + 18.4656295112816, + 18.720411288788668, + 18.84602753123195, + 19.050857909022852 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235596555948, + 2.8519096966007043, + 3.1998043116324517, + 3.5227869149613222, + 4.029447066377771, + 4.862357003575239, + 5.873653365715489, + 7.863159968109839, + 9.45901602867768, + 10.782177693120602, + 12.885820495651114, + 14.50134645482007, + 18.509209762893388, + 22.189795664104775, + 23.226514939697957, + 24.154939458789578, + 25.057580028832454, + 25.751715141943844, + 26.3430658968363, + 26.847539194526888, + 27.265696936865755, + 27.57638305668422, + 27.928397203206433, + 28.16853761081853, + 28.286673242506012, + 28.479118089986812 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 5.0, + 6.25 + ], + [ + 5.0, + 12.5 + ], + [ + 5.0, + 18.75 + ], + [ + 10.0, + 6.25 + ], + [ + 10.0, + 12.5 + ], + [ + 10.0, + 18.75 + ], + [ + 15.0, + 6.25 + ], + [ + 15.0, + 12.5 + ], + [ + 15.0, + 18.75 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351741441200615, + 3.1882269219255517, + 3.537014969294027, + 4.144047980316804, + 5.010309594272373, + 6.683520586964234, + 9.367602258928624, + 12.254426997694942, + 16.977925852838975, + 20.152520051504595, + 22.50101231740583, + 25.84178095625648, + 28.16709374781555, + 33.30954395183727, + 37.566033310158026, + 38.71709151766936, + 39.73812400802694, + 40.72303795973404, + 41.47740857941537, + 42.11998086594559, + 42.66875316689969, + 43.12469846468777, + 43.46428061072425, + 43.85081739688282, + 44.11494317817427, + 44.2448271736018, + 44.45619713893994 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.1958031759615417, + 1.4813847491413072, + 1.8198213217004335, + 2.111467924224724, + 2.4511928332097055, + 2.788421060753707, + 3.045136740336649, + 3.3939027929074093, + 3.6428438477485177, + 3.8608632892124777, + 4.2564840317884425, + 4.614681158007294, + 5.81111328518271, + 7.505308012486504, + 8.137126467918922, + 8.786107198113411, + 9.504044138390807, + 10.128702233443452, + 10.713564368639833, + 11.259145770087757, + 11.74711869343378, + 12.129199201516935, + 12.58161317087264, + 12.900297329332457, + 13.060407098398711, + 13.324611025661781 + ], + "5._384._0.0875": [ + 3.512399763896465, + 4.165056178920474, + 5.10284674352593, + 6.912744569266401, + 9.322487250916055, + 13.346529825592144, + 18.676470776933837, + 23.46355807233637, + 30.074437422015478, + 33.989494290473196, + 36.708209265969586, + 40.3892180505903, + 42.863113773045015, + 48.188865055898404, + 52.53910426061052, + 53.71164499207278, + 54.756613751882426, + 55.767197514216654, + 56.54477552105764, + 57.208061737012535, + 57.77661697460402, + 58.250634119350394, + 58.60400737761545, + 59.007209709177516, + 59.28267348203699, + 59.417964851756736, + 59.637602346422476 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.867903705312541, + 2.162243131656476, + 2.5060808692888226, + 2.8001358310230824, + 3.1436737115065454, + 3.5237221752812484, + 3.9218966531130315, + 4.737755831743835, + 5.456210608159213, + 6.1029453767925155, + 7.2404632172995065, + 8.211533987273178, + 11.04383489116409, + 14.252933357513216, + 15.26862467754741, + 16.2242390380802, + 17.192873455505065, + 17.964251071754568, + 18.63550880906579, + 19.218245044147842, + 19.70685026817163, + 20.071323672121306, + 20.484116520214716, + 20.765717249040776, + 20.904548607879615, + 21.131014692209057 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323564451639, + 2.851917566298522, + 3.200893930772208, + 3.5352265214872265, + 4.0976060500171805, + 5.063107492022097, + 6.245990053059001, + 8.558122153477598, + 10.395965179400461, + 11.909340422506906, + 14.299521429464425, + 16.12630143398773, + 20.634910068853745, + 24.754456753149466, + 25.91225096552744, + 26.94815604143832, + 27.95445817670548, + 28.727582203079383, + 29.385998190826484, + 29.9473640771006, + 30.412474801107987, + 30.75802072953638, + 31.149475166290312, + 31.416542109274317, + 31.547943146164677, + 31.76207371644273 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_7": { + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 30.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 10.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351697968445744, + 3.187353472665289, + 3.5234608934784273, + 4.03795271475831, + 4.657255552980749, + 5.710397184697553, + 7.343613610539403, + 9.170301653180003, + 12.367059521848496, + 14.626077188902679, + 16.339088595748446, + 18.827594298283937, + 20.587819921301463, + 24.54185828098083, + 27.855550332026333, + 28.755532066904596, + 29.554178091077315, + 30.324973980107437, + 30.915385436191027, + 31.41818551995393, + 31.84742675122551, + 32.203883844037286, + 32.46925674033857, + 32.77112551682339, + 32.977325143008976, + 33.078714034938194, + 33.24370712798848 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.4813847491413075, + 1.819821321700434, + 2.111467924224728, + 2.451192833189991, + 2.7884202750752283, + 3.0450320026345508, + 3.3887620769272244, + 3.619713483947078, + 3.807307899554144, + 4.117064544818049, + 4.3728409336737455, + 5.142940726956137, + 6.175064636755585, + 6.5637604897349835, + 6.973243355184749, + 7.439615738804859, + 7.858997118730205, + 8.263059144931818, + 8.651545468690102, + 9.009290133924527, + 9.29639035976076, + 9.645855919000137, + 9.89844466525507, + 10.027379175662004, + 10.2430616759874 + ], + "5._384._0.0875": [ + 3.493879805757724, + 4.034792783566068, + 4.691231171855179, + 5.819057556239314, + 7.284195264811111, + 9.856340305199147, + 13.507790653098331, + 16.95393083450452, + 21.87941257792168, + 24.85681289358606, + 26.94174341946028, + 29.782170246031807, + 31.69904523099904, + 35.837414078929044, + 39.22241157043857, + 40.13498001083374, + 40.94778788460919, + 41.73355381126256, + 42.33778366751876, + 42.85306553878659, + 43.294527057880174, + 43.66239926659383, + 43.93657959357073, + 44.249297693490995, + 44.462913332898964, + 44.56783032206374, + 44.73818375435501 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125407, + 2.162243131656477, + 2.5060808691838017, + 2.800135144590581, + 3.1433735101237383, + 3.513684507521313, + 3.8654826269378426, + 4.477345718805803, + 4.951081669716486, + 5.353742305168801, + 6.043002770497086, + 6.630949111164545, + 8.426903815908053, + 10.628634115849245, + 11.361994242822542, + 12.067204486248635, + 12.795945966470233, + 13.38731536842719, + 13.908212816828915, + 14.366001986675538, + 14.753650369349067, + 15.044540635453636, + 15.375841730576207, + 15.602652055714957, + 15.7146789936319, + 15.897487730379494 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.555323563955926, + 2.8519157790520278, + 3.200371094677397, + 3.5255241265292, + 4.01257137443348, + 4.708358389525702, + 5.459194385213035, + 6.863048705148024, + 8.000592604721083, + 8.969774382507984, + 10.56652374443924, + 11.832611713584354, + 15.100219402585854, + 18.2219063224582, + 19.117181137571425, + 19.92321575935046, + 20.71039498741277, + 21.31786133894557, + 21.836143840767175, + 22.278855402359355, + 22.64604345479904, + 22.918834329133055, + 23.22778032344731, + 23.438501576404605, + 23.542173983861375, + 23.711061702534895 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 30.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835166959430706, + 3.1871255057054384, + 3.5214612757595662, + 4.029262833197984, + 4.646104181393115, + 5.737022788869836, + 7.483622329987976, + 9.441424911226218, + 12.836061694691375, + 15.217748567030064, + 17.01783148068144, + 19.625788960426316, + 21.46727806969847, + 25.59581477505238, + 29.04973939675788, + 29.9871267263814, + 30.81871793377291, + 31.62107220899746, + 32.23544038400482, + 32.75861435464358, + 33.20516727242132, + 33.57594996744803, + 33.85199478813144, + 34.16600271838438, + 34.38051176953185, + 34.48599643256612, + 34.65768815022273 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615408, + 1.4813847491413077, + 1.8198213217004344, + 2.1114679242247263, + 2.4511928331436983, + 2.788419622271382, + 3.0449917614650284, + 3.387835796703528, + 3.616754854358582, + 3.8018782408541547, + 4.107556788957007, + 4.362084027839397, + 5.151788318244156, + 6.250588138560492, + 6.667809075736287, + 7.107214703496019, + 7.606083492515846, + 8.052711615634506, + 8.481089457625576, + 8.891099855987354, + 9.267028782892785, + 9.567629557291554, + 9.932057457277056, + 10.194536256081863, + 10.32824121899148, + 10.551494158709792 + ], + "5._384._0.0875": [ + 3.49130516499162, + 4.024983659768471, + 4.681325560720965, + 5.856153118232167, + 7.424615051593453, + 10.178135011652783, + 14.048777747933524, + 17.677147452007812, + 22.84221861383679, + 25.958507766927244, + 28.139166432151, + 31.10779143345258, + 33.11016385082988, + 37.43001802128192, + 40.96121921458518, + 41.91294343514309, + 42.76053204391302, + 43.579817910922344, + 44.209724965140744, + 44.7469006023661, + 45.20708450103715, + 45.59053669327452, + 45.876336309142225, + 46.20231087196131, + 46.424994484175535, + 46.534371646880594, + 46.71198666742821 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125405, + 2.162243131656477, + 2.5060808689637484, + 2.800134562146766, + 3.143277865803423, + 3.5121094080649398, + 3.8597629344015254, + 4.465820592664218, + 4.946412566747862, + 5.36453084884143, + 6.0950111178194835, + 6.725090688917273, + 8.649353570081535, + 10.983026730153924, + 11.75488312074937, + 12.494333196763263, + 13.256352191238188, + 13.873020266843998, + 14.415325971624076, + 14.891071378492416, + 15.293313772022112, + 15.594878937593222, + 15.93797406665015, + 16.172706855166574, + 16.288620686564276, + 16.4777943430517 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.5553235630354054, + 2.851914450439783, + 3.2002206731259215, + 3.523984329285472, + 4.005008632094552, + 4.697533152600954, + 5.471228283623124, + 6.966592827817952, + 8.188101194661561, + 9.225798738001723, + 10.925114326484389, + 12.264985582979289, + 15.699267656056247, + 18.961221011179113, + 19.894406153442066, + 20.733835541573168, + 21.552975382290374, + 22.184542936356006, + 22.723206072413713, + 23.183078595293484, + 23.56433918604979, + 23.84755496270308, + 24.168254954226924, + 24.386997262100397, + 24.49462597469295, + 24.670006865997205 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 30.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 10.0, + 7.5 + ], + [ + 10.0, + 15.0 + ], + [ + 10.0, + 22.5 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351643704359257, + 3.1869241053883655, + 3.520031486988369, + 4.027705167439552, + 4.658630315932386, + 5.805003999627133, + 7.663833222907654, + 9.744168868733418, + 13.325702835065997, + 15.82575370664918, + 17.711026411199043, + 20.4372770382706, + 22.35986588583441, + 26.66401966044909, + 30.260131210881962, + 31.235570108993254, + 32.100711662784896, + 32.93524382429965, + 33.574074381925996, + 34.11805770016615, + 34.582305865576465, + 34.96774004275992, + 35.25469881031543, + 35.581121666211665, + 35.80412644891877, + 35.91379724652071, + 36.09233038372585 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141308, + 1.8198213217004349, + 2.111467924224725, + 2.4511928331014334, + 2.7884190263380715, + 3.044955286110542, + 3.3870887811663213, + 3.614923789598121, + 3.7996499107102313, + 4.1076988739726215, + 4.367940462735553, + 5.193331239377411, + 6.360964942071496, + 6.805428765189991, + 7.272615107099393, + 7.80149176693141, + 8.273324552937787, + 8.724407066929627, + 9.154685087743426, + 9.547914757000395, + 9.861504912704822, + 10.240518632865758, + 10.512761970969704, + 10.651221809421395, + 10.882101866056383 + ], + "5._384._0.0875": [ + 3.489585470018635, + 4.024207344548306, + 4.698227424589336, + 5.936105154409621, + 7.606062327014861, + 10.52873841833669, + 14.607590830791967, + 18.413170530439555, + 23.815529475380558, + 27.07058475948806, + 29.347188713428828, + 32.444692387565894, + 34.53319394578491, + 39.036364579165834, + 42.71560879447216, + 43.70702306156783, + 44.58988094479919, + 45.44317320229033, + 46.09914460132278, + 46.65854468952839, + 47.13773879155753, + 47.53701354142068, + 47.834612218690076, + 48.17404766975762, + 48.405937179397675, + 48.519841391131294, + 48.70482400338086 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125425, + 2.1622431316564765, + 2.5060808687628287, + 2.800134030433169, + 3.143191874980115, + 3.5109306527916684, + 3.857432798848257, + 4.472383414277057, + 4.9716845719065965, + 5.411783755491677, + 6.187352219820642, + 6.858694621189554, + 8.902461983483777, + 11.360397085324573, + 12.16903590754051, + 12.941738687117601, + 13.736440820749735, + 14.378248820783371, + 14.941992840770164, + 15.435871948288385, + 15.852965420498558, + 16.16544867936315, + 16.520680340303265, + 16.76360297493698, + 16.8835439294005, + 17.079316688376345 + ], + "5._96._0.075": [ + 2.2092718103274085, + 2.555323562194927, + 2.8519132377567895, + 3.2000864331054273, + 3.522823344039205, + 4.0029701445629104, + 4.710393797232478, + 5.521364319744673, + 7.111070943000508, + 8.411630417751287, + 9.51314537102817, + 11.308608812516411, + 12.718631609131466, + 16.315322960880838, + 19.71725584043103, + 20.688725534668976, + 21.56201786701543, + 22.41368491319826, + 23.06988233049655, + 23.62940655738753, + 24.106890022659154, + 24.502622351940996, + 24.79656598706107, + 25.12937323337924, + 25.356379258792646, + 25.46808302337705, + 25.650145223684707 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 30.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 6.66666666666667, + 7.5 + ], + [ + 6.66666666666667, + 15.0 + ], + [ + 6.66666666666667, + 22.5 + ], + [ + 13.333333333333302, + 7.5 + ], + [ + 13.333333333333302, + 15.0 + ], + [ + 13.333333333333302, + 22.5 + ] + ], + "g": { + "5._192._0.08": [ + 2.835157908982548, + 3.1864866057268815, + 3.5183113506609716, + 4.041428797095838, + 4.7425665329953475, + 6.081155094857022, + 8.271865283892238, + 10.702472457824506, + 14.823973635455234, + 17.671776630879233, + 19.809610312088086, + 22.889022596788195, + 25.054641132850303, + 29.88702776399254, + 33.91214116456691, + 35.00254427420828, + 35.96909020753494, + 36.90092859697979, + 37.613778543526976, + 38.22073434510952, + 38.73854832982404, + 39.168345092968345, + 39.488348378640374, + 39.852360670600824, + 40.10108472943693, + 40.223426156668204, + 40.42266020515586 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961542, + 1.481384749141308, + 1.8198213217004335, + 2.1114679242247227, + 2.451192832994151, + 2.7884175266711724, + 3.0448683457501775, + 3.385814647117732, + 3.6138054127571295, + 3.802784782326399, + 4.130942220985338, + 4.420258017394151, + 5.376972332570756, + 6.752292873221113, + 7.275085066261916, + 7.82105557295256, + 8.434728155135126, + 8.977834773155495, + 9.493521215576962, + 9.981824331249852, + 10.424930870488314, + 10.776226273332925, + 11.19787768361331, + 11.49882597868358, + 11.651324544823689, + 11.904852963013308 + ], + "5._384._0.0875": [ + 3.4879653135290964, + 4.043868375754809, + 4.800004030325527, + 6.24994980476941, + 8.218683229846754, + 11.624857327207307, + 16.30843952180347, + 20.6376034033475, + 26.748620000091723, + 30.41983430968288, + 32.984542486672716, + 36.469518863971246, + 38.817181075337764, + 43.872532251140356, + 47.998158239840485, + 49.10929652338893, + 50.09856103285085, + 51.05446895956154, + 51.78910833339899, + 52.41558704486436, + 52.952164350552444, + 53.399203736404225, + 53.732419275245014, + 54.11248682026275, + 54.37216181548412, + 54.4997283314234, + 54.70694195599619 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125418, + 2.162243131656476, + 2.506080868252926, + 2.8001326916826175, + 3.1429938818087413, + 3.509293362485747, + 3.860793590916157, + 4.529327610419912, + 5.103138649088949, + 5.618732120154399, + 6.534172531767116, + 7.326606492830144, + 9.710925617414649, + 12.526187325493252, + 13.441791216499674, + 14.31229611727274, + 15.203748123888662, + 15.920438802225997, + 16.548271936465667, + 17.09656934483403, + 17.558381275276357, + 17.903810422494345, + 18.295766382978783, + 18.563526144402633, + 18.695694524917513, + 18.91151630699064 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323560062381, + 2.8519101958862008, + 3.1997853553695266, + 3.521175188269719, + 4.011959249636365, + 4.795198932885351, + 5.739561262538097, + 7.6142241266636095, + 9.141617187072212, + 10.42518894529491, + 12.496555869310146, + 14.110267908286554, + 18.186825253763427, + 22.007972373974592, + 23.094754238052293, + 24.070213593402126, + 25.02016692903935, + 25.7509190980352, + 26.373628799736117, + 26.904512478125675, + 27.344165953260376, + 27.670677732076577, + 28.04025684292852, + 28.292363302245302, + 28.416443332641574, + 28.61878827436647 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 30.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 6.66666666666667, + 6.0 + ], + [ + 6.66666666666667, + 12.0 + ], + [ + 6.66666666666667, + 18.0 + ], + [ + 6.66666666666667, + 24.0 + ], + [ + 13.333333333333302, + 6.0 + ], + [ + 13.333333333333302, + 12.0 + ], + [ + 13.333333333333302, + 18.0 + ], + [ + 13.333333333333302, + 24.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835154725486448, + 3.186427744543559, + 3.5205639978477086, + 4.0672191992647155, + 4.827634288646258, + 6.30128609952791, + 8.712120526492999, + 11.369688120595477, + 15.841504328466874, + 18.917004780540854, + 21.221273386321627, + 24.534655171260635, + 26.861866599727648, + 32.046767778121065, + 36.35914686769121, + 37.52664400886655, + 38.56122173442576, + 39.55837707708766, + 40.32094231746109, + 40.97019916231659, + 41.52400684110463, + 41.983620372204605, + 42.32583304502317, + 42.715110106425776, + 42.98111889205836, + 43.11197454050006, + 43.32511505213819 + ], + "5._24._0.075": [ + 0.8740059532267972, + 1.195803175961542, + 1.4813847491413068, + 1.819821321700434, + 2.1114679242247245, + 2.4511928329354373, + 2.7884167483391273, + 3.044836903268359, + 3.386333384497444, + 3.6184180063010367, + 3.815163222895371, + 4.165046473112391, + 4.47900568529313, + 5.530289714873271, + 7.044453977625688, + 7.618181571883135, + 8.214788593168237, + 8.882644186340636, + 9.471148283442131, + 10.028046405084842, + 10.55345314824666, + 11.028575818972088, + 11.40417782453438, + 11.853467578335831, + 12.173141251620066, + 12.334842599089724, + 12.603304367205961 + ], + "5._384._0.0875": [ + 3.491414661781152, + 4.0758258568766665, + 4.89851969928763, + 6.495705146702889, + 8.662148133551355, + 12.381526149162836, + 17.45845533104957, + 22.1318761998456, + 28.712697748594152, + 32.66093804099919, + 35.41769813326958, + 39.161309708729064, + 41.68212406151279, + 47.10682421954079, + 51.531347548129844, + 52.722688163890076, + 53.783245595529806, + 54.807919044678435, + 55.595287283063115, + 56.2667274294061, + 56.84177141671526, + 57.32083203657294, + 57.67792408417285, + 58.08522965606594, + 58.36352933585407, + 58.500252970703436, + 58.72236464209723 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.867903705312544, + 2.162243131656476, + 2.5060808679740427, + 2.8001319946109295, + 3.142939799294969, + 3.510780875539805, + 3.8738697515503886, + 4.5927092208488105, + 5.222012404754091, + 5.790528665554502, + 6.800437977740432, + 7.672845193762808, + 10.277568810729207, + 13.323362748905765, + 14.308421360453439, + 15.242896105307299, + 16.19794242977728, + 16.964111104327124, + 17.634430043767516, + 18.218934126310376, + 18.71059884162665, + 19.078073872979406, + 19.49467220532073, + 19.77913514994062, + 19.91953606136205, + 20.148864832040108 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.555323558897426, + 2.8519086488138523, + 3.199722304014191, + 3.5225792751373737, + 4.0323814405123, + 4.880578612197373, + 5.91985270571329, + 7.985156478585879, + 9.660199528207766, + 11.061317595813675, + 13.311101143824619, + 15.057177215335226, + 19.44906666770257, + 23.54873971028911, + 24.712566852640954, + 25.7563832935541, + 26.772205096376435, + 27.55301178702323, + 28.218174651102885, + 28.78497748248295, + 29.254201304663734, + 29.602647408911125, + 29.997003491369668, + 30.26602508873959, + 30.39844504724042, + 30.61445304890489 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 30.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 30.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 30.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 30.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 30.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 5.0, + 6.0 + ], + [ + 5.0, + 12.0 + ], + [ + 5.0, + 18.0 + ], + [ + 5.0, + 24.0 + ], + [ + 10.0, + 6.0 + ], + [ + 10.0, + 12.0 + ], + [ + 10.0, + 18.0 + ], + [ + 10.0, + 24.0 + ], + [ + 15.0, + 6.0 + ], + [ + 15.0, + 12.0 + ], + [ + 15.0, + 18.0 + ], + [ + 15.0, + 24.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351763446312592, + 3.1884481156599507, + 3.539691384229997, + 4.161181270199361, + 5.059902300141593, + 6.811851917756529, + 9.654393506351706, + 12.75339157665242, + 17.912275539175397, + 21.438293737975687, + 24.073492386330344, + 27.853905068970693, + 30.504480669940296, + 36.3968975373071, + 41.287427980730726, + 42.61027207714341, + 43.782007893716255, + 44.91091286218067, + 45.773816362192015, + 46.50845625338192, + 47.13493821494136, + 47.6547682960675, + 48.04183226445724, + 48.4821313848893, + 48.7830417077195, + 48.93108656311293, + 49.172293427966636 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961542, + 1.4813847491413081, + 1.8198213217004324, + 2.1114679242247236, + 2.451192833248056, + 2.7884215655924085, + 3.045170562778542, + 3.3949998494336997, + 3.647177251477171, + 3.8701056631055994, + 4.278040833452351, + 4.649651545495858, + 5.899527203227264, + 7.687170014626369, + 8.359585297730082, + 9.05382453689896, + 9.826152307501468, + 10.502304488248209, + 11.139119374138719, + 11.736738021969686, + 12.274434895863704, + 12.697746103732976, + 13.201569790121757, + 13.558379167578806, + 13.7384035144341, + 14.036743599967721 + ], + "5._384._0.0875": [ + 3.5159616968318335, + 4.185618291300701, + 5.159833104302448, + 7.057280109646621, + 9.610797525923555, + 13.93958146976611, + 19.789844161630338, + 25.146128045375974, + 32.66432535274215, + 37.16685005419264, + 40.30831250232239, + 44.57058124195141, + 47.43890010470032, + 53.60567525406913, + 58.63132909681914, + 59.98403813394102, + 61.188064646063246, + 62.35114812838823, + 63.24467372128733, + 64.00663401962885, + 64.65913129550964, + 65.20267262770254, + 65.60784231506847, + 66.06999306286492, + 66.38579092217535, + 66.54094930803205, + 66.79304779646836 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125416, + 2.1622431316564787, + 2.506080869469626, + 2.8001362816405546, + 3.1437590860298372, + 3.5257511546964744, + 3.9316263375864047, + 4.775395921966008, + 5.524441173704562, + 6.201799963270704, + 7.399503029764422, + 8.428223241549846, + 11.46063227166634, + 14.957770701161653, + 16.079697230985335, + 17.141134997131577, + 18.222880813001137, + 19.08800232132773, + 19.843507340371772, + 20.500812316828036, + 21.052659560250884, + 21.464657106070543, + 21.931130117117057, + 22.249451641437734, + 22.406551631165733, + 22.663281186905987 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.55532356520097, + 2.8519185931447306, + 3.2010337168805982, + 3.537196172525325, + 4.111668401797206, + 5.112835936800638, + 6.349928014421957, + 8.791481924116407, + 10.75362900148944, + 12.383375038950609, + 14.982039978724222, + 16.9885854394939, + 22.006888369650653, + 26.66436285088839, + 27.983085036488273, + 29.164551087665075, + 30.3131887620431, + 31.19507557906113, + 31.94602306882129, + 32.585477122740016, + 33.1145576005885, + 33.50741412885012, + 33.95195370083672, + 34.25523563018993, + 34.40454495991607, + 34.648209581128214 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "5_8": { + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 20.0, + 30.0 + ], + [ + 10.0, + 17.5 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351700679173013, + 3.1873740739578245, + 3.5235943718865395, + 4.038066018815882, + 4.655807303620559, + 5.698213556725049, + 7.301276254863769, + 9.103648775906654, + 12.311783449836708, + 14.62042845804739, + 16.391555949992235, + 18.991434017645624, + 20.847186191862676, + 25.05040292986037, + 28.5950587293667, + 29.55959977527507, + 30.414965453908366, + 31.240041359577365, + 31.87122000466518, + 32.40854050110782, + 32.86676129129182, + 33.24690141162086, + 33.52983054152512, + 33.85147557057423, + 34.07119744657318, + 34.179273416935544, + 34.355299446928015 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.481384749141308, + 1.8198213217004349, + 2.111467924224725, + 2.4511928331944186, + 2.7884203374964627, + 3.045035801007024, + 3.388834954912431, + 3.619877844247044, + 3.8074932361101856, + 4.117006312625864, + 4.372164210249908, + 5.136185778835661, + 6.1502548771424665, + 6.531903781598539, + 6.935027448028119, + 7.396478544384952, + 7.814196720767056, + 8.219603707836418, + 8.612534149512369, + 8.97749278580923, + 9.272809177965637, + 9.63561639520318, + 9.900482084277657, + 10.036695115124518, + 10.266265800176733 + ], + "5._384._0.0875": [ + 3.4940393593513437, + 4.034837081664086, + 4.6892068821085875, + 5.803983786398862, + 7.241670035680953, + 9.784480044622716, + 13.466641718430418, + 17.014141440325453, + 22.17993192359468, + 25.344268837001284, + 27.57339626455187, + 30.621297098164074, + 32.68333023574828, + 37.13658563417574, + 40.776038199914005, + 41.756452665757145, + 42.62880309137055, + 43.47139294322551, + 44.11851247425088, + 44.67021922685818, + 45.14249853975145, + 45.53576604624354, + 45.828841771454506, + 46.16300088034788, + 46.391288782073445, + 46.50344327825494, + 46.68566566000346 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125425, + 2.1622431316564765, + 2.50608086920485, + 2.8001352002861046, + 3.143382410547845, + 3.5137962131552722, + 3.865677595289705, + 4.4766162688761515, + 4.947680138306228, + 5.346073340324081, + 6.024139035189826, + 6.600778256802691, + 8.371135820038923, + 10.581228959364173, + 11.328905991575773, + 12.053797457904155, + 12.808604278949595, + 13.425533181102411, + 13.97201805294053, + 14.454651667884834, + 14.864945216415807, + 15.173693163472896, + 15.526011260077697, + 15.767651221561957, + 15.887196736476094, + 16.082607383567936 + ], + "5._96._0.075": [ + 2.2092718103274094, + 2.555323564043974, + 2.8519159060577914, + 3.2003849173769767, + 3.5256344372259454, + 4.0127321446528565, + 4.706863452516169, + 5.451032076697263, + 6.830107039065771, + 7.9480590453469455, + 8.90641431166896, + 10.50113171076632, + 11.780023109300389, + 15.135827758468674, + 18.40702991436558, + 19.355317041419347, + 20.211602984789625, + 21.049872229242087, + 21.697523692271538, + 22.250523939012062, + 22.72286579376741, + 23.11446538912954, + 23.40532946144251, + 23.73450363490982, + 23.95903423466534, + 24.069556819431455, + 24.249785145857597 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 20.0, + 30.0 + ], + [ + 10.0, + 8.75 + ], + [ + 10.0, + 17.5 + ], + [ + 10.0, + 26.25 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351650523951943, + 3.1869715367037945, + 3.52011947181509, + 4.024220228844604, + 4.641148293813484, + 5.7498071165490705, + 7.5488499901155715, + 9.584406773888482, + 13.155158709748958, + 15.693682726347884, + 17.62974608329774, + 20.457830311409687, + 22.469937331966808, + 27.010619351170956, + 30.827248279287947, + 31.864342701947585, + 32.78351804527595, + 33.66963502512957, + 34.34704322509243, + 34.92365591828496, + 35.41520746351882, + 35.82288865912764, + 36.12632879472429, + 36.47128949056849, + 36.70697371736857, + 36.82292169028247, + 37.01183964345211 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224723, + 2.4511928331125894, + 2.788419183568274, + 3.0449646783207744, + 3.3872088269099154, + 3.614803699598692, + 3.798488594473483, + 4.102341415805989, + 4.356830873766227, + 5.156465407895655, + 6.285155276678893, + 6.716721638416625, + 7.172730000704441, + 7.692341208789642, + 8.159461678404602, + 8.609458523505353, + 9.042286008729873, + 9.441282144814327, + 9.76205855990235, + 10.153275851439874, + 10.437029005769, + 10.5823848153502, + 10.826500209166955 + ], + "5._384._0.0875": [ + 3.489593329362771, + 4.019473572484613, + 4.677210886148365, + 5.873521099890636, + 7.489934356338687, + 10.356680740668793, + 14.443012363237486, + 18.334370573183197, + 23.959633269251132, + 27.393270227003402, + 29.80889925729071, + 33.10714098600377, + 35.33639295755766, + 40.14419281657262, + 44.06861662708409, + 45.12523504930923, + 46.06518916161644, + 46.97285180258842, + 47.669733258025886, + 48.26385584203632, + 48.772367780532036, + 49.19575866212824, + 49.511297758216834, + 49.87107673251231, + 50.1168928277937, + 50.23767193139154, + 50.433948453479054 + ], + "5._48._0.075": [ + 1.5268463243731383, + 1.8679037053125402, + 2.1622431316564765, + 2.5060808688158716, + 2.8001341707295535, + 3.143213407626778, + 3.5110479990978525, + 3.85619667676829, + 4.460257142100437, + 4.944979043375426, + 5.370289466499451, + 6.118841876005519, + 6.768220316367038, + 8.765974488693983, + 11.217742492238607, + 12.037430310461843, + 12.826851359044934, + 13.644747678909633, + 14.30987821987193, + 14.897265828517806, + 15.414266423838248, + 15.85250574770731, + 16.181688693131928, + 16.55655049329527, + 16.813318322643827, + 16.94028896580765, + 17.147880558483386 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.5553235624168145, + 2.851913557541273, + 3.200119194309912, + 3.52294607825181, + 4.000491896985515, + 4.692755257871498, + 5.477582395690269, + 7.013964075397075, + 8.279503273104043, + 9.360429384694012, + 11.142025421208881, + 12.557412823929752, + 16.22672335471559, + 19.766150355338073, + 20.787443428908013, + 21.7081014547319, + 22.608015619172228, + 23.30210274095346, + 23.894351848456377, + 24.399686488122253, + 24.818293629843243, + 25.129148749120787, + 25.480832912348042, + 25.72072283502361, + 25.838826150686113, + 26.0315184273947 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 20.0, + 30.0 + ], + [ + 6.66666666666667, + 8.75 + ], + [ + 6.66666666666667, + 17.5 + ], + [ + 6.66666666666667, + 26.25 + ], + [ + 13.333333333333302, + 8.75 + ], + [ + 13.333333333333302, + 17.5 + ], + [ + 13.333333333333302, + 26.25 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351589614380677, + 3.1865519460384353, + 3.518209950619901, + 4.033273295419021, + 4.706332049875291, + 5.977350363170973, + 8.069488720234684, + 10.424036773329988, + 14.497886379341214, + 17.365178617261897, + 19.54160831743406, + 22.707749584073024, + 24.95379334946884, + 30.0050201067037, + 34.23712477615948, + 35.385540002966884, + 36.402766979210256, + 37.38283995842011, + 38.131549458708, + 38.76878633168966, + 39.311819817464894, + 39.76207531355488, + 40.09721950498516, + 40.478221674367425, + 40.73857055388248, + 40.866676126986285, + 41.07548388433844 + ], + "5._24._0.075": [ + 0.8740059532267972, + 1.195803175961542, + 1.4813847491413068, + 1.819821321700434, + 2.1114679242247245, + 2.4511928330117705, + 2.7884177716034624, + 3.0448822848851207, + 3.3859283000336338, + 3.613152930577784, + 3.7997069478302117, + 4.118903856307514, + 4.3965561102687305, + 5.305805204534932, + 6.616211113751772, + 7.1180131952515975, + 7.645710978517628, + 8.243419490356645, + 8.776954652704278, + 9.287613370591643, + 9.775322650691535, + 10.221772918930833, + 10.578575895809593, + 11.01066726526617, + 11.322000939650623, + 11.480862214733502, + 11.746778520877854 + ], + "5._384._0.0875": [ + 3.4876277823678117, + 4.033092462429255, + 4.757041135596917, + 6.1336500532912765, + 8.01438088463661, + 11.323004957429456, + 15.975062925076402, + 20.36358926633032, + 26.66967535913925, + 30.506896611374625, + 33.20318012109432, + 36.87962890156972, + 39.36218181082809, + 44.708945752545574, + 49.06800395982098, + 50.241013671101356, + 51.28428094018796, + 52.29145275116085, + 53.06448996712415, + 53.72352834782347, + 54.287513980751456, + 54.757037891763225, + 55.10697443378756, + 55.50598173235304, + 55.778628741586, + 55.91260585978251, + 56.130377256643584 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.867903705312544, + 2.162243131656476, + 2.506080868336655, + 2.8001329103779895, + 3.1430250047464274, + 3.509310397448329, + 3.8575303549404008, + 4.503598261057744, + 5.04965511446445, + 5.538719993277932, + 6.408367376050737, + 7.164838529009064, + 9.472243991797686, + 12.257675774480415, + 13.17873438344356, + 14.061010102779223, + 14.971050726863224, + 15.707647820781132, + 16.35630497269754, + 16.925348401596004, + 17.406332635032708, + 17.766984897010563, + 18.17685718656779, + 18.457271503926584, + 18.595886529271468, + 18.82260428495822 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.55532356041246, + 2.851910692124595, + 3.1998317329751247, + 3.521208035306955, + 4.005964590449587, + 4.7587041323617, + 5.655427727126614, + 7.441181219231315, + 8.911167701861556, + 10.158968618392267, + 12.19681867340067, + 13.803326090288248, + 17.92682609374497, + 21.867345589982047, + 22.99948638261228, + 24.01846329967444, + 25.012985479667236, + 25.7787337913546, + 26.431687079852086, + 26.98823138473893, + 27.44888014287527, + 27.790885289072413, + 28.177693021693877, + 28.441555708228584, + 28.571486992028046, + 28.78359836334696 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 20.0, + 30.0 + ], + [ + 6.66666666666667, + 7.0 + ], + [ + 6.66666666666667, + 14.0 + ], + [ + 6.66666666666667, + 21.0 + ], + [ + 6.66666666666667, + 28.0 + ], + [ + 13.333333333333302, + 7.0 + ], + [ + 13.333333333333302, + 14.0 + ], + [ + 13.333333333333302, + 21.0 + ], + [ + 13.333333333333302, + 28.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351555712094094, + 3.1863206803553044, + 3.5175171311879634, + 4.04363206673185, + 4.760229440821041, + 6.145988752605883, + 8.437120236647061, + 11.00275742250071, + 15.406160438328163, + 18.489229455137107, + 20.82407129084959, + 24.213820613407435, + 26.615017590043692, + 32.00576356481619, + 36.51486308330387, + 37.737576877772355, + 38.82026500413531, + 39.863086812367946, + 40.659432657155264, + 41.33717702652559, + 41.91461638131081, + 42.39332912296113, + 42.74966503887414, + 43.15475912626482, + 43.43159449614722, + 43.56782606946002, + 43.78992627673758 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615433, + 1.481384749141307, + 1.8198213217004335, + 2.1114679242247254, + 2.4511928329557615, + 2.7884169866400437, + 3.044836261004417, + 3.385299044043256, + 3.613049603870011, + 3.80280804242424, + 4.13525636297446, + 4.430959001080378, + 5.418841818607112, + 6.853537512262558, + 7.402323267109134, + 7.977281513282314, + 8.625937749420423, + 9.202408963663038, + 9.752138330380252, + 10.275094608713069, + 10.75198992234107, + 11.131914725706398, + 11.590269071512738, + 11.919365955011628, + 12.086948463832192, + 12.367004680158825 + ], + "5._384._0.0875": [ + 3.4871261076717195, + 4.047345593605567, + 4.821709955230412, + 6.324809588478758, + 8.38472053045817, + 11.98511062761099, + 17.008021758879863, + 21.7239600417951, + 28.481022247688195, + 32.58643843474829, + 35.46944653896486, + 39.397768851942736, + 42.04913231587907, + 47.75535082953776, + 52.4044834688384, + 53.6551936817713, + 54.767437305487505, + 55.841052126522726, + 56.66494434724872, + 57.3673323596595, + 57.9683640465497, + 58.46869715255173, + 58.84160500985267, + 59.2668094721413, + 59.55737374976411, + 59.70016393628101, + 59.932287695508215 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125422, + 2.162243131656476, + 2.5060808680704296, + 2.8001322097512884, + 3.14291998360464, + 3.508581644904994, + 3.8608367872019014, + 4.540994845947109, + 5.131894861864378, + 5.666040808510571, + 6.61932478205193, + 7.448410957451473, + 9.960545651518425, + 12.963077638081792, + 13.949930546948222, + 14.892746522085332, + 15.86302855347855, + 16.646480418980644, + 17.33539839008924, + 17.938715846187606, + 18.44791435782036, + 18.82937779534404, + 19.26245345355176, + 19.55857129001063, + 19.704928788209696, + 19.94437765164138 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323559298979, + 2.851909098402319, + 3.1996721333567604, + 3.5204648002902137, + 4.013161384814128, + 4.813075096412154, + 5.789488182041971, + 7.7458507641040635, + 9.352208519811589, + 10.709854343872067, + 12.915352660896401, + 14.646761741369556, + 19.06873407794575, + 23.27464481077639, + 24.480439888718227, + 25.564815125533816, + 26.62234386369584, + 27.435877994688724, + 28.129335946282055, + 28.720077693233982, + 29.208820914312362, + 29.57164936959938, + 29.981946618562823, + 30.261845225278734, + 30.3996890352779, + 30.624789954760807 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 20.0, + 30.0 + ], + [ + 6.66666666666667, + 5.83333333333333 + ], + [ + 6.66666666666667, + 11.666666666666698 + ], + [ + 6.66666666666667, + 17.5 + ], + [ + 6.66666666666667, + 23.3333333333333 + ], + [ + 6.66666666666667, + 29.1666666666667 + ], + [ + 13.333333333333302, + 5.83333333333333 + ], + [ + 13.333333333333302, + 11.666666666666698 + ], + [ + 13.333333333333302, + 17.5 + ], + [ + 13.333333333333302, + 23.3333333333333 + ], + [ + 13.333333333333302, + 29.1666666666667 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351556539658116, + 3.1865521735707523, + 3.521865085283509, + 4.073936308443842, + 4.845864936839765, + 6.350137745589544, + 8.832929776577991, + 11.59947953639935, + 16.321577202356945, + 19.61655890549363, + 22.108152637553115, + 25.720540438573188, + 28.276828590652183, + 34.00817281948661, + 38.79601469788492, + 40.0935914346554, + 41.242254590221556, + 42.348346858248924, + 43.19275089485442, + 43.91136416455542, + 44.523525644742044, + 45.03096273554896, + 45.40868819391679, + 45.83809849465942, + 46.13157174002309, + 46.276002847375906, + 46.51151213222771 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961542, + 1.4813847491413081, + 1.8198213217004324, + 2.1114679242247236, + 2.4511928329419637, + 2.7884169308835656, + 3.044855019070604, + 3.386909383692799, + 3.620398041393607, + 3.8190168638672723, + 4.173296638930277, + 4.492012757771971, + 5.56350066470049, + 7.118632767595791, + 7.71174168696523, + 8.331191359269122, + 9.027924903556503, + 9.64513907251848, + 10.232207299653048, + 10.78912701332737, + 11.295616395767464, + 11.698189625202268, + 12.182503941996304, + 12.529326803672076, + 12.705668343838333, + 13.000010823020645 + ], + "5._384._0.0875": [ + 3.4930819133676665, + 4.083731503886975, + 4.91941529073247, + 6.551260710155993, + 8.783325264974433, + 12.662246010102992, + 18.04537293416706, + 23.084268612625163, + 30.29042503637552, + 34.66405993975208, + 37.73401813256249, + 41.9148244166744, + 44.73554602529885, + 50.80272754100648, + 55.74340156284035, + 57.07223347749946, + 58.253834376542656, + 59.39426944315992, + 60.26931481668812, + 61.01530673388395, + 61.653604839495856, + 62.18493216422122, + 62.580948394989726, + 63.0325055042691, + 63.34109205972408, + 63.49274635086086, + 63.73930372618695 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125416, + 2.1622431316564787, + 2.506080868007349, + 2.8001321552344214, + 3.142987339465544, + 3.5117930535182706, + 3.87791662489022, + 4.60664153226657, + 5.247172949550534, + 5.827575601720974, + 6.862711570086787, + 7.761211525805152, + 10.467939062206904, + 13.679783460274791, + 14.731044607142847, + 15.733618968966889, + 16.763736751920458, + 17.594053102936442, + 18.323380226183616, + 18.96125197851719, + 19.499002869857332, + 19.901574610413732, + 20.358247429680368, + 20.670366327217906, + 20.82461942440792, + 21.07705032688801 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323559048004, + 2.8519090485087646, + 3.199800874632754, + 3.5235663607789225, + 4.038003252041499, + 4.898855798184064, + 5.958843521818454, + 8.080851175258388, + 9.816710725818032, + 11.278860858066174, + 13.645613970658172, + 15.498456394927043, + 20.215034824815184, + 24.686378492276113, + 25.96629744948144, + 27.11654144250849, + 28.237628332746745, + 29.09945377551539, + 29.83386705966765, + 30.459223189070972, + 30.976426298253337, + 31.360352638910907, + 31.794455847876726, + 32.09060628421024, + 32.236468093588144, + 32.47472570139971 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 20.0, + 30.0 + ], + [ + 5.0, + 5.83333333333333 + ], + [ + 5.0, + 11.666666666666698 + ], + [ + 5.0, + 17.5 + ], + [ + 5.0, + 23.3333333333333 + ], + [ + 5.0, + 29.1666666666667 + ], + [ + 10.0, + 5.83333333333333 + ], + [ + 10.0, + 11.666666666666698 + ], + [ + 10.0, + 17.5 + ], + [ + 10.0, + 23.3333333333333 + ], + [ + 10.0, + 29.1666666666667 + ], + [ + 15.0, + 5.83333333333333 + ], + [ + 15.0, + 11.666666666666698 + ], + [ + 15.0, + 17.5 + ], + [ + 15.0, + 23.3333333333333 + ], + [ + 15.0, + 29.1666666666667 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351829704496425, + 3.1889149520572277, + 3.543363196425655, + 4.1778731442333825, + 5.10117880020927, + 6.910435978746915, + 9.872588591488004, + 13.137850408634957, + 18.65124930061616, + 22.473752314756982, + 25.356395996863906, + 29.525112064018675, + 32.469339751558664, + 39.05415156949002, + 44.541709638826696, + 46.02737226612868, + 47.34187896993436, + 48.60707871696163, + 49.57239318164633, + 50.39384034810322, + 51.093392757915716, + 51.67314038972331, + 52.104711069903104, + 52.595336217436575, + 52.93069015288513, + 53.095758256493816, + 53.36500698068329 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615428, + 1.4813847491413077, + 1.819821321700434, + 2.1114679242247245, + 2.451192833362697, + 2.7884231186828408, + 3.045258803222013, + 3.396760422848534, + 3.6525354194329283, + 3.880019917402897, + 4.298011214563857, + 4.679761937717946, + 5.968448714529124, + 7.825580564633353, + 8.528864362728967, + 9.258146515480218, + 10.073229855701896, + 10.790503968023362, + 11.46934078497118, + 12.109690779081905, + 12.688881048123386, + 13.147138986074324, + 13.695361942660279, + 14.085864362351854, + 14.283820495989831, + 14.613532732140662 + ], + "5._384._0.0875": [ + 3.520580959077126, + 4.205052259360763, + 5.206518827892384, + 7.167839797719376, + 9.830065791621468, + 14.399461731588424, + 20.677643318165575, + 26.52132108383868, + 34.849217915793346, + 39.89362909263726, + 43.43148931520966, + 48.24467311389546, + 51.489796351310794, + 58.46230851891426, + 64.13478955400115, + 65.65978637099397, + 67.01557692439125, + 68.32385882313831, + 69.3274245855664, + 70.18297109617835, + 70.91491116712527, + 71.52412634876838, + 71.97821156666623, + 72.4959896953239, + 72.84986051923946, + 73.02378558090044, + 73.30660123463147 + ], + "5._48._0.075": [ + 1.526846324373138, + 1.8679037053125453, + 2.16224313165648, + 2.506080870013248, + 2.8001376692589264, + 3.1439624378523243, + 3.528671339685413, + 3.9420402880951615, + 4.807697302833851, + 5.579019847572725, + 6.278510004086791, + 7.520440654978931, + 8.592467723205685, + 11.781066233769222, + 15.511806510679454, + 16.72266095468499, + 17.87393066050816, + 19.053147471316663, + 20.000361034136667, + 20.830620455830637, + 21.554901213377413, + 22.16414801079633, + 22.619634529330547, + 23.135549874448422, + 23.487886078153856, + 23.661994831323188, + 23.947082280619306 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.555323567468373, + 2.8519217290581507, + 3.20134761840962, + 3.5400558825255217, + 4.125815495423485, + 5.154146481029055, + 6.430568140645403, + 8.968708824519224, + 11.026682447855945, + 12.74811672632832, + 15.514835788444643, + 17.669444645489882, + 23.12084864521348, + 28.25636962813872, + 29.722060318757514, + 31.03764096051368, + 32.31840299992044, + 33.30166567048182, + 34.13912512916261, + 34.85163454480895, + 35.44053871401797, + 35.87763195307203, + 36.37174661080312, + 36.708867388256685, + 36.874940108300876, + 37.146350144422115 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 35.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 35.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 35.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 35.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 35.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 20.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 20.0, + 30.0 + ], + [ + 10.0, + 11.666666666666698 + ], + [ + 10.0, + 23.3333333333333 + ] + ], + "g": { + "5._192._0.08": [ + 2.835167455659192, + 3.1871642430788274, + 3.521751863017781, + 4.029625490185352, + 4.641271376311497, + 5.707187858750252, + 7.406856996237069, + 9.329613638053685, + 12.724472584119559, + 15.150309492426237, + 17.004945186820816, + 19.71962820992081, + 21.653714656787137, + 26.02524034388058, + 29.705017980289227, + 30.70554299089441, + 31.59254029343546, + 32.4478564278646, + 33.10192055080105, + 33.65868971132875, + 34.13340189576214, + 34.52716474387445, + 34.82023963241524, + 35.153417541426506, + 35.38103616325519, + 35.49300716727037, + 35.67541440136786 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.195803175961541, + 1.4813847491413077, + 1.819821321700434, + 2.111467924224724, + 2.451192833151799, + 2.7884197364920524, + 3.044998754994472, + 3.3879824678463044, + 3.6171425481633706, + 3.802391076121065, + 4.1074028202409245, + 4.359863065640691, + 5.133837292624781, + 6.202638445587484, + 6.609656215788956, + 7.040133559330346, + 7.531815618276208, + 7.975217912291406, + 8.403715769118003, + 8.817235787031207, + 9.199683978669603, + 9.50801463256211, + 9.885258446642618, + 10.159666901619392, + 10.30047825744187, + 10.537323753418518 + ], + "5._384._0.0875": [ + 3.4916636397093734, + 4.025129421282424, + 4.6746661999374375, + 5.8208834192847325, + 7.347150563199453, + 10.057461110441897, + 13.94713413515704, + 17.669220851437412, + 23.0660664095782, + 26.365183907770643, + 28.687493192454244, + 31.860274988128893, + 34.0056375779066, + 38.6353408080032, + 42.41644523657339, + 43.43471897850845, + 44.340649837265865, + 45.215555665191715, + 45.88738081726496, + 46.46014576358005, + 46.95041114703426, + 47.358630643745784, + 47.66285677609194, + 48.009733455157, + 48.246723131424034, + 48.36315970239605, + 48.552361215018124 + ], + "5._48._0.075": [ + 1.5268463243731447, + 1.8679037053125414, + 2.1622431316564765, + 2.5060808690022567, + 2.8001346640586284, + 3.143294365587185, + 3.5123457855770335, + 3.860301659971665, + 4.46336291719809, + 4.936022737554475, + 5.344187345045735, + 6.054327305457337, + 6.6670642084900695, + 8.554929670239313, + 10.88966322727732, + 11.674261024508445, + 12.431989461356832, + 13.21872433947938, + 13.859903795311766, + 14.426883162161992, + 14.926660831987295, + 15.350838652498851, + 15.66971117529238, + 16.03316125331156, + 16.282251794726882, + 16.405449274278585, + 16.60684782591118 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323563196496, + 2.8519146828713313, + 3.2002464543334663, + 3.5242166364349967, + 4.005494246703019, + 4.69255009407634, + 5.44956907192158, + 6.903790730270509, + 8.09741739144736, + 9.119232736188483, + 10.810563881581235, + 12.159543573126813, + 15.6744422184715, + 19.08011999669934, + 20.064777884372937, + 20.953059386134246, + 21.821909155920988, + 22.492545313717663, + 23.064956478364085, + 23.553592722407227, + 23.958515812893282, + 24.259238286770394, + 24.59950726648892, + 24.83160721127395, + 24.945866084102033, + 25.132240650938986 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "6_6": { + "3_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 25.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 25.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 25.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 25.0, + 20.0 + ], + [ + 6.25, + 8.33333333333333 + ], + [ + 6.25, + 16.6666666666667 + ], + [ + 12.5, + 8.33333333333333 + ], + [ + 12.5, + 16.6666666666667 + ], + [ + 18.75, + 8.33333333333333 + ], + [ + 18.75, + 16.6666666666667 + ] + ], + "g": { + "5._192._0.08": [ + 2.835158056292792, + 3.1865385723994653, + 3.5186146993772907, + 4.037305090835699, + 4.721412665301104, + 6.026417620964839, + 8.177760504364336, + 10.580426708515798, + 14.680762409812505, + 17.52592656833705, + 19.66520515263722, + 22.748700006404988, + 24.91724778360174, + 29.752346983830645, + 33.77419114571337, + 34.86292383459735, + 35.82761465985008, + 36.75739259242331, + 37.468445215800514, + 38.07379859025046, + 38.590149034918745, + 39.01866585358743, + 39.337701824325066, + 39.7005894708088, + 39.94854165980335, + 40.070505457818285, + 40.26913976622213 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961542, + 1.481384749141308, + 1.8198213217004335, + 2.1114679242247227, + 2.4511928329941677, + 2.7884175451623063, + 3.0448741481936503, + 3.3860309378716007, + 3.613930282667832, + 3.801655127115789, + 4.124267642276869, + 4.406414544054931, + 5.338241906877125, + 6.68695762694144, + 7.202102264385516, + 7.7416856720171445, + 8.349894784363586, + 8.889666364010251, + 9.403382469972982, + 9.890849442802313, + 10.333969006839363, + 10.685690153934107, + 11.108162468330562, + 11.409699416864067, + 11.562434277057845, + 11.81614825574478 + ], + "5._384._0.0875": [ + 3.4882485085118677, + 4.038157719619586, + 4.775078363675287, + 6.189692818880586, + 8.123561522951322, + 11.493245108361899, + 16.15853681730054, + 20.48815439903931, + 26.608105762350316, + 30.284069225268993, + 32.850866318447494, + 36.3365983651144, + 38.683533130150835, + 43.733679545488876, + 47.85230883594768, + 48.96123697259764, + 49.94840919188431, + 50.902183415663686, + 51.635084689543724, + 52.260062772267524, + 52.79531485105064, + 53.24122329357498, + 53.5735946371175, + 53.952693277297016, + 54.21171014711939, + 54.33895657015168, + 54.54566241845537 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125418, + 2.162243131656476, + 2.5060808682530853, + 2.8001327072599276, + 3.14301173845291, + 3.509585470776711, + 3.8595981524179295, + 4.514325838282624, + 5.072682634819743, + 5.575355816797108, + 6.471256488067298, + 7.249815242385588, + 9.605902822485673, + 12.40837260033647, + 13.323372924471599, + 14.194270580650173, + 15.08680354425095, + 15.804546866258882, + 16.43323016370738, + 16.982059791865705, + 17.444047354834336, + 17.78937579579267, + 18.180900637000324, + 18.448180390248343, + 18.580062369480185, + 18.795354140579615 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323560063692, + 2.851910246240687, + 3.199816806889659, + 3.521469189272979, + 4.009154787248454, + 4.773908779632291, + 5.693882792063749, + 7.531822213501737, + 9.038068756351773, + 10.308801479358738, + 12.367154392607135, + 13.975821154966436, + 18.051530938011283, + 21.87686769607405, + 22.96431744519923, + 23.939851904638278, + 24.889343205544968, + 25.61927488504852, + 26.24099885491949, + 26.77078280731418, + 27.209338969761603, + 27.534954437782197, + 27.903415491472696, + 28.154718998096467, + 28.278396173250528, + 28.480090598946006 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 25.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 25.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 25.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 25.0, + 20.0 + ], + [ + 6.25, + 6.25 + ], + [ + 6.25, + 12.5 + ], + [ + 6.25, + 18.75 + ], + [ + 12.5, + 6.25 + ], + [ + 12.5, + 12.5 + ], + [ + 12.5, + 18.75 + ], + [ + 18.75, + 6.25 + ], + [ + 18.75, + 12.5 + ], + [ + 18.75, + 18.75 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351532627432503, + 3.186365441816804, + 3.5205881367678926, + 4.070329934846432, + 4.841342728426847, + 6.347763681742121, + 8.826815067931381, + 11.56888479372147, + 16.19458421541986, + 19.38166370506703, + 21.77100899241534, + 25.205905355622072, + 27.61696886742297, + 32.980378450161126, + 37.43193528834957, + 38.63588521205343, + 39.70220951744415, + 40.729529811123506, + 41.51479574290802, + 42.1832878304746, + 42.75335040260863, + 43.22635381167699, + 43.578525273411095, + 43.979105088030614, + 44.25284431333289, + 44.387510908281484, + 44.60689559997505 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.1958031759615424, + 1.4813847491413064, + 1.819821321700434, + 2.1114679242247245, + 2.4511928329091166, + 2.788416395828188, + 3.0448204148834845, + 3.38624365364982, + 3.618690323226711, + 3.816390729070249, + 4.169541092210377, + 4.487884404406876, + 5.560797167211822, + 7.116376926724869, + 7.707767856138821, + 8.32314248644563, + 9.012548754483674, + 9.620384890952167, + 10.19595697886165, + 10.739096268547923, + 11.230214740779159, + 11.618338400790138, + 12.082115808959083, + 12.411545196941873, + 12.577958736246464, + 12.853832518160388 + ], + "5._384._0.0875": [ + 3.491564298014737, + 4.079899796494627, + 4.914987087100288, + 6.549100268528113, + 8.777343333735127, + 12.615169997488216, + 17.87069099116271, + 22.71754370201331, + 29.54326419360561, + 33.63502913051839, + 36.48991906659653, + 40.363315626285164, + 42.96961850654603, + 48.57254111651578, + 53.13815714011859, + 54.36698135882563, + 55.46071739987902, + 56.51726277243008, + 57.32895477791721, + 58.021115024777274, + 58.61383941767428, + 59.107586672463, + 59.47562884270867, + 59.895419877009644, + 60.18226178856448, + 60.323189262700474, + 60.55215502617666 + ], + "5._48._0.075": [ + 1.5268463243731383, + 1.867903705312542, + 2.162243131656476, + 2.5060808678490165, + 2.800131679151917, + 3.1429062897013473, + 3.510745645475484, + 3.8751765993170255, + 4.602304186237718, + 5.2433859885373, + 5.825104522976823, + 6.861869926315137, + 7.759695730398334, + 10.44497965968738, + 13.593268079039685, + 14.612359850199457, + 15.579225240495997, + 16.567101447929478, + 17.358910479035405, + 18.05112980245232, + 18.654022183381393, + 19.160519303123607, + 19.538680169299877, + 19.966859566255255, + 20.258964199977722, + 20.40307769713374, + 20.63843898144848 + ], + "5._96._0.075": [ + 2.209271810327398, + 2.5553235583751164, + 2.8519079444569932, + 3.1996752677688276, + 3.522535388466865, + 4.034703872121308, + 4.894407105179826, + 5.956009437179301, + 8.07779965350393, + 9.804627612232878, + 11.25136710914329, + 13.577168433949094, + 15.38449659346843, + 19.93372599401535, + 24.17670501448134, + 25.37948843060963, + 26.457292620736155, + 27.505248659882472, + 28.309931267019472, + 28.995022256061954, + 29.57838467574508, + 30.06102564822838, + 30.419334830297128, + 30.824717139259622, + 31.101223967435054, + 31.237327365774032, + 31.459382594292983 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 25.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 25.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 25.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 25.0, + 20.0 + ], + [ + 6.25, + 5.0 + ], + [ + 6.25, + 10.0 + ], + [ + 6.25, + 15.0 + ], + [ + 6.25, + 20.0 + ], + [ + 12.5, + 5.0 + ], + [ + 12.5, + 10.0 + ], + [ + 12.5, + 15.0 + ], + [ + 12.5, + 20.0 + ], + [ + 18.75, + 5.0 + ], + [ + 18.75, + 10.0 + ], + [ + 18.75, + 15.0 + ], + [ + 18.75, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351741150557777, + 3.188201784120751, + 3.536782868923097, + 4.144645580393933, + 5.01886927555272, + 6.728924719531885, + 9.522575544097627, + 12.589190471569879, + 17.725976251919075, + 21.250372436466716, + 23.887991507679097, + 27.673540457486407, + 30.327361542509067, + 36.22122252359086, + 41.10541421035352, + 42.42549796572394, + 43.594300765278994, + 44.720019294372655, + 45.580190355603946, + 46.312414396459246, + 46.936708814148865, + 47.45463844935966, + 47.84027116776664, + 48.27891324197053, + 48.57868906172096, + 48.726179434301606, + 48.96650580010713 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961542, + 1.4813847491413081, + 1.8198213217004324, + 2.1114679242247236, + 2.4511928332146113, + 2.788421071278395, + 3.045133907810344, + 3.3937840236783643, + 3.6425716224381373, + 3.860738471915272, + 4.257992843433281, + 4.61939949926218, + 5.838110985044108, + 7.592761317218409, + 8.256133419332675, + 8.94310877084039, + 9.709525863066458, + 10.382306987593262, + 11.017322654445692, + 11.614360455559124, + 12.152303777403162, + 12.576173890659984, + 13.080831411913557, + 13.438085057188047, + 13.618217808315103, + 13.91643872474511 + ], + "5._384._0.0875": [ + 3.5121322098601375, + 4.166158984318862, + 5.113915675617301, + 6.967357572562658, + 9.477656269697185, + 13.764440632344735, + 19.596439144576543, + 24.95533600005937, + 32.48512352300956, + 36.99306821856324, + 40.13658661604164, + 44.398782637275026, + 47.26540328187977, + 53.42366059000222, + 58.43872889229391, + 59.788155662644456, + 60.989098536658034, + 62.14905297756626, + 63.04004149026736, + 63.79981546465467, + 64.45038703425617, + 64.99228851031604, + 65.39623517267565, + 65.85698406663914, + 66.17183013551939, + 66.32652555901849, + 66.57788916685854 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125416, + 2.1622431316564787, + 2.506080869310498, + 2.800135841710073, + 3.1436650244408875, + 3.5235296425180116, + 3.921770325545484, + 4.7429119609929975, + 5.472330057550385, + 6.13360558613027, + 7.3069390921314, + 8.318537229913051, + 11.317958977222439, + 14.801924508214091, + 15.923449984789034, + 16.98546941971741, + 18.068376071397804, + 18.934425201284142, + 19.690514282196283, + 20.347951175278318, + 20.899494577255695, + 21.310945768090956, + 21.776375643870068, + 22.09374863555352, + 22.250319929163066, + 22.5061199424345 + ], + "5._96._0.075": [ + 2.2092718103274067, + 2.555323564534403, + 2.8519175717823138, + 3.2008787068774653, + 3.5350369181149657, + 4.097841708816732, + 5.071835596895357, + 6.278473551974097, + 8.67419852204336, + 10.611135153624527, + 12.226350902887427, + 14.811105095228866, + 16.81275381204515, + 21.831324538462397, + 26.49281670264317, + 27.811738690938963, + 28.992628832743602, + 30.139969727358068, + 31.02022103400606, + 31.76940549930693, + 32.40701247365242, + 32.93431972700949, + 33.32575945323543, + 33.76856686016321, + 34.07062004741964, + 34.21931675574269, + 34.46199677992251 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 25.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 25.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 25.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 25.0, + 20.0 + ], + [ + 12.5, + 12.5 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169796844573, + 3.187353470562797, + 3.523457425367959, + 4.037500262195462, + 4.652891545846028, + 5.692031457524183, + 7.296978193950228, + 9.091715717952203, + 12.25585026582936, + 14.507030237838993, + 16.219006735637997, + 18.709974506245775, + 20.472865976608713, + 24.43126232193913, + 27.74484367924665, + 28.644230411895204, + 29.44204036196697, + 30.21182800150983, + 30.801307790507835, + 31.303253596985257, + 31.73169334934982, + 32.08743510955193, + 32.35226156482159, + 32.65348680405597, + 32.859241586748084, + 32.960412270319786, + 33.1250588794945 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.4813847491413075, + 1.819821321700434, + 2.111467924224728, + 2.4511928331899906, + 2.788420275075227, + 3.0450320026295232, + 3.3887617742303515, + 3.6196986874257147, + 3.80719754195939, + 4.116195907366271, + 4.37039714862068, + 5.13128447019476, + 6.1465409439581284, + 6.527869802334831, + 6.92985042914817, + 7.3886258815175205, + 7.80245988392942, + 8.202510006755443, + 8.588479689599913, + 8.945044582248984, + 9.231895025352822, + 9.581763369021441, + 9.83491534658852, + 9.964154261426858, + 10.180258059199142 + ], + "5._384._0.0875": [ + 3.4938721087806295, + 4.034101641566103, + 4.685664870391485, + 5.797766545777645, + 7.237184659946991, + 9.766669753171083, + 13.387846284931626, + 16.82818468557522, + 21.75932715051096, + 24.741140598721064, + 26.828358629222006, + 29.670506217132967, + 31.587642015451678, + 35.72388630618971, + 39.105097453475224, + 40.01640313223258, + 40.82798711494738, + 41.612487736296345, + 42.215673478354965, + 42.73004936953771, + 43.170704959572944, + 43.537885264550525, + 43.811547923097145, + 44.12366964626152, + 44.336879749169896, + 44.44159958881485, + 44.611640941421044 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125407, + 2.162243131656477, + 2.5060808691838004, + 2.8001351445905818, + 3.143373510019962, + 3.5136828385651424, + 3.8653653507402477, + 4.47465597980367, + 4.943394649907056, + 5.340615329664317, + 6.019048003874134, + 6.596485022559555, + 8.361147140715069, + 10.541185859264997, + 11.271933834956048, + 11.976275829839093, + 12.705357534529503, + 13.297690506899421, + 13.819621978295167, + 14.278353837522017, + 14.666699447302637, + 14.957963481790621, + 15.289475838829004, + 15.516293966817557, + 15.628286510203935, + 15.810978898538036 + ], + "5._96._0.075": [ + 2.2092718103274063, + 2.5553235639559273, + 2.8519157790520264, + 3.200371094180022, + 3.525522642248139, + 4.012286085802932, + 4.703913221044723, + 5.445213243922704, + 6.825843373478874, + 7.942180249466224, + 8.895148297291602, + 10.472432845954172, + 11.729146965214928, + 14.990393669054896, + 18.116126752109675, + 19.012710001738913, + 19.81957861941644, + 20.607216818119344, + 21.214736734478958, + 21.732833614377906, + 22.175201457437705, + 22.541965874885648, + 22.814372594050624, + 23.12279815350336, + 23.333128372347044, + 23.436600313406167, + 23.605159232087694 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 25.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 25.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 25.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 25.0, + 20.0 + ], + [ + 8.33333333333333, + 12.5 + ], + [ + 16.6666666666667, + 12.5 + ] + ], + "g": { + "5._192._0.08": [ + 2.835166959444571, + 3.187126061804506, + 3.521542669427986, + 4.030849459640759, + 4.648786026380797, + 5.726049115510968, + 7.436067002389321, + 9.358829854458694, + 12.721815767516153, + 15.09662294690483, + 16.89617534461606, + 19.50702815019734, + 21.351368675325546, + 25.484477753006043, + 28.938337400089086, + 29.875123982964503, + 30.705872907174232, + 31.507208208061435, + 32.120632510983555, + 32.64294075817109, + 33.08868069810456, + 33.45873735891513, + 33.73422738149106, + 34.04758174965824, + 34.26163874606258, + 34.36690154973292, + 34.538240823095485 + ], + "5._24._0.075": [ + 0.8740059532267969, + 1.1958031759615408, + 1.4813847491413077, + 1.8198213217004344, + 2.1114679242247263, + 2.451192833143698, + 2.788419622271781, + 3.0449917707528673, + 3.3878515107071303, + 3.616958072420745, + 3.802576841118557, + 4.109568659212579, + 4.364665696032136, + 5.147247424879052, + 6.223865549509686, + 6.6324010733361005, + 7.063431947836093, + 7.554347222433416, + 7.995532649991077, + 8.420213392997468, + 8.828068103699257, + 9.203136282454324, + 9.503710520789719, + 9.868755472316037, + 10.131908708385241, + 10.265965593905529, + 10.489706268021774 + ], + "5._384._0.0875": [ + 3.4914439250214255, + 4.026947507489263, + 4.683557796363836, + 5.841545409342196, + 7.376825267694742, + 10.084040775638162, + 13.925762666087689, + 17.54937895263452, + 22.720740147749453, + 25.841628158831185, + 28.02467616571294, + 30.995106487586213, + 32.9977705885531, + 37.315503493910555, + 40.84287038876386, + 41.793312559033545, + 42.63965893162262, + 43.45765988214436, + 44.08650619302783, + 44.62276120485642, + 45.08212593939381, + 45.46487471638152, + 45.75014792417171, + 46.07551593268654, + 46.29778693785856, + 46.40696345187964, + 46.58426074394035 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125405, + 2.162243131656477, + 2.506080868963746, + 2.8001345621470604, + 3.1432779378756663, + 3.5121591316188434, + 3.8605036845125844, + 4.468626368934475, + 4.946768262689237, + 5.359256469304684, + 6.07555438879206, + 6.692023493127531, + 8.58111437140613, + 10.894332720277589, + 11.664049772499713, + 12.403049072968535, + 13.16575415401044, + 13.783587355103505, + 14.327059949346829, + 14.803834486710809, + 15.206828762956308, + 15.5088002667746, + 15.852135378456786, + 16.086891299255736, + 16.202776867626934, + 16.39184269551067 + ], + "5._96._0.075": [ + 2.209271810327407, + 2.555323563035406, + 2.8519144504419645, + 3.2002208820722746, + 3.5240306232204843, + 4.006246524504991, + 4.700112173914175, + 5.465447479777289, + 6.930360301465915, + 8.127164426503366, + 9.147725306726052, + 10.827909153131886, + 12.159139216374856, + 15.58844327762249, + 18.85495112779507, + 19.789504817963735, + 20.62981092667169, + 21.44943912209259, + 22.081069363863456, + 22.61955196709948, + 23.079079466901884, + 23.459911813352562, + 23.742738913518593, + 24.0629116811368, + 24.281257192330685, + 24.38868226066476, + 24.56372901073838 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 25.0 + ], + [ + 25.0, + 0.0 + ], + [ + 25.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 25.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 25.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 25.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 25.0, + 20.0 + ], + [ + 8.33333333333333, + 8.33333333333333 + ], + [ + 8.33333333333333, + 16.6666666666667 + ], + [ + 16.6666666666667, + 8.33333333333333 + ], + [ + 16.6666666666667, + 16.6666666666667 + ] + ], + "g": { + "5._192._0.08": [ + 2.835161994018188, + 3.1867285494020567, + 3.5182682755088077, + 4.021923473347687, + 4.6580500203737465, + 5.838255827353698, + 7.770332734646656, + 9.939938246997276, + 13.68108576060219, + 16.294861104024406, + 18.265908235939833, + 21.114053501581818, + 23.120594580391444, + 27.603575916198054, + 31.339555667922774, + 32.35170107696498, + 33.24884463607722, + 34.113811514631465, + 34.775568537083224, + 35.33898472884404, + 35.819664596564806, + 36.2186408435436, + 36.51567325342579, + 36.85353145206576, + 37.08435855206386, + 37.197885803734145, + 37.382736721524154 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.195803175961541, + 1.4813847491413077, + 1.819821321700434, + 2.111467924224724, + 2.4511928330626858, + 2.7884184798660177, + 3.0449213723432558, + 3.386272086844316, + 3.612371960284729, + 3.7954013995158458, + 4.102367809678669, + 4.364697844821755, + 5.211200118889425, + 6.422984852754772, + 6.885911137016102, + 7.372979366698515, + 7.924669808813616, + 8.416983242944593, + 8.887693672262053, + 9.33656857827997, + 9.746541627845208, + 10.073220991494182, + 10.467398066508945, + 10.74990403365967, + 10.893335552675072, + 11.132041319004049 + ], + "5._384._0.0875": [ + 3.4873367432842857, + 4.018207771748884, + 4.7000024546386046, + 5.976810595157205, + 7.713178471133877, + 10.761442780989807, + 15.024526691176199, + 19.005518683635533, + 24.65310890152398, + 28.051578304455536, + 30.42626334683797, + 33.65367350214828, + 35.82786296312993, + 40.51004833908344, + 44.331289314956464, + 45.360464409109866, + 46.27675674846065, + 47.16217917761799, + 47.84268249800007, + 48.422982564602385, + 48.92001536690708, + 49.334111590185145, + 49.64276163233187, + 49.99479904488206, + 50.23531081555423, + 50.35345821684595, + 50.54535828740111 + ], + "5._48._0.075": [ + 1.5268463243731447, + 1.8679037053125414, + 2.1622431316564765, + 2.5060808685786515, + 2.800133542871085, + 3.143110744596121, + 3.5095378426547095, + 3.852963815030337, + 4.469053809960684, + 4.978866363319574, + 5.432474229509403, + 6.2366154207254985, + 6.934925549431722, + 9.064468400964756, + 11.629172308067126, + 12.473094748647227, + 13.27894031600619, + 14.107104603203977, + 14.775043063091477, + 15.361097386750446, + 15.873740496243576, + 16.30599822687034, + 16.629426236722082, + 16.996542097121935, + 17.24731421196278, + 17.371069167880815, + 17.573032996245207 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.555323561424493, + 2.85191212537586, + 3.1999581798412042, + 3.521461467896855, + 3.997578177857924, + 4.71011245759202, + 5.543573264133778, + 7.193898948740402, + 8.54924277237596, + 9.698754074121961, + 11.573493205488408, + 13.046651316440416, + 16.802912375783333, + 20.348979441699278, + 21.359608290012453, + 22.267074319358514, + 23.151090156788253, + 23.831366746994174, + 24.411012273465058, + 24.90523995340782, + 25.31455477345712, + 25.618488220391804, + 25.962469550798595, + 26.19706377111836, + 26.312502319240625, + 26.500694784938972 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_10": { + "1_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 45.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 45.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 45.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 15.0, + 40.0 + ], + [ + 7.5, + 15.0 + ], + [ + 7.5, + 30.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351678770340913, + 3.187203104382345, + 3.522386192610618, + 4.037644694718695, + 4.673578709604122, + 5.7983146022612155, + 7.603654679324664, + 9.632848289977494, + 13.156072165135793, + 15.650405563561284, + 17.55636453667185, + 20.35511412696446, + 22.360997487068033, + 26.938270637682596, + 30.836357031080663, + 31.90184818802942, + 32.84776801643635, + 33.76074258651302, + 34.459077454566334, + 35.05371043597777, + 35.560641086434345, + 35.98103068909282, + 36.29392449529091, + 36.64955433201961, + 36.89255564214934, + 37.012131456346886, + 37.20703600902331 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.195803175961542, + 1.481384749141308, + 1.8198213217004335, + 2.1114679242247227, + 2.451192833158653, + 2.78841983323319, + 3.0450049095899128, + 3.388199423767682, + 3.6183610819413583, + 3.805862950545615, + 4.11871307447355, + 4.381195107539685, + 5.195738689277346, + 6.329908941435329, + 6.762557831033205, + 7.2177417967052095, + 7.73416226489339, + 8.196351887772328, + 8.640051514907727, + 9.065709557712205, + 9.457729057699241, + 9.773236814575467, + 10.159544064968793, + 10.441915361798772, + 10.587725277730891, + 10.835246690551008 + ], + "5._384._0.0875": [ + 3.492592222653354, + 4.035469378288333, + 4.712762211401826, + 5.923803052689403, + 7.545631082222761, + 10.399049968553218, + 14.42350381787265, + 18.249349544690762, + 23.82767864178811, + 27.27376398858085, + 29.717148778493506, + 33.075215788520616, + 35.357041013239325, + 40.300503068949965, + 44.34828573433241, + 45.43918110145337, + 46.40939157704897, + 47.34610163521083, + 48.064954722702566, + 48.67774256903446, + 49.20202473753273, + 49.6383805095947, + 49.96354977443299, + 50.33421830764943, + 50.58747796787222, + 50.711929413807795, + 50.91423264452495 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125418, + 2.162243131656476, + 2.5060808690348417, + 2.80013475036511, + 3.143309521066824, + 3.5127965215955106, + 3.863974296463465, + 4.486604082089243, + 4.982746594064645, + 5.413663282144735, + 6.167059241861282, + 6.818833682777793, + 8.811661004165328, + 11.230949978540588, + 12.036222045319814, + 12.81264744366665, + 13.619108116184771, + 14.277797669730843, + 14.862469808347715, + 15.380094062450969, + 15.8215981618673, + 16.155162196932647, + 16.537299582558646, + 16.800502987875287, + 16.93113242808027, + 17.14541988705934 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.555323563332805, + 2.851914879896113, + 3.2002710518186834, + 3.524649323332277, + 4.011604574127139, + 4.725060374305544, + 5.522819708882828, + 7.0666649386731395, + 8.332620224225225, + 9.407894644379649, + 11.169033013887182, + 12.561850103955042, + 16.171380461438638, + 19.68873152009175, + 20.71511895481482, + 21.645446300941547, + 22.55948862554413, + 23.267652029185992, + 23.873937078464845, + 24.392653967735285, + 24.823227713955056, + 25.14337881084555, + 25.505920737962217, + 25.753453834459645, + 25.87542195746399, + 26.074578397764597 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 45.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 45.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 45.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 15.0, + 40.0 + ], + [ + 7.5, + 11.25 + ], + [ + 7.5, + 22.5 + ], + [ + 7.5, + 33.75 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351656361222255, + 3.187024948080456, + 3.5209862388153255, + 4.034013116813729, + 4.677455082372498, + 5.849133112312294, + 7.755318431660023, + 9.890794121920335, + 13.575399355220691, + 16.173936252121358, + 18.156043190873206, + 21.06220370072595, + 23.142847104488876, + 27.884548050452857, + 31.91762048679873, + 33.01940931606773, + 33.99731484862593, + 34.940942106874786, + 35.662521952949945, + 36.27691720194367, + 36.80061762350469, + 37.234865418333264, + 37.55807806376907, + 37.925434044367975, + 38.17646209856086, + 38.29999629754041, + 38.50138298785755 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.1958031759615417, + 1.4813847491413072, + 1.8198213217004335, + 2.111467924224724, + 2.451192833122093, + 2.788419317672888, + 3.044973164207352, + 3.387507927002255, + 3.6164379710040464, + 3.8029281095924077, + 4.115777905312539, + 4.38121966487534, + 5.224460060161017, + 6.420705371418165, + 6.877225913579602, + 7.356526426614499, + 7.898743315081809, + 8.382500047654272, + 8.845640944459424, + 9.288766555006271, + 9.695843526165483, + 10.022784441946351, + 10.422104884397923, + 10.713326573420561, + 10.863495876028312, + 11.118092822266568 + ], + "5._384._0.0875": [ + 3.490850097760196, + 4.0318959284235625, + 4.719722441502121, + 5.985285945852858, + 7.698227567670065, + 10.698350249160786, + 14.903454724197449, + 18.88688614458819, + 24.682193260808123, + 28.25815135172602, + 30.792415131600503, + 34.27355040960854, + 36.6381245635602, + 41.758081292285624, + 45.94833886211054, + 47.07738834839765, + 48.081441796514525, + 49.05072809207839, + 49.79448673331989, + 50.428500375986275, + 50.97090852806126, + 51.42232907475172, + 51.758730220781814, + 52.14220492055053, + 52.40422491618174, + 52.532986754472724, + 52.74231447028009 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.867903705312541, + 2.162243131656476, + 2.506080868861052, + 2.8001342903733684, + 3.143234256462221, + 3.5116667609400714, + 3.860889437894991, + 4.486753771733694, + 4.996744411435726, + 5.4465388998272175, + 6.240640564512636, + 6.929444078174934, + 9.026340723224513, + 11.552432476312108, + 12.389879783539952, + 13.195654682977995, + 14.031261356280387, + 14.712625299052661, + 15.316815117996349, + 15.851080690611363, + 16.30630198387537, + 16.649998262325433, + 17.043433315263254, + 17.31428037686844, + 17.44867974413096, + 17.669171074427954 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.55532356260583, + 2.8519138305976277, + 3.2001530057569543, + 3.5235404547940887, + 4.008077423743671, + 4.729252801227716, + 5.557867937557266, + 7.1868267517538325, + 8.522068283222069, + 9.652367214843688, + 11.496174945162926, + 12.949799061851493, + 16.70288971526793, + 20.34787882790473, + 21.409824172741256, + 22.37180116202632, + 23.31639088199254, + 24.04774215673705, + 24.673703756862388, + 25.20903268299679, + 25.653248363737035, + 25.983509625612303, + 26.357449118864697, + 26.61276513891031, + 26.738576587925884, + 26.944051713784535 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 45.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 45.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 45.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 15.0, + 40.0 + ], + [ + 7.5, + 9.0 + ], + [ + 7.5, + 18.0 + ], + [ + 7.5, + 27.0 + ], + [ + 7.5, + 36.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351635560231028, + 3.1868605588199936, + 3.5197205913108403, + 4.032107242001262, + 4.689338878527329, + 5.91609480880366, + 7.922253915757673, + 10.160096426745977, + 14.001413090730017, + 16.702254949827044, + 18.759607185751136, + 21.772506119751476, + 23.92772063223086, + 28.834066860608974, + 33.002802453366954, + 34.14113058681058, + 35.15124783055476, + 36.12576249815349, + 36.87078114349018, + 37.50510633494238, + 38.045724974760674, + 38.49395750325177, + 38.82758313964832, + 39.206772640817924, + 39.46590015636077, + 39.59342809866077, + 39.80135294570721 + ], + "5._24._0.075": [ + 0.8740059532267972, + 1.195803175961542, + 1.4813847491413068, + 1.819821321700434, + 2.1114679242247245, + 2.4511928330881454, + 2.788418838991739, + 3.0449437600352103, + 3.3868740697677913, + 3.614747482984892, + 3.8006674151577635, + 4.115444984478436, + 4.386504042271237, + 5.265733384598827, + 6.524783968340328, + 7.004425473169085, + 7.506774872728131, + 8.073604647270159, + 8.577977982286157, + 9.059798842863906, + 9.51978681456353, + 9.941476651419094, + 10.279569957702828, + 10.69165889414753, + 10.99161949293673, + 11.146114753556537, + 11.407770722701125 + ], + "5._384._0.0875": [ + 3.4892939796677114, + 4.030635017056702, + 4.736043916495476, + 6.063527176779256, + 7.866415278594892, + 11.007875585768776, + 15.388988503159649, + 19.52775261238041, + 25.538795529662384, + 29.244445827673154, + 31.869591494053402, + 35.47397542769371, + 37.9215051931922, + 43.21861066321695, + 47.55203257966306, + 48.71943936588378, + 49.75752145485119, + 50.759569336005676, + 51.52838123548475, + 52.18374698171809, + 52.74439109338012, + 53.210969105089156, + 53.55867086993404, + 53.95502987668618, + 54.225862998831566, + 54.35896086868168, + 54.575353797671625 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.867903705312544, + 2.162243131656476, + 2.506080868699677, + 2.8001338632808253, + 3.143164655456349, + 3.510638967804544, + 3.8585184426402126, + 4.492642614636155, + 5.021737618185604, + 5.49347359507956, + 6.329921355527415, + 7.0551238409688874, + 9.251988703264695, + 11.881422706854497, + 12.750258944498459, + 13.584886328706059, + 14.449291652536255, + 15.153187777777209, + 15.776834175131558, + 16.327756162580872, + 16.796757620760825, + 17.150658517689426, + 17.555506589664958, + 17.83409534402867, + 17.9723180031298, + 18.199104546727167 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.555323561930778, + 2.8519128564395615, + 3.2000439594040633, + 3.5225307524244815, + 4.005814523066644, + 4.7414980075047355, + 5.607630458326129, + 7.32271778382067, + 8.724816945943555, + 9.908004214095989, + 11.831726220630527, + 13.344581855787995, + 17.239207552480483, + 21.01143808937249, + 22.109051952021158, + 23.102812875261662, + 24.078134793501565, + 24.83286210952034, + 25.478676112549575, + 26.03078719570263, + 26.488798958262176, + 26.829288701497706, + 27.214765084232244, + 27.47796061871905, + 27.607662963049794, + 27.81953251968545 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 45.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 45.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 45.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 15.0, + 40.0 + ], + [ + 7.5, + 7.5 + ], + [ + 7.5, + 15.0 + ], + [ + 7.5, + 22.5 + ], + [ + 7.5, + 30.0 + ], + [ + 7.5, + 37.5 + ] + ], + "g": { + "5._192._0.08": [ + 2.835161620655716, + 3.186714164706971, + 3.518923274277485, + 4.034882614599873, + 4.712337028031814, + 5.996653562783168, + 8.100196386843407, + 10.437882598893097, + 14.433411289250628, + 17.23558228492764, + 19.367725599534957, + 22.487054060459148, + 24.71678438807135, + 29.788115117876746, + 34.09316666974313, + 35.26825628601343, + 36.3107983151342, + 37.31642013521224, + 38.085057899286355, + 38.739468885106504, + 39.29714330383202, + 39.75947756596832, + 40.10360311832303, + 40.494725153725774, + 40.762019013040515, + 40.8935731386113, + 41.10808737729355 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.1958031759615424, + 1.4813847491413064, + 1.819821321700434, + 2.1114679242247245, + 2.4511928330565396, + 2.788418393396161, + 3.044916623602905, + 3.386383022259411, + 3.6139655615958253, + 3.800759573012226, + 4.120925973652803, + 4.400352671282769, + 5.318832080391656, + 6.639315935398341, + 7.1414315425878945, + 7.666156823494527, + 8.256935418552585, + 8.781426729753676, + 9.281543235871924, + 9.758093118980138, + 10.19417830863132, + 10.543290644326742, + 10.968042447200931, + 11.27670151695284, + 11.435515779773642, + 11.704247956122467 + ], + "5._384._0.0875": [ + 3.4884358615850313, + 4.035035316977999, + 4.7643308441318775, + 6.15531904551955, + 8.045716368414126, + 11.325104050390625, + 15.879731508460347, + 20.17262797246179, + 26.39873885746621, + 30.234008778965297, + 32.95009128746662, + 36.67793716673272, + 39.208633217920564, + 44.683529484393844, + 49.16077596220922, + 50.366733238268274, + 51.43902110533669, + 52.4740071341705, + 53.26801290063592, + 53.94485085183249, + 54.523835443843296, + 55.0056589763188, + 55.36472659594133, + 55.77404403681144, + 56.053740289932996, + 56.1911984375536, + 56.414695005325555 + ], + "5._48._0.075": [ + 1.5268463243731383, + 1.867903705312542, + 2.162243131656476, + 2.5060808685494314, + 2.800133465700251, + 3.143101119971846, + 3.5099360751938935, + 3.8586361554073076, + 4.507768693808951, + 5.0590176636099775, + 5.553452701863523, + 6.431554858476458, + 7.192114226176439, + 9.486247212369511, + 12.2173010322916, + 13.117154609354174, + 13.98042207428779, + 14.873501527377623, + 15.59990044907304, + 16.24302223649712, + 16.810658580122343, + 17.293522173054974, + 17.657707010250686, + 18.074082752774267, + 18.360504686241068, + 18.502599171340936, + 18.735763050827252 + ], + "5._96._0.075": [ + 2.2092718103273987, + 2.5553235613022864, + 2.8519119497526675, + 3.199945439442421, + 3.52183122284598, + 4.007339127654402, + 4.764782187573331, + 5.670877705981988, + 7.470208563893063, + 8.937357856425189, + 10.172207752512493, + 12.174388559492497, + 13.745681845241307, + 17.780902086806435, + 21.68033370914506, + 22.81372495578746, + 23.839419373680943, + 24.845659318571087, + 25.62393902331952, + 26.289769817669246, + 26.8588188888362, + 27.330766353691228, + 27.68159143467572, + 28.07872997918935, + 28.34989130021944, + 28.48352681492243, + 28.701857823245977 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 45.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 45.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 45.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 15.0, + 40.0 + ], + [ + 7.5, + 6.428571428571429 + ], + [ + 7.5, + 12.857142857142902 + ], + [ + 7.5, + 19.2857142857143 + ], + [ + 7.5, + 25.714285714285698 + ], + [ + 7.5, + 32.1428571428571 + ], + [ + 7.5, + 38.5714285714286 + ] + ], + "g": { + "5._192._0.08": [ + 2.835160005230006, + 3.186662904296333, + 3.5195748866531407, + 4.044406646054083, + 4.746256672555482, + 6.089172092328113, + 8.288313005919427, + 10.723745454937479, + 14.871373543474038, + 17.774089385684924, + 19.980682831455056, + 23.2062503166704, + 25.510511679100386, + 30.747261932039706, + 35.189332408109856, + 36.40141531727292, + 37.47660221398872, + 38.51355724750479, + 39.30599917723617, + 39.98065582067375, + 40.555527094268136, + 41.03208312085917, + 41.38679785206491, + 41.789954216879565, + 42.065483277579844, + 42.2010970183589, + 42.42225351798755 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615433, + 1.481384749141307, + 1.8198213217004335, + 2.1114679242247254, + 2.451192833027072, + 2.7884180018436724, + 3.0448992918890783, + 3.38647363082194, + 3.6154534949064674, + 3.8051222697937774, + 4.133804202688418, + 4.4233559228210835, + 5.382606464132685, + 6.7635979556291925, + 7.287642704379621, + 7.834172459136975, + 8.448324726317784, + 8.992500819181938, + 9.510580056680364, + 10.003441351585366, + 10.453751018670488, + 10.813784753790841, + 11.25113618921337, + 11.568487722011305, + 11.731632086847847, + 12.00748376210186 + ], + "5._384._0.0875": [ + 3.489512186776227, + 4.047015449671006, + 4.803976265722696, + 6.259008800910596, + 8.235204797309057, + 11.649730500063, + 16.375762628511932, + 20.82183436117685, + 27.262561726970592, + 31.22747328654464, + 34.03459188023991, + 37.88615580910577, + 40.500251147855074, + 46.153615972657676, + 50.77537109876196, + 52.020078252806854, + 53.12675475973348, + 54.19486126773863, + 55.014206242668024, + 55.71264066493645, + 56.31007401952474, + 56.80723442044639, + 57.17773565464799, + 57.60008864100305, + 57.8887001183237, + 58.03054382690227, + 58.261184142112945 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125422, + 2.162243131656476, + 2.5060808684094953, + 2.8001331151772577, + 3.143068084973163, + 3.5103330340556393, + 3.86325374095028, + 4.532630842606958, + 5.107569267121991, + 5.625032473158483, + 6.544285048621042, + 7.3394637783870085, + 9.728725828907596, + 12.559934298308246, + 13.490525956837478, + 14.382293271459442, + 15.30398583860215, + 16.052909057899132, + 16.71556202567238, + 17.30000187848923, + 17.796833954496535, + 18.171398882025, + 18.599433842021835, + 18.893790817627078, + 19.039810216866737, + 19.279439797716158 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323560717895, + 2.851911169121818, + 3.19990212527128, + 3.5221990740854023, + 4.0147697378103135, + 4.798865118995367, + 5.746050551883711, + 7.6283412435200475, + 9.159083633288898, + 10.444537445493907, + 12.523952052202374, + 14.153026442182146, + 18.328131266300915, + 22.35488326182843, + 23.52420491230343, + 24.58200360385768, + 25.619364859046286, + 26.42138472829594, + 27.107404858195615, + 27.693553867169992, + 28.179581147278082, + 28.54085148325561, + 28.94978068055524, + 29.228996158113734, + 29.36660812227774, + 29.591469203218896 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 45.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 45.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 45.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 15.0, + 40.0 + ], + [ + 5.0, + 6.428571428571429 + ], + [ + 5.0, + 12.857142857142902 + ], + [ + 5.0, + 19.2857142857143 + ], + [ + 5.0, + 25.714285714285698 + ], + [ + 5.0, + 32.1428571428571 + ], + [ + 5.0, + 38.5714285714286 + ], + [ + 10.0, + 6.428571428571429 + ], + [ + 10.0, + 12.857142857142902 + ], + [ + 10.0, + 19.2857142857143 + ], + [ + 10.0, + 25.714285714285698 + ], + [ + 10.0, + 32.1428571428571 + ], + [ + 10.0, + 38.5714285714286 + ] + ], + "g": { + "5._192._0.08": [ + 2.835176775197096, + 3.188424002517178, + 3.5385646362579575, + 4.15049454348057, + 5.025426141305681, + 6.723407944181103, + 9.47671869577091, + 12.48243710950514, + 17.52953554101715, + 21.032119566236076, + 23.68450026599686, + 27.547789644884585, + 30.29993540079288, + 36.53208069993229, + 41.79955585947738, + 43.23459990725297, + 44.506600748677485, + 45.73251275687289, + 46.66855707400283, + 47.46535679050132, + 48.14399777760479, + 48.706384104004165, + 49.12500412629316, + 49.60078787967758, + 49.92601096250928, + 50.08611866764611, + 50.3473422057165 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.195803175961542, + 1.4813847491413084, + 1.8198213217004344, + 2.1114679242247245, + 2.451192833250311, + 2.788421664254476, + 3.0451732161827962, + 3.394651980074972, + 3.645071212750743, + 3.864827614607712, + 4.263969130587157, + 4.625613032852822, + 5.837571386101098, + 7.5688580840623505, + 8.219578791193824, + 8.892169255289756, + 9.641917752036012, + 10.300737742236498, + 10.923948402492963, + 11.512620053474043, + 12.046753731012476, + 12.471324444334638, + 12.983340463339296, + 13.352290926495138, + 13.541179585016998, + 13.859487965154075 + ], + "5._384._0.0875": [ + 3.514345158505229, + 4.172499903033542, + 5.120041558600355, + 6.958767253063125, + 9.432047832065766, + 13.636040562426736, + 19.378584242433114, + 24.74032403634576, + 32.46883598897509, + 37.21256361249055, + 40.56680190122649, + 45.162207796671105, + 48.27786796128133, + 55.005091457907504, + 60.49680973948958, + 61.974848129056156, + 63.288622528304636, + 64.55621442834008, + 65.52820261256636, + 66.35673455078647, + 67.06531238358593, + 67.6548751170393, + 68.09425992215911, + 68.59514650365112, + 68.93746458916728, + 69.10572561619124, + 69.37939219488 + ], + "5._48._0.075": [ + 1.5268463243731378, + 1.8679037053125447, + 2.162243131656481, + 2.5060808694830623, + 2.800136369175071, + 3.143758715957318, + 3.524959524691439, + 3.9260663520447445, + 4.749615649939926, + 5.476275829466319, + 6.132215233459897, + 7.291456215059053, + 8.286877915710974, + 11.228818379480328, + 14.651298125841073, + 15.764489557051013, + 16.826490953267683, + 17.919512838006792, + 18.803562127819287, + 19.58353279542353, + 20.269031280400057, + 20.84997232389805, + 21.287087231216905, + 21.785464949810812, + 22.12773906445087, + 22.297469975138682, + 22.57616938802999 + ], + "5._96._0.075": [ + 2.2092718103274014, + 2.5553235652697874, + 2.8519187973268236, + 3.2010258501476656, + 3.5364389623839463, + 4.103141339420617, + 5.0782483788700175, + 6.277224105299635, + 8.64165768801305, + 10.541836432542265, + 12.123205993848398, + 14.657711097022641, + 16.629769833695114, + 21.641814471957666, + 26.434077911202795, + 27.81977064192598, + 29.071097476800887, + 30.29616792099115, + 31.24147604415653, + 32.049389134904324, + 32.73883079900573, + 33.30994494663247, + 33.73434720643926, + 34.214556479668005, + 34.542462013828, + 34.70410965141771, + 34.968428870578606 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 45.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 45.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 45.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 15.0, + 40.0 + ], + [ + 5.0, + 5.625 + ], + [ + 5.0, + 11.25 + ], + [ + 5.0, + 16.875 + ], + [ + 5.0, + 22.5 + ], + [ + 5.0, + 28.125 + ], + [ + 5.0, + 33.75 + ], + [ + 5.0, + 39.375 + ], + [ + 10.0, + 5.625 + ], + [ + 10.0, + 11.25 + ], + [ + 10.0, + 16.875 + ], + [ + 10.0, + 22.5 + ], + [ + 10.0, + 28.125 + ], + [ + 10.0, + 33.75 + ], + [ + 10.0, + 39.375 + ] + ], + "g": { + "5._192._0.08": [ + 2.83518875424044, + 3.1894044727093065, + 3.5474886159009147, + 4.194238623034052, + 5.132022736413438, + 6.951492103023742, + 9.887710930929993, + 13.079394961108616, + 18.420717262587083, + 22.120491412312496, + 24.919902524332088, + 28.994183055323287, + 31.8948874798597, + 38.4580761446523, + 44.00084216951961, + 45.51034131337594, + 46.848085516954214, + 48.13714022007107, + 49.12118915820559, + 49.95882422158708, + 50.672164359209646, + 51.26325499631834, + 51.703247024582744, + 52.20332004140872, + 52.545162129730535, + 52.71346096627351, + 52.988082169740295 + ], + "5._24._0.075": [ + 0.874005953226797, + 1.1958031759615426, + 1.4813847491413075, + 1.819821321700433, + 2.1114679242247223, + 2.451192833446817, + 2.7884244203720288, + 3.0453440956544027, + 3.3987226364461947, + 3.65848089731849, + 3.890463518488714, + 4.316509686976077, + 4.704403407802107, + 6.003725713462459, + 7.85087206836901, + 8.542618784412934, + 9.255871379152852, + 10.049262814724944, + 10.744938174851917, + 11.40197385126271, + 12.021507386069134, + 12.582694355172627, + 13.028138849834567, + 13.564378407966904, + 13.95014608852297, + 14.147459434893022, + 14.479730291942866 + ], + "5._384._0.0875": [ + 3.525744358183569, + 4.223489510841021, + 5.23954146883061, + 7.208722578181864, + 9.845826531495971, + 14.307549331403411, + 20.383203586105193, + 26.0466958477083, + 34.20166749926028, + 39.204106810914155, + 42.740311444277175, + 47.5833919669361, + 50.8662033722806, + 57.95161068675401, + 63.73372185028044, + 65.28966872979396, + 66.67259683418042, + 68.00680608395187, + 69.02977295764609, + 69.90175420480399, + 70.6474525971231, + 71.26787679980808, + 71.73026760932505, + 72.25738260410533, + 72.61763689892769, + 72.79472019928188, + 73.08275508708786 + ], + "5._48._0.075": [ + 1.5268463243731416, + 1.867903705312544, + 2.1622431316564827, + 2.5060808704165956, + 2.8001388283531705, + 3.1441669136357877, + 3.531953316020037, + 3.9529974045269953, + 4.8338622388333015, + 5.613796879752831, + 6.317064740194648, + 7.556363194396496, + 8.617525573670978, + 11.739376769859266, + 15.354354325255603, + 16.527216876939004, + 17.64504106335725, + 18.794393710518527, + 19.72301490459487, + 20.541756898050817, + 21.26073588935462, + 21.86960888861339, + 22.327535322986297, + 22.849367350567167, + 23.207649443896297, + 23.385310159103575, + 23.677084873579233 + ], + "5._96._0.075": [ + 2.209271810327406, + 2.555323569172173, + 2.8519244058871864, + 3.2016701636543443, + 3.5432693919810654, + 4.1400867262816226, + 5.184794055001499, + 6.470547229773009, + 8.99498201756996, + 11.015692212443394, + 12.693376095702334, + 15.376392892114996, + 17.460702549356192, + 22.748286470430315, + 27.794185974329107, + 29.251876428949995, + 30.56764203365003, + 31.85529771690469, + 32.848448177233934, + 33.697088386838615, + 34.42107278080083, + 35.02066149176546, + 35.466197905879774, + 35.970277686617365, + 36.31449180836029, + 36.484190646838066, + 36.761725781781486 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 45.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 45.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 45.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 45.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 25.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 15.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], + [ + 15.0, + 35.0 + ], + [ + 0.0, + 40.0 + ], + [ + 15.0, + 40.0 + ], + [ + 7.5, + 22.5 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351702959759977, + 3.187394003145829, + 3.523906714969534, + 4.042101842346096, + 4.673419228674303, + 5.760719849210829, + 7.469307131833088, + 9.388280062783728, + 12.744640100839767, + 15.13263928893941, + 16.961410696489146, + 19.651916152696984, + 21.582733729759422, + 25.9955885724961, + 29.759216089944164, + 30.788614751401713, + 31.702744035138686, + 32.585271210053435, + 33.26053249626298, + 33.835552023639615, + 34.32584530941383, + 34.732489993128596, + 35.03514930883426, + 35.37914933871069, + 35.61418913489421, + 35.729838254038356, + 35.91831076711161 + ], + "5._24._0.075": [ + 0.8740059532267971, + 1.1958031759615422, + 1.4813847491413066, + 1.8198213217004344, + 2.111467924224723, + 2.4511928331981374, + 2.7884203899486892, + 3.045039073925607, + 3.3889422910199327, + 3.6204790887830414, + 3.8092194700114885, + 4.1227661109936955, + 4.383437751528868, + 5.176001622073817, + 6.2527827451554945, + 6.661223630500353, + 7.091325095216277, + 7.580674286554885, + 8.02020569387426, + 8.443582900320912, + 8.851071689511008, + 9.227507408300333, + 9.531241735501046, + 9.904214603744752, + 10.177553218672896, + 10.31893005641674, + 10.559294128263595 + ], + "5._384._0.0875": [ + 3.4944980181234353, + 4.040076629139527, + 4.7104207784436305, + 5.876945768467081, + 7.410726016994291, + 10.111801623784213, + 13.95033295493666, + 17.616086350510358, + 22.975924923226263, + 26.29181132113419, + 28.64424418203059, + 31.879336264505554, + 34.07856641453266, + 38.84608285430502, + 42.75199889140845, + 43.804921703634264, + 44.74145566756271, + 45.64575613040896, + 46.33983680617369, + 46.93151271790422, + 47.437768126306956, + 47.85914278703403, + 48.173142163327384, + 48.53107496797867, + 48.775621808989946, + 48.89578590569849, + 49.091101173412014 + ], + "5._48._0.075": [ + 1.5268463243731383, + 1.8679037053125402, + 2.1622431316564765, + 2.5060808692225307, + 2.8001352470846137, + 3.143390350550219, + 3.5140182127224504, + 3.867504625212205, + 4.488924707926055, + 4.974981055845373, + 5.39089878191324, + 6.108378565867456, + 6.724294554430576, + 8.609332888713816, + 10.91773358737474, + 11.689890383234074, + 12.436342316108187, + 13.213183814951975, + 13.848948140623474, + 14.413952377169938, + 14.914868459923449, + 15.342648564519955, + 15.666100881583064, + 16.036998960385645, + 16.29261951814996, + 16.419514964363284, + 16.627663727556303 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.55532356411794, + 2.8519160128189562, + 3.2003976708963284, + 3.5258475762718553, + 4.015791910412142, + 4.724641124486228, + 5.498441330770842, + 6.963555481103096, + 8.1586009642745, + 9.176494759796519, + 10.851642643198156, + 12.181832552799511, + 15.645449311189944, + 19.034457969844322, + 20.025301593887924, + 20.924049647711275, + 21.807670489987608, + 22.492790430837328, + 23.079539476381616, + 23.581785115107603, + 23.998847541607145, + 24.308989982515815, + 24.660255369464377, + 24.900090158402936, + 25.01825678492442, + 25.21116122696543 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_4": { + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 15.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 15.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 7.5, + 7.5 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351678798604345, + 3.1872177656117713, + 3.5232854354783685, + 4.052438428723101, + 4.737474926415511, + 5.977489432905987, + 7.856754647922466, + 9.757886641432913, + 12.65721965944212, + 14.489023102379893, + 15.799787506923897, + 17.621687420628838, + 18.867683164022797, + 21.602860244685026, + 23.86907055587442, + 24.48364661201678, + 25.03200961694053, + 25.563482964117686, + 25.973372450536573, + 26.32312358373291, + 26.623239533466247, + 26.873638232417136, + 27.060269509428625, + 27.27314400577993, + 27.418514658262378, + 27.48988549628561, + 27.605605098659062 + ], + "5._24._0.075": [ + 0.8740059532267966, + 1.1958031759615428, + 1.4813847491413072, + 1.8198213217004355, + 2.111467924224728, + 2.451192833158653, + 2.7884198333956856, + 3.0450054383047207, + 3.388423414909576, + 3.620332527088513, + 3.8120682594158315, + 4.140041187434159, + 4.422886678754824, + 5.321234989615849, + 6.5263437404866025, + 6.957686304348439, + 7.391567154083204, + 7.860314222708644, + 8.258606025392256, + 8.623043600790599, + 8.956058309223891, + 9.248420146003598, + 9.473772823909444, + 9.737610667646901, + 9.921562602400382, + 10.01322191695006, + 10.163325953713956 + ], + "5._384._0.0875": [ + 3.493996636696855, + 4.054659256266985, + 4.78875306945473, + 6.121025206876537, + 7.80352951065869, + 10.433901019383976, + 13.640941694839348, + 16.331370561092573, + 19.87431599525205, + 21.916007808617138, + 23.320390687400792, + 25.218451029282615, + 26.493354059266988, + 29.259069977783355, + 31.540586806336844, + 32.158670408518, + 32.711800316168194, + 33.24870064288903, + 33.66382260617443, + 34.018254057586034, + 34.32297815575483, + 34.577691682824415, + 34.76761085869214, + 34.98452514114636, + 35.13260942703353, + 35.205247646838394, + 35.322859512661175 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125465, + 2.1622431316564756, + 2.5060808690348377, + 2.8001347504925422, + 3.143312305355372, + 3.5133861797008517, + 3.8705310824159427, + 4.531769197972898, + 5.077899785965173, + 5.55462300227648, + 6.3711748012195075, + 7.048675915142177, + 8.939167539808523, + 10.931806169001842, + 11.533159553013329, + 12.089419777562865, + 12.64489905654875, + 13.083338715281778, + 13.462104966217911, + 13.790303957182326, + 14.065688463472014, + 14.271267984243181, + 14.505221390976585, + 14.665007991014143, + 14.743623198045242, + 14.871293402214993 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.555323563332806, + 2.8519148805355723, + 3.2002776648469786, + 3.525206128924598, + 4.022767075983574, + 4.789456780493782, + 5.670963648218378, + 7.310927123196966, + 8.550282587645464, + 9.533176072028752, + 11.027135098862418, + 12.124848504513153, + 14.717167899186993, + 16.98976615396995, + 17.618790577984015, + 18.181887823775902, + 18.729541065237587, + 19.15255691604014, + 19.51353906417054, + 19.82305155110091, + 20.080928561476814, + 20.27291183541213, + 20.491317598553422, + 20.640355442461797, + 20.71355755380681, + 20.832334532578137 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 15.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 15.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 7.5, + 5.0 + ], + [ + 7.5, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351711814013543, + 3.1877619161150377, + 3.5300521987323443, + 4.092350053972336, + 4.846045715867644, + 6.226030365575266, + 8.301646015806089, + 10.37896592317485, + 13.521464069334, + 15.498792833674043, + 16.91154931578895, + 18.872602017133534, + 20.21246432782293, + 23.15028892524921, + 25.581789694205543, + 26.240913949035075, + 26.828903751768717, + 27.39868300301964, + 27.838026505409367, + 28.212900954378327, + 28.534542552922407, + 28.80288099513015, + 29.002888521067113, + 29.231021045823017, + 29.386821853893696, + 29.46331909418647, + 29.587366908436255 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.195803175961542, + 1.4813847491413066, + 1.8198213217004344, + 2.1114679242247285, + 2.45119283317253, + 2.7884204452488497, + 3.0450776854767603, + 3.391231242253256, + 3.6310826882034704, + 3.834200811876476, + 4.189479548289206, + 4.501000324208016, + 5.500154502892341, + 6.83397784285001, + 7.307508114996968, + 7.781213144781125, + 8.290675036159072, + 8.72167336973038, + 9.114874342962088, + 9.473097792217311, + 9.786763933623792, + 10.028064719450208, + 10.309933726858137, + 10.506088603242873, + 10.603728742838797, + 10.76349911300112 + ], + "5._384._0.0875": [ + 3.502951035108636, + 4.1021182676846255, + 4.912099940002563, + 6.394312539684579, + 8.251758092475313, + 11.12198110832681, + 14.595001329381112, + 17.4984730325936, + 21.314758329968765, + 23.51166411917869, + 25.022151255906795, + 27.062667289719766, + 28.43281242316016, + 31.403766951270235, + 33.853595240469225, + 34.5171700430619, + 35.11096376694695, + 35.68729155277061, + 36.13285736527143, + 36.51328211340298, + 36.840340494020914, + 37.113714720973874, + 37.31755224691423, + 37.55036585440934, + 37.70931169123703, + 37.78728131747946, + 37.913535295118905 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125458, + 2.1622431316564765, + 2.5060808691112553, + 2.8001352858759265, + 3.1435101206117877, + 3.5185458782381347, + 3.8938257837458465, + 4.615538123293564, + 5.222669763731222, + 5.7542059909967485, + 6.661109585044995, + 7.409053123901263, + 9.473867374906161, + 11.627812881089339, + 12.274783066123721, + 12.872278339628457, + 13.468077371448969, + 13.937653596310543, + 14.34299477885783, + 14.693880322398936, + 14.988062080556276, + 15.207579986864737, + 15.457259764071907, + 15.627744146780127, + 15.711618851192473, + 15.847848859102404 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235637037206, + 2.851916258652669, + 3.2006127849279995, + 3.530219822586601, + 4.055842692400081, + 4.898148492299303, + 5.879869422948944, + 7.695974590146078, + 9.055304631317874, + 10.126995612407795, + 11.747734775736093, + 12.93448191707208, + 15.727331901290837, + 18.16795636288144, + 18.84260051387258, + 19.44620431858016, + 20.032976785916762, + 20.485981307087, + 20.872483756031464, + 21.20378005998712, + 21.479742725429944, + 21.685182126746238, + 21.91887558652922, + 22.078352298963235, + 22.156687893966236, + 22.283817115227492 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_5": { + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 7.5, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835168551201247, + 3.187263976408304, + 3.523184523197632, + 4.04452040682191, + 4.7005339485370845, + 5.877655613810245, + 7.706884587478849, + 9.629481927492161, + 12.680895872103044, + 14.66623421623402, + 16.107069823295962, + 18.12990315873668, + 19.52341523869152, + 22.594982906243462, + 25.143157755727064, + 25.83406578778365, + 26.44958758446652, + 27.045446061718135, + 27.504170200652943, + 27.89539984900222, + 28.23067337623168, + 28.510075186569157, + 28.718266960324986, + 28.95557317653764, + 29.117642448401405, + 29.197243024940448, + 29.326424822164203 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004355, + 2.111467924224727, + 2.451192833169619, + 2.788419988018048, + 3.0450147355036905, + 3.3885072584301543, + 3.6197366217784492, + 3.8091701816889123, + 4.128111892087807, + 4.39884260436798, + 5.250757746951914, + 6.41439563001892, + 6.841366918909256, + 7.278024893171893, + 7.757621892686313, + 8.171853615449939, + 8.556169245065416, + 8.911938008820746, + 9.227907913590471, + 9.47372814602179, + 9.763911436403815, + 9.967702695671553, + 10.069740089831281, + 10.23752927403046 + ], + "5._384._0.0875": [ + 3.4936911508997595, + 4.044097301447126, + 4.744923718584172, + 6.0114003816396595, + 7.651402365475661, + 10.325139436732687, + 13.730191644475592, + 16.67435138772061, + 20.626379130842803, + 22.92757920760366, + 24.516116133712856, + 26.66564279862443, + 28.110337650479053, + 31.23886548369332, + 33.81315290772364, + 34.50962628838817, + 35.13215348683249, + 35.73579244844193, + 36.20187944168707, + 36.59970980376465, + 36.94144936015703, + 37.226885257841325, + 37.439692108001495, + 37.68266352301702, + 37.8485645882877, + 37.92996974889343, + 38.061870293085036 + ], + "5._48._0.075": [ + 1.526846324373142, + 1.8679037053125451, + 2.1622431316564765, + 2.5060808690869796, + 2.8001348884547657, + 3.1433336028828944, + 3.5133882256158144, + 3.8674609225070657, + 4.505684759190436, + 5.02351149512212, + 5.475414978679433, + 6.257517502871103, + 6.91771555215415, + 8.82167848196441, + 10.919458244618195, + 11.568976989964966, + 12.175149278710098, + 12.785173774635, + 13.269430465427192, + 13.68941778925645, + 14.054226929203727, + 14.360729615993563, + 14.589688246739875, + 14.850125079875735, + 15.02804222870348, + 15.115647231915892, + 15.258073594028103 + ], + "5._96._0.075": [ + 2.2092718103274027, + 2.5553235635508993, + 2.8519151951305375, + 3.200309921062786, + 3.525221538470626, + 4.017011426432835, + 4.752240865873735, + 5.587799412525928, + 7.171409197280925, + 8.406044616381264, + 9.408583286542262, + 10.967860919290501, + 12.137273381796012, + 14.959721757879969, + 17.482441991861208, + 18.185755121275072, + 18.81574329641796, + 19.428700020432608, + 19.901780150224106, + 20.30537685411131, + 20.651009517012206, + 20.938601574341416, + 21.152590732614865, + 21.395744036470568, + 21.561649265594898, + 21.643169548262744, + 21.77557426738418 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 7.5, + 6.66666666666667 + ], + [ + 7.5, + 13.333333333333302 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351647654098957, + 3.1870019296024386, + 3.522152439946208, + 4.053234730035851, + 4.753101588023297, + 6.044806244243766, + 8.049311711082694, + 10.135188381741113, + 13.41573683361848, + 15.539856295811123, + 17.078553199392136, + 19.235352055092044, + 20.71948312823841, + 23.9864412401848, + 26.69337728940948, + 27.426970879134828, + 28.080367460296316, + 28.712760520865228, + 29.199495173423564, + 29.61460089023562, + 29.970292937430838, + 30.266684175698973, + 30.487541073119512, + 30.73928425440769, + 30.911225717850375, + 30.995681768231915, + 31.132763642110117 + ], + "5._24._0.075": [ + 0.8740059532267968, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004342, + 2.111467924224728, + 2.451192833107241, + 2.7884191120863417, + 3.0449632326772083, + 3.3877382719138542, + 3.619091492976565, + 3.8112165500997244, + 4.142806832922043, + 4.431757166105383, + 5.363369779200566, + 6.64038969892985, + 7.106086261687892, + 7.579779536802278, + 8.097562121580633, + 8.542654926043523, + 8.954172795590582, + 9.333815845796273, + 9.66995589061417, + 9.930855543609805, + 10.238012110819021, + 10.453232658092256, + 10.560855761506765, + 10.737647572071156 + ], + "5._384._0.0875": [ + 3.492724650046691, + 4.056536999397526, + 4.808508296914031, + 6.199917065349385, + 7.996683163712336, + 10.893136179720965, + 14.549965059251054, + 17.69858646111919, + 21.915429381956674, + 24.3678444427113, + 26.059927633029716, + 28.34835255832928, + 29.885833526469767, + 33.21353962319658, + 35.95045394583936, + 36.69078806272622, + 37.352461161108, + 37.99400218008086, + 38.48930146611856, + 38.91206572180314, + 39.27520570791666, + 39.578505304372214, + 39.80463577033268, + 40.06282241003654, + 40.23912110556791, + 40.325632532998625, + 40.465818783908624 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808687904665, + 2.800134106683666, + 3.1432157028185324, + 3.5124021379774466, + 3.8696516110902732, + 4.541465704093968, + 5.10527898866411, + 5.602323668715245, + 6.463155857685603, + 7.186694694273159, + 9.251583130722528, + 11.501071201964994, + 12.193800885194127, + 12.83897657384665, + 13.4871435858579, + 14.000784139986672, + 14.44582539645008, + 14.831950036928395, + 15.15604673577814, + 15.3980186884817, + 15.673076337389045, + 15.860919307521614, + 15.953404546886063, + 16.10378641579022 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.5553235623106128, + 2.8519134161192086, + 3.2001301005001825, + 3.524228435075337, + 4.02274796685743, + 4.8053387974294495, + 5.721422024901963, + 7.460307554350175, + 8.80511608325137, + 9.890398971159826, + 11.568732678639803, + 12.822364522310849, + 15.835457525447797, + 18.518619256405643, + 19.265500167964422, + 19.934094245763017, + 20.58425605469147, + 21.085753547179657, + 21.51349961497687, + 21.879684265099627, + 22.184292773813247, + 22.410931239167212, + 22.66843081749066, + 22.844131573053932, + 22.93047242725706, + 23.070735166691637 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 5.0, + 6.66666666666667 + ], + [ + 5.0, + 13.333333333333302 + ], + [ + 10.0, + 6.66666666666667 + ], + [ + 10.0, + 13.333333333333302 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351754402567453, + 3.188143168481585, + 3.534491816905175, + 4.122123973415333, + 4.935162221768324, + 6.454970187781035, + 8.791843710939084, + 11.190084875738906, + 14.917532571648044, + 17.315767598224912, + 19.04885539732574, + 21.47293451907933, + 23.138379397715177, + 26.79754688487095, + 29.824139185179995, + 30.64378672665415, + 31.373578512863027, + 32.07969970638596, + 32.62299176900542, + 33.086311594294166, + 33.48324742695662, + 33.8139632766165, + 34.060407095818846, + 34.34131711434135, + 34.53320031743349, + 34.62746272816131, + 34.78049502755753 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615422, + 1.4813847491413075, + 1.8198213217004355, + 2.1114679242247285, + 2.4511928332471684, + 2.78842143364, + 3.045139478206705, + 3.3930545621102266, + 3.638322015952265, + 3.849959457011476, + 4.227458035741884, + 4.563646572595317, + 5.659122706391232, + 7.151203406478846, + 7.690033508176637, + 8.233857216300137, + 8.82439826523121, + 9.328697522092353, + 9.792817563359396, + 10.21893018485081, + 10.594578349118606, + 10.885171786148934, + 11.225954687886416, + 11.463948458749329, + 11.582747298889908, + 11.77763069179007 + ], + "5._384._0.0875": [ + 3.5088591444247412, + 4.138058435447715, + 5.014622066954455, + 6.6509857593762, + 8.744645365413476, + 12.068116601124007, + 16.217696522551673, + 19.771276259666998, + 24.51613879253919, + 27.271043074809004, + 29.170522297398303, + 31.7374995968351, + 33.46122556408392, + 37.1892086820482, + 40.25329767981054, + 41.081909065672946, + 41.822385294840494, + 42.54023982986685, + 43.0943695028361, + 43.56734804975019, + 43.97359066969115, + 44.31287216242885, + 44.56583826929634, + 44.854669691082364, + 45.05190785641764, + 45.14870152608009, + 45.305569271375525 + ], + "5._48._0.075": [ + 1.52684632437314, + 1.8679037053125456, + 2.1622431316564765, + 2.506080869463895, + 2.800136168659578, + 3.1436617280088393, + 3.5219085956668823, + 3.910409506342306, + 4.682866733518197, + 5.345805828167493, + 5.932042332152574, + 6.942573119966385, + 7.785821978681714, + 10.157597880971, + 12.702631524943639, + 13.480495314472357, + 14.203096192952183, + 14.927313740829016, + 15.499798706990768, + 15.99513875079792, + 16.42418288444033, + 16.783799184640564, + 17.052087261617228, + 17.35677324744398, + 17.56476009231505, + 17.66715611627265, + 17.83369734434752 + ], + "5._96._0.075": [ + 2.2092718103274023, + 2.555323565168604, + 2.851918260506528, + 3.200857169267355, + 3.5334840048420872, + 4.080109072859136, + 4.987531662232407, + 6.066470347504326, + 8.100250173673466, + 9.654531957491793, + 10.898613832925436, + 12.808231862196637, + 14.227078522423248, + 17.618521614394414, + 20.623067871267452, + 21.457595102935795, + 22.203965932975148, + 22.929187118758676, + 23.48810082167464, + 23.96466978329137, + 24.372442728859188, + 24.711510944147836, + 24.963771271120553, + 25.250340373123745, + 25.44589005709357, + 25.541997725786633, + 25.698175214245545 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_6": { + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 25.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 25.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], + [ + 7.5, + 12.5 + ] + ], + "g": { + "5._192._0.08": [ + 2.835169063879736, + 3.1873015843404118, + 3.5233933817767276, + 4.04347112593589, + 4.688812269514357, + 5.829638775480363, + 7.618711062386892, + 9.545879631457671, + 12.700175649103544, + 14.80557985562017, + 16.35463181054751, + 18.552611251603377, + 20.079481602574923, + 23.464853437176107, + 26.282180703106082, + 27.046487224969788, + 27.726562862123252, + 28.38428434037525, + 28.889829700758668, + 29.32080607740153, + 29.689700086435334, + 29.996781339612355, + 30.22553864176717, + 30.48611941649302, + 30.664098447789407, + 30.751545800050827, + 30.893586595286187 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615428, + 1.481384749141308, + 1.8198213217004362, + 2.1114679242247285, + 2.4511928331780086, + 2.788420106197756, + 3.0450218456835656, + 3.3886325484673203, + 3.6199484751606614, + 3.8091179972025664, + 4.125837573727386, + 4.392216001969537, + 5.21944497506787, + 6.352576688843227, + 6.774267679360054, + 7.210214019180217, + 7.694762492617509, + 8.118597888062192, + 8.5163481569974, + 8.888747952653393, + 9.223067159239987, + 9.485584909059776, + 9.798300229224946, + 10.019828115622106, + 10.1314075144537, + 10.315874510512577 + ], + "5._384._0.0875": [ + 3.4939241705891044, + 4.042376139159062, + 4.730004584643474, + 5.956847446025895, + 7.561939749135504, + 10.252492411299217, + 13.798032639881864, + 16.94854391624387, + 21.26199772306788, + 23.80377410626104, + 25.56642292420247, + 27.956560573434423, + 29.56502209311471, + 33.04464485675703, + 35.90234150052891, + 36.67463335662818, + 37.36415264184675, + 38.03210898000369, + 38.54718820047536, + 38.98671361357117, + 39.36395341023184, + 39.67880805370624, + 39.91352525080563, + 40.18142252819703, + 40.36436966644778, + 40.4541669400695, + 40.59976304723249 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125453, + 2.1622431316564774, + 2.506080869126844, + 2.8001349939060365, + 3.143350108280592, + 3.5135702317802866, + 3.8674029921247235, + 4.498461076243309, + 5.002682413032505, + 5.440020472716026, + 6.19830436015179, + 6.844033818845034, + 8.747254330939768, + 10.916346524259096, + 11.603190755211052, + 12.249863222880634, + 12.905920527990794, + 13.430136458308294, + 13.886974584359862, + 14.28518202873224, + 14.62052845571471, + 14.871397918904234, + 15.15686778639844, + 15.35204188347284, + 15.44824959574672, + 15.604869492837256 + ], + "5._96._0.075": [ + 2.2092718103274023, + 2.5553235637176743, + 2.851915435501614, + 3.2003353714240528, + 3.5254023511655435, + 4.0164519999031825, + 4.740304823037769, + 5.550413077897991, + 7.092458734889403, + 8.31712922128038, + 9.328098640118423, + 10.928876814882996, + 12.150044282549896, + 15.157810880555951, + 17.90233640122202, + 18.67426472459367, + 19.366815359375206, + 20.041421175016218, + 20.562029604627444, + 21.006219962014345, + 21.386311247017648, + 21.70226155840685, + 21.937255118766178, + 22.204008393193398, + 22.386009382443966, + 22.47547873234593, + 22.62093745768087 ] }, "logtime": [ @@ -467,10 +16685,8 @@ 2.275, 3.003 ] - } - }, - "4_5": { - "1_1": { + }, + "1_2": { "bore_locations": [ [ 0.0, @@ -478,7 +16694,7 @@ ], [ 0.0, - 20.0 + 25.0 ], [ 5.0, @@ -486,7 +16702,7 @@ ], [ 5.0, - 20.0 + 25.0 ], [ 10.0, @@ -494,7 +16710,7 @@ ], [ 10.0, - 20.0 + 25.0 ], [ 15.0, @@ -502,7 +16718,7 @@ ], [ 15.0, - 20.0 + 25.0 ], [ 0.0, @@ -528,156 +16744,168 @@ 15.0, 15.0 ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], [ 7.5, - 10.0 + 8.33333333333333 + ], + [ + 7.5, + 16.6666666666667 ] ], "g": { "5._192._0.08": [ - 2.835168551201247, - 3.187263976408304, - 3.523184523197632, - 4.04452040682191, - 4.7005339485370845, - 5.877655613810245, - 7.706884587478849, - 9.629481927492161, - 12.680895872103044, - 14.66623421623402, - 16.107069823295962, - 18.12990315873668, - 19.52341523869152, - 22.594982906243462, - 25.143157755727064, - 25.83406578778365, - 26.44958758446652, - 27.045446061718135, - 27.504170200652943, - 27.89539984900222, - 28.23067337623168, - 28.510075186569157, - 28.718266960324986, - 28.95557317653764, - 29.117642448401405, - 29.197243024940448, - 29.326424822164203 + 2.835165637745978, + 3.187031004920172, + 3.5213455558987583, + 4.04077002472627, + 4.709094933661963, + 5.9397571653195405, + 7.886569774001082, + 9.966217195737869, + 13.336955682472075, + 15.574546869355562, + 17.21728934446072, + 19.543960763060234, + 21.158193581332558, + 24.732004967332813, + 27.702113233001022, + 28.507422606015847, + 29.22380074155503, + 29.916471533851947, + 30.44873706343993, + 30.902474918784282, + 31.29079834856608, + 31.61402027485428, + 31.85480742404202, + 32.12909185401532, + 32.316444440809725, + 32.4085049927282, + 32.558062843012884 ], "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, + 0.8740059532267964, + 1.1958031759615422, + 1.4813847491413075, 1.8198213217004355, - 2.111467924224727, - 2.451192833169619, - 2.788419988018048, - 3.0450147355036905, - 3.3885072584301543, - 3.6197366217784492, - 3.8091701816889123, - 4.128111892087807, - 4.39884260436798, - 5.250757746951914, - 6.41439563001892, - 6.841366918909256, - 7.278024893171893, - 7.757621892686313, - 8.171853615449939, - 8.556169245065416, - 8.911938008820746, - 9.227907913590471, - 9.47372814602179, - 9.763911436403815, - 9.967702695671553, - 10.069740089831281, - 10.23752927403046 + 2.1114679242247285, + 2.451192833122094, + 2.788419317776049, + 3.044973410400212, + 3.387596151052741, + 3.6172472014068964, + 3.8056265429874867, + 4.125801245601284, + 4.401555301475566, + 5.2877137307415625, + 6.5211491195614455, + 6.9786112476398925, + 7.44932897879243, + 7.969992053166164, + 8.4231498751828, + 8.846768738518469, + 9.241891415750468, + 9.595401420616941, + 9.872253209342075, + 10.201049366351974, + 10.433363095692172, + 10.550200789434614, + 10.743121382506292 ], "5._384._0.0875": [ - 3.4936911508997595, - 4.044097301447126, - 4.744923718584172, - 6.0114003816396595, - 7.651402365475661, - 10.325139436732687, - 13.730191644475592, - 16.67435138772061, - 20.626379130842803, - 22.92757920760366, - 24.516116133712856, - 26.66564279862443, - 28.110337650479053, - 31.23886548369332, - 33.81315290772364, - 34.50962628838817, - 35.13215348683249, - 35.73579244844193, - 36.20187944168707, - 36.59970980376465, - 36.94144936015703, - 37.226885257841325, - 37.439692108001495, - 37.68266352301702, - 37.8485645882877, - 37.92996974889343, - 38.061870293085036 + 3.49141769162688, + 4.040805689112824, + 4.757581974520725, + 6.085170441500388, + 7.831917596789576, + 10.730815514000996, + 14.514874518438509, + 17.861096821046182, + 22.430339385499, + 25.1191715834642, + 26.982793909689924, + 29.508376163153148, + 31.207298118566275, + 34.88049845170055, + 37.895643148990864, + 38.710314794884695, + 39.43760304149092, + 40.14207816081089, + 40.68525272536578, + 41.148751032018865, + 41.546543938763655, + 41.87853900612284, + 42.12603987683288, + 42.408531235220494, + 42.60145443565442, + 42.696153232686825, + 42.84971069989829 ], "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125451, + 1.52684632437314, + 1.8679037053125456, 2.1622431316564765, - 2.5060808690869796, - 2.8001348884547657, - 3.1433336028828944, - 3.5133882256158144, - 3.8674609225070657, - 4.505684759190436, - 5.02351149512212, - 5.475414978679433, - 6.257517502871103, - 6.91771555215415, - 8.82167848196441, - 10.919458244618195, - 11.568976989964966, - 12.175149278710098, - 12.785173774635, - 13.269430465427192, - 13.68941778925645, - 14.054226929203727, - 14.360729615993563, - 14.589688246739875, - 14.850125079875735, - 15.02804222870348, - 15.115647231915892, - 15.258073594028103 + 2.506080868861052, + 2.800134290454979, + 3.1432354726203915, + 3.51190060554169, + 3.863742082655698, + 4.508829254117572, + 5.044452994612255, + 5.517626529918412, + 6.344238235003312, + 7.047455175712933, + 9.100797592427828, + 11.413226723166163, + 12.141122151960708, + 12.824770202716554, + 13.516993937957368, + 14.069013012642007, + 14.549548931437473, + 14.967861541708452, + 15.319748950750569, + 15.582826023695587, + 15.881958287025466, + 16.08638852287525, + 16.18714731681782, + 16.3511986130018 ], "5._96._0.075": [ - 2.2092718103274027, - 2.5553235635508993, - 2.8519151951305375, - 3.200309921062786, - 3.525221538470626, - 4.017011426432835, - 4.752240865873735, - 5.587799412525928, - 7.171409197280925, - 8.406044616381264, - 9.408583286542262, - 10.967860919290501, - 12.137273381796012, - 14.959721757879969, - 17.482441991861208, - 18.185755121275072, - 18.81574329641796, - 19.428700020432608, - 19.901780150224106, - 20.30537685411131, - 20.651009517012206, - 20.938601574341416, - 21.152590732614865, - 21.395744036470568, - 21.561649265594898, - 21.643169548262744, - 21.77557426738418 + 2.2092718103274, + 2.5553235626058286, + 2.8519138309853336, + 3.2001558076387058, + 3.5237610197869325, + 4.013088819770735, + 4.761170924765721, + 5.632630481947888, + 7.3120769192705035, + 8.63887556809196, + 9.727522386836293, + 11.440606831609077, + 12.741563835191926, + 15.930461612171387, + 18.828179317707146, + 19.64175185124222, + 20.371171339192596, + 21.0812550544668, + 21.628875159549747, + 22.09599395912269, + 22.49554405754589, + 22.827564430163505, + 23.07449349295895, + 23.35476132247166, + 23.545989462978433, + 23.640002923878303, + 23.79288319524922 ] }, "logtime": [ @@ -710,7 +16938,7 @@ 3.003 ] }, - "1_2": { + "1_3": { "bore_locations": [ [ 0.0, @@ -718,7 +16946,7 @@ ], [ 0.0, - 20.0 + 25.0 ], [ 5.0, @@ -726,7 +16954,7 @@ ], [ 5.0, - 20.0 + 25.0 ], [ 10.0, @@ -734,7 +16962,7 @@ ], [ 10.0, - 20.0 + 25.0 ], [ 15.0, @@ -742,7 +16970,7 @@ ], [ 15.0, - 20.0 + 25.0 ], [ 0.0, @@ -769,159 +16997,171 @@ 15.0 ], [ - 7.5, - 6.66666666666667 + 0.0, + 20.0 ], [ - 7.5, - 13.333333333333302 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351647654098957, - 3.1870019296024386, - 3.522152439946208, - 4.053234730035851, - 4.753101588023297, - 6.044806244243766, - 8.049311711082694, - 10.135188381741113, - 13.41573683361848, - 15.539856295811123, - 17.078553199392136, - 19.235352055092044, - 20.71948312823841, - 23.9864412401848, - 26.69337728940948, - 27.426970879134828, - 28.080367460296316, - 28.712760520865228, - 29.199495173423564, - 29.61460089023562, - 29.970292937430838, - 30.266684175698973, - 30.487541073119512, - 30.73928425440769, - 30.911225717850375, - 30.995681768231915, - 31.132763642110117 + 15.0, + 20.0 ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004342, - 2.111467924224728, - 2.451192833107241, - 2.7884191120863417, - 3.0449632326772083, - 3.3877382719138542, - 3.619091492976565, - 3.8112165500997244, - 4.142806832922043, - 4.431757166105383, - 5.363369779200566, - 6.64038969892985, - 7.106086261687892, - 7.579779536802278, - 8.097562121580633, - 8.542654926043523, - 8.954172795590582, - 9.333815845796273, - 9.66995589061417, - 9.930855543609805, - 10.238012110819021, - 10.453232658092256, - 10.560855761506765, - 10.737647572071156 + [ + 7.5, + 6.25 + ], + [ + 7.5, + 12.5 + ], + [ + 7.5, + 18.75 + ] + ], + "g": { + "5._192._0.08": [ + 2.835162784390543, + 3.1868967820749936, + 3.5217514824310125, + 4.054074677167511, + 4.762607837367495, + 6.0904139213023925, + 8.187755469825778, + 10.411740806993643, + 13.99130357982898, + 16.358531401795247, + 18.093912091281737, + 20.548678289655992, + 22.25025023371322, + 26.013369087266817, + 29.13765792124084, + 29.984425071776105, + 30.737535147503195, + 31.465594486520484, + 32.02493824491679, + 32.50174617408865, + 32.90977087723654, + 33.24936461057747, + 33.50235332883448, + 33.79053735312961, + 33.98739577196025, + 34.08413360618185, + 34.24130967626709 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141308, + 1.8198213217004335, + 2.1114679242247276, + 2.4511928330720996, + 2.788418639033064, + 3.0449394232254496, + 3.3874623216188593, + 3.6187036963320653, + 3.8111243993123245, + 4.144659034390168, + 4.437126812337527, + 5.3912658932545074, + 6.721517052618911, + 7.212693224507756, + 7.715999858090263, + 8.270645057972233, + 8.751585383010926, + 9.199949730714154, + 9.616992043917447, + 9.989175361821827, + 10.28008290694917, + 10.624789284455106, + 10.867865815354655, + 10.989982153193427, + 11.191441659947373 ], "5._384._0.0875": [ - 3.492724650046691, - 4.056536999397526, - 4.808508296914031, - 6.199917065349385, - 7.996683163712336, - 10.893136179720965, - 14.549965059251054, - 17.69858646111919, - 21.915429381956674, - 24.3678444427113, - 26.059927633029716, - 28.34835255832928, - 29.885833526469767, - 33.21353962319658, - 35.95045394583936, - 36.69078806272622, - 37.352461161108, - 37.99400218008086, - 38.48930146611856, - 38.91206572180314, - 39.27520570791666, - 39.578505304372214, - 39.80463577033268, - 40.06282241003654, - 40.23912110556791, - 40.325632532998625, - 40.465818783908624 + 3.4923147089092814, + 4.057982605657056, + 4.820658579049535, + 6.2539674071851765, + 8.135460753866882, + 11.231874064936468, + 15.247049862187206, + 18.78600677326706, + 23.609709219876972, + 26.445565056258655, + 28.410330390375155, + 31.071837727105454, + 32.861661248125294, + 36.72971653081415, + 39.90359362353065, + 40.76101777623556, + 41.52641714171467, + 42.26775194658865, + 42.839293365602494, + 43.326996539108706, + 43.74554458393207, + 44.09485045243022, + 44.35526123952157, + 44.65249031751613, + 44.85548639023518, + 44.95513359014942, + 45.116726611627065 ], "5._48._0.075": [ 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808687904665, - 2.800134106683666, - 3.1432157028185324, - 3.5124021379774466, - 3.8696516110902732, - 4.541465704093968, - 5.10527898866411, - 5.602323668715245, - 6.463155857685603, - 7.186694694273159, - 9.251583130722528, - 11.501071201964994, - 12.193800885194127, - 12.83897657384665, - 13.4871435858579, - 14.000784139986672, - 14.44582539645008, - 14.831950036928395, - 15.15604673577814, - 15.3980186884817, - 15.673076337389045, - 15.860919307521614, - 15.953404546886063, - 16.10378641579022 + 1.8679037053125427, + 2.1622431316564756, + 2.5060808686235485, + 2.800133683566298, + 3.1431645958860503, + 3.512038352572462, + 3.869568365210148, + 4.54732981377982, + 5.122602794552038, + 5.634005564993292, + 6.527406573667282, + 7.285110440565232, + 9.480102273662496, + 11.930620554723909, + 12.698640623236782, + 13.418803687986525, + 14.14698055813237, + 14.72682685435799, + 15.231176139406962, + 15.669786218827426, + 16.038441893725267, + 16.313927002294434, + 16.62699042269801, + 16.84088045649392, + 16.946295382443505, + 17.11795171920887 ], "5._96._0.075": [ - 2.2092718103274036, - 2.5553235623106128, - 2.8519134161192086, - 3.2001301005001825, - 3.524228435075337, - 4.02274796685743, - 4.8053387974294495, - 5.721422024901963, - 7.460307554350175, - 8.80511608325137, - 9.890398971159826, - 11.568732678639803, - 12.822364522310849, - 15.835457525447797, - 18.518619256405643, - 19.265500167964422, - 19.934094245763017, - 20.58425605469147, - 21.085753547179657, - 21.51349961497687, - 21.879684265099627, - 22.184292773813247, - 22.410931239167212, - 22.66843081749066, - 22.844131573053932, - 22.93047242725706, - 23.070735166691637 + 2.2092718103274023, + 2.55532356161337, + 2.8519124677149166, + 3.2000551202234337, + 3.5238644023306476, + 4.023146277567882, + 4.815011082791614, + 5.754882081893816, + 7.566872669133539, + 8.990039049258957, + 10.152335468739668, + 11.973218581175017, + 13.351683840656754, + 16.719367895921415, + 19.770422909636817, + 20.62595545421694, + 21.39260395294877, + 22.13858801218981, + 22.713603977054287, + 23.203999004757666, + 23.623331025575396, + 23.971706990791834, + 24.230788058809612, + 24.524822947053536, + 24.725451355397475, + 24.82409349740927, + 24.98452928916188 ] }, "logtime": [ @@ -954,7 +17194,7 @@ 3.003 ] }, - "2_2": { + "2_3": { "bore_locations": [ [ 0.0, @@ -962,7 +17202,7 @@ ], [ 0.0, - 20.0 + 25.0 ], [ 5.0, @@ -970,7 +17210,7 @@ ], [ 5.0, - 20.0 + 25.0 ], [ 10.0, @@ -978,7 +17218,7 @@ ], [ 10.0, - 20.0 + 25.0 ], [ 15.0, @@ -986,7 +17226,7 @@ ], [ 15.0, - 20.0 + 25.0 ], [ 0.0, @@ -1012,168 +17252,184 @@ 15.0, 15.0 ], + [ + 0.0, + 20.0 + ], + [ + 15.0, + 20.0 + ], [ 5.0, - 6.66666666666667 + 6.25 ], [ 5.0, - 13.333333333333302 + 12.5 + ], + [ + 5.0, + 18.75 ], [ 10.0, - 6.66666666666667 + 6.25 ], [ 10.0, - 13.333333333333302 + 12.5 + ], + [ + 10.0, + 18.75 ] ], "g": { "5._192._0.08": [ - 2.8351754402567453, - 3.188143168481585, - 3.534491816905175, - 4.122123973415333, - 4.935162221768324, - 6.454970187781035, - 8.791843710939084, - 11.190084875738906, - 14.917532571648044, - 17.315767598224912, - 19.04885539732574, - 21.47293451907933, - 23.138379397715177, - 26.79754688487095, - 29.824139185179995, - 30.64378672665415, - 31.373578512863027, - 32.07969970638596, - 32.62299176900542, - 33.086311594294166, - 33.48324742695662, - 33.8139632766165, - 34.060407095818846, - 34.34131711434135, - 34.53320031743349, - 34.62746272816131, - 34.78049502755753 + 2.8351741863953843, + 3.1882634860179278, + 3.5373525772384933, + 4.143178619535997, + 4.997873255469941, + 6.6181007599089305, + 9.147507493669872, + 11.788925556347044, + 15.983003957059116, + 18.735749624593417, + 20.74783290610567, + 23.586443708142955, + 25.550225127186724, + 29.882884304659832, + 33.47196535538805, + 34.443817654851216, + 35.30779285993037, + 36.14269966705547, + 36.78383256394082, + 37.33032778677323, + 37.79787605271334, + 38.1869417278772, + 38.47679957411788, + 38.806983795600395, + 39.03256257196661, + 39.14343025610068, + 39.323615177791915 ], "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615422, - 1.4813847491413075, - 1.8198213217004355, - 2.1114679242247285, - 2.4511928332471684, - 2.78842143364, - 3.045139478206705, - 3.3930545621102266, - 3.638322015952265, - 3.849959457011476, - 4.227458035741884, - 4.563646572595317, - 5.659122706391232, - 7.151203406478846, - 7.690033508176637, - 8.233857216300137, - 8.82439826523121, - 9.328697522092353, - 9.792817563359396, - 10.21893018485081, - 10.594578349118606, - 10.885171786148934, - 11.225954687886416, - 11.463948458749329, - 11.582747298889908, - 11.77763069179007 + 0.8740059532267969, + 1.1958031759615408, + 1.4813847491413077, + 1.8198213217004344, + 2.1114679242247263, + 2.4511928332025716, + 2.788421045445075, + 3.045140860374883, + 3.3940755487378347, + 3.6432398297140307, + 3.8610449148535997, + 4.2542898782265555, + 4.607822741658699, + 5.7720872748730265, + 7.380226202176751, + 7.967655649728444, + 8.564202195104356, + 9.216617922115507, + 9.777946051603452, + 10.298396701216113, + 10.779623483887729, + 11.206747090891207, + 11.539169120387944, + 11.931068347652245, + 12.206194492585936, + 12.344077955523993, + 12.571134668572862 ], "5._384._0.0875": [ - 3.5088591444247412, - 4.138058435447715, - 5.014622066954455, - 6.6509857593762, - 8.744645365413476, - 12.068116601124007, - 16.217696522551673, - 19.771276259666998, - 24.51613879253919, - 27.271043074809004, - 29.170522297398303, - 31.7374995968351, - 33.46122556408392, - 37.1892086820482, - 40.25329767981054, - 41.081909065672946, - 41.822385294840494, - 42.54023982986685, - 43.0943695028361, - 43.56734804975019, - 43.97359066969115, - 44.31287216242885, - 44.56583826929634, - 44.854669691082364, - 45.05190785641764, - 45.14870152608009, - 45.305569271375525 + 3.512789010960961, + 4.163451624307049, + 5.086773094561928, + 6.834185784646973, + 9.10204083535811, + 12.77090544821971, + 17.46833428022939, + 21.581756267580705, + 27.16764270786367, + 30.44480170085468, + 32.713384712789185, + 35.78351460181108, + 37.84676687623272, + 42.301402584873564, + 45.95346938520776, + 46.93972560289612, + 47.8199863290366, + 48.67242587481501, + 49.329486457214344, + 49.89016150076515, + 50.371286000968816, + 50.77278648399149, + 51.07212106471546, + 51.4137839215366, + 51.64714700092887, + 51.7617111293263, + 51.94752403989266 ], "5._48._0.075": [ - 1.52684632437314, - 1.8679037053125456, - 2.1622431316564765, - 2.506080869463895, - 2.800136168659578, - 3.1436617280088393, - 3.5219085956668823, - 3.910409506342306, - 4.682866733518197, - 5.345805828167493, - 5.932042332152574, - 6.942573119966385, - 7.785821978681714, - 10.157597880971, - 12.702631524943639, - 13.480495314472357, - 14.203096192952183, - 14.927313740829016, - 15.499798706990768, - 15.99513875079792, - 16.42418288444033, - 16.783799184640564, - 17.052087261617228, - 17.35677324744398, - 17.56476009231505, - 17.66715611627265, - 17.83369734434752 + 1.5268463243731418, + 1.8679037053125405, + 2.162243131656477, + 2.5060808692572922, + 2.8001358154783684, + 3.1436863472395316, + 3.5240022264436335, + 3.9220804439307484, + 4.730258740892413, + 5.432829768144059, + 6.058580233819141, + 7.144749451428224, + 8.05830447060512, + 10.661430492794914, + 13.517554506707274, + 14.40445887904231, + 15.23352566309754, + 16.069269744932615, + 16.73263321519266, + 17.308570208967943, + 17.80832298383912, + 18.22758388224634, + 18.540559560146498, + 18.895779895029815, + 19.138328495377795, + 19.257856438480104, + 19.452568052732374 ], "5._96._0.075": [ - 2.2092718103274023, - 2.555323565168604, - 2.851918260506528, - 3.200857169267355, - 3.5334840048420872, - 4.080109072859136, - 4.987531662232407, - 6.066470347504326, - 8.100250173673466, - 9.654531957491793, - 10.898613832925436, - 12.808231862196637, - 14.227078522423248, - 17.618521614394414, - 20.623067871267452, - 21.457595102935795, - 22.203965932975148, - 22.929187118758676, - 23.48810082167464, - 23.96466978329137, - 24.372442728859188, - 24.711510944147836, - 24.963771271120553, - 25.250340373123745, - 25.44589005709357, - 25.541997725786633, - 25.698175214245545 + 2.2092718103274076, + 2.5553235643312524, + 2.851917558322094, + 3.2009160746228895, + 3.5355023118367317, + 4.097263243809056, + 5.050426046611206, + 6.19906453105728, + 8.392461533733863, + 10.092678009453508, + 11.46854148303462, + 13.60543954747809, + 15.213058541101228, + 19.114370603926062, + 22.62612978922212, + 23.608107835755977, + 24.487045971539757, + 25.34141446856395, + 25.99922684908182, + 26.559997085792183, + 27.039178930616504, + 27.437065237530273, + 27.73293787346251, + 28.06866472947046, + 28.297760831655744, + 28.41041890046813, + 28.593726228942344 ] }, "logtime": [ From 93610481acfc07bbd40623481a3b649be8e398e1 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 29 Jun 2023 10:01:03 -0700 Subject: [PATCH 061/217] Update hvac tests for checking against direct lookup and interpolation example. --- HPXMLtoOpenStudio/measure.xml | 22 ++++++++-------- HPXMLtoOpenStudio/tests/test_hvac.rb | 25 +++++++++++++++++-- workflow/hpxml_inputs.json | 10 ++++---- .../base-hvac-geothermal-loop.xml | 10 ++++---- 4 files changed, 44 insertions(+), 23 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 2e8f95461d..46065a9138 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - f1c97e5f-fcd7-4540-9dd1-37e298970fe9 - 2023-06-27T16:12:08Z + 3a0ca2d0-23bf-4aa7-a5e0-91abc981e7ed + 2023-06-29T16:59:12Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -220,49 +220,49 @@ g_functions/C_configurations_5m_v1.0.json json resource - 5410CFA9 + 86C81BDB g_functions/L_configurations_5m_v1.0.json json resource - B81A3E85 + EA9BD20B g_functions/LopU_configurations_5m_v1.0.json json resource - 17FFFDCA + 4DE9AEAC g_functions/Open_configurations_5m_v1.0.json json resource - 226B7EE7 + 2D76CB76 g_functions/U_configurations_5m_v1.0.json json resource - 45A026F1 + 66F24419 g_functions/rectangle_5m_v1.0.json json resource - DAF42C80 + A455FF70 g_functions/util.rb rb resource - D76C546D + D062B0CF g_functions/zoned_rectangle_5m_v1.0.json json resource - 86CE839A + D5EDBB54 generator.rb @@ -562,7 +562,7 @@ test_hvac.rb rb test - 3A1C860E + 4C361C9C test_hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index a1751749b0..ed98ced425 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -729,8 +729,10 @@ def test_geothermal_loop assert_in_epsilon(shank_spacing, ghx.uTubeDistance.get, 0.01) # Check G-Functions - lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] # Expected values - gfnc_coeff = [2.1315561988716345, 2.4738153271940466, 2.7469568946536747, 2.9956725720204123, 3.1467376149806783, 3.3411921769988546, 3.6783626039289095, 4.08829282643351, 4.821537806237455, 5.3367290812854895, 5.7252441389588125, 6.290724504739807, 6.691379764734213, 7.611206803037245, 8.406586040216075, 8.626576106961634, 8.824984464247537, 9.019151156396122, 9.170525404484579, 9.300299594597792, 9.412470386165039, 9.506659481451495, 9.577046200210756, 9.657615475750577, 9.712712538365714, 9.739766928164627, 9.783557959201408] # Expected values + # Expected values + # 3_5: 2: g: 5._384._0.0875 from "LopU_configurations_5m_v1.0.json" + lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] + gfnc_coeff = [3.490358350826967, 4.020991337431924, 4.662672415770914, 5.744820338581088, 7.036835424820224, 8.970879981106723, 11.262539992919834, 13.161918009757274, 15.65519170743656, 17.09242028149083, 18.082377421761176, 19.42410197524493, 20.327301536975842, 22.296280621945826, 23.92882543342862, 24.37208776527693, 24.76938241540891, 25.155531910712668, 25.45459596488941, 25.710007203575426, 25.929812946366734, 26.113696919837288, 26.25080162287551, 26.40743659061555, 26.514329358432732, 26.566734621647846, 26.6515015938595] gFunctions = lntts.zip(gfnc_coeff) ghx.gFunctions.each_with_index do |gFunction, i| assert_in_epsilon(gFunction.lnValue, gFunctions[i][0], 0.01) @@ -738,6 +740,25 @@ def test_geothermal_loop end end + def test_g_function_library_linear_interpolation_example + bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle + num_bore_holes = 40 + bore_spacing = UnitConversions.convert(7.0, 'm', 'ft') + bore_depth = UnitConversions.convert(150.0, 'm', 'ft') + bore_diameter = UnitConversions.convert(UnitConversions.convert(80.0, 'mm', 'm'), 'm', 'in') * 2 + actual_lntts, actual_gfnc_coeff = HVACSizing.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter) + + expected_lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] + expected_gfnc_coeff = [2.619, 2.967, 3.279, 3.700, 4.190, 5.107, 6.680, 8.537, 11.991, 14.633, 16.767, 20.083, 22.593, 28.734, 34.345, 35.927, 37.342, 38.715, 39.768, 40.664, 41.426, 42.056, 42.524, 43.054, 43.416, 43.594, 43.885] + + expected_lntts.zip(actual_lntts).each do |v1, v2| + assert_in_epsilon(v1, v2, 0.01) + end + expected_gfnc_coeff.zip(actual_gfnc_coeff).each do |v1, v2| + assert_in_epsilon(v1, v2, 0.01) + end + end + def test_shared_chiller_baseboard args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-chiller-only-baseboard.xml')) diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 3b5bca8c0f..51eacf85d0 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2359,15 +2359,15 @@ "sample_files/base-hvac-geothermal-loop.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "geothermal_loop_loop_flow": 10.0, - "geothermal_loop_boreholes_or_trenches_count": 4, - "geothermal_loop_boreholes_or_trenches_length": 350.0, - "geothermal_loop_boreholes_or_trenches_spacing": 25.0, - "geothermal_loop_boreholes_or_trenches_diameter": 6.0, + "geothermal_loop_boreholes_or_trenches_count": 9, + "geothermal_loop_boreholes_or_trenches_length": 1259.84, + "geothermal_loop_boreholes_or_trenches_spacing": 16.4042, + "geothermal_loop_boreholes_or_trenches_diameter": 6.8897638, "geothermal_loop_grout_conductivity": 0.5, "geothermal_loop_pipe_conductivity": 0.3, "geothermal_loop_pipe_diameter": "1\" pipe", "geothermal_loop_pipe_shank_spacing": 2.5, - "geothermal_loop_borefield_configuration": "L" + "geothermal_loop_borefield_configuration": "Lopsided U" }, "sample_files/base-hvac-geothermal-loop-ground-diffusivity.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", diff --git a/workflow/sample_files/base-hvac-geothermal-loop.xml b/workflow/sample_files/base-hvac-geothermal-loop.xml index 956bfebfe4..3c238c4871 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop.xml @@ -356,10 +356,10 @@ vertical 10.0 - 4 - 350.0 - 25.0 - 6.0 + 9 + 1259.84 + 16.4042 + 6.8897638 0.5 @@ -370,7 +370,7 @@ 2.5 - L + Lopsided U From c50f167bb7b0de02dec0542c702f5dce13b34d5a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 30 Jun 2023 00:33:57 +0000 Subject: [PATCH 062/217] Latest results. --- workflow/tests/base_results/results.csv | 66 ++++++++++--------- workflow/tests/base_results/results_bills.csv | 14 ++-- 2 files changed, 44 insertions(+), 36 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 5be7df79be..484b622e55 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -125,7 +125,7 @@ base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0 base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,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,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.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,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,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,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,64.445,64.445,29.438,29.438,35.007,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,3.69,0.673,9.366,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,35.007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.788,0.0,11.181,9.342,0.619,0.0,0.0,0.0,0.0,1757.2,3482.5,27.934,20.772,0.0,3.519,3.647,0.0,0.0,0.654,9.893,-12.804,0.0,0.0,26.42,0.0,-0.18,2.047,0.0,0.786,0.0,7.347,-7.418,-1.565,0.0,0.392,-0.069,0.0,0.0,0.096,0.251,11.037,0.0,0.0,-7.528,0.0,-0.176,-0.275,-1.935,-0.093,0.0,2.77,5.786,1.082,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-enclosure-floortypes.xml,67.648,67.648,29.356,29.356,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.632,0.0,0.0,3.58,0.646,9.367,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,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.866,0.0,10.726,9.342,0.621,0.0,0.0,0.0,0.0,1766.6,3491.4,29.153,20.79,0.0,3.477,3.648,0.0,0.0,0.67,9.92,-12.906,0.0,0.0,29.048,0.0,-0.198,2.052,0.0,0.787,0.0,7.954,-7.487,-1.578,0.0,0.424,-0.063,0.0,0.0,0.096,0.383,10.935,0.0,0.0,-7.934,0.0,-0.193,-0.259,-1.855,-0.085,0.0,2.655,5.717,1.069,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,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,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -150,8 +150,10 @@ base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.52 base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,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,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,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,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,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-ambient.xml,47.553,47.553,30.316,30.316,17.237,0.0,0.0,0.0,0.0,0.0,0.0,0.284,0.0,0.0,4.641,0.906,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,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,0.0,15.224,9.342,0.606,0.0,0.0,0.0,2.0,1739.5,3551.4,20.358,21.092,0.0,3.835,3.82,0.0,0.0,0.743,10.74,-11.371,0.0,0.0,9.918,0.0,-0.403,2.064,0.0,0.788,0.0,3.878,-6.786,-1.435,0.0,-0.045,-0.503,0.0,0.0,0.04,-0.774,12.469,0.0,0.0,-3.613,0.0,-0.397,-0.407,-2.432,-0.157,0.0,3.617,6.404,1.212,1354.8,997.6,11399.5,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,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-ambient.xml,48.007,48.007,30.285,30.285,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.292,0.0,0.0,4.61,0.898,9.354,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,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.601,0.0,15.077,9.342,0.606,0.0,0.0,0.0,2.0,1740.7,3397.3,20.514,21.089,0.0,3.835,3.846,0.0,0.0,0.76,10.831,-11.429,0.0,0.0,10.226,0.0,-0.403,2.065,0.0,0.789,0.0,3.979,-6.811,-1.44,0.0,-0.046,-0.527,0.0,0.0,0.028,-0.75,12.412,0.0,0.0,-3.67,0.0,-0.396,-0.402,-2.391,-0.154,0.0,3.577,6.38,1.207,1354.8,997.6,11399.5,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,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,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,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 +base-foundation-belly-wing-no-skirt.xml,49.694,49.694,29.445,29.445,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,3.895,0.731,9.354,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,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.964,0.0,12.009,9.342,0.607,0.0,0.0,0.0,0.0,1753.6,3211.6,24.176,17.286,0.0,3.981,5.371,0.0,0.0,0.753,8.835,-11.05,0.0,0.0,10.267,0.0,-0.35,2.069,0.0,0.794,0.0,6.238,-6.883,-1.459,0.0,0.302,-0.601,0.0,0.0,0.038,-0.188,9.522,0.0,0.0,-3.443,0.0,-0.343,-0.395,-2.184,-0.144,0.0,2.215,6.308,1.188,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-belly-wing-skirt.xml,49.322,49.322,29.453,29.453,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.328,0.0,0.0,3.906,0.734,9.354,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,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.608,0.0,12.062,9.342,0.607,0.0,0.0,0.0,0.0,1752.3,3180.5,24.023,17.245,0.0,3.987,5.379,0.0,0.0,0.753,8.843,-11.04,0.0,0.0,9.969,0.0,-0.345,2.068,0.0,0.793,0.0,6.125,-6.873,-1.457,0.0,0.296,-0.61,0.0,0.0,0.036,-0.211,9.532,0.0,0.0,-3.365,0.0,-0.338,-0.399,-2.199,-0.146,0.0,2.221,6.318,1.191,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-complex.xml,78.103,78.103,37.261,37.261,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.674,0.0,0.0,5.116,1.028,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.25,0.0,17.361,9.233,0.617,0.0,0.0,0.0,2.0,2171.5,3845.1,33.417,21.451,0.0,3.431,3.657,0.52,19.54,0.65,10.564,-12.717,0.0,0.0,0.0,8.705,-0.111,6.102,0.0,0.739,0.0,8.38,-9.124,-2.557,0.0,0.048,-0.359,-0.044,3.767,-0.003,-1.508,11.564,0.0,0.0,0.0,-4.519,-0.103,-1.227,-3.259,-0.137,0.0,3.71,7.657,1.952,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,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,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -298,7 +300,7 @@ base-hvac-geothermal-loop-loop-flow.xml,39.565,39.565,39.565,39.565,0.0,0.0,0.0, base-hvac-geothermal-loop-pipe-conductivity.xml,39.542,39.542,39.542,39.542,0.0,0.0,0.0,0.0,0.0,0.0,5.245,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.3,2577.1,20.864,14.693,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.762,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-geothermal-loop-pipe-diameter.xml,39.539,39.539,39.539,39.539,0.0,0.0,0.0,0.0,0.0,0.0,5.241,0.361,0.0,0.0,2.468,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.538,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3208.7,2572.8,20.907,14.686,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.046,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.511,39.511,39.511,39.511,0.0,0.0,0.0,0.0,0.0,0.0,5.234,0.36,0.0,0.0,2.45,1.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.533,0.0,12.673,9.233,0.614,0.0,0.0,0.0,0.0,3204.7,2568.5,20.838,14.682,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.041,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop.xml,39.345,39.345,39.345,39.345,0.0,0.0,0.0,0.0,0.0,0.0,5.17,0.352,0.0,0.0,2.365,1.017,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.495,0.0,12.662,9.233,0.614,0.0,0.0,0.0,0.0,3169.3,2532.8,20.711,14.634,0.0,3.608,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.001,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.75,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,39.08,39.08,39.08,39.08,0.0,0.0,0.0,0.0,0.0,0.0,5.08,0.34,0.0,0.0,2.219,1.001,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.439,0.0,12.644,9.233,0.614,0.0,0.0,0.0,0.0,3122.8,2459.5,20.484,14.586,0.0,3.61,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.944,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.732,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.794,33.794,33.794,33.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.534,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.0,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-heating-only.xml,36.57,36.57,36.57,36.57,0.0,0.0,0.0,0.0,0.0,0.0,5.39,0.762,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,0.0,20.338,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3364.6,1637.3,22.259,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.032,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.1,2577.8,20.865,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -413,6 +415,8 @@ base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.0 base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,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,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,33.64,33.64,28.659,28.659,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.082,0.0,0.0,3.199,0.556,7.442,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,9.408,7.426,0.561,0.0,0.0,0.5,0.5,9398.1,10416.5,41.812,21.425,0.0,2.585,2.431,0.339,4.203,0.328,6.833,-12.363,0.0,0.0,0.0,3.542,-0.105,3.354,0.0,0.382,0.0,1.039,-6.567,-1.596,0.0,-0.232,-0.587,-0.07,2.391,-0.062,-2.309,11.863,0.0,0.0,0.0,-7.603,-0.059,-1.378,-4.919,-0.21,0.0,2.269,8.448,2.023,1141.2,883.5,9401.7,2157.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps.xml,42.676,42.676,34.392,34.392,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.137,0.0,0.0,3.211,0.559,9.199,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.756,0.0,9.457,9.21,0.671,0.0,0.0,0.0,0.5,9394.7,10419.5,31.982,21.427,0.0,2.889,2.782,0.39,5.331,0.415,7.871,-12.359,0.0,0.0,0.0,5.381,-0.059,3.834,0.0,0.578,0.0,1.776,-8.861,-2.486,0.0,-0.236,-0.59,-0.07,2.395,-0.063,-2.32,11.863,0.0,0.0,0.0,-7.535,-0.058,-1.38,-4.931,-0.211,0.0,2.279,8.448,2.023,1354.7,998.0,11490.9,2636.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -437,36 +441,36 @@ base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077, base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,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,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,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,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -house001.xml,86.472,86.472,46.995,46.995,39.477,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.723,4.406,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,0.0,22.439,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.196,0.0,50.021,10.416,2.674,0.0,0.0,0.0,0.0,1853.3,6430.8,37.577,40.55,0.489,1.971,7.187,0.419,0.0,0.959,7.579,-4.942,0.0,0.0,0.438,1.257,-0.263,4.293,0.0,5.152,0.0,3.21,-6.762,-2.935,0.576,2.028,3.795,0.307,0.0,0.257,0.294,11.575,0.0,0.0,0.572,6.816,-0.249,-0.42,-1.415,-0.757,0.0,10.793,11.588,4.446,2104.5,2144.0,14468.7,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,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 -house002.xml,67.267,67.267,39.84,39.84,27.428,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.743,3.413,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,0.0,13.945,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.306,0.0,39.368,7.526,2.888,0.0,0.0,0.0,0.0,1554.0,4938.0,23.886,28.431,0.0,2.525,5.047,0.0,0.0,0.848,5.998,-4.053,0.0,0.0,0.0,1.761,-0.146,1.574,0.0,3.789,0.0,1.371,-5.071,-2.493,0.0,3.11,2.775,0.0,0.0,0.402,-0.49,8.601,0.0,0.0,0.0,8.463,-0.14,-0.183,-1.053,-0.638,0.0,5.886,8.93,3.888,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,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 -house003.xml,68.65,68.65,40.101,40.101,28.549,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.766,3.552,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,0.0,15.309,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.411,0.0,40.869,7.526,2.687,0.0,0.0,0.0,0.0,1632.3,5239.7,26.287,32.144,0.645,2.771,4.649,0.0,0.0,0.979,6.67,-3.929,0.0,0.0,0.0,1.082,-0.162,1.987,0.0,3.935,0.0,1.613,-5.288,-2.699,0.809,3.085,2.609,0.0,0.0,0.639,-0.276,9.905,0.0,0.0,0.0,6.527,-0.155,-0.219,-1.096,-0.637,0.0,6.494,9.194,4.176,1610.9,1574.7,9989.3,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,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 -house004.xml,136.282,136.282,75.371,75.371,60.91,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,29.027,9.473,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,0.0,44.769,0.0,16.142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.203,0.0,107.257,8.985,3.506,0.0,0.0,0.0,105.0,3062.3,7371.4,54.682,50.217,0.128,5.524,11.378,0.0,0.0,1.248,14.004,-5.986,0.0,0.0,0.0,3.23,-0.722,4.937,0.0,6.276,0.0,7.099,-7.294,-3.929,0.202,6.823,11.717,0.0,0.0,0.523,5.458,17.456,0.0,0.0,0.0,18.949,-0.709,1.029,0.0,1.859,0.0,21.516,15.063,7.633,1857.7,1859.3,12229.0,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,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 -house005.xml,95.141,95.141,53.332,53.332,41.809,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.312,5.162,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,0.0,26.616,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,21.585,0.0,59.698,8.985,2.726,0.0,0.0,0.0,0.0,2075.9,7519.2,45.934,51.035,0.0,3.005,8.093,0.266,0.0,1.336,10.05,-6.655,0.0,0.0,0.37,1.255,-0.337,5.037,0.0,5.077,0.0,4.382,-6.862,-3.637,0.0,3.044,4.354,0.214,0.0,0.297,0.315,15.402,0.0,0.0,0.447,7.531,-0.32,-0.49,-1.77,-0.737,0.0,14.587,11.523,5.518,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,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 -house006.xml,139.357,139.357,31.782,31.782,107.575,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.953,0.341,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,0.0,81.727,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,78.681,0.0,7.808,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2442.3,40.505,14.731,0.0,4.256,22.278,1.991,37.117,1.867,17.963,-9.446,0.0,0.0,0.0,9.283,-0.314,9.522,0.0,4.368,0.0,0.0,-14.565,-6.451,0.0,0.178,-0.792,-0.044,2.801,-0.086,-0.887,4.265,0.0,0.0,0.0,-3.891,-0.314,-0.515,-0.615,-0.076,0.0,0.0,5.651,2.235,1610.9,1574.7,12168.1,4288.2,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 -house007.xml,138.659,138.659,33.929,33.929,104.729,0.0,0.0,0.0,0.0,0.0,0.0,1.628,0.0,0.0,2.555,0.4,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,0.0,75.062,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,70.676,0.0,5.814,15.632,3.268,0.0,0.0,0.0,0.0,2191.5,2565.8,39.63,13.29,0.0,4.707,23.656,4.406,10.133,1.499,18.999,-9.349,0.0,0.0,0.076,11.562,-0.345,6.117,0.0,20.827,0.0,2.86,-17.223,-7.76,0.0,0.206,-0.703,-0.04,0.576,-0.047,-0.551,4.544,0.0,0.0,-0.009,-4.011,-0.341,-0.192,-0.588,-1.896,0.0,0.104,6.317,2.539,1857.7,1859.4,14896.3,4852.9,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 -house008.xml,183.485,183.485,39.144,39.144,144.34,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.561,0.531,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,0.0,110.902,0.0,26.377,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,104.5,0.0,10.001,18.129,3.214,0.0,0.0,0.0,0.0,2473.1,3289.5,54.741,19.31,0.0,7.212,27.414,4.688,24.238,1.181,22.401,-7.849,0.0,0.0,1.234,17.862,-0.362,18.324,0.0,6.386,0.0,7.824,-18.687,-8.194,0.0,0.311,-1.111,-0.061,1.635,-0.086,-1.374,5.33,0.0,0.0,-0.101,-2.739,-0.362,-0.983,-0.683,-0.282,0.0,0.529,7.266,2.812,2104.5,2144.0,17624.6,5341.6,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 -house009.xml,154.121,154.121,33.995,33.995,120.126,0.0,0.0,0.0,0.0,0.0,0.0,2.031,0.0,0.0,2.388,0.289,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,0.0,90.45,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,85.228,0.0,5.241,15.632,3.276,0.0,0.0,0.0,0.0,2226.5,2610.0,44.115,13.93,0.0,5.087,28.334,4.269,13.065,2.25,19.554,-8.214,0.0,0.0,0.266,15.646,-0.345,8.729,0.0,21.437,0.0,0.0,-17.507,-7.871,0.0,0.245,-0.691,-0.018,0.745,-0.076,-0.776,4.52,0.0,0.0,-0.028,-4.088,-0.341,-0.259,-0.523,-1.801,0.0,0.0,6.014,2.401,1857.7,1859.4,14896.3,4852.9,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 -house010.xml,153.588,153.588,37.564,37.564,116.025,0.0,0.0,0.0,0.0,0.0,0.0,1.855,0.0,0.0,2.913,0.276,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,0.0,82.588,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,77.824,0.0,7.35,18.129,3.213,0.0,0.0,0.0,0.0,2408.3,2815.0,45.2,15.383,0.873,4.92,25.41,4.856,9.774,1.252,23.488,-9.22,0.0,0.0,0.902,11.403,-0.365,19.561,0.0,6.401,0.0,4.851,-18.7,-8.18,0.025,0.222,-0.739,-0.075,0.555,-0.072,-1.358,5.073,0.0,0.0,-0.046,-4.174,-0.361,-1.025,-0.679,-0.27,0.0,0.338,7.235,2.807,2104.5,2144.0,17624.6,5341.6,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 +house001.xml,86.453,86.453,46.944,46.944,39.508,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.684,4.394,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,0.0,22.462,0.0,17.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.215,0.0,49.863,10.416,2.681,0.0,0.0,0.0,0.0,1853.4,6417.7,37.576,40.427,0.492,1.982,7.189,0.419,0.0,0.959,7.577,-4.942,0.0,0.0,0.438,1.255,-0.262,4.293,0.0,5.152,0.0,3.214,-6.762,-2.935,0.562,1.981,3.785,0.305,0.0,0.258,0.298,11.575,0.0,0.0,0.573,6.821,-0.248,-0.42,-1.413,-0.757,0.0,10.696,11.588,4.446,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,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 +house002.xml,67.263,67.263,39.818,39.818,27.444,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.726,3.409,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,0.0,13.958,0.0,13.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.316,0.0,39.308,7.526,2.891,0.0,0.0,0.0,0.0,1554.0,4934.4,23.891,28.399,0.0,2.53,5.051,0.0,0.0,0.85,5.996,-4.053,0.0,0.0,0.0,1.759,-0.146,1.573,0.0,3.789,0.0,1.372,-5.071,-2.493,0.0,3.082,2.762,0.0,0.0,0.396,-0.488,8.601,0.0,0.0,0.0,8.468,-0.14,-0.182,-1.052,-0.638,0.0,5.863,8.93,3.888,1610.9,1574.7,9989.4,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,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 +house003.xml,68.642,68.642,40.063,40.063,28.579,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.737,3.543,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,0.0,15.333,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.0,40.757,7.526,2.691,0.0,0.0,0.0,0.0,1632.4,5147.9,26.295,31.384,0.648,2.781,4.656,0.0,0.0,0.985,6.674,-3.929,0.0,0.0,0.0,1.074,-0.164,1.988,0.0,3.937,0.0,1.615,-5.293,-2.701,0.794,3.047,2.594,0.0,0.0,0.624,-0.264,9.905,0.0,0.0,0.0,6.53,-0.157,-0.218,-1.094,-0.633,0.0,6.453,9.189,4.174,1610.9,1574.7,9989.3,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,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 +house004.xml,136.271,136.271,75.306,75.306,60.965,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,28.978,9.455,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,0.0,44.816,0.0,16.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.241,0.0,107.036,8.985,3.511,0.0,0.0,0.0,101.0,3061.1,7371.4,54.694,50.188,0.128,5.535,11.395,0.0,0.0,1.249,14.009,-5.986,0.0,0.0,0.0,3.226,-0.721,4.938,0.0,6.279,0.0,7.107,-7.297,-3.933,0.199,6.756,11.661,0.0,0.0,0.524,5.468,17.456,0.0,0.0,0.0,18.954,-0.708,1.03,0.0,1.86,0.0,21.407,15.06,7.63,1857.7,1859.3,12228.9,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,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 +house005.xml,95.118,95.118,53.277,53.277,41.841,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.27,5.149,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,0.0,26.64,0.0,15.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,21.604,0.0,59.527,8.985,2.731,0.0,0.0,0.0,0.0,2076.0,7519.1,45.933,50.952,0.0,3.02,8.096,0.267,0.0,1.336,10.048,-6.655,0.0,0.0,0.37,1.253,-0.336,5.037,0.0,5.077,0.0,4.386,-6.862,-3.637,0.0,2.987,4.342,0.212,0.0,0.297,0.319,15.402,0.0,0.0,0.447,7.536,-0.319,-0.49,-1.768,-0.737,0.0,14.474,11.523,5.518,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,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 +house006.xml,139.365,139.365,31.78,31.78,107.585,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.951,0.34,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,0.0,81.738,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,78.691,0.0,7.8,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2441.9,40.506,14.727,0.0,4.261,22.283,1.991,37.119,1.868,17.963,-9.449,0.0,0.0,0.0,9.284,-0.313,9.523,0.0,4.368,0.0,0.0,-14.567,-6.452,0.0,0.174,-0.793,-0.044,2.801,-0.086,-0.887,4.262,0.0,0.0,0.0,-3.89,-0.313,-0.514,-0.614,-0.075,0.0,0.0,5.649,2.235,1610.9,1574.7,12168.1,4288.2,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 +house007.xml,138.83,138.83,33.914,33.914,104.916,0.0,0.0,0.0,0.0,0.0,0.0,1.632,0.0,0.0,2.54,0.396,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,0.0,75.248,0.0,23.282,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,70.851,0.0,5.753,15.632,3.269,0.0,0.0,0.0,0.0,2192.0,2562.1,39.678,13.27,0.0,4.719,23.705,4.446,10.133,1.504,19.077,-9.362,0.0,0.0,0.077,11.566,-0.343,6.119,0.0,20.834,0.0,2.867,-17.238,-7.765,0.0,0.197,-0.722,-0.06,0.577,-0.049,-0.553,4.531,0.0,0.0,-0.009,-4.0,-0.339,-0.191,-0.585,-1.888,0.0,0.104,6.303,2.533,1857.7,1859.4,14896.3,4852.9,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 +house008.xml,183.501,183.501,39.139,39.139,144.362,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.556,0.53,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,0.0,110.924,0.0,26.378,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,104.521,0.0,9.981,18.129,3.214,0.0,0.0,0.0,0.0,2473.2,3287.8,54.741,19.298,0.0,7.23,27.419,4.689,24.238,1.181,22.401,-7.862,0.0,0.0,1.235,17.867,-0.356,18.326,0.0,6.386,0.0,7.825,-18.694,-8.197,0.0,0.294,-1.11,-0.063,1.637,-0.086,-1.372,5.318,0.0,0.0,-0.1,-2.732,-0.356,-0.983,-0.682,-0.282,0.0,0.528,7.259,2.809,2104.5,2144.0,17624.6,5341.6,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 +house009.xml,154.293,154.293,33.983,33.983,120.31,0.0,0.0,0.0,0.0,0.0,0.0,2.035,0.0,0.0,2.375,0.286,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,0.0,90.634,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,85.401,0.0,5.187,15.632,3.276,0.0,0.0,0.0,0.0,2227.1,2605.9,44.161,13.902,0.0,5.098,28.389,4.31,13.07,2.257,19.625,-8.244,0.0,0.0,0.266,15.661,-0.329,8.731,0.0,21.443,0.0,0.0,-17.529,-7.88,0.0,0.238,-0.711,-0.038,0.753,-0.078,-0.78,4.49,0.0,0.0,-0.028,-4.065,-0.325,-0.258,-0.521,-1.794,0.0,0.0,5.992,2.391,1857.7,1859.4,14896.3,4852.9,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 +house010.xml,153.796,153.796,37.549,37.549,116.246,0.0,0.0,0.0,0.0,0.0,0.0,1.86,0.0,0.0,2.896,0.273,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,0.0,82.81,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,78.033,0.0,7.28,18.129,3.214,0.0,0.0,0.0,0.0,2409.0,2810.7,45.27,15.353,0.875,4.93,25.457,4.901,9.774,1.256,23.582,-9.227,0.0,0.0,0.906,11.41,-0.365,19.566,0.0,6.402,0.0,4.869,-18.715,-8.186,0.023,0.211,-0.764,-0.099,0.558,-0.073,-1.356,5.066,0.0,0.0,-0.046,-4.161,-0.362,-1.021,-0.677,-0.269,0.0,0.334,7.219,2.8,2104.5,2144.0,17624.6,5341.6,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,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,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,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,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,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,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,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,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 house013.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,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,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,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,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 house015.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house016.xml,61.263,61.263,39.853,39.853,0.0,0.0,21.411,0.0,0.0,0.0,7.559,0.538,0.161,0.004,3.072,1.04,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.223,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.34,0.164,12.019,10.478,0.0,0.0,0.0,1.0,16.0,7459.0,3560.9,42.956,19.023,0.0,4.422,10.844,0.619,5.714,0.298,7.394,-8.024,0.0,0.0,0.0,6.778,-0.019,5.733,0.0,3.86,0.0,0.0,-8.633,-4.768,0.0,-0.35,-0.879,-0.023,2.9,-0.048,-0.599,12.366,0.0,0.0,0.0,-8.871,-0.021,-1.377,-1.189,-1.027,0.0,0.0,7.782,3.838,1759.0,1745.5,13591.0,4566.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 +house016.xml,61.263,61.263,39.85,39.85,0.0,0.0,21.413,0.0,0.0,0.0,7.562,0.538,0.161,0.004,3.068,1.038,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.225,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.35,0.164,12.001,10.478,0.0,0.0,0.0,1.0,16.0,7459.2,3559.3,42.956,19.008,0.0,4.428,10.851,0.619,5.712,0.298,7.395,-8.024,0.0,0.0,0.0,6.777,-0.02,5.735,0.0,3.86,0.0,0.0,-8.634,-4.768,0.0,-0.362,-0.889,-0.023,2.899,-0.047,-0.596,12.366,0.0,0.0,0.0,-8.869,-0.022,-1.375,-1.189,-1.027,0.0,0.0,7.78,3.838,1759.0,1745.5,13591.0,4566.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,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,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2606.0,1095.0,711.0,800.0 -house019.xml,129.829,129.829,51.943,51.943,77.886,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.26,3.784,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.111,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.061,0.0,44.571,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6498.5,84.656,46.066,0.0,11.382,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.956,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.957,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 -house020.xml,116.978,116.978,56.889,56.889,0.0,0.0,60.089,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.255,2.925,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.951,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.0,34.544,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6621.3,31.034,32.551,0.908,11.005,10.577,1.134,9.808,0.633,14.613,-15.405,0.0,0.0,0.0,7.525,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.244,0.149,0.176,0.052,6.389,0.012,-1.765,21.501,0.0,0.0,0.0,-6.71,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 -house021.xml,156.414,156.414,48.608,48.608,107.806,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.49,1.583,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.765,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.989,0.0,19.001,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4772.1,81.115,23.856,0.0,8.268,27.059,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.316,26.612,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.014,-0.865,0.005,2.201,-0.093,-1.71,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.324,8.889,3.787,1759.0,1745.5,13752.0,4620.1,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 +house019.xml,129.831,129.831,51.94,51.94,77.891,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.257,3.783,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.116,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.065,0.0,44.56,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6497.7,84.656,46.058,0.0,11.387,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.955,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.944,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 +house020.xml,116.979,116.979,56.877,56.877,0.0,0.0,60.102,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.245,2.923,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.965,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.971,0.0,34.513,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6618.4,31.034,32.534,0.91,11.02,10.576,1.133,9.807,0.632,14.612,-15.405,0.0,0.0,0.0,7.524,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.24,0.116,0.176,0.053,6.39,0.012,-1.763,21.501,0.0,0.0,0.0,-6.709,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 +house021.xml,156.416,156.416,48.605,48.605,107.811,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.488,1.582,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.77,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,18.993,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4771.0,81.115,23.848,0.0,8.272,27.058,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.315,26.613,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.008,-0.864,0.005,2.201,-0.093,-1.709,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.322,8.889,3.787,1759.0,1745.5,13752.0,4620.1,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 house022.xml,137.518,137.518,48.884,48.884,0.0,88.635,0.0,0.0,0.0,0.0,0.0,2.204,0.0,0.0,8.878,0.897,12.47,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,88.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.755,0.0,19.669,10.989,1.479,0.0,0.0,184.0,126.0,2989.1,5375.4,90.672,27.64,3.697,3.766,20.67,0.0,0.0,1.489,16.102,-13.284,0.0,0.0,14.728,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.522,0.0,0.0,-0.127,-0.987,12.096,0.0,0.0,1.908,0.0,-0.281,-2.742,-0.645,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 house024.xml,129.181,129.181,44.059,44.059,0.0,85.122,0.0,0.0,0.0,0.0,0.0,2.117,0.0,0.0,5.375,0.691,16.753,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.176,0.0,16.013,14.653,2.088,0.0,0.0,0.0,0.0,2750.5,3528.1,72.024,17.577,0.0,7.189,30.113,0.0,0.0,0.682,6.988,-7.991,0.0,0.0,5.221,0.0,-0.109,25.401,0.0,1.837,0.0,11.726,-8.633,-2.537,0.0,0.564,1.148,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.499,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.853,5.531,1.379,2176.1,2226.5,14983.5,4452.7,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,21856.0,1377.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7041.0,2605.0,3636.0,800.0 house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,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,32212.0,8765.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 -house026.xml,57.146,57.146,24.857,24.857,32.289,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,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,0.0,18.143,0.0,14.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,13.901,0.0,0.0,8.607,2.082,0.0,0.0,0.0,0.0,1554.0,1299.3,17.371,0.0,0.0,1.768,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.102,0.0,-0.058,2.488,0.0,3.127,0.0,0.0,-6.707,-3.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,1294.8,1282.2,8578.8,3023.3,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 -house027.xml,72.675,72.675,31.766,31.766,40.908,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,7.903,1.021,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,0.0,19.958,0.0,17.881,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.8,0.0,23.144,8.564,5.231,0.0,0.0,0.0,0.0,1579.3,3624.8,24.012,22.742,0.717,1.779,7.835,0.433,0.0,0.588,5.217,-4.028,0.0,0.0,0.372,3.347,-0.138,1.744,0.0,10.422,0.0,2.036,-8.785,-2.844,0.486,1.117,0.735,0.091,0.0,-0.107,-0.293,5.629,0.0,0.0,0.112,3.831,-0.138,-0.367,-0.973,-3.484,0.0,2.602,10.733,3.103,1610.9,1574.7,10579.5,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 -house028.xml,67.777,67.777,29.713,29.713,38.064,0.0,0.0,0.0,0.0,0.0,0.0,0.257,0.0,0.0,7.134,1.521,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,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.733,0.0,22.845,10.226,3.619,0.0,0.0,0.0,0.0,1516.8,3329.2,19.98,21.277,0.767,1.659,7.019,0.34,0.0,0.428,5.478,-3.79,0.0,0.0,0.233,2.471,-0.05,4.04,0.0,4.465,0.0,1.534,-9.079,-2.901,0.614,1.244,-0.524,0.118,0.0,0.074,-0.711,6.39,0.0,0.0,0.073,1.831,-0.051,-1.083,-1.206,-1.646,0.0,2.931,11.526,3.237,1857.7,1859.4,12951.5,4219.3,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 -house029.xml,77.593,77.593,29.958,29.958,47.635,0.0,0.0,0.0,0.0,0.0,0.0,0.639,0.0,0.0,6.114,0.908,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,0.0,31.97,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,31.636,0.0,13.626,9.614,0.0,0.0,0.0,0.0,0.0,1604.9,3003.4,28.47,13.974,0.0,3.358,14.686,0.392,0.0,0.306,6.694,-6.461,0.0,0.0,6.933,0.0,-0.085,7.291,0.0,7.304,0.0,3.149,-8.377,-3.711,0.0,1.131,-0.846,0.009,0.0,0.055,0.372,5.722,0.0,0.0,-0.45,0.0,-0.08,-0.809,-1.069,-1.537,0.0,1.217,7.168,2.832,1610.9,1574.7,11033.0,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,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 -house030.xml,57.851,57.851,17.189,17.189,0.0,0.0,40.662,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.347,0.0,13.279,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.86,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,15.992,0.0,0.0,1.668,10.205,0.489,1.11,1.046,5.343,-4.368,0.0,0.0,0.0,3.583,-0.04,2.741,0.0,5.693,0.0,0.0,-7.808,-2.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,1066.1,992.8,6764.1,2581.1,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 +house026.xml,57.14,57.14,24.857,24.857,32.282,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,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,0.0,18.136,0.0,14.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,13.896,0.0,0.0,8.607,2.082,0.0,0.0,0.0,0.0,1554.0,1299.3,17.371,0.0,0.0,1.761,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.103,0.0,-0.058,2.488,0.0,3.127,0.0,0.0,-6.707,-3.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,1294.8,1282.2,8578.8,3023.3,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 +house027.xml,72.753,72.753,31.736,31.736,41.016,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,7.874,1.017,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,0.0,20.065,0.0,17.882,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.901,0.0,23.04,8.564,5.232,0.0,0.0,0.0,0.0,1580.0,3622.8,24.052,22.72,0.716,1.776,7.887,0.452,0.0,0.591,5.247,-4.028,0.0,0.0,0.376,3.336,-0.14,1.745,0.0,10.425,0.0,2.046,-8.79,-2.845,0.489,1.124,0.653,0.056,0.0,-0.113,-0.286,5.628,0.0,0.0,0.105,3.836,-0.14,-0.365,-0.966,-3.474,0.0,2.595,10.728,3.102,1610.9,1574.7,10579.5,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 +house028.xml,67.831,67.831,29.68,29.68,38.15,0.0,0.0,0.0,0.0,0.0,0.0,0.259,0.0,0.0,7.107,1.515,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,0.0,13.643,0.0,18.121,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.812,0.0,22.735,10.226,3.62,0.0,0.0,0.0,0.0,1517.3,3323.9,20.023,21.223,0.769,1.663,7.049,0.35,0.0,0.432,5.505,-3.79,0.0,0.0,0.236,2.464,-0.05,4.039,0.0,4.464,0.0,1.543,-9.08,-2.901,0.607,1.232,-0.581,0.098,0.0,0.066,-0.712,6.39,0.0,0.0,0.069,1.838,-0.051,-1.081,-1.198,-1.645,0.0,2.913,11.527,3.237,1857.7,1859.4,12951.6,4219.3,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 +house029.xml,77.601,77.601,29.95,29.95,47.651,0.0,0.0,0.0,0.0,0.0,0.0,0.639,0.0,0.0,6.107,0.906,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,0.0,31.987,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,31.653,0.0,13.604,9.614,0.0,0.0,0.0,0.0,0.0,1604.9,3000.4,28.473,13.951,0.0,3.364,14.695,0.392,0.0,0.308,6.693,-6.461,0.0,0.0,6.932,0.0,-0.085,7.292,0.0,7.304,0.0,3.15,-8.377,-3.711,0.0,1.12,-0.859,0.009,0.0,0.053,0.373,5.722,0.0,0.0,-0.449,0.0,-0.08,-0.809,-1.067,-1.536,0.0,1.215,7.168,2.832,1610.9,1574.7,11033.0,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,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 +house030.xml,57.883,57.883,17.189,17.189,0.0,0.0,40.694,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.377,0.0,13.28,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.883,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,15.992,0.0,0.0,1.68,10.216,0.489,1.112,1.049,5.343,-4.368,0.0,0.0,0.0,3.578,-0.04,2.742,0.0,5.694,0.0,0.0,-7.809,-2.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,1066.0,992.8,6763.9,2581.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.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,1341.9,1264.5,7310.3,2807.9,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 house033.xml,106.743,106.743,14.691,14.691,0.0,92.052,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.371,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,48.38,0.0,0.0,19.125,14.564,0.0,0.0,1.0,10.82,-7.637,0.0,0.0,14.706,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.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,0.0,924.8,0.0,3905.6,1188.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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 @@ -477,13 +481,13 @@ house037.xml,87.934,87.934,21.779,21.779,0.0,66.155,0.0,0.0,0.0,0.0,0.0,0.179,0. house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 house039.xml,98.796,98.796,24.025,24.025,74.77,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,5.136,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.084,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,49.765,0.0,0.0,14.276,5.416,0.0,0.0,2.519,15.643,-13.75,0.0,0.0,13.85,0.0,-0.039,13.263,0.0,0.557,0.0,0.0,-4.135,-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,2176.1,2226.5,17536.3,5211.3,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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 -house041.xml,258.48,258.48,47.139,47.139,211.342,0.0,0.0,0.0,0.0,0.0,0.0,4.151,0.0,0.0,2.593,0.257,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,0.0,184.79,0.0,26.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,174.122,0.0,4.704,15.632,5.038,0.0,0.0,103.0,0.0,3249.4,4567.1,77.743,23.534,0.0,11.264,44.726,3.447,34.908,3.025,41.259,-22.88,0.0,0.0,4.289,17.434,-0.474,64.047,0.0,2.763,0.0,0.0,-20.278,-10.992,0.0,0.093,-2.198,-0.115,1.596,-0.209,-3.997,11.045,0.0,0.0,-0.313,-5.336,-0.472,-3.498,-1.028,-0.259,0.0,0.0,6.569,2.951,1857.7,1859.4,14896.4,4852.9,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 -house042.xml,229.276,229.276,40.067,40.067,189.209,0.0,0.0,0.0,0.0,0.0,0.0,3.861,0.0,0.0,1.818,0.074,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,0.0,164.772,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.009,0.0,3.03,15.632,3.226,0.0,0.0,0.0,0.0,2757.4,3100.6,88.072,19.637,0.0,9.211,39.99,4.004,43.909,2.667,34.16,-21.628,0.0,0.0,2.431,14.543,-0.387,56.221,0.0,1.75,0.0,0.0,-19.149,-7.586,0.0,0.196,-1.567,-0.06,2.667,-0.158,-3.11,7.072,0.0,0.0,-0.27,-5.119,-0.384,-2.856,-0.646,-0.145,0.0,0.0,5.559,1.953,1857.7,1859.4,14896.3,4852.9,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 -house043.xml,157.888,157.888,30.054,30.054,127.833,0.0,0.0,0.0,0.0,0.0,0.0,2.45,0.0,0.0,2.036,0.12,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,0.0,107.933,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,102.807,0.0,3.06,13.084,2.207,0.0,0.0,0.0,0.0,1988.1,2800.1,54.569,13.842,0.0,3.173,23.231,2.284,33.901,5.6,23.481,-11.471,0.0,0.0,0.548,9.95,-0.272,28.925,0.0,1.576,0.0,0.0,-14.35,-5.158,0.0,0.03,-0.918,-0.093,1.54,-0.376,-2.37,5.811,0.0,0.0,-0.07,-3.685,-0.272,-1.621,-0.541,-0.148,0.0,0.0,4.472,1.404,1610.9,1574.7,12168.1,4288.2,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 -house044.xml,225.411,225.411,43.512,43.512,181.898,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,0.0,2.108,0.2,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,0.0,159.332,0.0,22.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.036,0.0,3.798,13.084,4.451,0.0,0.0,0.0,0.0,3091.7,3557.8,80.812,18.974,4.371,6.903,36.426,9.115,19.316,2.738,18.968,-13.322,0.0,0.0,12.713,15.115,-0.457,61.876,0.0,1.435,0.0,0.0,-18.019,-10.25,0.237,0.441,-1.454,-0.096,1.17,-0.121,-1.234,6.802,0.0,0.0,-1.152,-4.937,-0.455,-2.744,-0.487,-0.103,0.0,0.0,5.306,2.704,1610.9,1574.7,12168.1,4288.2,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 -house045.xml,152.5,152.5,35.243,35.243,117.257,0.0,0.0,0.0,0.0,0.0,0.0,2.776,0.0,0.0,2.406,0.302,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,0.0,94.806,0.0,22.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.082,0.0,4.068,13.084,4.362,0.0,0.0,0.0,0.0,2317.0,3015.0,47.223,12.936,3.564,3.072,15.126,2.27,32.793,1.139,19.86,-13.612,1.043,-0.407,0.086,12.675,-0.187,20.633,0.0,10.931,0.0,0.0,-14.66,-7.027,-0.013,0.005,-1.094,-0.117,0.875,-0.089,-2.077,7.137,-0.068,0.396,-0.013,-4.088,-0.186,-1.186,-0.918,-1.261,0.0,0.0,4.827,2.037,1610.9,1574.7,12168.1,4288.2,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 -house046.xml,25.039,25.039,25.039,25.039,0.0,0.0,0.0,0.0,0.0,0.0,5.363,0.445,0.267,0.009,3.74,1.039,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,0.0,13.919,0.276,12.851,4.305,0.617,0.0,0.0,0.0,0.0,3842.2,2404.7,16.167,13.006,0.0,2.523,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.283,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.818,4.589,0.545,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,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 +house041.xml,259.077,259.077,47.133,47.133,211.944,0.0,0.0,0.0,0.0,0.0,0.0,4.164,0.0,0.0,2.576,0.254,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,0.0,185.392,0.0,26.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,174.689,0.0,4.652,15.632,5.039,0.0,0.0,105.0,0.0,3249.4,4561.5,77.749,23.467,0.0,11.26,44.834,3.482,34.914,3.052,41.616,-22.892,0.0,0.0,4.341,17.423,-0.477,64.05,0.0,2.763,0.0,0.0,-20.286,-10.995,0.0,0.097,-2.224,-0.127,1.602,-0.212,-4.015,11.033,0.0,0.0,-0.321,-5.328,-0.475,-3.481,-1.022,-0.258,0.0,0.0,6.561,2.948,1857.7,1859.4,14896.4,4852.9,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 +house042.xml,229.67,229.67,40.068,40.068,189.602,0.0,0.0,0.0,0.0,0.0,0.0,3.871,0.0,0.0,1.81,0.074,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,0.0,165.165,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.395,0.0,2.999,15.632,3.226,0.0,0.0,0.0,0.0,2758.3,3100.3,88.214,19.624,0.0,9.205,40.053,4.031,43.891,2.672,34.445,-21.633,0.0,0.0,2.453,14.538,-0.385,56.223,0.0,1.75,0.0,0.0,-19.152,-7.587,0.0,0.2,-1.588,-0.07,2.68,-0.16,-3.134,7.067,0.0,0.0,-0.272,-5.113,-0.382,-2.85,-0.642,-0.145,0.0,0.0,5.557,1.952,1857.7,1859.4,14896.3,4852.9,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 +house043.xml,158.13,158.13,30.051,30.051,128.078,0.0,0.0,0.0,0.0,0.0,0.0,2.456,0.0,0.0,2.028,0.119,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,0.0,108.178,0.0,19.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,103.04,0.0,3.036,13.084,2.207,0.0,0.0,0.0,0.0,1988.8,2798.1,54.664,13.818,0.0,3.172,23.263,2.301,33.889,5.621,23.662,-11.489,0.0,0.0,0.55,9.952,-0.267,28.928,0.0,1.576,0.0,0.0,-14.359,-5.16,0.0,0.032,-0.925,-0.1,1.55,-0.379,-2.383,5.793,0.0,0.0,-0.07,-3.676,-0.267,-1.616,-0.538,-0.147,0.0,0.0,4.463,1.402,1610.9,1574.7,12168.1,4288.2,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 +house044.xml,225.894,225.894,43.51,43.51,182.384,0.0,0.0,0.0,0.0,0.0,0.0,4.68,0.0,0.0,2.094,0.198,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,0.0,159.817,0.0,22.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.487,0.0,3.747,13.084,4.452,0.0,0.0,0.0,0.0,3093.4,3553.3,80.982,18.914,4.373,6.905,36.478,9.231,19.305,2.751,19.057,-13.33,0.0,0.0,12.909,15.111,-0.46,61.886,0.0,1.435,0.0,0.0,-18.031,-10.257,0.237,0.441,-1.46,-0.13,1.17,-0.123,-1.231,6.794,0.0,0.0,-1.164,-4.927,-0.458,-2.728,-0.484,-0.102,0.0,0.0,5.295,2.697,1610.9,1574.7,12168.1,4288.2,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 +house045.xml,152.693,152.693,35.232,35.232,117.461,0.0,0.0,0.0,0.0,0.0,0.0,2.782,0.0,0.0,2.392,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,0.0,95.008,0.0,22.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,88.27,0.0,4.026,13.084,4.363,0.0,0.0,0.0,0.0,2317.8,3011.2,47.289,12.909,3.57,3.077,15.169,2.298,32.784,1.143,19.974,-13.617,1.045,-0.407,0.086,12.672,-0.187,20.635,0.0,10.931,0.0,0.0,-14.663,-7.028,-0.017,0.001,-1.114,-0.131,0.881,-0.09,-2.086,7.133,-0.068,0.396,-0.013,-4.082,-0.186,-1.184,-0.915,-1.259,0.0,0.0,4.825,2.036,1610.9,1574.7,12168.1,4288.2,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 +house046.xml,25.037,25.037,25.037,25.037,0.0,0.0,0.0,0.0,0.0,0.0,5.364,0.446,0.267,0.009,3.738,1.038,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,0.0,13.922,0.276,12.84,4.305,0.617,0.0,0.0,0.0,0.0,3842.0,2404.7,16.167,13.004,0.0,2.525,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.275,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.814,4.589,0.545,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,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 house047.xml,20.762,20.762,14.475,14.475,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.596,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,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,0.0,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.4,968.8,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.729,-0.554,0.0,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.101,0.032,0.0,0.0,-0.093,0.798,0.0,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.276,0.409,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,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 -house048.xml,91.545,91.545,39.87,39.87,51.675,0.0,0.0,0.0,0.0,0.0,0.0,0.331,0.0,0.0,12.958,3.843,0.0,0.0,0.0,3.691,0.085,0.498,3.014,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,0.0,35.721,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,28.9,0.0,51.647,7.253,2.672,0.0,0.0,0.0,0.0,1537.0,5475.4,41.96,33.156,1.017,2.617,11.966,0.0,0.0,0.809,4.918,-2.538,0.0,0.0,0.057,2.027,-0.53,6.789,0.0,4.189,0.0,6.375,-7.395,-1.508,1.351,1.066,9.35,0.0,0.0,0.558,2.746,4.304,0.0,0.0,0.074,10.099,-0.517,0.518,-0.451,1.922,0.0,7.048,11.596,2.183,130.3,817.7,11617.6,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,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 -house049.xml,32.045,32.045,28.548,28.548,3.497,0.0,0.0,0.0,0.0,0.0,5.846,0.035,0.0,0.0,5.866,0.149,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.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.202,0.0,34.041,4.262,1.305,0.0,0.0,0.0,93.0,4425.1,2181.8,12.334,17.734,0.0,1.364,4.436,0.0,0.0,0.0,3.891,-7.555,0.0,0.0,0.0,1.446,-0.076,2.577,0.0,1.806,0.0,0.0,-2.434,-0.439,0.0,1.567,6.673,0.0,0.0,0.0,3.231,15.06,0.0,0.0,0.0,2.969,-0.077,-0.317,-3.564,0.51,0.0,0.0,7.533,1.035,728.6,567.4,7487.1,928.5,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,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 -house050.xml,51.833,51.833,21.857,21.857,29.976,0.0,0.0,0.0,0.0,0.0,0.0,0.275,0.0,0.0,1.906,0.335,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,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,0.0,5.139,8.572,0.0,0.0,0.0,0.0,0.0,1156.7,2605.3,11.113,15.398,0.0,4.131,6.506,0.0,0.0,2.03,5.645,-4.221,0.0,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.92,-10.283,-1.232,0.0,-0.284,-0.31,0.0,0.0,-0.39,-0.567,4.041,0.0,0.0,-0.955,0.0,-0.123,-0.557,-1.22,-0.76,0.0,0.569,5.253,0.551,1689.0,437.0,10674.9,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,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 +house048.xml,91.642,91.642,39.796,39.796,51.846,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,12.899,3.824,0.0,0.0,0.0,3.691,0.085,0.498,3.017,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,0.0,35.87,0.0,12.637,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.021,0.0,51.358,7.253,2.688,0.0,0.0,0.0,0.0,1535.9,5475.4,42.021,33.069,1.024,2.643,12.009,0.0,0.0,0.815,4.922,-2.545,0.0,0.0,0.058,2.032,-0.525,6.797,0.0,4.194,0.0,6.419,-7.415,-1.512,1.323,1.018,9.256,0.0,0.0,0.549,2.757,4.297,0.0,0.0,0.072,10.121,-0.513,0.526,-0.449,1.931,0.0,6.917,11.576,2.179,130.3,817.7,11617.6,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,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 +house049.xml,32.038,32.038,28.541,28.541,3.497,0.0,0.0,0.0,0.0,0.0,5.888,0.036,0.0,0.0,5.819,0.147,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.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.239,0.0,33.85,4.262,1.306,0.0,0.0,0.0,90.0,4432.3,2181.9,12.361,17.634,0.0,1.38,4.471,0.0,0.0,0.0,3.895,-7.574,0.0,0.0,0.0,1.446,-0.075,2.582,0.0,1.809,0.0,0.0,-2.437,-0.44,0.0,1.489,6.503,0.0,0.0,0.0,3.26,15.042,0.0,0.0,0.0,2.984,-0.076,-0.307,-3.541,0.516,0.0,0.0,7.53,1.034,728.6,567.4,7487.2,928.5,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,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 +house050.xml,51.837,51.837,21.855,21.855,29.983,0.0,0.0,0.0,0.0,0.0,0.0,0.275,0.0,0.0,1.904,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,0.0,16.067,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.694,0.0,5.132,8.572,0.0,0.0,0.0,0.0,0.0,1156.7,2604.3,11.114,15.388,0.0,4.133,6.508,0.0,0.0,2.031,5.644,-4.221,0.0,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.921,-10.283,-1.232,0.0,-0.288,-0.312,0.0,0.0,-0.391,-0.567,4.041,0.0,0.0,-0.956,0.0,-0.123,-0.557,-1.219,-0.76,0.0,0.568,5.253,0.551,1689.0,437.0,10674.9,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,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index 50c2358950..3afb905302 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -125,7 +125,7 @@ base-enclosure-beds-2.xml,1567.5,144.0,1108.62,0.0,1252.62,144.0,170.88,314.88,0 base-enclosure-beds-4.xml,1729.09,144.0,1284.5,0.0,1428.5,144.0,156.59,300.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-beds-5.xml,1808.87,144.0,1371.31,0.0,1515.31,144.0,149.56,293.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-ceilingtypes.xml,1778.25,144.0,1214.66,0.0,1358.66,144.0,275.59,419.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-floortypes.xml,1519.3,144.0,980.3,0.0,1124.3,144.0,251.0,395.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-floortypes.xml,1540.13,144.0,977.57,0.0,1121.57,144.0,274.56,418.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-garage.xml,1616.06,144.0,1152.66,0.0,1296.66,144.0,175.4,319.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-infil-ach-house-pressure.xml,1648.72,144.0,1197.14,0.0,1341.14,144.0,163.58,307.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-infil-cfm-house-pressure.xml,1648.72,144.0,1197.14,0.0,1341.14,144.0,163.58,307.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -150,8 +150,10 @@ base-enclosure-windows-physical-properties.xml,1707.89,144.0,1201.04,0.0,1345.04 base-enclosure-windows-shading-seasons.xml,1647.37,144.0,1197.54,0.0,1341.54,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1590.69,144.0,1118.71,0.0,1262.71,144.0,183.98,327.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-windows-storms.xml,1640.51,144.0,1177.87,0.0,1321.87,144.0,174.64,318.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-ambient.xml,1421.13,144.0,1009.54,0.0,1153.54,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1423.58,144.0,1008.51,0.0,1152.51,144.0,127.07,271.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-basement-garage.xml,1521.03,144.0,1087.91,0.0,1231.91,144.0,145.12,289.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-belly-wing-no-skirt.xml,1413.73,144.0,980.54,0.0,1124.54,144.0,145.19,289.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-belly-wing-skirt.xml,1411.27,144.0,980.81,0.0,1124.81,144.0,142.46,286.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1821.66,144.0,1240.82,0.0,1384.82,144.0,292.84,436.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-conditioned-basement-slab-insulation.xml,1646.2,144.0,1204.03,0.0,1348.03,144.0,154.17,298.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-conditioned-basement-wall-insulation.xml,1627.83,144.0,1181.78,0.0,1325.78,144.0,158.05,302.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -298,7 +300,7 @@ base-hvac-geothermal-loop-loop-flow.xml,1461.54,144.0,1317.54,0.0,1461.54,0.0,0. base-hvac-geothermal-loop-pipe-conductivity.xml,1460.78,144.0,1316.78,0.0,1460.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-geothermal-loop-pipe-diameter.xml,1460.68,144.0,1316.68,0.0,1460.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-geothermal-loop-pipe-shank-spacing.xml,1459.75,144.0,1315.75,0.0,1459.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop.xml,1454.22,144.0,1310.22,0.0,1454.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop.xml,1445.4,144.0,1301.4,0.0,1445.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,1269.38,144.0,1125.38,0.0,1269.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-heating-only.xml,1361.79,144.0,1217.79,0.0,1361.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump.xml,1460.76,144.0,1316.76,0.0,1460.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -406,13 +408,15 @@ base-pv-generators-battery-scheduled.xml,812.18,144.0,1253.13,-1167.33,229.8,144 base-pv-generators-battery.xml,782.26,144.0,1223.82,-1167.94,199.88,144.0,224.64,368.64,0.0,213.74,213.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-pv-generators.xml,755.48,144.0,1197.14,-1168.04,173.1,144.0,224.64,368.64,0.0,213.74,213.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,753.5,144.0,1197.14,-895.34,445.8,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-0-runperiod-1-month.xml,74.66,0.0,14.35,0.0,14.35,0.0,60.31,60.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-0-runperiod-1-month.xml,98.66,12.0,14.35,0.0,26.35,12.0,60.31,72.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-0.xml,778.4,144.0,241.7,0.0,385.7,144.0,248.7,392.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-1-misc-loads-large-uncommon.xml,2467.6,144.0,1731.43,0.0,1875.43,144.0,298.84,442.84,0.0,0.0,0.0,0.0,69.87,69.87,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-1-misc-loads-large-uncommon2.xml,2248.99,144.0,1650.65,0.0,1794.65,144.0,165.28,309.28,0.0,65.6,65.6,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-1.xml,1411.62,144.0,944.7,0.0,1088.7,144.0,178.92,322.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-5.xml,1162.01,144.0,1332.86,-674.31,802.55,144.0,215.46,359.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1664.99,144.0,1205.26,0.0,1349.26,144.0,171.73,315.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,1278.07,144.0,954.36,0.0,1098.36,144.0,35.71,179.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-mixed-timesteps.xml,1492.68,144.0,1145.29,0.0,1289.29,144.0,59.39,203.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-occupancy-stochastic-10-mins.xml,1658.69,144.0,1202.52,0.0,1346.52,144.0,168.17,312.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-occupancy-stochastic-power-outage.xml,1401.49,144.0,1007.48,0.0,1151.48,144.0,106.01,250.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,778.4,144.0,241.7,0.0,385.7,144.0,248.7,392.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -430,7 +434,7 @@ base-schedules-simple.xml,1651.01,144.0,1198.33,0.0,1342.33,144.0,164.68,308.68, base-simcontrol-calendar-year-custom.xml,1647.89,144.0,1196.15,0.0,1340.15,144.0,163.74,307.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1648.84,144.0,1197.14,0.0,1341.14,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-simcontrol-daylight-saving-disabled.xml,1648.21,144.0,1196.61,0.0,1340.61,144.0,163.6,307.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-runperiod-1-month.xml,143.65,0.0,97.13,0.0,97.13,0.0,46.52,46.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-runperiod-1-month.xml,167.65,12.0,97.13,0.0,109.13,12.0,46.52,58.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-simcontrol-temperature-capacitance-multiplier.xml,1645.31,144.0,1193.65,0.0,1337.65,144.0,163.66,307.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1664.97,144.0,1205.13,0.0,1349.13,144.0,171.84,315.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1664.17,144.0,1204.83,0.0,1348.83,144.0,171.34,315.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 067ac61fc581946741a6fca6f36cb1d3f200086e Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 11 Jul 2023 10:53:27 -0700 Subject: [PATCH 063/217] Update g function method with optional n_x_m arg we can use for testing. --- HPXMLtoOpenStudio/measure.xml | 8 ++++---- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 10 ++++++---- HPXMLtoOpenStudio/tests/test_hvac.rb | 3 ++- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 81c8f76ba9..d4d29e8beb 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 92bb83b2-2892-419c-a8e1-87cfada88328 - 2023-06-29T17:09:34Z + b746bb01-d957-41da-a59c-45d93a149025 + 2023-07-11T17:51:48Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -328,7 +328,7 @@ hvac_sizing.rb rb resource - 83788B59 + C6A18741 lighting.rb @@ -568,7 +568,7 @@ test_hvac.rb rb test - 4C361C9C + 0BA5788E test_hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 7caf3d4bf4..c7fb6d9b23 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -2665,7 +2665,7 @@ def self.gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, bore_dia return nom_length_heat, nom_length_cool end - def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter) + def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter, n_x_m = nil) require 'json' g_functions_filename = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => 'rectangle_5m_v1.0.json', @@ -2706,7 +2706,7 @@ def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, rb = b_d_rb['rb'] b_h_rb = "#{b}._#{h}._#{rb}" - logtime, g = get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb) + logtime, g = get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb, n_x_m) logtimes << logtime gs << g end @@ -2735,8 +2735,10 @@ def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, fail "Could not find gfnc_coeff from '#{g_functions_filename}'." end - def self.get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb) - g_functions_json.each do |_key_1, values_1| + def self.get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb, n_x_m) + g_functions_json.each do |key_1, values_1| + next if !n_x_m.nil? && n_x_m != "#{key_1}" + if [HPXML::GeothermalLoopBorefieldConfigurationRectangle, HPXML::GeothermalLoopBorefieldConfigurationL].include?(bore_config) bore_locations = values_1[:bore_locations] diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index ed98ced425..69c2c004eb 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -746,7 +746,8 @@ def test_g_function_library_linear_interpolation_example bore_spacing = UnitConversions.convert(7.0, 'm', 'ft') bore_depth = UnitConversions.convert(150.0, 'm', 'ft') bore_diameter = UnitConversions.convert(UnitConversions.convert(80.0, 'mm', 'm'), 'm', 'in') * 2 - actual_lntts, actual_gfnc_coeff = HVACSizing.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter) + n_x_m = '5_8' + actual_lntts, actual_gfnc_coeff = HVACSizing.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter, n_x_m) expected_lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] expected_gfnc_coeff = [2.619, 2.967, 3.279, 3.700, 4.190, 5.107, 6.680, 8.537, 11.991, 14.633, 16.767, 20.083, 22.593, 28.734, 34.345, 35.927, 37.342, 38.715, 39.768, 40.664, 41.426, 42.056, 42.524, 43.054, 43.416, 43.594, 43.885] From 32d5b98c3b5629a131e6c31820623f38699e5f3a Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 11 Jul 2023 13:19:38 -0700 Subject: [PATCH 064/217] Test for bore depth outside of valid range. --- HPXMLtoOpenStudio/measure.xml | 10 ++++---- .../hpxml_schematron/EPvalidator.xml | 1 - HPXMLtoOpenStudio/resources/hvac_sizing.rb | 25 +++++++++++-------- HPXMLtoOpenStudio/tests/test_validation.rb | 12 ++++++--- 4 files changed, 27 insertions(+), 21 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index d4d29e8beb..4ed4d739fc 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - b746bb01-d957-41da-a59c-45d93a149025 - 2023-07-11T17:51:48Z + 9b91c99f-3cb0-47f7-9970-64bbb8c87dee + 2023-07-11T20:16:33Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -310,7 +310,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 7B567011 + E71248B7 hpxml_schematron/iso-schematron.xsd @@ -328,7 +328,7 @@ hvac_sizing.rb rb resource - C6A18741 + 3F393562 lighting.rb @@ -616,7 +616,7 @@ test_validation.rb rb test - 4DDCEDB4 + 19065029 test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 0aed6b5b83..7913baae8a 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1314,7 +1314,6 @@ Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Count Expected BoreholesOrTrenches/Count to be greater than 0 Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Length - Expected BoreholesOrTrenches/Length to be greater than 0 Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Spacing Expected BoreholesOrTrenches/Spacing to be greater than 0 Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Diameter diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index c7fb6d9b23..bc0496862a 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1894,13 +1894,6 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) pipe_r_value = gshp_hx_pipe_rvalue(hvac_cooling) nom_length_heat, nom_length_cool = gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, bore_diameter, grout_conductivity, pipe_r_value) - bore_depth = geothermal_loop.bore_length - if bore_depth.nil? - bore_length_heat = nom_length_heat * hvac_sizing_values.Heat_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') - bore_length_cool = nom_length_cool * hvac_sizing_values.Cool_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') - bore_length = [bore_length_heat, bore_length_cool].max - end - loop_flow = geothermal_loop.loop_flow if loop_flow.nil? loop_flow = [1.0, UnitConversions.convert([hvac_sizing_values.Heat_Capacity, hvac_sizing_values.Cool_Capacity].max, 'Btu/hr', 'ton')].max.floor * 3.0 @@ -1911,26 +1904,36 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) num_bore_holes = [1, (UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') + 0.5).floor].max end + min_bore_depth = UnitConversions.convert(24, 'm', 'ft') + max_bore_depth = UnitConversions.convert(384, 'm', 'ft') + + bore_depth = geothermal_loop.bore_length if bore_depth.nil? + bore_length_heat = nom_length_heat * hvac_sizing_values.Heat_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') + bore_length_cool = nom_length_cool * hvac_sizing_values.Cool_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') + bore_length = [bore_length_heat, bore_length_cool].max bore_depth = (bore_length / num_bore_holes).floor # ft - min_bore_depth = 0.15 * bore_spacing # 0.15 is the maximum Spacing2DepthRatio defined for the G-function for _i in 0..4 if (bore_depth < min_bore_depth) && (num_bore_holes > 1) num_bore_holes -= 1 bore_depth = (bore_length / num_bore_holes).floor - elsif bore_depth > 345 + elsif bore_depth > max_bore_depth num_bore_holes += 1 bore_depth = (bore_length / num_bore_holes).floor end end - bore_depth = (bore_length / num_bore_holes).floor + 5 + + bore_depth = (bore_length / num_bore_holes).floor + 5 # FIXME: why add the 5? + end + + if (bore_depth < min_bore_depth) || (bore_depth > max_bore_depth) + fail "Bore depth (#{bore_depth}) not between #{min_bore_depth.round(3)} and #{max_bore_depth.round(3)} ft." end bore_config = geothermal_loop.bore_config if bore_config.nil? bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle - num_bore_holes = [num_bore_holes, 10].min end valid_configs = HVAC.valid_borefield_configs diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 10db5abe7d..862db4ccfd 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -838,7 +838,8 @@ def test_ruby_error_messages 'hvac-distribution-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-cooling' => ["Multiple cooling systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], - 'hvac-gshp-invalid-boreholes' => ["Number of bore holes (3) with borefield configuration 'L' not supported"], + 'hvac-gshp-invalid-num-bore-holes' => ["Number of bore holes (5) with borefield configuration 'Lopsided U' not supported"], + 'hvac-gshp-invalid-bore-depth' => ['Bore depth (1260.0) not between 78.74 and 1259.843 ft'], 'hvac-inconsistent-fan-powers' => ["Fan powers for heating system 'HeatingSystem1' and cooling system 'CoolingSystem1' are attached to a single distribution system and therefore must be the same."], 'hvac-invalid-distribution-system-type' => ["Incorrect HVAC distribution system type for HVAC type: 'Furnace'. Should be one of: ["], 'hvac-shared-boiler-multiple' => ['More than one shared heating system found.'], @@ -996,9 +997,12 @@ def test_ruby_error_messages hpxml.heating_systems << hpxml.heating_systems[0].dup hpxml.heating_systems[1].id = "HeatingSystem#{hpxml.heating_systems.size}" hpxml.heating_systems[0].primary_system = false - elsif ['hvac-gshp-invalid-boreholes'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop-borefield-configuration.xml')) - hpxml.geothermal_loops[0].num_bore_holes = 3 + elsif ['hvac-gshp-invalid-num-bore-holes'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop.xml')) + hpxml.geothermal_loops[0].num_bore_holes = 5 + elsif ['hvac-gshp-invalid-bore-depth'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop.xml')) + hpxml.geothermal_loops[0].bore_length = 1260 elsif ['hvac-inconsistent-fan-powers'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) hpxml.cooling_systems[0].fan_watts_per_cfm = 0.55 From 04dff85cadb86ce701e8f8d4c286197a0fbf9b69 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Jul 2023 21:07:01 +0000 Subject: [PATCH 065/217] Latest results. --- workflow/tests/base_results/results.csv | 4 ++-- workflow/tests/base_results/results_bills.csv | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 484b622e55..64a8e99dcc 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -216,7 +216,7 @@ base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34. base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.248,34.248,34.248,34.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.895,0.867,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.692,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2851.9,0.0,17.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.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.15,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.684,36.684,36.684,36.684,0.0,0.0,0.0,0.0,0.0,0.0,5.476,0.791,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,0.0,21.061,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3413.9,1637.3,23.494,0.0,0.0,3.551,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.775,-8.907,-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,1354.8,997.6,11399.5,2615.8,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.793,36.793,36.793,36.793,0.0,0.0,0.0,0.0,0.0,0.0,5.562,0.814,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,0.0,21.117,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3411.0,1637.3,23.44,0.0,0.0,3.549,3.636,0.512,7.483,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.833,-8.907,-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,1354.8,997.6,11399.5,2615.8,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.933,39.933,39.933,39.933,0.0,0.0,0.0,0.0,0.0,0.0,5.492,0.686,0.0,0.0,2.507,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.116,0.0,13.27,9.233,0.614,0.0,0.0,0.0,0.0,3358.9,2541.2,22.968,15.706,0.0,3.552,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.667,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.379,7.871,2.01,1354.8,997.6,11399.5,2615.8,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -302,7 +302,7 @@ base-hvac-geothermal-loop-pipe-diameter.xml,39.539,39.539,39.539,39.539,0.0,0.0, base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.511,39.511,39.511,39.511,0.0,0.0,0.0,0.0,0.0,0.0,5.234,0.36,0.0,0.0,2.45,1.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.533,0.0,12.673,9.233,0.614,0.0,0.0,0.0,0.0,3204.7,2568.5,20.838,14.682,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.041,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-geothermal-loop.xml,39.08,39.08,39.08,39.08,0.0,0.0,0.0,0.0,0.0,0.0,5.08,0.34,0.0,0.0,2.219,1.001,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.439,0.0,12.644,9.233,0.614,0.0,0.0,0.0,0.0,3122.8,2459.5,20.484,14.586,0.0,3.61,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.944,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.732,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.794,33.794,33.794,33.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.534,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.0,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.57,36.57,36.57,36.57,0.0,0.0,0.0,0.0,0.0,0.0,5.39,0.762,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,0.0,20.338,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3364.6,1637.3,22.259,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.032,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.643,36.643,36.643,36.643,0.0,0.0,0.0,0.0,0.0,0.0,5.449,0.777,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,0.0,20.372,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3362.4,1637.3,22.29,0.0,0.0,3.576,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.067,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.1,2577.8,20.865,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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 3afb905302..864aa5647a 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -216,7 +216,7 @@ base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1597.69,144.0,1139.69,0. base-hvac-autosize-furnace-gas-only.xml,1494.06,144.0,1033.73,0.0,1177.73,144.0,172.33,316.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1664.97,144.0,1202.92,0.0,1346.92,144.0,174.05,318.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1284.48,144.0,1140.48,0.0,1284.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1365.62,144.0,1221.62,0.0,1365.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1369.24,144.0,1225.24,0.0,1369.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1473.81,144.0,1329.81,0.0,1473.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1460.47,144.0,1316.47,0.0,1460.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1460.47,144.0,1316.47,0.0,1460.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -302,7 +302,7 @@ base-hvac-geothermal-loop-pipe-diameter.xml,1460.68,144.0,1316.68,0.0,1460.68,0. base-hvac-geothermal-loop-pipe-shank-spacing.xml,1459.75,144.0,1315.75,0.0,1459.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-geothermal-loop.xml,1445.4,144.0,1301.4,0.0,1445.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,1269.38,144.0,1125.38,0.0,1269.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1361.79,144.0,1217.79,0.0,1361.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1364.23,144.0,1220.23,0.0,1364.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump.xml,1460.76,144.0,1316.76,0.0,1460.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1774.69,144.0,1630.69,0.0,1774.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1604.26,144.0,1460.26,0.0,1604.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From bacc0e9bc228342c0546134928ac96ddabee2951 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Thu, 13 Jul 2023 12:10:16 -0600 Subject: [PATCH 066/217] try 1 --- .../g_functions/C_configurations_5m_v1.0.json | 6852 +--- .../g_functions/L_configurations_5m_v1.0.json | 6078 +--- .../LopU_configurations_5m_v1.0.json | 28330 +--------------- .../Open_configurations_5m_v1.0.json | 6968 +--- .../g_functions/U_configurations_5m_v1.0.json | 7094 +--- .../g_functions/rectangle_5m_v1.0.json | 22926 ++----------- .../resources/g_functions/util.rb | 33 +- .../g_functions/zoned_rectangle_5m_v1.0.json | 17472 +--------- HPXMLtoOpenStudio/resources/hvac.rb | 2 +- tasks.rb | 3 +- workflow/hpxml_inputs.json | 8 + .../base-hvac-library-test-case.xml | 568 + 12 files changed, 4677 insertions(+), 91657 deletions(-) create mode 100644 workflow/sample_files/base-hvac-library-test-case.xml diff --git a/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json index 69fbd4f88f..f0fe7ca38d 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json @@ -428,6841 +428,71 @@ } }, "3_5": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351669594995696, - 3.187125521522209, - 3.521463685390284, - 4.029270810107842, - 4.644904567747854, - 5.713128198797925, - 7.307316673339804, - 8.909872319261455, - 11.35072167018287, - 12.895494747737077, - 14.003407905474932, - 15.547938805845172, - 16.607217973416407, - 18.94266334993788, - 20.886424154713033, - 21.414574413114515, - 21.886368397670783, - 22.344045572738665, - 22.697394497134898, - 22.998976881618418, - 23.257918860895764, - 23.474073345498056, - 23.63518508430463, - 23.818982153138492, - 23.944474714533293, - 24.006070079545328, - 24.105886879805396 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.451192833143695, - 2.788419622271439, - 3.044991761646356, - 3.387836099630224, - 3.616756840104146, - 3.8018743251439537, - 4.107449030686346, - 4.36157985013461, - 5.1408932143801875, - 6.1675657364881555, - 6.532939316352237, - 6.90021776244336, - 7.296936524147337, - 7.634356648978209, - 7.943557694081457, - 8.226800511414554, - 8.47628359622688, - 8.669254929778113, - 8.896318374617808, - 9.055405913116935, - 9.134903266625965, - 9.265449892837752 - ], - "5._384._0.0875": [ - 3.491345865963805, - 4.025031445778256, - 4.679459748673603, - 5.82351492252652, - 7.249685133953091, - 9.465709095419136, - 12.162871522713194, - 14.43017861955112, - 17.426918448409655, - 19.159291413800595, - 20.353054328217997, - 21.96960205243791, - 23.056963869277343, - 25.421183037493762, - 27.37565506564622, - 27.90561126103131, - 28.38011764620802, - 28.840909851662424, - 29.197383891971185, - 29.501762256131418, - 29.763531311969682, - 29.982392436026263, - 30.14557233212953, - 30.33195394648352, - 30.45917312773902, - 30.52156412806964, - 30.62254759778572 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.506080868963746, - 2.8001345621467664, - 3.143277867550196, - 3.512110701279522, - 3.8597749208835053, - 4.465308288754423, - 4.942628589301531, - 5.352657638814722, - 6.048496013896072, - 6.623113848411964, - 8.22198755505713, - 9.908799233756632, - 10.419596527986892, - 10.893552161184353, - 11.368272036526347, - 11.744278866087646, - 12.069981280671438, - 12.353067937004342, - 12.591283097765531, - 12.769461842221778, - 12.972723000760597, - 13.111741413849154, - 13.180171278848512, - 13.291295356631528 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.555323563035405, - 2.8519144504397964, - 3.200220678037872, - 3.5239856416868593, - 4.0050212111086045, - 4.696255292797879, - 5.457946788580218, - 6.852322959652057, - 7.899174082572376, - 8.727630982952414, - 9.986721281780241, - 10.912700366416585, - 13.10865099403437, - 15.04793483199602, - 15.586871383611609, - 16.070555900739027, - 16.54188047264967, - 16.90670497627415, - 17.218339711615116, - 17.48591723255255, - 17.709122540263703, - 17.875366776212047, - 18.064622313136542, - 18.193781801854332, - 18.25720919402969, - 18.360067072826148 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "3_6": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351678756032523, - 3.187197041666315, - 3.5220101721476054, - 4.031240028495608, - 4.650163195545352, - 5.734783968720359, - 7.384632084417681, - 9.081261546042475, - 11.733937470740653, - 13.450913327561588, - 14.697409931934857, - 16.451209927017835, - 17.662793068404085, - 20.34688380076406, - 22.586110573451347, - 23.194772299633314, - 23.737831944817643, - 24.264149555190492, - 24.669876455789215, - 25.016033964075223, - 25.312916016634926, - 25.560485255147615, - 25.7449721774163, - 25.95530942131922, - 26.09893990755411, - 26.169465466711337, - 26.2838522954619 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.451192833158654, - 2.788419833140358, - 3.0450046727696316, - 3.3881077849846046, - 3.6175154184662173, - 3.803137335074187, - 4.109729271823221, - 4.3651397599100425, - 5.153955597194154, - 6.210853926422764, - 6.5926916446571635, - 6.980022527987566, - 7.402501435070899, - 7.7655015746654525, - 8.101268216962444, - 8.411675246313923, - 8.687475025368178, - 8.902437505358286, - 9.157209865225672, - 9.337000197656067, - 9.427306815703629, - 9.576316229475234 - ], - "5._384._0.0875": [ - 3.492024137406453, - 4.027293311777627, - 4.685745220359757, - 5.8496304713082665, - 7.327017149653586, - 9.680469594956923, - 12.631347164771578, - 15.17309515053647, - 18.592251105784506, - 20.589800303714075, - 21.971822171812732, - 23.846439642542194, - 25.108661724952608, - 27.849785182011207, - 30.11131312932821, - 30.72386699048168, - 31.27172829327736, - 31.803265511092665, - 32.21396119315492, - 32.56454795365729, - 32.86581826712148, - 33.11752957669362, - 33.30518717222429, - 33.51945801338999, - 33.665737731685816, - 33.73749947899058, - 33.85372710274115 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.5060808690348377, - 2.8001347502917393, - 3.143308328809554, - 3.512551963340744, - 3.8611028394834017, - 4.469159939592605, - 4.950889951527636, - 5.367335572984743, - 6.080440244925048, - 6.675641613648751, - 8.362820264510766, - 10.193789641219754, - 10.758918683989547, - 11.287067530551075, - 11.819679136119719, - 12.243765332769714, - 12.612647330757948, - 12.934155065922809, - 13.205195379931938, - 13.408188977655687, - 13.639811538319776, - 13.798359480325088, - 13.87648989469043, - 14.003540968323318 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235633328075, - 2.8519148795441804, - 3.200268275165374, - 3.5244188384440176, - 4.006732310496648, - 4.701558385188678, - 5.4735055032008715, - 6.909503153296634, - 8.007896097083323, - 8.889537380460425, - 10.249462852845705, - 11.26435140672784, - 13.71303721307781, - 15.914149688864596, - 16.530489051192, - 17.084309756106943, - 17.624452349705088, - 18.042427326254828, - 18.399510986938072, - 18.70586720633645, - 18.961176691326557, - 19.151272739043552, - 19.367482378572095, - 19.515042862574578, - 19.58754125184746, - 19.705224061076326 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "3_7": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351685474129886, - 3.187249489860495, - 3.5224109464677738, - 4.032684670090973, - 4.654023445970479, - 5.750715925406668, - 7.44179454377947, - 9.209065650562309, - 12.028211908191858, - 13.887871931821303, - 15.253208244697293, - 17.192063513139082, - 18.54203385837481, - 21.55099337287424, - 24.071119764312854, - 24.756845464008894, - 25.36810093824561, - 25.96007756211005, - 26.41580638435971, - 26.80450087743695, - 27.137519762034785, - 27.414955087466687, - 27.621655802131343, - 27.857185290816126, - 28.018036820617628, - 28.097048025008842, - 28.22530467666652 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.45119283316962, - 2.788419987777566, - 3.0450141409276967, - 3.3883070230574313, - 3.618071743901366, - 3.8040636834475223, - 4.111402115463092, - 4.367751956161952, - 5.163554966124933, - 6.242767904109351, - 6.6367680871824986, - 7.0390173564418825, - 7.480903481108108, - 7.863533793910546, - 8.220093365652007, - 8.552259313057426, - 8.849672308609033, - 9.0831406765669, - 9.361880434062318, - 9.560131691390616, - 9.660293492069458, - 9.826512606569556 - ], - "5._384._0.0875": [ - 3.492521703980012, - 4.02895294852527, - 4.690360254763014, - 5.868855167821229, - 7.384184533385374, - 9.841524860263979, - 12.994620186364156, - 15.768848563789192, - 19.566011203576302, - 21.810059371382508, - 23.370077020027388, - 25.49127964773139, - 26.921820435757887, - 30.02683239339844, - 32.584887758490204, - 33.27714723415724, - 33.89566474901202, - 34.495235225453065, - 34.9579494645981, - 35.352844242830145, - 35.69192916440379, - 35.97504170985652, - 36.18609191279858, - 36.42699698419069, - 36.59148356897036, - 36.672201376159926, - 36.80301735521162 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.506080869086975, - 2.8001348882647212, - 3.143330667076029, - 3.512875564734424, - 3.862076841501366, - 4.471986784846617, - 4.956955922636251, - 5.378117879718728, - 6.103932829009755, - 6.71430795190545, - 8.467636827910919, - 10.411621105876742, - 11.021389478586112, - 11.595072342097712, - 12.177449672030294, - 12.643748388181882, - 13.05121744616808, - 13.407577988279836, - 13.708768285958595, - 13.934773736293664, - 14.192893401603545, - 14.36981357317642, - 14.45711968484396, - 14.59931960054536 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.5553235635508975, - 2.851915194220727, - 3.2003031797528774, - 3.5247365251559386, - 4.0079874978489425, - 4.705451448765456, - 5.48494170422, - 6.951699784385181, - 8.088410450547489, - 9.010185200751817, - 10.448270841596655, - 11.534294234850128, - 14.19513373933564, - 16.62997741968011, - 17.317641527636713, - 17.936737909514477, - 18.541441605971094, - 19.009514738877343, - 19.409586863612216, - 19.75267224583673, - 20.038400340486913, - 20.251106800172455, - 20.492850095365743, - 20.6578575935991, - 20.73897025242924, - 20.87076658806699 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "3_8": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351690611500655, - 3.1872895973536286, - 3.522717430862418, - 4.033789709070436, - 4.656977641220345, - 5.7629269653417055, - 7.48583154450864, - 9.308172055960746, - 12.260671350847344, - 14.239050872911642, - 15.706060504399428, - 17.807684388812714, - 19.28257870253823, - 22.59275416668248, - 25.37960451984324, - 26.139148526900623, - 26.815773181014563, - 27.470706507624055, - 27.974310286158875, - 28.403726037078606, - 28.771283870557852, - 29.077218063157076, - 29.305108238575503, - 29.56464274997427, - 29.74190856366356, - 29.829014631016236, - 29.970526299709217 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004358, - 2.1114679242247285, - 2.4511928331780073, - 2.7884201060295513, - 3.0450213812844344, - 3.3884593828091103, - 3.61849718900961, - 3.804772148056534, - 4.112681729643054, - 4.369750429462297, - 5.170906851267666, - 6.267291582499872, - 6.670676414826567, - 7.084470317408597, - 7.541474296262444, - 7.9395511248409125, - 8.312674094813019, - 8.662450476127596, - 8.977687070602872, - 9.226718464588833, - 9.526105482424894, - 9.7407291797187, - 9.849834180975432, - 10.032058130519575 - ], - "5._384._0.0875": [ - 3.4929022917496537, - 4.030222616659777, - 4.6938926401601195, - 5.8835966176042795, - 7.428220407940364, - 9.96688942686706, - 13.2835620853291, - 16.25468429480388, - 20.388075264049775, - 22.859787959634275, - 24.5872224292921, - 26.94321146773722, - 28.535467813670703, - 31.991792129034668, - 34.83665680398526, - 35.6059981007928, - 36.29273355028419, - 36.95789481714896, - 37.470646019133554, - 37.9081402605778, - 38.28352368142692, - 38.59673513532801, - 38.830202515905064, - 39.09661357773843, - 39.278539385263564, - 39.36784030073385, - 39.51265492697085 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808691268432, - 2.8001349937734696, - 3.1433477492852973, - 3.5131230298852576, - 3.8628217779493452, - 4.474149805113323, - 4.961598964807017, - 5.386374108879229, - 6.121943923067568, - 6.743994183917707, - 8.548795618612344, - 10.583052045310557, - 11.229648805175845, - 11.841609422235885, - 12.466632620318652, - 12.969823713466461, - 13.411592072060705, - 13.799415695857663, - 14.128198104822749, - 14.375498282775053, - 14.658371880370428, - 14.852606468317692, - 14.948616330875938, - 15.105279153629253 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.555323563717674, - 2.851915434855738, - 3.200329871511864, - 3.524979467243202, - 4.008947564668668, - 4.708430853619558, - 5.49370148428002, - 6.984145980552602, - 8.15052731896665, - 9.103627305689466, - 10.603713275857157, - 11.747368862845702, - 14.586604774327421, - 17.228986662777427, - 17.982063162446906, - 18.661680524766936, - 19.326808225196885, - 19.84206762432335, - 20.282820991871443, - 20.660753797822956, - 20.9753823281512, - 21.209593375949495, - 21.475619970377096, - 21.657240780210998, - 21.74657077682526, - 21.891865550916886 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "3_9": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 10.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169466732101, - 3.187321261194923, - 3.5229593982963237, - 4.034662299968234, - 4.659311272479677, - 5.772584143072297, - 7.520798657255935, - 9.387324295594256, - 12.44878371471149, - 14.526767866998277, - 16.08096472389756, - 18.32553830833365, - 19.912766920367286, - 23.50113114766947, - 26.540874593926418, - 27.37114341463846, - 28.110497790192905, - 28.825904255005106, - 29.375455056704215, - 29.84395561110785, - 30.244621563917818, - 30.577835930595977, - 30.826003657034786, - 31.10848818518915, - 31.301452257623925, - 31.396306763787308, - 31.550529145700658 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833184629, - 2.788420199386376, - 3.0450270973558915, - 3.3885796675737714, - 3.6188330788331737, - 3.8053315115410355, - 4.113692184539551, - 4.371328729734645, - 5.176717810724104, - 6.286724963445385, - 6.697577569661203, - 7.120578401024115, - 7.589693201563709, - 8.000218838426205, - 8.386793943521099, - 8.751023469163487, - 9.081085009838208, - 9.343255698782489, - 9.660424488980073, - 9.88952097828785, - 10.00671013560245, - 10.203779549882467 - ], - "5._384._0.0875": [ - 3.493202814374735, - 4.031225313396916, - 4.696683351956658, - 5.895258949336693, - 7.463183615052692, - 10.067311843808254, - 13.518546824042424, - 16.657150557450777, - 21.088844656849815, - 23.76983435114525, - 25.65403847603592, - 28.23284111855567, - 29.980157025676686, - 33.77553858626239, - 36.898145953599645, - 37.74216561558878, - 38.49489705349406, - 39.22343171328063, - 39.7844244229685, - 40.26297101985195, - 40.673280787917776, - 41.015412876169385, - 41.27041487990193, - 41.56131118331105, - 41.759981630286156, - 41.85752818995936, - 42.01580799948628 - ], - "5._48._0.075": [ - 1.5268463243731414, - 1.8679037053125422, - 2.1622431316564774, - 2.506080869158316, - 2.8001350770698537, - 3.1433612352433387, - 3.5133184003307334, - 3.8634099538624156, - 4.475858258287031, - 4.965267195005755, - 5.39289888862462, - 6.136191660028295, - 6.767505975605478, - 8.613537551900134, - 10.721349836664992, - 11.398597575879062, - 12.042895947840169, - 12.704503302769277, - 13.239898855377104, - 13.712069043053093, - 14.128201853046836, - 14.482158976856134, - 14.749120480715616, - 15.055101157898811, - 15.265666709327911, - 15.369947353325774, - 15.540455431866024 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.555323563849342, - 2.8519156248307387, - 3.2003509439627296, - 3.525171266805149, - 4.009705645442357, - 4.710784459073927, - 5.50062591764547, - 7.009869748002814, - 8.199921428061158, - 9.17815675608328, - 10.728532163023635, - 11.919593176824336, - 14.909739412500185, - 17.73595458579694, - 18.548809022587204, - 19.284352741312123, - 20.005892843610354, - 20.56554154558606, - 21.044786153218197, - 21.455811672762106, - 21.797950390563884, - 22.052665577672684, - 22.341859125618967, - 22.539354784471037, - 22.63655260707252, - 22.794807232316007 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "3_10": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 10.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351697950605064, - 3.187346893848355, - 3.523155280617889, - 4.035368806994228, - 4.661201289664252, - 5.780412789034576, - 7.549234541760134, - 9.452009063163974, - 12.604120429267946, - 14.766515327825864, - 16.3958570905402, - 18.766122107234718, - 20.45419904434237, - 24.2987618946057, - 27.577922585638547, - 28.475943917640535, - 29.275535654313057, - 30.049105397958325, - 30.64283621370807, - 31.148931495900406, - 31.581412392430586, - 31.940811388732545, - 32.208438185844564, - 32.51292793318535, - 32.720949955037334, - 32.82324352780976, - 32.9896912340219 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413081, - 1.8198213217004342, - 2.111467924224728, - 2.4511928331899875, - 2.788420274960955, - 3.0450317246520586, - 3.3886770414395033, - 3.619104997466768, - 3.805784361474253, - 4.114510322553216, - 4.372606762225959, - 5.181426346809601, - 6.302503364258968, - 6.719440140644182, - 7.149956692990546, - 7.628993207238191, - 8.049761103745675, - 8.44746255555381, - 8.823730184359768, - 9.166254716737786, - 9.439592793489712, - 9.77211364605482, - 10.01398807247954, - 10.138464486249628, - 10.349268935084025 - ], - "5._384._0.0875": [ - 3.493446132473489, - 4.032037231786687, - 4.6989437843587485, - 5.904715646459216, - 7.491614375915535, - 10.149584618321366, - 13.713323433211606, - 16.995371162711326, - 21.69172067612651, - 24.56448672057875, - 26.594969982865386, - 29.384600108843102, - 31.28029655868146, - 35.40272902560374, - 38.794543869210194, - 39.71102163941047, - 40.527709153182165, - 41.31759037849799, - 41.925187604391084, - 42.443377072398725, - 42.88736409250502, - 43.257344806802536, - 43.53307849554867, - 43.847531535370706, - 44.062314809413046, - 44.1678000681915, - 44.33905999563415 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.867903705312543, - 2.1622431316564787, - 2.5060808691837972, - 2.800135144500257, - 3.1433721524496403, - 3.5134765594397375, - 3.8638861403414055, - 4.477241812696819, - 4.968238441864557, - 5.398185189968357, - 6.147743943796449, - 6.786588203768167, - 8.666395963103227, - 10.835257092023094, - 11.538293101300248, - 12.210114446801747, - 12.903231242725656, - 13.466777425721169, - 13.965877002630355, - 14.407436585758399, - 14.784313266803508, - 15.06939160248798, - 15.396917495447635, - 15.622888964157095, - 15.735036986985607, - 15.91882417754034 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.55532356395593, - 2.8519157786200315, - 3.2003680026196, - 3.525326535170561, - 4.010319416029912, - 4.71269069237238, - 5.506237117592002, - 7.030763397646102, - 8.240139130747172, - 9.238992142145298, - 10.83095896835687, - 12.06160849608854, - 15.18045706569664, - 18.169486985519647, - 19.036843299942902, - 19.823933707296597, - 20.598021909769663, - 21.199370480448305, - 21.715013082440908, - 22.157476347832674, - 22.52583463022703, - 22.800136654860722, - 23.111487841868012, - 23.32419640797804, - 23.428950689023143, - 23.599688215446346 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, - "3_11": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 10.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 10.0, - 50.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835170066288373, - 3.1873680686625017, - 3.5233170990960474, - 4.035952526875689, - 4.662763207184392, - 5.786887319485472, - 7.5728123543743395, - 9.505860779166706, - 12.734577177549298, - 14.96925431986389, - 16.663785323327545, - 19.14489096325024, - 20.92351339147571, - 25.003606743808554, - 28.50910311466362, - 29.472007469248737, - 30.32946264653677, - 31.159025512398646, - 31.79530069644243, - 32.33762137558388, - 32.800738604959754, - 33.185329813628584, - 33.471675661156546, - 33.79731866494462, - 34.01982216203381, - 34.129276690579346, - 34.307514053513444 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615415, - 1.4813847491413088, - 1.8198213217004349, - 2.1114679242247254, - 2.4511928331944146, - 2.7884203373921266, - 3.045035547201219, - 3.388757481047069, - 3.6193296311833945, - 3.8061584764086387, - 4.115186277420732, - 4.3736627717716265, - 5.185318997070215, - 6.315569203511884, - 6.737558298850922, - 7.1743262111330965, - 7.6616398569508215, - 8.090981492225998, - 8.498034391007616, - 8.884470037146546, - 9.237590124600372, - 9.52049717825071, - 9.866330875250933, - 10.119492723868309, - 10.250527323758451, - 10.47401090611532 - ], - "5._384._0.0875": [ - 3.493647159949176, - 4.0327080897587555, - 4.70081196564292, - 5.912538357696871, - 7.515186603729773, - 10.218223268508304, - 13.877401562014027, - 17.28329732279739, - 22.214863679400565, - 25.26306820605536, - 27.42968006282536, - 30.418297144707733, - 32.455714168084256, - 36.89340121136779, - 40.54632728090225, - 41.533196633881666, - 42.41195491827624, - 43.26131884214384, - 43.91401981385214, - 44.47056112537409, - 44.947082508835436, - 45.343931735977435, - 45.63966305886928, - 45.976824217083504, - 46.207142919833984, - 46.3202864095188, - 46.504083396069696 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.162243131656478, - 2.5060808692048497, - 2.800135200203634, - 3.1433811710128325, - 3.513607214021616, - 3.8642795415259856, - 4.478385100618678, - 4.970694116434444, - 5.402555063575382, - 6.157299570092233, - 6.802384828949928, - 8.710367856506407, - 10.930713036286058, - 11.65569403113855, - 12.351141513024375, - 13.071554601851643, - 13.65978571734247, - 14.182764063866822, - 14.647152918655735, - 15.044870367444215, - 15.346616593607765, - 15.694207230853667, - 15.93470818913581, - 16.054343409022536, - 16.25088313027282 - ], - "5._96._0.075": [ - 2.2092718103274245, - 2.5553235640439795, - 2.851915905663359, - 3.2003820945577046, - 3.525454801727738, - 4.010826502055222, - 4.714266037253784, - 5.510876311783476, - 7.048070477378527, - 8.273519739378624, - 9.289589899849627, - 10.91652313303611, - 12.180697827551004, - 15.410299719320092, - 18.543753201521227, - 19.460740676216048, - 20.295256175939645, - 21.11820099238002, - 21.75866987812454, - 22.308703778499943, - 22.7810318250658, - 23.174398459177333, - 23.467436583319113, - 23.800022528343703, - 24.027344282321177, - 24.139374699743158, - 24.32216843416258 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "4_4": { }, - "3_12": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 10.0, - 45.0 - ], - [ - 10.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 10.0, - 55.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351702941198194, - 3.18738585551581, - 3.5234530284687247, - 4.036442910067869, - 4.664075636877078, - 5.792331097317524, - 7.592678989002939, - 9.551389349721669, - 12.845700958863747, - 15.142897396167223, - 16.894383698812295, - 19.473626378375066, - 21.333654020933977, - 25.630093891591645, - 29.34928880628221, - 30.37429955707191, - 31.28734252801297, - 32.17084237173577, - 32.84813449267921, - 33.42541172071023, - 33.91808281324539, - 34.3269608880056, - 34.63135223931956, - 34.977375441069746, - 35.21383823550689, - 35.33020221405432, - 35.51983588911599 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615422, - 1.4813847491413077, - 1.8198213217004342, - 2.111467924224724, - 2.4511928331981347, - 2.7884203898343105, - 3.04503875814262, - 3.3888250505461914, - 3.619518327197289, - 3.8064727479945897, - 4.115754150643895, - 4.374549990130277, - 5.188590915665902, - 6.326566597481553, - 6.7528180552148305, - 7.194867145072564, - 7.68919067965919, - 8.125814080415223, - 8.540835553611272, - 8.935968679547626, - 9.298195014768217, - 9.589372696631006, - 9.946815828244986, - 10.209967457945707, - 10.346900957999564, - 10.582067704022807 - ], - "5._384._0.0875": [ - 3.4938160409090355, - 4.0332717103122135, - 4.702381844826293, - 5.91911689772845, - 7.535047584500037, - 10.276356254629064, - 14.017524836889528, - 17.531247959571516, - 22.67247828809806, - 25.88108428237394, - 28.17414906306515, - 31.35019946487348, - 33.52274348827976, - 38.2640843804987, - 42.17039267202718, - 43.22571710018811, - 44.16479325259062, - 45.07191637205317, - 45.76833833956666, - 46.362043238330685, - 46.87004848921041, - 47.29286621011352, - 47.60792118298832, - 47.96701155831587, - 48.212335814884945, - 48.3328802068162, - 48.528807917039614 - ], - "5._48._0.075": [ - 1.5268463243731347, - 1.8679037053125396, - 2.1622431316564747, - 2.5060808692225303, - 2.800135246994468, - 3.143388746606941, - 3.513716964852696, - 3.8646100193203314, - 4.479345708444172, - 4.972757698948527, - 5.406227806700895, - 6.165335001432045, - 6.81567714001437, - 8.74751962102427, - 11.011874066986053, - 11.755734805376688, - 12.471642810420496, - 13.21586209440887, - 13.825832904042242, - 14.370034541705897, - 14.854936184422726, - 15.271597364463108, - 15.58866311405151, - 15.95491953593576, - 16.20911649208478, - 16.335877721240667, - 16.544674377075435 - ], - "5._96._0.075": [ - 2.2092718103274147, - 2.5553235641179417, - 2.8519160123797533, - 3.200393931788628, - 3.525562546604679, - 4.011252494978861, - 4.71558976793755, - 5.514775932770901, - 7.0626414623965985, - 8.301669879460897, - 9.332333046849698, - 10.98907148740223, - 12.28199009160707, - 15.60776501453851, - 18.869677638519473, - 19.831849062269864, - 20.709953314342986, - 21.578258249731455, - 22.255384134592685, - 22.837885368256273, - 23.338576233096298, - 23.755805184603673, - 24.06678280837344, - 24.419751127682318, - 24.661137473593776, - 24.78018923114803, - 24.974653883023162 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "4_5": { }, - "3_13": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 10.0, - 45.0 - ], - [ - 10.0, - 50.0 - ], - [ - 10.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 10.0, - 60.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351704881984765, - 3.18740100728654, - 3.5235688214896115, - 4.036860686027265, - 4.6651939343762505, - 5.796972118327722, - 7.609646698175326, - 9.590385260098646, - 12.941497975989792, - 15.293272361793866, - 17.09487628768432, - 19.761410689994726, - 21.694788308445325, - 26.189936616575277, - 30.110686651010056, - 31.19511552525001, - 32.16155510563722, - 33.09703051044481, - 33.813902156477, - 34.42495139424848, - 34.94617514384111, - 35.378508767254836, - 35.70032882860205, - 36.06602676240361, - 36.315973221708944, - 36.439017961314576, - 36.63969090451189 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.195803175961542, - 1.481384749141308, - 1.8198213217004349, - 2.111467924224725, - 2.451192833201305, - 2.7884204345072847, - 3.0450414933890713, - 3.3888826099139004, - 3.619679070904986, - 3.8067404716593316, - 4.11623794573388, - 4.37530589142501, - 5.19137961349848, - 6.335950691508621, - 6.765846353012053, - 7.212415942358394, - 7.712752224265555, - 8.155636624962488, - 8.577528798521826, - 8.980184583493642, - 9.350316072163276, - 9.648703608636747, - 10.016334133852537, - 10.288353186323144, - 10.430594923131759, - 10.676512846962027 - ], - "5._384._0.0875": [ - 3.493959915346102, - 4.033751903452785, - 4.703719586571986, - 5.924726220261334, - 7.552009774704984, - 10.326222884658614, - 14.138593329969712, - 17.746964721082307, - 23.075764059298887, - 26.43107090297224, - 28.841475917948923, - 32.19380764455027, - 34.49499872234122, - 39.52859107339617, - 43.680864068460565, - 44.80281782304037, - 45.80057305025507, - 46.763853566730454, - 47.5027167114275, - 48.13248671066469, - 48.67100625681107, - 49.118962734246686, - 49.45272009989958, - 49.83302203732862, - 50.092863749010405, - 50.22057206728202, - 50.42825647393138 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125405, - 2.162243131656473, - 2.506080869237592, - 2.8001352868533305, - 3.1433951998915504, - 3.5138104570088218, - 3.864891552421151, - 4.4801641811891795, - 4.974516153341684, - 5.409357916364284, - 6.172186274036028, - 6.827016913810925, - 8.77932334151659, - 11.081731675384795, - 11.841998940112774, - 12.57577801465178, - 13.340906231905777, - 13.970118694058804, - 14.533244569832906, - 15.036608141194508, - 15.470495636856157, - 15.801635351935877, - 16.18524136979212, - 16.452340719610472, - 16.585883011911317, - 16.806465821408825 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.5553235641809446, - 2.8519161032863134, - 3.20040401535781, - 3.525654329975423, - 4.01161540712628, - 4.716717708070516, - 5.518099776474237, - 7.075077635927672, - 8.325729459548489, - 9.368918381563017, - 11.051362922280521, - 12.36919391727828, - 15.77920484031964, - 19.155777571056237, - 20.159105586935684, - 21.077259490744115, - 21.98763878256329, - 22.699081390646516, - 23.312208474205743, - 23.83982480562098, - 24.27982540998337, - 24.60799078304455, - 24.980547164330968, - 25.23549190376205, - 25.36133138322122, - 25.56711608284353 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "4_6": { }, - "4_4": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351669612369923, - 3.187131809821055, - 3.5217574552296442, - 4.031860000556221, - 4.642789924984922, - 5.664050926695616, - 7.177536839227692, - 8.73205712185217, - 11.14645622530254, - 12.68750861068738, - 13.794921102061611, - 15.339985850260671, - 16.399605548253966, - 18.73422495054544, - 20.675477814061185, - 21.20270161298177, - 21.673507036497224, - 22.130117723325338, - 22.48254787979569, - 22.783313445882108, - 23.041506933773235, - 23.25700176539784, - 23.417612525329186, - 23.600819999746907, - 23.725907494602644, - 23.78730535626037, - 23.886809623125316 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.4511928331436965, - 2.7884196223805504, - 3.044992027085384, - 3.38791749451322, - 3.6173418260566677, - 3.803349868661866, - 4.110060121199708, - 4.362469622374145, - 5.11332117909886, - 6.085104560190628, - 6.434924828625525, - 6.7899634813382646, - 7.177169255216708, - 7.509350469809416, - 7.815605489491669, - 8.097485888963899, - 8.346592396306441, - 8.539609729993684, - 8.766974322953123, - 8.926316375019143, - 9.005943772244606, - 9.13667321203526 - ], - "5._384._0.0875": [ - 3.4917854785249274, - 4.027892682863467, - 4.674512332290674, - 5.76433018715352, - 7.118823424030785, - 9.27496727848396, - 11.950748739554333, - 14.215514760326917, - 17.213590667732912, - 18.94650290689656, - 20.1401514543864, - 21.755871343338576, - 22.842316077409556, - 25.203207795314178, - 27.15383368215816, - 27.68261441976035, - 28.155994660819886, - 28.615633613620084, - 28.971159712344004, - 29.274716510103367, - 29.535753696189534, - 29.753984531395947, - 29.91669228327421, - 30.102527311648508, - 30.229375158748294, - 30.29158608804928, - 30.39228523455161 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.5060808689637457, - 2.800134562232989, - 3.14327916441727, - 3.5123102532597708, - 3.861332630541545, - 4.46625801003282, - 4.930366410124289, - 5.320873222479279, - 5.977986165022717, - 6.523082498661355, - 8.070512526217932, - 9.74033387825479, - 10.249977839170032, - 10.72380344038845, - 11.198839359120816, - 11.575308318512594, - 11.901326389413148, - 12.18463074954121, - 12.42294215151655, - 12.601109309351095, - 12.804250491457228, - 12.943133129933976, - 13.011482757605545, - 13.122456061328451 - ], - "5._96._0.075": [ - 2.209271810327405, - 2.5553235630354036, - 2.85191445085216, - 3.2002236321495934, - 3.5241752721853348, - 4.0072483561728, - 4.693830270584265, - 5.424314266196199, - 6.744298970435425, - 7.750465107474564, - 8.557800527938326, - 9.799245263410551, - 10.719250086160097, - 12.912412337145456, - 14.85221260258157, - 15.391211680617198, - 15.87463723683865, - 16.34552964897247, - 16.709868891192656, - 17.02099235650318, - 17.288039892312778, - 17.51073252615451, - 17.67656252866379, - 17.865298415493864, - 17.99408591656644, - 18.057328074885103, - 18.159887791902026 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "4_7": { }, - "4_5": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351678770733755, - 3.187202360842244, - 3.5222558951808356, - 4.033001480958287, - 4.64282847825528, - 5.658749749401029, - 7.180451156340128, - 8.792647613304357, - 11.396386191115555, - 13.108044712131049, - 14.35553574266794, - 16.113330138517803, - 17.32739253678775, - 20.01267682522805, - 22.247947491528564, - 22.854879473699143, - 23.396018982536418, - 23.920222244172166, - 24.324104590001333, - 24.66861275115878, - 24.96397783422694, - 25.21020822306621, - 25.393677703397284, - 25.60281885520403, - 25.745626917382793, - 25.815750974401922, - 25.929501898575484 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.4511928331586543, - 2.7884198332326826, - 3.045004897367837, - 3.3881764117636184, - 3.617997972654443, - 3.804287760326047, - 4.111048434608664, - 4.362992513447313, - 5.11016852521276, - 6.0823655856408045, - 6.438280156515094, - 6.804360914987624, - 7.209761383441146, - 7.563068641706794, - 7.893389830525229, - 8.201390950021436, - 8.476747535956298, - 8.69210657983334, - 8.947878709814887, - 9.128428140011792, - 9.21909198419426, - 9.368561189426797 - ], - "5._384._0.0875": [ - 3.4923899597134294, - 4.029040072276986, - 4.6741343169428085, - 5.758331223450796, - 7.121224431188424, - 9.36822059802616, - 12.27988789238486, - 14.820180426978071, - 18.247407763100583, - 20.24848504178485, - 21.631563003465224, - 23.505756990273504, - 24.766687298672714, - 27.50173694297232, - 29.755679052510942, - 30.365871703720572, - 30.911469168650672, - 31.440685174920556, - 31.849473536539573, - 32.19840747924487, - 32.498207264933384, - 32.74865418987794, - 32.935365356564304, - 33.14854266213893, - 33.294079625377435, - 33.36548101987627, - 33.48113930887647 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.506080869034838, - 2.800134750364696, - 3.1433094260752195, - 3.512719450033114, - 3.8623170774725897, - 4.4668128760826, - 4.928967502931451, - 5.317180793432326, - 5.971980540499062, - 6.5200866085609634, - 8.117954025217072, - 9.917694334766331, - 10.481136526359018, - 11.009779202169527, - 11.543864331667741, - 11.969543704904865, - 12.339609533251991, - 12.661968911851094, - 12.933481519286822, - 13.136605430208776, - 13.368095393353892, - 13.526402212564701, - 13.60437395778915, - 13.731107324489717 - ], - "5._96._0.075": [ - 2.209271810327405, - 2.5553235633328057, - 2.851914879893103, - 3.2002707743981924, - 3.524578082112754, - 4.008353700802753, - 4.693820220569501, - 5.420426385271752, - 6.741261908314919, - 7.770553372372415, - 8.614352087103972, - 9.94155380015661, - 10.945645852155918, - 13.392310279714764, - 15.597831649139092, - 16.215002367149157, - 16.768829694968566, - 17.30849014135084, - 17.725699027950938, - 18.081873254990406, - 18.387222587582094, - 18.641521896006108, - 18.830786411387095, - 19.04593977463032, - 19.192736721945092, - 19.26485238297267, - 19.381916346387253 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "4_8": { }, - "4_6": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835168548687099, - 3.1872540983446367, - 3.522621433456081, - 4.03383971932135, - 4.642958735316911, - 5.656691274613632, - 7.1864908799846665, - 8.837864063376891, - 11.5817964704435, - 13.431382306290383, - 14.797766434120435, - 16.743191165687843, - 18.097762947022414, - 21.110530185395152, - 23.625537175860437, - 24.30873710502472, - 24.917105503336995, - 25.505858281444084, - 25.958748674620825, - 26.34489416790879, - 26.675561362427345, - 26.950918016283694, - 27.15603791254136, - 27.38970954654618, - 27.549282560365725, - 27.627669002329398, - 27.754935599673953 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.451192833169619, - 2.78841998785758, - 3.0450143355759636, - 3.388366286451454, - 3.6184791787534127, - 3.8049757161519664, - 4.111777619313934, - 4.363413105221574, - 5.108814952721899, - 6.083245172399307, - 6.443396613310645, - 6.816853306825135, - 7.234617589847009, - 7.60285378591961, - 7.950894879220269, - 8.278966342288333, - 8.575340347615802, - 8.809249710997273, - 9.089501977896086, - 9.289007996463509, - 9.389774932263688, - 9.556778036965502 - ], - "5._384._0.0875": [ - 3.492833380565081, - 4.029883920153171, - 4.674024588084062, - 5.756206846451329, - 7.126974280762411, - 9.43650891416986, - 12.527233966017587, - 15.297371614073468, - 19.10805263742033, - 21.358924846590334, - 22.9214931362615, - 25.043052195990516, - 26.472078806990933, - 29.568252183022857, - 32.114690123011194, - 32.80328971793409, - 33.4182941407597, - 34.01425826782026, - 34.47400824597771, - 34.86633403815648, - 35.203134267281115, - 35.484283787627994, - 35.693865005207854, - 35.93307445642296, - 36.09640916630961, - 36.176567860502814, - 36.30650003088829 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.5060808690869742, - 2.8001348883279493, - 3.1433316179672306, - 3.5130195360839607, - 3.8630391990096924, - 4.467259068000267, - 4.928315459666911, - 5.315570027340102, - 5.970287209036016, - 6.521277155138468, - 8.153607535491371, - 10.049357915846468, - 10.65586725403188, - 11.229876299247374, - 11.814387284439988, - 12.283220257110042, - 12.6927219452605, - 13.050629737184437, - 13.352752928037589, - 13.579094615051005, - 13.837126924163426, - 14.01372310414086, - 14.100797828164964, - 14.242512856042085 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.5553235635508975, - 2.8519151945231282, - 3.200305345407439, - 3.524873484431739, - 4.009164849912218, - 4.69392091392246, - 5.418739829606306, - 6.742819643246244, - 7.7879778041467835, - 8.656618467452592, - 10.045619333004568, - 11.114011536960602, - 13.769820698863326, - 16.21248461172771, - 16.90186580218528, - 17.52138581758389, - 18.12569253145152, - 18.592796751200854, - 18.991596759840476, - 19.33320486723214, - 19.617412220570337, - 19.828849352790407, - 20.068965091775485, - 20.232788338624673, - 20.313304920941825, - 20.444134867352656 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "4_9": { }, - "4_7": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83516906227428, - 3.187293662366656, - 3.5229009716361803, - 4.034480877332553, - 4.643059222763484, - 5.655266361130398, - 7.192237465935186, - 8.87323324193278, - 11.724652596397389, - 13.686106462004464, - 15.152800121431412, - 17.26219592774444, - 18.74340171295869, - 22.060040435724574, - 24.84079256146813, - 25.597023488629006, - 26.26977149697835, - 26.920326906171116, - 27.420046155778884, - 27.845960243304624, - 28.210278527169947, - 28.513345195517235, - 28.739053009764003, - 28.9960228577736, - 29.171522342414416, - 29.25776454796011, - 29.39790663797906 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004358, - 2.1114679242247285, - 2.451192833178007, - 2.788420106100149, - 3.0450215530298035, - 3.388511485905332, - 3.6188471776185738, - 3.80550186416717, - 4.112335409328286, - 4.363735094696247, - 5.10783444571244, - 6.084555200045358, - 6.448109391835438, - 6.82715644495536, - 7.254107719460872, - 7.633489769344273, - 7.995002042345095, - 8.338728964633644, - 8.651986313073078, - 8.901234053591999, - 9.202404273378432, - 9.418704310552496, - 9.528655771676789, - 9.712006836675046 - ], - "5._384._0.0875": [ - 3.4931725430731455, - 4.030529419328328, - 4.673942632909891, - 5.754806658752515, - 7.132508462821204, - 9.489272492552443, - 12.719235899074565, - 15.680539223871287, - 19.830631607215643, - 22.312255447799206, - 24.04383870782849, - 26.401182701645084, - 27.991811370071126, - 31.436525281956147, - 34.26550319150826, - 35.029791453008656, - 35.71167044083075, - 36.371840937881956, - 36.88048796144198, - 37.314424738540446, - 37.686644933849735, - 37.99713969073413, - 38.22857433874, - 38.492640668794024, - 38.67297324657913, - 38.76150045164625, - 38.90509149181941 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.506080869126845, - 2.8001349938292623, - 3.1433485882430223, - 3.5132490184533984, - 3.8635914876151447, - 4.467600527668233, - 4.9278264583918086, - 5.314404558225575, - 5.96938178340298, - 6.522962703853125, - 8.181543767125172, - 10.150672548704302, - 10.791745339706997, - 11.403194684645863, - 12.030451494620408, - 12.536792263050161, - 12.981284040284939, - 13.371299145345402, - 13.701484382478188, - 13.949354104555626, - 14.23222110467498, - 14.426064090578278, - 14.521773587223219, - 14.67778271572526 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637176734, - 2.851915435122558, - 3.2003317820769492, - 3.525099385099142, - 4.009785263542744, - 4.6939988537826025, - 5.417516717535588, - 6.744870774530931, - 7.802414131881694, - 8.689606828270392, - 10.125293338235654, - 11.243805965247981, - 14.072063414840828, - 16.724527066633215, - 17.48016468008971, - 18.160671234618892, - 18.825561000938794, - 19.33970235305461, - 19.778849608064196, - 20.154843299015404, - 20.467433545608436, - 20.699922769854716, - 20.963724054131916, - 21.14371683135447, - 21.232224684341066, - 21.37618376318847 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "4_10": { }, - "4_8": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351694677379764, - 3.1873248971512407, - 3.523121665128341, - 4.034987147721775, - 4.64313851405524, - 5.654147379922084, - 7.197000553659868, - 8.901585264375406, - 11.838253749032404, - 13.89141725897967, - 15.442853680554302, - 17.69504401043223, - 19.289701436814813, - 22.886837609803933, - 25.919607316360203, - 26.745787475050385, - 27.480266919790562, - 28.19011499132044, - 28.734699591173463, - 29.198707486138535, - 29.59520637496743, - 29.92472714082565, - 30.17008163244583, - 30.44925988481518, - 30.639945096431866, - 30.73368421750545, - 30.886137517037724 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833184629, - 2.7884201994495506, - 3.045027251020029, - 3.388626117765213, - 3.619137713893122, - 3.8059172834497956, - 4.112775875764903, - 4.3639893867919906, - 5.107061551819385, - 6.085686062857603, - 6.4520129243465, - 6.835524287006735, - 7.26970525755053, - 7.657806977330557, - 8.029913497416276, - 8.386115905258096, - 8.713086502551732, - 8.975061373634622, - 9.294064167594609, - 9.525157375609721, - 9.64341077156446, - 9.8419496397143 - ], - "5._384._0.0875": [ - 3.493440349478121, - 4.031039147724461, - 4.67387779264715, - 5.753712972679427, - 7.137103000244947, - 9.531365340547387, - 12.8725785775355, - 15.993582080455845, - 20.44274860944356, - 23.136200422808702, - 25.026080463111793, - 27.607314276151886, - 29.35295834918889, - 33.13396635594024, - 36.23623718306592, - 37.07373522772948, - 37.82019067347491, - 38.54226919928527, - 39.09794969258402, - 39.571890833793205, - 39.978105755382714, - 40.31672206285282, - 40.56909355998046, - 40.856957196571344, - 41.05356636933169, - 41.15011147254163, - 41.30680686465136 - ], - "5._48._0.075": [ - 1.5268463243731414, - 1.8679037053125422, - 2.1622431316564774, - 2.5060808691583167, - 2.8001350771197697, - 3.143361985832502, - 3.5134301916843222, - 3.8640275526998304, - 4.467870131716359, - 4.927440274999584, - 5.313486296539245, - 5.968703645200497, - 6.5244212199617255, - 8.20394077455765, - 10.231106430337737, - 10.900215940122779, - 11.542719713766092, - 12.206190356375132, - 12.745018323060686, - 13.220393696018846, - 13.639250838159386, - 13.995041799853453, - 14.262806821017804, - 14.568880991358764, - 14.778999398695706, - 14.882914395305805, - 15.052600022808326 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.5553235638493423, - 2.851915625069476, - 3.2003526531412443, - 3.525277730655428, - 4.010275139136083, - 4.69406030611964, - 5.416552510399673, - 6.746621101313096, - 7.814147874836533, - 8.715981541668722, - 10.188405522991468, - 11.346927140237431, - 14.318349377124944, - 17.155575472732405, - 17.971699259097647, - 18.70857005436703, - 19.43005558969727, - 19.988470511497272, - 20.46579953625006, - 20.874436663391823, - 21.214020279357847, - 21.46655358551682, - 21.752907154385216, - 21.94831477827465, - 22.044455116422043, - 22.2009884970994 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "5_5": { }, - "4_9": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 15.0, - 30.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 10.0, - 40.0 - ], - [ - 15.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351697959705864, - 3.1873501824726667, - 3.5233003252904145, - 4.035397045778044, - 4.643202674493744, - 5.653241471757605, - 7.200885020316147, - 8.924709490354276, - 11.930880052792174, - 14.06025134851583, - 15.683684127554681, - 18.060294194662575, - 19.756300089038604, - 23.61137504449404, - 26.882720787525074, - 27.7758907081395, - 28.569611423485394, - 29.33643086570829, - 29.92409224934407, - 30.42467793189826, - 30.852035992333597, - 31.20688804767616, - 31.471048822994668, - 31.77146445293087, - 31.976676218441245, - 32.0775933157209, - 32.24185697145644 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413081, - 1.8198213217004342, - 2.111467924224728, - 2.451192833189987, - 2.7884202750181055, - 3.045031863679005, - 3.3887189154453163, - 3.619372916939917, - 3.806253600629974, - 4.113132512282049, - 4.3641953001676335, - 5.106435685222409, - 6.086610458118203, - 6.455203717512287, - 6.842355654365919, - 7.2824077972774255, - 7.677562407356971, - 8.058245960185477, - 8.424609378076275, - 8.76287850010262, - 9.035496801842196, - 9.369731015731317, - 9.613819046724782, - 9.739544986659016, - 9.952146398017845 - ], - "5._384._0.0875": [ - 3.4936571752168724, - 4.0314518650193545, - 4.673825208362289, - 5.752827766051068, - 7.14085084679721, - 9.565675822648464, - 12.99795951823418, - 16.253498217985236, - 20.965975699424884, - 23.85306156978684, - 25.890555325663733, - 28.683653253371272, - 30.577666154079772, - 34.682979700260304, - 38.0498768831358, - 38.95830544778402, - 39.76723684095545, - 40.54913145550652, - 41.150153143906856, - 41.662640692114024, - 42.10155789311066, - 42.46718663873363, - 42.73966421297019, - 43.050364927076295, - 43.26259700475619, - 43.366842250637525, - 43.536139579807205 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.867903705312543, - 2.1622431316564787, - 2.506080869183797, - 2.800135144545419, - 3.143372831502325, - 3.513576857627963, - 3.8643805886394222, - 4.468088402209486, - 4.927127491180043, - 5.312742744660129, - 5.968157088572451, - 6.525617264528048, - 8.222203603114787, - 10.296593865764642, - 10.98878316555648, - 11.657276523575073, - 12.351544536726507, - 12.918522281330263, - 13.421101736480638, - 13.865785812664386, - 14.24486221753196, - 14.530960229609745, - 14.858685773429777, - 15.084164069913923, - 15.195885020167923, - 15.378682977263972 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.5553235639559313, - 2.851915778836029, - 3.2003695487708055, - 3.525422107519328, - 4.010671753801857, - 4.694110000578109, - 5.4157717610879645, - 6.748049839793661, - 7.823722274232854, - 8.737456466301342, - 10.239682188244302, - 11.43087296802174, - 14.522368748631425, - 17.522107559897883, - 18.3932593446824, - 19.1820379730312, - 19.956241430982804, - 20.55625595024403, - 21.069693159956998, - 21.50933374752323, - 21.874626890469372, - 22.14628547445625, - 22.45417331830976, - 22.664323450700167, - 22.76777854285256, - 22.936397658197325 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "5_6": { }, - "4_10": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 15.0, - 30.0 - ], - [ - 15.0, - 35.0 - ], - [ - 15.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 10.0, - 45.0 - ], - [ - 15.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351700671193134, - 3.1873710703601317, - 3.523447916499251, - 4.035735697796386, - 4.643255657851007, - 5.652493013929367, - 7.20409472867555, - 8.943869761384445, - 12.007913273135676, - 14.201491395822298, - 15.886568991164793, - 18.37191839032103, - 20.15841430362456, - 24.250103578711602, - 27.746922311669337, - 28.704224741732222, - 29.554822623008423, - 30.376443265488486, - 31.00553534907715, - 31.541313484117556, - 31.998333044538445, - 32.377504748349494, - 32.659715834452044, - 32.98049752514318, - 33.19964519434675, - 33.30745487749519, - 33.48308137235602 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615415, - 1.4813847491413088, - 1.8198213217004349, - 2.1114679242247254, - 2.451192833194416, - 2.788420337444311, - 3.0450356741365683, - 3.3887955747090124, - 3.6195672198432027, - 3.806531444994185, - 4.113427171257345, - 4.364365441587833, - 5.105918526699948, - 6.087374237984107, - 6.457843302443947, - 6.848009866563313, - 7.292924106293239, - 7.693915350897095, - 8.081701862652185, - 8.456505068059927, - 8.804222493216367, - 9.085830670349042, - 9.433135194991744, - 9.688634789616543, - 9.821068676903135, - 10.04665256151402 - ], - "5._384._0.0875": [ - 3.4938363124334337, - 4.031792859410013, - 4.673781705306893, - 5.752096458186926, - 7.143947976236987, - 9.594126168411522, - 13.102460435103382, - 16.47247914107646, - 21.417161128889543, - 24.480817472384395, - 26.655510146912167, - 29.648503602655634, - 31.684224966632396, - 36.10206755699766, - 39.72540345006259, - 40.70265058061949, - 41.57212500999588, - 42.41191990522468, - 43.056737436665856, - 43.606441077772544, - 44.076882424166186, - 44.46851331219699, - 44.760340241339904, - 45.093003614507126, - 45.320263344173064, - 45.43191941246622, - 45.6133613775955 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.162243131656478, - 2.506080869204849, - 2.8001352002448696, - 3.1433817909701482, - 3.5136980177329087, - 3.8646722478593563, - 4.468268725844139, - 4.926868996683543, - 5.312128346953009, - 5.967705848826723, - 6.526606871966798, - 8.237331372063577, - 10.350992999505827, - 11.06248150802144, - 11.752956917161065, - 12.473585586628511, - 13.065027695090317, - 13.591580139197282, - 14.059362880629708, - 14.459570486935391, - 14.762523519912838, - 15.110415591623092, - 15.350384282854716, - 15.469534839000811, - 15.664922044025642 - ], - "5._96._0.075": [ - 2.2092718103274245, - 2.5553235640439804, - 2.8519159058605754, - 3.2003835060341177, - 3.5255413766387536, - 4.010999424880221, - 4.694151016960413, - 5.415126655561476, - 6.749230156641203, - 7.831643362506339, - 8.755234709432399, - 10.282170798673725, - 11.500562340538426, - 14.693907846817565, - 17.836759544301593, - 18.757872874899864, - 19.59433576296917, - 20.417526343524827, - 21.056561729735225, - 21.604114617247397, - 22.073201261673965, - 22.46300350925799, - 22.752939756571205, - 23.081436831340525, - 23.305723991897466, - 23.416209458168918, - 23.59647963971831 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "5_7": { }, - "5_5": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351685499612094, - 3.187258714136909, - 3.5228438727636755, - 4.036702022581875, - 4.652059663761198, - 5.66411335621385, - 7.149292259685648, - 8.747180084177202, - 11.441557145639967, - 13.278222887702963, - 14.640658498670904, - 16.58507056218041, - 17.940128138358585, - 20.95407158070511, - 23.468607430135222, - 24.151436597808804, - 24.75927850790786, - 25.347407047104415, - 25.799718108222166, - 26.18532888248482, - 26.515487387423388, - 26.79038286537399, - 26.995146993776675, - 27.228392392963908, - 27.387669175775645, - 27.465910417983835, - 27.592946987306984 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.4511928331696193, - 2.788419987937593, - 3.045014530241798, - 3.388426593393468, - 3.61893807115428, - 3.806285595638799, - 4.115630706207777, - 4.369938264699354, - 5.117784882055297, - 6.068516108590718, - 6.415824265478349, - 6.7763490198953225, - 7.181463551853645, - 7.540804641937169, - 7.882593658940476, - 8.206696609025872, - 8.500984182470376, - 8.734109053504245, - 9.014252932699334, - 9.214013449669416, - 9.31497291728689, - 9.482329836951564 - ], - "5._384._0.0875": [ - 3.4931710412388215, - 4.03347251947572, - 4.684150740084604, - 5.760930194323468, - 7.090110508325212, - 9.328967663103754, - 12.374459317749082, - 15.132200949349306, - 18.94147943586183, - 21.193415745962525, - 22.75649244448317, - 24.878240121776997, - 26.307037385519987, - 29.4013192647034, - 31.945044535233112, - 32.63276603259177, - 33.246905991035234, - 33.84197016373688, - 34.300968352075536, - 34.692638262582015, - 35.02884877405768, - 35.309486643079566, - 35.518683155067215, - 35.757445205723954, - 35.92047495679091, - 36.00048555072574, - 36.130183979125476 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.5060808690869742, - 2.8001348883911774, - 3.14333256922029, - 3.5131692540568866, - 3.8644226946337272, - 4.474322861170921, - 4.938971065653816, - 5.325272456016258, - 5.96788111532566, - 6.501451766531553, - 8.080177454803994, - 9.942824398411016, - 10.544808651419324, - 11.116738437046614, - 11.700560773248478, - 12.169709819590091, - 12.579725893004984, - 12.93823569584624, - 13.240886724751643, - 13.467560161762616, - 13.725883296223618, - 13.902624815028982, - 13.98975730048277, - 14.131537721476786 - ], - "5._96._0.075": [ - 2.2092718103274027, - 2.555323563550897, - 2.8519151948255264, - 3.20030751279389, - 3.525015554640949, - 4.011396620649195, - 4.7030073729175825, - 5.428916711004246, - 6.720751192378307, - 7.729269255027415, - 8.571205844819746, - 9.929797544753724, - 10.98410396020036, - 13.627750385893856, - 16.07079560559501, - 16.76085096931969, - 17.380782833865567, - 17.985358028870824, - 18.452550200881838, - 18.851304164785265, - 19.192781169216094, - 19.476804803060265, - 19.68806369742662, - 19.927921271083143, - 20.09154574556812, - 20.171960076680513, - 20.302621620008832 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351682368664046, - 3.187230075803818, - 3.5224492924972486, - 4.033119936823576, - 4.638396480759823, - 5.618987960858868, - 7.030026221999871, - 8.527839211273466, - 11.040326281134176, - 12.753084676806015, - 14.025120380850506, - 15.843214146708608, - 17.11195497122992, - 19.940401971075286, - 22.305981963908003, - 22.94907768350858, - 23.5219570494117, - 24.07656707380614, - 24.5033881875782, - 24.8673301405763, - 25.179061947213125, - 25.438701828274404, - 25.632108194735537, - 25.852441932874385, - 26.002888421341073, - 26.07678067912425, - 26.19671636902343 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.4511928331645287, - 2.7884199160674505, - 3.045009953546903, - 3.38827791404913, - 3.6182455112077183, - 3.8045791292004805, - 4.110763196512884, - 4.36096455515036, - 5.088523341352613, - 5.996594731204861, - 6.324664302256742, - 6.66356948175994, - 7.043146251752328, - 7.379150274840224, - 7.698625225718219, - 8.00168389858422, - 8.27718079562981, - 8.495778161296176, - 8.759105313710558, - 8.94734091149286, - 9.042617955855821, - 9.200804830324877 - ], - "5._384._0.0875": [ - 3.492622151923022, - 4.028973564321868, - 4.6678688276745985, - 5.7086726490240105, - 6.970317380705004, - 9.065928706832562, - 11.90374824135082, - 14.474873600859345, - 18.032665981551915, - 20.138958066582124, - 21.602246611922695, - 23.5905838265759, - 24.930556453107524, - 27.83627994287034, - 30.228020615878005, - 30.87501041635176, - 31.452962934584594, - 32.013127460088626, - 32.44536358196687, - 32.81421549766889, - 33.13090295282149, - 33.39528824036076, - 33.59236582386283, - 33.81730334935146, - 33.97087939941161, - 34.046241503080196, - 34.16837716052527 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.1622431316564747, - 2.506080869062769, - 2.8001348242735835, - 3.14332131451069, - 3.5128790354734982, - 3.862621957198177, - 4.464580392139133, - 4.918351090861684, - 5.292537742558518, - 5.90888858522505, - 6.41571666369946, - 7.898404905596242, - 9.638977655419469, - 10.20171680581911, - 10.73726058382615, - 11.284789288957224, - 11.725538212714785, - 12.111321620329223, - 12.449201935558799, - 12.734899089589739, - 12.94912980290307, - 13.19363236320802, - 13.361070496901409, - 13.443643755892115, - 13.578008549726166 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.55532356344964, - 2.8519150484449027, - 3.2002892942107675, - 3.5247352870633146, - 4.008584140887022, - 4.689236056197689, - 5.3941771300509735, - 6.627034602629627, - 7.57648313447077, - 8.364515942477567, - 9.632381153397771, - 10.615797361602414, - 13.086469576251346, - 15.377994804985304, - 16.026577406312093, - 16.610123141820804, - 17.179829031762406, - 17.62061768431994, - 17.997069004818776, - 18.319727012335672, - 18.58829979027774, - 18.788126998395434, - 19.015108735089672, - 19.169964336265924, - 19.246061934087628, - 19.369665726571647 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "5_8": { }, - "5_6": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169063398493, - 3.187297735127548, - 3.5230972446795525, - 4.037005718912379, - 4.6509464526508895, - 5.657509368967948, - 7.129966700309073, - 8.727363910150066, - 11.494687067479912, - 13.43383724449701, - 14.894558468113454, - 17.004346288180148, - 18.488132642181355, - 21.809999110277136, - 24.590976642555905, - 25.346605466240742, - 26.018370303598818, - 26.667703138523798, - 27.166260031453096, - 27.591090831879093, - 27.95437329030352, - 28.25649963990926, - 28.481481848199266, - 28.737584503275915, - 28.912480832211156, - 28.998426878504734, - 29.138099050625033 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004358, - 2.1114679242247285, - 2.4511928331780073, - 2.7884201061707525, - 3.0450217247937834, - 3.388564698112047, - 3.6192520880384627, - 3.8066576264071164, - 4.115730750654125, - 4.369445877660482, - 5.1138303011158355, - 6.056613814500054, - 6.40119951226918, - 6.760429463248892, - 7.167233438644749, - 7.5319196905124635, - 7.882813002819874, - 8.21965888808455, - 8.529288819038278, - 8.77725379787942, - 9.0784663081431, - 9.295437162213926, - 9.405832435967014, - 9.589928171572568 - ], - "5._384._0.0875": [ - 3.493470533257902, - 4.0336938995023965, - 4.6826317519472145, - 5.753045486513925, - 7.070645135026027, - 9.315519001818583, - 12.467698358287969, - 15.40860164165279, - 19.560692878001245, - 22.04689118452542, - 23.780910384535282, - 26.140088587984064, - 27.730929674778345, - 31.1726531547732, - 33.99642248280196, - 34.75896870157849, - 35.43912978435081, - 36.097508384172734, - 36.60465959692419, - 37.03729181054238, - 37.40834138140715, - 37.71782292442156, - 37.948496598075884, - 38.21168029686891, - 38.39141146987778, - 38.479646441326224, - 38.62277583094032 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.506080869126844, - 2.800134993885049, - 3.1433494275841456, - 3.513381123971466, - 3.8648122391442694, - 4.473782297577872, - 4.936629534179492, - 5.320753546693129, - 5.958331255411861, - 6.486991278781526, - 8.062817215198043, - 9.975856354085339, - 10.609094661706344, - 11.217084050647331, - 11.843552817968302, - 12.350913206465897, - 12.79679744219665, - 13.188294565452786, - 13.519721648809957, - 13.768356190018476, - 14.051857425478353, - 14.245980373473488, - 14.341785543112875, - 14.497872248359819 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.555323563717675, - 2.851915435389384, - 3.200333694477487, - 3.5252247424582173, - 4.011754281557849, - 4.701863809742708, - 5.424146518763342, - 6.705153354497363, - 7.707523838348349, - 8.552224535743502, - 9.936976428872617, - 11.03106254546544, - 13.839029528262325, - 16.49497232538677, - 17.252533339223, - 17.934356772471, - 18.600150659934396, - 19.114661160638157, - 19.5538189487604, - 19.9295905211937, - 20.24181418718183, - 20.47393147342071, - 20.737184060396746, - 20.91674867181132, - 21.00503406021154, - 21.14862420661323 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351688215302677, - 3.1872751153711127, - 3.5227678151005, - 4.033889914632372, - 4.638920858733575, - 5.617839832481211, - 7.027391714714145, - 8.541155196350532, - 11.151019397655624, - 12.97839918322717, - 14.35570238304184, - 16.346827751773766, - 17.74843761800996, - 20.892104588642887, - 23.52936608601348, - 24.24664793419869, - 24.8847519090991, - 25.50187163213792, - 25.976002652712722, - 26.380086755287017, - 26.725764405292825, - 27.013343431517285, - 27.22749970342622, - 27.471307037594396, - 27.637793178551767, - 27.719594461177394, - 27.852488112614264 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004344, - 2.111467924224728, - 2.451192833174076, - 2.788420050673945, - 3.045018169844972, - 3.3884432344622857, - 3.618665708977431, - 3.8051876388882904, - 4.111477363383548, - 4.361562027662024, - 5.0880564465190465, - 5.994340074330863, - 6.322915610284187, - 6.664215498255224, - 7.049708478975074, - 7.394644378612106, - 7.726324845575013, - 8.044693001642802, - 8.337496438086111, - 8.57223007663356, - 8.857871456525832, - 9.064011286405194, - 9.169015953237938, - 9.344346155130074 - ], - "5._384._0.0875": [ - 3.493008878119508, - 4.029770324841591, - 4.668290732858904, - 5.707183817921372, - 6.967582060753888, - 9.092141751914838, - 12.062417461670568, - 14.832450647405006, - 18.746737058157947, - 21.09263531357468, - 22.729887715325244, - 24.959289774061755, - 26.463568775083314, - 29.721870987691403, - 32.39826242767988, - 33.121388908295515, - 33.76658940796906, - 34.39130447952029, - 34.87269707717041, - 35.283376329629014, - 35.63566856989096, - 35.9295533600685, - 36.148598563684565, - 36.398523246139284, - 36.569185226210834, - 36.65295859679146, - 36.78882111171972 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125465, - 2.162243131656477, - 2.506080869108157, - 2.8001349443755243, - 3.143340633358191, - 3.5131404207519212, - 3.863260808863793, - 4.465222428940987, - 4.918451522053318, - 5.291920775178748, - 5.90680063888508, - 6.412875124136651, - 7.908450967907349, - 9.716053005169218, - 10.314123675482273, - 10.888970132460042, - 11.481911577331147, - 11.96270804040448, - 12.385755607329946, - 12.757698838593447, - 13.073001321524627, - 13.30978689533495, - 13.580134164106846, - 13.765402370046859, - 13.856863203933262, - 14.00587060504066 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235636394978, - 2.8519153223415743, - 3.200319389564357, - 3.524992578894382, - 4.009315412179053, - 4.689741736857365, - 5.39354658268801, - 6.624085908399755, - 7.577236452508587, - 8.376869506861585, - 9.68405859641159, - 10.715886646507393, - 13.366422511020216, - 15.879614045676142, - 16.597530007056584, - 17.244519166843208, - 17.876885715681667, - 18.36610063537358, - 18.783906507961117, - 19.141695536995734, - 19.439186973920993, - 19.660416452864133, - 19.91142919886304, - 20.082659952584024, - 20.166839728871324, - 20.30370415130679 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "5_9": { }, - "5_7": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 20.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351694687438576, - 3.1873285412025854, - 3.5232972800099933, - 4.0372455113207995, - 4.650069222459513, - 5.652636284455951, - 7.118293698894694, - 8.717149607441876, - 11.537557222475943, - 13.556816510162616, - 15.098488914786888, - 17.350624632604607, - 18.94935895587954, - 22.55583615782461, - 25.589971595165473, - 26.415414645987973, - 27.148509574721597, - 27.85656959876882, - 28.399418305245316, - 28.861793540345047, - 29.2567217645145, - 29.584812277895537, - 29.829061509908207, - 30.106918705445956, - 30.296683920497504, - 30.389970711278096, - 30.5417057167396 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.45119283318463, - 2.7884201995127156, - 3.04502740470359, - 3.3886737288275786, - 3.619500005783788, - 3.8069513654233336, - 4.115809771280714, - 4.3690574673663765, - 5.110827379198563, - 6.0490263167693845, - 6.392351697066459, - 6.751167037762516, - 7.15938168852187, - 7.527817516435287, - 7.885171107394092, - 8.231403501053169, - 8.55283304640379, - 8.812682196412318, - 9.131526587201368, - 9.363578279231913, - 9.482504337873433, - 9.68219049350774 - ], - "5._384._0.0875": [ - 3.4937070105889836, - 4.033868687971715, - 4.681436582388042, - 5.747346536331048, - 7.058855617731142, - 9.310083252030168, - 12.541225142781405, - 15.630237857149876, - 20.08178221359908, - 22.78298548926221, - 24.67735405774524, - 27.262415093010773, - 29.008936265737123, - 32.78613695583256, - 35.88071954362963, - 36.7155880386424, - 37.4594411880496, - 38.17879896844047, - 38.73220605333925, - 39.204163856077486, - 39.6085996100913, - 39.945677081305995, - 40.196893178389345, - 40.48341816451842, - 40.67911505777569, - 40.77521663774656, - 40.93121101294323 - ], - "5._48._0.075": [ - 1.5268463243731414, - 1.8679037053125422, - 2.1622431316564774, - 2.506080869158317, - 2.8001350771696862, - 3.143362736822055, - 3.5135483923629054, - 3.8651198061923777, - 4.473355752686997, - 4.93480073011994, - 5.317329004389676, - 5.951753617890659, - 6.477829286710153, - 8.053643579563833, - 10.003099928370455, - 10.660354610993776, - 11.297184968344832, - 11.959008883946067, - 12.499085852794591, - 12.976482700494014, - 13.39760851854687, - 13.75535976373576, - 14.024364482510045, - 14.331483091281395, - 14.542057598897658, - 14.646123976485226, - 14.815920852507812 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.555323563849342, - 2.8519156253082105, - 3.200354364236968, - 3.525389893414542, - 4.012036681240135, - 4.700962813696421, - 5.420526479140332, - 6.695300177648398, - 7.695055128758409, - 8.542279961430106, - 9.945688769015995, - 11.06913216467477, - 14.008678175038632, - 16.8508759006981, - 17.670106366771744, - 18.409274723485836, - 19.132428593106884, - 19.691608826389082, - 20.16909062603402, - 20.577476829077767, - 20.9165507663955, - 21.168538223976807, - 21.4540652825582, - 21.648819089964032, - 21.74461716837194, - 21.900580082457587 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 20.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169276268998, - 3.187310146184183, - 3.523015561829058, - 4.034488912673671, - 4.639329788940273, - 5.6171252648800225, - 7.027061500031687, - 8.553259337622677, - 11.235663147269493, - 13.15429323185189, - 14.61937862933139, - 16.76067809530095, - 18.281564812031714, - 21.717286213457516, - 24.61265708212136, - 25.40100802044218, - 26.101601725301016, - 26.77859891300328, - 27.29795246831052, - 27.740386084020084, - 28.11842520197452, - 28.432584088020832, - 28.66646966061102, - 28.932566995708722, - 29.114286937028773, - 29.203606303329106, - 29.348842541640096 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615422, - 1.4813847491413084, - 1.8198213217004355, - 2.111467924224729, - 2.451192833181502, - 2.788420155367889, - 3.045024560299464, - 3.388571817909206, - 3.618992543244184, - 3.805660974256789, - 4.112032976899804, - 4.362027106016078, - 5.0877557623373315, - 5.9934806694462575, - 6.322789550417737, - 6.666054101474322, - 7.055877196313764, - 7.407247617200203, - 7.747883172479857, - 8.077849925159068, - 8.384255909281581, - 8.632126660485042, - 8.93665646425318, - 9.158590350874627, - 9.272424007573884, - 9.463745274294599 - ], - "5._384._0.0875": [ - 3.4933097243670517, - 4.030390205381373, - 4.6686212186866864, - 5.706300684460669, - 6.9671740874860735, - 9.113781718080853, - 12.184378765350406, - 15.117558213325927, - 19.345516718699326, - 21.91215144595837, - 23.712954701165675, - 26.171954012621416, - 27.83413805173295, - 31.432716552538373, - 34.38407078650533, - 35.18068874010219, - 35.8906729078302, - 36.57746530587575, - 37.106004940926944, - 37.55677795839702, - 37.94313649414581, - 38.26519981125153, - 38.50522325506731, - 38.77899182526624, - 38.965961424756365, - 39.05776763682573, - 39.20675834171152 - ], - "5._48._0.075": [ - 1.526846324373138, - 1.8679037053125451, - 2.162243131656477, - 2.506080869143456, - 2.8001350377881407, - 3.143355659132689, - 3.513343724143409, - 3.863757755019647, - 4.465722129177945, - 4.918540142478143, - 5.2915152255481654, - 5.905663919991869, - 6.411750494128029, - 7.917720779253673, - 9.775033709716995, - 10.40086371259062, - 11.007650385989834, - 11.638687608511198, - 12.154065399813133, - 12.61004822547783, - 13.012703612507485, - 13.355143200668001, - 13.612861645817297, - 13.90743338679334, - 14.109549916090113, - 14.209458926127063, - 14.37246499705832 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637871667, - 2.851915535372322, - 3.200342797073539, - 3.5251926984738082, - 4.009884278480034, - 4.690136222361493, - 5.393132745539894, - 6.623012930049463, - 7.579792975166616, - 8.388034213337013, - 9.723974818737096, - 10.79248999829516, - 13.589195251664995, - 16.297561659069427, - 17.078996410354087, - 17.784856452947224, - 18.47595872768239, - 19.01086352458113, - 19.46785098317784, - 19.85899347184758, - 20.183960412160467, - 20.425530530059138, - 20.699364233896432, - 20.886156576027652, - 20.978029216569716, - 21.127548939502713 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "5_8": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 20.0, - 25.0 - ], - [ - 20.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 20.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169796880664, - 3.1873534794730634, - 3.5234592165204304, - 4.037439649398013, - 4.649358934760173, - 5.648708574637505, - 7.109571346556287, - 8.710993411134073, - 11.573162445644781, - 13.656517130037733, - 15.265320501154566, - 17.639831833697883, - 19.34065042621572, - 23.208692558399527, - 26.48275820763165, - 27.375115966446995, - 28.16708714507593, - 28.93157209536664, - 29.516924953680338, - 30.015321108080705, - 30.440560867194954, - 30.79347808385193, - 31.056141369374664, - 31.35476621670158, - 31.55872934796755, - 31.65903185187721, - 31.822318965729156 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413081, - 1.8198213217004342, - 2.111467924224728, - 2.4511928331899875, - 2.7884202750752602, - 3.0450320027260367, - 3.388761992223708, - 3.6197007073565595, - 3.8071891738679358, - 4.115873758849243, - 4.368742985899526, - 5.108400335610456, - 6.043169022672622, - 6.385792147989472, - 6.744632791369369, - 7.15425906086431, - 7.525719059585773, - 7.888070779087426, - 8.241572316363436, - 8.57232019943698, - 8.841798890089446, - 9.17541610112804, - 9.420611025957959, - 9.547200481154078, - 9.761339907570013 - ], - "5._384._0.0875": [ - 3.493898468068839, - 4.034010191040128, - 4.680468869753127, - 5.742765992539775, - 7.0500267450295775, - 9.30799878242813, - 12.60112285770307, - 15.811352136615165, - 20.523757285405978, - 23.421073773783306, - 25.46500440896072, - 28.264043149975723, - 30.159728933946557, - 34.2606083630119, - 37.617321550449645, - 38.52220389238633, - 39.327613273412254, - 40.105817661967514, - 40.70375211565431, - 41.21354530824111, - 41.65004542720097, - 42.01358428609912, - 42.28449289263957, - 42.59337706010391, - 42.80437083331504, - 42.9080137625577, - 43.07635868974822 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.867903705312543, - 2.1622431316564787, - 2.506080869183797, - 2.800135144590582, - 3.1433735109691585, - 3.5136838018335066, - 3.8653688096584458, - 4.473010342445246, - 4.933320319992066, - 5.314561845764766, - 5.9465231714865405, - 6.470787330604049, - 8.047941875910423, - 10.025927373021577, - 10.702100895398004, - 11.36231114257582, - 12.053557330018563, - 12.621598671646746, - 13.126542578870398, - 13.57411553590934, - 13.955803067948017, - 14.243609706247392, - 14.572816063820792, - 14.7989496300197, - 14.910888049004296, - 15.093842639281206 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.5553235639559304, - 2.8519157790520264, - 3.2003710969054118, - 3.5255235887775442, - 4.012265313576316, - 4.700233256852584, - 5.417600744623758, - 6.687715783693874, - 7.686302805863359, - 8.536166184342932, - 9.954389508610529, - 11.10068086925204, - 14.1472630526869, - 17.15180061271071, - 18.027053698416324, - 18.819060296641883, - 19.59572419311313, - 20.196953901026735, - 20.71073585344589, - 21.150135997847652, - 21.514801635479273, - 21.78575140728141, - 22.092539196637087, - 22.30180832304909, - 22.404799371157097, - 22.572641823958858 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 20.0, - 25.0 - ], - [ - 20.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 20.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169640060091, - 3.1873381708589057, - 3.523213763575405, - 4.0349681905755475, - 4.639656997129559, - 5.616561548151482, - 7.027162733158152, - 8.563789599754857, - 11.303105434138876, - 13.295512742298353, - 14.83401959557551, - 17.105241359012958, - 18.732539920297572, - 22.43731376562952, - 25.57737967943488, - 26.433810126961887, - 27.19433836203327, - 27.928797958675542, - 28.49148781952829, - 28.970660444123826, - 29.37964729344757, - 29.719178909885034, - 29.9718884054504, - 30.25922774818942, - 30.455468756772657, - 30.551960809345836, - 30.708996610710653 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413081, - 1.8198213217004349, - 2.111467924224728, - 2.4511928331874433, - 2.788420239123043, - 3.045029672663339, - 3.3886746852358587, - 3.6192540193386087, - 3.8060396740859512, - 4.112477559299048, - 4.362399273566495, - 5.087516901906923, - 5.9929373345852195, - 6.322977311611899, - 6.667946072539996, - 7.061266183463807, - 7.417653392154295, - 7.7652267523499745, - 8.104274643786257, - 8.421554872039486, - 8.68018803943135, - 9.000680391228052, - 9.236460302845721, - 9.358255440364156, - 9.564427518369818 - ], - "5._384._0.0875": [ - 3.493550438680029, - 4.030886220951943, - 4.668885635089858, - 5.705609969000567, - 6.967206872268988, - 9.131922776905244, - 12.281614951380996, - 15.349551821897883, - 19.852310635544626, - 22.620964887254612, - 24.574652029202518, - 27.25142142257859, - 29.064983934780845, - 32.9918108468034, - 36.209106785004586, - 37.07680006049297, - 37.84932916186989, - 38.59596078732653, - 39.16983267779784, - 39.65913473723716, - 40.078171694776834, - 40.42722236248884, - 40.687331823415555, - 40.9839133865302, - 41.186488668996944, - 41.28598640105937, - 41.44756542072823 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.8679037053125411, - 2.162243131656476, - 2.5060808691716954, - 2.800135112518235, - 3.1433676797549444, - 3.5135063692068518, - 3.8641553507076254, - 4.466121973229572, - 4.918611115028991, - 5.291193105768638, - 5.904801348066732, - 6.411033895243128, - 7.9258201259759105, - 9.821992421404069, - 10.46998618179424, - 11.102933574679719, - 11.765945607720038, - 12.311081617716413, - 12.796005879526096, - 13.226177915043401, - 13.593350937467513, - 13.870413346154644, - 14.187641067662163, - 14.405678042344833, - 14.513626853219025, - 14.690045920340548 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.555323563905298, - 2.8519157057969187, - 3.2003615230884073, - 3.5253527964752047, - 4.010339434330353, - 4.690451855308411, - 5.392803687380454, - 6.622353344771257, - 7.582446686381059, - 8.397690313230635, - 9.75609845778119, - 10.853429223931121, - 13.770108676196806, - 16.64950287156861, - 17.488801079200773, - 18.249005137844247, - 18.99495238639025, - 19.572870642042208, - 20.06695326460767, - 20.489780871475194, - 20.840898548377456, - 21.101848564171764, - 21.39742425561456, - 21.599058544993184, - 21.698281691979957, - 21.859927270913108 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "5_10": { }, "6_6": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 25.0, - 5.0 - ], - [ - 25.0, - 10.0 - ], - [ - 25.0, - 15.0 - ], - [ - 25.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 25.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169468743845, - 3.187328541136331, - 3.5232973546742508, - 4.037285473798019, - 4.650773187598054, - 5.656011247463821, - 7.111557325641407, - 8.679729639166288, - 11.454089472638433, - 13.456672369857793, - 14.992302269356708, - 17.242238135894556, - 18.841664619140797, - 22.451321645273676, - 25.48673003721974, - 26.312230250817294, - 27.045138665236884, - 27.752887743661624, - 28.29539345249504, - 28.75742756155229, - 29.15201220522951, - 29.479779582755125, - 29.723774834529124, - 30.001322447109555, - 30.190869823557094, - 30.284049110027794, - 30.43561338171417 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.4511928331846304, - 2.7884201995127165, - 3.045027404703431, - 3.3886737323396856, - 3.6195007731739532, - 3.8069602332135535, - 4.1159163676137265, - 4.369441511920176, - 5.113224444269589, - 6.048364012385659, - 6.386720001084674, - 6.738780414175303, - 7.138562690073801, - 7.499700867468049, - 7.850958004130156, - 8.19259500043199, - 8.51108512499212, - 8.769505744983025, - 9.087687169192545, - 9.319810993156317, - 9.438883545021271, - 9.638893238931951 - ], - "5._384._0.0875": [ - 3.4937051969753075, - 4.033928792741086, - 4.6823771795502225, - 5.7508245991379106, - 7.052379983531947, - 9.260242597051299, - 12.445510528220082, - 15.517361802121803, - 19.966114048695744, - 22.669320658538826, - 24.56508857458745, - 27.151613753363783, - 28.898669644218153, - 32.67538767110183, - 35.768244002757335, - 36.60248368514111, - 37.34569442069563, - 38.064370131731856, - 38.61719875231895, - 39.08864891232439, - 39.49262534175092, - 39.82930268062334, - 40.08021737911107, - 40.36639145259304, - 40.5618486962162, - 40.6578337469886, - 40.81364422319609 - ], - "5._48._0.075": [ - 1.5268463243731414, - 1.8679037053125422, - 2.1622431316564774, - 2.506080869158317, - 2.800135077169687, - 3.143362736817218, - 3.513548419749404, - 3.8651275718007247, - 4.473743942775336, - 4.93631371806996, - 5.3200474228475425, - 5.954474796438185, - 6.476548333129121, - 8.023953684441862, - 9.941927849317917, - 10.59324690971856, - 11.226553199732244, - 11.886596269971816, - 12.426471058589332, - 12.904246247466688, - 13.32603624705582, - 13.684467590114192, - 13.953950357059407, - 14.261536215635536, - 14.472364238803227, - 14.57653737493926, - 14.746468228907986 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.5553235638493397, - 2.851915625308211, - 3.2003543642195624, - 3.525389916256859, - 4.012059536013691, - 4.7016850307160425, - 5.423369436761021, - 6.693785345134677, - 7.677352137315897, - 8.507263983926762, - 9.884542157589706, - 10.992651277970243, - 13.914893291809275, - 16.756930823572176, - 17.57717298240682, - 18.31723735554239, - 19.041157349266566, - 19.600822236987216, - 20.078563562510556, - 20.487069238282302, - 20.826157278113055, - 21.07810274163887, - 21.363518963152018, - 21.55816970112759, - 21.653910532997077, - 21.809774040954213 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 25.0, - 5.0 - ], - [ - 25.0, - 10.0 - ], - [ - 25.0, - 15.0 - ], - [ - 25.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 25.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169277330757, - 3.187313992704835, - 3.5232011124716904, - 4.036937002273399, - 4.648329733585166, - 5.638936764327067, - 7.04493643834443, - 8.535427176106639, - 11.15308528441717, - 13.042573501417003, - 14.493913749574839, - 16.624752590528153, - 18.142285022577344, - 21.57654341080932, - 24.472616122347326, - 25.261234661530544, - 25.961909636763732, - 26.63892785651014, - 27.15823838601437, - 27.600597838915384, - 27.97853393706775, - 28.292575297451314, - 28.526359397770037, - 28.79231829681334, - 28.97393655694377, - 29.0632053935571, - 29.208362052562503 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615422, - 1.4813847491413084, - 1.8198213217004355, - 2.111467924224729, - 2.4511928331815023, - 2.788420155434566, - 3.0450247225210116, - 3.388622083803566, - 3.619375991053414, - 3.8067639511105003, - 4.11539431547853, - 4.368104067274634, - 5.103584806807085, - 6.0115925228497264, - 6.335951322390002, - 6.671510528880292, - 7.050830425893752, - 7.392447290337593, - 7.724338296256823, - 8.047149802641504, - 8.348426186642595, - 8.593330918692942, - 8.89572680645815, - 9.117018600325517, - 9.230761081441234, - 9.422231771656486 - ], - "5._384._0.0875": [ - 3.493591644536247, - 4.033487706547931, - 4.679123517014441, - 5.729750792551487, - 6.985792024351862, - 9.080865246868019, - 12.08399624567113, - 14.98316566655498, - 19.19333611341009, - 21.756829548008543, - 23.556676732125354, - 26.01528027132925, - 27.677387132055777, - 31.275427199188275, - 34.22577896399607, - 35.02203818494102, - 35.731622151218566, - 36.417974788197796, - 36.9461242011251, - 37.39654850344506, - 37.782581449813144, - 38.10435316691838, - 38.34415408600325, - 38.61765792561234, - 38.8044452967952, - 38.896162903729724, - 39.04501456109255 - ], - "5._48._0.075": [ - 1.526846324373138, - 1.8679037053125451, - 2.162243131656477, - 2.5060808691434553, - 2.8001350378408305, - 3.143356451844396, - 3.513468566815692, - 3.8649228331160455, - 4.472308184055252, - 4.931187018343138, - 5.309141815251904, - 5.928018714662347, - 6.4320383511358425, - 7.905810723954631, - 9.718282488009558, - 10.333873602284866, - 10.933471211864235, - 11.559603248577883, - 12.072838075309468, - 12.52792202357875, - 12.930489030313, - 13.273252024391748, - 13.531339586466094, - 13.82643294788097, - 14.028935606150915, - 14.12904489072897, - 14.292370650497812 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637871663, - 2.851915535624321, - 3.2003446032338205, - 3.5253111576670784, - 4.011779685252266, - 4.699179446931815, - 5.4117620149725685, - 6.64480854518334, - 7.5847319091273215, - 8.371837604841563, - 9.672423114280445, - 10.717715665319766, - 13.480776670906474, - 16.180663284589006, - 16.961934945622318, - 17.668058280102382, - 18.359651380954464, - 18.89506948933473, - 19.352451302113497, - 19.74392613232931, - 20.069144734578952, - 20.310870469716555, - 20.584840010245394, - 20.77170901415453, - 20.863616274842556, - 21.01318672336833 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 25.0, - 5.0 - ], - [ - 25.0, - 10.0 - ], - [ - 25.0, - 15.0 - ], - [ - 25.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 25.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351690622742773, - 3.1872936610914824, - 3.5228989743438017, - 4.03420617459185, - 4.639023362350439, - 5.613012800974637, - 6.981972980302262, - 8.414653303783677, - 10.90199203645069, - 12.68955625845426, - 14.06210535004927, - 16.078563858837185, - 17.51604110650399, - 20.776236558508906, - 23.532528129531876, - 24.284008309589073, - 24.952240439528516, - 25.598322884910495, - 26.094289473549793, - 26.516858274667566, - 26.878058986860506, - 27.17831378980062, - 27.401847962498433, - 27.656185120383583, - 27.829855179593437, - 27.915204519552866, - 28.05393864109882 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004358, - 2.1114679242247285, - 2.451192833178007, - 2.7884201061001512, - 3.0450215530267113, - 3.3885113079531477, - 3.6188387366081076, - 3.8054381725949176, - 4.111767693843683, - 4.361771475104569, - 5.086079465956893, - 5.973107815972533, - 6.287593736793676, - 6.611259703328505, - 6.975242266536113, - 7.301515644593487, - 7.617490520739537, - 7.924132636478484, - 8.210007215403099, - 8.442401371196928, - 8.72966510349236, - 8.94024147625163, - 9.048607133951938, - 9.23130735464938 - ], - "5._384._0.0875": [ - 3.4931681430371886, - 4.030096459114257, - 4.668267188310008, - 5.700275373365933, - 6.922593470089278, - 8.932044022498633, - 11.7798131063589, - 14.519862321520465, - 18.500247053800454, - 20.92633420882411, - 22.631177406812174, - 24.962433208843983, - 26.539701745944427, - 29.958983637430503, - 32.76670943212331, - 33.524962192415344, - 34.20092594386722, - 34.85497960916905, - 35.358487887536036, - 35.78792595210566, - 36.15606086005758, - 36.46297398966405, - 36.69169905427459, - 36.95258186645971, - 37.130734020573925, - 37.21820092385113, - 37.36011927496209 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808691268432, - 2.800134993829261, - 3.1433485881795225, - 3.513248051544858, - 3.8635238377850563, - 4.465446257457387, - 4.9179988513442305, - 5.28962788226195, - 5.895647635611742, - 6.386555310865507, - 7.805934071735439, - 9.530808179448961, - 10.114451410592343, - 10.682862408609635, - 11.27676452580434, - 11.764045767965404, - 12.196677761503178, - 12.579938809843027, - 12.906774966113563, - 13.153196206073646, - 13.43541065966956, - 13.629289486775521, - 13.725178225787383, - 13.881642099530628 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637176743, - 2.8519154351225575, - 3.200331781773796, - 3.525098524143712, - 4.009616237951137, - 4.68982858533548, - 5.391096614080907, - 6.595053935977666, - 7.503515379152878, - 8.258431404052379, - 9.497187951088547, - 10.488606592319487, - 13.105182366254075, - 15.666576549752305, - 16.408980340893404, - 17.08105086070896, - 17.740040517656702, - 18.250889996977378, - 18.68761549826924, - 19.061780433408707, - 19.372890669903608, - 19.604225272632984, - 19.866565766172126, - 20.0455337556987, - 20.13354963955612, - 20.276736525184955 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + }, + "6_7": { + }, + "6_8": { + }, + "6_9": { + }, + "6_10": { + }, + "7_7": { + }, + "7_8": { + }, + "7_9": { + }, + "7_10": { + }, + "8_8": { + }, + "8_9": { + }, + "8_10": { + }, + "9_9": { + }, + "9_10": { + }, + "10_10": { } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json index f43088eadc..e4acdcc16b 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json @@ -2495,230 +2495,6 @@ 3.003 ] }, - "3_9": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351669577621696, - 3.1871192193948663, - 3.5211470306693697, - 4.02336604255068, - 4.60628836336792, - 5.523912866383457, - 6.760213136734797, - 7.956590163901229, - 9.819432105778855, - 11.05995752958525, - 11.98545427838731, - 13.326579632142433, - 14.279372983493419, - 16.46126917454412, - 18.340122392150413, - 18.857513172485085, - 19.321026094858162, - 19.771703928311968, - 20.119997713430003, - 20.41746459641238, - 20.672847345909574, - 20.885939200231384, - 21.044742346100286, - 21.225773073053954, - 21.34937803104648, - 21.410066534409808, - 21.508469355149458 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.4511928331436974, - 2.788419622162329, - 3.044991496174073, - 3.3877527097140216, - 3.616072639174838, - 3.799627366245218, - 4.098018552360387, - 4.3390099497383785, - 5.025552976740104, - 5.837945155776155, - 6.114099123929642, - 6.389280272342354, - 6.6867306530111055, - 6.942267587451403, - 7.180351572238294, - 7.40347541069168, - 7.60559168511433, - 7.766677914663693, - 7.963375247426486, - 8.107018417548758, - 8.18101038862801, - 8.306512809245605 - ], - "5._384._0.0875": [ - 3.4908602490936977, - 4.017007496165365, - 4.630377103453764, - 5.599067480275178, - 6.70032660247752, - 8.35524601949385, - 10.434272224348543, - 12.2935770843603, - 14.91772198376539, - 16.510933928414367, - 17.634825177379554, - 19.182817529672814, - 20.236971206161233, - 22.550546165298055, - 24.47465480335149, - 24.99730039704932, - 25.464896502276243, - 25.918732306482163, - 26.269434091571167, - 26.56878673298677, - 26.825984251804606, - 27.040815674123948, - 27.200936869339575, - 27.383691744447713, - 27.50842186302485, - 27.5696035749351, - 27.668680941175065 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.5060808689637457, - 2.8001345620605456, - 3.1432765700009018, - 3.5119001576045195, - 3.857403682102798, - 4.440881469960598, - 4.8721924094834295, - 5.222028321048053, - 5.782828895553719, - 6.225798758669292, - 7.425840338700072, - 8.724013100036528, - 9.135752727922855, - 9.528490688549844, - 9.933464739651592, - 10.263667427036491, - 10.556838647168476, - 10.817606684755376, - 11.041602203495012, - 11.211858080978587, - 11.40907667877819, - 11.54576081668215, - 11.613627138534445, - 11.724663505950113 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235630354036, - 2.851914450027435, - 3.2002177206514735, - 3.5237862369387165, - 4.0007506714049255, - 4.656968959726396, - 5.31986947286768, - 6.4212044289907, - 7.207476863281739, - 7.825826031365544, - 8.778357372416602, - 9.49844624755691, - 11.30081619087679, - 13.023197356809609, - 13.52328497336397, - 13.979736533912572, - 14.43072918196657, - 14.783708895205342, - 15.087442699269227, - 15.349783364263514, - 15.569559871964136, - 15.733677296211455, - 15.920844953108404, - 16.0488366495202, - 16.1117947889488, - 16.21403628043169 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, "2_9": { "bore_locations": [ [ @@ -2939,7 +2715,7 @@ 3.003 ] }, - "3_10": { + "4_4": { "bore_locations": [ [ 0.0, @@ -2954,16 +2730,8 @@ 0.0 ], [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 + 15.0, + 0.0 ], [ 0.0, @@ -2971,4418 +2739,158 @@ ], [ 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 + 5.0 ], [ 0.0, - 40.0 + 10.0 ] ], "g": { "5._192._0.08": [ - 2.835167454129701, - 3.1871584837082287, - 3.5214678757879274, - 4.0246906994428056, - 4.609300730087367, - 5.530857493084977, - 6.776076487946665, - 7.986387348058947, - 9.88438387168039, - 11.159683629046175, - 12.117857924063628, - 13.516754350616424, - 14.518103853507546, - 16.830571133408437, - 18.838423848430946, - 19.393254801324463, - 19.890505955108704, - 20.374137504912817, - 20.747807392373403, - 21.0669791046511, - 21.34089097944372, - 21.569343968438073, - 21.739583999785125, - 21.93358612745975, - 22.066064520631976, - 22.131128849871427, - 22.23668481394341 + 2.835163554103729, + 3.1868499795100256, + 3.5189471871417144, + 4.014291734689392, + 4.585729983426826, + 5.4783782331097886, + 6.664875308975525, + 7.78095954436287, + 9.422622271115944, + 10.444946568635388, + 11.174586733117547, + 12.190679309604377, + 12.887629509317616, + 14.432466371861755, + 15.72804732473775, + 16.081392778821243, + 16.398108012781965, + 16.706154923196785, + 16.94478515960347, + 17.148634374775696, + 17.324044660244187, + 17.470751596521854, + 17.580134119683894, + 17.70503746479188, + 17.790288291349594, + 17.832098064054087, + 17.899737843068284 ], "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224729, - 2.4511928331517985, - 2.7884197363920875, - 3.044998511819465, - 3.387906687675393, - 3.6165337931054964, - 3.8004454261456067, - 4.099554863096034, - 4.341232439464502, - 5.030411000079716, - 5.847869653342818, - 6.126433777726494, - 6.404505138126816, - 6.705725146402364, - 6.965171899795342, - 7.207579863800311, - 7.435530249090228, - 7.642861295131238, - 7.80884955265691, - 8.012726093104382, - 8.162769621536277, - 8.240583045591793, - 8.373650538410176 + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.111467924224727, + 2.4511928330881467, + 2.788418838872571, + 3.04494338890382, + 3.3866968888704605, + 3.612910916227809, + 3.7940199256554292, + 4.0874967512700415, + 4.323817801662154, + 4.993223862336138, + 5.776939636452273, + 6.0398329147115115, + 6.298516420435058, + 6.573466422852641, + 6.804579954700581, + 7.014876393828088, + 7.206675627757325, + 7.375307882595491, + 7.505754432240141, + 7.659723925184936, + 7.76791724765261, + 7.822040894389363, + 7.911051827069974 ], "5._384._0.0875": [ - 3.4912645759759484, - 4.0185330887929505, - 4.63376446953033, - 5.606875532603709, - 6.716262465218269, - 8.391874737023697, - 10.514995818749405, - 12.435047126270183, - 15.181402287320804, - 16.86819307188208, - 18.065302166387415, - 19.721324543663748, - 20.8528397911843, - 23.341161026389962, - 25.412567023281664, - 25.97530214407684, - 26.478483211028824, - 26.966637255733467, - 27.34358649440391, - 27.665295776030437, - 27.941558905603124, - 28.17220512886178, - 28.344099563386887, - 28.54023995420296, - 28.674115971567243, - 28.739796875909388, - 28.846204926709486 + 3.4880902775716516, + 4.0065619525134215, + 4.607298279466111, + 5.548353958156116, + 6.604415106939941, + 8.13860019568434, + 9.938536968136697, + 11.427377002248585, + 13.383231984894984, + 14.512099196220316, + 15.29057972183952, + 16.347765426714993, + 17.06050692000972, + 18.619290778574012, + 19.916053673254428, + 20.2686496512593, + 20.584999002677907, + 20.892732872471324, + 21.13131773958098, + 21.335112938000275, + 21.510606445342315, + 21.65749717959913, + 21.767018104919572, + 21.892162864981678, + 21.977544756334243, + 22.019389460008043, + 22.08703090750865 ], "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125465, - 2.1622431316564765, - 2.5060808690022545, - 2.80013466397959, - 3.143293177931288, - 3.5121559747719404, - 3.858264019099561, - 4.443276818182665, - 4.8760795374602806, - 5.227406772123178, - 5.791310616768037, - 6.2374761000007615, - 7.450650717422912, - 8.77281753090204, - 9.19527316848672, - 9.59995837871229, - 10.019266711625836, - 10.362911151929609, - 10.669468274290875, - 10.94339488249301, - 11.179706462549138, - 11.359998313183626, - 11.569567952269619, - 11.715332133121715, - 11.787898316752585, - 11.906933201187522 + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656476, + 2.506080868699681, + 2.800133863187092, + 3.1431626871705314, + 3.5101461072512348, + 3.8515072619323156, + 4.424504911378015, + 4.845886343624489, + 5.186331552272661, + 5.729058529452128, + 6.1543553311536385, + 7.279215244517337, + 8.425007491615851, + 8.768101772829569, + 9.08648777576615, + 9.405485053350356, + 9.65874977692766, + 9.87854736747751, + 10.070275097983433, + 10.232270081471812, + 10.353782216544758, + 10.493043905742333, + 10.588509080770054, + 10.635513887026178, + 10.711792810255785 ], "5._96._0.075": [ - 2.209271810327406, - 2.5553235631964957, - 2.851914682493342, - 3.2002437486537114, - 3.524036839960491, - 4.001890015440178, - 4.65998161597706, - 5.325543473087268, - 6.433890156879147, - 7.2277501693345005, - 7.8539322518464605, - 8.82237574767482, - 9.558081695953819, - 11.415676069996847, - 13.21654969075376, - 13.744560693203347, - 14.228170888259095, - 14.70754578225552, - 15.083645233779155, - 15.40789659993502, - 15.688303032854796, - 15.923405203398387, - 16.09908599157253, - 16.299489082333572, - 16.436620329658822, - 16.504121673804857, - 16.613836125067724 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_10": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351669577621887, - 3.187119219509302, - 3.521146901725514, - 4.0232969049947265, - 4.605020627809571, - 5.514340513841544, - 6.726877275282211, - 7.8921298587691116, - 9.701330443375044, - 10.907187514953236, - 11.808905225300558, - 13.1200566355876, - 14.055370017370823, - 16.209317491258144, - 18.075905638541528, - 18.5913961340587, - 19.053630937929825, - 19.5033864075882, - 19.851141109592582, - 20.148236718209006, - 20.403353360604523, - 20.616248966334116, - 20.774917313569585, - 20.95579515727327, - 21.079304347573146, - 21.139950545512576, - 21.23829257400556 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.4511928331436974, - 2.78841962216233, - 3.0449914961743447, - 3.3877527036478456, - 3.6160713135866716, - 3.7996120364040933, - 4.097832974846676, - 4.338328673821448, - 5.019982642854625, - 5.818427922248824, - 6.088119631180642, - 6.356306759200354, - 6.6457038069872265, - 6.89407484257732, - 7.125376887279729, - 7.342203737080431, - 7.538812842780145, - 7.695771660682166, - 7.88798618730781, - 8.028966701838211, - 8.101873982390954, - 8.226171196960308 - ], - "5._384._0.0875": [ - 3.490863380997827, - 4.016903423296357, - 4.628653990401495, - 5.587437160221426, - 6.667016626125836, - 8.27829920537412, - 10.297005834613547, - 12.106193907207574, - 14.674217480693907, - 16.2431594510763, - 17.354060339892516, - 18.888920278994842, - 19.936749899092774, - 22.241737718147327, - 24.16211255960555, - 24.684077082877714, - 25.151083980635715, - 25.604369463133498, - 25.954632376000323, - 26.253610384170077, - 26.51046778843936, - 26.724997299442535, - 26.884888448159067, - 27.067366271118225, - 27.191905970055284, - 27.252995550018444, - 27.35192865952233 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.5060808689637466, - 2.800134562060546, - 3.1432765700092626, - 3.5119001103111995, - 3.857390269752563, - 4.440194993117297, - 4.86925357889055, - 5.215639849243575, - 5.7679927005232345, - 6.202073865457495, - 7.3719705733840595, - 8.63341344413291, - 9.033876416210582, - 9.416375044812213, - 9.811615512242199, - 10.134753579622966, - 10.42244477486815, - 10.679103821348756, - 10.90024331848022, - 11.068793543096524, - 11.264610027367295, - 11.4007018782669, - 11.468399196382867, - 11.579351496477585 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235630354036, - 2.851914450027435, - 3.200217720681533, - 3.5237861974885587, - 4.000711167852405, - 4.655665255980722, - 5.313213257703904, - 6.395688641557916, - 7.163034986597039, - 7.764682257379073, - 8.690054380778047, - 9.389414690111023, - 11.143841673849362, - 12.832197043497489, - 13.32523828290522, - 13.776439800561162, - 14.223355461574988, - 14.573917792488018, - 14.876071998107493, - 15.137422083383003, - 15.356622108704888, - 15.520438634607439, - 15.707391208874618, - 15.835313712711088, - 15.898264566107825, - 16.00052970862282 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_11": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351678741331416, - 3.1871917073904976, - 3.5217393670030654, - 4.025811834209314, - 4.61185145346065, - 5.536743360242066, - 6.789542341122194, - 8.011729485679748, - 9.939738806301849, - 11.244707604031843, - 12.230987907083597, - 13.680372643739338, - 14.725003129852778, - 17.157161602128337, - 19.287201729614353, - 19.87804167600836, - 20.40787756607065, - 20.923440962465882, - 21.321741826931625, - 21.66200968750078, - 21.953937446499427, - 22.197325624921714, - 22.378688170059363, - 22.58530141755295, - 22.726411788492538, - 22.795736443438333, - 22.90826584095707 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.451192833158652, - 2.7884198330480343, - 3.0450044481351597, - 3.3880369775325154, - 3.6169240140650465, - 3.801137691602652, - 4.100855150928281, - 4.343113839875867, - 5.034526696587013, - 5.856287217871987, - 6.136899265884839, - 6.417428656952204, - 6.721857025243772, - 6.984630194345474, - 7.23071235848738, - 7.46275719002306, - 7.674511378569264, - 7.8446699828722855, - 8.054712619525981, - 8.210358583780817, - 8.291587223939551, - 8.431619002872456 - ], - "5._384._0.0875": [ - 3.491606771885647, - 4.019824449617858, - 4.636633113287707, - 5.61349455470441, - 6.729789705763077, - 8.423058548014243, - 10.583831426204243, - 12.555968050305024, - 15.410040185415141, - 17.18200744157122, - 18.447071309317913, - 20.205001436392507, - 21.410487090904954, - 24.06780668046849, - 26.282874150497122, - 26.884818186786053, - 27.422788888358625, - 27.944482837271533, - 28.347056347435487, - 28.690587807299142, - 28.98544341895138, - 29.2314980273851, - 29.414861315298122, - 29.62403420935126, - 29.766816328304078, - 29.836880249369354, - 29.9504360014852 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.50608086903484, - 2.800134750218782, - 3.1433072307989622, - 3.512372439063419, - 3.8589920857149025, - 4.4453047760115725, - 4.879371618902787, - 5.23196323584666, - 5.798500491024492, - 6.247379900779494, - 7.4717419756868635, - 8.814358846884131, - 9.245910892593974, - 9.660783362313682, - 10.09240025167498, - 10.44772275347916, - 10.766053163515114, - 11.051720761152096, - 11.299188128648552, - 11.488699636440465, - 11.709786713989828, - 11.864150883366914, - 11.941216666140301, - 12.067989933376893 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235633328053, - 2.8519148791952595, - 3.2002657723579064, - 3.5242488922071926, - 4.0028542596577426, - 4.662532630128178, - 5.33035089057214, - 6.444652886822788, - 7.2449674930355465, - 7.877820770788682, - 8.859828179799573, - 9.6088238966732, - 11.513688106994872, - 13.38364933869384, - 13.936973613878394, - 14.445506463412741, - 14.951257674338889, - 15.34908280236185, - 15.692785854906933, - 15.990442200279887, - 16.240261245730615, - 16.427093023349375, - 16.640300820867427, - 16.78630367025977, - 16.858227068624824, - 16.9752356028089 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_11": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835167454129719, - 3.187158483813128, - 3.5214677575876605, - 4.0246273140428315, - 4.608138105212504, - 5.522071295895397, - 6.74542274945158, - 7.926971627658013, - 9.774761656051242, - 11.016708107712233, - 11.951384510508705, - 13.319732777771177, - 14.302673594943704, - 16.584503349015957, - 18.578306976099583, - 19.130913453415328, - 19.626672643096992, - 20.109233695362057, - 20.482288880925687, - 20.801045350377546, - 21.0746688816946, - 21.302916726202742, - 21.47301929197932, - 21.66686924209714, - 21.79925491507697, - 21.86427941628215, - 21.969779829957652 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224729, - 2.451192833151798, - 2.788419736392089, - 3.044998511819715, - 3.387906682114709, - 3.616532577978255, - 3.800431373625177, - 4.099384735004829, - 4.340607827287072, - 5.025300106505326, - 5.829938745668311, - 6.1025537237961, - 6.374177047639868, - 6.667954503951291, - 6.920752110899156, - 7.156829349879641, - 7.378844201479002, - 7.580909455638342, - 7.742879549753364, - 7.942276861935414, - 8.089560444430406, - 8.166211049175363, - 8.297930459210018 - ], - "5._384._0.0875": [ - 3.4912674475529353, - 4.018437667505849, - 4.632184049842234, - 5.596198228877934, - 6.685633060651696, - 8.32085949998215, - 10.387190188885407, - 12.258235261873592, - 14.946753558400102, - 16.60726950649036, - 17.789921286367562, - 19.431013384814044, - 20.555227171752755, - 23.03359015194537, - 25.100762484662347, - 25.662752095471788, - 26.165303180899013, - 26.652880012015526, - 27.029375453190642, - 27.350699908842376, - 27.626615302168826, - 27.856953530651513, - 28.028613513965215, - 28.224471372433413, - 28.35815347149541, - 28.423740716893874, - 28.530002442224266 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125465, - 2.1622431316564765, - 2.5060808690022554, - 2.8001346639795908, - 3.143293177938948, - 3.512155931419268, - 3.8582517236720517, - 4.44264732426878, - 4.873384133628915, - 5.221545928065523, - 5.777690876577834, - 6.215682789317408, - 7.401021411888834, - 8.688844580970171, - 9.100513174771399, - 9.495237801351028, - 9.904881829957018, - 10.241347098830092, - 10.542207830577281, - 10.811760324528674, - 11.044955730681313, - 11.223342669474365, - 11.431303801961906, - 11.576365744071424, - 11.648722584905002, - 11.767635263359383 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.5553235631964966, - 2.8519146824933417, - 3.2002437486812694, - 3.5240368037974847, - 4.0018537996917765, - 4.65878596885295, - 5.319435822542893, - 6.410442314232591, - 7.186856791773549, - 7.797594604615191, - 8.74075053195589, - 9.456917176674107, - 11.267895117032854, - 13.033587563891237, - 13.553966516207126, - 14.031770847838109, - 14.506546375350446, - 14.879868905422262, - 15.202282524823799, - 15.481522605435174, - 15.715939650311661, - 15.89126198393698, - 16.091410364539122, - 16.2284598240918, - 16.29595240528854, - 16.405694698894415 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_12": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351682341361863, - 3.1872201848561565, - 3.5219720787815443, - 4.026773004812806, - 4.61403910035276, - 5.541795439613283, - 6.801115957977639, - 8.033545552816934, - 9.987535427774501, - 11.318178936169785, - 12.3288894883573, - 13.822660341886792, - 14.905946464669855, - 17.447708483768967, - 19.693266262067905, - 20.318697252544123, - 20.87998051270889, - 21.426477169856, - 21.848690559953017, - 22.2094730289527, - 22.518931430818498, - 22.776855577456963, - 22.969047224329973, - 23.187936904987858, - 23.337455679994207, - 23.41093400098075, - 23.530271282610872 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.4511928331645296, - 2.7884199158959904, - 3.0450095364060195, - 3.388148655145984, - 3.617258499232581, - 3.801731106447129, - 4.101969926056587, - 4.344727076156801, - 5.038058134557414, - 5.863516839614962, - 6.145890495005291, - 6.42853606995575, - 6.735729323045801, - 7.0013710008572, - 7.250622058963642, - 7.486196059545615, - 7.701760335556686, - 7.875514033015424, - 8.090900281234134, - 8.25146704004213, - 8.335747267112287, - 8.482176137896781 - ], - "5._384._0.0875": [ - 3.4919001360605413, - 4.0209316768505206, - 4.639093711419913, - 5.619176929248488, - 6.741415962779232, - 8.449927780167904, - 10.6433191168619, - 12.660663720665394, - 15.610087912966392, - 17.45954381377242, - 18.78755212130333, - 20.641391636203107, - 21.917458191371477, - 24.738018727751488, - 27.09319130454492, - 27.733499748733685, - 28.305504772787447, - 28.86000459780442, - 29.287617670041175, - 29.652470783551085, - 29.965476702754884, - 30.226560409569366, - 30.421108603885653, - 30.6429848642909, - 30.79444961642539, - 30.868788338951045, - 30.98932144723895 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.162243131656475, - 2.506080869062772, - 2.800134824138089, - 3.1433192761166673, - 3.5125579825195437, - 3.859616207868321, - 4.447043846670277, - 4.882195574242562, - 5.235872769625174, - 5.80467276839032, - 6.25588567647491, - 7.489891724448332, - 8.85018935477045, - 9.289583966445159, - 9.713258080685339, - 10.15555227904419, - 10.52108659690057, - 10.849808488081612, - 11.14596381000651, - 11.403529601209474, - 11.60149659380285, - 11.833301203833958, - 11.995796060877213, - 12.077164230749249, - 12.211420325426682 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.55532356344964, - 2.8519150477969055, - 3.200284649825948, - 3.5244306538556405, - 4.003680888885314, - 4.6647205597737225, - 5.334476166946783, - 6.453899052319468, - 7.259771353917963, - 7.898376461592159, - 8.892101515935247, - 9.652578420104126, - 11.598425425115058, - 13.529436672794525, - 14.105696142560115, - 14.637067088936602, - 15.167280691988545, - 15.585480217183534, - 15.947590965573905, - 16.26169569992211, - 16.525635410641986, - 16.723217319144254, - 16.948816421495916, - 17.103436653288664, - 17.179668122912773, - 17.303804054296318 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_12": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351678741331576, - 3.1871917074873277, - 3.5217392578937634, - 4.025753317338663, - 4.610777843983028, - 5.528623994965942, - 6.761171348130169, - 7.956625875286063, - 9.837551675512806, - 11.110658408207424, - 12.074026299456028, - 13.492839816331548, - 14.518506775620365, - 16.917884501769052, - 19.03219502886354, - 19.62048355508299, - 20.148605675067692, - 20.662941142926936, - 21.06054497486548, - 21.400349009134363, - 21.691963137794982, - 21.935135481468567, - 22.116356940496452, - 22.322818133670143, - 22.463838597421148, - 22.533125834077403, - 22.645604869521765 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.451192833158652, - 2.788419833048034, - 3.045004448135391, - 3.3880369723995614, - 3.6169228924054173, - 3.8011247199156264, - 4.100698097607014, - 4.342537189440759, - 5.029805230893702, - 5.839704187348727, - 6.114804760333697, - 6.389353389906559, - 6.686865778829983, - 6.943443655578649, - 7.183605256400474, - 7.410065232222761, - 7.616817098971765, - 7.783108624749228, - 7.988751071626907, - 8.141599975995582, - 8.22161373073458, - 8.360179457252537 - ], - "5._384._0.0875": [ - 3.491609423091567, - 4.0197363518995735, - 4.635173561356354, - 5.603625921883726, - 6.701441660869634, - 8.357126786223885, - 10.464431414188807, - 12.389168646495014, - 15.184767712174684, - 16.92895036318572, - 18.17831083468347, - 19.919665758763426, - 21.116905318688808, - 23.762880327872615, - 25.973191562180556, - 26.57432148473419, - 27.111620034685686, - 27.632709843485525, - 28.034815637446762, - 28.37795331495283, - 28.672455106949894, - 28.91819726372546, - 29.10132301146982, - 29.31020958141723, - 29.452795502834096, - 29.52276484941692, - 29.636173189465303 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.5060808690348386, - 2.8001347502187834, - 3.1433072308060326, - 3.51237239904521, - 3.858980735485603, - 4.444723530082057, - 4.876882400363041, - 5.226549516438686, - 5.785912857804516, - 6.227227382758531, - 7.4257342345975035, - 8.736177669060062, - 9.157478551042818, - 9.562764463439349, - 9.984930518690641, - 10.333093869743138, - 10.645631577561883, - 10.926754662510048, - 11.170909700740777, - 11.358350843786702, - 11.577643356156504, - 11.731198489608316, - 11.808013699964107, - 11.934623126318721 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235633328044, - 2.8519148791952604, - 3.2002657723833434, - 3.52424885882567, - 4.002820826487561, - 4.661428498376374, - 5.324708273134294, - 6.422962983864601, - 7.207098161237444, - 7.8255919828068485, - 8.783973363900605, - 9.514569631089959, - 11.374537667365383, - 13.208851924500673, - 13.754105578962186, - 14.256379994843266, - 14.757074793804133, - 15.151790411240222, - 15.493406479186575, - 15.789720110827737, - 16.03874095219093, - 16.22515258594342, - 16.438061326386528, - 16.583966822078576, - 16.655878576517296, - 16.7729171177615 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_13": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351685461388927, - 3.1872448653441046, - 3.5221737660732186, - 4.027606167167979, - 4.6159360416819775, - 5.546179181510908, - 6.811169991189717, - 8.052522999579862, - 10.029240466256997, - 11.382364567550246, - 12.414521697807157, - 13.947567959089126, - 15.065482318090602, - 17.70759527386855, - 20.062193206680924, - 20.720814828360822, - 21.3124233069419, - 21.888874054922834, - 22.334303567411954, - 22.715041861218047, - 23.04156945294677, - 23.313653298181954, - 23.516398775199654, - 23.747252496773818, - 23.904971709589645, - 23.982504760422678, - 24.108496758270405 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.45119283316962, - 2.788419987697553, - 3.045013946240959, - 3.388245442853828, - 3.617548393888841, - 3.802245432504758, - 4.102936245744797, - 4.34612566789047, - 5.04112147882202, - 5.869793415313971, - 6.153698471354012, - 6.438185054346314, - 6.747785850987888, - 7.015927544794118, - 7.267942526037185, - 7.506595602204305, - 7.725483428585173, - 7.902373241355298, - 8.122433191363074, - 8.287342262425593, - 8.374352165138335, - 8.526648654156174 - ], - "5._384._0.0875": [ - 3.492154424890663, - 4.021891532619119, - 4.641227545447945, - 5.624108332001989, - 6.751515633210542, - 8.473318826192548, - 10.695278311080873, - 12.75229381212482, - 15.786553433828697, - 17.70653805006514, - 19.09278070483636, - 21.036722350960282, - 22.380012739791738, - 25.358065679205374, - 27.849852811109574, - 28.527711560940038, - 29.13303009168784, - 29.71964039120903, - 30.17174217323906, - 30.557446380556993, - 30.88818787991048, - 31.163945523530966, - 31.369412867096276, - 31.603684631882683, - 31.763623110835077, - 31.842135523773173, - 31.969486925612483 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.506080869086976, - 2.8001348882014883, - 3.14332971539392, - 3.5127187888155733, - 3.8601571623129454, - 4.448551654646004, - 4.884644624716241, - 5.239264017211789, - 5.810029201916975, - 6.263269922954902, - 7.505674815431089, - 8.881424657742551, - 9.32766672294887, - 9.759034183962633, - 10.21068288001661, - 10.58521058689482, - 10.923146493753949, - 11.228691199057545, - 11.495401965793173, - 11.701116987803164, - 11.942878988816414, - 12.113048300331869, - 12.19852502289099, - 12.340012273409686 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323563550897, - 2.8519151939183285, - 3.200301010303692, - 3.52458818254394, - 4.004397401090195, - 4.666617771249373, - 5.338054870075119, - 6.46192809582201, - 7.272635945248816, - 7.916251480561789, - 8.920205253034062, - 9.690715718610734, - 11.672493960170277, - 13.657715347432005, - 14.254764770327146, - 14.807052185621306, - 15.359921944490925, - 15.797198142197464, - 16.17670078854886, - 16.506469036489793, - 16.78394530740715, - 16.99188639721356, - 17.229477805692934, - 17.39247268050962, - 17.47290423943685, - 17.604011161187714 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_13": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835168234136201, - 3.1872201849460726, - 3.521971977464689, - 4.026718661930892, - 4.613041844979526, - 5.534248831888043, - 6.774711380578028, - 7.982170404632557, - 9.89186562151651, - 11.192151101284463, - 12.180691726796226, - 13.644241526224878, - 14.708305148029291, - 17.215650432149893, - 19.44392748367683, - 20.06648291048884, - 20.625825831554113, - 21.170929639179448, - 21.59235757273737, - 21.952623227233296, - 22.261739613928746, - 22.519435273758592, - 22.711481115725537, - 22.930218067695836, - 23.079649345263526, - 23.15309250069872, - 23.2723844081787 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.4511928331645296, - 2.7884199158959895, - 3.045009536406233, - 3.3881486503796587, - 3.6172574576885386, - 3.8017190612059335, - 4.101824081272921, - 4.344191547098699, - 5.0336709543435525, - 5.848093239728237, - 6.125333157276462, - 6.402402218852352, - 6.703136929686439, - 6.962980990005347, - 7.206676865625543, - 7.436989493874265, - 7.647810989055769, - 7.817864602279802, - 8.02897415641652, - 8.186751447058352, - 8.269787011643649, - 8.414656552414385 - ], - "5._384._0.0875": [ - 3.4919025983081817, - 4.020849858666288, - 4.637737853333216, - 5.6100031054361095, - 6.7150330886968685, - 8.388399910455584, - 10.53134553223759, - 12.503106074424664, - 15.39419988933246, - 17.214800200182253, - 18.526079547544565, - 20.361873106004168, - 21.628796637358604, - 24.43662837367198, - 26.786501368541312, - 27.425922549489613, - 27.997211236185798, - 28.55107920478627, - 28.978210956139886, - 29.342661954279475, - 29.655308931825022, - 29.91607683510037, - 30.110385314391067, - 30.331972664729808, - 30.483239821467315, - 30.557483499021416, - 30.677868825417097 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.162243131656475, - 2.506080869062771, - 2.8001348241380923, - 3.143319276123234, - 3.512557945359495, - 3.8596056678890003, - 4.446503979268546, - 4.879883238435726, - 5.230842789668421, - 5.792971845289168, - 6.237144220400357, - 7.44701288345285, - 8.77707290508762, - 9.206744670482216, - 9.621240695757827, - 10.05437638827948, - 10.41286105099645, - 10.735783690480044, - 11.02730218745409, - 11.281417382433986, - 11.477182250939485, - 11.707029733187849, - 11.868614399610378, - 11.949690884874297, - 12.083739140944088 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.55532356344964, - 2.8519150477969046, - 3.2002846498495665, - 3.524430622858288, - 4.003649841212799, - 4.663694930265451, - 5.329232780098832, - 6.433721924354847, - 7.224509813044471, - 7.849698787646684, - 8.821263553206336, - 9.564387773780043, - 11.467194349702078, - 13.362599509869813, - 13.930481201618715, - 14.455240596470123, - 14.98001019550339, - 15.39480052887088, - 15.754589195345146, - 16.06717810365795, - 16.330204463746572, - 16.52730150703553, - 16.75255318351304, - 16.907057845878732, - 16.983273512370204, - 17.107439759176636 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_14": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 65.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835168546138908, - 3.187244865428026, - 3.522173671509946, - 4.027555442462614, - 4.615005001104358, - 5.5391298520156145, - 6.7864769763866235, - 8.004403996685221, - 9.93931298345918, - 11.26351689756089, - 12.274309230095339, - 13.777721265494574, - 14.876378226777838, - 17.482888852716542, - 19.81880138324513, - 20.474230945321693, - 21.063670983430963, - 21.638558493435433, - 22.083108872161525, - 22.463273323970526, - 22.789427510942545, - 23.061268213183496, - 23.26386201677552, - 23.494561437261552, - 23.652195074754932, - 23.729695008960284, - 23.855646342136342 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.4511928331696207, - 2.788419987697553, - 3.0450139462411587, - 3.388245438405242, - 3.617547421778682, - 3.8022341901961343, - 4.102800116215815, - 4.3456257858071785, - 5.037024379194844, - 5.855377732496238, - 6.134478369967986, - 6.413741577241316, - 6.717284704813254, - 6.979979056297518, - 7.226763448912968, - 7.460447935628614, - 7.674837004602238, - 7.848194641010417, - 8.064123915233791, - 8.226282296715464, - 8.312035862753138, - 8.462702912881488 - ], - "5._384._0.0875": [ - 3.4921567233230704, - 4.021815158333047, - 4.63996162479259, - 5.615537920262872, - 6.72684319879988, - 8.415643607647143, - 10.589879431024242, - 12.603164410340973, - 15.579771276211332, - 17.470202155110314, - 18.83889940299629, - 20.763508422598612, - 22.09681824352043, - 25.06077707387853, - 27.546703442315025, - 28.22359717594577, - 28.8281528277934, - 29.414102294782246, - 29.86570901320916, - 30.251002995198338, - 30.581381009914917, - 30.85682025390648, - 31.06204635222706, - 31.29602750142242, - 31.455767639393656, - 31.534184868839347, - 31.66138865530426 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.5060808690869747, - 2.8001348882014887, - 3.1433297154000495, - 3.512718754132632, - 3.8601473246100726, - 4.448047665901439, - 4.8824857012235485, - 5.234566977531048, - 5.799098292426393, - 6.245754882632847, - 7.465526568157496, - 8.812761650713139, - 9.249777483558653, - 9.672375258555792, - 10.1151928934694, - 10.48283530019693, - 10.8150288621395, - 11.11590576294921, - 11.37907746247418, - 11.582490203444548, - 11.822157248726997, - 11.991322710310255, - 12.076467593021968, - 12.217701618329773 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323563550897, - 2.851915193918329, - 3.2003010103257385, - 3.524588153612896, - 4.004368421170581, - 4.665660222222207, - 5.333157954770644, - 6.44306651330995, - 7.239646323376501, - 7.870673197242918, - 8.853764164398013, - 9.607868793987096, - 11.548454381317718, - 13.498463826880856, - 14.086940879591737, - 14.632354425976466, - 15.179461620371459, - 15.613065093488553, - 15.990028577148678, - 16.318114411981863, - 16.594562339591565, - 16.80195191612812, - 17.03914424633164, - 17.202003018334416, - 17.282413468946555, - 17.41354933718174 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_15": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 70.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 65.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83516881914134, - 3.187266460863217, - 3.5223501566563837, - 4.02828773860383, - 4.616723541572965, - 5.543405444950552, - 6.796795485394891, - 8.023931107554192, - 9.98111829088294, - 11.326536132690185, - 12.35713527228523, - 13.896253835739666, - 15.026172591190427, - 17.72381600886726, - 20.16127593229724, - 20.848213351792094, - 21.46664562871368, - 22.070351375212535, - 22.53734210718394, - 22.93686226738796, - 23.279610314860516, - 23.565237634129357, - 23.778118774233008, - 24.02048687937206, - 24.18612809560658, - 24.26759243678744, - 24.400060605909726 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004344, - 2.111467924224728, - 2.451192833174074, - 2.7884200505239205, - 3.0450178048468683, - 3.3883301282649443, - 3.6178011460792097, - 3.8026849533563283, - 4.103654285771049, - 4.346881096732758, - 5.039961013644245, - 5.86176233788482, - 6.142496165275835, - 6.4236867224990615, - 6.72969926172745, - 6.994902651163049, - 7.244409127997932, - 7.481069571513017, - 7.698612025875505, - 7.8748944343970635, - 8.095101826896059, - 8.261171902657265, - 8.349374770306408, - 8.5053705623316 - ], - "5._384._0.0875": [ - 3.492379113054875, - 4.022659994008272, - 4.641908480590049, - 5.620386928163562, - 6.737200634436749, - 8.439589351882644, - 10.641515732177345, - 12.691742809322196, - 15.745263372714717, - 17.699576724634017, - 19.12149886356291, - 21.129542805662105, - 22.526009948227344, - 25.640412417444786, - 28.258943458522563, - 28.972516998341266, - 29.609646190113676, - 30.227014059980668, - 30.70257441996411, - 31.108267400295787, - 31.455986532501246, - 31.745764059934547, - 31.96165876967092, - 32.207745589116165, - 32.37576336279339, - 32.45825966558736, - 32.59213339426117 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125465, - 2.162243131656477, - 2.506080869108157, - 2.8001349442569663, - 3.1433388497687162, - 3.512859463307769, - 3.8606213112923995, - 4.4493988723186915, - 4.8847641797839465, - 5.237828196861599, - 5.80446553873384, - 6.253301477261929, - 7.481781283497604, - 8.84417873116836, - 9.287690892345292, - 9.717470935435566, - 10.168894354790822, - 10.544708466930862, - 10.885213615154857, - 11.194537649319912, - 11.4659538786546, - 11.676393715560016, - 11.925188673096429, - 12.101502760510533, - 12.19052771002058, - 12.33869883826987 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235636394973, - 2.851915321774576, - 3.2003153257465375, - 3.5247259944905247, - 4.004997255219886, - 4.667380653726733, - 5.336595483600339, - 6.45125843525715, - 7.252926248127258, - 7.889088423646772, - 8.882342096433778, - 9.646149875839265, - 11.62030589269022, - 13.619336162346876, - 14.22658055858221, - 14.790971822981716, - 15.358793086122319, - 15.81001091042384, - 16.20318798737779, - 16.54601447273196, - 16.835314444901474, - 17.052613703668207, - 17.301357364442776, - 17.472335207282466, - 17.556836503686768, - 17.69479280459267 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_16": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 75.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 65.0 - ], - [ - 0.0, - 70.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351690600258754, - 3.1872855156694264, - 3.5225058810587466, - 4.028933969993391, - 4.618240504790082, - 5.547181674874335, - 6.805918404868441, - 8.041217524244624, - 10.01823096563399, - 11.382593168942035, - 12.430934713923296, - 14.00220267280871, - 15.160467394694034, - 17.94194977648574, - 20.475137363463705, - 21.19224700695376, - 21.838586648787874, - 22.47016314213427, - 22.95892925623119, - 23.377279071798544, - 23.736194774074015, - 24.035267551515187, - 24.258189256597248, - 24.51194948261886, - 24.685415594817208, - 24.77075796539838, - 24.90961000410654 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004358, - 2.1114679242247285, - 2.4511928331780086, - 2.788420105958951, - 3.045021209499082, - 3.388404854873192, - 3.6180250248968466, - 3.8030827051618292, - 4.10440807252425, - 4.3479889969525995, - 5.042554014138887, - 5.867404103549804, - 6.149582913934422, - 6.4324798859333265, - 6.740680695698837, - 7.008109657838397, - 7.260033303832011, - 7.499339669681038, - 7.719689629365537, - 7.898579398248277, - 8.122608636157269, - 8.292187626507278, - 8.382603142679644, - 8.543496552073162 - ], - "5._384._0.0875": [ - 3.4925753628124054, - 4.023405591122585, - 4.643627113337028, - 5.624670156862378, - 6.746357881595412, - 8.460801733324159, - 10.687405529868782, - 12.77071571722398, - 15.893727672738123, - 17.906575137462724, - 19.377842532307895, - 21.464211718202666, - 22.920696763514435, - 26.179927057634274, - 28.927667590067966, - 29.677150571938938, - 30.346185893401692, - 30.994338702876146, - 31.493357819030656, - 31.91902939412032, - 32.28372150338697, - 32.587523505832415, - 32.81385235386238, - 33.071773753272495, - 33.2478854913956, - 33.33437209050917, - 33.47477630273167 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808691268432, - 2.800134993717679, - 3.143346909506902, - 3.512983619623888, - 3.8610395635555683, - 4.450591485940758, - 4.8867756285932415, - 5.240707725253232, - 5.809206470656173, - 6.259969760536042, - 7.496166673957923, - 8.872047540116688, - 9.321347428277948, - 9.757538614044886, - 10.216660820211835, - 10.599807264227035, - 10.947797085543158, - 11.264769152397868, - 11.543703478956383, - 11.76060351061252, - 12.017879894556424, - 12.20092844656616, - 12.293650095600885, - 12.448513877755389 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637176734, - 2.8519154345889146, - 3.200327957003394, - 3.524847619931643, - 4.00555216816136, - 4.668899302731723, - 5.33963092560668, - 6.458498570183288, - 7.264671412637525, - 7.905385874321552, - 8.907666952658335, - 9.680111074134901, - 11.684298607143843, - 13.727537210140053, - 14.351911918558342, - 14.933754238737219, - 15.520782075648796, - 15.988482148813334, - 16.396951848015195, - 16.75378697305894, - 17.055384441829823, - 17.282220030367892, - 17.54213704092622, - 17.721007496193042, - 17.80950011911992, - 17.954135267770617 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_17": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 80.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 65.0 - ], - [ - 0.0, - 70.0 - ], - [ - 0.0, - 75.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351692741455037, - 3.1873024532831806, - 3.5226443044925047, - 4.029508466956375, - 4.619589392099331, - 5.550541198056473, - 6.814042146262791, - 8.056627959863262, - 10.05139880801134, - 11.43278144758014, - 12.497107200409115, - 14.097464432330858, - 15.281521368549646, - 18.140242661871493, - 20.76362384805913, - 21.50960462791425, - 22.182788469233323, - 22.841305804767348, - 23.351197718707613, - 23.787866043544593, - 24.16253862651432, - 24.474730785141983, - 24.70745848146393, - 24.97234952594687, - 25.153468601168125, - 25.242607953937252, - 25.387719461189857 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615422, - 1.4813847491413084, - 1.8198213217004355, - 2.111467924224729, - 2.4511928331815023, - 2.788420155234531, - 3.045024235856698, - 3.3884712787307443, - 3.6182240317806964, - 3.803436277752717, - 4.105078189992773, - 4.348974011996982, - 5.044860362646825, - 5.872425542893354, - 6.1558918858188605, - 6.440310259087575, - 6.750463607201504, - 7.0198801202480645, - 7.27396449731252, - 7.515638731088625, - 7.738504282707284, - 7.919733069115612, - 8.147196797865918, - 8.319938286497868, - 8.412358510776437, - 8.57775519368268 - ], - "5._384._0.0875": [ - 3.4927498255584046, - 4.02406846524511, - 4.645155431665475, - 5.628481169134668, - 6.754512120413066, - 8.479723446418094, - 10.728457058692872, - 12.841568491432962, - 16.027644685848703, - 18.094229751389616, - 19.611271364943153, - 21.7711435350478, - 23.284613336030652, - 26.68314434494589, - 29.556748852125633, - 30.341390391166236, - 31.041687279671475, - 31.720017808261765, - 32.24202443622861, - 32.68727538068867, - 33.06859197479743, - 33.3861220631042, - 33.62266374256871, - 33.892164088160285, - 34.07619671659248, - 34.166590013274906, - 34.313393480030165 - ], - "5._48._0.075": [ - 1.526846324373138, - 1.8679037053125451, - 2.162243131656477, - 2.5060808691434553, - 2.800135037682756, - 3.14335407371951, - 3.5130939817079923, - 3.8614113659500298, - 4.45165188034301, - 4.888564391460232, - 5.2432688670148355, - 5.813424671765329, - 6.265904630273835, - 7.50898765026281, - 8.896936880238634, - 9.35142586403312, - 9.793375012110701, - 10.259425000712909, - 10.649185231742113, - 11.003945136979993, - 11.327864785764323, - 11.613669114871414, - 11.836513935459694, - 12.101670657030033, - 12.291058651492893, - 12.38729903703484, - 12.548615268802049 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637871645, - 2.8519155348683256, - 3.2003391847898053, - 3.524955732329983, - 4.006045470839874, - 4.67024970210011, - 5.342330930364109, - 6.464943684140905, - 7.2751333276651176, - 7.919910973166536, - 8.930264171933345, - 9.710444383930534, - 11.741657914792011, - 13.824945005644127, - 14.464987999430377, - 15.062896693602873, - 15.667738732635277, - 16.15085761825457, - 16.573741976041052, - 16.943879988234944, - 17.257236158772557, - 17.493244031493642, - 17.763966592199523, - 17.950510633403983, - 18.042898852054847, - 18.19407779370646 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_18": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 85.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 65.0 - ], - [ - 0.0, - 70.0 - ], - [ - 0.0, - 75.0 - ], - [ - 0.0, - 80.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169465726248, - 3.1873176079967864, - 3.522768158428889, - 4.030022545657789, - 4.620796670811471, - 5.553549382687687, - 6.821322333752698, - 8.070452055446216, - 10.08121884669198, - 11.477976530533802, - 12.556776926505263, - 14.183576017489546, - 15.391184401967111, - 18.32118572594113, - 21.029522030265593, - 21.80311085507863, - 22.502099383461395, - 23.186645427536554, - 23.717027783680027, - 24.171516720884682, - 24.561548943165402, - 24.886547636493827, - 25.128857530011732, - 25.40463166348468, - 25.593241356434735, - 25.686101401774227, - 25.83735562871565 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833184628, - 2.788420199323212, - 3.0450269436504263, - 3.388530710767452, - 3.6184020933561056, - 3.803752644486536, - 4.105677836437677, - 4.3498555126792775, - 5.0469251026111595, - 5.87692363274918, - 6.161544459669996, - 6.447327756977027, - 6.75923404393901, - 7.030436313497397, - 7.286463707549459, - 7.530269358024573, - 7.755401840427612, - 7.938740712450672, - 8.169307517265793, - 8.3449124763787, - 8.439154834432694, - 8.60869565293714 - ], - "5._384._0.0875": [ - 3.4929059385796934, - 4.024661659802311, - 4.6465233890154565, - 5.631893975763957, - 6.76181958163837, - 8.496706493281867, - 10.765396807377542, - 12.905493718681806, - 16.149045442528646, - 18.26507224000508, - 19.824613760976657, - 22.053461036525306, - 23.62100134050642, - 27.15341431570023, - 30.149584912309006, - 30.968651261925096, - 31.69958530983101, - 32.4075096473861, - 32.95205374071, - 33.416503908541905, - 33.81411427783453, - 34.145091877780565, - 34.39163704865321, - 34.67247477576294, - 34.86426487180418, - 34.958485985810185, - 35.11156497845992 - ], - "5._48._0.075": [ - 1.5268463243731414, - 1.8679037053125422, - 2.1622431316564774, - 2.5060808691583176, - 2.8001350770199362, - 3.143360483805183, - 3.5131927274599737, - 3.861744049285168, - 4.452600888428702, - 4.8901655087133085, - 5.245561661018292, - 5.817202077656353, - 6.271220773963252, - 7.520486233206658, - 8.91930020119685, - 9.3784678754228, - 9.825616754736322, - 10.297933735761285, - 10.693688852665867, - 11.054599040480245, - 11.384851716772966, - 11.676948690582986, - 11.905271238453478, - 12.177751876895336, - 12.373104211247792, - 12.47269119505517, - 12.64022408360517 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.5553235638493423, - 2.851915624592008, - 3.20034923070598, - 3.5250524651899955, - 4.006486884205268, - 4.671458344558271, - 5.344748188433449, - 6.470717908269878, - 7.284511397412325, - 7.932937902535235, - 8.950551837910844, - 9.737701504183917, - 11.793365742230662, - 13.91309139744491, - 14.56749883324282, - 15.180221498959932, - 15.80159710693723, - 16.299140371759243, - 16.73560622510747, - 17.1183692814907, - 17.44296196333292, - 17.687787419095894, - 17.968957112850507, - 18.162962233682734, - 18.259153589327656, - 18.416746902683837 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_19": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 90.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 65.0 - ], - [ - 0.0, - 70.0 - ], - [ - 0.0, - 75.0 - ], - [ - 0.0, - 80.0 - ], - [ - 0.0, - 85.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351696381489475, - 3.187331247244331, - 3.522879628094368, - 4.030485260989801, - 4.621883528236969, - 5.5562586041445785, - 6.827883868935236, - 8.0829227492461, - 10.10817348058246, - 11.518887995782942, - 12.610857305867967, - 14.261794491920249, - 15.490982903606458, - 18.486890848177342, - 21.27524290055822, - 22.075217564411286, - 22.79899690216306, - 23.508677866634827, - 24.058928811787144, - 24.530752445449544, - 24.935759039995762, - 25.27326308304443, - 25.52494094031748, - 25.81136254313875, - 26.007309089179795, - 26.103817798257655, - 26.26110485600641 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413081, - 1.8198213217004349, - 2.111467924224728, - 2.4511928331874406, - 2.788420239003021, - 3.0450293806648396, - 3.388584199733048, - 3.61856235102255, - 3.8040373844877826, - 4.106217572875672, - 4.350649001745673, - 5.048784309934619, - 5.880976137282247, - 6.166638007345737, - 6.453652707219121, - 6.76714144285774, - 7.039956908429579, - 7.297740911387079, - 7.543475229133343, - 7.770661079327487, - 7.9559131325586, - 8.189297331332284, - 8.367506468556101, - 8.463410563965729, - 8.6367695255584 - ], - "5._384._0.0875": [ - 3.4930464522311486, - 4.0251956129702995, - 4.647754966374073, - 5.634967889203647, - 6.768405651893354, - 8.512034274458312, - 10.798812847760658, - 12.963460437253728, - 16.259604942294, - 18.421227173825862, - 20.0202745641625, - 22.313862879155668, - 23.932687116107356, - 27.59368924040333, - 30.709175049333716, - 31.561947730117275, - 32.322912396036294, - 33.059867398547134, - 33.62651796673938, - 34.10980444942436, - 34.52339402462115, - 34.867552962236836, - 35.12390319420058, - 35.4158495839016, - 35.615242541645536, - 35.71321690512463, - 35.87245455100154 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.8679037053125411, - 2.162243131656476, - 2.506080869171695, - 2.800135112423392, - 3.1433662528828585, - 3.513281599225716, - 3.8620434788505826, - 4.4534551848322055, - 4.8916070354753005, - 5.247626182431149, - 5.820604350358829, - 6.276010151896673, - 7.530856972178744, - 8.939503415742223, - 9.402911056026577, - 9.85477877726553, - 10.332792114674596, - 10.734005693844463, - 11.100526205283005, - 11.436571650244673, - 11.73444711214481, - 11.96782507607399, - 12.24711640955177, - 12.448078329935816, - 12.550845968751332, - 12.72436438717535 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.5553235639052976, - 2.8519157053433237, - 3.2003582720321653, - 3.525139525340661, - 4.006884186344145, - 4.672546438129151, - 5.34692490397004, - 6.475920810803008, - 7.29296574840469, - 7.944687067700373, - 8.968866757948495, - 9.762327690366131, - 11.840218549473374, - 13.993235484520799, - 14.660845038793274, - 15.287250891468323, - 15.923986020049428, - 16.43502723918104, - 16.884287117989075, - 17.27902652336799, - 17.614350943894223, - 17.86764880699717, - 18.158916083852937, - 18.360175580920764, - 18.460080464357947, - 18.623963609776702 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_20": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 95.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 65.0 - ], - [ - 0.0, - 70.0 - ], - [ - 0.0, - 75.0 - ], - [ - 0.0, - 80.0 - ], - [ - 0.0, - 85.0 - ], - [ - 0.0, - 90.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351697941504477, - 3.1873435875202447, - 3.5229804825177644, - 4.030903944525868, - 4.622867125782075, - 5.558711320280082, - 6.833828155475075, - 8.09422950428922, - 10.132656704592778, - 11.556097065608407, - 12.660098250657862, - 14.333157232911486, - 15.582185555915066, - 18.639156510677417, - 21.50288230009914, - 22.328063763091006, - 23.075647538331218, - 23.80958879004111, - 24.37909959343076, - 24.86778304069427, - 25.2873894444591, - 25.637107985728697, - 25.897948083011574, - 26.19479237165394, - 26.397929710025746, - 26.498018881797105, - 26.661235050835412 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413081, - 1.8198213217004342, - 2.111467924224728, - 2.4511928331899866, - 2.788420274903803, - 3.045031585582693, - 3.388632594619658, - 3.618707347889678, - 3.80429501450874, - 4.10670595044867, - 4.351367033462482, - 5.050467218811419, - 5.884646141325763, - 6.171251549309183, - 6.4593828058554905, - 6.774307212887237, - 7.048587163518451, - 7.307966949345673, - 7.555454777374308, - 7.784509222372123, - 7.971503860657982, - 8.207457469038998, - 8.388044817057763, - 8.485469502766492, - 8.662351404674359 - ], - "5._384._0.0875": [ - 3.493173593371938, - 4.025678777194492, - 4.648869590162662, - 5.637750999768404, - 6.774372127289396, - 8.525937523492683, - 10.829186276733859, - 13.01626455228017, - 16.360714448268862, - 18.564486562192773, - 20.20030696762772, - 22.554689844325853, - 24.22214450090069, - 28.006583963982013, - 31.238181556854137, - 32.12395587790811, - 32.91436054407893, - 33.67980162249482, - 34.26814484645945, - 34.76992034939945, - 35.19918924919997, - 35.55627649719676, - 35.82224333348776, - 36.12508142866526, - 36.33193071892627, - 36.43358771605631, - 36.598873426443596 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.867903705312543, - 2.1622431316564787, - 2.5060808691837977, - 2.8001351444550906, - 3.143371472525031, - 3.5133620074945524, - 3.8623144032038543, - 4.454228274101159, - 4.892911699635908, - 5.2494949050648305, - 5.823684727376988, - 6.280347361038596, - 7.54025803973807, - 8.957845035917959, - 9.425112784889382, - 9.881282127752211, - 10.364495627407171, - 10.77069988531026, - 11.142358063488798, - 11.483720026716318, - 11.786915849235744, - 12.024967884189907, - 12.310597884589958, - 12.51683508903163, - 12.622623936340485, - 12.801901725637777 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.5553235639559277, - 2.851915778404035, - 3.2003664522810014, - 3.5252182945191506, - 4.007243674765673, - 4.673531161262557, - 5.348895279806077, - 6.480633186179699, - 7.300626446154487, - 7.955337664218343, - 8.98548329446479, - 9.784686242173601, - 11.882869466376254, - 14.066419965876667, - 14.746194962835919, - 15.38526389884884, - 16.036284764459175, - 16.559963498353536, - 17.02127572226336, - 17.427372735072662, - 17.772942242720223, - 18.03437711972676, - 18.33540099703631, - 18.54371341254057, - 18.647244719178495, - 18.81729740660611 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835163554103729, - 3.1868499795100256, - 3.5189471871417144, - 4.014291734689392, - 4.585729983426826, - 5.4783782331097886, - 6.664875308975525, - 7.78095954436287, - 9.422622271115944, - 10.444946568635388, - 11.174586733117547, - 12.190679309604377, - 12.887629509317616, - 14.432466371861755, - 15.72804732473775, - 16.081392778821243, - 16.398108012781965, - 16.706154923196785, - 16.94478515960347, - 17.148634374775696, - 17.324044660244187, - 17.470751596521854, - 17.580134119683894, - 17.70503746479188, - 17.790288291349594, - 17.832098064054087, - 17.899737843068284 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.111467924224727, - 2.4511928330881467, - 2.788418838872571, - 3.04494338890382, - 3.3866968888704605, - 3.612910916227809, - 3.7940199256554292, - 4.0874967512700415, - 4.323817801662154, - 4.993223862336138, - 5.776939636452273, - 6.0398329147115115, - 6.298516420435058, - 6.573466422852641, - 6.804579954700581, - 7.014876393828088, - 7.206675627757325, - 7.375307882595491, - 7.505754432240141, - 7.659723925184936, - 7.76791724765261, - 7.822040894389363, - 7.911051827069974 - ], - "5._384._0.0875": [ - 3.4880902775716516, - 4.0065619525134215, - 4.607298279466111, - 5.548353958156116, - 6.604415106939941, - 8.13860019568434, - 9.938536968136697, - 11.427377002248585, - 13.383231984894984, - 14.512099196220316, - 15.29057972183952, - 16.347765426714993, - 17.06050692000972, - 18.619290778574012, - 19.916053673254428, - 20.2686496512593, - 20.584999002677907, - 20.892732872471324, - 21.13131773958098, - 21.335112938000275, - 21.510606445342315, - 21.65749717959913, - 21.767018104919572, - 21.892162864981678, - 21.977544756334243, - 22.019389460008043, - 22.08703090750865 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125447, - 2.162243131656476, - 2.506080868699681, - 2.800133863187092, - 3.1431626871705314, - 3.5101461072512348, - 3.8515072619323156, - 4.424504911378015, - 4.845886343624489, - 5.186331552272661, - 5.729058529452128, - 6.1543553311536385, - 7.279215244517337, - 8.425007491615851, - 8.768101772829569, - 9.08648777576615, - 9.405485053350356, - 9.65874977692766, - 9.87854736747751, - 10.070275097983433, - 10.232270081471812, - 10.353782216544758, - 10.493043905742333, - 10.588509080770054, - 10.635513887026178, - 10.711792810255785 - ], - "5._96._0.075": [ - 2.2092619209324718, - 2.555305550299043, - 2.8518822502007706, - 3.1999812074434986, - 3.5219640505521346, - 3.9927079992711505, - 4.635768436942492, - 5.280652168885683, - 6.338984165530696, - 7.079120833009518, - 7.647405762106008, - 8.493199493397391, - 9.106886336359855, - 10.549497600871693, - 11.821945288975535, - 12.176179524294474, - 12.495306427173027, - 12.807191058501216, - 13.049579738950227, - 13.257119802438721, - 13.435959943893337, - 13.585663292927912, - 13.697375965540715, - 13.824926149001566, - 13.912078874142695, - 13.95487960916011, - 14.02423056578889 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83516472411039, - 3.1869425304997336, - 3.519703336588499, - 4.017409124634149, - 4.592792127320395, - 5.494435370274548, - 6.702922623181757, - 7.859047111999608, - 9.601273766609378, - 10.709893884541724, - 11.510288742748434, - 12.634631898016757, - 13.410995173686615, - 15.140112325896753, - 16.59431376284061, - 16.991218622233816, - 17.346724733781354, - 17.692319667585423, - 17.959786862066252, - 18.188220856046517, - 18.384643002748486, - 18.54880887859812, - 18.671188673718667, - 18.810869505477182, - 18.906212251366096, - 18.952983693185324, - 19.0286924400906 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247267, - 2.451192833107243, - 2.788419108128426, - 3.044959925775519, - 3.387059821765704, - 3.613997664863135, - 3.7959470723593096, - 4.09111167742486, - 4.329038708345258, - 5.004506770243227, - 5.800396675051319, - 6.069930680934847, - 6.337044137013024, - 6.623399632901891, - 6.866397000242412, - 7.089548465426775, - 7.294940305254195, - 7.477122120182745, - 7.619155348518463, - 7.7880816786592515, - 7.907676077545279, - 7.967812952154061, - 8.067196242249718 - ], - "5._384._0.0875": [ - 3.489041966728529, - 4.0101492446674785, - 4.615228891631927, - 5.566384478985521, - 6.642584303912649, - 8.23605088452842, - 10.158307320185152, - 11.785471693976609, - 13.957916675535065, - 15.2235651708415, - 16.099466100365742, - 17.290954676319654, - 18.09508402875218, - 19.852744524299638, - 21.313164415062523, - 21.70999507573438, - 22.065750787889225, - 22.41159715450544, - 22.679499567017082, - 22.908294539148603, - 23.10520435766242, - 23.269936461997787, - 23.392750503414597, - 23.53304715405481, - 23.628776387136153, - 23.675702827788015, - 23.751593525065417 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808687904528, - 2.800134103424843, - 3.1432018343696826, - 3.510749037532128, - 3.8535335425120447, - 4.430128801236172, - 4.854966963284894, - 5.198834780785669, - 5.748826061535993, - 6.182200108369144, - 7.344326849292377, - 8.559766854482477, - 8.930536691975924, - 9.277137603746795, - 9.626775473927715, - 9.905883724809348, - 10.149145007609818, - 10.36200401620384, - 10.542263530840383, - 10.677700598499671, - 10.833061729053647, - 10.939691930072817, - 10.992253400925039, - 11.077649233553439 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.555323562310494, - 2.851913403930866, - 3.2001005947998324, - 3.522658579337796, - 3.9956263916358847, - 4.643473862001433, - 5.295314181512427, - 6.373564059926124, - 7.138360360544258, - 7.733580791206114, - 8.633729955517238, - 9.297305182392362, - 10.888688183108068, - 12.31939479443607, - 12.720736736508375, - 13.083024543099366, - 13.437593746774013, - 13.71333786799934, - 13.94943383896836, - 14.152804847143246, - 14.322925976753803, - 14.449783003015684, - 14.594457028247186, - 14.693237854773255, - 14.741735431737363, - 14.820299846760408 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4_6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835165634116244, - 3.1870145147626947, - 3.5202914866756445, - 4.019835092963688, - 4.598294182607634, - 5.506896106489162, - 6.73052318189818, - 7.912467871582121, - 9.72589580529215, - 10.902232580140291, - 11.76142065486081, - 12.9799690921601, - 13.828042683727714, - 15.729161808737246, - 17.335268784211628, - 17.774271586490865, - 18.167299156061734, - 18.549238157332137, - 18.844598738042702, - 19.096815892578494, - 19.313543986957356, - 19.494562987623265, - 19.629486165894264, - 19.783415524175574, - 19.888490968713953, - 19.940050441967127, - 20.023555387690887 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961542, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247276, - 2.4511928331220942, - 2.788419317549646, - 3.044972787788615, - 3.387342106904053, - 3.6148429816023104, - 3.7974462638006634, - 4.093924921592454, - 4.33310344191535, - 5.013283589828823, - 5.817782417116992, - 6.091545425842375, - 6.364002312388974, - 6.657722620844377, - 6.908716725258545, - 7.140907237709026, - 7.3563326758075025, - 7.549010897004276, - 7.700417847978584, - 7.882005131312982, - 8.011698348280834, - 8.07732390690613, - 8.186450552241064 - ], - "5._384._0.0875": [ - 3.48978252870838, - 4.01294168617726, - 4.621409737185993, - 5.580334801027355, - 6.670318980665449, - 8.302545592063366, - 10.31394184021751, - 12.053732907941635, - 14.417465391896503, - 15.80993111970759, - 16.77799713899045, - 18.09818832224131, - 18.99067491818022, - 20.94158614166768, - 22.561393965004953, - 23.001316849199963, - 23.395409373721648, - 23.77829362345485, - 24.074637879081667, - 24.327676476764193, - 24.54532876803464, - 24.72732070710507, - 24.86299155213012, - 25.01793307141577, - 25.123664603086283, - 25.175505367009382, - 25.259381035739203 - ], - "5._48._0.075": [ - 1.5268463243731403, - 1.8679037053125447, - 2.1622431316564747, - 2.506080868861052, - 2.800134290276426, - 3.143232282208475, - 3.511218001064851, - 3.8551099766652253, - 4.434508562320669, - 4.8620406770384585, - 5.208542456427525, - 5.763852818580707, - 6.202674770697162, - 7.388879023236523, - 8.653549099750002, - 9.045795218652303, - 9.415151038522362, - 9.790454546878507, - 10.091929979349173, - 10.356032511845594, - 10.588068848893775, - 10.785198413726444, - 10.933669029420406, - 11.10426766775149, - 11.221569889572363, - 11.279479298301718, - 11.37370478468064 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235626058273, - 2.851913830118357, - 3.200148312708098, - 3.523117984324703, - 3.997713443588236, - 4.648975825738677, - 5.305558567767291, - 6.395724376623285, - 7.174022364925206, - 7.7842960088155895, - 8.716676351312, - 9.412201143144728, - 11.107676164998207, - 12.661029243171718, - 13.100667060069881, - 13.498459445509948, - 13.888500148954629, - 14.192107875894575, - 14.452267138883512, - 14.676390877488986, - 14.863844300867298, - 15.003635090833797, - 15.162997827519565, - 15.271830446192585, - 15.32528603574343, - 15.411940391266077 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4_7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351663621213476, - 3.1870721022737705, - 3.520762028072392, - 4.021776707106985, - 4.602701379425714, - 5.516895320729015, - 6.752416493474914, - 7.953137727203884, - 9.81883264878891, - 11.048318939018987, - 11.955935890018308, - 13.25556144765417, - 14.167705246850145, - 16.228183948976074, - 17.979371151576828, - 18.459035923476232, - 18.88837134802076, - 19.305527303837838, - 19.627914082259856, - 19.903183981117593, - 20.13958070089098, - 20.336909508975214, - 20.483970170129076, - 20.651676401188716, - 20.766165133520005, - 20.822358589612076, - 20.913418264771746 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.451192833133977, - 2.7884194850866217, - 3.0449830774002096, - 3.3875679375332597, - 3.615519277709283, - 3.7986458056921144, - 4.09617654659847, - 4.336357802956161, - 5.020320937756365, - 5.831647067747798, - 6.108571604976713, - 6.384898024172815, - 6.6838521863624285, - 6.940545133037418, - 7.179288122894562, - 7.402205253906631, - 7.603006146711512, - 7.761932827049879, - 7.9541073637389195, - 8.092636625248517, - 8.16322087404529, - 8.281438116593483 - ], - "5._384._0.0875": [ - 3.4903752046787764, - 4.015177107660148, - 4.626361860766751, - 5.591532601268441, - 6.692329186314433, - 8.352759110740948, - 10.430657256886867, - 12.261635160900303, - 14.792527011528106, - 16.301536654412992, - 17.35621270848946, - 18.79917973511907, - 19.776861265130105, - 21.91541315292656, - 23.690588904865486, - 24.1725551363065, - 24.604008758319218, - 25.022955541483253, - 25.346949118016603, - 25.623547825218424, - 25.861333956995235, - 26.06006072276188, - 26.208194543277866, - 26.37732333379044, - 26.492745806698906, - 26.549349850068555, - 26.640972162041617 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564765, - 2.5060808689175356, - 2.800134439757692, - 3.143256640490363, - 3.5115931830794134, - 3.856371400101421, - 4.438015845543513, - 4.867708801573733, - 5.216324289383681, - 5.775883677547704, - 6.218945420061054, - 7.422787553543587, - 8.723431483738334, - 9.132330349511395, - 9.519916256558748, - 9.916486305305636, - 10.237093174438648, - 10.519492789617704, - 10.768754770173295, - 10.981336755114539, - 11.141931285695081, - 11.326897525151242, - 11.454384108001973, - 11.517438552524153, - 11.620221865575353 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235628420947, - 2.85191417106835, - 3.2001864870656878, - 3.523485519269141, - 3.9993836543846673, - 4.653383089429759, - 5.313774307764784, - 6.413405840031446, - 7.201749149251708, - 7.822822269106146, - 8.778486940566422, - 9.497894825670153, - 11.276787922769273, - 12.937485317219407, - 13.412161639654101, - 13.842926754804644, - 14.26632351988241, - 14.596375369272456, - 14.87952041978683, - 15.123557174936245, - 15.327692912673553, - 15.479958916081756, - 15.653505414115946, - 15.772062907850747, - 15.830324368858253, - 15.924837218418915 + 2.2092619209324718, + 2.555305550299043, + 2.8518822502007706, + 3.1999812074434986, + 3.5219640505521346, + 3.9927079992711505, + 4.635768436942492, + 5.280652168885683, + 6.338984165530696, + 7.079120833009518, + 7.647405762106008, + 8.493199493397391, + 9.106886336359855, + 10.549497600871693, + 11.821945288975535, + 12.176179524294474, + 12.495306427173027, + 12.807191058501216, + 13.049579738950227, + 13.257119802438721, + 13.435959943893337, + 13.585663292927912, + 13.697375965540715, + 13.824926149001566, + 13.912078874142695, + 13.95487960916011, + 14.02423056578889 ] }, "logtime": [ @@ -7415,7 +2923,7 @@ 3.003 ] }, - "4_8": { + "4_5": { "bore_locations": [ [ 0.0, @@ -7435,7 +2943,7 @@ ], [ 0.0, - 35.0 + 20.0 ], [ 0.0, @@ -7448,165 +2956,153 @@ [ 0.0, 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 ] ], "g": { "5._192._0.08": [ - 2.835166957762167, - 3.1871192193948668, - 3.521147030588963, - 4.023365855769714, - 4.606310940165794, - 5.525096077645807, - 6.770391142562251, - 7.986042699811531, - 9.892112786075876, - 11.163902147050683, - 12.111465672849134, - 13.48056030789603, - 14.449555367836037, - 16.656787810462436, - 18.546146394735505, - 19.065046675915433, - 19.5295118394173, - 19.980811248654252, - 20.329413404552668, - 20.62705933613929, - 20.8825401506822, - 21.095684187185995, - 21.2545140207822, - 21.43557063739664, - 21.559184702817824, - 21.619873600047498, - 21.718271332519198 + 2.83516472411039, + 3.1869425304997336, + 3.519703336588499, + 4.017409124634149, + 4.592792127320395, + 5.494435370274548, + 6.702922623181757, + 7.859047111999608, + 9.601273766609378, + 10.709893884541724, + 11.510288742748434, + 12.634631898016757, + 13.410995173686615, + 15.140112325896753, + 16.59431376284061, + 16.991218622233816, + 17.346724733781354, + 17.692319667585423, + 17.959786862066252, + 18.188220856046517, + 18.384643002748486, + 18.54880887859812, + 18.671188673718667, + 18.810869505477182, + 18.906212251366096, + 18.952983693185324, + 19.0286924400906 ], "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.4511928331436974, - 2.78841962216233, - 3.0449914961740716, - 3.387752709713218, - 3.6160726391301194, - 3.799627373851638, - 4.098019466223334, - 4.339022164883762, - 5.026089016311255, - 5.843025749897209, - 6.122511181142527, - 6.4019122111470415, - 6.7049361450435505, - 6.965989181006566, - 7.209726197395946, - 7.4384085529362025, - 7.645587349571558, - 7.81056953930006, - 8.011563926347089, - 8.157764117718944, - 8.232792369046889, - 8.359440086841845 + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247267, + 2.451192833107243, + 2.788419108128426, + 3.044959925775519, + 3.387059821765704, + 3.613997664863135, + 3.7959470723593096, + 4.09111167742486, + 4.329038708345258, + 5.004506770243227, + 5.800396675051319, + 6.069930680934847, + 6.337044137013024, + 6.623399632901891, + 6.866397000242412, + 7.089548465426775, + 7.294940305254195, + 7.477122120182745, + 7.619155348518463, + 7.7880816786592515, + 7.907676077545279, + 7.967812952154061, + 8.067196242249718 ], "5._384._0.0875": [ - 3.4908602711376626, - 4.017007060343796, - 4.630418518734446, - 5.600719320318877, - 6.7104006757125045, - 8.393173694719513, - 10.522679219410904, - 12.427896779717049, - 15.104115516936615, - 16.71951061233635, - 17.85510718415472, - 19.414696478353736, - 20.47429707090317, - 22.79485661070918, - 24.721560615391446, - 25.244593098723108, - 25.712505733738077, - 26.16661849638015, - 26.51753550213607, - 26.817069134413916, - 27.0744330767305, - 27.289415417042395, - 27.449652814451767, - 27.63255140014591, - 27.757380842709296, - 27.818610444859768, - 27.91776220458523 + 3.489041966728529, + 4.0101492446674785, + 4.615228891631927, + 5.566384478985521, + 6.642584303912649, + 8.23605088452842, + 10.158307320185152, + 11.785471693976609, + 13.957916675535065, + 15.2235651708415, + 16.099466100365742, + 17.290954676319654, + 18.09508402875218, + 19.852744524299638, + 21.313164415062523, + 21.70999507573438, + 22.065750787889225, + 22.41159715450544, + 22.679499567017082, + 22.908294539148603, + 23.10520435766242, + 23.269936461997787, + 23.392750503414597, + 23.53304715405481, + 23.628776387136153, + 23.675702827788015, + 23.751593525065417 ], "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.5060808689637457, - 2.8001345620605465, - 3.143276570000902, - 3.511900157579723, - 3.857403656409155, - 4.440887740469782, - 4.872352417154855, - 5.222702299058051, - 5.785751827925583, - 6.232285364243805, - 7.4502069278635465, - 8.778492850153363, - 9.200489254204507, - 9.602764699300245, - 10.016930843385225, - 10.353819440694467, - 10.652169284801147, - 10.916788873079446, - 11.143427718117584, - 11.315235803106502, - 11.513695706451749, - 11.650880846692381, - 11.718880137505964, - 11.829958390339796 + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808687904528, + 2.800134103424843, + 3.1432018343696826, + 3.510749037532128, + 3.8535335425120447, + 4.430128801236172, + 4.854966963284894, + 5.198834780785669, + 5.748826061535993, + 6.182200108369144, + 7.344326849292377, + 8.559766854482477, + 8.930536691975924, + 9.277137603746795, + 9.626775473927715, + 9.905883724809348, + 10.149145007609818, + 10.36200401620384, + 10.542263530840383, + 10.677700598499671, + 10.833061729053647, + 10.939691930072817, + 10.992253400925039, + 11.077649233553439 ], "5._96._0.075": [ - 2.2092718103274045, - 2.555323563035405, - 2.851914450027434, - 3.2002177206514735, - 3.5237862369213273, - 4.000750566974023, - 4.6569927973451, - 5.320509145779349, - 6.4279243457626905, - 7.224374723972429, - 7.853907757352516, - 8.82749585659016, - 9.565380698389191, - 11.411689270809376, - 13.165799469304833, - 13.672330990699809, - 14.133534778488041, - 14.588148323208204, - 14.943212146582484, - 15.24826601523186, - 15.511390050300962, - 15.73158148818639, - 15.895887742129343, - 16.08314800606583, - 16.211130274537435, - 16.274059390205185, - 16.37622255045148 + 2.2092718103274036, + 2.555323562310494, + 2.851913403930866, + 3.2001005947998324, + 3.522658579337796, + 3.9956263916358847, + 4.643473862001433, + 5.295314181512427, + 6.373564059926124, + 7.138360360544258, + 7.733580791206114, + 8.633729955517238, + 9.297305182392362, + 10.888688183108068, + 12.31939479443607, + 12.720736736508375, + 13.083024543099366, + 13.437593746774013, + 13.71333786799934, + 13.94943383896836, + 14.152804847143246, + 14.322925976753803, + 14.449783003015684, + 14.594457028247186, + 14.693237854773255, + 14.741735431737363, + 14.820299846760408 ] }, "logtime": [ @@ -7639,7 +3135,7 @@ 3.003 ] }, - "4_9": { + "4_6": { "bore_locations": [ [ 0.0, @@ -7659,7 +3155,7 @@ ], [ 0.0, - 40.0 + 25.0 ], [ 0.0, @@ -7676,165 +3172,153 @@ [ 0.0, 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 ] ], "g": { "5._192._0.08": [ - 2.8351674541297, - 3.1871584837082283, - 3.52146787571422, - 4.0246905282102015, - 4.60932143502273, - 5.531943351639104, - 6.785428374627892, - 8.013510600409592, - 9.952294474233781, - 11.258481851885426, - 12.23927474501827, - 13.66794160397303, - 14.687208939074498, - 17.028967945059794, - 19.04955715399058, - 19.606269405825813, - 20.10470921730931, - 20.5891168477267, - 20.9631662880102, - 21.282553323896465, - 21.55657563714039, - 21.785079554548453, - 21.955340659498052, - 22.149357935580475, - 22.28183503282075, - 22.346893495202472, - 22.452432882029257 + 2.835165634116244, + 3.1870145147626947, + 3.5202914866756445, + 4.019835092963688, + 4.598294182607634, + 5.506896106489162, + 6.73052318189818, + 7.912467871582121, + 9.72589580529215, + 10.902232580140291, + 11.76142065486081, + 12.9799690921601, + 13.828042683727714, + 15.729161808737246, + 17.335268784211628, + 17.774271586490865, + 18.167299156061734, + 18.549238157332137, + 18.844598738042702, + 19.096815892578494, + 19.313543986957356, + 19.494562987623265, + 19.629486165894264, + 19.783415524175574, + 19.888490968713953, + 19.940050441967127, + 20.023555387690887 ], "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224729, - 2.4511928331517994, - 2.7884197363920866, - 3.044998511819466, - 3.3879066876746586, - 3.6165337930645034, - 3.80044543311818, - 4.099555700870579, - 4.341243637790964, - 5.0309027823536, - 5.852535069272208, - 6.134160983997162, - 6.416117362843587, - 6.722488349455069, - 6.987074653247859, - 7.234814288411437, - 7.4681018358312965, - 7.680408000426016, - 7.8503273945400025, - 8.058691355984534, - 8.211527146637474, - 8.2905156157682, - 8.424941791698874 + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.4511928331220942, + 2.788419317549646, + 3.044972787788615, + 3.387342106904053, + 3.6148429816023104, + 3.7974462638006634, + 4.093924921592454, + 4.33310344191535, + 5.013283589828823, + 5.817782417116992, + 6.091545425842375, + 6.364002312388974, + 6.657722620844377, + 6.908716725258545, + 7.140907237709026, + 7.3563326758075025, + 7.549010897004276, + 7.700417847978584, + 7.882005131312982, + 8.011698348280834, + 8.07732390690613, + 8.186450552241064 ], "5._384._0.0875": [ - 3.491264596187594, - 4.018532689206082, - 4.633802454515131, - 5.608391698701361, - 6.725518719914447, - 8.426857411756169, - 10.598098041516069, - 12.564535637626992, - 15.367008664895923, - 17.079064120997693, - 18.28990617973524, - 19.95984351633297, - 21.09800001484415, - 23.59489394767675, - 25.669420064177366, - 26.232598209324, - 26.736127256127805, - 27.224573816208196, - 27.60174330600742, - 27.92363490237817, - 28.200064294397183, - 28.430861056309578, - 28.602871323916727, - 28.799155706662678, - 28.933131024231407, - 28.998859604438916, - 29.105341294194215 + 3.48978252870838, + 4.01294168617726, + 4.621409737185993, + 5.580334801027355, + 6.670318980665449, + 8.302545592063366, + 10.31394184021751, + 12.053732907941635, + 14.417465391896503, + 15.80993111970759, + 16.77799713899045, + 18.09818832224131, + 18.99067491818022, + 20.94158614166768, + 22.561393965004953, + 23.001316849199963, + 23.395409373721648, + 23.77829362345485, + 24.074637879081667, + 24.327676476764193, + 24.54532876803464, + 24.72732070710507, + 24.86299155213012, + 25.01793307141577, + 25.123664603086283, + 25.175505367009382, + 25.259381035739203 ], "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125465, - 2.1622431316564765, - 2.5060808690022545, - 2.8001346639795908, - 3.143293177931286, - 3.512155974749208, - 3.8582639955460003, - 4.443282568578982, - 4.876226267977439, - 5.228024926636167, - 5.793993008915238, - 6.243431441621082, - 7.473083019614888, - 8.823668370071488, - 9.25620804738432, - 9.670486089623353, - 10.099295520676005, - 10.450047862476376, - 10.76226251935219, - 11.040512402117828, - 11.27987376497623, - 11.462003441358267, - 11.673087994206565, - 11.819487755447629, - 11.8922331591405, - 12.011349004069471 + 1.5268463243731403, + 1.8679037053125447, + 2.1622431316564747, + 2.506080868861052, + 2.800134290276426, + 3.143232282208475, + 3.511218001064851, + 3.8551099766652253, + 4.434508562320669, + 4.8620406770384585, + 5.208542456427525, + 5.763852818580707, + 6.202674770697162, + 7.388879023236523, + 8.653549099750002, + 9.045795218652303, + 9.415151038522362, + 9.790454546878507, + 10.091929979349173, + 10.356032511845594, + 10.588068848893775, + 10.785198413726444, + 10.933669029420406, + 11.10426766775149, + 11.221569889572363, + 11.279479298301718, + 11.37370478468064 ], "5._96._0.075": [ - 2.209271810327406, - 2.5553235631964957, - 2.8519146824933417, - 3.20024374865371, - 3.5240368399445527, - 4.001889919703756, - 4.660003478688166, - 5.326130327712424, - 6.440062097564278, - 7.243285994602833, - 7.879802769439634, - 8.867943170061805, - 9.620685386152587, - 11.522336511758247, - 13.357604402388839, - 13.892967432048215, - 14.382135214550031, - 14.865838619494257, - 15.24448126332768, - 15.57036817374082, - 15.851762402516755, - 16.087398562047333, - 16.26332710083277, - 16.463857554001923, - 16.60098513421195, - 16.66845446460825, - 16.77807788870012 + 2.209271810327404, + 2.5553235626058273, + 2.851913830118357, + 3.200148312708098, + 3.523117984324703, + 3.997713443588236, + 4.648975825738677, + 5.305558567767291, + 6.395724376623285, + 7.174022364925206, + 7.7842960088155895, + 8.716676351312, + 9.412201143144728, + 11.107676164998207, + 12.661029243171718, + 13.100667060069881, + 13.498459445509948, + 13.888500148954629, + 14.192107875894575, + 14.452267138883512, + 14.676390877488986, + 14.863844300867298, + 15.003635090833797, + 15.162997827519565, + 15.271830446192585, + 15.32528603574343, + 15.411940391266077 ] }, "logtime": [ @@ -7867,7 +3351,7 @@ 3.003 ] }, - "4_10": { + "4_7": { "bore_locations": [ [ 0.0, @@ -7887,7 +3371,7 @@ ], [ 0.0, - 45.0 + 30.0 ], [ 0.0, @@ -7908,165 +3392,153 @@ [ 0.0, 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 ] ], "g": { "5._192._0.08": [ - 2.83516787413314, - 3.187191707390499, - 3.5217393669350265, - 4.025811676135386, - 4.611870573161968, - 5.53774666743074, - 6.798192715388055, - 8.036854195885505, - 10.003103886820321, - 11.337924975740851, - 12.346708940564692, - 13.826694991292879, - 14.890392460784529, - 17.355087368443666, - 19.499998523319654, - 20.093101513303825, - 20.624376627943196, - 21.14088523708773, - 21.539646961340225, - 21.880173477942208, - 22.172228815883738, - 22.41566961623693, - 22.59704931536428, - 22.803668207290116, - 22.94476748347389, - 23.01408023853873, - 23.126581858402503 + 2.8351663621213476, + 3.1870721022737705, + 3.520762028072392, + 4.021776707106985, + 4.602701379425714, + 5.516895320729015, + 6.752416493474914, + 7.953137727203884, + 9.81883264878891, + 11.048318939018987, + 11.955935890018308, + 13.25556144765417, + 14.167705246850145, + 16.228183948976074, + 17.979371151576828, + 18.459035923476232, + 18.88837134802076, + 19.305527303837838, + 19.627914082259856, + 19.903183981117593, + 20.13958070089098, + 20.336909508975214, + 20.483970170129076, + 20.651676401188716, + 20.766165133520005, + 20.822358589612076, + 20.913418264771746 ], "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.451192833158653, - 2.7884198330480356, - 3.045004448135161, - 3.388036977531837, - 3.6169240140272074, - 3.801137698038885, - 4.1008559243108405, - 4.34312417765957, - 5.034980972109767, - 5.860600279136224, - 6.144044727702163, - 6.428171019722437, - 6.7373762132165425, - 7.0049324471479455, - 7.256007099376388, - 7.49310305956485, - 7.709641067555297, - 7.883655784258574, - 8.09822625965344, - 8.25680246841747, - 8.33930819217795, - 8.4808819282058 + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.451192833133977, + 2.7884194850866217, + 3.0449830774002096, + 3.3875679375332597, + 3.615519277709283, + 3.7986458056921144, + 4.09617654659847, + 4.336357802956161, + 5.020320937756365, + 5.831647067747798, + 6.108571604976713, + 6.384898024172815, + 6.6838521863624285, + 6.940545133037418, + 7.179288122894562, + 7.402205253906631, + 7.603006146711512, + 7.761932827049879, + 7.9541073637389195, + 8.092636625248517, + 8.16322087404529, + 8.281438116593483 ], "5._384._0.0875": [ - 3.4916067905462156, - 4.019824080703017, - 4.636668192746558, - 5.614895640940676, - 6.738351505537287, - 8.455491250530091, - 10.661656113686563, - 12.679414304937966, - 15.59185197198164, - 17.39148825779149, - 18.67204080560014, - 20.44603744186541, - 21.659331425952477, - 24.32684488857537, - 26.54558814858763, - 27.148036794632894, - 27.686388779455644, - 28.208390827854437, - 28.61118824732381, - 28.954901666625496, - 29.249921264782753, - 29.496123770756903, - 29.6796006750872, - 29.888915444719963, - 30.031795096396984, - 30.101905603438674, - 30.21553283335788 + 3.4903752046787764, + 4.015177107660148, + 4.626361860766751, + 5.591532601268441, + 6.692329186314433, + 8.352759110740948, + 10.430657256886867, + 12.261635160900303, + 14.792527011528106, + 16.301536654412992, + 17.35621270848946, + 18.79917973511907, + 19.776861265130105, + 21.91541315292656, + 23.690588904865486, + 24.1725551363065, + 24.604008758319218, + 25.022955541483253, + 25.346949118016603, + 25.623547825218424, + 25.861333956995235, + 26.06006072276188, + 26.208194543277866, + 26.37732333379044, + 26.492745806698906, + 26.549349850068555, + 26.640972162041617 ], "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.5060808690348386, - 2.800134750218786, - 3.143307230798961, - 3.5123724390424327, - 3.8589920639723307, - 4.4453100859682575, - 4.879507106858273, - 5.232534106804149, - 5.800978922858059, - 6.252884384653826, - 7.492515121921766, - 8.861767233088425, - 9.303018723948139, - 9.727282729356293, - 10.16840782442275, - 10.531020074403422, - 10.855294623394027, - 11.145619222037533, - 11.396458039795252, - 11.58805283381493, - 11.810908872945866, - 11.966043061014735, - 12.043337017337477, - 12.1702368050359 + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.5060808689175356, + 2.800134439757692, + 3.143256640490363, + 3.5115931830794134, + 3.856371400101421, + 4.438015845543513, + 4.867708801573733, + 5.216324289383681, + 5.775883677547704, + 6.218945420061054, + 7.422787553543587, + 8.723431483738334, + 9.132330349511395, + 9.519916256558748, + 9.916486305305636, + 10.237093174438648, + 10.519492789617704, + 10.768754770173295, + 10.981336755114539, + 11.141931285695081, + 11.326897525151242, + 11.454384108001973, + 11.517438552524153, + 11.620221865575353 ], "5._96._0.075": [ - 2.2092718103274045, - 2.555323563332806, - 2.851914879195259, - 3.2002657723579073, - 3.524248892192481, - 4.002854171279338, - 4.662552820127489, - 5.330892983890187, - 6.450359607520108, - 7.259342795858092, - 7.901782443271652, - 8.90216606057877, - 9.66726708677855, - 11.615207704918681, - 13.521102987552423, - 14.082488865716087, - 14.59725638674436, - 15.10797112289584, - 15.508774238414722, - 15.854424561207423, - 16.153279257943076, - 16.40376048018958, - 16.590906089447703, - 16.80428371788992, - 16.95029352042053, - 17.022184217942563, - 17.13909243329969 + 2.209271810327403, + 2.5553235628420947, + 2.85191417106835, + 3.2001864870656878, + 3.523485519269141, + 3.9993836543846673, + 4.653383089429759, + 5.313774307764784, + 6.413405840031446, + 7.201749149251708, + 7.822822269106146, + 8.778486940566422, + 9.497894825670153, + 11.276787922769273, + 12.937485317219407, + 13.412161639654101, + 13.842926754804644, + 14.26632351988241, + 14.596375369272456, + 14.87952041978683, + 15.123557174936245, + 15.327692912673553, + 15.479958916081756, + 15.653505414115946, + 15.772062907850747, + 15.830324368858253, + 15.924837218418915 ] }, "logtime": [ @@ -8535,230 +4007,6 @@ 3.003 ] }, - "5_7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835166957762168, - 3.1871192193948716, - 3.521147030588982, - 4.023365855811663, - 4.606310536861947, - 5.52515598031232, - 6.77263570135712, - 7.997135727771614, - 9.92999729441873, - 11.22337639335568, - 12.186594071393163, - 13.575682225506759, - 14.55622055701396, - 16.78124998484241, - 18.6777476399503, - 19.19763173963423, - 19.662692876376198, - 20.114355576794217, - 20.4631142308265, - 20.76083424900357, - 21.016337424101554, - 21.229477470103426, - 21.38829525631156, - 21.569333696470657, - 21.692929118913135, - 21.753606090985407, - 21.85198095262321 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.451192833143697, - 2.788419622162329, - 3.044991496174073, - 3.3877527097132187, - 3.6160726391301226, - 3.799627373851401, - 4.098019465268922, - 4.339022209436383, - 5.026107662084141, - 5.84394365642888, - 6.124615253958708, - 6.405870576751012, - 6.711776450382557, - 6.976049734270528, - 7.223365052655983, - 7.455768851660637, - 7.666468817307147, - 7.834226407494251, - 8.03832652011986, - 8.18637926757226, - 8.262155184919267, - 8.389625677058838 - ], - "5._384._0.0875": [ - 3.4908602709814938, - 4.017007062766977, - 4.630417830026466, - 5.600827344181993, - 6.712598902640248, - 8.408758874311891, - 10.570772862826624, - 12.508212812865507, - 15.2215281984994, - 16.852577250427405, - 17.996349265134604, - 19.563936321134925, - 20.6272395253978, - 22.952394754249866, - 24.8806435108924, - 25.4038691843546, - 25.871930403982354, - 26.326162794350626, - 26.677169356022667, - 26.97677662655899, - 27.234209525406104, - 27.44925629033428, - 27.609543992757892, - 27.79250697522708, - 27.91738123041389, - 27.978632345063325, - 28.07781719007702 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.506080868963746, - 2.8001345620605447, - 3.143276570000903, - 3.511900157579727, - 3.8574036564335623, - 4.440887644405855, - 4.872355272100327, - 5.222739077667298, - 5.78612399251235, - 6.233584820740342, - 7.459346614363772, - 8.806522081272087, - 9.235623772330808, - 9.644649359760043, - 10.065407998370153, - 10.407115303520149, - 10.709197465971132, - 10.976581672480844, - 11.205104488448498, - 11.378007511226459, - 11.577330362486968, - 11.71485709696196, - 11.782944591681959, - 11.894044701312799 - ], - "5._96._0.075": [ - 2.209271810327405, - 2.5553235630354045, - 2.851914450027433, - 3.2002177206514744, - 3.523786236921332, - 4.000750567092967, - 4.656992377573533, - 5.320529911189783, - 6.4291314836706634, - 7.229489083826276, - 7.864634605008324, - 8.850712504547534, - 9.600286040890413, - 11.477377774830977, - 13.254169918700697, - 13.765261520915884, - 14.229802198271477, - 14.686930537571142, - 15.043418919595636, - 15.349359696970724, - 15.612994468594879, - 15.833441725498917, - 15.997853820564732, - 16.18514736806034, - 16.313101220540652, - 16.375999386379654, - 16.478090968077424 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, "5_8": { "bore_locations": [ [ @@ -8986,229 +4234,5 @@ 2.275, 3.003 ] - }, - "6_6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351669577621674, - 3.1871192193948676, - 3.521147030588981, - 4.023365855809394, - 4.606310532051615, - 5.525154590156437, - 6.772940468158832, - 7.999806022714185, - 9.941598757751711, - 11.242662884163058, - 12.211544315706782, - 13.607906136045528, - 14.59263935206886, - 16.824091879097892, - 18.72312660757386, - 19.24335397415481, - 19.708619004058914, - 20.160401851536292, - 20.509208190057848, - 20.806947482446287, - 21.06245207261176, - 21.27558489730093, - 21.434393969024875, - 21.61542069542917, - 21.739005847415658, - 21.799676794051173, - 21.898040686672307 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.4511928331436965, - 2.7884196221623285, - 3.044991496174073, - 3.3877527097132196, - 3.6160726391301234, - 3.7996273738513993, - 4.098019465268857, - 4.339022209371263, - 5.026107217697417, - 5.8440414428390755, - 6.12496204455322, - 6.406693192418688, - 6.7134419933778755, - 6.978744364157664, - 7.2272648406681945, - 7.460965845398456, - 7.672921351394197, - 7.841682627848078, - 8.046915876111084, - 8.195645774770457, - 8.271694307563981, - 8.399463961773895 - ], - "5._384._0.0875": [ - 3.4908602709826084, - 4.0170070627462415, - 4.630417814857196, - 5.600826537631196, - 6.712894335293744, - 8.412784240039514, - 10.585898349981383, - 12.534925378833286, - 15.261716518050669, - 16.89842738522324, - 18.045140324557863, - 19.615586697432747, - 20.680204821488207, - 23.00696807464605, - 24.93573195105683, - 25.459015695729356, - 25.927119645774955, - 26.381384192582434, - 26.732414022325983, - 27.032040016138804, - 27.289490757228663, - 27.50455465452447, - 27.66485590067734, - 27.847836732142586, - 27.972723477401907, - 28.033980567026, - 28.133174527050837 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.5060808689637466, - 2.8001345620605465, - 3.1432765700009027, - 3.511900157579732, - 3.8574036564334957, - 4.440887644389008, - 4.872355267997838, - 5.222739998030375, - 5.786151397567435, - 6.23375454128204, - 7.461544063755105, - 8.815056482358655, - 9.246689656701514, - 9.658149990958638, - 10.081305862476338, - 10.42477198168299, - 10.72821721038496, - 10.996609470756361, - 11.22581700371914, - 11.399115925681143, - 11.598748708885626, - 11.736397212995387, - 11.80451587427758, - 11.915623087673218 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235630354045, - 2.8519144500274347, - 3.2002177206514753, - 3.5237862369213295, - 4.000750567092088, - 4.656992371761951, - 5.320529068038654, - 6.429256420354291, - 7.230505847415193, - 7.867261249100356, - 8.857381709996897, - 9.610988894823729, - 11.499131461832192, - 13.284176057911953, - 13.79691991061618, - 14.262664615342693, - 14.720695672941652, - 15.077691859446688, - 15.383946316603518, - 15.647759380058123, - 15.86829371610848, - 16.032740186622522, - 16.220041339883917, - 16.347981997621094, - 16.41086759714324, - 16.512931200571227 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json index 2c5350d25a..bd83a6439c 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json @@ -1278,458 +1278,6 @@ } }, "3_6": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83516745572232, - 3.187164260697038, - 3.521758416458107, - 4.030192088364172, - 4.646261439772235, - 5.717017129287225, - 7.326925568466069, - 8.964052055136339, - 11.494452283070519, - 13.11755294031725, - 14.290489131104076, - 15.935284500994108, - 17.06867013884871, - 19.57613757874065, - 21.667295260273, - 22.23577657579997, - 22.743312883021048, - 23.23544694047426, - 23.61510653171925, - 23.9390858679325, - 24.217094784163827, - 24.4490377281152, - 24.621896556369855, - 24.819028616092265, - 24.95363345137911, - 25.019715006464775, - 25.12685029937191 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224729, - 2.4511928331517985, - 2.7884197364921035, - 3.044998755169091, - 3.3879831434472933, - 3.6171625248370622, - 3.8025219530689567, - 4.108404491973627, - 4.362693427139959, - 5.143229554676166, - 6.177681975189291, - 6.548521111803748, - 6.923074596436025, - 7.329829984678422, - 7.677778041624229, - 7.998395186609383, - 8.293726715607674, - 8.55527353948324, - 8.758573478036444, - 8.998951887409529, - 9.16819131835536, - 9.253053425877663, - 9.392863975729556 - ], - "5._384._0.0875": [ - 3.491710465871128, - 4.026035533467984, - 4.680920515487365, - 5.8283546849630925, - 7.269189491499992, - 9.536593628946806, - 12.343414828336613, - 14.737842091886716, - 17.93766330587933, - 19.799997074155428, - 21.086745960507205, - 22.831420327845183, - 24.005903966594747, - 26.558475549794636, - 28.666717573290178, - 29.238068155841532, - 29.749335464589432, - 30.24558118269299, - 30.62922578437871, - 30.956757436194383, - 31.238315952502962, - 31.473631335535135, - 31.64907020143248, - 31.849416218392747, - 31.98617813031912, - 32.05326048057017, - 32.161875608595565 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125465, - 2.1622431316564765, - 2.506080869002254, - 2.800134664058627, - 3.143294367352589, - 3.512349088440217, - 3.860455459422509, - 4.466503665989877, - 4.94425444877083, - 5.3552535928960845, - 6.0550055406660555, - 6.63558598747089, - 8.266286581061992, - 10.014613979720165, - 10.550168492821417, - 11.049393739174036, - 11.551631821022077, - 11.950834077563234, - 12.297617811472632, - 12.599641441194837, - 12.854162925852604, - 13.044740184638021, - 13.262248090401393, - 13.411118182916624, - 13.48445358765977, - 13.603646146572514 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.5553235631964974, - 2.851914682871338, - 3.2002464595981492, - 3.5242197275795712, - 4.005855741520878, - 4.697604632445609, - 5.46067034629398, - 6.865747285132757, - 7.930182502539429, - 8.778983703410592, - 10.079745645873826, - 11.044664129078168, - 13.357474364166736, - 15.423526095226146, - 16.000592635654204, - 16.519061617563818, - 17.024678065340005, - 17.416087335220762, - 17.750509741068264, - 18.037571302822197, - 18.27693255143384, - 18.45519008943787, - 18.65803083778368, - 18.796469452588028, - 18.864472463413147, - 18.974808350579053 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351669594995705, - 3.1871255195515285, - 3.5214606010282887, - 4.028860574040354, - 4.640139789976533, - 5.6855301755258685, - 7.224788808799227, - 8.765730992384217, - 11.121951415872221, - 12.624896776721515, - 13.709052762329016, - 15.228301311489313, - 16.274969837559663, - 18.593123132350712, - 20.5297214047708, - 21.056652167597928, - 21.527471569648217, - 21.98428716961077, - 22.336982011304297, - 22.638016649474473, - 22.896470926527048, - 23.112197168799547, - 23.272982801651697, - 23.45638647809579, - 23.58160819264383, - 23.643072400044673, - 23.74268320527873 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.4511928331436965, - 2.788419622271439, - 3.04499176164158, - 3.3878358246552183, - 3.6167438118471473, - 3.8017767305706642, - 4.106626996090231, - 4.35903807227182, - 5.124484333900309, - 6.118509907347482, - 6.470447565692236, - 6.823961641305865, - 7.2060384025324655, - 7.531564117082935, - 7.830695007415974, - 8.105679728978645, - 8.34890616130733, - 8.537866227900754, - 8.761354392208329, - 8.91878033792957, - 8.997735606352277, - 9.127863658462704 - ], - "5._384._0.0875": [ - 3.491339130289053, - 4.024396087245562, - 4.673161854643847, - 5.79049468996096, - 7.166781443617395, - 9.29737019147199, - 11.905034530314955, - 14.117619684144572, - 17.068140567212215, - 18.78433735068927, - 19.97027047424311, - 21.57925464964123, - 22.66295082246786, - 25.021347711871943, - 26.972003445301997, - 27.500990039720914, - 27.974567697802453, - 28.434413818732544, - 28.790097469443545, - 29.093785417797058, - 29.35492548648835, - 29.573231942213752, - 29.735990637922527, - 29.921873226746005, - 30.04874964072656, - 30.110973909237668, - 30.21169413593424 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.5060808689637466, - 2.800134562146768, - 3.1432778674520634, - 3.5121092077278506, - 3.8596714483420556, - 4.462535799663829, - 4.933118411144865, - 5.334066014510715, - 6.009413967551311, - 6.564042491155406, - 8.102435130910944, - 9.733326228002188, - 10.230745085424598, - 10.69417206066978, - 11.160248797692535, - 11.530797494586517, - 11.85280997855399, - 12.133476068681912, - 12.370220658058537, - 12.547615268397065, - 12.750307112458126, - 12.889120094394757, - 12.957508350756225, - 13.068644886547432 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235630354045, - 2.851914450439796, - 3.2002206775693653, - 3.5239843117173613, - 4.0047658987097305, - 4.691378947272907, - 5.438183359450301, - 6.787713819202035, - 7.7949573598475785, - 8.591907330314857, - 9.805862703501584, - 10.702562480190728, - 12.845867771815946, - 14.759078055805874, - 15.293618792217112, - 15.77436093343031, - 16.243534834763093, - 16.607111039654754, - 16.917908151266136, - 17.18491426424339, - 17.40772603619222, - 17.57371259314274, - 17.76269507112566, - 17.891689197196865, - 17.955044994103073, - 18.057800582396776 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, "3": { "bore_locations": [ [ @@ -2168,7 +1716,7 @@ } }, "3_7": { - "1": { + "5": { "bore_locations": [ [ 0.0, @@ -2186,22 +1734,6 @@ 10.0, 5.0 ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], [ 0.0, 30.0 @@ -2229,25935 +1761,149 @@ ], "g": { "5._192._0.08": [ - 2.835168235501288, - 3.187225138144502, - 3.5222237743672355, - 4.031889337262786, - 4.65095210521015, - 5.7365825686151215, - 7.395991905049493, - 9.115963533793005, - 11.83485385255748, - 13.614395464935578, - 14.915218828234282, - 16.756047598175453, - 18.034105373499276, - 20.87724725831709, - 23.25606449963362, - 23.90323497771283, - 24.480425744323654, - 25.03964240057237, - 25.470442303067852, - 25.83793688525749, - 26.15294911791904, - 26.41550267506322, - 26.611133782029516, - 26.834106093553586, - 26.98637289643344, - 27.0611539701575, - 27.18249608786878 + 2.8351663640325118, + 3.187079028147522, + 3.521099375312869, + 4.026628185639796, + 4.624121933500021, + 5.589257181505182, + 6.914536806279306, + 8.198262888562768, + 10.165724667933992, + 11.443435696474708, + 12.378511326324654, + 13.707539661916094, + 14.634655887743456, + 16.716709292758885, + 18.477940517387317, + 18.959535511622516, + 19.390518402212614, + 19.80920812106775, + 20.13279984576155, + 20.409098301906138, + 20.646417420962138, + 20.844555696571977, + 20.99223218322805, + 21.160674679044376, + 21.275669901026205, + 21.33210917521428, + 21.423556061535383 ], "5._24._0.075": [ - 0.8740059532267968, + 0.8740059532267964, 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.451192833164528, - 2.788419915981721, - 3.045009744995194, - 3.3882144177280495, - 3.617808984737501, - 3.8036023132418673, - 4.110385726751085, - 4.36584072950022, - 5.155030460649048, - 6.2164576061442816, - 6.601805772922175, - 6.993983933344967, - 7.423390504160157, - 7.793926223981667, - 8.138142377527931, - 8.457810526378724, - 8.743177808074885, - 8.966600814322268, - 9.232668571334997, - 9.421398231836692, - 9.5165548819853, - 9.674158666212792 - ], - "5._384._0.0875": [ - 3.492288303014158, - 4.027992889230436, - 4.686550345548092, - 5.8519301332831, - 7.338285388727023, - 9.726871915447486, - 12.760581092795954, - 15.406816311458183, - 19.004703924690737, - 21.121937999423693, - 22.591323646643364, - 24.58782441203802, - 25.933645979393194, - 28.856220775134705, - 31.266012558639126, - 31.918456182816538, - 32.50167485603215, - 33.06725575113439, - 33.50397639423851, - 33.876728170486956, - 34.196910425063784, - 34.464321758352305, - 34.663673360374304, - 34.891254841129324, - 35.046632545736365, - 35.12286961539634, - 35.24638732243558 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.1622431316564747, - 2.50608086906277, - 2.8001348242058364, - 3.1433202956988264, - 3.512724781975352, - 3.861591420296442, - 4.469910415168822, - 4.951695898504113, - 5.368516852770294, - 6.083747728244587, - 6.682588214919556, - 8.391084633362508, - 10.267551388943927, - 10.852291361020686, - 11.401059487425028, - 11.956792771059943, - 12.400881654431204, - 12.788345094530706, - 13.126849537836916, - 13.412747360583873, - 13.627169552537298, - 13.872045230135388, - 14.039834240499516, - 14.122595424544361, - 14.257310973564822 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.555323563449639, - 2.8519150481209046, - 3.2002869738671333, - 3.5245885462973905, - 4.007325614978504, - 4.702337715562123, - 5.474735334456455, - 6.916967980713842, - 8.026840927600418, - 8.922472045429046, - 10.31256529460049, - 11.35710473571817, - 13.90084348748471, - 16.213390665548403, - 16.86453996971265, - 17.450509889728593, - 18.022651569875517, - 18.465579619101284, - 18.844145543656843, - 19.168905782983078, - 19.439488082550426, - 19.640949580427325, - 19.87000545844089, - 20.026350192631597, - 20.103187793967667, - 20.22798101515618 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351678756032515, - 3.1871970399988228, - 3.522007562236359, - 4.03089281573124, - 4.646127990025924, - 5.711379307725821, - 7.314251863526732, - 8.956057037107483, - 11.526922464379215, - 13.199871666785741, - 14.420000431059396, - 16.14443929547962, - 17.340812373607577, - 20.003467286489258, - 22.233843785398868, - 22.841042681799518, - 23.382979929843167, - 23.908336861766813, - 24.313355708780694, - 24.658928918496702, - 24.95529757950357, - 25.202419584569363, - 25.386566936194033, - 25.59649485688901, - 25.739844419487156, - 25.810234414069996, - 25.92440911008285 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.4511928331586534, - 2.7884198331403587, - 3.0450046727655895, - 3.388107552311976, - 3.617504394443999, - 3.8030547525730674, - 4.1090335832748925, - 4.3629883596674865, - 5.1400519740667265, - 6.169203763372199, - 6.539491606119128, - 6.9147504707839005, - 7.3240331585082945, - 7.675941725894203, - 8.001988070256798, - 8.304117448900024, - 8.573390925659975, - 8.784004191761305, - 9.034726629132932, - 9.212540779669483, - 9.302175682488283, - 9.450631503747145 - ], - "5._384._0.0875": [ - 3.492018435639065, - 4.02675548245615, - 4.6804104191267575, - 5.821617176547088, - 7.256332342733712, - 9.532937414735727, - 12.395290160456664, - 14.877548722417195, - 18.24240101237221, - 20.21994965790336, - 21.592122315058752, - 23.457191329903598, - 24.714820752712292, - 27.44894259659483, - 29.706179039200602, - 30.317680568674543, - 30.864540554047736, - 31.3950631152201, - 31.804912340530848, - 32.154760149158776, - 32.455356697599704, - 32.7064732246906, - 32.893678933069495, - 33.10741380528634, - 33.253325292784176, - 33.324907950225914, - 33.44085302680202 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.5060808690348386, - 2.800134750291739, - 3.1433083287265173, - 3.5125506995425453, - 3.861015275892013, - 4.466812505243812, - 4.94283628566713, - 5.351595213161021, - 6.047352909615055, - 6.625539441027669, - 8.259258468640635, - 10.036240908146945, - 10.587412231759028, - 11.10418067442243, - 11.627102367840678, - 12.04485409861045, - 12.409334131270366, - 12.727879257037417, - 12.997079821660309, - 13.199080548580913, - 13.429978208359524, - 13.588262137168325, - 13.666337050439, - 13.793399887296896 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.555323563332807, - 2.85191487954418, - 3.2002682747689453, - 3.524417713066372, - 4.006516232881039, - 4.697428492207081, - 5.456754558672361, - 6.854579484336028, - 7.918521113442436, - 8.771787164655054, - 10.089026665802097, - 11.074708459462153, - 13.46684790599154, - 15.637287022512568, - 16.248201045880865, - 16.798354524609817, - 17.33580516834714, - 17.752227587811884, - 18.108286899016626, - 18.413964129553918, - 18.668824499890942, - 18.858636513324058, - 19.074557767809452, - 19.221950648203826, - 19.294379369363067, - 19.41196676585034 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351674557223214, - 3.1871642588560194, - 3.5217553198655955, - 4.029728173559448, - 4.640348145143611, - 5.679457576795291, - 7.206641116757026, - 8.745047041344503, - 11.13180651608799, - 12.679996236906534, - 13.808925313837202, - 15.405639185306676, - 16.51446844841161, - 18.987709639506456, - 21.064843393671822, - 21.631017553577394, - 22.136765216445667, - 22.627364317664732, - 23.005889669286237, - 23.328931908771963, - 23.606116087323834, - 23.837339507620495, - 24.00965180715784, - 24.20612434390981, - 24.340276405756494, - 24.40613947469509, - 24.512932914912366 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224729, - 2.451192833151799, - 2.788419736492105, - 3.044998755164691, - 3.3879828766502125, - 3.61714904420091, - 3.802415755424216, - 4.10744706260153, - 4.359597252377224, - 5.1212933072254545, - 6.1072592605925236, - 6.4570938419022665, - 6.809628049511205, - 7.192365389028966, - 7.520329977850644, - 7.823603134922717, - 8.10435999265909, - 8.354576472407945, - 8.550413000351668, - 8.783930442783213, - 8.949862544283166, - 9.033610140800183, - 9.172509577083275 - ], - "5._384._0.0875": [ - 3.4917036471123835, - 4.025307680647497, - 4.673011020333885, - 5.782993862173108, - 7.148483678316307, - 9.278472100478979, - 11.931353104289931, - 14.22600268736125, - 17.337558182188328, - 19.168012351829333, - 20.439133720679106, - 22.16870375322818, - 23.335928571370353, - 25.87736165012629, - 27.978710007329052, - 28.548361648335568, - 29.058008316334604, - 29.552610097649886, - 29.934882507441912, - 30.261216164640917, - 30.541682193513694, - 30.776032983549168, - 30.950739005879406, - 31.15021564070593, - 31.28638031675921, - 31.353172259444197, - 31.461329298026236 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125465, - 2.1622431316564765, - 2.506080869002254, - 2.8001346640586284, - 3.1432943672617757, - 3.5123476061523897, - 3.8603429692791438, - 4.463134601395299, - 4.931988575467072, - 5.330348001251688, - 6.0002014740586205, - 6.550462637137592, - 8.084899112344852, - 9.73766523249793, - 10.249163305676724, - 10.729027640978236, - 11.21499387977369, - 11.603717438753788, - 11.943275063246704, - 12.2404853592163, - 12.492047008348349, - 12.681036722262636, - 12.897398193307518, - 13.045863592836653, - 13.119121942980392, - 13.23835569127769 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.5553235631964966, - 2.851914682871339, - 3.2002464591627837, - 3.5242184103816294, - 4.005571113317137, - 4.691542221800272, - 5.434231275813852, - 6.77280023516521, - 7.775076168475129, - 8.572647491915658, - 9.797620540588275, - 10.71161552879673, - 12.928786724509953, - 14.944711522215787, - 15.513106109914297, - 16.025715144708194, - 16.527049498554568, - 16.916004560292908, - 17.24880821246523, - 17.534801132707177, - 17.773458197512156, - 17.951271586021637, - 18.153661983571833, - 18.292136398656417, - 18.35971423632784, - 18.469926769254055 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351669594995705, - 3.1871255175431537, - 3.5214572227788423, - 4.02835228087116, - 4.633500573486632, - 5.640879151385137, - 7.075469473661736, - 8.491479311276652, - 10.671749232300593, - 12.085511372400733, - 13.11794220376573, - 14.581376018425273, - 15.599756676196446, - 17.878609324516557, - 19.79910712299802, - 20.323390637192354, - 20.79213935153591, - 21.247175837721915, - 21.59855627117228, - 21.898505639482437, - 22.156005551349256, - 22.370899708536914, - 22.531053769711153, - 22.713695493370253, - 22.838394391827407, - 22.899606436595707, - 22.998822844533144 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.451192833143697, - 2.7884196222714386, - 3.0449917616367785, - 3.387835533602863, - 3.616729099717632, - 3.8016606315457535, - 4.105571563958834, - 4.3555788610940445, - 5.098697077883243, - 6.031478476283009, - 6.356346907598684, - 6.681588355443242, - 7.033068174462754, - 7.333476641865092, - 7.611038826103121, - 7.868110039042397, - 8.097554120743398, - 8.277494379920409, - 8.492728349830783, - 8.64617759300628, - 8.72378932314699, - 8.852803307776007 - ], - "5._384._0.0875": [ - 3.4913316752721975, - 4.023597684462511, - 4.664234769298046, - 5.736222656247091, - 7.017041170310778, - 8.975054413905625, - 11.395962056117424, - 13.491032117254623, - 16.339760863353316, - 18.019590542327933, - 19.18768953022785, - 20.779431912361407, - 21.8548331167545, - 24.200423468478697, - 26.143107206169827, - 26.670124996848063, - 27.141823149072955, - 27.599763020447824, - 27.953856252101296, - 28.25615617455517, - 28.516030905646236, - 28.733220389483463, - 28.89513063635666, - 29.080006705931165, - 29.206191847857973, - 29.268080077291085, - 29.36827034464209 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.506080868963746, - 2.8001345621467655, - 3.14327786735299, - 3.5121075906618615, - 3.8595485424750944, - 4.458784234083469, - 4.919031059199209, - 5.304693377756305, - 5.942566783722284, - 6.458434425052877, - 7.874659261510105, - 9.387574404042004, - 9.855992775742058, - 10.296255155632561, - 10.742998818047436, - 11.101213569213991, - 11.414728876517545, - 11.689754116201634, - 11.923036075042704, - 12.098569510463763, - 12.299914667480813, - 12.438255177444026, - 12.506555745615412, - 12.61774756730608 - ], - "5._96._0.075": [ - 2.209271810327405, - 2.5553235630354045, - 2.851914450439797, - 3.2002206770944213, - 3.5239828747509336, - 4.004454460211052, - 4.684568056449359, - 5.407115388835261, - 6.672907220541847, - 7.600796282093723, - 8.33295926496466, - 9.453020718500769, - 10.287818774590836, - 12.317573956663216, - 14.172486318867529, - 14.69707185456752, - 15.171038646544272, - 15.635260808894957, - 15.996003688177577, - 16.304927050144258, - 16.570697400366967, - 16.79269645460179, - 16.958171971159196, - 17.146638424847833, - 17.2753372061318, - 17.338572186525646, - 17.441165365255575 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351663640325118, - 3.187079028147522, - 3.521099375312869, - 4.026628185639796, - 4.624121933500021, - 5.589257181505182, - 6.914536806279306, - 8.198262888562768, - 10.165724667933992, - 11.443435696474708, - 12.378511326324654, - 13.707539661916094, - 14.634655887743456, - 16.716709292758885, - 18.477940517387317, - 18.959535511622516, - 19.390518402212614, - 19.80920812106775, - 20.13279984576155, - 20.409098301906138, - 20.646417420962138, - 20.844555696571977, - 20.99223218322805, - 21.160674679044376, - 21.275669901026205, - 21.33210917521428, - 21.423556061535383 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.451192833133977, - 2.7884194852066426, - 3.044983369404198, - 3.3876587165849865, - 3.6162237361043794, - 3.8007379836159765, - 4.103129720794652, - 4.350102829372217, - 5.067928120419007, - 5.936077471900313, - 6.232835121445177, - 6.528263994452777, - 6.846458728182723, - 7.118094303455485, - 7.3691373778191585, - 7.601970037069404, - 7.81024240141826, - 7.973996458213108, - 8.170576214330374, - 8.311249417293881, - 8.382568722127301, - 8.501421332908262 - ], - "5._384._0.0875": [ - 3.4908888766086696, - 4.0214372858495055, - 4.652182322530747, - 5.674285684119839, - 6.855637238669818, - 8.629119583234898, - 10.812661795538952, - 12.70643432437585, - 15.2907750005773, - 16.819034441384648, - 17.883354114009517, - 19.336025584072246, - 20.318656801322135, - 22.46586188873393, - 24.24738709804333, - 24.73104604652916, - 25.164120466171532, - 25.584719310636363, - 25.9100853134493, - 26.1878801786096, - 26.42674861454247, - 26.626423100504812, - 26.775273825459685, - 26.945246437882762, - 27.061246701378952, - 27.118131538555865, - 27.210197174032988 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564765, - 2.5060808689175356, - 2.8001344398525343, - 3.1432580674775066, - 3.5118195257398965, - 3.858580828981761, - 4.45290162982718, - 4.90113258488081, - 5.269790745706036, - 5.867569878811222, - 6.342998928383726, - 7.630218370919072, - 8.99875736085706, - 9.42340565644545, - 9.823428024995106, - 10.230313584163639, - 10.55748853873308, - 10.844452946620997, - 11.096798341774953, - 11.311336588816863, - 11.473039104576452, - 11.658900755076706, - 11.786782136171931, - 11.849958455775068, - 11.952840272265341 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235628420947, - 2.851914171521947, - 3.200189738662114, - 3.523700194199995, - 4.00307240574259, - 4.6750093684963225, - 5.370264392484583, - 6.547772192570917, - 7.392978051062503, - 8.055375224431513, - 9.06650934699318, - 9.82044322122481, - 11.660295696221507, - 13.352079239020547, - 13.832184631905527, - 14.266794426624795, - 14.693142242641112, - 15.025019229620597, - 15.309476385248932, - 15.554486436630631, - 15.759353953110262, - 15.912131620872866, - 16.086251572449545, - 16.2051801755, - 16.263612598479668, - 16.35838426983123 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "3_8": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351688203357903, - 3.1872707962963127, - 3.5225728057954364, - 4.033162690089689, - 4.65447322539896, - 5.751298158821693, - 7.448213414031256, - 9.2317259936519, - 12.100552406070221, - 14.010230129347955, - 15.42072003625813, - 17.434534621932695, - 18.843636946665278, - 21.998762047910454, - 24.65086810325138, - 25.373383864486815, - 26.01728654615494, - 26.640751457535266, - 27.12044749127293, - 27.529537218887437, - 27.879858760259324, - 28.171570948584087, - 28.388886040472645, - 28.63643648155223, - 28.805507205051477, - 28.888571982700146, - 29.023466367611416 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004344, - 2.111467924224728, - 2.451192833174076, - 2.7884200505989307, - 3.0450179873655165, - 3.38838787504442, - 3.618293855583839, - 3.804412689112293, - 4.1118721596674055, - 4.368202444012482, - 5.163897603341955, - 6.245694033541447, - 6.642018408638142, - 7.047599995492541, - 7.4944025787031245, - 7.882537007925091, - 8.245434819632164, - 8.584743204775515, - 8.889751211103391, - 9.130126820411915, - 9.41838958515215, - 9.624457808171835, - 9.728979174407533, - 9.90314901904194 - ], - "5._384._0.0875": [ - 3.4927218063944023, - 4.029461620248903, - 4.690777276283243, - 5.869671613493908, - 7.390522502678669, - 9.87256920689058, - 13.088898840014998, - 15.948719876302805, - 19.90189470386056, - 22.25530110767392, - 23.896893164294145, - 26.133558455725865, - 27.644135635108956, - 30.923920352096154, - 33.625162034448955, - 34.35594953064827, - 35.0085600142021, - 35.64090844335478, - 36.128620732784114, - 36.54479510317179, - 36.90200594995142, - 37.2001430034589, - 37.42238114371683, - 37.67601119913927, - 37.84919725959789, - 37.93419679273758, - 38.07199679999493 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125465, - 2.162243131656477, - 2.506080869108155, - 2.800134944316244, - 3.1433397419657005, - 3.513006559022909, - 3.8624435375842165, - 4.472467284934305, - 4.957283161487376, - 5.378479732629349, - 6.105365077471659, - 6.7179839292952925, - 8.486017807510716, - 10.464139046334989, - 11.089454590627168, - 11.679922208522193, - 12.281615986753797, - 12.765048655725744, - 13.188779638767642, - 13.560300190806533, - 13.874964171781833, - 14.111473777550504, - 14.381915808060114, - 14.56751791684244, - 14.659207421135799, - 14.808715774199138 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235636394978, - 2.851915322058077, - 3.2003173595893197, - 3.524865167137721, - 4.008428308262461, - 4.705890818078485, - 5.485305534232176, - 6.955620384835796, - 8.100044771425496, - 9.031707711618164, - 10.492035382699983, - 11.600833924389327, - 14.338884587621566, - 16.87097458235372, - 17.59022702464941, - 18.23889564641731, - 18.8733677708446, - 19.364834221850227, - 19.785162289486365, - 20.145658922226424, - 20.445864316468914, - 20.66935963737085, - 20.923299985463668, - 21.096660472672767, - 21.181907595442663, - 21.320497794058262 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351685474129864, - 3.1872494884153286, - 3.522408684502425, - 4.032383695148594, - 4.6505242651208265, - 5.730382327731174, - 7.3802567247991115, - 9.098422768366898, - 11.840266867047221, - 13.655588937904321, - 14.993148671649562, - 16.899752649402124, - 18.232355367633655, - 21.215986838547455, - 23.725516740260904, - 24.409516441079464, - 25.019492932966166, - 25.610406480723817, - 26.06537505153288, - 26.45345216622018, - 26.785937010564147, - 27.062911765395057, - 27.269264098252734, - 27.504374418305474, - 27.664939364576966, - 27.743812826187828, - 27.871854811675114 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.4511928331696193, - 2.7884199877775666, - 3.045014140924194, - 3.388306821406882, - 3.6180621896773086, - 3.8039921103720196, - 4.110799109091014, - 4.365886967224013, - 5.151487373383529, - 6.206469440010263, - 6.590327472067176, - 6.981878295394326, - 7.411893670448344, - 7.784334156490145, - 8.131753615015938, - 8.455917254037493, - 8.746820525349587, - 8.975809026116828, - 9.250210544100812, - 9.446240640754853, - 9.54561546846337, - 9.711145626042498 - ], - "5._384._0.0875": [ - 3.49251676103972, - 4.028486689645671, - 4.68573341505693, - 5.844503561728973, - 7.322391960319545, - 9.710393693737547, - 12.778438693377106, - 15.49106840898047, - 19.227835143628372, - 21.44841008695673, - 22.996607031188063, - 25.10623194260872, - 26.53120660945102, - 29.627980157028354, - 32.18127744311011, - 32.87241123306779, - 33.48986682134808, - 34.08836809809048, - 34.550192518911764, - 34.944311180046824, - 35.282688179521976, - 35.56517533369003, - 35.775750210850795, - 36.01609097523208, - 36.18018982074622, - 36.26071909950651, - 36.39123787558378 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.506080869086975, - 2.800134888264721, - 3.1433306670040664, - 3.512874469427577, - 3.8620009467479246, - 4.469951447883826, - 4.9499709173735, - 5.364459972597304, - 6.075179995989946, - 6.670685456869286, - 8.376302072940733, - 10.269407659378542, - 10.865245073940468, - 11.427227011322302, - 11.999313082493149, - 12.458665976099553, - 12.861172359589496, - 13.214101122605285, - 13.513105643902467, - 13.737909249184732, - 13.995137027427187, - 14.171724803466603, - 14.258956434074905, - 14.401159984209524 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323563550898, - 2.8519151942207275, - 3.200303179409308, - 3.524735549816666, - 4.007800202514309, - 4.70187003059633, - 5.470400096722255, - 6.903791352861719, - 8.010039010816826, - 8.906254202146068, - 10.304650974514892, - 11.362484495440054, - 13.965384817655352, - 16.366048604899834, - 17.047354670580386, - 17.6620850149564, - 18.26354891051704, - 18.729748395165213, - 19.12859475155976, - 19.470882140239027, - 19.756098255759554, - 19.96849082426762, - 20.209928706564224, - 20.37476590043455, - 20.455810773208945, - 20.58751877425868 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83516823550129, - 3.18722513656649, - 3.52222112008755, - 4.03149160832489, - 4.645879866915699, - 5.7043160736170515, - 7.292067464225548, - 8.923830842138864, - 11.505227462966255, - 13.20758151250436, - 14.460858007046808, - 16.247498359531704, - 17.496819112872394, - 20.29865045628543, - 22.66041323061611, - 23.304833192263462, - 23.879969466169722, - 24.437477520341503, - 24.86705406011469, - 25.233554374429318, - 25.547705207290434, - 25.809514587610224, - 26.004582489004036, - 26.22687603622352, - 26.37867865451282, - 26.453236679269306, - 26.57423133268468 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.451192833164529, - 2.7884199159817213, - 3.045009744991422, - 3.3882141890436075, - 3.617797429808401, - 3.803511284458443, - 4.109564953889383, - 4.363186180908279, - 5.136202586018268, - 6.155853285468887, - 6.522946746613223, - 6.8956973120562495, - 7.3034501560239855, - 7.655455219726115, - 7.9831161462552425, - 8.288414515928629, - 8.562215286511993, - 8.777752666544473, - 9.0362755440646, - 9.221193942631636, - 9.31501446886073, - 9.471460602962697 - ], - "5._384._0.0875": [ - 3.492282456304094, - 4.027368799714403, - 4.679764486745187, - 5.812944730233619, - 7.234016166668295, - 9.498688273075702, - 12.382120501493262, - 14.922508674404323, - 18.419725550636844, - 20.498669927820742, - 21.948907736853577, - 23.92675782140675, - 25.263640837662063, - 28.172946251211822, - 30.57502548046371, - 31.2256373107534, - 31.80712232112032, - 32.37095548276862, - 32.80622028007892, - 33.17770202428497, - 33.49672535607998, - 33.763112462624925, - 33.96168555661122, - 34.18834246111305, - 34.34308492383515, - 34.41901319009055, - 34.54204421057171 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.162243131656475, - 2.5060808690627714, - 2.8001348242058364, - 3.1433202956209865, - 3.5127235114226405, - 3.861494990921999, - 4.46702109840046, - 4.941174611756926, - 5.347154705447738, - 6.036720602850455, - 6.609412846995472, - 8.23234698610636, - 10.017507797297522, - 10.577662482086481, - 11.106022161330438, - 11.644023352419877, - 12.0763187913655, - 12.455428311240922, - 12.788222622086199, - 13.07052577930096, - 13.282989075456774, - 13.526432039310862, - 13.693705007412207, - 13.776361090004645, - 13.911112514246593 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.5553235634496407, - 2.851915048120906, - 3.2002869734939625, - 3.524587417254492, - 4.007081605616775, - 4.697137346839449, - 5.452036550309311, - 6.836891239102531, - 7.892224588370613, - 8.741650766268132, - 10.06055522521551, - 11.055040776173131, - 13.498451074951314, - 15.753721179487444, - 16.394468153027542, - 16.973318364034682, - 17.540212626364365, - 17.980133958501, - 18.356738724672805, - 18.68023230417539, - 18.950008885727822, - 19.15097947172189, - 19.37956046366482, - 19.535644138320418, - 19.612379650575754, - 19.737042647820342 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351678756032506, - 3.187197038299423, - 3.5220047035768354, - 4.030462453027368, - 4.6405206897676425, - 5.673994107121506, - 7.187786426051754, - 8.716748325099205, - 11.114240304967119, - 12.691977064135934, - 13.854252552606503, - 15.513739138701425, - 16.67603629526834, - 19.290098791121057, - 21.50055388229727, - 22.104562630985967, - 22.644097534345534, - 23.167458011769494, - 23.57104938666558, - 23.91546348098989, - 24.21082869800025, - 24.457084015342488, - 24.640575770857986, - 24.84971317040124, - 24.992522425501413, - 25.06265299913281, - 25.176423911573963 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.451192833158654, - 2.7884198331403587, - 3.045004672761528, - 3.3881073060346663, - 3.6174919455569934, - 3.8029565183722784, - 4.108141089273933, - 4.360069284906551, - 5.118460912368917, - 6.096072390098613, - 6.442904536535702, - 6.792995116871161, - 7.174154857648269, - 7.502124084975511, - 7.806896539590768, - 8.090720504640812, - 8.345395439787788, - 8.546123231723218, - 8.787452445195447, - 8.960546035269015, - 9.048529007158061, - 9.195544272830857 - ], - "5._384._0.0875": [ - 3.4920121438561953, - 4.026079266474439, - 4.672875600688386, - 5.7761716308078, - 7.129543434516861, - 9.248542816808932, - 11.922776601393068, - 14.275960504101143, - 17.521037876402318, - 19.45371864736531, - 20.803507255315303, - 22.64682771363732, - 23.894046679507028, - 26.612662732108507, - 28.860857518293763, - 29.470208995776805, - 30.01503047308487, - 30.543497673002495, - 30.951634805256436, - 31.299989369126216, - 31.599223339598947, - 31.849135559470696, - 32.03542597175962, - 32.24807360146662, - 32.39323824429266, - 32.46445796212259, - 32.579831221597175 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.506080869034839, - 2.8001347502917415, - 3.143308328642686, - 3.5125493312092995, - 3.86091124529938, - 4.463640507977688, - 4.9310007862063285, - 5.327036455494708, - 5.9915177786375535, - 6.536815408774773, - 8.06116111619288, - 9.72192348349981, - 10.24233819665037, - 10.733798366194145, - 11.23491970055343, - 11.63834084837251, - 11.992708558661901, - 12.304389398892024, - 12.569294804208257, - 12.76896092743464, - 12.998160599789047, - 13.155845015933378, - 13.233805552293589, - 13.360932824202598 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235633328057, - 2.8519148795441795, - 3.2002682743670694, - 3.5244164971366385, - 4.006252566689569, - 4.69167628939565, - 5.4307282222686615, - 6.757949393806442, - 7.752201088455693, - 8.54603612490599, - 9.772660708010175, - 10.695395687424556, - 12.964209443181787, - 15.065974600228154, - 15.664638645583247, - 16.206381537112808, - 16.737652318840546, - 17.150555396977797, - 17.504319816277505, - 17.808523823732195, - 18.062454499018173, - 18.25170419003787, - 18.4670864870894, - 18.614188333689253, - 18.686505647625097, - 18.80395481090785 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351674557223205, - 3.187164257015007, - 3.521752223094331, - 4.029262176517318, - 4.634256323762277, - 5.638157008261581, - 7.065420083887065, - 8.478884701809248, - 10.679134680781777, - 12.127034369487921, - 13.195490751745403, - 14.724824299165741, - 15.798457629252168, - 18.22149812008063, - 20.27797958346927, - 20.840837631917665, - 21.34406627185914, - 21.8325681815112, - 22.209594756095132, - 22.531421199568754, - 22.807554881100693, - 23.037872678760664, - 23.20950095737078, - 23.405149859876, - 23.538739588637597, - 23.604332841134415, - 23.710706489247492 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224729, - 2.4511928331518, - 2.7884197364921053, - 3.04499875516029, - 3.387982609851305, - 3.6171355580093305, - 3.802309329473276, - 4.106479433311707, - 4.356424341762536, - 5.097502548813131, - 6.025437639204655, - 6.348801468436818, - 6.673101734188832, - 7.024568922188278, - 7.326225404730193, - 7.606320150685498, - 7.867299936671468, - 8.101845857974924, - 8.28710164652291, - 8.510563939040823, - 8.671422058185726, - 8.753382082127487, - 8.890689647014323 - ], - "5._384._0.0875": [ - 3.4916968118921483, - 4.024575661314954, - 4.66481690389511, - 5.732701199284161, - 7.006938865941231, - 8.963570280620328, - 11.415627382552708, - 13.575324427794383, - 16.563325805110793, - 18.34779241781591, - 19.595928326719907, - 21.303135033256986, - 22.45963503605676, - 24.984999510495996, - 27.076931385247708, - 27.644340540187414, - 28.15186135718067, - 28.644321314702587, - 29.02481164852897, - 29.349592013652284, - 29.628641777555742, - 29.861741528527237, - 30.035497081274684, - 30.233844987161003, - 30.369234595271177, - 30.43564999266039, - 30.54321387532018 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125465, - 2.1622431316564765, - 2.506080869002255, - 2.800134664058628, - 3.143294367170957, - 3.512346123826869, - 3.86023029894455, - 4.459693710630897, - 4.9190368556789, - 5.303229237876491, - 5.937852641406798, - 6.450948660152014, - 7.86384857960775, - 9.390752789414016, - 9.869521489627722, - 10.322535376949592, - 10.785440729794182, - 11.159085055794549, - 11.487981930904828, - 11.777953399648096, - 12.02497425504029, - 12.211481276389076, - 12.426019467505498, - 12.573832631119808, - 12.646961916279764, - 12.766253177491219 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.555323563196498, - 2.85191468287134, - 3.2002464587274178, - 3.524217093150477, - 4.005285598331283, - 4.6852925429663195, - 5.4055710769490775, - 6.664843246327383, - 7.589131004889005, - 8.321008585270096, - 9.44759445807092, - 10.29427496219246, - 12.381618379460294, - 14.326064116154118, - 14.881800920772823, - 15.385635765742032, - 15.880507107598607, - 16.26577585593443, - 16.59616386438084, - 16.880601574212836, - 17.11827498652897, - 17.295493559981942, - 17.49731547760668, - 17.63518895869168, - 17.702968491494662, - 17.813015667390765 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351669594995896, - 3.187125515649212, - 3.5214537157826484, - 4.027777188615685, - 4.625795579590751, - 5.590962119222303, - 6.918134612139841, - 8.210082065407816, - 10.21224400600007, - 11.531396215543818, - 12.506726690665953, - 13.906376367888834, - 14.891325962660572, - 17.1220530714078, - 19.0224293188048, - 19.543429042214576, - 20.009663530680797, - 20.46259455516254, - 20.812467357381333, - 21.111194378561336, - 21.367640811296475, - 21.581629873432636, - 21.741102038471986, - 21.922925788220677, - 22.0470670510411, - 22.108011589061416, - 22.206811608942807 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.4511928331436974, - 2.7884196222714395, - 3.0449917616322524, - 3.38783523648633, - 3.6167130680649584, - 3.8015294519451506, - 4.104341678496447, - 4.351521760122666, - 5.069410144777099, - 5.938131189820203, - 6.235727309143375, - 6.532638236565353, - 6.853415148754126, - 7.128401622394682, - 7.383760785789729, - 7.6219716256889996, - 7.836477008374451, - 8.006297244962395, - 8.211830640183813, - 8.360317965075009, - 8.436155757313731, - 8.56353756786268 - ], - "5._384._0.0875": [ - 3.4913273691811137, - 4.022699949401587, - 4.653908057009591, - 5.676054537967916, - 6.8592238837644475, - 8.646187749167026, - 10.876385951809048, - 12.844331203038113, - 15.576465846267444, - 17.212724596498152, - 18.358931688695353, - 19.92925746204078, - 20.994330506049447, - 23.32430690066116, - 25.257764776300675, - 25.78257965109836, - 26.25219482690781, - 26.708039538547702, - 27.06039381288595, - 27.361179698676533, - 27.619676330730776, - 27.83565019990503, - 27.996637519121915, - 28.180418520973845, - 28.305852077530144, - 28.367375239267872, - 28.466990346940097 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.5060808689637457, - 2.8001345621467664, - 3.1432778672622783, - 3.5121059263447294, - 3.8594124247941206, - 4.45442661871832, - 4.902759411991929, - 5.271353108322692, - 5.869215809566322, - 6.345261692705777, - 7.6397176612415665, - 9.032123023208527, - 9.469529534341584, - 9.884229432128594, - 10.308929123409627, - 10.652668749116708, - 10.955872056458068, - 11.22383072586022, - 11.452623736471407, - 11.62566610576547, - 11.825131559053949, - 11.962763661792717, - 12.030902706085984, - 12.14209601353038 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.555323563035406, - 2.8519144504397964, - 3.20022067664954, - 3.5239813983709114, - 4.004104511472899, - 4.676665011675817, - 5.371916386214974, - 6.550318133626854, - 7.398794854006463, - 8.066433811726963, - 9.09197620596763, - 9.862911667157746, - 11.769784297370867, - 13.556542070421846, - 14.068967692851258, - 14.534390486673342, - 14.99226145931986, - 15.349338224724436, - 15.655833059879596, - 15.920016002325697, - 16.140994089378935, - 16.305845705708045, - 16.493710830459133, - 16.622081835904616, - 16.685189021509316, - 16.78762037183433 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "3_9": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351692752072406, - 3.187306308231393, - 3.5228442823858117, - 4.034153322311999, - 4.657213724101508, - 5.7627674874880475, - 7.489110084517385, - 9.322964279948419, - 12.313334165685445, - 14.331925352086806, - 15.836462574664495, - 18.002426025791742, - 19.529632833172247, - 22.9734616843697, - 25.884855929983065, - 26.679548278356798, - 27.387433025322288, - 28.07255797507362, - 28.599127635644567, - 29.048091176326995, - 29.432212363961607, - 29.751794575910278, - 29.98982888745176, - 30.26084038608783, - 30.445956446607894, - 30.53693770739715, - 30.684807011721144 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615422, - 1.4813847491413084, - 1.8198213217004355, - 2.111467924224729, - 2.4511928331815023, - 2.7884201553012113, - 3.0450243980984353, - 3.3885227872420725, - 3.618670992714098, - 3.8050430441205303, - 4.113028574575531, - 4.370040066837324, - 5.170803829716957, - 6.268535811871696, - 6.673473267649026, - 7.089601283214403, - 7.5501702893101275, - 7.952346158068716, - 8.330299436121456, - 8.685644733149841, - 9.006946441194076, - 9.261626178431028, - 9.56902460173882, - 9.790452036257014, - 9.903456569802831, - 10.09301259779558 - ], - "5._384._0.0875": [ - 3.4930590501033256, - 4.0306043900473565, - 4.694067588265734, - 5.88350510108964, - 7.431427061450941, - 9.98779845766504, - 13.353389129511713, - 16.394748537610948, - 20.66372076155687, - 23.23475569613577, - 25.037949158618115, - 27.50288427408755, - 29.171579440785813, - 32.79615601487421, - 35.77947042269938, - 36.58609435901098, - 37.30577310113429, - 38.002566200339054, - 38.53938762162418, - 38.99736202593541, - 39.3901621020589, - 39.71778873268037, - 39.96198754934894, - 40.24059533848343, - 40.43086113615993, - 40.52426913890176, - 40.675791785228064 - ], - "5._48._0.075": [ - 1.526846324373138, - 1.8679037053125451, - 2.162243131656477, - 2.506080869143455, - 2.800135037735449, - 3.143354866844195, - 3.5132257230355233, - 3.863106382379923, - 4.474457033580421, - 4.961632470054223, - 5.3862379761916515, - 6.12221855073966, - 6.74561773915448, - 8.560736261853611, - 10.621025278675003, - 11.280022705403246, - 11.905682008867638, - 12.546824706674549, - 13.06464818139723, - 13.520586021273242, - 13.921869299210416, - 14.262820884056147, - 14.519746235633956, - 14.814061814786294, - 15.016457487544422, - 15.1166233684889, - 15.28027379003545 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.555323563787167, - 2.851915535120323, - 3.2003409929409194, - 3.525080320711081, - 4.009286129418665, - 4.708656292040611, - 5.493539178529007, - 6.985836521381297, - 8.157460269968727, - 9.117690087916031, - 10.634467693002504, - 11.795826454076145, - 14.69799770204863, - 17.42489610404847, - 18.206502492794666, - 18.91320591824962, - 19.60593879686422, - 20.143091065234675, - 20.602934180243366, - 20.997350890820773, - 21.325727520483362, - 21.57020574923072, - 21.847850412175852, - 22.03744295614742, - 22.130727597352312, - 22.282539955832014 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169061150065, - 3.187289596078484, - 3.5227154349821217, - 4.033524104332879, - 4.6538887784099785, - 5.744952813263817, - 7.431132296917, - 9.209026808445238, - 12.089008139282727, - 14.023804729403114, - 15.46249591622713, - 17.530006916965466, - 18.98584886707987, - 22.267195944795272, - 25.041687005319854, - 25.7992249192782, - 26.474403997812757, - 27.12816593077813, - 27.630956262245725, - 28.05972256951526, - 28.42672838012983, - 28.73219214319049, - 28.959728110953343, - 29.21883767707847, - 29.39581423716993, - 29.48278190507102, - 29.624078846427427 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004358, - 2.1114679242247285, - 2.4511928331780086, - 2.7884201060295513, - 3.045021381281341, - 3.388459204881524, - 3.618488758763688, - 3.8047089942804333, - 4.112149613710242, - 4.368104552678757, - 5.160247189301706, - 6.235113843839368, - 6.6294440022038685, - 7.033633652448445, - 7.479881283521705, - 7.868602777395783, - 8.233203267484738, - 8.575369888873661, - 8.884268343353318, - 9.128825384687211, - 9.423733345374284, - 9.635961179420866, - 9.744182775418773, - 9.92558896348682 - ], - "5._384._0.0875": [ - 3.4928979293804243, - 4.02981111718458, - 4.689807881635182, - 5.862061102441162, - 7.373303131971566, - 9.848888667045843, - 13.08480921408248, - 15.993986735830603, - 20.062712473297832, - 22.507937952157054, - 24.221694767510005, - 26.564089484440156, - 28.149777348860614, - 31.596571400611825, - 34.43620802293284, - 35.204355319546785, - 35.88997609794769, - 36.554023346038555, - 37.0658504957119, - 37.502539694817926, - 37.87718883377983, - 38.189751325583764, - 38.42272531921386, - 38.68855014121916, - 38.87007314616325, - 38.95917827899679, - 39.10368452857277 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808691268432, - 2.80013499377347, - 3.143347749221799, - 3.513122063427876, - 3.8627548077340887, - 4.472353316078819, - 4.955432244183101, - 5.374311815242532, - 6.096516995974693, - 6.705349196598286, - 8.46707791358889, - 10.45374427638215, - 11.086772615849544, - 11.68705264325851, - 12.301520266833796, - 12.797384025573644, - 13.233781254911495, - 13.617792036519322, - 13.9440823041557, - 14.189982032423153, - 14.471793297760984, - 14.66562033847423, - 14.761532764751092, - 14.91818503231689 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.555323563717674, - 2.851915434855737, - 3.2003298712087163, - 3.524978606641642, - 4.008782285137806, - 4.705269310674967, - 5.480854741829109, - 6.941648894274673, - 8.080706907801707, - 9.010608616799727, - 10.473901414688648, - 11.590735842770137, - 14.372201991659223, - 16.977927988049014, - 17.72383972633121, - 18.398447629611603, - 19.059803055392596, - 19.572862109599473, - 20.012178524932555, - 20.389184657667702, - 20.70323114150412, - 20.93709460558929, - 21.202796276684648, - 21.384243011748246, - 21.473506726055373, - 21.618719893114587 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351688203357885, - 3.1872707949155483, - 3.5225704832629456, - 4.0328146196835775, - 4.650032785470765, - 5.723002615902646, - 7.3565176364299445, - 9.060566531632478, - 11.799841992061388, - 13.632664274820584, - 14.993890710578041, - 16.949363559826708, - 18.326361780693247, - 21.433677443077137, - 24.065634829566044, - 24.784923735345338, - 25.426488909066915, - 26.04806264126298, - 26.52644618320714, - 26.934487855187367, - 27.283917630997717, - 27.57486862359401, - 27.79161026012809, - 28.038471304698575, - 28.20707272391493, - 28.28991307605815, - 28.42445954281153 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004344, - 2.111467924224728, - 2.4511928331740758, - 2.7884200505989316, - 3.045017987362219, - 3.3883876749447204, - 3.6182837449564897, - 3.804333037462944, - 4.111153905712452, - 4.365879246288399, - 5.147401443091081, - 6.192385065392763, - 6.572538568818718, - 6.960785463488168, - 7.388029402819429, - 7.759132422898669, - 8.106515153514975, - 8.432034145693564, - 8.725637461237614, - 8.95801478939669, - 9.238350645820095, - 9.44023172567403, - 9.543226315629955, - 9.71599862541633 - ], - "5._384._0.0875": [ - 3.4927166892526316, - 4.028915399043745, - 4.684835863148447, - 5.835465727545891, - 7.298537152360087, - 9.668249642320442, - 12.740937995080156, - 15.492731647537088, - 19.33619146749968, - 21.64562369368271, - 23.26470044677373, - 25.479149474892168, - 26.97904482141368, - 30.243332003100754, - 32.93604674178191, - 33.66488218051722, - 34.31566342583481, - 34.94618122479929, - 35.432373256543464, - 35.84722283904276, - 36.203224570458566, - 36.50029236101047, - 36.72171746798605, - 36.974381000904465, - 37.14690298942507, - 37.231579824014695, - 37.368871711006804 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125465, - 2.162243131656477, - 2.5060808691081546, - 2.800134944316246, - 3.1433397418975875, - 3.5130054472759724, - 3.8623591557969568, - 4.469938163542089, - 4.9480710677300825, - 5.359767988491333, - 6.0641140221919665, - 6.653675795916591, - 8.344870813781016, - 10.237200073042663, - 10.838247747462841, - 11.40803550147771, - 11.991234140558953, - 12.461998282924036, - 12.876519414647147, - 13.241577757527981, - 13.552069009566619, - 13.786257684799507, - 14.054967006768669, - 14.239926198808673, - 14.331474001986834, - 14.481000011636498 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235636394978, - 2.8519153220580766, - 3.200317359262798, - 3.524864179214628, - 4.00821477222289, - 4.701338061968786, - 5.465414370216979, - 6.885127671661726, - 7.980958286119011, - 8.870816689921845, - 10.265000044279011, - 11.325780586574083, - 13.962402777497939, - 16.431949106313375, - 17.13926612084509, - 17.779629661942092, - 18.407898109761256, - 18.895785283662562, - 19.31378759499291, - 19.672799955144527, - 19.972084275552966, - 20.195034677659834, - 20.448471009508406, - 20.62156727158766, - 20.706716669414334, - 20.845191172590393 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351685474129886, - 3.187249486942518, - 3.522406206951233, - 4.032010643149538, - 4.6456614475955025, - 5.697913782149926, - 7.269809346302494, - 8.886512891906712, - 11.463018523931632, - 13.181539614328218, - 14.457790343466293, - 16.292887930401218, - 17.586608994813204, - 20.51297587215646, - 22.998652817348923, - 23.67887592750712, - 24.28609904662563, - 24.874790942437514, - 25.328222501151746, - 25.715074113868948, - 26.04651757484221, - 26.322603709236578, - 26.528286913326557, - 26.76259199055454, - 26.922609200578957, - 27.00122105087858, - 27.128858035916736 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.45119283316962, - 2.788419987777567, - 3.0450141409206744, - 3.388306607965558, - 3.6180514005629876, - 3.8039069722692336, - 4.110025517566295, - 4.3633565430034045, - 5.132752100765069, - 6.142839329947012, - 6.506107801226801, - 6.875285821357428, - 7.279840573660062, - 7.630081341194026, - 7.957280319143172, - 8.263553051525836, - 8.539751785808724, - 8.758479337134663, - 9.022778543076738, - 9.213507858786949, - 9.310957953976203, - 9.474722133264727 - ], - "5._384._0.0875": [ - 3.4925113064882454, - 4.027900461026589, - 4.679197818193155, - 5.805017904201134, - 7.211679819684123, - 9.456833388492814, - 12.34240149820954, - 14.920399296957584, - 18.5237490556197, - 20.691767042872346, - 22.213174700579994, - 24.296486578060584, - 25.70884782863374, - 28.78730720355912, - 31.330522849788245, - 32.01934902073474, - 32.63463678352622, - 33.23096802788605, - 33.690989815106995, - 34.08353783817439, - 34.42048101693239, - 34.7016998100225, - 34.911310294440106, - 35.150504189754656, - 35.31381520434294, - 35.393961783158744, - 35.52387822812925 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.506080869086975, - 2.8001348882647217, - 3.143330666931413, - 3.512873283522451, - 3.8619107794468794, - 4.467201093537204, - 4.93970690845649, - 5.343163102390066, - 6.026737643842111, - 6.593572757346406, - 8.201294219093462, - 9.983791188265029, - 10.548590991316775, - 11.084346779112622, - 11.633170532220351, - 12.076778017972815, - 12.467893554341039, - 12.812897372520267, - 13.106826189266977, - 13.328821521771708, - 13.583972171206756, - 13.759807748680085, - 13.846884550829344, - 13.98914061083771 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323563550898, - 2.8519151942207284, - 3.2003031790610104, - 3.5247344959979587, - 4.007571657621435, - 4.696881363064775, - 5.447810280499536, - 6.819628882169538, - 7.864192059370386, - 8.706553262336627, - 10.0199366806596, - 11.016351827699992, - 13.491919834223596, - 15.815936225904604, - 16.48290738121847, - 17.08765854902196, - 17.681705367281744, - 18.143662668362992, - 18.539759179529437, - 18.88030792183095, - 19.16445822976687, - 19.376227119013578, - 19.617096699981758, - 19.78164433437221, - 19.862586186694593, - 19.99417906242006 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351682355012895, - 3.187225134988477, - 3.5222184655915334, - 4.031091948216575, - 4.6406685827494405, - 5.66929187240437, - 7.170966408631344, - 8.689146000548321, - 11.087713144016814, - 12.684732794350765, - 13.871894801726926, - 15.58223175133246, - 16.790366004345586, - 19.531792537439753, - 21.868461664266757, - 22.50892183850402, - 23.081146274713728, - 23.636304467787205, - 24.06425788616226, - 24.4294655522758, - 24.74252006985808, - 25.003395424664333, - 25.197760938196677, - 25.419209802987222, - 25.570438541834424, - 25.644722758631563, - 25.765293941105224 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.451192833164529, - 2.7884199159817196, - 3.0450097449876514, - 3.388213960356967, - 3.617785870082313, - 3.8034200657950668, - 4.108736101819707, - 4.360474047457522, - 5.116026639439031, - 6.0862173493750085, - 6.430126488365553, - 6.777541943745909, - 7.156435144059378, - 7.483381199626218, - 7.788307413928217, - 8.073610352239047, - 8.331073158967666, - 8.535250014251378, - 8.782614539791842, - 8.961678874019668, - 9.053368258289412, - 9.207831779530427 - ], - "5._384._0.0875": [ - 3.4922766130273053, - 4.026740793849537, - 4.672759344299206, - 5.770290761588796, - 7.112667192875683, - 9.218192142168498, - 11.901012009001475, - 14.296127663737089, - 17.65189801779265, - 19.675711404798403, - 21.09786035773211, - 23.04814966288694, - 24.37182265447996, - 27.26187449666042, - 29.653322295220885, - 30.301498726069074, - 30.880693703183695, - 31.44223557709562, - 31.875598407710985, - 32.24542382702468, - 32.562935853115704, - 32.82798647868391, - 33.02554367689565, - 33.2509925615358, - 33.40490546917437, - 33.48043090870527, - 33.60282811623431 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.162243131656475, - 2.5060808690627705, - 2.8001348242058377, - 3.1433202955431403, - 3.512722240818144, - 3.861398387027209, - 4.464074244348289, - 4.930152958594923, - 5.324187557041525, - 5.9839674053538925, - 6.524734902228128, - 8.038039086131045, - 9.699877397056454, - 10.225841777084657, - 10.72545418094779, - 11.238077321601697, - 11.653332572638616, - 12.02012349412531, - 12.344375287294278, - 12.621216921083544, - 12.83065396554929, - 13.071853532083068, - 13.238315373323871, - 13.320805804821875, - 13.455618131647276 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.555323563449639, - 2.8519150481209037, - 3.2002869731207877, - 3.5245862881694774, - 4.006836754653581, - 4.69179114525067, - 5.427718388280079, - 6.744867486439574, - 7.731050820638755, - 8.519930859611996, - 9.744084174703854, - 10.670763023902428, - 12.975840224112732, - 15.149165374677054, - 15.774779174564648, - 16.343026929507406, - 16.902044669550094, - 17.337473597572583, - 17.71115941421329, - 18.032811049081918, - 18.301462360466996, - 18.501777260258603, - 18.729765539761168, - 18.885552170244445, - 18.96218427193298, - 19.08673582137452 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351678756032515, - 3.187197036600023, - 3.522001844985364, - 4.0300322518514, - 4.634896036285241, - 5.635852024266923, - 7.0568222239774725, - 8.46717243609571, - 10.679953754505807, - 12.153158734697765, - 13.25009776169846, - 14.834419134641834, - 15.956200140214605, - 18.51062935502498, - 20.696124654857552, - 21.296166125758, - 21.83275705087295, - 22.35373215233409, - 22.755673696520372, - 23.098774316043166, - 23.39302760720498, - 23.63833790720881, - 23.821120436452897, - 24.029407114093317, - 24.171639138614, - 24.241494433618502, - 24.354839615191114 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.451192833158654, - 2.7884198331403587, - 3.045004672757467, - 3.388107059758039, - 3.6174794967078756, - 3.80285827774012, - 4.107247824505468, - 4.357140051126023, - 5.096490834060131, - 6.020295504929666, - 6.342298990497197, - 6.665602752473077, - 7.016669556841596, - 7.318864347181268, - 7.60046936515882, - 7.86406809821855, - 8.102292334016061, - 8.291591824035255, - 8.52166272512016, - 8.688809273583091, - 8.774608578033748, - 8.919547899142907 - ], - "5._384._0.0875": [ - 3.4920058333064117, - 4.025403432904344, - 4.665309594661901, - 5.729719388840724, - 6.998300370333083, - 8.952202238593774, - 11.425163738947337, - 13.634871748948575, - 16.741206848651288, - 18.619930620167946, - 19.942144992251766, - 21.75833863813579, - 22.992517358034014, - 25.69199794005192, - 27.92955689423265, - 28.53646594387091, - 29.078992919661268, - 29.60516679394351, - 30.011403531327844, - 30.35810455432582, - 30.655831595003182, - 30.904412490157448, - 31.089691454029655, - 31.301137021133602, - 31.445476549631113, - 31.516295697144656, - 31.631038716619635 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.50608086903484, - 2.8001347502917393, - 3.1433083285588577, - 3.5125479628970573, - 3.8608072365557438, - 4.460463539032706, - 4.919041634441245, - 5.301989054189596, - 5.933852701955289, - 6.444555436550609, - 7.853818545894713, - 9.389392902908474, - 9.875637606341177, - 10.338367742398457, - 10.814130390190991, - 11.200554903763509, - 11.54258825284559, - 11.845687556129661, - 12.105075489114615, - 12.301658864112659, - 12.528539580750973, - 12.685364757431058, - 12.763138051150694, - 12.89029651992637 - ], - "5._96._0.075": [ - 2.209271810327405, - 2.555323563332806, - 2.8519148795441804, - 3.200268273965192, - 3.5244152812216245, - 4.0059889900520895, - 4.6859057506214175, - 5.404263408805991, - 6.657981117950805, - 7.578879199263079, - 8.309793264654871, - 9.439903921860733, - 10.294583021584879, - 12.426014383581446, - 14.446717206489884, - 15.03044089520954, - 15.561599205047946, - 16.08497193382014, - 16.493348219101822, - 16.844150665842182, - 17.146471184854406, - 17.39924107885622, - 17.587810658265372, - 17.802575617790527, - 17.94936622785306, - 18.02157381748878, - 18.138902569993615 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351674557223387, - 3.1871642552788932, - 3.5217490083033685, - 4.028734935990331, - 4.627191075584772, - 5.5923837694439165, - 6.921130404091049, - 8.219652693440157, - 10.248774015538189, - 11.600920737705362, - 12.609367555770664, - 14.06927690462276, - 15.105278935296539, - 17.472297577290934, - 19.50488790383915, - 20.063874761103698, - 20.564207385040245, - 21.050343567082148, - 21.425726327603915, - 21.746243336550744, - 22.021270219489566, - 22.250650365454668, - 22.421576832364448, - 22.61638773239884, - 22.749409642891568, - 22.81473203606216, - 22.920686340443314 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224729, - 2.4511928331517994, - 2.788419736492105, - 3.0449987551561395, - 3.3879823374935487, - 3.617120862250179, - 3.8021890796913524, - 4.105351936769525, - 4.352704745689004, - 5.070645851372797, - 5.9398428810714305, - 6.238121241924397, - 6.536209247930411, - 6.858995552575117, - 7.1365493710583126, - 7.395204140679829, - 7.637556404858422, - 7.856949768793425, - 8.031638623754134, - 8.244592826823101, - 8.39982116163003, - 8.479684002152238, - 8.614940936123459 - ], - "5._384._0.0875": [ - 3.491692863815904, - 4.0237525601703, - 4.655347063347855, - 5.677529573737163, - 6.862210907608832, - 8.659920253259397, - 10.926510636085144, - 12.954752158389766, - 15.814812117460628, - 17.549161505609558, - 18.771537107603407, - 20.453240490740587, - 21.597404222576593, - 24.104492508701696, - 26.18616326614168, - 26.75120635815924, - 27.256511470693024, - 27.746760655967005, - 28.125424124850845, - 28.448616886167706, - 28.726222736933313, - 28.958048987135587, - 29.130837776178694, - 29.3280379784672, - 29.46264017928505, - 29.528673354357743, - 29.635635680591392 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125465, - 2.1622431316564765, - 2.5060808690022545, - 2.800134664058627, - 3.143294367087805, - 3.512344598187321, - 3.8601055168193907, - 4.45569805832541, - 4.90411596592305, - 5.272655866683806, - 5.870587707138581, - 6.347141652093253, - 7.647396958409655, - 9.058233400410261, - 9.505659546084898, - 9.93216301004913, - 10.371546126007711, - 10.729320107473567, - 11.046604855090374, - 11.3284109075451, - 11.570109451999993, - 11.75359755521522, - 11.965802310186833, - 12.11270599001061, - 12.185611550922658, - 12.304862542188182 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.5553235631964957, - 2.8519146828713398, - 3.2002464583196097, - 3.5242157397898137, - 4.004964776957321, - 4.678045485554847, - 5.373293893634843, - 6.552440697028782, - 7.403564496640416, - 8.075316972726368, - 9.111996063347464, - 9.896120004123281, - 11.857145004385892, - 13.726161136388024, - 14.267835220320396, - 14.761577105813346, - 15.24884211571673, - 15.62969069644632, - 15.957152936302819, - 16.23969619984952, - 16.47617659857627, - 16.652685128605793, - 16.853851551541922, - 16.991384805062378, - 17.059038862812958, - 17.16893894873854 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "3_10": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351696391045076, - 3.1873347178041738, - 3.5230614685103534, - 4.034945983544627, - 4.6594072891988905, - 5.771957941814843, - 7.522004623402825, - 9.39675647953741, - 12.487494891458262, - 14.598057058004724, - 16.18354094333716, - 18.483312026154245, - 20.116680436888863, - 23.826792940173995, - 26.983830323545284, - 27.847666614491423, - 28.616969261944547, - 29.361360452890704, - 29.932959611834093, - 30.420237054505066, - 30.836799306002668, - 31.18309766036054, - 31.44098851613276, - 31.73446423687552, - 31.93494960655065, - 32.03352050849653, - 32.19385157552877 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413081, - 1.8198213217004349, - 2.111467924224728, - 2.4511928331874424, - 2.788420239063031, - 3.045029526685046, - 3.388630717599701, - 3.6189727120958186, - 3.805547367607441, - 4.113953895800171, - 4.371510627516472, - 5.176334831578467, - 6.286873482944723, - 6.698753373758957, - 7.123400940407437, - 7.5951370834577805, - 8.008763297939167, - 8.399074468351857, - 8.767698765577965, - 9.102644651368363, - 9.369456226352236, - 9.693370504676869, - 9.9283741956995, - 10.049038321114683, - 10.252848396787554 - ], - "5._384._0.0875": [ - 3.493328891964763, - 4.031518872772797, - 4.696701539905457, - 5.894593551355605, - 7.4643252167341645, - 10.081256396732034, - 13.570826288558495, - 16.767335716591283, - 21.316669739152942, - 24.087481922018593, - 26.041731247861552, - 28.722960367234442, - 30.5431013423912, - 34.500334891309, - 37.75693093912338, - 38.63708390448907, - 39.42170490608051, - 40.180825980867425, - 40.76504498640568, - 41.26334524842586, - 41.69042768322616, - 42.046422039923414, - 42.31174126880739, - 42.61435506942868, - 42.82103939517815, - 42.922534632505275, - 43.087272192686505 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.8679037053125411, - 2.162243131656476, - 2.506080869171695, - 2.8001351124708167, - 3.143366966749678, - 3.5134010568203062, - 3.863636712972614, - 4.4760495083487095, - 4.965114224353245, - 5.392450460434204, - 6.135726616613818, - 6.767791843123352, - 8.621101293409064, - 10.749063493361266, - 11.436287939955566, - 12.091826879641271, - 12.766914527783069, - 13.314803512476578, - 13.799294812858879, - 14.227342804781571, - 14.592256712031864, - 14.868013579347283, - 15.184600972870493, - 15.402836829251452, - 15.511061192190152, - 15.688262359063822 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.5553235639052967, - 2.851915705570117, - 3.2003598996298304, - 3.5252524461092545, - 4.009972493984737, - 4.710869900525714, - 5.500133883082816, - 7.010105407086618, - 8.203705756184183, - 9.187143061720707, - 10.750226831974704, - 11.955216185877529, - 14.99696919701677, - 17.896521282465184, - 18.735055913338265, - 19.49532240103531, - 20.242385716273322, - 20.82248346564422, - 21.319701424484464, - 21.746334595798054, - 22.101543445725504, - 22.366047126079316, - 22.666335441250297, - 22.871461496608273, - 22.972454069746238, - 23.13698225098189 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351694667321, - 3.1873212600540097, - 3.5229576124885353, - 4.034424626344834, - 4.656546598768906, - 5.756478924684074, - 7.471570485762973, - 9.297501060893424, - 12.290978333627315, - 14.32667579396428, - 15.85258605642192, - 18.061991869327017, - 19.628926634529154, - 23.185431684690887, - 26.211077913468834, - 27.039047924964223, - 27.776780323566296, - 28.49089987200365, - 29.039581298511322, - 29.50739976149178, - 29.907496780390655, - 30.24023285812482, - 30.488042412746317, - 30.770098931839453, - 30.962773109793147, - 31.057489604011845, - 31.21149890540965 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833184628, - 2.7884201993863775, - 3.0450270973531226, - 3.388579508374959, - 3.6188255359474937, - 3.805275004780373, - 4.113216044437915, - 4.369855892386419, - 5.167171895378784, - 6.257828201077995, - 6.660500242411008, - 7.074786795979005, - 7.534074894040965, - 7.935976374285083, - 8.314610367503908, - 8.67164962846984, - 8.995616738312924, - 9.253399520980166, - 9.566054413984439, - 9.79264266152676, - 9.908872237969012, - 10.105006404966465 - ], - "5._384._0.0875": [ - 3.493198910530084, - 4.0308570628256915, - 4.693026975443819, - 5.875955963071871, - 7.413765251631014, - 9.960048096311203, - 13.334906590527586, - 16.412299177762257, - 20.776571614743915, - 23.428561422272836, - 25.297394831404457, - 27.860652848673013, - 29.60038867544903, - 33.38490218048116, - 36.50180116328724, - 37.34456064415303, - 38.09612971671551, - 38.82351232834903, - 39.38355343224408, - 39.861272165119075, - 40.27082716564339, - 40.612292081381696, - 40.8667867435675, - 41.15707978816375, - 41.35533579044196, - 41.45268099866423, - 41.61064394773242 - ], - "5._48._0.075": [ - 1.5268463243731414, - 1.8679037053125422, - 2.1622431316564774, - 2.5060808691583163, - 2.8001350770698537, - 3.143361235186525, - 3.5133175355985227, - 3.8633500301367296, - 4.474250446903327, - 4.959747142683891, - 5.382098391725382, - 6.113400989917269, - 6.732817753532474, - 8.53959333738306, - 10.60291366377845, - 11.267113818117231, - 11.899951195785375, - 12.550971960968868, - 13.07883923793592, - 13.5453645891901, - 13.957392257042933, - 14.308598600633644, - 14.573979014198066, - 14.878730513494437, - 15.088809389664045, - 15.192966631504737, - 15.363444958473718 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.555323563849342, - 2.85191562483074, - 3.2003509436914888, - 3.52517049678752, - 4.009557750375231, - 4.7079546724818195, - 5.489120233752136, - 6.971686719032705, - 8.136964890700169, - 9.093977370792693, - 10.610172002887273, - 11.775850512353795, - 14.709294034837644, - 17.497252419772515, - 18.30227251675926, - 19.032237752331362, - 19.749506260139636, - 20.306633077032, - 20.784225265064226, - 21.194188231449143, - 21.535668330452637, - 21.789998390306028, - 22.078844580302608, - 22.27616096132983, - 22.37329342138389, - 22.531472473603895 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169275207241, - 3.187306307004047, - 3.522842217886366, - 4.033843886576278, - 4.653265124584943, - 5.737573529765417, - 7.407039045534044, - 9.168602941192987, - 12.037422285577966, - 13.98091473316139, - 15.435739343947429, - 17.540818320418737, - 19.03336251168134, - 22.423653199656208, - 25.31181392032578, - 26.102776485145544, - 26.80802261772895, - 27.491061405235428, - 28.016225419374052, - 28.46408688580133, - 28.84728869291785, - 29.16609705513198, - 29.40355159195623, - 29.67386865078909, - 29.8585144412039, - 29.949272026546314, - 30.09679642246587 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615422, - 1.4813847491413084, - 1.8198213217004355, - 2.111467924224729, - 2.451192833181503, - 2.788420155301211, - 3.0450243980955025, - 3.388522609375117, - 3.618662005445276, - 3.8049722416423806, - 4.112390072890691, - 4.367974678811906, - 5.156125742194332, - 6.220943072679966, - 6.611349387541994, - 7.01182708287326, - 7.454595394036286, - 7.84109693133254, - 8.204582773859007, - 8.54685203471091, - 8.857116228115155, - 9.103880761560761, - 9.403199149867596, - 9.620184334063048, - 9.73150749794907, - 9.919443320255539 - ], - "5._384._0.0875": [ - 3.493054500653693, - 4.030118761282453, - 4.688783718084439, - 5.853035989161812, - 7.349107576131647, - 9.80281815778486, - 13.03222187024625, - 15.965873044702683, - 20.119010073162503, - 22.64123651961322, - 24.41879936038503, - 26.858029276259913, - 28.51426813589663, - 32.121031079059044, - 35.094991031144296, - 35.89954859405925, - 36.61731359952313, - 37.312207420672, - 37.847457871024226, - 38.30406516857134, - 38.69561781007384, - 39.02214092104706, - 39.26550042493066, - 39.543109591988745, - 39.73268932943757, - 39.8257641027037, - 39.976762556243116 - ], - "5._48._0.075": [ - 1.526846324373138, - 1.8679037053125451, - 2.162243131656477, - 2.5060808691434544, - 2.800135037735448, - 3.143354866783652, - 3.5132247348068173, - 3.863031372139838, - 4.472208255252984, - 4.953439818078773, - 5.369591360613865, - 6.085475546323292, - 6.6882412524358275, - 8.433626875504034, - 10.413656994423745, - 11.04915062548048, - 11.65434015093944, - 12.276732205459238, - 12.781376165976834, - 13.227504165513206, - 13.621731256686017, - 13.958010446358477, - 14.21227843706905, - 14.50456131784374, - 14.706177143216351, - 14.8061581727671, - 14.969797551702056 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637871654, - 2.851915535120323, - 3.2003409926506743, - 3.5250794425499192, - 4.009096300350068, - 4.704607716403106, - 5.475837962179747, - 6.922865579209501, - 8.050645791942905, - 8.972763693397676, - 10.428128650659463, - 11.543892273729133, - 14.345704415816325, - 17.006477306804626, - 17.774847490505532, - 18.472176838697685, - 19.157793988110367, - 19.69079410079831, - 20.14793414282146, - 20.540633347925073, - 20.86796060720477, - 21.11183247694148, - 21.38893844271681, - 21.578260851324544, - 21.671451012765434, - 21.82316084562911 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169061150065, - 3.1872895947789393, - 3.522713248876312, - 4.033194892863065, - 4.649596115883526, - 5.716244200093716, - 7.3328943743830255, - 9.018831330171903, - 11.743007977441218, - 13.582069628649183, - 14.957977949156959, - 16.949688120532105, - 18.36287683945251, - 21.57917353464046, - 24.325852679889646, - 25.07898944961593, - 25.751041342363028, - 26.402342129904234, - 26.903482713483317, - 27.330958648322913, - 27.696890497828896, - 28.001451042227572, - 28.228310733598185, - 28.486609167756708, - 28.663037069973708, - 28.749744243915718, - 28.890640324948205 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004358, - 2.1114679242247285, - 2.4511928331780077, - 2.788420106029549, - 3.04502138127824, - 3.388459016550277, - 3.618479238903689, - 3.804633871213688, - 4.111466968141023, - 4.365871430232568, - 5.143695648545728, - 6.17868452226488, - 6.554634546791731, - 6.938727751039005, - 7.36186018686795, - 7.730122102032494, - 8.075772358163414, - 8.400825646984893, - 8.695323164113045, - 8.929579974651796, - 9.214026598573515, - 9.420538461671027, - 9.526607859480789, - 9.705940175672495 - ], - "5._384._0.0875": [ - 3.4928931154901357, - 4.0292937374393425, - 4.684037849958674, - 5.827129985325081, - 7.274843512624837, - 9.620236159471716, - 12.682032585704539, - 15.455139648192947, - 19.38078446140351, - 21.76677627572551, - 23.449611429182468, - 25.761181604241013, - 27.331998925692588, - 30.757558152139776, - 33.586069436253325, - 34.35176376194966, - 35.03510607610017, - 35.69689157539745, - 36.2068470544028, - 36.64190760738781, - 37.01507002481992, - 37.32631665839131, - 37.55828980482034, - 37.8229231946917, - 38.00362782267828, - 38.0923356169888, - 38.23621716719929 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808691268437, - 2.8001349937734696, - 3.143347749157691, - 3.5131210170299894, - 3.8626752433086398, - 4.469925706734645, - 4.9463704397858335, - 5.355502009721136, - 6.053673207927566, - 6.63702427325471, - 8.310284505858624, - 10.193014037560348, - 10.79559524877261, - 11.369555957897884, - 11.960080873626445, - 12.43929996741385, - 12.863368103405582, - 13.2385888456107, - 13.559110635100065, - 13.801751578517507, - 14.081097548940388, - 14.274002260992097, - 14.36970898259704, - 14.526385408493656 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637176726, - 2.851915434855737, - 3.2003298709014003, - 3.5249776767928798, - 4.008580604742729, - 4.700865428968421, - 5.4608944831681665, - 6.866955487504291, - 7.950663761577234, - 8.831583655880335, - 10.215745700426625, - 11.273792424161384, - 13.92766319614577, - 16.45104545390649, - 17.180809976609552, - 17.84399554332063, - 18.496733542567505, - 19.004815115226474, - 19.440904267020272, - 19.815882878437932, - 20.12870911372553, - 20.361877191199547, - 20.626973569380997, - 20.8081283925645, - 20.89729590359523, - 21.04241509069484 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83516882033579, - 3.187270793534784, - 3.5225681605411676, - 4.032464859034958, - 4.645470234927858, - 5.692296192502923, - 7.249773721982898, - 8.850987218412278, - 11.415915729914369, - 13.142500411469129, - 14.434605628591797, - 16.30756749869687, - 17.638534968246013, - 20.676149844304643, - 23.27851809026642, - 23.99315980447801, - 24.63139798746912, - 25.25035740285144, - 25.72699410170676, - 26.133671727749693, - 26.48196909529333, - 26.771969383068637, - 26.988000153736685, - 27.234008777060403, - 27.40203447836484, - 27.484601924808427, - 27.618729120287863 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004344, - 2.111467924224728, - 2.4511928331740758, - 2.788420050598932, - 3.045017987358917, - 3.388387474843101, - 3.618273630131758, - 3.804253219666965, - 4.110428581041057, - 4.3635056721911125, - 5.129727569540895, - 6.131225628204132, - 6.490847036204033, - 6.8563990653565545, - 7.257362917289612, - 7.605156439859971, - 7.930931927240052, - 8.236980431274706, - 8.514253104012374, - 8.73497509642254, - 9.003502237540292, - 9.198942347608046, - 9.299511402874506, - 9.469924048645776 - ], - "5._384._0.0875": [ - 3.492711575004746, - 4.028365751077241, - 4.678701738639966, - 5.798054866407641, - 7.191590685191605, - 9.416170019764092, - 12.29468689439955, - 14.896664770362229, - 18.585455717369364, - 20.83167463114062, - 22.41782831941547, - 24.599553267051682, - 26.08368876938362, - 29.325431219584754, - 32.00632411975455, - 32.73255401267648, - 33.380910894048306, - 34.00902301752407, - 34.493225223560955, - 34.90634412901751, - 35.260766424199474, - 35.55643645788873, - 35.77679867085372, - 36.028196819673695, - 36.199849928267156, - 36.28410507570673, - 36.42073427111567 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125465, - 2.162243131656477, - 2.5060808691081555, - 2.8001349443162447, - 3.143339741829474, - 3.513004335483725, - 3.862274621304385, - 4.4673585929709585, - 4.938421622161106, - 5.339661600839528, - 6.0179111792135105, - 6.579385143159076, - 8.171737019277147, - 9.946710325662451, - 10.51350231868414, - 11.053831702251054, - 11.610357563535604, - 12.062739881185204, - 12.463670955956424, - 12.819089430230422, - 13.123280656129152, - 13.353914758633497, - 13.619940307652543, - 13.803903780042878, - 13.89523452936822, - 14.044801216382567 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235636394978, - 2.851915322058077, - 3.2003173589362732, - 3.5248631912546777, - 4.008000499694037, - 4.696657237313498, - 5.44410647991227, - 6.804225618478394, - 7.838343155779127, - 8.673006499863657, - 9.97811814305196, - 10.972922703987864, - 13.468192360138309, - 15.847967354866476, - 16.53794856138718, - 17.166000518527593, - 17.785002515747696, - 18.267566612253564, - 18.682116174476054, - 19.03897054638073, - 19.33696582440184, - 19.55918719779263, - 19.811997459872234, - 19.984800264266966, - 20.069857245679092, - 20.208249656926554 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835168547412988, - 3.1872494854697058, - 3.522403729400136, - 4.031637594937129, - 4.640796738930445, - 5.66521583218281, - 7.156327181864894, - 8.664396051949335, - 11.059981746940485, - 12.669819467585942, - 13.875772721810119, - 15.62748861574367, - 16.874893519050996, - 19.73116417372427, - 22.18703153256678, - 22.86256594638869, - 23.466400589379095, - 24.05242300851958, - 24.504070110254457, - 24.889528707653565, - 25.2198177233413, - 25.49493667550337, - 25.699898020690885, - 25.933339153271646, - 26.09277370015269, - 26.17110958926573, - 26.298322859918514 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.4511928331696207, - 2.788419987777567, - 3.0450141409171536, - 3.388306394524238, - 3.6180406114486834, - 3.8038218340179566, - 4.109251878319771, - 4.360824968413766, - 5.113916055474346, - 6.077656862265472, - 6.4189652399342085, - 6.763901048316036, - 7.1405076825826095, - 7.466122779497426, - 7.7706132304913265, - 8.056536148114755, - 8.315741809058258, - 8.52236352260601, - 8.774391981396496, - 8.958408563926497, - 9.05331824806197, - 9.214571259175331 - ], - "5._384._0.0875": [ - 3.492505852047999, - 4.027314243128996, - 4.672658430641972, - 5.765193496294636, - 7.09798271084733, - 9.190572360263763, - 11.875756363465433, - 14.301410828819689, - 17.74926565221559, - 19.854135280178653, - 21.34261775354842, - 23.39318847000116, - 24.789763925463987, - 27.84552677477147, - 30.376780035921165, - 31.06296419924753, - 31.675793082325576, - 32.2696862423744, - 32.727694072702015, - 33.118491743006636, - 33.45383906835643, - 33.73364662921852, - 33.94218447494702, - 34.18010190408506, - 34.34253680449449, - 34.42225832031495, - 34.55150689214454 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.5060808690869747, - 2.800134888264722, - 3.1433306668587586, - 3.51287209761735, - 3.8618206123648378, - 4.464450221147384, - 4.929417808449613, - 5.321717254949587, - 5.977415981915798, - 6.514221819556091, - 8.017299675762297, - 9.677234777045328, - 10.206661687733584, - 10.71206589626786, - 11.233463394281333, - 11.658260189217309, - 12.035448480139937, - 12.370575231956687, - 12.658038757023743, - 12.876370427918015, - 13.128733411613737, - 13.303523639191571, - 13.390366695683301, - 13.532648799286992 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323563550898, - 2.8519151942207284, - 3.2003031787127143, - 3.524733442179271, - 4.007343114419741, - 4.691890624287184, - 5.425109107399766, - 6.733506973307652, - 7.7124299066069, - 8.49642461938141, - 9.716702855478742, - 10.644847059544732, - 12.975867471013844, - 15.208907407097895, - 15.858443029385768, - 16.45070278301715, - 17.035332246598674, - 17.49187627163055, - 17.88444497538812, - 18.222782285791002, - 18.50560730145074, - 18.716625306108426, - 18.95685032272639, - 19.121097058428045, - 19.201944469023204, - 19.33345433559674 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351682355012895, - 3.1872251334104607, - 3.5222158111586133, - 4.030692435836612, - 4.635444529743224, - 5.633875131085122, - 7.049454113144735, - 8.456924176997164, - 10.678496318286262, - 12.171114200249516, - 13.290912635768551, - 14.921340042396272, - 16.085041756919278, - 18.75879409652261, - 21.066369605584704, - 21.70220309013989, - 22.271052586308706, - 22.82353489875629, - 23.24969234246939, - 23.613496752748286, - 23.925389219834933, - 24.185293152063217, - 24.378935213480187, - 24.599521190201827, - 24.750168663495693, - 24.824177566837133, - 24.944325755441408 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.4511928331645305, - 2.788419915981719, - 3.0450097449838784, - 3.3882137316709593, - 3.6177743103914275, - 3.803328841321922, - 4.10790658713047, - 4.357753737180955, - 5.095622935888312, - 6.015888528004508, - 6.336715861009754, - 6.65912226334744, - 7.009730170399893, - 7.312186510905942, - 7.594792403983658, - 7.860259860218558, - 8.101232281144249, - 8.293665942781129, - 8.529077445725832, - 8.701549381704696, - 8.790720584075277, - 8.942644437494067 - ], - "5._384._0.0875": [ - 3.492270752342703, - 4.026113135855874, - 4.6657319834389535, - 5.7271623120898, - 6.9908977963199375, - 8.9420675394994, - 11.430259527794664, - 13.67950364529766, - 16.88667805204232, - 18.85006468233329, - 20.24058298451521, - 22.159299582566327, - 23.467691605812174, - 26.335603440303093, - 28.715280155013648, - 29.360845990674026, - 29.937614961657257, - 30.496753985541105, - 30.928136084190047, - 31.296241741189064, - 31.612188260435573, - 31.87585628157454, - 32.072363279701136, - 32.29656342450582, - 32.449619637212166, - 32.524729508810054, - 32.646473679900424 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.162243131656475, - 2.5060808690627714, - 2.800134824205837, - 3.143320295465301, - 3.51272097023313, - 3.861301803214927, - 4.461123589967796, - 4.919045640318183, - 5.300925295293184, - 5.930422515002689, - 6.439071211141979, - 7.845041410808658, - 9.386613090572865, - 9.87845767748666, - 10.348751585984465, - 10.834849998236962, - 11.231898681434599, - 11.585142562256932, - 11.899735359736082, - 12.17020594624958, - 12.375998033460865, - 12.614377153069091, - 12.779750891720933, - 12.861981294432077, - 12.996772935510096 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.5553235634496403, - 2.8519150481209055, - 3.2002869727476178, - 3.5245851590981077, - 4.006591985540785, - 4.686431488294837, - 5.4031417996637865, - 6.652100884580376, - 7.570038794155812, - 8.29992136165962, - 9.432245160614201, - 10.292701034808404, - 12.458745322102292, - 14.544479416660744, - 15.153266533233802, - 15.709316834222825, - 16.259086213549967, - 16.689159603513975, - 17.059326543554374, - 17.37874752337288, - 17.646043124082098, - 17.84558148117727, - 18.072894490951647, - 18.228358852587373, - 18.304885500103087, - 18.429336193302593 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "8": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351678756032683, - 3.1871970349974577, - 3.521998877451294, - 4.029545511552378, - 4.628372441862755, - 5.593587270113946, - 6.923668540202903, - 8.227717618243242, - 10.278893549786142, - 11.658001289287679, - 12.694039319978, - 14.205580885752774, - 15.28660506771994, - 17.778150063095342, - 19.936049478037493, - 20.531608707623278, - 21.064903391350793, - 21.583238562323576, - 21.983395007571378, - 22.32509819601307, - 22.61819411928284, - 22.862539168233372, - 23.0446046599785, - 23.25204033054007, - 23.393699662081687, - 23.46328345420128, - 23.576210724476113 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.451192833158653, - 2.7884198331403596, - 3.045004672753634, - 3.388106808350145, - 3.6174659313311754, - 3.802747276524009, - 4.106206979153732, - 4.3537061193850555, - 5.071691930762524, - 5.94129231759633, - 6.2401470957870115, - 6.5392215077129805, - 6.863673356555523, - 7.143323763602977, - 7.4046409540634865, - 7.650323455001545, - 7.873663680468067, - 8.05232899759183, - 8.27147750096968, - 8.432516421413368, - 8.515950438422246, - 8.65844640766098 - ], - "5._384._0.0875": [ - 3.492002188282926, - 4.024643508677762, - 4.656565319578145, - 5.678778275820147, - 6.864741641979631, - 8.671463042349199, - 10.967756696046923, - 13.04586427928242, - 16.016894600718118, - 17.840064644968272, - 19.133018716222864, - 20.919798501869284, - 22.139644801038344, - 24.81815020006933, - 27.044423862327942, - 27.648815411098294, - 28.189011140971594, - 28.71287964207942, - 29.11722158173988, - 29.462279595370507, - 29.7585143363134, - 30.00577977845764, - 30.190060396922703, - 30.400320388106376, - 30.54384695062992, - 30.61427175096322, - 30.728394790192578 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.5060808690348386, - 2.8001347502917397, - 3.1433083284820977, - 3.512546554602282, - 3.8606920471313715, - 4.4567743291569695, - 4.905264433680639, - 5.273758764171925, - 5.8717490291166206, - 6.348732838190833, - 7.65386375584761, - 9.07971483933351, - 9.535241549816222, - 9.971416426754768, - 10.423025453602547, - 10.792736851136443, - 11.122231429539076, - 11.416288536770965, - 11.669628010485612, - 11.862699525468686, - 12.086791679040198, - 12.242490263128705, - 12.319966846196566, - 12.447024846618449 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.555323563332806, - 2.8519148795441804, - 3.2002682735887515, - 3.524414031956014, - 4.005692819880341, - 4.679214126841142, - 5.374460066352025, - 6.554238242490741, - 7.407593698170906, - 8.082767988459942, - 9.128565425936788, - 9.923373535293827, - 11.929036501519146, - 13.869379737621548, - 14.437441468104574, - 14.957111924448764, - 15.471684261075561, - 15.874888400480591, - 16.222252735412198, - 16.52235095304989, - 16.77373707803546, - 16.961498650458392, - 17.17554365230348, - 17.321975756765728, - 17.394057570676637, - 17.511250295593154 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "3_11": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 10.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169936838707, - 3.1873579620164363, - 3.5232391694567626, - 4.035594627354158, - 4.661202795707466, - 5.779487333381996, - 7.5490352636714455, - 9.457675210507945, - 12.632677014957226, - 14.821683572225169, - 16.47723616309864, - 18.894926055277153, - 20.623653839563413, - 24.578825867971577, - 27.968242702733924, - 28.8983023574208, - 29.726590711226933, - 30.528009882019095, - 31.142939449214573, - 31.66710346047628, - 32.11487339617017, - 32.48684635164187, - 32.76381642103819, - 33.078860347840745, - 33.29410829073593, - 33.39997591210058, - 33.57230952754993 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615413, - 1.4813847491413081, - 1.819821321700435, - 2.111467924224727, - 2.451192833192303, - 2.7884203075954295, - 3.04503372280155, - 3.3887190246523167, - 3.619219579806558, - 3.805960022018472, - 4.114711101976366, - 4.37271411933769, - 5.180864182228267, - 6.301919412442735, - 6.719514280812353, - 7.151188432588349, - 7.63216601540594, - 8.055305444457415, - 8.45593236046432, - 8.835708007500672, - 9.182202408452008, - 9.459378360679723, - 9.797595715149974, - 10.044595808233515, - 10.172161012959458, - 10.389145167454222 - ], - "5._384._0.0875": [ - 3.493549702681375, - 4.032267262425046, - 4.6988577173482895, - 5.903680267931919, - 7.49135700840298, - 10.158592646573824, - 13.752708240751932, - 17.08278790119412, - 21.88124993001058, - 24.835025171912985, - 26.930044678861876, - 29.815670010981112, - 31.780586682756795, - 36.05857212956992, - 39.580140353408105, - 40.531682156969254, - 41.37928656246854, - 42.19879448948, - 42.82884590343327, - 43.366125048566595, - 43.82629686236881, - 44.20963553988507, - 44.4953086934292, - 44.821042299097535, - 45.04354216356276, - 45.15283171807441, - 45.33032138445009 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.8679037053125405, - 2.1622431316564774, - 2.506080869194803, - 2.800135173617928, - 3.1433768666741178, - 3.513544513437428, - 3.864070656026638, - 4.477352889299245, - 4.967964459027974, - 5.397537299367806, - 6.146795407606217, - 6.785978774809343, - 8.670891009098476, - 10.855538143674199, - 11.566676256052695, - 12.247783829086275, - 12.952221393554941, - 13.52645392938004, - 14.036265709976421, - 14.488358311619473, - 14.875079435214303, - 15.168176675209107, - 15.505517927106329, - 15.738694105374858, - 15.854585350769366, - 16.044791188487476 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.555323564001953, - 2.8519158450290454, - 3.200375368743993, - 3.525393277659516, - 4.010534136172495, - 4.71268184800315, - 5.505534706784999, - 7.030025127617334, - 8.2417518969468, - 9.244416965904554, - 10.846160400861853, - 12.087887680243602, - 15.24935421916594, - 18.30203799519552, - 19.192459226929834, - 20.00205661026468, - 20.79968273614698, - 21.420095653650165, - 21.95264027890277, - 22.409876953534425, - 22.790668007145907, - 23.074314025860165, - 23.396281362575877, - 23.61631125322897, - 23.72471651295615, - 23.901509716985615 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351697950605064, - 3.187346892816094, - 3.523153664872283, - 4.0351537489710845, - 4.658699218918969, - 5.765824467516148, - 7.504484188560135, - 9.369907173610628, - 12.458175883686337, - 14.579817845549021, - 16.181261827740848, - 18.515901489827996, - 20.182825670278696, - 23.992990398706322, - 27.2563774899538, - 28.151799589399367, - 28.949584369043144, - 29.721744186515693, - 30.31454599731847, - 30.81992496984973, - 31.251820040601498, - 31.610733886346676, - 31.87799965408933, - 32.18206012703958, - 32.38979299288644, - 32.491949661059394, - 32.658187121472885 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413081, - 1.8198213217004342, - 2.111467924224728, - 2.4511928331899866, - 2.7884202749609552, - 3.0450317246495553, - 3.388676897402153, - 3.6190981729262006, - 3.8057332357601728, - 4.114079502485895, - 4.371274040719907, - 5.172783463680784, - 6.276280863636739, - 6.68575759991523, - 7.108299453060771, - 7.578293815573196, - 7.9910714879646845, - 8.381356639299545, - 8.750840298286601, - 9.087539344737728, - 9.356619379780447, - 9.684662522377609, - 9.92396712891709, - 10.047427267618925, - 10.257193098132715 - ], - "5._384._0.0875": [ - 3.4934425999311265, - 4.031704003738148, - 4.695634467110861, - 5.887225821646297, - 7.446695595556186, - 10.051270758928142, - 13.542792911563806, - 16.76498095844064, - 21.39233529748742, - 24.234082636709154, - 26.247695741487938, - 29.019941410958744, - 30.907056404429664, - 35.017250398208716, - 38.40286265963991, - 39.318014270482465, - 40.133494809079956, - 40.92219072039383, - 41.528813753900515, - 42.04615714588555, - 42.489373441005284, - 42.85867295799855, - 43.133888566912745, - 43.44772519840929, - 43.66208508855653, - 43.76736476191904, - 43.938301477796905 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.867903705312543, - 2.1622431316564787, - 2.506080869183797, - 2.8001351445002554, - 3.1433721523982374, - 3.513475777057714, - 3.8638319214348567, - 4.4757868137531505, - 4.96324230598326, - 5.3884075080679725, - 6.127094290295109, - 6.755121976858774, - 8.598874736548645, - 10.726051035272448, - 11.416615982285201, - 12.077302379257045, - 12.759952247211464, - 13.315902290588385, - 13.809193619700041, - 14.246436575553881, - 14.620353129216586, - 14.903692100452547, - 15.229831167398444, - 15.455235406779037, - 15.567231925647974, - 15.750966053018407 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.5553235639559304, - 2.8519157786200324, - 3.2003680023741943, - 3.5253258384837625, - 4.010185596405117, - 4.7101296489156885, - 5.495818978788434, - 6.9960999988964385, - 8.182819417426433, - 9.16212230874249, - 10.722222003850515, - 11.928877662933468, - 14.992567398060228, - 17.942433926548187, - 18.80142170387326, - 19.58244775994743, - 20.35181040654079, - 20.950329717330867, - 21.46410555815181, - 21.90536607910604, - 22.272983834702725, - 22.54685959020823, - 22.857837894430684, - 23.070360368670087, - 23.1750495119832, - 23.34571661504061 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351696391045076, - 3.1873347166995605, - 3.5230596104420475, - 4.034667462708074, - 4.655852438970694, - 5.749252909561607, - 7.447731494026967, - 9.256178502558884, - 12.232819324046433, - 14.27073231845692, - 15.8068724901542, - 18.0444466682024, - 19.64132001971681, - 23.293018640546986, - 26.423815803119147, - 27.28340103382138, - 28.049747220049312, - 28.791843550747345, - 29.361937531876578, - 29.848056394722057, - 30.26367208024012, - 30.609186115510916, - 30.86649315768618, - 31.159272987962623, - 31.359289860050023, - 31.45763925904854, - 31.617630764535154 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413081, - 1.8198213217004349, - 2.111467924224728, - 2.4511928331874415, - 2.788420239063031, - 3.0450295266824052, - 3.388630557519039, - 3.6189646235218307, - 3.8054836446484153, - 4.113379205598667, - 4.369651545424254, - 5.163113871910365, - 6.24389063902663, - 6.642574632651529, - 7.052956613572194, - 7.508367380568263, - 7.907503913342168, - 8.28431592323946, - 8.64059181390549, - 8.964955420425905, - 9.224046796030922, - 9.539887450390074, - 9.770296510761312, - 9.889161130173898, - 10.091152321204579 - ], - "5._384._0.0875": [ - 3.4933247968269305, - 4.0310817357253566, - 4.691944173367084, - 5.867125438216927, - 7.389835078080345, - 9.912265122552691, - 13.27299385764087, - 16.36360612469231, - 20.793342887066395, - 23.511388892599136, - 25.437211756501817, - 28.089408238745467, - 29.895321541186064, - 33.832357067294154, - 37.078748496042216, - 37.95672235810859, - 38.73935187841025, - 39.49651479577444, - 40.079122051838795, - 40.576022042886315, - 41.00182763987408, - 41.35669241855431, - 41.62115234581041, - 41.92274297723574, - 42.12872452049781, - 42.22987859366651, - 42.39408003084232 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.8679037053125411, - 2.162243131656476, - 2.5060808691716954, - 2.8001351124708163, - 3.1433669666951873, - 3.5134001674078377, - 3.8635692007273272, - 4.474025124969648, - 4.957737866499104, - 5.377458450812673, - 6.102603465798987, - 6.71599708114046, - 8.505476634974418, - 10.5583007121437, - 11.222980904598481, - 11.858532754142223, - 12.514955272555905, - 13.049431773385955, - 13.52373131909529, - 13.944280337263232, - 14.304108949578346, - 14.576908319420964, - 14.891174554222019, - 15.10848854990004, - 15.216480108470284, - 15.393632964261363 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.5553235639052985, - 2.851915705570118, - 3.2003598993686095, - 3.5252516557589506, - 4.0098016339571805, - 4.707224971248538, - 5.484188263322717, - 6.9532074487693025, - 8.10686648643544, - 9.055301542348355, - 10.561208487021345, - 11.723051899684002, - 14.666726044936613, - 17.497956621894183, - 18.322194672610255, - 19.07215847366709, - 19.811264667348777, - 20.38665475888252, - 20.88078948193631, - 21.30546127413796, - 21.65948135929434, - 21.923310129965095, - 22.22301909324532, - 22.427865960380522, - 22.528765941598525, - 22.693203006293334 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169466732104, - 3.1873212588912576, - 3.5229556564770714, - 4.034130034844573, - 4.65270442528553, - 5.73075068752763, - 7.383084375194451, - 9.124931704655598, - 11.971987177772023, - 13.914436539548731, - 15.377437171033575, - 17.508553902866844, - 19.03003837600481, - 22.514751524838786, - 25.508687576761403, - 26.331602878396723, - 27.0658115877016, - 27.77721295464581, - 28.324124432868988, - 28.790585242834076, - 29.189577158963086, - 29.521399105315275, - 29.768528845356006, - 30.04977381240366, - 30.241902538295097, - 30.336361784059356, - 30.489977839675277 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833184629, - 2.788420199386379, - 3.0450270973503453, - 3.3885793398675794, - 3.618817018140404, - 3.8052077885491977, - 4.112605210511333, - 4.367857556291983, - 5.15234840960546, - 6.207124882339217, - 6.593181276429487, - 6.989224732603791, - 7.427377014106318, - 7.810385761834493, - 8.171319109400914, - 8.512138507169084, - 8.822212132945918, - 9.069862478298711, - 9.371954859165559, - 9.592560231975153, - 9.706458823408992, - 9.900240084341906 - ], - "5._384._0.0875": [ - 3.4931946026221334, - 4.030394059891094, - 4.687861968364775, - 5.844638495086782, - 7.325089749551885, - 9.751829470332776, - 12.961531484700478, - 15.904012011631663, - 20.118884600211132, - 22.706062831497185, - 24.54021526436743, - 27.06830083547353, - 28.790896000930445, - 32.551158217088975, - 35.65586515702784, - 36.496030939796825, - 37.245222191095344, - 37.97026660514478, - 38.52838206480166, - 39.00442790768264, - 39.41245655450159, - 39.752570236686985, - 40.00603687976823, - 40.295105044202934, - 40.49251985388772, - 40.58945688751333, - 40.74677882409764 - ], - "5._48._0.075": [ - 1.5268463243731414, - 1.8679037053125422, - 2.1622431316564774, - 2.5060808691583163, - 2.8001350770698537, - 3.143361235129168, - 3.5133165993400057, - 3.86327883735208, - 4.472077791580194, - 4.951635452429654, - 5.36525532325254, - 6.07499159133969, - 6.671464444204511, - 8.397532611822733, - 10.363456342594525, - 10.998245774275851, - 11.605171719819026, - 12.23212318764169, - 12.742860481341248, - 13.196424424677309, - 13.598996399316302, - 13.943848271106331, - 14.205559797126933, - 14.507465377614666, - 14.716441466394711, - 14.820334344659933, - 14.990795247305282 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235638493432, - 2.851915624830741, - 3.2003509434165194, - 3.525169664811407, - 4.009377283150436, - 4.704012863644627, - 5.4712415875707086, - 6.904534777033029, - 8.019591342130466, - 8.931738501751182, - 10.374264629151185, - 11.484116530480238, - 14.291920943631048, - 16.993802898974362, - 17.781163466327378, - 18.498429004164866, - 19.2059552733674, - 19.75738074925207, - 20.23125835256189, - 20.63888744183091, - 20.978976479203723, - 21.232529308039013, - 21.520724802293824, - 21.717742435030548, - 21.814783561607513, - 21.972887192347446 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351692752072406, - 3.1873063057766995, - 3.5228401532186737, - 4.033532948048082, - 4.64920785546489, - 5.710223878299452, - 7.311410222351418, - 8.979210603413472, - 11.683417254698007, - 13.522218877381048, - 14.906821837909733, - 16.925460422569465, - 18.36825370351243, - 21.680655599510068, - 24.5347634888348, - 25.32035457805336, - 26.02183348660552, - 26.701975489903003, - 27.225262731328453, - 27.671688110706718, - 28.053725158499958, - 28.371572315037195, - 28.608313144887227, - 28.877778156085256, - 29.061852418556644, - 29.152341074916617, - 29.299455377936205 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615422, - 1.4813847491413084, - 1.8198213217004355, - 2.111467924224729, - 2.4511928331815023, - 2.78842015530121, - 3.0450243980925684, - 3.3885224315064555, - 3.6186530144454325, - 3.804901291477302, - 4.1117452855912155, - 4.365864501985363, - 5.14039717567698, - 6.166309574318819, - 6.538259372855779, - 6.918219903667851, - 7.336996920744823, - 7.701929961636499, - 8.04512392658614, - 8.368776390344554, - 8.663100452130958, - 8.898240620632025, - 9.18545661014408, - 9.39559703263403, - 9.504256137913197, - 9.689484608480626 - ], - "5._384._0.0875": [ - 3.4930499537761084, - 4.029630085347467, - 4.683328282427998, - 5.81969791974491, - 7.253309997794146, - 9.574005206049481, - 12.618029219706246, - 15.401214967651189, - 19.390549620553365, - 21.842670518158055, - 23.582856690460304, - 25.984343646607496, - 27.622244813991117, - 31.203065498589858, - 34.16400250293463, - 34.96579492798134, - 35.68101925080474, - 36.373415776679074, - 36.906610222198125, - 37.36143210923699, - 37.75135586930136, - 38.07643688604857, - 38.3186994376025, - 38.59500130236717, - 38.783683544371875, - 38.876323023663446, - 39.026638254254806 - ], - "5._48._0.075": [ - 1.526846324373138, - 1.8679037053125451, - 2.162243131656477, - 2.506080869143455, - 2.800135037735449, - 3.1433548667231066, - 3.5132237465378324, - 3.8629562261500077, - 4.469914604321129, - 4.944857878239336, - 5.351702460489052, - 6.044313070420499, - 6.6219367432261125, - 8.277443250124048, - 10.146977920491448, - 10.74896442560389, - 11.324768584223191, - 11.919964784092077, - 12.405412248265733, - 12.837045488727506, - 13.220759401013142, - 13.550011051785411, - 13.800233283096281, - 14.089391692070258, - 14.289810733375035, - 14.389512291134508, - 14.553153802525685 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637871654, - 2.8519155351203227, - 3.2003409923604313, - 3.5250785643559914, - 4.00890581650482, - 4.700445167169138, - 5.456872089300371, - 6.850543919804044, - 7.922580034124776, - 8.794216482804043, - 10.166402515692738, - 11.219003664107179, - 13.879947764725719, - 16.445507373456774, - 17.19465791785875, - 17.878134937947088, - 18.553163398574817, - 19.08001097118829, - 19.533147067336383, - 19.923348831160002, - 20.24920280905832, - 20.49225992388776, - 20.768696344695126, - 20.957723444148133, - 21.050829808936633, - 21.202483688769693 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169061150066, - 3.187289593479397, - 3.5227110627705933, - 4.032865684582639, - 4.645301429127294, - 5.687339805989326, - 7.232058269750274, - 8.818977002000368, - 11.3702846889579, - 13.100222978435529, - 14.403317941853853, - 16.306076096729697, - 17.668360601398206, - 20.80523406124635, - 23.517276215111764, - 24.26496435051302, - 24.933160946553524, - 25.581494140714295, - 26.080713870190923, - 26.50672080636736, - 26.8714637942787, - 27.175045404477142, - 27.401179578102894, - 27.65861317194069, - 27.834461995829116, - 27.920897071677988, - 28.06137875852735 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004358, - 2.1114679242247285, - 2.451192833178008, - 2.788420106029551, - 3.045021381275131, - 3.388458828219025, - 3.6184697190436994, - 3.8045587480154515, - 4.1107842797285405, - 4.363637309489495, - 5.127058330492284, - 6.120967476684765, - 6.477316902041017, - 6.839535520556141, - 7.23705873818033, - 7.582311412368422, - 7.906331185060648, - 8.211580672962388, - 8.489158601669972, - 8.711086046856748, - 8.982693928966281, - 9.181934719275056, - 9.285166483406961, - 9.461579492161 - ], - "5._384._0.0875": [ - 3.492888301593791, - 4.028776368110885, - 4.678263811857288, - 5.79191218164887, - 7.1738308645108235, - 9.379222804297168, - 12.247011226145828, - 14.864183151837448, - 18.622221400529515, - 20.93710222419735, - 22.582045671488867, - 24.855401898865324, - 26.407659491399553, - 29.806874816804463, - 32.622118492046106, - 33.3849924525352, - 34.06574043800888, - 34.72497750414214, - 35.232837153060416, - 35.66607896321733, - 36.037583375014215, - 36.347362971400976, - 36.57822066980501, - 36.84152508417101, - 37.02131773744339, - 37.10958338374006, - 37.25277117235714 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808691268437, - 2.80013499377347, - 3.143347749093589, - 3.5131199706321286, - 3.8625956790872817, - 4.467497561955208, - 4.937287183701918, - 5.3365711246778496, - 6.010118290765639, - 6.566835113698208, - 8.145087978574972, - 9.910946847843384, - 10.4782169511326, - 11.021294391630246, - 11.583299063542544, - 12.04250383144267, - 12.45145610192748, - 12.815736894063507, - 13.128952166898323, - 13.367379665115406, - 13.643460322230517, - 13.83511045375835, - 13.930522212136378, - 14.087194853293596 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.555323563717674, - 2.851915434855739, - 3.2003298705940786, - 3.52497674694413, - 4.0083789258563645, - 4.696459353997983, - 5.4408381231854115, - 6.790623960706778, - 7.81530980766378, - 8.642687244388, - 9.93900922148062, - 10.930634460147353, - 13.437769086793768, - 15.862930040991746, - 16.573078651476386, - 17.22203202369103, - 17.86389274832403, - 18.365667716795205, - 18.797640819049402, - 19.17005295905612, - 19.481366479881313, - 19.713699136220875, - 19.978112646453983, - 20.158970883130426, - 20.24805656494381, - 20.39312642578219 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835168820335792, - 3.1872707921540187, - 3.5225658378193825, - 4.032115099982925, - 4.64090886155994, - 5.6616487090846235, - 7.143536009201816, - 8.642623189639936, - 11.033928621117221, - 12.652624344086101, - 13.873056793160872, - 15.658738434883062, - 16.93985310561761, - 19.89948162676134, - 22.467652552214485, - 23.17688506851522, - 23.811257895028888, - 24.42722697676633, - 24.901921733316907, - 25.307112536830203, - 25.65420716918825, - 25.94321879352742, - 26.158518268398623, - 26.40365763299558, - 26.571102040691265, - 26.65339642097011, - 26.787107674280897 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004344, - 2.111467924224728, - 2.4511928331740758, - 2.7884200505989316, - 3.0450179873556182, - 3.388387274741485, - 3.618263515307053, - 3.8041734018737836, - 4.109703258147418, - 4.361132120823273, - 5.112068610690327, - 6.070172818681403, - 6.409202441909538, - 6.751939384903123, - 7.126456987644435, - 7.4507439509196365, - 7.754598856647167, - 8.040716428426727, - 8.301040332346325, - 8.509430347004075, - 8.765094105314416, - 8.953215964256314, - 9.050911415445427, - 9.218320838801803 - ], - "5._384._0.0875": [ - 3.492706460880052, - 4.027816106911439, - 4.672570009075406, - 5.760733280172907, - 7.0851520286061715, - 9.166154725549909, - 11.851002914078222, - 14.299526479041802, - 17.824486478896755, - 20.001385183145587, - 21.55051631080655, - 23.694836555507216, - 25.16076616472154, - 28.376506563140904, - 31.04420571488392, - 31.767619678686284, - 32.41338695209089, - 33.03895717277638, - 33.52107246113064, - 33.93238197812255, - 34.28515701686075, - 34.57937114299176, - 34.79862704736057, - 35.04870803389728, - 35.21945769978805, - 35.30327494421492, - 35.43921705195892 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125465, - 2.162243131656477, - 2.5060808691081555, - 2.8001349443162447, - 3.1433397417613618, - 3.51300322369148, - 3.86219008683736, - 4.464779255638968, - 4.928774274573642, - 5.319554965835353, - 5.971683393342244, - 6.505025160074114, - 7.999044224603844, - 9.656080644028725, - 10.187731899710117, - 10.69735436184859, - 11.225541571174354, - 11.658083947114156, - 12.043988923044102, - 12.388510020459005, - 12.685394560974824, - 12.911789471602358, - 13.174494107752727, - 13.357160494824774, - 13.448175074785167, - 13.597705550780802 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235636394978, - 2.851915322058076, - 3.2003173586097446, - 3.5248622032947234, - 4.007786227614157, - 4.691977620003, - 5.4228253519562175, - 6.723576797681574, - 7.696120810444993, - 8.4756898296428, - 9.691908409648903, - 10.620349283162266, - 12.970530523455583, - 15.25361310075897, - 15.924347950523703, - 16.538293285925665, - 17.14647997428017, - 17.62275246691997, - 18.033170491207446, - 18.38743141997241, - 18.68388464044143, - 18.90524805525373, - 19.157350746592304, - 19.32984187590423, - 19.414809936649828, - 19.553142467845404 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "8": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835168547412988, - 3.1872494839968932, - 3.5224012519079158, - 4.031264684469829, - 4.635920016563582, - 5.632160887211953, - 7.043074490642891, - 8.44802607693923, - 10.67645099278297, - 12.184551577907083, - 13.323059059768289, - 14.992466578871932, - 16.192730177481163, - 18.974630028976645, - 21.397445165628966, - 22.067679786806572, - 22.667692184686544, - 23.250732983822825, - 23.70043053879794, - 24.08439303790314, - 24.41347060489097, - 24.687594965103504, - 24.89182208900366, - 25.124393874636613, - 25.283247500207423, - 25.36131027429217, - 25.488106879710813 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.4511928331696207, - 2.7884199877775666, - 3.045014140913634, - 3.388306181083499, - 3.618029822367229, - 3.8037366903440106, - 4.108477620484242, - 4.358285763408167, - 5.094870218159509, - 6.012070610593097, - 6.331880016793466, - 6.653503399555731, - 7.003686766301562, - 7.306303498116334, - 7.5896556589297015, - 7.856555942825405, - 8.099674557020974, - 8.294602349153665, - 8.534382635022522, - 8.711372507514906, - 8.803497084261453, - 8.961786560961826 - ], - "5._384._0.0875": [ - 3.492500381356948, - 4.026728349510741, - 4.666098115265071, - 5.724945160584954, - 6.984488213508753, - 8.933227627873462, - 11.433431884259353, - 13.714753960706068, - 17.00835514419125, - 19.047692513317728, - 20.501013185351155, - 22.51588988002538, - 23.89501278054357, - 26.925640384216734, - 29.444003060787576, - 30.12741933540049, - 30.737707416515683, - 31.329108863034804, - 31.78507553471194, - 32.1741053813746, - 32.50784620395227, - 32.78623606525375, - 32.993697427804975, - 33.23033452888475, - 33.39189164845004, - 33.47118773739117, - 33.599768599883355 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.506080869086977, - 2.8001348882647212, - 3.143330666786107, - 3.512870911730432, - 3.8617304640235948, - 4.4616957820252345, - 4.91904904466308, - 5.300002817000829, - 5.927448705188466, - 6.434318899590187, - 7.837417054695422, - 9.383614599453436, - 9.879845210524456, - 10.356193518989778, - 10.850737208384473, - 11.25668817488915, - 11.61952576328977, - 11.944175744346513, - 12.22455269150674, - 12.438731140187045, - 12.68778368435581, - 12.861243670140722, - 12.947742971278375, - 13.089932069028706 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.555323563550897, - 2.8519151942207293, - 3.2003031783644196, - 3.5247323883733173, - 4.00711464757154, - 4.686887225547704, - 5.4021691669026906, - 6.647006999642085, - 7.562379284798, - 8.291323192704057, - 9.42527978077759, - 10.290225342135303, - 12.484258234159169, - 14.625688867701474, - 15.25688424837014, - 15.835546372630759, - 16.409682726340414, - 16.860067171468245, - 17.248555781517947, - 17.584297875264305, - 17.865553005074496, - 18.075684707207213, - 18.315163644222302, - 18.479069235427623, - 18.559811727157722, - 18.691234727515635 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "9": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351682355013046, - 3.1872251319223657, - 3.5222130555636157, - 4.030240417538139, - 4.6293854517733015, - 5.594619253556141, - 6.925845718706715, - 8.23463645001548, - 10.304490483559904, - 11.706190144927453, - 12.765560411565353, - 14.321640078006192, - 15.442419457771274, - 18.047513798876476, - 20.32390460904051, - 20.954626001765597, - 21.51975926295713, - 22.0693094594615, - 22.49353050094076, - 22.85584402301146, - 23.166526683799656, - 23.425438348160956, - 23.61834945310227, - 23.83807425857734, - 23.988146501870432, - 24.06188449656399, - 24.181618247608053 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.4511928331645296, - 2.788419915981719, - 3.0450097449803226, - 3.388213498220197, - 3.6177617139220013, - 3.803225767635946, - 4.1069400247437935, - 4.3545647213459375, - 5.072588921692966, - 5.942535292729334, - 6.241884524529045, - 6.541803692846827, - 6.867677003279877, - 7.149103487211237, - 7.412657645928333, - 7.661116632419451, - 7.887736550824848, - 8.069715733251813, - 8.294090615660707, - 8.460149765147158, - 8.546746423803384, - 8.695874139410838 - ], - "5._384._0.0875": [ - 3.4922673671642155, - 4.025407381625051, - 4.65761000314903, - 5.679849020741786, - 6.866912477628726, - 8.681362865971103, - 11.002733924622245, - 13.122858413465476, - 16.190587150437658, - 18.09406809515091, - 19.45223593325187, - 21.337860401027793, - 22.62995579966315, - 25.474152469593502, - 27.841502531955218, - 28.484401478273337, - 29.0587312636168, - 29.615481279526062, - 30.04491204603352, - 30.411329912949366, - 30.725746271310406, - 30.988066711402006, - 31.183551382102294, - 31.406537318957692, - 31.558761460704943, - 31.6334680311559, - 31.75457882441506 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.162243131656475, - 2.5060808690627714, - 2.800134824205834, - 3.143320295394026, - 3.5127196625211985, - 3.8611948368911038, - 4.4576971662330065, - 4.906249283208717, - 5.2747045163098445, - 5.872744802467612, - 6.350097321514957, - 7.659409781716694, - 9.09794588203771, - 9.560212103232253, - 10.004475679658047, - 10.466400919276207, - 10.846337339616982, - 11.186448108690348, - 11.491342020848208, - 11.755160614174512, - 11.956998741216212, - 12.192149771883958, - 12.356171819698993, - 12.438024916176493, - 12.572641509955476 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.555323563449641, - 2.851915048120905, - 3.2002869723980694, - 3.5245839990581023, - 4.00631694859843, - 4.680216219429643, - 5.37546007326517, - 6.55577982259123, - 7.411048957383922, - 8.089146909587273, - 9.14267438602308, - 9.946440817873613, - 11.989664721339658, - 13.992083013726932, - 14.583913617631666, - 15.127263126098903, - 15.667129326378092, - 16.091300232693108, - 16.45751277030909, - 16.774368419053175, - 17.040072852039366, - 17.23869375688599, - 17.46521133366614, - 17.62029240313496, - 17.69668996691797, - 17.821011371515443 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "3_12": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 10.0, - 45.0 - ], - [ - 10.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351701849505733, - 3.1873773322045555, - 3.5233872557844053, - 4.036135234549541, - 4.662699581729988, - 5.785768662447173, - 7.571641409829164, - 9.50881825613448, - 12.755572055904645, - 15.012159356061348, - 16.728771769574365, - 19.250735623823363, - 21.065184196786834, - 25.24560072728378, - 28.854559123983297, - 29.84801985306734, - 30.73296971927921, - 31.589304732743425, - 32.245984638519246, - 32.80571779489693, - 33.283566725404, - 33.680267249804096, - 33.97561122597501, - 34.3114126921343, - 34.54087517878534, - 34.65377535489051, - 34.83769804622159 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615415, - 1.481384749141308, - 1.8198213217004349, - 2.111467924224725, - 2.4511928331963553, - 2.7884203647057637, - 3.0450372195654287, - 3.388792614135331, - 3.619425307297801, - 3.8063039186410133, - 4.115342193190791, - 4.373717239478178, - 5.184641383754477, - 6.3144868881912775, - 6.736868232139086, - 7.174436775010215, - 7.6631885726462095, - 8.094356584594404, - 8.503721838172462, - 8.892985485491563, - 9.249361189736913, - 9.535464906278774, - 9.886130237474541, - 10.143743554760457, - 10.27751992593581, - 10.506655691570769 - ], - "5._384._0.0875": [ - 3.4937337329366356, - 4.03289104185465, - 4.700655306514271, - 5.9112624134683855, - 7.5139628454097, - 10.22364806362348, - 13.907107054695034, - 17.353109404794516, - 22.373461435599733, - 25.494619074805083, - 27.7205379519107, - 30.798887924412377, - 32.901957072188175, - 37.488993921613016, - 41.267625599693055, - 42.28855701532916, - 43.197328601354776, - 44.07543301788378, - 44.74987805235317, - 45.32489908676663, - 45.81706603878857, - 46.226811144920916, - 46.53213585141493, - 46.880177439235055, - 47.11794053738089, - 47.2347561620023, - 47.42457427357507 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.867903705312542, - 2.162243131656476, - 2.506080869214057, - 2.8001352245738613, - 3.143385116612377, - 3.513664061788701, - 3.864432300131303, - 4.478439347552773, - 4.970340704712142, - 5.401779013141828, - 6.156030922128863, - 6.801165191966245, - 8.712660199208942, - 10.945483028435211, - 11.677103225823178, - 12.380277776434658, - 13.110249267238094, - 13.70764977224011, - 14.239953364485384, - 14.713651867935889, - 15.12020413994692, - 15.429249150345681, - 15.785908303356347, - 16.03317084866372, - 16.156358461528185, - 16.359058008292156 - ], - "5._96._0.075": [ - 2.209271810327408, - 2.5553235640824994, - 2.851915961244815, - 3.200388259675925, - 3.525510638439076, - 4.011002220271069, - 4.714192363627955, - 5.510038941771282, - 7.046668575659583, - 8.273601320311952, - 9.292456552186316, - 10.926959231763913, - 12.200023434970138, - 15.465077547147722, - 18.653867930167102, - 19.591548266596874, - 20.44651743894538, - 21.291124549771318, - 21.94933662865374, - 22.515244965522967, - 23.001548763248856, - 23.406744054756196, - 23.70870933196115, - 24.05146904315335, - 24.285829413499293, - 24.401380220485542, - 24.590033185333784 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 10.0, - 45.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351700662883714, - 3.187368067719998, - 3.523315623838937, - 4.035756154476261, - 4.660478180180104, - 5.77355475816844, - 7.531793876370036, - 9.430262247376765, - 12.598870872687712, - 14.794399951803767, - 16.46163159592802, - 18.90708076497668, - 20.664004589015647, - 24.707635927069447, - 28.195773353292413, - 29.155775286703474, - 30.01123183286254, - 30.839254695970276, - 31.47453711296852, - 32.01610511288437, - 32.4786189479572, - 32.862718450448966, - 33.14870099954239, - 33.473914629963886, - 33.696130638353175, - 33.80544986341263, - 33.983480639900506 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615415, - 1.4813847491413088, - 1.8198213217004349, - 2.1114679242247254, - 2.4511928331944137, - 2.7884203373921275, - 3.045035547198934, - 3.388757349534459, - 3.6193234000623176, - 3.8061117959942314, - 4.11479289987188, - 4.372445822636612, - 5.1774230621583275, - 6.291568073899113, - 6.706701461061793, - 7.136119386859747, - 7.615061547284786, - 8.036964465588868, - 8.437069175072413, - 8.817099015620569, - 9.164663446744813, - 9.443462258858487, - 9.784899119974062, - 10.035468607207008, - 10.165447638796651, - 10.387804534941766 - ], - "5._384._0.0875": [ - 3.4936439342129066, - 4.032403801126378, - 4.69778953445733, - 5.896550334583437, - 7.4740171565258615, - 10.127487750182983, - 13.718300812505131, - 17.06601313555897, - 21.927901465065375, - 24.94352304435585, - 27.091970979505216, - 30.061506164799113, - 32.089368204903636, - 36.51342922748468, - 40.15964344088665, - 41.14511958179102, - 42.02262803286556, - 42.870776621356534, - 43.5224845316234, - 44.078165080912605, - 44.553903332022244, - 44.95006066743347, - 45.2452657400341, - 45.58180044856005, - 45.81168900623362, - 45.924623754754954, - 46.10809290290801 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.162243131656478, - 2.5060808692048484, - 2.800135200203635, - 3.1433811709659003, - 3.513606499668842, - 3.864230035645745, - 4.477056387588657, - 4.966131066792743, - 5.393623234835308, - 6.1384232433532215, - 6.773593095094789, - 8.648245690622783, - 10.829422201857946, - 11.542510620209248, - 12.227198748495795, - 12.937355593469984, - 13.518016195653919, - 14.035108553205257, - 14.49503835657733, - 14.889633020867935, - 15.189505683159956, - 15.535564948408433, - 15.775418926696993, - 15.894873198040232, - 16.091333216443264 - ], - "5._96._0.075": [ - 2.209271810327425, - 2.5553235640439804, - 2.851915905663361, - 3.200382094333641, - 3.525454165619242, - 4.0107043115255445, - 4.711927119513927, - 5.501357881765984, - 7.016332874245284, - 8.22091203431324, - 9.218865807534714, - 10.815977695270371, - 12.057453515284902, - 15.233664626775743, - 18.32757450224328, - 19.235784652001357, - 20.063833810709863, - 20.881651288325582, - 21.51900438526767, - 22.066963131251402, - 22.537946895572304, - 22.930487205425923, - 23.22305476504056, - 23.55523924297927, - 23.78236642033417, - 23.894331179412468, - 24.077058660135155 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169936838707, - 3.187357961012242, - 3.523237480289771, - 4.035341405262811, - 4.65797028724778, - 5.75882369602894, - 7.481208938338796, - 9.328625180706075, - 12.396294704515208, - 14.515377757837895, - 16.12245264243817, - 18.47752932874295, - 20.168539781523204, - 24.06127638037347, - 27.421582720268233, - 28.346860505593618, - 29.171860689841807, - 29.97076283342608, - 30.584080157108986, - 31.10702526857451, - 31.5538203838268, - 31.924999276574276, - 32.20138267837992, - 32.515731523688075, - 32.73051453157368, - 32.83616377080392, - 33.008164748816725 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615413, - 1.4813847491413081, - 1.819821321700435, - 2.111467924224727, - 2.4511928331923025, - 2.788420307595429, - 3.0450337227991504, - 3.38871887912414, - 3.619212226533639, - 3.8059020915137163, - 4.114188627562611, - 4.37102387147908, - 5.1688371755681635, - 6.262732836988424, - 6.668242947168063, - 7.086812109058595, - 7.552717668808667, - 7.962396752973636, - 8.350394064151498, - 8.718512988744807, - 9.054903900569213, - 9.324611365019914, - 9.654865367006904, - 9.897199772612902, - 10.022881027405544, - 10.237875097929765 - ], - "5._384._0.0875": [ - 3.493545979357752, - 4.031869812169251, - 4.694531437129179, - 5.8786750443163, - 7.423338416500322, - 10.003053580445151, - 13.47522292721847, - 16.702043266579665, - 21.37895756696123, - 24.276841684029883, - 26.34099318974093, - 29.194485600562544, - 31.14343884902437, - 35.39879911150831, - 38.90928573535859, - 39.85853445039204, - 40.70407345945762, - 41.52157095760584, - 42.14997713985703, - 42.685829711258144, - 43.14470213180843, - 43.52689156418434, - 43.81169034873118, - 44.136382183766656, - 44.35816670372198, - 44.46710921583603, - 44.64405411359549 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.8679037053125405, - 2.1622431316564774, - 2.506080869194802, - 2.80013517361793, - 3.1433768666245863, - 3.513543704875711, - 3.864009279004955, - 4.475512181494128, - 4.961256468242096, - 5.383900715488615, - 6.116642907482122, - 6.7387763353261825, - 8.564849215296721, - 10.678974141833171, - 11.368581996361018, - 12.030323868954445, - 12.71639555845682, - 13.2771831411978, - 13.77659530270466, - 14.2208795139403, - 14.60218810178792, - 14.89206939064673, - 15.22682115828185, - 15.458932797291858, - 15.574540050528642, - 15.76465336559992 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235640019545, - 2.8519158450290436, - 3.2003753685065184, - 3.5253925591553306, - 4.010378798560248, - 4.709367374656484, - 5.491027873871172, - 6.978132688015861, - 8.153186569009439, - 9.123500178482686, - 10.671817350443908, - 11.872726829462746, - 14.939009970341814, - 17.922253486815258, - 18.7975477172747, - 19.59606218488231, - 20.38497713097121, - 21.00015824027503, - 21.529245847835934, - 21.98427201256937, - 22.363726302173294, - 22.646622473931057, - 22.96796381820676, - 23.18770218689182, - 23.29601527922728, - 23.47272682283501 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351697950605055, - 3.1873468917640815, - 3.523151895131462, - 4.034887188993776, - 4.655221962699407, - 5.742516112592612, - 7.423990637960219, - 9.211962682637122, - 12.162492404437895, - 14.194040192705389, - 15.73330265683915, - 17.98852189694247, - 19.608047297495983, - 23.340770525483133, - 26.568689875892996, - 27.45838555407386, - 28.25223017426062, - 29.02139656197997, - 29.612298481814573, - 30.11624777579874, - 30.547005541905033, - 30.90499564768252, - 31.171579876947998, - 31.474831667628273, - 31.682024869596216, - 31.783928894017386, - 31.949782969294617 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413081, - 1.8198213217004342, - 2.111467924224728, - 2.4511928331899866, - 2.788420274960955, - 3.045031724647041, - 3.3886767449427495, - 3.61909046631129, - 3.805672420448096, - 4.113526809681826, - 4.3694658178510215, - 5.159361328935494, - 6.230249402736755, - 6.624563534725766, - 7.0304013736868205, - 7.480933968126224, - 7.876190020036858, - 8.249922305035225, - 8.604076883501456, - 8.927470721004811, - 9.186700795693616, - 9.504255816948449, - 9.73743298315879, - 9.85843031354527, - 10.065599720470289 - ], - "5._384._0.0875": [ - 3.493438701755843, - 4.031285034624454, - 4.690959645285558, - 5.858844675874362, - 7.366037416072492, - 9.860126669886954, - 13.195191663745947, - 16.285146610256064, - 20.759429011744583, - 23.531871088802706, - 25.507478249787066, - 28.24045985281271, - 30.10819293865574, - 34.191051493484615, - 37.56337240323908, - 38.475789349773436, - 39.28879911764915, - 40.075090463659876, - 40.67974461224885, - 41.195380867459704, - 41.63704104821852, - 42.004963110995455, - 42.27913056494604, - 42.591717346851276, - 42.80521914802795, - 42.9100827305611, - 43.08036677609319 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.867903705312543, - 2.1622431316564787, - 2.506080869183797, - 2.800135144500257, - 3.143372152346343, - 3.513474929960971, - 3.863767506306452, - 4.47382065024685, - 4.955900402332189, - 5.373158834491221, - 6.0922874912198255, - 6.699448350771637, - 8.469003020163358, - 10.504796128755707, - 11.167170397129654, - 11.802629706062884, - 12.461447210175509, - 13.000091713792745, - 13.480042992290013, - 13.907348332600652, - 14.274435889727005, - 14.553746623694112, - 14.876679901343861, - 15.100796907466977, - 15.212464919298663, - 15.396129358755836 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.555323563955931, - 2.851915778620034, - 3.200368002125412, - 3.52532508573895, - 4.010022304562207, - 4.706562155928773, - 5.479628808487404, - 6.935107981691061, - 8.075862713791375, - 9.013794632695499, - 10.505114370512137, - 11.658882096296706, - 14.600098083350101, - 17.461736616928114, - 18.301851620547314, - 19.0690861771182, - 19.827684559045153, - 20.419810412256226, - 20.929386857781683, - 21.3679965537758, - 21.73403906788882, - 22.007046415213516, - 22.31732005603884, - 22.529532202934423, - 22.634132759271917, - 22.804740108485987 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169639104507, - 3.1873347155949525, - 3.523057752222324, - 4.0343875891038445, - 4.652199696453696, - 5.724599291584141, - 7.361095526374308, - 9.083374018955958, - 11.904911215119224, - 13.840979221041188, - 15.307076759622749, - 17.456066827272277, - 19.00048876950353, - 22.56731888911211, - 25.659721105392578, - 26.51318430233345, - 27.275299121417813, - 28.014195576080642, - 28.58227257770923, - 29.066878802324272, - 29.48129717218742, - 29.82584197888781, - 30.08243530512464, - 30.37436816852459, - 30.573821324894453, - 30.671907654231347, - 30.831501325683075 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413081, - 1.8198213217004349, - 2.111467924224728, - 2.451192833187442, - 2.78842023906303, - 3.0450295266797656, - 3.3886303974368404, - 3.6189565315899053, - 3.8054197887704073, - 4.112798857959954, - 4.367752146381049, - 5.148945077577106, - 6.194514420758195, - 6.5764202345674185, - 6.968078491973555, - 7.401447173105256, - 7.780588576526247, - 8.138394390498354, - 8.47700579753319, - 8.786006464002284, - 9.03370188838254, - 9.337404101228508, - 9.560723593569191, - 9.676742221651276, - 9.875717960575416 - ], - "5._384._0.0875": [ - 3.4933207040032284, - 4.030641855398587, - 4.687032211436557, - 5.837061547862084, - 7.303055885374456, - 9.702763477491109, - 12.887366406792127, - 15.829292168565107, - 20.08945328922453, - 22.73172218691465, - 24.616177788911802, - 27.225863502849478, - 29.01087749280093, - 32.918488583519526, - 36.15062600488268, - 37.02567782689224, - 37.805660636552275, - 38.560249259685264, - 39.140749209954706, - 39.63582275064856, - 40.05996335477864, - 40.413353959966265, - 40.676692272478, - 40.97694496441475, - 41.18200824768091, - 41.28271728233089, - 41.44622110946595 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.8679037053125411, - 2.162243131656476, - 2.506080869171695, - 2.8001351124708154, - 3.1433669666406976, - 3.513399277959122, - 3.8635015662988796, - 4.471960335408324, - 4.950010771506147, - 5.361346319673909, - 6.065485783545609, - 6.656110877436267, - 8.363172547650763, - 10.312177478158748, - 10.94450979161105, - 11.5512200177552, - 12.18046032151883, - 12.695339935897987, - 13.154559175929332, - 13.563939290061349, - 13.916136943395625, - 14.18445175925579, - 14.495169398468168, - 14.711077049625908, - 14.818718740658907, - 14.995820570959406 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.5553235639052985, - 2.8519157055701188, - 3.2003598991073883, - 3.525250865379163, - 4.009630184544969, - 4.703477370595241, - 5.467100947527281, - 6.887808805595288, - 7.990613741482634, - 8.892587451272261, - 10.320790330927453, - 11.42256358142826, - 14.227907460460838, - 16.960488560754087, - 17.763957004413324, - 18.498727298227834, - 19.22602582213296, - 19.794459410393642, - 20.284035556527, - 20.705854378166386, - 21.05819940100925, - 21.32111595640354, - 21.620101316723638, - 21.824645109970966, - 21.92546725483972, - 22.08987081929905 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351694667321015, - 3.1873212577285086, - 3.522953700465685, - 4.033835446061147, - 4.6488603637739825, - 5.704838382802868, - 7.292167179356039, - 8.943213899930043, - 11.62657302809797, - 13.46165104892942, - 14.851065334916425, - 16.889816490161323, - 18.356936692431997, - 21.75414751699534, - 24.70871918788142, - 25.5253945547089, - 26.2552566831709, - 26.96337252081599, - 27.50821830371826, - 27.973131652985458, - 28.370902422625377, - 28.701738544256756, - 28.94814383888156, - 29.228530205841164, - 29.42008878828514, - 29.51428253449788, - 29.66749794217084 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.4511928331846287, - 2.788420199386378, - 3.045027097347568, - 3.3885791713602016, - 3.6188085003333264, - 3.8051405722001475, - 4.111994338155787, - 4.365858322479976, - 5.137445685932592, - 6.155232208261683, - 6.523558362153832, - 6.8997068937724935, - 7.314351795688247, - 7.675973476946185, - 8.016528573427804, - 8.338387624527241, - 8.631963571666464, - 8.867362684951592, - 9.15639067993381, - 9.369354667857317, - 9.480180938333183, - 9.670675129747707 - ], - "5._384._0.0875": [ - 3.493190294708167, - 4.029931065808173, - 4.682693210443546, - 5.813050521489196, - 7.234025157061668, - 9.531753297262346, - 12.555893354172754, - 15.342368026385236, - 19.38145383001211, - 21.89083432223881, - 23.682593630057955, - 26.167228996910097, - 27.868497291163237, - 31.598682889173094, - 34.68880229294497, - 35.52597806980114, - 36.27245630131035, - 36.99486358496556, - 37.55082232545933, - 38.025000100878074, - 38.43132686316961, - 38.76993433440082, - 39.0222554298613, - 39.309957306218074, - 39.50643481853604, - 39.60291778762339, - 39.75952827718144 - ], - "5._48._0.075": [ - 1.5268463243731414, - 1.8679037053125422, - 2.1622431316564774, - 2.506080869158317, - 2.8001350770698523, - 3.143361235071808, - 3.513315663081507, - 3.8632076447464807, - 4.469904643258422, - 4.9435042322978315, - 5.34830227005173, - 6.035935458504106, - 6.608413904472728, - 8.247584597023435, - 10.103138425911082, - 10.70341541448311, - 11.279640936112994, - 11.877698216419875, - 12.367722168327546, - 12.805348237646706, - 13.196152674362038, - 13.53298271377886, - 13.78998008040917, - 14.088152587602004, - 14.295651270604786, - 14.399177278347306, - 14.569585564721729 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.555323563849342, - 2.8519156248307422, - 3.2003509431415487, - 3.5251688328353, - 4.009196817230798, - 4.700069013503965, - 5.453273196177969, - 6.835857354646944, - 7.897272620391257, - 8.760180820036613, - 10.120353420158063, - 11.166512765419224, - 13.828545149551942, - 16.427289312958077, - 17.193194500130993, - 17.894687061440898, - 18.589972331000126, - 19.13421499130329, - 19.603379216211263, - 20.008066343825096, - 20.346434714478765, - 20.599054233991417, - 20.88651674142079, - 21.08323545658573, - 21.180204360775477, - 21.33828811419705 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351692752072415, - 3.1873063045493546, - 3.5228380885509867, - 4.033222010816343, - 4.645151309197496, - 5.682934371013774, - 7.216342363659346, - 8.79047969463501, - 11.328295452494057, - 13.059012615841697, - 14.369843668284185, - 16.296313907148516, - 17.685044686207007, - 20.910443330279353, - 23.7253569103511, - 24.504726619397307, - 25.20183000215297, - 25.878652725864363, - 26.39984870181207, - 26.84470577273509, - 27.225506045560326, - 27.542356418315574, - 27.778366158301996, - 28.04696682466751, - 28.230468036370954, - 28.320690038809726, - 28.467402125503874 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615422, - 1.4813847491413084, - 1.8198213217004355, - 2.111467924224729, - 2.4511928331815027, - 2.788420155301211, - 3.0450243980896365, - 3.388522253637786, - 3.6186440234456096, - 3.8048303413143003, - 4.111100499194423, - 4.363754361925693, - 5.12468524071376, - 6.111860120117549, - 6.465303125267754, - 6.824539912707816, - 7.218937688844759, - 7.561798848408099, - 7.8840426881336505, - 8.188275337458478, - 8.465748146445083, - 8.688382773771767, - 8.96224564256896, - 9.164552425325523, - 9.270048921294165, - 9.451850171167285 - ], - "5._384._0.0875": [ - 3.493045406909794, - 4.029141413763202, - 4.677874377172423, - 5.786453193952192, - 7.158075361782508, - 9.346244151058208, - 12.202448380804917, - 14.829317009683416, - 18.64400983326215, - 21.019239585768332, - 22.717490970978314, - 25.075989985477175, - 26.69277518470494, - 30.24367791644467, - 33.190019533989904, - 33.98881042356254, - 34.701309286183985, - 35.39105807512106, - 35.922090266351915, - 36.37504085461613, - 36.76326180660761, - 37.08683725233757, - 37.32795541512417, - 37.602893190699895, - 37.79064010310405, - 37.88282661291865, - 38.03243221600603 - ], - "5._48._0.075": [ - 1.526846324373138, - 1.8679037053125451, - 2.162243131656477, - 2.5060808691434553, - 2.8001350377354473, - 3.1433548666625617, - 3.5132227582688538, - 3.862881080193673, - 4.467621089046288, - 4.936278510150379, - 5.333823480558973, - 6.003192801220435, - 6.55568705253906, - 8.121347621201968, - 9.878072659662049, - 10.44502914072763, - 10.989720386739345, - 11.555661789779768, - 12.020213598808052, - 12.435742876003433, - 12.80756581321938, - 13.128699028453044, - 13.374133035362867, - 13.659473771462975, - 13.858367896911558, - 13.957683335648534, - 14.121248430133155 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.555323563787166, - 2.8519155351203227, - 3.2003409920701844, - 3.5250776861620685, - 4.008715333080941, - 4.696283358474196, - 5.437932630813183, - 6.778550738104656, - 7.794848352883934, - 8.61564113463, - 9.903607786760674, - 10.891551113990092, - 13.405792783554235, - 15.868139040017482, - 16.595962007412805, - 17.26362663640057, - 17.92636598546549, - 18.445998735283954, - 18.894379163728985, - 19.281602422107856, - 19.605706218370653, - 19.847809891292208, - 20.123494174589986, - 20.312213195159327, - 20.405243949062267, - 20.556874261526918 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "8": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169061150066, - 3.1872895921798565, - 3.5227088766648604, - 4.0325364777055706, - 4.641007782413, - 5.658500750207482, - 7.132268470034079, - 8.623449343628677, - 11.010363400932526, - 12.635530963060924, - 13.867421113694691, - 15.681321729930076, - 16.9914939260877, - 20.044078097412772, - 22.717827824575938, - 23.45938595363094, - 24.123228535278713, - 24.76823576029038, - 25.265347170264263, - 25.689768751259788, - 26.05325966092869, - 26.355832742108742, - 26.58122846393225, - 26.837791900140193, - 27.013064255642643, - 27.099230915988173, - 27.239307222893082 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004358, - 2.1114679242247285, - 2.451192833178008, - 2.788420106029551, - 3.0450213812720266, - 3.388458639887779, - 3.6184601991837324, - 3.8044836248196963, - 4.110101592906627, - 4.361403212527056, - 5.1104379768837935, - 6.063575179750482, - 6.400599911906511, - 6.741398601870809, - 7.114059302712383, - 7.437126189713416, - 7.740320999133757, - 8.026443677774672, - 8.287525460489775, - 8.497238379699052, - 8.75578195461342, - 8.947320148377033, - 9.047421655214473, - 9.220392176877704 - ], - "5._384._0.0875": [ - 3.4928834878124384, - 4.028259002060516, - 4.672491895352848, - 5.756797626080171, - 7.073849347119127, - 9.144631278524237, - 11.828166169834171, - 14.294447599352807, - 17.884556047265065, - 20.125493217855155, - 21.729979019362936, - 23.96173891052242, - 25.493503145166947, - 28.863478121234948, - 31.6643202329403, - 32.42421457744557, - 33.1022583770891, - 33.75886970864573, - 34.264589006473905, - 34.69598026307794, - 35.06580346348366, - 35.374098645287745, - 35.603828843820935, - 35.8657905690177, - 36.044663005799336, - 36.132483072203954, - 36.27497269903298 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.506080869126844, - 2.800134993773471, - 3.1433477490294797, - 3.5131189242342717, - 3.86251611488768, - 4.465069622670641, - 4.9282062353729215, - 5.317646464906576, - 5.966625396865933, - 6.496915803791992, - 7.982959534629555, - 9.636974818978736, - 10.170141254256304, - 10.682951691756664, - 11.21650956977289, - 11.655412200121724, - 12.048663705214532, - 12.401310007080907, - 12.706538847783428, - 12.94022262437368, - 13.212474629812647, - 13.402567002639069, - 13.49756982860258, - 13.654122557735542 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.555323563717674, - 2.8519154348557367, - 3.200329870286764, - 3.524975817095375, - 4.008177247362403, - 4.692054343361934, - 5.42080977187348, - 6.71482391315621, - 7.681756583205836, - 8.457403698491339, - 9.669827640897697, - 10.598076547296891, - 12.963005385273052, - 15.288326111918584, - 15.97784276658472, - 16.611335751745102, - 17.241130908637352, - 17.73578500663625, - 18.16303200023923, - 18.532457214659715, - 18.841993969272732, - 19.073347729459314, - 19.336975974182366, - 19.51750232949626, - 19.606499954938155, - 19.75152589049694 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "9": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835168820335791, - 3.187270790773255, - 3.5225635151528016, - 4.031765469965083, - 4.6363361634092515, - 5.630660208441333, - 7.037496462199705, - 8.440253089683187, - 10.674412620296918, - 12.195325282706504, - 13.349474817115356, - 15.052185160059848, - 16.28445570374317, - 19.16430115526286, - 21.695669100553086, - 22.398919210476702, - 23.0290050788441, - 23.641667916021152, - 24.114247430715064, - 24.517841817932908, - 24.86367176909232, - 25.15166449661048, - 25.366219054701332, - 25.61048409667205, - 25.777349309012482, - 25.859373524514627, - 25.992675679292095 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004344, - 2.111467924224728, - 2.451192833174076, - 2.788420050598932, - 3.045017987352319, - 3.388387074640421, - 3.618253400513142, - 3.8040935789966666, - 4.108977355227687, - 4.358751412058826, - 5.0942111790180915, - 6.008730911493528, - 6.3276515839519245, - 6.648591126294976, - 6.998399352904462, - 7.301137872217232, - 7.585098404276696, - 7.853167609759989, - 8.098037085814068, - 8.29500903595549, - 8.538421549363239, - 8.719264213054668, - 8.81397473266743, - 8.978048827462374 - ], - "5._384._0.0875": [ - 3.4927013315174813, - 4.027266766424562, - 4.6664185275098635, - 5.723004371629181, - 6.978883886928472, - 8.925501489805796, - 11.435750016227884, - 13.743807185787881, - 17.11205532306738, - 19.219542039920853, - 20.730501362609985, - 22.83535721579254, - 24.28174390132726, - 27.469353095694842, - 30.123026714888407, - 30.843516068962476, - 31.48663416164483, - 32.109633556817315, - 32.5896578436115, - 32.999161439293864, - 33.350299020180444, - 33.643069835161064, - 33.86123033057149, - 34.11000840807787, - 34.279865503117335, - 34.3632505515142, - 34.4985151565538 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125465, - 2.162243131656477, - 2.5060808691081555, - 2.8001349443162447, - 3.1433397416932505, - 3.5130021119162826, - 3.8621055699374147, - 4.462196562783342, - 4.919051972095499, - 5.299195226354196, - 5.924845874992355, - 6.430161403441954, - 7.830754090469172, - 9.380800785596874, - 9.88062068373191, - 10.361961078757899, - 10.863541480220812, - 11.277033943208592, - 11.64812758290201, - 11.981593325778183, - 12.270818245324415, - 12.492617061956064, - 12.751548716414526, - 12.932638129533418, - 13.023217957246892, - 13.172567637004335 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235636394973, - 2.851915322058076, - 3.200317358283219, - 3.5248612153467165, - 4.007572027083414, - 4.687286070269686, - 5.401317677549821, - 6.642551399427517, - 7.555684641398781, - 8.28380259035157, - 9.419100452637855, - 10.287747630216895, - 12.505086775877706, - 14.694535397543788, - 15.345760324027115, - 15.944930308940013, - 16.541505415177006, - 17.010855642228805, - 17.41663898345978, - 17.767929105565926, - 18.06258197124549, - 18.282936882487498, - 18.53420964060807, - 18.706332631319494, - 18.79119241300314, - 18.92944624761837 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "10": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351685474130024, - 3.187249482607997, - 3.5223986799969045, - 4.030842764187543, - 4.630263700158795, - 5.595513946592485, - 6.927733614721805, - 8.240639696377334, - 10.326650759792157, - 11.747694026621886, - 12.8270944375903, - 14.421908414054384, - 15.577896339318409, - 18.28644545981178, - 20.674657845440766, - 21.33914011482764, - 21.934999199317858, - 22.514797715920604, - 22.96239594883605, - 23.344766872711443, - 23.67257826647401, - 23.945681847920273, - 24.149163793417646, - 24.38086504714546, - 24.539141780899453, - 24.616934749663002, - 24.74332127087904 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.451192833169621, - 2.7884199877775666, - 3.045014140910314, - 3.388305963195651, - 3.6180180656234424, - 3.8036404873245324, - 4.107575444520174, - 4.35530905340396, - 5.07336657640191, - 5.943612955637592, - 6.243391001692415, - 6.544042652949955, - 6.871147639492439, - 7.15410913507701, - 7.419588926181438, - 7.6704241936796995, - 7.899836666723129, - 8.084632646287867, - 8.31347331042552, - 8.483890372520284, - 8.573288069689808, - 8.72847666592792 - ], - "5._384._0.0875": [ - 3.492497221441309, - 4.0260695563170295, - 4.658515742182587, - 5.680777320031713, - 6.868794883191038, - 8.689955388313917, - 11.032981251033448, - 13.18914586383845, - 16.34164538728959, - 18.317736639221952, - 19.73604871864413, - 21.71443909658623, - 23.075358134807388, - 26.07950378318006, - 28.584469299613907, - 29.26506637708704, - 29.872809837971122, - 30.461744093464425, - 30.915709566257956, - 31.303013311139498, - 31.635192809519225, - 31.912209380847465, - 32.118629434617716, - 32.35402984209235, - 32.51474010100278, - 32.593626061761064, - 32.72156352150346 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.506080869086976, - 2.8001348882647195, - 3.143330666719582, - 3.512869691191499, - 3.861630624973533, - 4.458497196817068, - 4.907103154613487, - 5.2755244755684805, - 5.8736080703971, - 6.351280337616267, - 7.664221020583581, - 9.113715745519105, - 9.58172803204153, - 10.032890103008945, - 10.503646856322852, - 10.892419300491099, - 11.241805108572569, - 11.556300786282959, - 11.829547661619095, - 12.039390517125074, - 12.284804843244387, - 12.45668736904713, - 12.542724045548091, - 12.684652702338845 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235635508975, - 2.8519151942207297, - 3.200303178038176, - 3.5247313056631255, - 4.006857928803633, - 4.681084998534726, - 5.376327067420629, - 6.557116435048439, - 7.414045300469719, - 8.094677371128153, - 9.154889066344658, - 9.966350738529613, - 12.041781312752608, - 14.09851603303144, - 14.711750399986228, - 15.276694247361315, - 15.839938603382931, - 16.28372985398441, - 16.667755842976312, - 17.00058175686999, - 17.280025507815726, - 17.489120351630966, - 17.72771802483841, - 17.891209284896668, - 17.97181645892461, - 18.103112688898026 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "3_13": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 10.0, - 45.0 - ], - [ - 10.0, - 50.0 - ], - [ - 10.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351703948914326, - 3.187393722371707, - 3.5235125611662546, - 4.036592721606381, - 4.663966469878768, - 5.7910884930263755, - 7.590827146480104, - 9.552362914754168, - 12.860954745049568, - 15.176318227789663, - 16.946513824186752, - 19.561079619064884, - 21.452722346572823, - 25.840081651737222, - 29.656218220256306, - 30.71034898367901, - 31.649727477142193, - 32.55897014023766, - 33.2559189033115, - 33.8499956688737, - 34.35688311417592, - 34.77744427971924, - 35.09051813475776, - 35.44633932816535, - 35.68951847743068, - 35.80921162055563, - 36.00434901345772 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615422, - 1.4813847491413088, - 1.819821321700434, - 2.1114679242247245, - 2.45119283319978, - 2.788420413029892, - 3.0450401783657233, - 3.3888548823529194, - 3.619599387529322, - 3.8065949208343492, - 4.115876254568331, - 4.3745661827873725, - 5.187839426346987, - 6.325141694184505, - 6.75159022250657, - 7.194174090912628, - 7.689556321370493, - 8.127590210899639, - 8.544451491677748, - 8.941882822209099, - 9.306800714450361, - 9.600660162324246, - 9.962222489029132, - 10.229247937664944, - 10.368614377393875, - 10.608941346845281 - ], - "5._384._0.0875": [ - 3.493889465989209, - 4.0334189414290815, - 4.702176893791388, - 5.91768510173365, - 7.533147404423962, - 10.27913137631771, - 14.039827779817143, - 17.58725865420212, - 22.80588396071582, - 26.080156549524123, - 28.42762660757363, - 31.687381382066352, - 33.922073686396445, - 38.806661004712105, - 42.83478525652416, - 43.92322677287295, - 44.89147190459735, - 45.82651278848898, - 46.54402256358942, - 47.155644273051145, - 47.67879834505296, - 48.1140868005178, - 48.43841680343214, - 48.80801970525751, - 49.06053815922333, - 49.18463324488815, - 49.386390485005386 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.867903705312543, - 2.1622431316564743, - 2.5060808692303485, - 2.8001352676904148, - 3.143392097330229, - 3.513765218916953, - 3.864738324357906, - 4.479358876766392, - 4.972352120125994, - 5.405370060618985, - 6.1638537789461525, - 6.814037031113675, - 8.748201756805658, - 11.022476535528973, - 11.771821529923663, - 12.49420434940488, - 13.246541206690237, - 13.864410880651176, - 14.416749030282967, - 14.909885838242046, - 15.334473225191255, - 15.658175210643387, - 16.032798847741564, - 16.29333539635191, - 16.42346650151713, - 16.63817661573543 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.5553235641506546, - 2.8519160595812396, - 3.200399167390023, - 3.525609944533744, - 4.0113983261869794, - 4.7154708895988815, - 5.513852739322273, - 7.060782599950315, - 8.300653727890024, - 9.333327894406377, - 10.995941996622772, - 12.296043074631175, - 15.65151471299542, - 18.96165297150667, - 19.94238462395738, - 20.839057756035963, - 21.727267970697746, - 22.42088382825697, - 23.018276148487427, - 23.53217872750053, - 23.960660503525656, - 24.28017127057883, - 24.642900663806397, - 24.891064668625873, - 25.01351710646475, - 25.21366227080227 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 10.0, - 45.0 - ], - [ - 10.0, - 50.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351702941198207, - 3.187385854648715, - 3.523451671223574, - 4.036262235810107, - 4.661973004163471, - 5.780055246080196, - 7.55481825927987, - 9.4813431144635, - 12.718911953620292, - 14.978549329805961, - 16.70344875484935, - 19.247299919368285, - 21.08533036521956, - 25.34367967281986, - 29.044042874205665, - 30.06584984870106, - 30.976698064243706, - 31.858521657640363, - 32.53475306770379, - 33.11123879045363, - 33.60328778556999, - 34.011667416978426, - 34.31569342469638, - 34.661287870639214, - 34.897465451426804, - 35.01369605932676, - 35.20312737100379 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615422, - 1.4813847491413077, - 1.8198213217004342, - 2.111467924224724, - 2.4511928331981343, - 2.788420389834312, - 3.045038758140518, - 3.388824929554402, - 3.619512594551364, - 3.806429801692937, - 4.115392227767905, - 4.373430306920933, - 5.181323092844489, - 6.304439961721919, - 6.724349757573671, - 7.159583445545743, - 7.646115106440057, - 8.075782820659736, - 8.484273313063449, - 8.873347140074362, - 9.230277038522825, - 9.517502422578913, - 9.870655710234457, - 10.131221093484992, - 10.267074477243979, - 10.501041776726366 - ], - "5._384._0.0875": [ - 3.493813072944534, - 4.032991736221592, - 4.699600527315202, - 5.904393172388143, - 7.497050174648133, - 10.192120501306826, - 13.86845607086848, - 17.325817410290615, - 22.39734008961974, - 25.572198278630285, - 27.846009389437622, - 31.001442361257457, - 33.16350049521525, - 37.88982681367792, - 41.788899230891644, - 42.842761492450926, - 43.78054569982186, - 44.68642561355518, - 45.38183842968992, - 45.97467059255641, - 46.48188311691143, - 46.904000935925076, - 47.21852356585431, - 47.57697998248826, - 47.82186911279685, - 47.94220249105995, - 48.137799149688774 - ], - "5._48._0.075": [ - 1.5268463243731347, - 1.8679037053125396, - 2.1622431316564747, - 2.5060808692225303, - 2.800135246994469, - 3.1433887465637644, - 3.51371630764508, - 3.8645644726266775, - 4.478123110240133, - 4.968558641626274, - 5.398007137718527, - 6.1479515331359, - 6.789140983240121, - 8.689999350297283, - 10.91743964410558, - 11.64996296046366, - 12.355503495995885, - 13.08972792783738, - 13.692216827512082, - 14.230518724077179, - 14.710875399257278, - 15.124292963934789, - 15.439374785094293, - 15.803970697291637, - 16.057443569907498, - 16.18399377102734, - 16.392681465537684 - ], - "5._96._0.075": [ - 2.209271810327415, - 2.5553235641179413, - 2.851916012379753, - 3.2003939315824836, - 3.5255619613824325, - 4.011140073977049, - 4.713437520110268, - 5.5060141696189655, - 7.033374337698853, - 8.253059361480588, - 9.26684775781819, - 10.895580034710758, - 12.16699092030588, - 15.441220685570386, - 18.66359596939624, - 19.6166922686971, - 20.488007489473745, - 21.350837928901086, - 22.024586694201478, - 22.604814261679017, - 23.1040207340756, - 23.52033522455821, - 23.830795406145466, - 24.183330785692316, - 24.4245124143375, - 24.543497234444636, - 24.737898783844233 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 10.0, - 45.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351701849505733, - 3.187377331284043, - 3.523385707370658, - 4.03590309800301, - 4.659735817468998, - 5.766809632871696, - 7.509233092047258, - 9.389555643586343, - 12.535078381434435, - 14.724518956051567, - 16.39380275877013, - 18.85336849747754, - 20.629368130262478, - 24.744129636089053, - 28.321288500550107, - 29.309435535690376, - 30.19075544098093, - 31.044339091878328, - 31.699291824899383, - 32.25774123342105, - 32.734585056783715, - 33.130481504912325, - 33.42523639990716, - 33.76034493814671, - 33.989347189743356, - 34.102032724543484, - 34.28563075250115 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615415, - 1.481384749141308, - 1.8198213217004349, - 2.111467924224725, - 2.451192833196354, - 2.788420364705765, - 3.045037219563231, - 3.388792480734275, - 3.6194185667794097, - 3.8062508152642867, - 4.114863236328609, - 4.372167713266765, - 5.173610547968895, - 6.278480632579722, - 6.689716413095073, - 7.115167143035718, - 7.5899245781112645, - 8.008531025603698, - 8.406042164992204, - 8.784288032958083, - 9.131030216097002, - 9.409940149141873, - 9.75281546350195, - 10.00575305433007, - 10.137590275946522, - 10.364593159379407 - ], - "5._384._0.0875": [ - 3.493730319530092, - 4.032526672005879, - 4.696688478584193, - 5.888314782788504, - 7.451382198600178, - 10.079588397174735, - 13.647455551000839, - 16.993246571511083, - 21.891447580133672, - 24.95433731726976, - 27.14730850716732, - 30.190696345596333, - 32.2761302293101, - 36.83810000720371, - 40.60474563976853, - 41.62326689802274, - 42.52990095167362, - 43.40594698799977, - 44.078718684013616, - 44.65229203912535, - 45.143142384967994, - 45.55172365199995, - 45.856162844513236, - 46.20314883253351, - 46.44018737475243, - 46.55665173920928, - 46.745919091259495 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.867903705312542, - 2.162243131656476, - 2.5060808692140566, - 2.80013522457386, - 3.143385116566968, - 3.513663320603361, - 3.864376036140122, - 4.476751757547339, - 4.964190023614896, - 5.38927309107264, - 6.12836012271379, - 6.757807288338399, - 8.614738690820014, - 10.78117610107224, - 11.4922628760779, - 12.176751136814495, - 12.888780405441734, - 13.472841551490161, - 13.994670226798084, - 14.460362437467532, - 14.86125377901453, - 15.166867290968625, - 15.52069435225811, - 15.76675275510918, - 15.889603351843489, - 16.09216065338234 - ], - "5._96._0.075": [ - 2.2092718103274085, - 2.555323564082498, - 2.8519159612448153, - 3.2003882594582405, - 3.5255099798072487, - 4.010859819580071, - 4.7111534076778865, - 5.496732743188164, - 6.998972506219095, - 8.192009659986468, - 9.18079871148941, - 10.76519879398915, - 11.99960359902584, - 15.172632225688488, - 18.291668526975045, - 19.21359984331629, - 20.056850552625356, - 20.89208775042147, - 21.544584989406562, - 22.10667675879911, - 22.59052089579318, - 22.994225624246692, - 23.295360726501144, - 23.637442095930687, - 23.87149535290919, - 23.986952929168336, - 24.175531670164276 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351700662883723, - 3.187368066759464, - 3.52331400797643, - 4.035512754911885, - 4.657302536509152, - 5.752250233174911, - 7.457970811133317, - 9.284662931907203, - 12.323410827403794, - 14.432239930141641, - 16.038527971312778, - 18.404402416282093, - 20.112678789337473, - 24.074275816506873, - 27.523393798984753, - 28.476990584273466, - 29.328074905443128, - 30.15281198772358, - 30.78605393993837, - 31.326114218761294, - 31.787455929708972, - 32.170621826918406, - 32.4559217588696, - 32.78033143607253, - 33.0020151336232, - 33.1110871695092, - 33.28874585252574 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615415, - 1.4813847491413088, - 1.8198213217004349, - 2.1114679242247254, - 2.451192833194414, - 2.7884203373921266, - 3.0450355471966395, - 3.3887572103321375, - 3.619316363567054, - 3.8060562684974544, - 4.114288242014576, - 4.370794682279151, - 5.165160210607564, - 6.2494207201968965, - 6.650611551063957, - 7.064626128801483, - 7.5255388450163005, - 7.931116936473039, - 8.315699614025355, - 8.681240002405472, - 9.016101851577504, - 9.285388078003747, - 9.616522577830374, - 9.860914729066565, - 9.988341193249173, - 10.207896416411025 - ], - "5._384._0.0875": [ - 3.4936403745987903, - 4.032021217565209, - 4.693519920830931, - 5.870602135192155, - 7.4000489728218914, - 9.95083891141834, - 13.393317141569382, - 16.61229275640641, - 21.319446376732007, - 24.26227080553349, - 26.369846643972537, - 29.296349663248307, - 31.30265559861056, - 35.69626336514896, - 39.32805097927143, - 40.31064817242395, - 41.18559600009105, - 42.031280161927626, - 42.68098366761493, - 43.234930217967765, - 43.70909010555006, - 44.103850856625066, - 44.39799311139372, - 44.73325964485628, - 44.96227787342554, - 45.074790918184725, - 45.25759941452838 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.162243131656478, - 2.50608086920485, - 2.800135200203635, - 3.143381170918518, - 3.5136057262283957, - 3.8641712198649474, - 4.475260872110251, - 4.959425510440203, - 5.379693207017334, - 6.106601260754777, - 6.722637018065401, - 8.528638883723994, - 10.623851599654815, - 11.310007813090413, - 11.970287296452913, - 12.657070617789401, - 13.220469781950905, - 13.724042057825097, - 14.173710613496118, - 14.56110815373381, - 14.85664824384475, - 15.199171912619363, - 15.437555700306685, - 15.556613870889356, - 15.752943428510724 - ], - "5._96._0.075": [ - 2.209271810327425, - 2.5553235640439804, - 2.8519159056633585, - 3.200382094106491, - 3.5254534783270928, - 4.010555209941921, - 4.7086690174435235, - 5.486564791796593, - 6.960466499958647, - 8.122676901219236, - 9.082259823438818, - 10.614933173232428, - 11.806296937426033, - 14.863786751236088, - 17.868529391565563, - 18.7569328533705, - 19.570286843352978, - 20.376436408779508, - 21.0067509084551, - 21.550039040478893, - 22.018051472490008, - 22.408822611638655, - 22.70042249283506, - 23.031840078095186, - 23.258640617664703, - 23.370517372775247, - 23.55319778353115 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169936838708, - 3.187357960008049, - 3.5232357909851264, - 4.035086953193373, - 4.6546487190496775, - 5.7363823904591, - 7.402021812569548, - 9.169726113979845, - 12.091092125883382, - 14.11177233071667, - 15.649787540407395, - 17.915463881900397, - 19.55219150397979, - 23.354290434525353, - 26.672060578834827, - 27.5904516322598, - 28.410736278754868, - 29.20611497081066, - 29.817262909009095, - 30.33861214824501, - 30.784174755800006, - 31.15437651586068, - 31.43004725158398, - 31.743556757745534, - 31.957785954971765, - 32.06317910548703, - 32.23479637581128 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615413, - 1.4813847491413081, - 1.819821321700435, - 2.111467924224727, - 2.451192833192302, - 2.788420307595429, - 3.045033722796751, - 3.3887187335945717, - 3.6192048702080424, - 3.8058440401729654, - 4.113661009738462, - 4.369296966617309, - 5.1559467220688795, - 6.217691758576991, - 6.607819990513524, - 7.009169224489294, - 7.4546953630792565, - 7.84576422993605, - 8.215937395867353, - 8.567332857060926, - 8.88900791047931, - 9.147654742446754, - 9.465906702883128, - 9.701035053654353, - 9.823741096332515, - 10.03545653462901 - ], - "5._384._0.0875": [ - 3.4935422581373548, - 4.031469867408314, - 4.690064476748284, - 5.851299960696446, - 7.344027677675676, - 9.80985024739698, - 13.114820884286313, - 16.19613684645826, - 20.70032868844784, - 23.517929335566116, - 25.5372297341606, - 28.34377962405098, - 30.269331755037463, - 34.49173428181525, - 37.98669719046684, - 38.93286475037836, - 39.77565625786472, - 40.59051170961838, - 41.21676964929246, - 41.750764504994116, - 42.2079456168458, - 42.588637962047116, - 42.87229752544123, - 43.195629318738646, - 43.4164807786609, - 43.52497145079148, - 43.70120903917444 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.8679037053125405, - 2.1622431316564774, - 2.506080869194802, - 2.80013517361793, - 3.143376866575047, - 3.5135428962810344, - 3.863947790901422, - 4.473634725290266, - 4.954229344173796, - 5.3692443011613, - 6.082846268907401, - 6.684174611730365, - 8.434146858934893, - 10.450592739305849, - 11.109175202674326, - 11.742874330287153, - 12.4021238682182, - 12.943219886428746, - 13.427225689073168, - 13.859880303014396, - 14.233078619344498, - 14.518097194753162, - 14.848905698968808, - 15.079399900746777, - 15.19458153948156, - 15.384579037036188 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235640019545, - 2.8519158450290445, - 3.200375368269043, - 3.5253918406243376, - 4.0102229250800265, - 4.705959492863432, - 5.475480546491025, - 6.918449051275929, - 8.046748551763418, - 8.974042898622207, - 10.449576364442562, - 11.593464790946753, - 14.525054090367778, - 17.407804980652106, - 18.26110328024095, - 19.04329447454562, - 19.81930955861042, - 20.426775498229993, - 20.95075970988606, - 21.402569300568786, - 21.78013311764411, - 22.06200914050932, - 22.38256241455653, - 22.601983947789613, - 22.710222413759976, - 22.886919056210502 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351697950605073, - 3.1873468907120697, - 3.5231501253907114, - 4.034620631375291, - 4.651742943593542, - 5.719035362675216, - 7.341190913891028, - 9.045312319617048, - 11.841119743899107, - 13.768209901543369, - 15.23427591590831, - 17.39538504424844, - 18.958081627196314, - 22.596509502339575, - 25.780519221349174, - 26.663163285428887, - 27.452147587854753, - 28.217688772754116, - 28.80636800141023, - 29.308685218598832, - 29.7381878524967, - 30.09518648126877, - 30.361049329746123, - 30.663452565133806, - 30.87008755987229, - 30.971734256827133, - 31.13720401043036 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413081, - 1.8198213217004342, - 2.111467924224728, - 2.451192833189987, - 2.7884202749609552, - 3.0450317246445295, - 3.388676592483349, - 3.6190827596963775, - 3.8056116050292204, - 4.112974082038731, - 4.367656779489664, - 5.145865877835606, - 6.183103470608258, - 6.561216239673124, - 6.9488071434275955, - 7.3776406306021585, - 7.7529876779736915, - 8.107569626304745, - 8.44369613945766, - 8.751182981735429, - 8.99842143158867, - 9.302930602829662, - 9.528255393415055, - 9.646006405279788, - 9.849569502106615 - ], - "5._384._0.0875": [ - 3.4934348035741953, - 4.030866073184972, - 4.6862813134058925, - 5.8302092723713645, - 7.283112564745774, - 9.657615170256332, - 12.81595915970922, - 15.752022477574469, - 20.045518358710634, - 22.734729674879873, - 24.66396415763327, - 27.348586783097122, - 29.192275449631637, - 33.24126378526548, - 36.597643895476615, - 37.50690207473821, - 38.31708906279612, - 39.10066798768049, - 39.703118602458424, - 40.21685052103937, - 40.65677777874108, - 41.023166333819965, - 41.296167252365514, - 41.60736140192584, - 41.819908219419254, - 41.924309577367055, - 42.09387045967205 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.867903705312543, - 2.1622431316564787, - 2.506080869183797, - 2.8001351445002554, - 3.143372152294447, - 3.513474082864252, - 3.8637030913374515, - 4.4718540304634695, - 4.948540586488581, - 5.357809257258695, - 6.056883916142686, - 6.642201510519377, - 8.331679602782167, - 10.26344088353877, - 10.89247342020372, - 11.497842078379598, - 12.127886436771808, - 12.645509676134694, - 13.109012627780379, - 13.523943273853844, - 13.882426220299445, - 14.156583051970484, - 14.47534090467753, - 14.69775226180042, - 14.80897403603799, - 14.992522037680377 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.555323563955929, - 2.8519157786200346, - 3.2003680018766323, - 3.525324332994148, - 4.009859013867742, - 4.702992760187355, - 5.463355018647089, - 6.872678124599346, - 7.964247795033179, - 8.856648514925855, - 10.270744515512261, - 11.363799370181288, - 14.162044662618815, - 16.917554741072625, - 17.734718665011982, - 18.484858934739314, - 19.229977770857122, - 19.814083851098065, - 20.318354414789987, - 20.753634182301614, - 21.117731166222963, - 21.389694987026946, - 21.699173535323016, - 21.911077487139107, - 22.01561222840525, - 22.186224600079964 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169639104508, - 3.187334714490338, - 3.523055894002601, - 4.034107716549585, - 4.648547539418606, - 5.699992328812585, - 7.274887669968994, - 8.910823613024785, - 11.57427141710386, - 13.404010629598535, - 14.79579903406097, - 16.849713599702767, - 18.33694631915551, - 21.80907649513687, - 24.85745565535352, - 25.703862047122556, - 26.461069602433085, - 27.19629793641848, - 27.7621245607021, - 28.245077165737825, - 28.65822548538135, - 29.0017690300782, - 29.257635346745417, - 29.548714950465254, - 29.74760796776277, - 29.845436446285873, - 30.00464548924333 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413081, - 1.8198213217004349, - 2.111467924224728, - 2.451192833187441, - 2.788420239063031, - 3.0450295266771255, - 3.388630237354641, - 3.6189484396580016, - 3.8053559328940816, - 4.1122185110542055, - 4.365852776637426, - 5.13478915302215, - 6.145276457961661, - 6.510346579194503, - 6.883052633296752, - 7.293926870082564, - 7.652458613854536, - 7.990455211384664, - 8.310431776390018, - 8.60299475418908, - 8.838285917451143, - 9.128464499903174, - 9.343619722163398, - 9.456252684963415, - 9.651426898008715 - ], - "5._384._0.0875": [ - 3.4933166111892238, - 4.030201978586011, - 4.682121486183823, - 5.807069987929039, - 7.2167076996199855, - 9.493671500609791, - 12.498181910711812, - 15.284062350154176, - 19.362425925484274, - 21.921527606581023, - 23.759660554874497, - 26.32109405029996, - 28.082126745584166, - 31.955849861462383, - 35.17197473338405, - 36.043846543088996, - 36.82098341646576, - 37.57283875188402, - 38.15112108529445, - 38.64427963902321, - 39.066679452044774, - 39.41853087146775, - 39.680698983354844, - 39.97955535114111, - 40.183661605083714, - 40.28390759866272, - 40.4466871766565 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.8679037053125411, - 2.162243131656476, - 2.506080869171695, - 2.8001351124708154, - 3.1433669665862083, - 3.513398388510412, - 3.8634339318975326, - 4.469895656209952, - 4.94228570883134, - 5.345241772426882, - 6.028398284189293, - 6.5962542212222814, - 8.220698678584661, - 10.062801646482756, - 10.660878687305251, - 11.236712332247956, - 11.83643695239951, - 12.3298327711623, - 12.772221745761142, - 13.168952191687541, - 13.512353405701921, - 13.77538911897043, - 14.08181225599362, - 14.29595753077187, - 14.403133401417438, - 14.58009977969633 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.5553235639052994, - 2.851915705570118, - 3.20035989884617, - 3.5252500749993736, - 4.009458735473732, - 4.699730369699117, - 5.450034217524713, - 6.822660851890806, - 7.874527110008156, - 8.729502324079315, - 10.078420196272814, - 11.118044031825994, - 13.777876015338343, - 16.40291510439776, - 17.18332021097654, - 17.90079300385095, - 18.61444855131162, - 19.174776881558895, - 19.65897399247814, - 20.077413673289936, - 20.427781395417732, - 20.68963560753587, - 20.987811475801415, - 21.192043327806594, - 21.29279970933702, - 21.457211019192822 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "8": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169466732104, - 3.1873212565657596, - 3.522951744454303, - 4.033540858433562, - 4.645016935242976, - 5.678992820956938, - 7.202309948732058, - 8.765066187747177, - 11.290359594464103, - 13.02055849828533, - 14.33698797964176, - 16.282617813798932, - 17.693823965392248, - 20.998220348956185, - 23.90944997945753, - 24.719146530665824, - 25.444107721622732, - 26.1485398487978, - 26.69111444433231, - 27.15435427173422, - 27.550837796055117, - 27.88065942845894, - 28.12632926085659, - 28.405854978832984, - 28.596849116799195, - 28.69078295126085, - 28.84361033954047 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.4511928331846287, - 2.7884201993863793, - 3.04502709734479, - 3.388579002852824, - 3.618799982526267, - 3.805073355852959, - 4.111383466592799, - 4.36385912617233, - 5.122561599657229, - 6.103721102359734, - 6.454572732284367, - 6.811149229667091, - 7.20274802101906, - 7.543437359907617, - 7.864014684573396, - 8.167196783491738, - 8.444370004027066, - 8.66741083124234, - 8.942949058357554, - 9.147740973691093, - 9.255162113993634, - 9.441785113167429 - ], - "5._384._0.0875": [ - 3.4931859868041757, - 4.029468075635026, - 4.6775258027939, - 5.781569697208013, - 7.144007067897414, - 9.316829273900815, - 12.161865768885702, - 14.795091305528313, - 18.656696315234445, - 21.085080488230965, - 22.831638034348614, - 25.269121052168355, - 26.946915693292755, - 30.64374327882403, - 33.717973832467116, - 34.55197681055981, - 35.295614037202945, - 36.01529350051965, - 36.56904254688452, - 37.04131389983078, - 37.44591020952468, - 37.782989576827426, - 38.034149715844165, - 38.320467498391174, - 38.51599684228762, - 38.61202115926842, - 38.76791423571458 - ], - "5._48._0.075": [ - 1.5268463243731414, - 1.8679037053125422, - 2.1622431316564774, - 2.5060808691583176, - 2.8001350770698514, - 3.1433612350144524, - 3.5133147268230167, - 3.863136452170992, - 4.467731612570313, - 4.935375786256741, - 5.331364621730058, - 5.996997747131702, - 6.545721747120606, - 8.100164308702006, - 9.84836605894351, - 10.414646003868013, - 10.960274894343831, - 11.529108272835428, - 11.997908666976404, - 12.418869744076261, - 12.797128633097028, - 13.125207027816469, - 13.376926687179866, - 13.670768377810841, - 13.876468152888597, - 13.979507682552843, - 14.14974520802135 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.555323563849342, - 2.851915624830741, - 3.2003509428665815, - 3.5251680008591997, - 4.009016351688737, - 4.696125809593819, - 5.435332742393516, - 6.767763025412212, - 7.776586248239833, - 8.591494371695196, - 9.871843598242316, - 10.85612057770882, - 13.374683318675565, - 15.86778943476632, - 16.611118766531888, - 17.295518689303748, - 17.977288193165396, - 18.513480833593235, - 18.977273713022672, - 19.37856646598129, - 19.714931997057892, - 19.96646647615069, - 20.253091748020143, - 20.44948023992272, - 20.5463743378781, - 20.70445173910805 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "9": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169275207241, - 3.1873063033220075, - 3.5228360238832863, - 4.032911074834425, - 4.641095703493277, - 5.655702171523309, - 7.122267217420147, - 8.606458609026575, - 10.989290181709228, - 12.61948926537863, - 13.860718612709004, - 15.69840163571581, - 17.033770737976386, - 20.169992909210812, - 22.942817842852495, - 23.715338717796516, - 24.407586419256607, - 25.08072936148252, - 25.599637293164616, - 26.04280150412272, - 26.422294861288364, - 26.738114160299766, - 26.973377246701503, - 27.241107082469476, - 27.42403713906356, - 27.513995670147068, - 27.660313416641788 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615422, - 1.4813847491413084, - 1.8198213217004355, - 2.111467924224729, - 2.4511928331815027, - 2.7884201553012105, - 3.0450243980867033, - 3.3885220757691257, - 3.618635032445808, - 3.8047593911535196, - 4.110455714247901, - 4.361644241870946, - 5.1089881029593505, - 6.057715151293889, - 6.392963107120187, - 6.732045291772491, - 7.103060046056022, - 7.425034206155502, - 7.727609880994019, - 8.013664743196978, - 8.275300083693113, - 8.486045570304103, - 8.746920988883245, - 8.941324183198253, - 9.043505898099234, - 9.221487559297138 - ], - "5._384._0.0875": [ - 3.4930408601514085, - 4.028652745019903, - 4.67242238637223, - 5.7532991287836746, - 7.0638166269767035, - 9.125563771972397, - 11.807558761765947, - 14.288184343883579, - 17.933937941432575, - 20.23190826092574, - 21.886875458904225, - 24.20004597784966, - 25.794183100775438, - 29.31265554474981, - 32.24337724487302, - 33.039024307395394, - 33.74870970539633, - 34.43575744723277, - 34.96460552494289, - 35.415673602168425, - 35.8021888359652, - 36.12426039521139, - 36.364236899321654, - 36.63781513232735, - 36.82463112130588, - 36.91636734766486, - 37.065268391971976 - ], - "5._48._0.075": [ - 1.526846324373138, - 1.8679037053125451, - 2.162243131656477, - 2.5060808691434557, - 2.8001350377354477, - 3.143354866602017, - 3.513221769999883, - 3.862805934255912, - 4.465327760140367, - 4.927701142222146, - 5.3159495482407255, - 5.962129535031928, - 6.489711926930183, - 7.968700223931462, - 9.61988992163586, - 10.154172815949755, - 10.669499561700764, - 11.20742088279913, - 11.651624522027625, - 12.051118876289918, - 12.41081742020812, - 12.723439731610084, - 12.963702415868317, - 13.244745575975948, - 13.441820958497416, - 13.540628287713435, - 13.70397392862399 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637871645, - 2.851915535120324, - 3.2003409917799446, - 3.5250768079681407, - 4.008524850002972, - 4.692122512322739, - 5.419017750026673, - 6.707050478120159, - 7.66901425939496, - 8.441188934887725, - 9.650194645471815, - 10.578084439421904, - 12.954874734581079, - 15.316185332035513, - 16.02235946266475, - 16.67346171316059, - 17.32304141898456, - 17.834784537054563, - 18.277862727011797, - 18.661700379209826, - 18.983778200779522, - 19.224769463363526, - 19.499576387812414, - 19.68793395849794, - 19.780872901431074, - 19.932468163649006 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "10": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169061150066, - 3.1872895908803156, - 3.5227066906110913, - 4.032207392187855, - 4.636703426140433, - 5.629335525382722, - 7.03257770523631, - 8.433406503615286, - 10.672549249125927, - 12.204391116149322, - 13.371889982599072, - 15.103383087268462, - 16.363817177166226, - 19.332400332928287, - 21.965843770873757, - 22.70073536996533, - 23.359812164391833, - 24.00117036557515, - 24.49598761156642, - 24.918703552475, - 25.280870901238746, - 25.582397745479565, - 25.807036449271937, - 26.062720160015186, - 26.237415055607684, - 26.323314571382586, - 26.462989504333354 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004358, - 2.1114679242247285, - 2.4511928331780086, - 2.7884201060295486, - 3.0450213812689197, - 3.388458451557053, - 3.6184506793527524, - 3.8044084968389087, - 4.109418360095689, - 4.359162375967974, - 5.093629355069029, - 6.005784849603277, - 6.323922868460796, - 6.644260818131514, - 6.99373896179392, - 7.29658086695124, - 7.5810633658957105, - 7.850128353724553, - 8.096478721260324, - 8.29517375070302, - 8.541660984090134, - 8.72581469323478, - 8.822793422482306, - 8.992114896673694 - ], - "5._384._0.0875": [ - 3.4928786596872783, - 4.027741921549117, - 4.666701280553218, - 5.72129130487075, - 6.973941867906879, - 8.918697621513973, - 11.4376472658877, - 13.768539530372646, - 17.20183330075438, - 19.370555323205455, - 20.934366896869136, - 23.12326937074539, - 24.633500290451735, - 27.972359111553246, - 30.7580127642765, - 31.51482131111572, - 32.19010865331005, - 32.84407405809937, - 33.347658114917614, - 33.77721093917941, - 34.14537171123561, - 34.452203826640684, - 34.6808242756455, - 34.941466206572606, - 35.11943528740849, - 35.2068183602367, - 35.34862380264739 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.506080869126844, - 2.80013499377347, - 3.1433477489653736, - 3.513117877852457, - 3.8624365672197984, - 4.4626385155430555, - 4.919054515296326, - 5.298482319031743, - 5.922548680906539, - 6.426493635580971, - 7.824883546893518, - 9.378267427675146, - 9.881132744939684, - 10.366703250778283, - 10.874265540990947, - 11.294227387204174, - 11.672479692926549, - 12.013700523980749, - 12.310833865647396, - 12.539549687580344, - 12.807605896842205, - 12.995877625686193, - 13.090350668092924, - 13.246623569808706 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235637176734, - 2.851915434855739, - 3.200329869979444, - 3.5249748872578626, - 4.007975636181989, - 4.6876380499422785, - 5.400566025581391, - 6.638621151067135, - 7.549783871813031, - 8.2771757681807, - 9.413633799651278, - 10.285454743156901, - 12.522707194915155, - 14.75389332021095, - 15.423039221985714, - 16.040801062039023, - 16.65800686480039, - 17.145032333466435, - 17.567108258789563, - 17.933183983453524, - 18.240678278451124, - 18.470890966196237, - 18.733593591411818, - 18.91371732499685, - 19.002599696305147, - 19.147549722047657 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "11": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351688203358054, - 3.187270789471169, - 3.5225611039678917, - 4.031369889725306, - 4.631032401032179, - 5.596297037258445, - 6.929386269923412, - 8.245897057497102, - 10.346069404104911, - 11.783959229538283, - 12.88079563664565, - 14.50959284530564, - 15.696890678607435, - 18.499713305466464, - 20.99327931179722, - 21.690135751841165, - 22.315618771097476, - 22.924713225207896, - 23.39501895445452, - 23.79691341327269, - 24.141416058699534, - 24.42835702571564, - 24.642151117762094, - 24.885536067107772, - 25.051822869789387, - 25.133578524572815, - 25.266475242037114 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004344, - 2.111467924224728, - 2.4511928331740758, - 2.788420050598931, - 3.045017987349207, - 3.388386870370177, - 3.6182423785338593, - 3.8040033879173167, - 4.108131523365679, - 4.355960504228327, - 5.074047224376568, - 5.944556227427054, - 6.2447096917537355, - 6.546002632724687, - 6.874185899744297, - 7.158490448567556, - 7.425652828159638, - 7.678558264679415, - 7.910393700770918, - 8.097626007087383, - 8.330332439807178, - 8.50455668948576, - 8.596439352831254, - 8.757159070651648 - ], - "5._384._0.0875": [ - 3.4926983687554993, - 4.0266490745827745, - 4.659308527980217, - 5.681589826052847, - 6.870442741316222, - 8.697482675631518, - 11.059482663705419, - 13.247045896294287, - 16.474369589257517, - 18.516174760944864, - 19.98990050280165, - 22.055198746323185, - 23.48155616857491, - 26.639913106184615, - 29.279086552612444, - 29.99659896619582, - 30.637066684100937, - 31.257523015683557, - 31.735500165884204, - 32.14324341440146, - 32.49279297804504, - 32.7841692209782, - 33.00127290413302, - 33.248796130539915, - 33.417794630917896, - 33.50076423568705, - 33.635377811952864 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125465, - 2.162243131656477, - 2.5060808691081555, - 2.800134944316244, - 3.143339741630884, - 3.5130009676546328, - 3.8620119676987605, - 4.4591974052772265, - 4.907850547510867, - 5.276242174209772, - 5.8743636312643455, - 6.352315830075878, - 7.668434005168666, - 9.12752698461211, - 9.600531695224545, - 10.057677203653334, - 10.536100576100752, - 10.932582573385188, - 11.290121565777344, - 11.613150770328641, - 11.894886529684086, - 12.112032316505175, - 12.366954751646453, - 12.546246467126897, - 12.636276124307253, - 12.785272151878189 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235636394986, - 2.8519153220580766, - 3.200317357977363, - 3.5248602003008336, - 4.007331338781908, - 4.681845408000647, - 5.377085932329697, - 6.558286408517827, - 7.416668470666493, - 8.099519314868399, - 9.165582409738139, - 9.983762413963428, - 12.08725010456547, - 14.191822159238267, - 14.824346063559009, - 15.408975544466246, - 15.9937971673359, - 16.455917133398145, - 16.856748697881937, - 17.20477155675412, - 17.49738448726193, - 17.7165751604768, - 17.966871656506736, - 18.138543606491623, - 18.223259153402353, - 18.36138487099735 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "4_4": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835165636239734, - 3.187022207622659, - 3.520662700126178, - 4.024811706360364, - 4.618246492085718, - 5.577602357189488, - 6.930593362977536, - 8.27013730911453, - 10.305799407868758, - 11.592006196271335, - 12.513529975375201, - 13.79808800355458, - 14.678979018204332, - 16.62480215658412, - 18.2488264768942, - 18.690716626034398, - 19.085984722477804, - 19.46983352268822, - 19.76659712159539, - 20.019967202996902, - 20.237708518807462, - 20.41961226179577, - 20.555207696500926, - 20.709951202677345, - 20.81558646499876, - 20.867416249016795, - 20.951344739626176 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961542, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247276, - 2.451192833122094, - 2.7884193176830028, - 3.0449731122312995, - 3.3874426433772196, - 3.6156114031501847, - 3.7996703668647145, - 4.100882362106419, - 4.346224898925525, - 5.058431311244528, - 5.938205478332148, - 6.2454712872914175, - 6.553322425438452, - 6.885623183027443, - 7.168405190432672, - 7.427814593237117, - 7.66575546132917, - 7.875646469458194, - 8.038201801611946, - 8.229905687023377, - 8.364436565153676, - 8.43170041321568, - 8.542218918216287 - ], - "5._384._0.0875": [ - 3.490341452425285, - 4.019256693703507, - 4.645242475571041, - 5.663015696969794, - 6.870961396281224, - 8.722045952534526, - 10.968017694918828, - 12.850605315815251, - 15.333821659373363, - 16.76783249479386, - 17.755971993298417, - 19.095372128092308, - 19.99702132365333, - 21.961932120277055, - 23.590345099332236, - 24.032380773467327, - 24.428493817447, - 24.813430064076773, - 25.11149023696463, - 25.366028392849262, - 25.58505101682981, - 25.76825577351642, - 25.904849535939963, - 26.06088890444515, - 26.16737568079158, - 26.21958387181005, - 26.304039577016905 - ], - "5._48._0.075": [ - 1.5268463243731403, - 1.8679037053125447, - 2.1622431316564747, - 2.5060808688610523, - 2.800134290381807, - 3.1432338676191445, - 3.51146772321088, - 3.8574550748275773, - 4.448646633722987, - 4.892881358644619, - 5.259328855039348, - 5.860557995824219, - 6.346883434753211, - 7.687273576885126, - 9.101118153759293, - 9.529338705689813, - 9.927289641778144, - 10.326192135238777, - 10.642615140692383, - 10.916900159028845, - 11.15566961322875, - 11.356928805832112, - 11.507619363301462, - 11.67983744328869, - 11.797719211064464, - 11.855743645066019, - 11.949922092002977 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235626058273, - 2.8519138306223555, - 3.2001519249819794, - 3.523354932375397, - 4.001549412014162, - 4.669089316628495, - 5.359101946268944, - 6.552379489671893, - 7.429815477491777, - 8.121820314543074, - 9.173143912712952, - 9.946213029499233, - 11.781039134458084, - 13.403268695619028, - 13.854454372473098, - 14.260003929688882, - 14.655669234316463, - 14.962475413080817, - 15.224731293240202, - 15.450225154706388, - 15.638568709166531, - 15.778910465988814, - 15.938820677805234, - 16.047959625600665, - 16.1015379064994, - 16.188353466015815 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351647264993423, - 3.186951185113044, - 3.520120762095406, - 4.022908840457471, - 4.613192189018059, - 5.553357119545568, - 6.836941764565307, - 8.072417777476293, - 9.917034103843235, - 11.073390796484931, - 11.900087116780503, - 13.051737859601054, - 13.84151299956939, - 15.58897243519494, - 17.050915239385326, - 17.44916920093101, - 17.805773444528953, - 18.152349245604196, - 18.42056433245828, - 18.649624669380906, - 18.846603680143236, - 19.011257479437973, - 19.134008158091746, - 19.27413530400662, - 19.369785226120584, - 19.41670551318206, - 19.49264845544399 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247267, - 2.451192833107242, - 2.7884191082784517, - 3.044960290773892, - 3.3871729161976023, - 3.6148602890949224, - 3.798427780692208, - 4.098671421766258, - 4.342760701025555, - 5.044196907034894, - 5.885761165493484, - 6.173109241648802, - 6.458187213329125, - 6.763304769544556, - 7.021219579646446, - 7.256751563518459, - 7.472114549141299, - 7.661736239898098, - 7.808486494653682, - 7.981608972488866, - 8.103176704421157, - 8.1639743328458, - 8.263914864157965 - ], - "5._384._0.0875": [ - 3.4896748046623505, - 4.0171018504542335, - 4.6391649603613345, - 5.633334582359261, - 6.777423354182605, - 8.48011743093466, - 10.508676150536084, - 12.196848641332405, - 14.418505687057298, - 15.700982948369044, - 16.585012703238007, - 17.784388376412807, - 18.59237334378901, - 20.356297930357258, - 21.820925841542255, - 22.218835703293472, - 22.575624522310008, - 22.922522909474765, - 23.191302577308537, - 23.42086333314305, - 23.61846985157123, - 23.783815779548103, - 23.907095834432504, - 24.04794453869986, - 24.14405292279984, - 24.19116378321505, - 24.267345824271224 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.506080868790454, - 2.8001341035433973, - 3.143203617967474, - 3.511029904247479, - 3.856152805478866, - 4.444974647594222, - 4.884466201927085, - 5.243246979981296, - 5.8227560139656775, - 6.283297777362145, - 7.524103840428952, - 8.807945512182934, - 9.194384924931446, - 9.553166658512048, - 9.912687850486941, - 10.197983773814087, - 10.445428388178932, - 10.661051157114642, - 10.843018763232672, - 10.979390883733371, - 11.135467248125636, - 11.242381692801242, - 11.295016290117196, - 11.380439148692652 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235623104933, - 2.8519134044978625, - 3.2001046586465205, - 3.522925086582346, - 3.9998856532802853, - 4.663987000362338, - 5.342182722576681, - 6.4831737142367984, - 7.300051390954155, - 7.935454728449091, - 8.891221455834549, - 9.589548472760537, - 11.240752602456341, - 12.699955368817093, - 13.106043498915271, - 13.471550686224996, - 13.828500722672317, - 14.10565082229637, - 14.342706531216326, - 14.546746378452665, - 14.717337608943652, - 14.844505073188188, - 14.989509482128286, - 15.088491705043397, - 15.137077502637203, - 15.215769375587161 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "4_5": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351669594995696, - 3.1871255135651895, - 3.521450763630739, - 4.027440927131935, - 4.622901064505621, - 5.590842323594143, - 6.994013251503387, - 8.440417815809157, - 10.728184854157313, - 12.214306632006716, - 13.292549745887117, - 14.80816776521213, - 15.853513199927047, - 18.168200857384697, - 20.099784066308047, - 20.625001327106478, - 21.09399959055764, - 21.548853866921366, - 21.899853567786867, - 22.199376563300056, - 22.456438843198356, - 22.670932167342954, - 22.83077815451506, - 23.0130704568225, - 23.137526387217555, - 23.19861671795847, - 23.297635289834563 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.451192833143696, - 2.78841962227144, - 3.0449917616272018, - 3.3878349676301713, - 3.616701375947365, - 3.801447409704434, - 4.103722699832003, - 4.349851754894547, - 5.066561474113735, - 5.971024315259826, - 6.2955218819689645, - 6.62582828289826, - 6.9882906596436865, - 7.30163597242899, - 7.592950879193618, - 7.863343356618984, - 8.104295595873035, - 8.292390753883636, - 8.515662382368468, - 8.673235627317126, - 8.752330139054957, - 8.882718003075793 - ], - "5._384._0.0875": [ - 3.4913178637505475, - 4.022181073829324, - 4.650368377493574, - 5.679273898695907, - 6.934048801514182, - 8.942879221488022, - 11.489485114208524, - 13.684995808311337, - 16.62944860524694, - 18.344229320003887, - 19.52898140146531, - 21.13567017703279, - 22.217371498825415, - 24.569254502705515, - 26.51258654834882, - 27.039341438027172, - 27.510770170273112, - 27.968408466397904, - 28.322269114374457, - 28.624373254589987, - 28.884097145454795, - 29.10117967968234, - 29.263019527746835, - 29.447835148184783, - 29.5739852640785, - 29.635856995184252, - 29.73602027391017 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.5060808689637466, - 2.800134562146767, - 3.143277867155833, - 3.5121044816704936, - 3.8593228688016947, - 4.4525539637029485, - 4.898703068591462, - 5.26838558887342, - 5.881864911229149, - 6.3870005881946526, - 7.8263540122829225, - 9.412926489035238, - 9.9048563976805, - 10.36562493821697, - 10.83047667908275, - 11.20084087218063, - 11.522844256185813, - 11.80358597118042, - 12.040355409554644, - 12.217672829146709, - 12.42013260243858, - 12.558710792834725, - 12.626965836083905, - 12.73785532838156 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235630354045, - 2.8519144504397986, - 3.200220676151204, - 3.523980108850833, - 4.003890726776593, - 4.6737315111805815, - 5.368629519144982, - 6.595906981770949, - 7.528573477316917, - 8.282223236150426, - 9.45367860913557, - 10.332264553318971, - 12.458704367017562, - 14.368556747552583, - 14.902671587749616, - 15.382706738935145, - 15.850985855448844, - 16.213657057920507, - 16.523527691355074, - 16.7895865650334, - 17.01148425955976, - 17.176729811423197, - 17.364776703032707, - 17.4930992608774, - 17.556120493846507, - 17.6583368081961 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351663640324896, - 3.187079025855097, - 3.5210961280230464, - 4.026256801080415, - 4.620679596130408, - 5.581342227156848, - 6.943112631117537, - 8.3119061968232, - 10.437615443796641, - 11.805968769447427, - 12.795931741961128, - 14.185816514269026, - 15.144100752774316, - 17.26865417032703, - 19.045229973117674, - 19.528819270594727, - 19.96107115280859, - 20.380604312268346, - 20.70466083731581, - 20.98126901903915, - 21.218816320474723, - 21.417137287655024, - 21.564947879714698, - 21.73356300587548, - 21.848673489949775, - 21.905165277405725, - 21.996689417861297 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.451192833133975, - 2.7884194852066417, - 3.044983369398643, - 3.3876584208449128, - 3.6162108734136047, - 3.8006476284261015, - 4.102439785864223, - 4.3481743258226935, - 5.061270999247916, - 5.9447576180517485, - 6.255824443290809, - 6.569549262699487, - 6.910884687344959, - 7.203860980226212, - 7.474829914695701, - 7.725368144099679, - 7.948050522229073, - 8.121647028551868, - 8.327650099025401, - 8.473069945656743, - 8.546070023645806, - 8.666454143188732 - ], - "5._384._0.0875": [ - 3.4908783986811023, - 4.0208629086587555, - 4.647845957178613, - 5.667156867053966, - 6.883390991621373, - 8.779441562788344, - 11.137539539318718, - 13.153520996798933, - 15.848687597244828, - 17.416971545953995, - 18.50067665547721, - 19.971432282122446, - 20.962238600786442, - 23.11998407238362, - 24.906027031814602, - 25.39053284565908, - 25.824397830204305, - 26.2457760431702, - 26.571799833918924, - 26.85017140979974, - 27.089580764047856, - 27.28974768659247, - 27.43897869190371, - 27.609416113730724, - 27.725739368315388, - 27.782781485012812, - 27.875094586767542 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564765, - 2.506080868917536, - 2.8001344398525374, - 3.143258067360414, - 3.511817936630581, - 3.8584822442261126, - 4.450749723549048, - 4.8955487977683045, - 5.2624184546734085, - 5.865189593370569, - 6.354811377674212, - 7.721374527012855, - 9.197553106076711, - 9.651881985036304, - 10.076753245376496, - 10.50504496042398, - 10.846271743861031, - 11.143043320858995, - 11.401993276463116, - 11.620613290765638, - 11.78448197622543, - 11.971839724079764, - 12.100177919593024, - 12.163399901545597, - 12.266104330035484 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235628420974, - 2.85191417152195, - 3.2001897381139464, - 3.52369877575152, - 4.002836709034522, - 4.671507621026489, - 5.3623523958800625, - 6.5608116580657425, - 7.451349226135013, - 8.161408662969507, - 9.253641844400866, - 10.066866858982916, - 12.02528106121994, - 13.781310517260053, - 14.272509409273658, - 14.714493448326069, - 15.14603465003867, - 15.480665262111376, - 15.76675572180131, - 16.012645594548598, - 16.217916740710585, - 16.370845171140513, - 16.544997925700372, - 16.663859571792273, - 16.722227495861578, - 16.816856530786318 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351656362397586, - 3.1870222077625265, - 3.520662542462161, - 4.024725277625346, - 4.6164449457051955, - 5.559562301356887, - 6.854561927969589, - 8.120447900048557, - 10.055027159587599, - 11.293184233597465, - 12.188168530628072, - 13.44527637833843, - 14.31280639256918, - 16.240881996543386, - 17.858017819727984, - 18.2988286039526, - 18.69325791174862, - 19.07639207395043, - 19.37262662305555, - 19.625559559503333, - 19.842912486664606, - 20.024473426844295, - 20.159806725278344, - 20.314229974812832, - 20.419643910451875, - 20.471366570947602, - 20.55512695097287 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961542, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247276, - 2.451192833122094, - 2.7884193176830028, - 3.0449731122316335, - 3.3874426359626373, - 3.615609781338652, - 3.7996515176094663, - 4.100646660046628, - 4.345307621318644, - 5.048678100564503, - 5.895766901113474, - 6.187380376051302, - 6.4786400855583235, - 6.79296162577209, - 7.06110990306807, - 7.308183302247539, - 7.536108766536005, - 7.738506630386754, - 7.896321762757711, - 8.083851340310042, - 8.216459592889546, - 8.283096451816174, - 8.393124312240852 - ], - "5._384._0.0875": [ - 3.4903452786224256, - 4.019124865882309, - 4.642710893735971, - 5.64029173843186, - 6.795006074396598, - 8.544031062865198, - 10.684327333208312, - 12.50532190359343, - 14.938880153800072, - 16.35608654578909, - 17.33622230796111, - 18.66804850109008, - 19.56611746845016, - 21.525574457478477, - 23.150610404022757, - 23.59181021466942, - 23.98711759947602, - 24.371231143615073, - 24.668599501471192, - 24.92253152951065, - 25.14099835946385, - 25.32370979150895, - 25.4599275558376, - 25.61551875230526, - 25.7216968242016, - 25.773754741589535, - 25.857973142820374 - ], - "5._48._0.075": [ - 1.5268463243731403, - 1.8679037053125447, - 2.1622431316564747, - 2.5060808688610523, - 2.800134290381807, - 3.143233867629361, - 3.511467665393575, - 3.8574385634398944, - 4.447714789606452, - 4.888302448821012, - 5.248167997117308, - 5.830508297092652, - 6.295296586288774, - 7.56361887389745, - 8.90982360494905, - 9.322335114881888, - 9.708057004364308, - 10.09708949939826, - 10.407398184140611, - 10.677608220924602, - 10.913749061747826, - 11.113444149598129, - 11.263320515047692, - 11.434978919057615, - 11.552688041368015, - 11.610695030571737, - 11.704935810859379 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235626058277, - 2.851913830622356, - 3.200151925018721, - 3.5233548841477056, - 4.001500388394046, - 4.667227780746542, - 5.3473600962024905, - 6.496001656505285, - 7.327146079181405, - 7.981025431062503, - 8.977774653538907, - 9.716112080638158, - 11.490796485403289, - 13.084823547615835, - 13.531443597883513, - 13.93399452961531, - 14.327530265190676, - 14.633154342086335, - 14.89465024576998, - 15.1196599568755, - 15.307696682750466, - 15.447851464430137, - 15.607576325531452, - 15.716613494272394, - 15.770152218969342, - 15.85691750463027 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "4_6": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351678756032506, - 3.187197033234045, - 3.5219963794629896, - 4.029262275664414, - 4.626108581610381, - 5.599113591668784, - 7.03239296960233, - 8.550566761429423, - 11.03026728310728, - 12.682445979852233, - 13.896667870194934, - 15.619478325889647, - 16.816124526964035, - 19.47702985565654, - 21.701034025542437, - 22.30575172633598, - 22.84496116279766, - 23.367327873650233, - 23.769735045786163, - 24.11296810756103, - 24.40717647742584, - 24.652384251630004, - 24.835072768254197, - 25.04327843716534, - 25.185441167942734, - 25.255251281597282, - 25.368507077928804 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.451192833158654, - 2.7884198331403587, - 3.0450046727493625, - 3.3881065808553408, - 3.61745603905012, - 3.802677932810885, - 4.105689469786164, - 4.352354662535813, - 5.071771784305429, - 5.990604353793003, - 6.32576866895374, - 6.670774489738678, - 7.054081232160958, - 7.389701095010413, - 7.705317213736449, - 8.001465741050918, - 8.268010515851842, - 8.47782677957167, - 8.728785748021254, - 8.907165177383826, - 8.997146997899398, - 9.146136327647948 - ], - "5._384._0.0875": [ - 3.4919941422393506, - 4.0242075772002455, - 4.653887630450317, - 5.689308081942313, - 6.972211674358002, - 9.089147996366483, - 11.870647620647508, - 14.333576460609423, - 17.69650961398834, - 19.675061035970785, - 21.047070394496124, - 22.91020128887029, - 24.165468196090195, - 26.89035467851769, - 29.13651163528893, - 29.744583563177716, - 30.288141166386396, - 30.815269093575186, - 31.22231811473582, - 31.569734459016253, - 31.868160532014514, - 32.117404963683086, - 32.30320670140425, - 32.515314916776454, - 32.66011973522588, - 32.73116511297801, - 32.84626109361828 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.5060808690348377, - 2.800134750291741, - 3.143308328392029, - 3.512545332173703, - 3.8606163442269272, - 4.455256585224925, - 4.902607201453992, - 5.274128688342792, - 5.894553145720666, - 6.410821325292352, - 7.915882559451679, - 9.633982066877328, - 10.178383564101987, - 10.692411484337114, - 11.21469209349063, - 11.633054716187477, - 11.998221717063492, - 12.317404270355143, - 12.586994318408669, - 12.789072647953653, - 13.0197545560629, - 13.17771915452565, - 13.255592574824785, - 13.38225594732849 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235633328066, - 2.851914879544181, - 3.2002682731670853, - 3.5244129408138183, - 4.005512413653456, - 4.676929448929882, - 5.374727708765103, - 6.621940724884043, - 7.589870853005851, - 8.385951327479868, - 9.646399038086509, - 10.608186570257482, - 12.981040006670419, - 15.15075166688143, - 15.761896120818106, - 16.31160487644447, - 16.848147121897316, - 17.263428266522705, - 17.618200174819204, - 17.922484495158848, - 18.17595671843651, - 18.36462431208987, - 18.57908536835333, - 18.725421282407385, - 18.797320419257474, - 18.914051059731356 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835167455722319, - 3.1871642533685365, - 3.5217463021268665, - 4.028426662602046, - 4.62454354413647, - 5.592815900651609, - 6.9980463555395716, - 8.458330843638853, - 10.804461078326414, - 12.35285053760395, - 13.486807083979473, - 15.092735335786193, - 16.207142389756154, - 18.68663116701593, - 20.762148280704864, - 21.32699316087631, - 21.831108310028444, - 22.31981894407171, - 22.696644841277067, - 23.018144509699834, - 23.293892910541352, - 23.523839110819093, - 23.69517644015126, - 23.89049897535568, - 24.02385746770547, - 24.089332079043626, - 24.195508758280813 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224729, - 2.451192833151798, - 2.788419736492103, - 3.0449987551515107, - 3.387982091041227, - 3.6171101444151827, - 3.8021138732457986, - 4.104784570053864, - 4.351175408151785, - 5.068239391192692, - 5.973221439545579, - 6.298989920083113, - 6.631876810045916, - 6.999058062226154, - 7.31846206497965, - 7.61730364229279, - 7.8965548670942, - 8.147110776277582, - 8.3439488589875, - 8.579135595904134, - 8.746224126062097, - 8.830484261197244, - 8.970001229581797 - ], - "5._384._0.0875": [ - 3.4916841486790067, - 4.023276848140572, - 4.652114391638063, - 5.681297047378303, - 6.9380463015872325, - 8.969550980116816, - 11.592458510401565, - 13.893870905489923, - 17.023124352605358, - 18.861301588594436, - 20.135740119269016, - 21.86720234972384, - 23.03427662756972, - 25.571284228905018, - 27.66585578907152, - 28.233309819760525, - 28.740832457689756, - 29.23324301773741, - 29.613708748570712, - 29.93847382029068, - 30.21754310926904, - 30.450692718353388, - 30.62449945044773, - 30.82293752979516, - 30.95839666537829, - 31.02484617650055, - 31.132461897123875 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125465, - 2.1622431316564765, - 2.506080869002254, - 2.8001346640586275, - 3.143294366990228, - 3.5123432738891576, - 3.8600234189929123, - 4.45398273115743, - 4.900441591183545, - 5.270180242262298, - 5.883699543259768, - 6.389539521359432, - 7.84087937505485, - 9.467989567546672, - 9.979488425114548, - 10.461437415012329, - 10.95045414466924, - 11.34193521233123, - 11.683607756326742, - 11.982374116271574, - 12.2349019829957, - 12.424319828958442, - 12.640797884018495, - 12.789131752386128, - 12.862265333742265, - 12.981204844619215 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.555323563196497, - 2.851914682871338, - 3.2002464578628014, - 3.5242145577190493, - 4.004768788595522, - 4.6753627135518006, - 5.37053241852847, - 6.598621528704397, - 7.536403213299241, - 8.299327436484226, - 9.495885035568163, - 10.40228941383791, - 12.625319477460103, - 14.65168403480152, - 15.222185838405005, - 15.735781841341742, - 16.237414701089726, - 16.626085230338823, - 16.958307688829994, - 17.243514615884887, - 17.481303648624475, - 17.658368714563647, - 17.859774330495828, - 17.99722390136755, - 18.064748925166498, - 18.17433242823592 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835166959499571, - 3.1871255135651864, - 3.521450763652216, - 4.027439509719664, - 4.622665050057345, - 5.583846715659724, - 6.946707659016489, - 8.3265553009112, - 10.505319652438443, - 11.93311763761484, - 12.97725000674866, - 14.456086793935185, - 15.483012133781871, - 17.772998811838168, - 19.695420994354542, - 20.219331542938093, - 20.68739389074953, - 21.141514852912017, - 21.4920110264619, - 21.79113393514117, - 22.047849742800484, - 22.262039507077684, - 22.42165335199091, - 22.603657952948648, - 22.727915511246838, - 22.78891059998457, - 22.88778113154805 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.4511928331436965, - 2.7884196222714404, - 3.0449917616272018, - 3.3878349676306145, - 3.6167013746295633, - 3.8014473091734824, - 4.103714393597061, - 4.349768250464976, - 5.063380646081302, - 5.947030655664346, - 6.258931937186635, - 6.574628842128573, - 6.919880542921278, - 7.218168650023276, - 7.495977537069345, - 7.754786980386174, - 7.986629239204976, - 8.168703437052322, - 8.386444579796297, - 8.541372509429488, - 8.619577584856017, - 8.749235721147882 - ], - "5._384._0.0875": [ - 3.491317841397805, - 4.022177649567065, - 4.6499644313052, - 5.669713906997397, - 6.886987635077993, - 8.801627394268827, - 11.23024946838743, - 13.348448668205657, - 16.225809232622492, - 17.917005901927773, - 19.090441189215934, - 20.686525283604617, - 21.76333169975019, - 24.108311276579396, - 26.047899885417298, - 26.573796491306776, - 27.044400277448922, - 27.501200829350736, - 27.854353929954815, - 28.155837052490437, - 28.414987370836677, - 28.631557110257923, - 28.793004735183207, - 28.977349871177466, - 29.10317519030175, - 29.164888808603887, - 29.26480279815533 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.5060808689637466, - 2.800134562146768, - 3.1432778671558337, - 3.5121044816823037, - 3.8593227956715968, - 4.452469659452145, - 4.897684287174093, - 5.264681982035116, - 5.8674240578090116, - 6.3573699391817655, - 7.733313505663411, - 9.24644509508276, - 9.719429862534236, - 10.164800698034501, - 10.616779590495764, - 10.978929708493176, - 11.295349343321517, - 11.572438257511756, - 11.807022092122759, - 11.98321229918948, - 12.184926134460873, - 12.323297898135433, - 12.391547646611848, - 12.502558408238174 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235630354054, - 2.8519144504397964, - 3.2002206761512024, - 3.523980108858305, - 4.003890213358664, - 4.673480378566549, - 5.364750964962281, - 6.563539441339237, - 7.457756334536519, - 8.175462820136095, - 9.290007175869095, - 10.129082533861872, - 12.180757487374152, - 14.052558587707095, - 14.580320743982302, - 15.056204625007132, - 15.521577614910443, - 15.882695218554627, - 16.191615927419257, - 16.457124146665187, - 16.67872075075519, - 16.843808836286154, - 17.03172917431043, - 17.160004547586794, - 17.22301808511969, - 17.32524106304212 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351663640325118, - 3.1870790259809763, - 3.5210959861223587, - 4.026178988521359, - 4.619049732684816, - 5.564386056821893, - 6.865229334071739, - 8.146934182345795, - 10.139826035463237, - 11.439632638907808, - 12.389991078308185, - 13.737513012184142, - 14.674635962011365, - 16.77062042438686, - 18.53628582338796, - 19.01824608680174, - 19.449291036641398, - 19.86784597612683, - 20.191212613537253, - 20.46726545426784, - 20.70432976501326, - 20.902228986375412, - 21.049718360720323, - 21.217939821363466, - 21.332779417447323, - 21.389140895462422, - 21.480461862379464 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.4511928331339767, - 2.7884194852066435, - 3.0449833693989405, - 3.3876584141717525, - 3.6162094137740954, - 3.8006306635346228, - 4.1022275270280115, - 4.34734641579633, - 5.052220559169416, - 5.902283292465463, - 6.195875587548563, - 6.490198662815166, - 6.809494939541353, - 7.08373433864319, - 7.33825328861699, - 7.574913729471517, - 7.786813574393382, - 7.9533373824498135, - 8.152862813036988, - 8.295172244350077, - 8.367119416715457, - 8.486620784644476 - ], - "5._384._0.0875": [ - 3.490881843490933, - 4.020744190378673, - 4.6455507369189, - 5.6456162497235844, - 6.805701852469171, - 8.579775438884196, - 10.7958753302268, - 12.721802949934933, - 15.34003917006757, - 16.881391897332673, - 17.95212124996099, - 19.410619017845786, - 20.395698431335255, - 22.545124100827895, - 24.326442077342126, - 24.80983613391418, - 25.24263553790218, - 25.66293250539065, - 25.98804746466618, - 26.265623063695553, - 26.504300662233362, - 26.70381615554619, - 26.852549978777425, - 27.02239302015432, - 27.1383065610374, - 27.19514929797835, - 27.287147913124493 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564765, - 2.5060808689175356, - 2.800134439852535, - 3.1432580673696107, - 3.5118178845942074, - 3.8584673823959803, - 4.449908650940928, - 4.891367829027392, - 5.252037626761025, - 5.8360702118053025, - 6.302926359252817, - 7.585418101497831, - 8.972076453933258, - 9.403988173666447, - 9.810804563325926, - 10.224067284658947, - 10.55573813852613, - 10.845996040424307, - 11.100663204079385, - 11.316692633979722, - 11.479200442668107, - 11.665619484440226, - 11.793666325374954, - 11.856856917236017, - 11.959662996987694 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.555323562842096, - 2.8519141715219485, - 3.200189738147014, - 3.523698732345956, - 4.002792577614734, - 4.669822998615447, - 5.351451583019225, - 6.504273254993608, - 7.34236886935079, - 8.00621496865868, - 9.02817982321098, - 9.794047336380968, - 11.664929431464587, - 13.376910168907761, - 13.860748265729352, - 14.297853859181243, - 14.725931072481712, - 15.058665870110621, - 15.343563798028175, - 15.58872793821681, - 15.793571618341714, - 15.94625844067304, - 16.120195575766346, - 16.238955766258172, - 16.297292041193245, - 16.391893056910394 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "4_7": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351685474129873, - 3.1872494810797103, - 3.522396515076577, - 4.030598431078965, - 4.62846314291775, - 5.605151632193107, - 7.059587486862146, - 8.628986839733331, - 11.256043877826514, - 13.04477531330593, - 14.375361228852615, - 16.281474592077334, - 17.61578829770339, - 20.59963009703216, - 23.101535745821437, - 23.782255738391786, - 24.388533477669718, - 24.975339697214334, - 25.42669181920194, - 25.811516122639098, - 26.14099154210531, - 26.41529792721028, - 26.619616279545873, - 26.8523279152196, - 27.011239351388447, - 27.089304350616462, - 27.216064782478583 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.4511928331696202, - 2.7884199877775666, - 3.045014140906611, - 3.388305766032835, - 3.6180094932466367, - 3.8035804563743674, - 4.107132369185852, - 4.354191290876673, - 5.075585312142147, - 6.00451375269612, - 6.347058482845416, - 6.702388837381045, - 7.100689993926684, - 7.452839739735847, - 7.787045016498727, - 8.103537540079907, - 8.390952467215385, - 8.619005216971487, - 8.893940815777116, - 9.090927878877606, - 9.190866426005947, - 9.357234884170358 - ], - "5._384._0.0875": [ - 3.4924902464479675, - 4.025694491817311, - 4.656471549160489, - 5.696613779483943, - 6.999258653042167, - 9.194265766668934, - 12.159595984794114, - 14.848138949957272, - 18.585809872125736, - 20.809886860249193, - 22.359127184146686, - 24.467406563969945, - 25.88973387102963, - 28.974420475796617, - 31.512510722413317, - 32.19888317225484, - 32.81175231703319, - 33.40553625492646, - 33.863470871795734, - 34.254212839561845, - 34.589578531872796, - 34.86947155555347, - 35.078102156849866, - 35.31619354024466, - 35.47876232553583, - 35.558548535654445, - 35.68789255773329 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.506080869086975, - 2.8001348882647212, - 3.143330666641524, - 3.512868631748361, - 3.8615650829825396, - 4.45724004452433, - 4.90547120148603, - 5.2783204112764945, - 5.903647470909666, - 6.427641527424538, - 7.9794598587120005, - 9.798375038668485, - 10.38555928133678, - 10.944183832763816, - 11.515815423482945, - 11.976378307124401, - 12.380198609729504, - 12.734329724035502, - 13.034122781077311, - 13.25919107507345, - 13.516247995686514, - 13.692437950672547, - 13.779398117347109, - 13.921038614455503 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.5553235635508984, - 2.851915194220728, - 3.2003031776727293, - 3.5247303600022426, - 4.006702008679548, - 4.6792770151689975, - 5.37919224243428, - 6.640456458988597, - 7.633098973707227, - 8.45973332264586, - 9.787148823004136, - 10.814434915745696, - 13.393170008593996, - 15.795100709086574, - 16.477320370423676, - 17.09193689877772, - 17.69254507386099, - 18.157399624298833, - 18.55460126620613, - 18.895032294172186, - 19.178354525697515, - 19.389165587700326, - 19.62856955127534, - 19.791925587101282, - 19.872225405511, - 20.002725135546267 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351682355012864, - 3.1872251302849097, - 3.5222107359798978, - 4.029977394157237, - 4.627288520656847, - 5.600219555301135, - 7.032984884191333, - 8.557289616513783, - 11.07427829369746, - 12.772764176307026, - 14.031434924743515, - 15.830277243710166, - 17.087650239229646, - 19.89921558514177, - 22.258815745463973, - 22.90124490278435, - 23.473891158170815, - 24.028498135357385, - 24.455451753760748, - 24.819566479470723, - 25.131494058087235, - 25.391325146652367, - 25.584882971721253, - 25.80539677333589, - 25.955971053091172, - 26.029927523570134, - 26.149967002852847 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.451192833164528, - 2.788419915981722, - 3.0450097449763556, - 3.3882132869744943, - 3.617752528194982, - 3.8031613764423104, - 4.106459519524129, - 4.353311153671507, - 5.072840379487638, - 5.991046288362942, - 6.326425331509614, - 6.672430339018482, - 7.058110268850382, - 7.397264076377373, - 7.717703349335078, - 8.01997776561216, - 8.293603757541934, - 8.510216364100062, - 8.770938275534345, - 8.95752892540082, - 9.052123745497825, - 9.209532558156825 - ], - "5._384._0.0875": [ - 3.4922598947018972, - 4.025002548155721, - 4.655134331755692, - 5.690331540150678, - 6.972791133801964, - 9.100664490653951, - 11.933283148884989, - 14.478603634388744, - 17.999886676263774, - 20.090493756733583, - 21.545987592269274, - 23.527056462207653, - 24.863879481983226, - 27.766545911657303, - 30.158172454655915, - 30.805374595048324, - 31.383563463156968, - 31.943995253532805, - 32.37645599564272, - 32.74550372310608, - 33.062360788911626, - 33.326886229499635, - 33.52406597266024, - 33.74911518842548, - 33.902765355139074, - 33.978163262781706, - 34.10035556402741 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.1622431316564747, - 2.50608086906277, - 2.8001348242058364, - 3.143320295310391, - 3.5127185274005885, - 3.8611245383863726, - 4.456289061469193, - 4.903820115063849, - 5.275258433164214, - 5.895207425247079, - 6.411211541159847, - 7.9212883268575505, - 9.665363575883847, - 10.224151297899045, - 10.754530598875027, - 11.296316096897657, - 11.73236376476089, - 12.114499894637813, - 12.449612786026062, - 12.733407022233301, - 12.946555780308934, - 13.190215942135552, - 13.357305492500565, - 13.439776186958209, - 13.574079786677052 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.555323563449639, - 2.8519150481209055, - 3.2002869720065203, - 3.5245829858479856, - 4.006149417324514, - 4.678100409567329, - 5.375926528254923, - 6.62235679003514, - 7.591819937592109, - 8.392470884621137, - 9.668091853551987, - 10.648845141342614, - 13.095804231171776, - 15.365477677191747, - 16.009403199613907, - 16.58983206969518, - 17.157277346927497, - 17.596832670448485, - 17.972587872841395, - 18.294897885868515, - 18.563350094420663, - 18.76317066042159, - 18.990232439906197, - 19.145188601263747, - 19.221349847441097, - 19.345072496190635 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835167875603251, - 3.1871970332340473, - 3.5219963794131113, - 4.029260917882597, - 4.625928009849139, - 5.594060198530318, - 6.99673245889046, - 8.4585733909559, - 10.833430009370964, - 12.423328161681923, - 13.598961085899786, - 15.27815914939265, - 16.452112666812614, - 19.081691324053235, - 21.294059935413117, - 21.897169732111077, - 22.43529338054611, - 22.95686062737142, - 23.358756686217212, - 23.70160022437435, - 23.99548346209036, - 24.24041147052883, - 24.4228870289199, - 24.630826575283265, - 24.772807028892295, - 24.842530602753733, - 24.95565353335291 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.4511928331586534, - 2.7884198331403587, - 3.0450046727493625, - 3.38810658085504, - 3.6174560378972087, - 3.8026778541817117, - 4.105683214081372, - 4.352294248438615, - 5.069492265954846, - 5.972912824282827, - 6.298130128645553, - 6.63102893896598, - 6.999320522030394, - 7.321086274207917, - 7.623655668921127, - 7.908068949951388, - 8.16494254630586, - 8.368081515178106, - 8.612616074991335, - 8.787772286221983, - 8.87662943524075, - 9.02464412358304 - ], - "5._384._0.0875": [ - 3.491994142114222, - 4.024204307584462, - 4.65358071176194, - 5.682382402113814, - 6.9367573719201205, - 8.972616581907712, - 11.637227522807487, - 14.014679773205113, - 17.297188390973453, - 19.245985992578277, - 20.60345675383314, - 22.452886671606105, - 23.70186246041883, - 26.418244049377332, - 28.660207586271643, - 29.26738230474611, - 29.8100856111004, - 30.336353948257422, - 30.74267700467997, - 31.08945610420344, - 31.387291151685208, - 31.636004809471146, - 31.82139971422212, - 32.03301787279033, - 32.17748404386561, - 32.248364642601594, - 32.363201280351305 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.5060808690348386, - 2.800134750291739, - 3.1433083283920316, - 3.512545332162711, - 3.8606162605768017, - 4.4551905711040956, - 4.9018745033620545, - 5.271501391186219, - 5.884156881969836, - 6.388946874039522, - 7.841043637107727, - 9.488314249149445, - 10.01262574234057, - 10.509674399963247, - 11.017205633320584, - 11.425819214492831, - 11.784169106393282, - 12.098777212814658, - 12.365568671211022, - 12.566184215687349, - 12.795887172024653, - 12.953572485598789, - 13.031431213910349, - 13.158238440528569 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.555323563332807, - 2.851914879544181, - 3.200268273167084, - 3.5244129408054246, - 4.005511890650542, - 4.676737125702264, - 5.371937642328, - 6.597971443417247, - 7.534858097767492, - 8.299767731324474, - 9.507071697872629, - 10.429220175896317, - 12.720367568755057, - 14.844319424180888, - 15.447451233211849, - 15.99185699130355, - 16.524661035486655, - 16.93795015191708, - 17.291524429505237, - 17.59514013918473, - 17.848274493054614, - 18.03678385863218, - 18.251144379728643, - 18.39746539839732, - 18.46937780038015, - 18.586154730118864 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83516745572232, - 3.187164253368532, - 3.5217463021465485, - 4.028425353785383, - 4.624320385309641, - 5.585862533928232, - 6.947833696383779, - 8.330661754033976, - 10.539157052604608, - 12.008728969051205, - 13.094687951791244, - 14.647172714443403, - 15.734034530062555, - 18.175664782412213, - 20.237045907763434, - 20.799914975362725, - 21.302666196094677, - 21.790355036352366, - 22.166516830646184, - 22.487505875651767, - 22.76282585648534, - 22.99240336788429, - 23.16346060813776, - 23.358435112034947, - 23.491555349271668, - 23.55691665903341, - 23.662918983314906 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224729, - 2.4511928331517985, - 2.788419736492105, - 3.044998755151511, - 3.3879820910416334, - 3.617110143206509, - 3.8021137808594885, - 4.104776870552116, - 4.351097074213874, - 5.0651170507068946, - 5.948169096061121, - 6.259903644525017, - 6.575933694444772, - 6.922545183304581, - 7.223325089975568, - 7.50492177546156, - 7.768911460740835, - 8.007072685634785, - 8.195451424028999, - 8.422574142154385, - 8.585634904399814, - 8.668489399723747, - 8.80677777139842 - ], - "5._384._0.0875": [ - 3.491684128183832, - 4.023273679326173, - 4.651730507714633, - 5.671724376919866, - 6.888154138692381, - 8.809043905825527, - 11.28030665244116, - 13.474882039208836, - 16.506164791135582, - 18.308567292433217, - 19.565546634826482, - 21.280546374142233, - 22.44003656266946, - 24.966650724645156, - 27.055972882719914, - 27.622285223882212, - 28.128719838775215, - 28.6200350616598, - 28.999577614641222, - 29.323533183453915, - 29.60185337517716, - 29.834331605315157, - 30.007624262466344, - 30.205444026052074, - 30.340476171243292, - 30.40671795712564, - 30.514006660918742 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125465, - 2.1622431316564765, - 2.506080869002254, - 2.8001346640586284, - 3.143294366990227, - 3.5123432738999814, - 3.8600233517352507, - 4.4539036307211735, - 4.899461835214388, - 5.266539255929433, - 5.868989356782353, - 6.358492761188275, - 7.736657385625711, - 9.270516572139218, - 9.756359845550195, - 10.21688001362137, - 10.687454153375587, - 11.066869510349436, - 11.400135543292478, - 11.693279780901959, - 11.942369436731155, - 12.129981133471361, - 12.345235904478468, - 12.49321089582247, - 12.566319036587998, - 12.68542457740852 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.5553235631964966, - 2.8519146828713393, - 3.2002464578628005, - 3.5242145577258985, - 4.004768315339668, - 4.675125111431721, - 5.366723308980793, - 6.564788240389095, - 7.459179907424581, - 8.179480525742168, - 9.305316633058492, - 10.160346760896672, - 12.280595062171288, - 14.25084949259483, - 14.81164174295183, - 15.318780638847144, - 15.815849625044592, - 16.202077530288285, - 16.53281543911917, - 16.817180484065926, - 17.054531841700324, - 17.23138424087505, - 17.432644216856357, - 17.570060719215157, - 17.637594859230667, - 17.747224080848014 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351669594995905, - 3.187125513679623, - 3.5214506346493266, - 4.027368759543215, - 4.621182513988997, - 5.5683335741465125, - 6.873331275812357, - 8.164538815594387, - 10.19612321541053, - 11.542042633796521, - 12.53668913217655, - 13.960638850864926, - 14.959274771363438, - 17.210053517003836, - 19.117433740339653, - 19.63915300992996, - 20.105654339258454, - 20.558565221250227, - 20.90825097292871, - 21.20674100429993, - 21.46292231306726, - 21.676653523872577, - 21.835920657547177, - 22.017500290716487, - 22.1414675404078, - 22.202324182541727, - 22.30098074120815 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.451192833143697, - 2.78841962227144, - 3.0449917616274744, - 3.3878349615640797, - 3.6167000476783744, - 3.8014318863340906, - 4.103521410809552, - 4.3490154224938316, - 5.055121119534804, - 5.907399820037824, - 6.202198215455947, - 6.498311394934962, - 6.820541542284855, - 7.0985469476257945, - 7.357925770488352, - 7.600640451509106, - 7.819524568261454, - 7.992791669045593, - 8.202129969896706, - 8.352829995143063, - 8.429545395541693, - 8.557869281883468 - ], - "5._384._0.0875": [ - 3.491320973830197, - 4.022069697494956, - 4.647876244938254, - 5.649968268272422, - 6.813845846592735, - 8.603220080465828, - 10.871370150261015, - 12.879268727628514, - 15.656394927977583, - 17.311012522871366, - 18.466509090944335, - 20.0455496400087, - 21.11442085750863, - 23.448252747151205, - 25.381976116182358, - 25.906564052791285, - 26.375925045722266, - 26.83147586782311, - 27.183581359359703, - 27.484148111521442, - 27.742454741169883, - 27.95827180171606, - 28.119144425748928, - 28.30280042312398, - 28.42815057002699, - 28.48963309681101, - 28.589183091565666 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.506080868963746, - 2.800134562146767, - 3.143277867164189, - 3.5121044343759147, - 3.859309283955121, - 4.451704741922789, - 4.893877995441933, - 5.255203986473298, - 5.84056044264124, - 6.308839572564523, - 7.599913162476777, - 9.013296166170198, - 9.45948917497746, - 9.882592614712825, - 10.315427171022868, - 10.665057870895861, - 10.972713521820456, - 11.243900002488559, - 11.47482982792622, - 11.649065178517366, - 11.849402113565995, - 11.987327081992834, - 12.055514684041317, - 12.166643561808627 - ], - "5._96._0.075": [ - 2.209271810327405, - 2.5553235630354054, - 2.8519144504397977, - 3.2002206761812646, - 3.5239800693982257, - 4.003850088721485, - 4.671947965318962, - 5.354802151689906, - 6.510756949600332, - 7.35310095595652, - 8.022898985878424, - 9.060944017249838, - 9.845843681507256, - 11.790920175920078, - 13.604754549814887, - 14.122441090278265, - 14.591525579178287, - 15.052026683061197, - 15.41047918114155, - 15.717737602321739, - 15.982258901937199, - 16.2033023123184, - 16.368096732281188, - 16.55578301675817, - 16.683968860815096, - 16.74696528911953, - 16.84919436111448 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "4_8": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351690611500637, - 3.1872895883063337, - 3.5227025110324433, - 4.031620482478853, - 4.630264884936776, - 5.609776207057137, - 7.080328438874813, - 8.688540961377582, - 11.431153604664619, - 13.332311387612558, - 14.761943035305716, - 16.828957753688112, - 18.28751522405521, - 21.570874578287754, - 24.33657219554867, - 25.090024243807033, - 25.760502314217543, - 26.408989417268742, - 26.907103220770992, - 27.331648800204125, - 27.69474143358859, - 27.996732680018305, - 28.22162067286917, - 28.477609393702433, - 28.65243364444676, - 28.738348259296234, - 28.87797537203736 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004358, - 2.1114679242247285, - 2.4511928331780073, - 2.788420106029551, - 3.045021381262722, - 3.38845808533481, - 3.6184327426741314, - 3.8042707013606734, - 4.108236105921633, - 4.3555964541384595, - 5.078504755946804, - 6.015130270560566, - 6.363229336721512, - 6.7263149195846905, - 7.135946323737552, - 7.500754069220182, - 7.849445633877918, - 8.182142297767523, - 8.486590739520441, - 8.729890946065366, - 9.025442238447253, - 9.238946140450093, - 9.347936042165172, - 9.530494234655313 - ], - "5._384._0.0875": [ - 3.4928697153769974, - 4.02683200916949, - 4.658448997301193, - 5.702210107635735, - 7.0198883433943005, - 9.274355021536941, - 12.385691192214761, - 15.26395697787159, - 19.334447705976842, - 21.78535131770515, - 23.501367106779696, - 25.843124203731893, - 27.425942973017722, - 30.857741797030908, - 33.67778943708975, - 34.43974666233109, - 35.11940093118032, - 35.77730736135872, - 36.28407112596562, - 36.71636528555267, - 37.087097281286596, - 37.39628808436821, - 37.62673595543031, - 37.88964125802538, - 38.06917833021894, - 38.1573186564167, - 38.30029902414451 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808691268437, - 2.8001349937734705, - 3.143347748837802, - 3.513115866090816, - 3.8622906976579143, - 4.458757645477697, - 4.907663026108237, - 5.281528244779501, - 5.910596810033362, - 6.440441987085992, - 8.027672139620023, - 9.925437201496388, - 10.547528998788032, - 11.143385891566425, - 11.757161249256605, - 12.254559097949482, - 12.692740136300634, - 13.078445941968296, - 13.405907711189013, - 13.652268115515463, - 13.933972575581924, - 14.127331263331724, - 14.22290323814277, - 14.378824011322182 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637176743, - 2.8519154348557385, - 3.200329869369127, - 3.5249730975082882, - 4.007611903490579, - 4.681073418907745, - 5.382610449937582, - 6.654597221210243, - 7.665886770127152, - 8.515667953522325, - 9.894902522485486, - 10.974343582158987, - 13.72486724696059, - 16.332799223598922, - 17.080225644601605, - 17.755050626379496, - 18.415635009261763, - 18.92717329681781, - 19.36450086774345, - 19.739186229802844, - 20.050820553856067, - 20.2826476149864, - 20.545712562328916, - 20.725229368749982, - 20.81351919596231, - 20.95714989650266 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83516882033579, - 3.187270788038401, - 3.522559074339714, - 4.031140816849006, - 4.6293490981195795, - 5.605744055219204, - 7.058407261608492, - 8.629797557297271, - 11.280384469224542, - 13.103231414670695, - 14.468855336122093, - 16.438180546802226, - 17.825267940494715, - 20.945744363665355, - 23.575098755859784, - 24.291720003231596, - 24.92988995151028, - 25.547478293111894, - 26.022239671114885, - 26.426978663342066, - 26.77332522347999, - 27.061530774675564, - 27.276176152941705, - 27.520567541888127, - 27.687463786018217, - 27.769468606257664, - 27.902688133019225 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004344, - 2.111467924224728, - 2.451192833174076, - 2.788420050598931, - 3.045017987345733, - 3.3883866855296882, - 3.6182343419058687, - 3.8039471085438032, - 4.107716181840361, - 4.354913827664863, - 5.076283140315023, - 6.004033739752675, - 6.346287265359569, - 6.701804221850618, - 7.101174357874585, - 7.455326122985901, - 7.792586330326935, - 8.113280165066671, - 8.405869828971618, - 8.639150608170983, - 8.921995988899154, - 9.12599591662209, - 9.230020905472122, - 9.404122307066807 - ], - "5._384._0.0875": [ - 3.492691828945058, - 4.026297430709158, - 4.65740173708857, - 5.697055408424652, - 6.998076870661986, - 9.197535079290326, - 12.196802280843405, - 14.948711749560628, - 18.820381461952607, - 21.145173531392953, - 22.77152434235547, - 24.99070681948609, - 26.49072189061218, - 29.746079335666003, - 32.42433883522291, - 33.148429917915784, - 33.79462158609949, - 34.42040061954318, - 34.90268527405305, - 35.314143219578824, - 35.66712713963073, - 35.96160260209396, - 36.18108779550721, - 36.43151443980727, - 36.60251630476868, - 36.68645473334707, - 36.82257843049222 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125465, - 2.162243131656477, - 2.506080869108155, - 2.800134944316245, - 3.143339741557707, - 3.512999974421148, - 3.861950520165782, - 4.458019975779238, - 4.906354386417928, - 5.2790481846948065, - 5.903653514194394, - 6.426927523809909, - 7.980069569210787, - 9.815445545337695, - 10.413096132780922, - 10.984215672055853, - 11.571405657678412, - 12.046609941753701, - 12.464911703811248, - 12.83299285663751, - 13.145500137939917, - 13.380651007689153, - 13.64970476630406, - 13.83443848174046, - 13.925741340342944, - 14.074659728352419 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235636394978, - 2.8519153220580757, - 3.2003173576347588, - 3.5248593137393507, - 4.007185156719708, - 4.680155552328298, - 5.379963602879159, - 6.639668044713541, - 7.6320441832190715, - 8.460642033004596, - 9.79703666038731, - 10.837145345530926, - 13.472193463332971, - 15.958932958293287, - 16.67043951296796, - 17.31299418299807, - 17.94211351811396, - 18.429586207748514, - 18.846481933680224, - 19.203905714285025, - 19.501387745491787, - 19.72276019831951, - 19.974102102928754, - 20.14563925003203, - 20.22999317182549, - 20.3671640440239 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351685474129864, - 3.187249481079706, - 3.5223965150333623, - 4.030597254149285, - 4.628306283297189, - 5.600807193533765, - 7.029516033891171, - 8.550658495957524, - 11.080905791556, - 12.807293172940938, - 14.097210780701635, - 15.955209505379473, - 17.263430191898752, - 20.209855405058065, - 22.697530776864483, - 23.376287612262566, - 23.981292488713535, - 24.56720154997497, - 25.018014873586978, - 25.40244540286796, - 25.731606615618748, - 26.005650024932937, - 26.209769985379655, - 26.442232914386423, - 26.600975757805582, - 26.67896185950815, - 26.805603012551177 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.4511928331696193, - 2.7884199877775657, - 3.045014140906612, - 3.3883057660325724, - 3.6180094922474413, - 3.8035803882284682, - 4.107126946354655, - 4.354138957525355, - 5.073621050988699, - 5.989593450189367, - 6.323831773439337, - 6.668921828317467, - 7.0542405393026675, - 7.394038406470533, - 7.716227626348914, - 8.021516106362068, - 8.299337338416999, - 8.520510166949208, - 8.788531948684625, - 8.981872970066107, - 9.080488486111282, - 9.24564809740162 - ], - "5._384._0.0875": [ - 3.4924902462240515, - 4.025691659118396, - 4.656204908548113, - 5.690673498303242, - 6.969356814313177, - 9.094213888523191, - 11.949242378603905, - 14.549468365382303, - 18.197282384621133, - 20.38618322735771, - 21.917817017187947, - 24.009276880506814, - 25.4238506890155, - 28.49830231841301, - 31.031694616431917, - 31.717123437954125, - 32.32910715509866, - 32.92201083532564, - 33.379204321007265, - 33.76929634245441, - 34.10405777433087, - 34.3834064999266, - 34.59161930137539, - 34.82920581703783, - 34.991425579526435, - 35.071042086441004, - 35.20011951039427 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.506080869086975, - 2.80013488826472, - 3.143330666641525, - 3.5128686317388342, - 3.8615650104979613, - 4.457182739146115, - 4.904837927925401, - 5.276066571212114, - 5.894839414782315, - 6.409249221581435, - 7.915871872184203, - 9.669424219924101, - 10.236653712993952, - 10.777844220963049, - 11.333776151246415, - 11.783596738436938, - 12.179675308673877, - 12.528459692134719, - 12.824889747857245, - 13.04816048870893, - 13.303980824104247, - 13.479794951778663, - 13.566717725572275, - 13.708502768720066 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323563550898, - 2.8519151942207284, - 3.200303177672732, - 3.524730359994974, - 4.006701555431667, - 4.679109946600958, - 5.3767867296499725, - 6.6202162746618844, - 7.58671208785596, - 8.38639894283139, - 9.665808559526834, - 10.6554219435839, - 13.150686539670682, - 15.501287570103663, - 16.174026967077687, - 16.782241743008807, - 17.378265648267803, - 17.84064950045805, - 18.236367418174268, - 18.575976508571067, - 18.858895304965788, - 19.069528044039036, - 19.308837724460506, - 19.47219808432089, - 19.55252581507207, - 19.68310159657974 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351682355012877, - 3.1872251302849106, - 3.5222107359335757, - 4.029976125228381, - 4.627115022761462, - 5.595063479426118, - 6.994135380612347, - 8.45241782638955, - 10.838566293840268, - 12.45497710659033, - 13.661028272606204, - 15.398697378756273, - 16.623329613596034, - 19.38844025633451, - 21.730480859397304, - 22.37049825352016, - 22.9415580382165, - 23.49503987649358, - 23.921313357230183, - 24.28492891888709, - 24.596456859254175, - 24.85595297491729, - 25.049258303154048, - 25.269455970499102, - 25.419815988361012, - 25.493672139075066, - 25.61355984867646 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.451192833164529, - 2.788419915981721, - 3.0450097449763556, - 3.3882132869742114, - 3.617752527123832, - 3.8031613032299614, - 4.106453637569719, - 4.353253524240171, - 5.070546643303833, - 5.9720486259273375, - 6.296148818048067, - 6.628051273828491, - 6.99576552876231, - 7.31789665825938, - 7.621901654946137, - 7.909016051644826, - 8.169814677468294, - 8.37732762367266, - 8.629003704307936, - 8.810865220846225, - 8.903749895121784, - 9.05959075030709 - ], - "5._384._0.0875": [ - 3.492259894585829, - 4.024999486535791, - 4.654837704916314, - 5.683207345007402, - 6.934212844298481, - 8.966390902355753, - 11.651119116272728, - 14.081651711846238, - 17.489512614651918, - 19.53651928324039, - 20.970291541431436, - 22.930682139006592, - 24.25798081595846, - 27.1479973890361, - 29.53374510977232, - 30.17975470326102, - 30.756820762750237, - 31.31613496351443, - 31.747655189817266, - 32.11587851140049, - 32.43196982221272, - 32.695806033258144, - 32.89245697847118, - 33.116867522668265, - 33.270076306963254, - 33.345259641783166, - 33.46711484057328 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.162243131656475, - 2.5060808690627714, - 2.8001348242058364, - 3.143320295310391, - 3.5127185273903803, - 3.8611244605215096, - 4.456226207238566, - 4.9031005091310025, - 5.272608918328101, - 5.884309667073056, - 6.387656104580347, - 7.836015973314944, - 9.491300378591728, - 10.023536715110792, - 10.53097797920762, - 11.052326952064814, - 11.474566664404161, - 11.846818252709182, - 12.175154296263281, - 12.454709441742958, - 12.665595326434111, - 12.907698770216205, - 13.074316458544317, - 13.156741853280069, - 13.291231823658247 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.5553235634496407, - 2.8519150481209055, - 3.200286972006517, - 3.5245829858401927, - 4.006148929437717, - 4.677915500894676, - 5.373118036966156, - 6.596596285265086, - 7.530505040188119, - 8.294084133253216, - 9.504176861155573, - 10.434288915285471, - 12.772029762526978, - 14.976526629423686, - 15.60862762766369, - 16.181074184185544, - 16.7428174374619, - 17.179312147107296, - 17.553223881676672, - 17.874513203787554, - 18.1424645361756, - 18.342063709755255, - 18.569009009603054, - 18.72397266478046, - 18.800170143430456, - 18.923990548634197 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83516787560325, - 3.187197033234047, - 3.521996379431283, - 4.0292597096019565, - 4.625721763038559, - 5.587564557569914, - 6.948397562662267, - 8.331353271555528, - 10.556526955969794, - 12.05534570133881, - 13.173332871547018, - 14.786225311921424, - 15.924919319455675, - 18.504535759010306, - 20.69788246672729, - 21.298347548034524, - 21.834695152281, - 22.354980914438027, - 22.75608893376499, - 23.098348453369344, - 23.39176152537687, - 23.636295738546135, - 23.818475411589084, - 24.026047529160575, - 24.16777924704659, - 24.237386134766187, - 24.350332010200432 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.451192833158654, - 2.788419833140359, - 3.0450046727493616, - 3.3881065808554127, - 3.617456036781504, - 3.8026777689014795, - 4.105676105790054, - 4.352221890024729, - 5.066586111104281, - 5.948999978075887, - 6.2603475799171076, - 6.576183238306337, - 6.923103812457311, - 7.224973505504251, - 7.508618231298772, - 7.775809428543845, - 8.01827710255376, - 8.211280703070846, - 8.445791910142795, - 8.615709277147673, - 8.70266508705316, - 8.848912509007295 - ], - "5._384._0.0875": [ - 3.491994123192238, - 4.024201382006676, - 4.6532257370231545, - 5.673416944149244, - 6.888765200324748, - 8.811152101311933, - 11.308305946156384, - 13.559618492709657, - 16.71984335462332, - 18.6220544788699, - 19.956306748862755, - 21.7836035049049, - 23.022349660283407, - 25.724982211188845, - 27.96042317580439, - 28.56625479790605, - 29.10769364205969, - 29.632703630227397, - 30.03797074996076, - 30.383825607311664, - 30.680804518795714, - 30.928749429819597, - 31.113555237101995, - 31.324463093283736, - 31.468438756603597, - 31.539080953515708, - 31.653542951837995 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.506080869034839, - 2.8001347502917415, - 3.1433083283920293, - 3.512545332172703, - 3.860616198489627, - 4.455117506172875, - 4.900966731345335, - 5.268109964688517, - 5.870276226653209, - 6.359249284470196, - 7.737214551140633, - 9.282623035715659, - 9.777232964218948, - 10.248835042363613, - 10.733827284715428, - 11.127318127756938, - 11.474851999782473, - 11.782048174962823, - 12.0441912650588, - 12.242307245768956, - 12.470263234387327, - 12.627399376723938, - 12.70519261553683, - 12.832180031895922 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235633328057, - 2.8519148795441795, - 3.2002682731670817, - 3.5244129408117444, - 4.00551145375924, - 4.676517516723298, - 5.368391997816818, - 6.565666111080066, - 7.459285096223779, - 8.180159809727389, - 9.3115795949611, - 10.176419675857291, - 12.346854341735195, - 14.400021051562382, - 14.990405776399212, - 15.52614249696146, - 16.052728014747434, - 16.462659405134946, - 16.814187588879793, - 17.116650538664505, - 17.369200889359227, - 17.557440325183997, - 17.771641689920152, - 17.917950350289843, - 17.98989255273181, - 18.10676139247415 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351674557223374, - 3.1871642534734326, - 3.5217461838921724, - 4.028360490675938, - 4.622960923391023, - 5.571626931397867, - 6.88001788739797, - 8.17808121322815, - 10.237000024264212, - 11.617850620823386, - 12.647898199173508, - 14.136075740342104, - 15.1886538307502, - 17.581186767163988, - 19.623359697834776, - 20.18344854384773, - 20.684275674704665, - 21.170525183518766, - 21.54576937041802, - 21.866064390995902, - 22.140818754577484, - 22.369922740942208, - 22.540625805468544, - 22.735167702282627, - 22.86799546974674, - 22.93321888029106, - 23.039010472484247 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224729, - 2.4511928331517994, - 2.7884197364921053, - 3.0449987551517603, - 3.3879820854806204, - 3.6171089268298666, - 3.8020996430959118, - 4.104599954792485, - 4.350406882079875, - 5.057540388814563, - 5.911649410658043, - 6.207369717835501, - 6.5047672218410995, - 6.829014332299413, - 7.109581494066122, - 7.37231520006511, - 7.619347638700854, - 7.8434209239801715, - 8.0219086062695, - 8.239216768232712, - 8.397098924117081, - 8.478053359033353, - 8.61453299246815 - ], - "5._384._0.0875": [ - 3.491687000182511, - 4.023174703080854, - 4.649815534242104, - 5.653599523519368, - 6.820571048856125, - 8.62093003417779, - 10.926468658518107, - 12.998655685485373, - 15.911656765322792, - 17.668862520649455, - 18.90318568310825, - 20.596416532032162, - 21.74574316395581, - 24.25838526581032, - 26.340812342403122, - 26.905664867630787, - 27.410730578908392, - 27.90068489837757, - 28.2790922690326, - 28.60205693472487, - 28.879464456643507, - 29.111127392889866, - 29.28379686041137, - 29.480868184859876, - 29.61538430830673, - 29.681375351282792, - 29.788269732315793 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125465, - 2.1622431316564765, - 2.506080869002255, - 2.800134664058628, - 3.143294366997892, - 3.5123432305353424, - 3.8600109652601504, - 4.45320225036707, - 4.895971329985993, - 5.257844860788607, - 5.844302292375319, - 6.313731379592927, - 7.611060940872719, - 9.043180732830411, - 9.500003877034832, - 9.935716124677896, - 10.38428997003507, - 10.748909566324631, - 11.071526882451796, - 11.357309816735846, - 11.601720735079569, - 11.786770770899814, - 12.000167899130295, - 12.147505853074923, - 12.220502934872219, - 12.339715333260198 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.5553235631964974, - 2.8519146828713406, - 3.200246457890359, - 3.5242145215538, - 4.004731530473492, - 4.673719871874442, - 5.357596953475772, - 6.516142954839571, - 7.361685181192804, - 8.035643652199703, - 9.084838858261804, - 9.883383738009085, - 11.886072763284826, - 13.787233922359773, - 14.335483274119806, - 14.833961953379267, - 15.324733297032955, - 15.707486612404416, - 16.036055147235146, - 16.319142475261323, - 16.555795553898104, - 16.732292439181506, - 16.933295218687224, - 17.070633258705772, - 17.138164990246015, - 17.24783556701593 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "4_9": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 15.0, - 30.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351694667320997, - 3.1873212519372207, - 3.522944092846938, - 4.032427539989081, - 4.631688043128086, - 5.613431034186714, - 7.096741873297472, - 8.735654415178857, - 11.571116932150975, - 13.565565480263913, - 15.079573887280452, - 17.287404108534677, - 18.857521002347553, - 22.41740811892238, - 25.433126831431945, - 26.25620722246272, - 26.988224775420143, - 27.69587567813717, - 28.238786757189658, - 28.701380305030696, - 29.096623090697204, - 29.425047584402208, - 29.669567597928566, - 29.94774843010551, - 30.137748274781146, - 30.23115544798631, - 30.383087866026237 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833184628, - 2.7884201993863775, - 3.045027097333687, - 3.388578338165292, - 3.6187668990485813, - 3.8048156805343165, - 4.109107687102011, - 4.356706211679365, - 5.080811370043167, - 6.023525577966797, - 6.37600670993275, - 6.74519473040439, - 7.1637479037782255, - 7.538565804218799, - 7.898815187472416, - 8.244614372149723, - 8.56307405717557, - 8.819151583278083, - 9.132390405373629, - 9.360484149314484, - 9.477661470177082, - 9.675253733105723 - ], - "5._384._0.0875": [ - 3.4931693543633533, - 4.027730333976235, - 4.660011059971689, - 5.706633667700117, - 7.036213396969804, - 9.337820107981067, - 12.567414902151802, - 15.605732969440362, - 19.970656933891036, - 22.629942513537266, - 24.502121050731816, - 27.065449893256574, - 28.802128863936378, - 32.56871743873009, - 35.66146760089406, - 36.49653590724793, - 37.24068560760271, - 37.96042672474026, - 38.514165974863715, - 38.986414629471874, - 39.39109611536659, - 39.72836859288193, - 39.97972292592612, - 40.26638941673585, - 40.46217824490726, - 40.55832440787089, - 40.714390329139 - ], - "5._48._0.075": [ - 1.5268463243731414, - 1.8679037053125422, - 2.1622431316564774, - 2.506080869158317, - 2.8001350770698545, - 3.1433612347855915, - 3.5133110543157127, - 3.862863617821157, - 4.459956264798623, - 4.909394457931452, - 5.284062542995692, - 5.91608858697242, - 6.450554676689523, - 8.065778771234925, - 10.02672859425827, - 10.677526036471356, - 11.304578127476994, - 11.954319371244297, - 12.483776816471734, - 12.952372012443101, - 13.36647712667588, - 13.719188766283581, - 13.98521555115251, - 14.289932467535317, - 14.499479924136082, - 14.603229967604683, - 14.772807287950432 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235638493423, - 2.851915624830739, - 3.2003509417705724, - 3.5251647355560265, - 4.008330366718255, - 4.682492368987401, - 5.3853112436155675, - 6.665782552073982, - 7.6917903372756955, - 8.559835461709806, - 9.980343190378921, - 11.102025772465119, - 13.996615739151329, - 16.786595264038603, - 17.593584378732732, - 18.324044237628474, - 19.04062386957335, - 19.596069993366886, - 20.07134364969443, - 20.47852882288078, - 20.817077304495243, - 21.06890828597218, - 21.354498842905254, - 21.54942114109866, - 21.645342102117002, - 21.80154912414158 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351692752072393, - 3.1873062996636743, - 3.5228300118613274, - 4.032045922902178, - 4.630952703956352, - 5.610046883461695, - 7.0781296612040485, - 8.685916628583788, - 11.442972772566275, - 13.369135626162413, - 14.826213406499342, - 16.945380849781845, - 18.449413678020193, - 21.8558507469505, - 24.741026085745702, - 25.528646050201232, - 26.229572608112672, - 26.907503934479113, - 27.42800081038819, - 27.871594853707137, - 28.250805051053618, - 28.5660557062082, - 28.800792430828423, - 29.067907958521765, - 29.250342087541405, - 29.340015327262613, - 29.485817213899942 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615422, - 1.4813847491413084, - 1.8198213217004355, - 2.111467924224729, - 2.4511928331815023, - 2.7884201553012113, - 3.0450243980779166, - 3.388521552023881, - 3.618609101237458, - 3.804558295561782, - 4.108693852334343, - 4.356160882715093, - 5.078963485259463, - 6.014115295451059, - 6.361644493341716, - 6.724455770392008, - 7.134385398413538, - 7.500240157426202, - 7.850823418573738, - 8.186379133306886, - 8.494591598935013, - 8.74189262937794, - 9.043810110435968, - 9.263258159009624, - 9.37584298352329, - 9.565473082693645 - ], - "5._384._0.0875": [ - 3.4930278516762012, - 4.027304922811799, - 4.659166460988909, - 5.702292942750892, - 7.017694326659761, - 9.272748753711983, - 12.406291441882086, - 15.332992064681491, - 19.515956922265058, - 22.056640535374942, - 23.843389945980213, - 26.288915621577043, - 27.945511613463626, - 31.541033091534537, - 34.496315480422794, - 35.29470554095142, - 36.00649828058117, - 36.695221258450665, - 37.22538143089483, - 37.677569976243916, - 38.06519122924682, - 38.388338206214456, - 38.629171411849484, - 38.90386895453239, - 39.09146948522561, - 39.18358243808109, - 39.3330586680606 - ], - "5._48._0.075": [ - 1.526846324373138, - 1.8679037053125451, - 2.162243131656477, - 2.506080869143455, - 2.800135037735449, - 3.1433548664209883, - 3.513218881740628, - 3.8625930347473103, - 4.459366895140067, - 4.908326834622543, - 5.281997641083917, - 5.910217296035236, - 6.43909723888483, - 8.02550487918053, - 9.933459975540691, - 10.563123373828613, - 11.168481739514561, - 11.794586067185293, - 12.304019456840313, - 12.75446550242115, - 13.152300166844995, - 13.4910738298865, - 13.746575570746154, - 14.039344098021322, - 14.240702289169922, - 14.34038178931234, - 14.503252809964573 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637871667, - 2.8519155351203236, - 3.2003409909132836, - 3.525074239459178, - 4.007990890620787, - 4.681754940759662, - 5.383106972099744, - 6.653112938286397, - 7.663118666584175, - 8.51331908485106, - 9.897576446704663, - 10.985592895515337, - 13.77870932769235, - 16.458054420231168, - 17.231467453747705, - 17.93155144377606, - 18.618325628397244, - 19.15088442633709, - 19.60667679717963, - 19.99738806150681, - 20.322429963274313, - 20.564283823083866, - 20.83869744795334, - 21.026008738759597, - 21.11817085265809, - 21.268194147562355 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351690611500637, - 3.1872895883063337, - 3.5227025109943106, - 4.031619443862955, - 4.630126428188359, - 5.605938883581677, - 7.053850201804107, - 8.619592998427104, - 11.273630306810157, - 13.114370874240288, - 14.502881309995292, - 16.519197743583145, - 17.949137763765428, - 21.189726837490685, - 23.938567914118494, - 24.689663467906183, - 25.358653728999595, - 26.006122575869444, - 26.503655810125302, - 26.927793860845536, - 27.290577249663173, - 27.59231890085207, - 27.817021071394333, - 28.07277716118093, - 28.247445899561296, - 28.33328905060975, - 28.47281020739012 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004358, - 2.1114679242247285, - 2.4511928331780086, - 2.788420106029548, - 3.0450213812627234, - 3.3884580853345754, - 3.6184327417924886, - 3.8042706412316454, - 4.108231320719229, - 4.355550272921535, - 5.076770277552322, - 6.001988829900531, - 6.342826412225112, - 6.696962402337724, - 7.095173275376825, - 7.44896032176931, - 7.786723550379277, - 8.108977138397364, - 8.404222353465684, - 8.640718733862942, - 8.929171003686202, - 9.138751821189254, - 9.246261545194356, - 9.427397211497368 - ], - "5._384._0.0875": [ - 3.492869715180104, - 4.02682950915902, - 4.658213616999121, - 5.696963115924365, - 6.993558306297854, - 9.185986364201998, - 12.194903760733512, - 14.985281811667303, - 18.95984763775171, - 21.371014953057262, - 23.066594825654153, - 25.388471553673195, - 26.96203766158374, - 30.381769045973385, - 33.196572827632885, - 33.95753570955479, - 34.63627443782625, - 35.29328362352013, - 35.7992960659432, - 36.230932450471165, - 36.601052141131994, - 36.9096902129867, - 37.139713337883734, - 37.402103994237024, - 37.58128525695719, - 37.66925273898901, - 37.8119621029267 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808691268432, - 2.8001349937734705, - 3.1433477488378028, - 3.513115866082412, - 3.8622906336970133, - 4.458707066547458, - 4.907104059929164, - 5.2795392382809405, - 5.902833416754193, - 6.424272333849602, - 7.97176591365823, - 9.809859297563166, - 10.412783947720017, - 10.991426049311166, - 11.58921229444228, - 12.075322391948623, - 12.505133491969694, - 12.884891217172218, - 13.208502577451348, - 13.45275100360101, - 13.732954089961884, - 13.925826163100368, - 14.021329319151926, - 14.177380885678362 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.555323563717674, - 2.8519154348557367, - 3.200329869369127, - 3.5249730975018747, - 4.007611503520477, - 4.6809259448174, - 5.3804861373410615, - 6.636762318900391, - 7.625150882812671, - 8.451185156979, - 9.78715155917044, - 10.83150536589313, - 13.499756393398256, - 16.052709910147982, - 16.789421353970717, - 17.456847823925912, - 18.112029498522777, - 18.620604206056544, - 19.056139447178808, - 19.429825318885907, - 19.740970018764617, - 19.97258523087125, - 20.235548996374305, - 20.415080933380885, - 20.503409296763106, - 20.64713964273299 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351688203357885, - 3.187270788038401, - 3.5225590742991932, - 4.031139706387699, - 4.629196952743262, - 5.60126543870836, - 7.02519726416153, - 8.539415049425639, - 11.069324581652825, - 12.810952528073797, - 14.12208209321274, - 16.025374557342978, - 17.37571597587664, - 20.442034550651577, - 23.050309209521853, - 23.76401853736734, - 24.400332963845333, - 25.016652362712207, - 25.4906914607125, - 25.89492363121643, - 26.24088585073371, - 26.528781038290656, - 26.743195503168074, - 26.98729720225388, - 27.153999962710035, - 27.235916009926093, - 27.369004174983104 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004344, - 2.111467924224728, - 2.4511928331740758, - 2.7884200505989307, - 3.0450179873457315, - 3.388386685529442, - 3.618234340968611, - 3.803947044482471, - 4.107711034044089, - 4.354863426564926, - 5.074286789580265, - 5.987797548468794, - 6.320489023147341, - 6.663929818749832, - 7.0476382112418605, - 7.386567439192814, - 7.7087199822168655, - 8.01503658618406, - 8.295046569522697, - 8.519099886043582, - 8.792408836679781, - 8.991188741863239, - 9.093255019637324, - 9.265473219746053 - ], - "5._384._0.0875": [ - 3.4926918287352295, - 4.026294752794085, - 4.6571415974633315, - 5.690879653539565, - 6.965095397054236, - 9.080980548287261, - 11.941253924786078, - 14.57632994937708, - 18.32403997897176, - 20.598517223660195, - 22.19917074549147, - 24.393504505133173, - 25.88199285064424, - 29.1222905166399, - 31.79397115234703, - 32.51680863508513, - 33.16184018293703, - 33.78648063612809, - 34.26781144167546, - 34.67843443540314, - 35.0306411967171, - 35.32441513828708, - 35.543361341802026, - 35.79313487383057, - 35.96368527058703, - 36.04740443348767, - 36.18318439274251 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125465, - 2.162243131656477, - 2.5060808691081546, - 2.8001349443162464, - 3.1433397415577065, - 3.5129999744122165, - 3.8619504520461514, - 4.457964893281454, - 4.905726376589851, - 5.276751644533487, - 5.894308063446169, - 6.406853786520043, - 7.9067214829308625, - 9.660288053963523, - 10.231862407682193, - 10.77978467846069, - 11.345636275997055, - 11.805963850596001, - 12.213316759443426, - 12.57368634119657, - 12.881240855990312, - 13.113687697487697, - 13.380829524489227, - 13.564951227589223, - 13.656172897006268, - 13.805271089869713 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.555323563639498, - 2.8519153220580766, - 3.200317357634759, - 3.524859313732532, - 4.007184729846574, - 4.679993400816175, - 5.377517981201647, - 6.617626702486372, - 7.579643523627271, - 8.37591144402161, - 9.653009500816545, - 10.645238845526043, - 13.170260698273236, - 15.585513893803265, - 16.28336920367413, - 16.91652654334935, - 17.53881793839093, - 18.022575071439615, - 18.437225953333737, - 18.793407628605372, - 19.090289495277066, - 19.311407440964448, - 19.562636962992926, - 19.734205602299223, - 19.818614840695023, - 19.955922951179048 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835168547412987, - 3.1872494810797045, - 3.5223965149901315, - 4.030596069717042, - 4.6281441485647505, - 5.595928886557852, - 6.991552464610721, - 8.444836617412115, - 10.833290118847401, - 12.466231616977295, - 13.694281386011385, - 15.478328444858514, - 16.745805489175517, - 19.632602790307825, - 22.097135455262173, - 22.772700739434676, - 23.375642356447457, - 23.960130892767033, - 24.4101305449469, - 24.793987747353967, - 25.122713357942217, - 25.39640527633906, - 25.600264421152637, - 25.8324013926441, - 25.990926868624502, - 26.068813252985585, - 26.19530680304342 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.45119283316962, - 2.7884199877775657, - 3.04501414090661, - 3.388305766032309, - 3.6180094912477005, - 3.803580319896537, - 4.107121455740558, - 4.354085128400657, - 5.071459811316562, - 5.971184836431346, - 6.29412199205661, - 6.624785354930963, - 6.991323941077463, - 7.312921009789276, - 7.617153220950307, - 7.905495413698134, - 8.168623762783524, - 8.37910385355933, - 8.63615172599038, - 8.823511148783586, - 8.91988189372738, - 9.082864366465646 - ], - "5._384._0.0875": [ - 3.492490246115708, - 4.025688801237611, - 4.65592755441793, - 5.683913539205314, - 6.931686673698821, - 8.95760550301798, - 11.650421313354668, - 14.117618387704116, - 17.627517157857014, - 19.761215524508657, - 21.264730240599892, - 23.329059995084517, - 24.731050068662665, - 27.788965564942522, - 30.315059415251685, - 30.99908608026868, - 31.609769133113172, - 32.201395987869184, - 32.657521362814194, - 33.04667928132535, - 33.380572527283356, - 33.65913848318701, - 33.86675027176153, - 34.10360903650974, - 34.265325966824314, - 34.34469832385217, - 34.47339299735022 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.506080869086975, - 2.800134888264721, - 3.143330666641523, - 3.5128686317293054, - 3.861564937821583, - 4.457124037683752, - 4.904163441194514, - 5.273567603615603, - 5.884409059142863, - 6.386376359627213, - 7.8298288267134275, - 9.486787336970902, - 10.023713339818778, - 10.538172528614185, - 11.06969724836239, - 11.502664837421815, - 11.88638758238597, - 12.226507209174496, - 12.517384854569803, - 12.737619095973635, - 12.99128100752468, - 13.166396938850337, - 13.253223170590832, - 13.395202145959656 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323563550898, - 2.8519151942207297, - 3.2003031776727324, - 3.5247303599876973, - 4.006701100041771, - 4.678937139046908, - 5.374140292428302, - 6.595248378279139, - 7.525840235401078, - 8.286961832598653, - 9.496081717491418, - 10.429653118402554, - 12.798887331556289, - 15.069404569115127, - 15.727057153807893, - 16.3248548656137, - 16.91331245813624, - 17.371585529054784, - 17.764807378007088, - 18.10303085339502, - 18.385275943661487, - 18.595620254547327, - 18.83479951931609, - 18.998193097420486, - 19.07858195512862, - 19.209310622552955 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835168235501288, - 3.1872251302849066, - 3.5222107359504466, - 4.029975003137465, - 4.626923461532184, - 5.589024214871741, - 6.948824386827128, - 8.33115095189156, - 10.566287935312973, - 12.085962404558352, - 13.22859814429511, - 14.890978999303407, - 16.074280469357088, - 18.77878541091316, - 21.097064979222825, - 21.733755739717317, - 22.302620488440255, - 22.854561154508417, - 23.27993237931248, - 23.642903472832373, - 23.953936841224373, - 24.213033440996366, - 24.40604337102169, - 24.62587616317971, - 24.775993057753077, - 24.84973722825645, - 24.969458221439826 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.451192833164529, - 2.7884199159817205, - 3.0450097449763565, - 3.3882132869745583, - 3.617752526087821, - 3.8031612240409056, - 4.106447036671525, - 4.353186329322626, - 5.067845958260048, - 5.949696816759566, - 6.260660018818184, - 6.576190710935228, - 6.923068387951884, - 7.225414788644514, - 7.510207286499031, - 7.77942750319624, - 8.024867145333424, - 8.221273797384388, - 8.461580516785933, - 8.637229378205017, - 8.727769509241414, - 8.881301486034602 - ], - "5._384._0.0875": [ - 3.492259877012745, - 4.024996769499327, - 4.6545079880457285, - 5.674868320890108, - 6.8892352749571515, - 8.81162704628612, - 11.325311797433377, - 13.61919593422237, - 16.887245624088916, - 18.878569225085908, - 20.283923424933633, - 22.216826332982837, - 23.53132342900251, - 26.404318928856533, - 28.782396414877738, - 29.42690775784467, - 30.002585186912345, - 30.560536759969676, - 30.990921282395842, - 31.358153198422123, - 31.673326238162094, - 31.93633699498177, - 32.132355085439926, - 32.3560009403866, - 32.50868184098973, - 32.583608911016725, - 32.705062199639386 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.162243131656475, - 2.5060808690627705, - 2.800134824205837, - 3.143320295310391, - 3.5127185273996564, - 3.861124402866451, - 4.456158346763411, - 4.902257299737487, - 5.269457004861231, - 5.8713766337564435, - 6.359870291483894, - 7.737039282243145, - 9.289245770202898, - 9.789917906610638, - 10.26968377982218, - 10.765852842764971, - 11.17077704014672, - 11.530318632024949, - 11.849723864705487, - 12.123527340127158, - 12.331239488021339, - 12.571045512468974, - 12.73689031328919, - 12.819190460468876, - 12.953842094785855 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.555323563449639, - 2.8519150481209046, - 3.200286972006518, - 3.524582985846063, - 4.006148523719296, - 4.677711523524914, - 5.369823117863129, - 6.56639817990707, - 7.459125254127626, - 8.179915971874092, - 9.314258348731386, - 10.18535735549905, - 12.392994738213716, - 14.51572803742392, - 15.13247526966486, - 15.69421889506355, - 16.248144295955765, - 16.68035736691021, - 17.05163648768999, - 17.371434615607118, - 17.63863341293786, - 17.837892275903226, - 18.064655374560772, - 18.21962267402366, - 18.295868664280516, - 18.419824670046456 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351678756032674, - 3.1871970333308792, - 3.521996270272047, - 4.029199829102723, - 4.624466507033341, - 5.574416176054197, - 6.885681050176513, - 8.189304288170664, - 10.269066623562207, - 11.677082127835384, - 12.735693484376148, - 14.27788811788951, - 15.377588913404823, - 17.899292731594656, - 20.069290698367805, - 20.66635465893553, - 21.200392787129587, - 21.718994801575338, - 22.119074253365486, - 22.460579562188794, - 22.75340150450302, - 22.997455555705418, - 23.179281185332194, - 23.38642412047835, - 23.527869586147308, - 23.597343406150753, - 23.710088763490088 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.451192833158654, - 2.7884198331403582, - 3.0450046727495925, - 3.388106575722154, - 3.6174549139686105, - 3.8026647185325797, - 4.105512787318565, - 4.351584711841321, - 5.059588962159057, - 5.915248932658328, - 6.211738765006115, - 6.51017753319415, - 6.836001929772483, - 7.118508132960863, - 7.383745466153934, - 7.634013681571761, - 7.862050111253924, - 8.044631169620486, - 8.268423925084399, - 8.432422123036122, - 8.517118563103647, - 8.661091232192021 - ], - "5._384._0.0875": [ - 3.4919967747385336, - 4.024110003552954, - 4.6514574420777, - 5.656675242688164, - 6.826267247863873, - 8.63546067570197, - 10.969536833521145, - 13.092903613645564, - 16.122021591975056, - 17.971692031352706, - 19.278951874924374, - 21.079915806898722, - 22.306274235736158, - 24.99207976300875, - 27.219631861776048, - 27.8238735026074, - 28.363844508490633, - 28.887414645699103, - 29.291489163492336, - 29.63630596323058, - 29.932329429195555, - 30.179420392268067, - 30.363573312385117, - 30.57369577277349, - 30.717130148642717, - 30.787509603198412, - 30.90155911461386 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.50608086903484, - 2.80013475029174, - 3.1433083283991037, - 3.512545292143451, - 3.860604764246183, - 4.4544699170941495, - 4.897743700062936, - 5.260081091137124, - 5.847471377316361, - 6.3178714972679435, - 7.620295500963156, - 9.066596038466987, - 9.531553783147917, - 9.977177234498251, - 10.438476344818575, - 10.815601714335525, - 11.15103563786843, - 11.449644299315752, - 11.706178442861965, - 11.901144584060084, - 12.126741119906836, - 12.283022658096023, - 12.360639977902254, - 12.487697028929027 - ], - "5._96._0.075": [ - 2.209271810327405, - 2.555323563332806, - 2.8519148795441813, - 3.2002682731925227, - 3.524412907421836, - 4.005477495413504, - 4.675219959739593, - 5.359963634744116, - 6.520705924151853, - 7.368897181629103, - 8.046143801519698, - 9.103833493646194, - 9.912705667992219, - 11.960964404521016, - 13.936842532434799, - 14.512550610146635, - 15.037900634570045, - 15.556794976456239, - 15.962422905166749, - 16.311244391875828, - 16.612107879665622, - 16.86378991676838, - 17.051596665554403, - 17.265504799064267, - 17.411738926600602, - 17.483690290246432, - 17.600631429707434 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "4_10": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 15.0, - 30.0 - ], - [ - 15.0, - 35.0 - ], - [ - 15.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351697950605055, - 3.1873468844203123, - 3.5231396629940295, - 4.03308098526772, - 4.632840595814789, - 5.616392090200894, - 7.11005727881623, - 8.773952551643184, - 11.685709289767821, - 13.758417024798694, - 15.344645873094716, - 17.6757752371883, - 19.345822045855282, - 23.160166287117832, - 26.412477560916972, - 27.302212201921915, - 28.093268803858543, - 28.85775586693104, - 29.44367468172249, - 29.942801516203488, - 30.368876155858345, - 30.722615047278325, - 30.985930043580787, - 31.285336444289705, - 31.489855958252473, - 31.590438397206164, - 31.754177937451157 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413081, - 1.8198213217004342, - 2.111467924224728, - 2.451192833189987, - 2.7884202749609543, - 3.045031724629453, - 3.3886756861794147, - 3.619037414402901, - 3.80525688576805, - 4.10981338860402, - 4.357604857132801, - 5.082679772993151, - 6.030331162591393, - 6.386367206390177, - 6.760502841872789, - 7.186293855992241, - 7.569245597382349, - 7.938928722541416, - 8.295505538223958, - 8.625621903467637, - 8.892474560353937, - 9.220912215681086, - 9.461863816564069, - 9.58641996695928, - 9.797931045111572 - ], - "5._384._0.0875": [ - 3.4934119569134374, - 4.028457733413053, - 4.661276181552545, - 5.7102179311389545, - 7.049456784270885, - 9.389487443097458, - 12.716755555072746, - 15.891031957443726, - 20.51625304510468, - 23.366263272452034, - 25.38408846096633, - 28.157020292704768, - 30.040894547580347, - 34.13022759003704, - 37.48700679002723, - 38.392911409129844, - 39.19946370512785, - 39.978957297140475, - 40.57798895999467, - 41.08874243718612, - 41.52608880347171, - 41.890340895748025, - 42.16177628321952, - 42.47125008461478, - 42.68264137942656, - 42.78647778978933, - 42.955130308288275 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.867903705312543, - 2.1622431316564787, - 2.506080869183797, - 2.800135144500255, - 3.1433721519835967, - 3.5134690659106047, - 3.8633274532965127, - 4.460926907567308, - 4.910796768283743, - 5.286115283086477, - 5.920538109626331, - 6.458750008666181, - 8.09673598380342, - 10.109485392510985, - 10.784164221483687, - 11.437545455248005, - 12.118081232108915, - 12.675454960041563, - 13.170928628149156, - 13.610511425570897, - 13.986201268031529, - 14.270348923571728, - 14.596523838261504, - 14.82133945515519, - 14.932864766351642, - 15.115529677673015 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.55532356395593, - 2.851915778620031, - 3.200368000387442, - 3.5253198731700977, - 4.008912060745671, - 4.683641519202554, - 5.387499002908741, - 6.6748513801096765, - 7.712805285685651, - 8.595685362913756, - 10.049894385177552, - 11.206407895887795, - 14.222835352428456, - 17.173545032733042, - 18.03478164611877, - 18.816494062413806, - 19.58522048397742, - 20.181902301138276, - 20.693041754282923, - 21.131078414799013, - 21.49525064682972, - 21.766163479578974, - 22.073260019780175, - 22.28291516793278, - 22.386149552829718, - 22.554444663244556 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 15.0, - 30.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169639104507, - 3.187334708988613, - 3.5230467667210394, - 4.032770147473956, - 4.632236175851141, - 5.613492444548791, - 7.093941106750839, - 8.730917151269994, - 11.574664704848521, - 13.587339098382854, - 15.12277556138309, - 17.37344878855755, - 18.982532741977302, - 22.65269270298507, - 25.780117929780584, - 26.635693459443683, - 27.396793107074576, - 28.132643526524483, - 28.696999319481485, - 29.177855763647376, - 29.588538974636272, - 29.929651865743452, - 30.183594581870516, - 30.472411092853314, - 30.66968839620724, - 30.76669381170296, - 30.924549776274823 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413081, - 1.8198213217004349, - 2.111467924224728, - 2.4511928331874424, - 2.78842023906303, - 3.0450295266639404, - 3.3886294458185335, - 3.6189089183634486, - 3.805047284269396, - 4.1094761566377365, - 4.357158861273761, - 5.081109265035721, - 6.02219243172041, - 6.373940222335876, - 6.742573131915483, - 7.160940006679834, - 7.536185019682602, - 7.897543455567352, - 8.245258961628599, - 8.566443925704686, - 8.825575257173519, - 9.143920659531938, - 9.377027495092172, - 9.497349882452673, - 9.701383251193116 - ], - "5._384._0.0875": [ - 3.4932967164168494, - 4.028111144153651, - 4.660578982219156, - 5.706487644950198, - 7.033421352341935, - 9.33316598309759, - 12.576824994901155, - 15.652014211812213, - 20.1108807259396, - 22.849703030261086, - 24.786388328299044, - 27.446366794004437, - 29.25289505997882, - 33.17637892761444, - 36.39972061123168, - 37.2700383428891, - 38.04524542071091, - 38.794732855261536, - 39.37100529754368, - 39.862405361280366, - 40.28331756982975, - 40.633980874756226, - 40.89529694935264, - 41.19326560731454, - 41.39678432474598, - 41.49674105748429, - 41.6590468356386 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.8679037053125411, - 2.162243131656476, - 2.506080869171695, - 2.8001351124708167, - 3.143366966314304, - 3.513394010167464, - 3.8631070995326175, - 4.460444842036958, - 4.909905641440201, - 5.284358703316006, - 5.9154730069201635, - 6.448839141616497, - 8.061908058783755, - 10.028811719837675, - 10.685057594585244, - 11.319314446978634, - 11.978793927981506, - 12.518105945944342, - 12.997039208511188, - 13.421636443350696, - 13.78436412918022, - 14.058645162972685, - 14.37353945336968, - 14.590571610365428, - 14.69820866317707, - 14.874434448221987 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.5553235639052962, - 2.8519157055701174, - 3.2003598975437377, - 3.5252461825718, - 4.0086355778155465, - 4.683035044432585, - 5.385623524970403, - 6.663887474038052, - 7.687998277237353, - 8.555490099345452, - 9.978402752069133, - 11.105688767231312, - 14.032386565140282, - 16.882222448782898, - 17.712148065323053, - 18.46533279586521, - 19.205872268872316, - 19.780800282676072, - 20.273359895218995, - 20.69565551610151, - 21.04691128685085, - 21.308278611348836, - 21.604686282281005, - 21.807057923662246, - 21.90669006917981, - 22.06904467550312 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351694667320992, - 3.187321251937218, - 3.5229440928128195, - 4.032426610597283, - 4.631564126810264, - 5.609995403957625, - 7.073009594019539, - 8.6737717374842, - 11.427957061179837, - 13.364735796953463, - 14.83815177397698, - 16.994121230350185, - 18.533883843754875, - 22.046490455031705, - 25.04277244020103, - 25.863077580688078, - 26.593370303676835, - 27.29986234516566, - 27.84213923330586, - 28.30430385445269, - 28.699237771755374, - 29.027423636381915, - 29.271769114470185, - 29.549732746901082, - 29.739589957583387, - 29.832933069961253, - 29.98477285944694 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833184628, - 2.7884201993863784, - 3.045027097333686, - 3.3885783381650834, - 3.6187668982597394, - 3.8048156267344515, - 4.109103405356947, - 4.356664888331129, - 5.079258740182014, - 6.011754396890339, - 6.357735622867094, - 6.718920670989259, - 7.127239365434589, - 7.4921210695235185, - 7.842411722849965, - 8.178543450819955, - 8.488306981584229, - 8.737804396911052, - 9.043962405697554, - 9.267978644700454, - 9.383559604246573, - 9.579542284385127 - ], - "5._384._0.0875": [ - 3.493169354187151, - 4.027728096731426, - 4.659800386378266, - 5.701935414246993, - 7.012614281049865, - 9.258345308835903, - 12.393033647193953, - 15.345664434457454, - 19.611240937109184, - 22.227122355201473, - 24.07634071360206, - 26.61686686435621, - 28.342789481102805, - 32.095400997209275, - 35.182323970477924, - 36.016342972569994, - 36.75954782451215, - 37.4783779800829, - 38.0313601533255, - 38.50294753686443, - 38.90701326204537, - 39.24372904193864, - 39.49465518280837, - 39.78080159218913, - 39.9762309064258, - 40.07220261427535, - 40.227995568391535 - ], - "5._48._0.075": [ - 1.5268463243731414, - 1.8679037053125422, - 2.1622431316564774, - 2.506080869158317, - 2.800135077069854, - 3.1433612347855915, - 3.5133110543081907, - 3.862863560590234, - 4.459910999116694, - 4.908894194373628, - 5.282282300052977, - 5.909138673435639, - 6.43608084034501, - 8.0156404603315, - 9.921972831737065, - 10.554646067191358, - 11.165048855526624, - 11.798933148307164, - 12.316889010076611, - 12.77673732034858, - 13.184459113393377, - 13.53292252351534, - 13.796556717559788, - 14.099514143498958, - 14.30845650917326, - 14.41210039971042, - 14.581784394113235 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.555323563849342, - 2.851915624830741, - 3.200350941770573, - 3.5251647355502858, - 4.0083300088185325, - 4.682360378281331, - 5.383409631677109, - 6.649804364065226, - 7.6553003744628425, - 8.502031058357419, - 9.883242044579921, - 10.972398432505498, - 13.787376935140504, - 16.520291191717376, - 17.3155739520254, - 18.03777200360679, - 18.748190349323064, - 19.30018766831746, - 19.77335076557867, - 20.17934283227156, - 20.517299977611913, - 20.768875254714686, - 21.054347677465433, - 21.249289655686834, - 21.345256800932138, - 21.501582580599848 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351692752072397, - 3.187306299663674, - 3.5228300118253095, - 4.03204493570029, - 4.630817419071829, - 5.606062168412246, - 7.048655305494656, - 8.60569162455325, - 11.252049840111205, - 13.099877310430346, - 14.502382898936581, - 16.552911819613367, - 18.017311579689814, - 21.362959644785875, - 24.223547187570126, - 25.007711095662433, - 25.706478169754526, - 26.382966102750892, - 26.902679509620057, - 27.345746152265235, - 27.72457897617066, - 28.03953891307809, - 28.274063331426998, - 28.54091341722922, - 28.72317371176694, - 28.81276927490796, - 28.958459566216092 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615422, - 1.4813847491413084, - 1.8198213217004355, - 2.111467924224729, - 2.451192833181503, - 2.7884201553012113, - 3.0450243980779157, - 3.388521552023662, - 3.6186091004043384, - 3.804558238618123, - 4.1086892762180085, - 4.356116077687643, - 5.077187752978894, - 5.999703813053983, - 6.338795724414074, - 6.6909550962796, - 7.086995672766665, - 7.439193409462596, - 7.776001927367543, - 8.098169195256894, - 8.394368951302317, - 8.632619079041968, - 8.924864558983892, - 9.138788518574435, - 9.249223973196889, - 9.436690127065424 - ], - "5._384._0.0875": [ - 3.493027851490331, - 4.027302541960601, - 4.65893513001956, - 5.696798149112409, - 6.9884218096083055, - 9.168980692186224, - 12.173380170319273, - 14.984713519540609, - 19.037223640419068, - 21.52206063626332, - 23.279512216955787, - 25.696162055196027, - 27.339205407608937, - 30.917138387216536, - 33.865086255432296, - 34.6621549278939, - 35.37275060551124, - 36.06031786832429, - 36.58951657004706, - 37.040865286428165, - 37.42770412504695, - 37.75014337744569, - 37.99043221193748, - 38.264468242139294, - 38.45161152787152, - 38.54350266281343, - 38.69263193380563 - ], - "5._48._0.075": [ - 1.526846324373138, - 1.8679037053125451, - 2.162243131656477, - 2.5060808691434544, - 2.800135037735448, - 3.143354866420989, - 3.513218881732691, - 3.8625929741932343, - 4.459317919745483, - 4.907768431139118, - 5.279956001742408, - 5.901918143894484, - 6.421309072125651, - 7.960472914617765, - 9.793551836935942, - 10.39828122704247, - 10.980906508410472, - 11.585521401785392, - 12.079541233993934, - 12.518346542731019, - 12.907763548811198, - 13.24098391136831, - 13.49337761205165, - 13.783878628569754, - 13.984469089409036, - 14.084021023913666, - 14.247047267486934 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637871654, - 2.8519155351203227, - 3.2003409909132845, - 3.5250742394531174, - 4.00799051113972, - 4.68161075326053, - 5.38093142750773, - 6.6335410492873095, - 7.616715544330452, - 8.438197367357109, - 9.768772768742924, - 10.812198490080256, - 13.49759956061027, - 16.101504870277306, - 16.859759223197734, - 17.549190983951235, - 18.228071592896036, - 18.75625524141636, - 19.20937912139736, - 19.59859843226236, - 19.922914990354187, - 20.164463955346225, - 20.438752086536386, - 20.626107856722307, - 20.718339080347747, - 20.86853097589821 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169061150063, - 3.1872895883063355, - 3.52270251095617, - 4.031618398656333, - 4.629983059875722, - 5.601665891257551, - 7.021091393112692, - 8.527539296124017, - 11.050544528588066, - 12.799383385024957, - 14.124557404389321, - 16.062314167801084, - 17.447396903394516, - 20.61989407396707, - 23.34143294233355, - 24.08872413258913, - 24.75531279884091, - 25.401175835079087, - 25.89783917387253, - 26.321392142091575, - 26.683758432990075, - 26.985179875128246, - 27.209648983310117, - 27.465113818365808, - 27.639592466499106, - 27.72535100722631, - 27.864751149051784 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004358, - 2.1114679242247285, - 2.4511928331780077, - 2.7884201060295477, - 3.0450213812627234, - 3.3884580853343444, - 3.6184327409103596, - 3.804270580938309, - 4.108226475086609, - 4.355502800499314, - 5.074873482641779, - 5.986110840693847, - 6.3172672781985595, - 6.6589288419239026, - 7.040636540429564, - 7.378065267988139, - 7.699292127736477, - 8.00550531343637, - 8.286425214358841, - 8.51218421624606, - 8.789230787465828, - 8.992330814767818, - 9.09732371991307, - 9.275911449061745 - ], - "5._384._0.0875": [ - 3.4928697149825934, - 4.026826988520673, - 4.657968350407307, - 5.691053523115026, - 6.961050091996094, - 9.066356839668828, - 11.922858732700675, - 14.57911136584915, - 18.405439164236302, - 20.75416986486436, - 22.417150344640632, - 24.70704328573827, - 26.265632862825978, - 29.665886132659903, - 32.47253410947096, - 33.23202296911221, - 33.909421028808175, - 34.56513544266801, - 35.070071439704975, - 35.5007681821849, - 35.87001305261136, - 36.17786016433135, - 36.4072751259067, - 36.66892684326432, - 36.847597510746915, - 36.935317375639315, - 37.077639518839405 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808691268437, - 2.8001349937734705, - 3.1433477488378028, - 3.513115866074003, - 3.8622905695827425, - 4.4586551932541045, - 4.906510500638506, - 5.277354893696145, - 5.8938098036000275, - 6.404598133253599, - 7.897056270483524, - 9.645993887267212, - 10.219330521639325, - 10.771186892765881, - 11.343821333980426, - 11.812068861811278, - 12.228454023822929, - 12.598562645135798, - 12.915838499526933, - 13.156546541773247, - 13.43416689390025, - 13.626164730584879, - 13.721523150827938, - 13.87775267583671 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637176726, - 2.8519154348557376, - 3.2003298693691278, - 3.52497309749546, - 4.0076111017382905, - 4.680773140117236, - 5.378162327869877, - 6.615202904598089, - 7.57262627224492, - 8.364754157482771, - 9.63685764766361, - 10.628277852416552, - 13.170632096161583, - 15.63724227937765, - 16.35688613448388, - 17.01231457084113, - 17.658629855796335, - 18.162316797622356, - 18.594866696359063, - 18.966889439680973, - 19.277230722802173, - 19.508511447247095, - 19.77134480174019, - 19.95093649041208, - 20.039348021970138, - 20.18327768077989 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83516882033579, - 3.187270788038398, - 3.522559074258664, - 4.031138595899011, - 4.62904492386663, - 5.596686272802725, - 6.989239694701535, - 8.437542674965027, - 10.824277324896237, - 12.467480669722185, - 13.711507671688093, - 15.532404026642771, - 16.836030790712673, - 19.831678990583256, - 22.411589805977396, - 23.12133668117979, - 23.755111110830544, - 24.369715413778742, - 24.84281526464925, - 25.246410746952463, - 25.591916518204183, - 25.879461137764693, - 26.093621336508836, - 26.33740777203477, - 26.503905129659106, - 26.58572961390496, - 26.718686455498254 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004344, - 2.111467924224728, - 2.4511928331740758, - 2.788420050598932, - 3.045017987345733, - 3.3883866855291935, - 3.6182343400313477, - 3.803946980421113, - 4.107705886392781, - 4.354812958829561, - 5.072259104162802, - 5.970414172493222, - 6.292289609605352, - 6.621756078214251, - 6.987015796947255, - 7.307767056350868, - 7.611677060869624, - 7.900445765098252, - 8.164911497283295, - 8.377387902937283, - 8.638454912069516, - 8.83028770588377, - 8.92964969672179, - 9.099100034499415 - ], - "5._384._0.0875": [ - 3.492691828633645, - 4.026292073213935, - 4.656881519908369, - 5.684531322996634, - 6.929426102700457, - 8.948812818137057, - 11.643675280976376, - 14.136344704275581, - 17.72943119716894, - 19.939424500948764, - 21.506437044610685, - 23.667789044278315, - 25.140819561166172, - 28.360881101240025, - 31.023990566115028, - 31.745263595572972, - 32.388870058001125, - 33.0121343712735, - 33.49232383607148, - 33.90195190243441, - 34.25323444218173, - 34.54617429718625, - 34.764479800408516, - 35.01347576959295, - 35.18348921391545, - 35.26694804393692, - 35.402320849141574 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125465, - 2.162243131656477, - 2.5060808691081555, - 2.800134944316245, - 3.143339741557706, - 3.512999974403283, - 3.8619503839098503, - 4.457909851914139, - 4.9050938620629605, - 5.274406757705306, - 5.884493029082026, - 6.3852319468985295, - 7.823872650016155, - 9.47963192016127, - 10.019251747804374, - 10.538435849785124, - 11.077443931479772, - 11.518840817732313, - 11.9119883607945, - 12.262166676136392, - 12.56302644987083, - 12.7917173231064, - 13.05609412705115, - 13.239262916538648, - 13.330317165444843, - 13.479581423380186 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235636394986, - 2.8519153220580753, - 3.2003173576347597, - 3.5248593137257123, - 4.0071843028930685, - 4.679831361271022, - 5.3750351130602825, - 6.59404902427771, - 7.521546871714049, - 8.280048147923209, - 9.486746278000654, - 10.421409003075485, - 12.81205753827986, - 15.136632618853675, - 15.816732455368244, - 16.437334713170905, - 17.050333412861665, - 17.5289618534286, - 17.940458652874298, - 18.29486955608632, - 18.59088337415965, - 18.811631441747807, - 19.062704099641177, - 19.234324286498765, - 19.318815976403354, - 19.456326766151943 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351685474129877, - 3.187249481079709, - 3.5223965150058727, - 4.030595022338262, - 4.627965320186057, - 5.590289880948332, - 6.949189532309944, - 8.330792034609393, - 10.572608109122296, - 12.107702548344122, - 13.269605340841661, - 14.972738023896717, - 16.1943977089259, - 19.011538352247346, - 21.4477503622282, - 22.11928793719798, - 22.719595184762632, - 23.302265286462955, - 23.751241176965394, - 24.13439113760931, - 24.46260035565245, - 24.735892840944246, - 24.939462846198502, - 25.171246645005525, - 25.329541659841773, - 25.407324379401544, - 25.533667403830524 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.4511928331696207, - 2.788419987777566, - 3.0450141409066123, - 3.388305766032633, - 3.6180094902807536, - 3.803580245986537, - 4.10711529462548, - 4.354022409335569, - 5.068938318219258, - 5.950299867525088, - 6.260921612658738, - 6.576155824686364, - 6.9229024791175355, - 7.225484892615516, - 7.510990764886961, - 7.781581226266285, - 8.02914653075249, - 8.228103217389535, - 8.472981141317703, - 8.653406625074199, - 8.747060289013604, - 8.907219187154311 - ], - "5._384._0.0875": [ - 3.4924902297119944, - 4.025686264990099, - 4.65561973976974, - 5.6761268106143055, - 6.889638290533896, - 8.81168531495887, - 11.336883315567134, - 13.663437743528705, - 17.021952288136546, - 19.092610678471058, - 20.563131873808405, - 22.59499304339821, - 23.98169304115414, - 27.019349088819215, - 29.53666858483924, - 30.21906171203749, - 30.828258522342026, - 31.418450235478915, - 31.873390308709883, - 32.26151715524704, - 32.59445658726223, - 32.87216490038772, - 33.07911905410702, - 33.315181808132365, - 33.47634959162015, - 33.555455730865724, - 33.68373377246206 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.5060808690869747, - 2.8001348882647217, - 3.1433306666415244, - 3.512868631737964, - 3.861564884008023, - 4.457060689413019, - 4.903376283861942, - 5.270625018988458, - 5.872330535079776, - 6.360405634357742, - 7.736734393021971, - 9.29341540864003, - 9.798440069779174, - 10.284352533298824, - 10.789276188703543, - 11.203520012660265, - 11.573156396585789, - 11.90313122057395, - 12.187299477703013, - 12.40373196886646, - 12.654541125367047, - 12.828635849733287, - 12.915260510397404, - 13.05735345804886 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323563550898, - 2.851915194220729, - 3.2003031776727315, - 3.5247303599931783, - 4.006700721344035, - 4.6787467152795825, - 5.371064032913423, - 6.567031487960442, - 7.458940893239535, - 8.179488243460375, - 9.315601035407427, - 10.190996967468017, - 12.42695180181622, - 14.608127977967548, - 15.248279606337192, - 15.833566787440791, - 16.412702169650355, - 16.865779805046785, - 17.25576499685049, - 17.592131094710368, - 17.8734285558169, - 18.083344379701, - 18.322301662739687, - 18.485704724661183, - 18.566156002262037, - 18.697056803912464 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "8": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351682355013033, - 3.187225130374825, - 3.5222106345872253, - 4.0299193943562, - 4.625757573564203, - 5.576808812816328, - 6.890542106575977, - 8.198901216434896, - 10.295624514181299, - 11.725469131511014, - 12.807497349529497, - 14.395379176758267, - 15.536230003887058, - 18.1752542385862, - 20.46613613852397, - 21.098776219008236, - 21.664919373194692, - 22.214908688962826, - 22.6391278666577, - 23.00127752083216, - 23.311691872394352, - 23.570302516667827, - 23.762960305599442, - 23.982371238061518, - 24.132211375464163, - 24.20582905626209, - 24.325362642146132 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.4511928331645305, - 2.7884199159817205, - 3.0450097449765705, - 3.3882132822079485, - 3.61775148347291, - 3.803149105741243, - 4.1062953745587025, - 4.352594601974564, - 5.061345976131172, - 5.918337382945404, - 6.215486815821476, - 6.514811337705211, - 6.8419570595783945, - 7.126049380829651, - 7.393293198853836, - 7.646123452090563, - 7.87729960410498, - 8.063160338206194, - 8.29227607772689, - 8.461479781288922, - 8.54946545056247, - 8.700288832164876 - ], - "5._384._0.0875": [ - 3.4922623395375068, - 4.024911905526782, - 4.652865500382419, - 5.659313819015876, - 6.83115664247863, - 8.647846898495645, - 11.004994699348817, - 13.169996330048374, - 16.298685674373193, - 18.231467649564017, - 19.605957679256246, - 21.508206178566972, - 22.808120330242257, - 25.6613910086574, - 28.030577675454705, - 28.673374716089608, - 29.247497678658316, - 29.80394697895397, - 30.233098263756435, - 30.599260562286382, - 30.91345080599572, - 31.175583391957304, - 31.370930122759734, - 31.59376735612773, - 31.745891337328683, - 31.820548407462443, - 31.941578579048937 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.162243131656475, - 2.5060808690627714, - 2.800134824205835, - 3.1433202953169572, - 3.512718490229358, - 3.86111378489771, - 4.455556885815679, - 4.8992636680430195, - 5.261999061393691, - 5.8501899634073995, - 6.321423374764875, - 7.62818900977843, - 9.085967361548047, - 9.557383090724482, - 10.0109807836609, - 10.482699395321484, - 10.870313554289144, - 11.216731989198495, - 11.526584048527676, - 11.793978119975868, - 11.997996506974339, - 12.234942401330725, - 12.399697172323853, - 12.481744116882783, - 12.616406408247617 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.5553235634496403, - 2.8519150481209063, - 3.2002869720301432, - 3.52458295484092, - 4.00611698851429, - 4.676506320468504, - 5.3619935671200825, - 6.524621521848928, - 7.3750795074229885, - 8.055092620709853, - 9.11973272004087, - 9.936865738425093, - 12.022078662706496, - 14.062013761145433, - 14.662318028480708, - 15.212135753828145, - 15.757053511070303, - 16.184139328952973, - 16.552156542788136, - 16.870007306361753, - 17.136143172991734, - 17.33487577881149, - 17.56129400672606, - 17.716181308991196, - 17.79244366519042, - 17.91649651461894 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "5_5": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835167455722319, - 3.187164253368534, - 3.521746301971919, - 4.02842259309182, - 4.624013567123641, - 5.579319157812532, - 6.922783553411615, - 8.30414112276388, - 10.554443202049557, - 12.06361508854351, - 13.177921176937739, - 14.765632203836812, - 15.871826450723033, - 18.340824841472102, - 20.411603551648323, - 20.975486018186274, - 21.478663014973144, - 21.96643372840536, - 22.3424675968339, - 22.66326344442359, - 22.938356315678803, - 23.167711416791423, - 23.338592472919593, - 23.533362283094895, - 23.666336688660117, - 23.731623767556734, - 23.837504151333466 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224729, - 2.451192833151798, - 2.788419736492105, - 3.044998755151511, - 3.38798209104026, - 3.6171101408252784, - 3.8021136320949265, - 4.104765706456737, - 4.350995421159938, - 5.061942067728306, - 5.933232821892606, - 6.241751214747318, - 6.556412784504264, - 6.904378380097925, - 7.208806222027389, - 7.4957016563551795, - 7.765888175193149, - 8.010191791482212, - 8.203403906169012, - 8.435769851711482, - 8.60175359267224, - 8.685723191597464, - 8.825143413862401 - ], - "5._384._0.0875": [ - 3.491684146271643, - 4.023267111208729, - 4.651218691924928, - 5.663199686840241, - 6.862873689564256, - 8.786686976394648, - 11.313314244573547, - 13.567098650887633, - 16.663586156894397, - 18.491668382321397, - 19.761273935281313, - 21.487952651753982, - 22.652525290823707, - 25.184527304797125, - 27.27476150099981, - 27.840973062010548, - 28.34727754587184, - 28.838427228024507, - 29.217834027103176, - 29.541672065568456, - 29.81989947502766, - 30.05231053947457, - 30.225558308779714, - 30.42333879464964, - 30.558347490002983, - 30.624578008020414, - 30.73184808075906 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125465, - 2.1622431316564765, - 2.506080869002253, - 2.800134664058629, - 3.143294366990227, - 3.51234327385534, - 3.8600231658561306, - 4.453787470096188, - 4.898329994233693, - 5.262935242511851, - 5.857856131234189, - 6.340376143296084, - 7.714029489979712, - 9.276829700482844, - 9.775169208853415, - 10.247833630544632, - 10.730011223466859, - 11.117786051483273, - 11.457205304493733, - 11.754722085272638, - 12.00663999068362, - 12.19578675949656, - 12.412130414090651, - 12.560463886665968, - 12.633629076525532, - 12.752653332461575 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.555323563196496, - 2.8519146828713384, - 3.200246457862802, - 3.5242145576928374, - 4.0047672157277745, - 4.674798660925404, - 5.362837203747391, - 6.544736994292002, - 7.431727436375156, - 8.154078096982458, - 9.29660560124912, - 10.171668113181864, - 12.348366540431808, - 14.357056679222422, - 14.925150810738675, - 15.437160406302576, - 15.937663402796083, - 16.325676492284472, - 16.657399888535174, - 16.94221489033507, - 17.17967887180835, - 17.356491786631466, - 17.55757963988236, - 17.694807483887693, - 17.762225945191844, - 17.871641922257645 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83516695949957, - 3.187125513565185, - 3.521450763542121, - 4.0274366844693406, - 4.622305198264487, - 5.574987899030887, - 6.899514920423678, - 8.233571895585703, - 10.361567151375796, - 11.770672119398977, - 12.806119724273982, - 14.277594819467183, - 15.301463848859186, - 17.587746127405236, - 19.5083096867228, - 20.03178558329116, - 20.499384153600218, - 20.953017047187405, - 21.3030883150575, - 21.601827978076262, - 21.85818317750659, - 22.07204607808607, - 22.231407042996807, - 22.413105363422567, - 22.53714966952561, - 22.598040400811442, - 22.69674565083661 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.451192833143696, - 2.7884196222714395, - 3.0449917616272035, - 3.387834967629922, - 3.61670137207658, - 3.801447139272471, - 4.103701290523978, - 4.349644670978793, - 5.059206388534941, - 5.921618293142949, - 6.223090959697735, - 6.528065282925384, - 6.862361954879716, - 7.152410593684075, - 7.423883366947572, - 7.678081617089843, - 7.906895680513659, - 8.087307807605024, - 8.303854982935414, - 8.45836941604716, - 8.53648651723681, - 8.666159622984987 - ], - "5._384._0.0875": [ - 3.4913178390760735, - 4.022170918370597, - 4.649358590935858, - 5.657897467530965, - 6.839814440760419, - 8.692618423478708, - 11.07156719065026, - 13.168016723339253, - 16.032351313065224, - 17.719961266559274, - 18.89170206591275, - 20.486056320307313, - 21.561890705338104, - 23.90459762499313, - 25.841957653067293, - 26.367190803891226, - 26.83714082894157, - 27.293261963582037, - 27.64584412294378, - 27.94682721016672, - 28.20552399848253, - 28.42169650063815, - 28.582843728808097, - 28.766836070753715, - 28.892419892587082, - 28.954016108064405, - 29.05374472733484 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.5060808689637466, - 2.8001345621467664, - 3.1432778671558337, - 3.512104481658397, - 3.8593226185929863, - 4.452336171721103, - 4.896263231951062, - 5.259875619296617, - 5.850686865673662, - 6.326137067657118, - 7.656587240482737, - 9.135632103729913, - 9.602255301117046, - 10.043373658887337, - 10.492411596852213, - 10.853117154123638, - 11.16872890347636, - 11.445433270902878, - 11.67987463137754, - 11.856019233715672, - 12.057731778936501, - 12.196127491203123, - 12.264398594589776, - 12.37545109403248 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235630354045, - 2.8519144504397973, - 3.200220676151204, - 3.5239801088396194, - 4.003889118188069, - 4.6730975362038425, - 5.359655800012464, - 6.529359393481698, - 7.3932410306803815, - 8.08776254668111, - 9.172995930228549, - 9.996082475136705, - 12.026355584901133, - 13.891291098776723, - 14.418272996114242, - 14.893640486965559, - 15.358645975697575, - 15.719538037111713, - 16.028263662723468, - 16.293598059430366, - 16.51503356313131, - 16.679988311655176, - 16.867732108281, - 16.99587974795607, - 17.05883026444363, - 17.160952025800622 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351663640325113, - 3.1870790259809727, - 3.521095986066066, - 4.026177643506365, - 4.61888550527475, - 5.560524909054289, - 6.846233842334554, - 8.112583382303718, - 10.093123447605226, - 11.390821763471273, - 12.341180847819523, - 13.689790154770082, - 14.627832321306306, - 16.725367492115954, - 18.491438715885913, - 18.973383778484628, - 19.404346540100725, - 19.822777232172758, - 20.146013799088156, - 20.421940179172047, - 20.65887943462162, - 20.856662370095307, - 21.00406069335515, - 21.172171718469528, - 21.286933687818888, - 21.343256805284355, - 21.4345164536736 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.451192833133975, - 2.7884194852066413, - 3.0449833693989414, - 3.3876584141713875, - 3.61620941246458, - 3.8006305788529957, - 4.10222123375797, - 4.347288432367357, - 5.050371575186146, - 5.891791206708273, - 6.181510390521909, - 6.4721326890698325, - 6.787981319660684, - 7.059922600798694, - 7.312933243777524, - 7.548732519484772, - 7.760272672725568, - 7.926745370701878, - 8.126411365877543, - 8.268882851776267, - 8.340915143893158, - 8.46053889796503 - ], - "5._384._0.0875": [ - 3.4908818412596445, - 4.020741025155857, - 4.645275889918925, - 5.640508586510151, - 6.786684372538143, - 8.54055920528448, - 10.746041309441212, - 12.670796140756103, - 15.291202850402206, - 16.833906921134826, - 17.90533837816917, - 19.36445366313152, - 20.3497450530167, - 22.499045351507238, - 24.27980546327062, - 24.762995235382103, - 25.195588225634555, - 25.615666267925814, - 25.940596272570925, - 26.218009385818206, - 26.456540238133748, - 26.65592801625773, - 26.804565583566333, - 26.974296493291742, - 27.090133464134905, - 27.146938961512667, - 27.238878671827738 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564765, - 2.506080868917536, - 2.800134439852537, - 3.143258067369609, - 3.5118178845822023, - 3.8584672962845494, - 4.449846990701017, - 4.890723878553551, - 5.249903512334961, - 5.828928711630364, - 6.29006602259276, - 7.556928395507179, - 8.935423056271237, - 9.36655014455558, - 9.773196249352429, - 10.186659162285936, - 10.518687918776314, - 10.809297924549707, - 11.064279126764733, - 11.280549840055432, - 11.443202921124502, - 11.629741001791093, - 11.757839513373316, - 11.821046768593177, - 11.923864650741955 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235628420974, - 2.851914171521948, - 3.2001897381470155, - 3.52369873233631, - 4.002792052103697, - 4.66964835021353, - 5.349199590220328, - 6.490211183379618, - 7.317357271409015, - 7.973790893008165, - 8.98789672166133, - 9.75059601525352, - 11.620131396920156, - 13.333710573384039, - 13.818022817252677, - 14.25546189999644, - 14.68378356346025, - 15.016643083308646, - 15.301595334547722, - 15.546765890616875, - 15.75158418018831, - 15.904235401879545, - 16.07811112617065, - 16.19681957765148, - 16.255127900435983, - 16.349680909095753 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "5_6": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351682355012886, - 3.187225130284913, - 3.522210735800777, - 4.029972636980602, - 4.626662181505097, - 5.583938756400645, - 6.939599135952784, - 8.362927810062262, - 10.758073687209887, - 12.40906930548783, - 13.645385331866027, - 15.425359374352006, - 16.67503327359461, - 19.47757311113583, - 21.832417948857323, - 22.473654392401116, - 23.044990856063357, - 23.598193970660724, - 24.02391100504954, - 24.38690373531101, - 24.697773197057018, - 24.956645591000978, - 25.149462107675248, - 25.369080906196686, - 25.519032398946276, - 25.592683998771186, - 25.712240863873955 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.4511928331645287, - 2.7884199159817205, - 3.0450097449763542, - 3.3882132869733823, - 3.6177525240467596, - 3.803161096532597, - 4.106437474415144, - 4.3530996087156115, - 5.065290017489952, - 5.941790316464481, - 6.255352380129186, - 6.578083679703817, - 6.939081952639077, - 7.258992269782869, - 7.5642001311671585, - 7.855117453414467, - 8.12115992406773, - 8.333594647719876, - 8.591382265116815, - 8.777038368586869, - 8.871476028183224, - 9.029031542834336 - ], - "5._384._0.0875": [ - 3.492259892399763, - 4.02499114238111, - 4.654073599607541, - 5.668427031660625, - 6.8795594026155, - 8.869538628731533, - 11.580777218678778, - 14.0701885150277, - 17.55785178140429, - 19.639423609202826, - 21.090713535502868, - 23.067461220629113, - 24.401770536160623, - 27.298194663854584, - 29.683434626835076, - 30.328710420960675, - 30.905002703715166, - 31.463463788617563, - 31.894270677811072, - 32.26187123771363, - 32.57741835116797, - 32.840799184390114, - 33.03711457494162, - 33.261151468659136, - 33.414109246006305, - 33.48917052927063, - 33.61083135726327 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.1622431316564747, - 2.5060808690627696, - 2.8001348242058373, - 3.14332029531039, - 3.512718527361398, - 3.8611242435521054, - 4.456059086160568, - 4.901311338151137, - 5.266573469928468, - 5.863738640325235, - 6.35063272743358, - 7.761563957952724, - 9.424027415281046, - 9.966779803933857, - 10.486414658866888, - 11.02081738279616, - 11.4533185323382, - 11.833574025391664, - 12.167895891947806, - 12.451494190703572, - 12.664638979784629, - 12.908396034003182, - 13.07558835536145, - 13.158125949299045, - 13.292541306388305 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.55532356344964, - 2.8519150481209032, - 3.2002869720065177, - 3.5245829858177253, - 4.006147581255396, - 4.677433646055923, - 5.366695022382107, - 6.555920264613102, - 7.460858869781202, - 8.209416593362795, - 9.415795314702303, - 10.35712627269337, - 12.74977455371266, - 15.002232798746181, - 15.644308587814747, - 16.223586593425996, - 16.790218753086712, - 17.229257768377447, - 17.604525135982243, - 17.926368927728767, - 18.19436539796486, - 18.393796232330292, - 18.620332489480738, - 18.774902531683512, - 18.850871361394987, - 18.974283136961482 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351678756032506, - 3.1871970332340482, - 3.5219963792700835, - 4.029257160982754, - 4.625438548537246, - 5.581571347639799, - 6.927350925287799, - 8.318967004935404, - 10.61726074208108, - 12.181584444884853, - 13.346896336145143, - 15.019364851073014, - 16.191463662557055, - 18.81976961997921, - 21.030718679525684, - 21.63325729910961, - 22.170631839438595, - 22.691331843073993, - 23.092428564754517, - 23.434532893673673, - 23.727710015211958, - 23.971994134396812, - 24.153970486307404, - 24.36130746963971, - 24.502867655031217, - 24.572384940428588, - 24.685180403460368 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.451192833158654, - 2.788419833140358, - 3.0450046727493625, - 3.388106580854145, - 3.6174560345834403, - 3.802677631579794, - 4.105665799985949, - 4.352128060885872, - 5.063667703036873, - 5.935960480877939, - 6.245434944168357, - 6.561932881433218, - 6.913361290614929, - 7.222473823664502, - 7.5154686757359785, - 7.7931419029978155, - 8.0458580018569, - 8.24694675099684, - 8.490335096308083, - 8.665321716612308, - 8.75424595386709, - 8.902527837573007 - ], - "5._384._0.0875": [ - 3.491994139892584, - 4.024195318040663, - 4.652753355922339, - 5.665633535025146, - 6.867449322109124, - 8.808383682344262, - 11.399292790333975, - 13.748942584532955, - 17.02003258036753, - 18.967253869639176, - 20.324139160359515, - 22.172782525519168, - 23.421026528956038, - 26.134372899160592, - 28.37244494134407, - 28.978381020843116, - 29.51985682418446, - 30.044842973641273, - 30.450089091603385, - 30.79592537366868, - 31.09290839015706, - 31.340879115251134, - 31.525713628546903, - 31.73667702900685, - 31.880695756693797, - 31.95135882186754, - 32.06585183732913 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.5060808690348377, - 2.8001347502917406, - 3.143308328392027, - 3.512545332131492, - 3.8606160269006207, - 4.4550102671411045, - 4.89992311959612, - 5.264799716741715, - 5.860236970238653, - 6.343524048263206, - 7.7260674458265655, - 9.322110356265519, - 9.8376006411807, - 10.32934942169722, - 10.83377786672947, - 11.24135804369911, - 11.599439755208454, - 11.914222918480158, - 12.181338827225302, - 12.382199717087675, - 12.612145127316209, - 12.769960121166498, - 12.84787473255296, - 12.974747598901702 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235633328066, - 2.8519148795441804, - 3.200268273167085, - 3.5244129407812252, - 4.005510438641588, - 4.676216177419605, - 5.364819980203309, - 6.5481814668384875, - 7.438958720784601, - 8.168170746921275, - 9.330656267082633, - 10.229230582041316, - 12.492940115095385, - 14.611783654253092, - 15.214921521950753, - 15.759391351776683, - 16.292252171150597, - 16.705520421007435, - 17.058959524649378, - 17.362365077340574, - 17.6152387529061, - 17.803501656388374, - 18.017508102460514, - 18.163558262044976, - 18.235332053681265, - 18.351880443348918 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351674557223197, - 3.1871642533685347, - 3.5217463020456248, - 4.028422763615535, - 4.623990409869756, - 5.5777387337863935, - 6.904996999994469, - 8.248908799151282, - 10.422479407650744, - 11.884839072166706, - 12.970065083595378, - 14.525034499364757, - 15.614342410292306, - 18.0603693940566, - 20.12290444847456, - 20.68571414889172, - 21.188201673557913, - 21.675499789540037, - 22.051256314639893, - 22.371853011616142, - 22.646786622885514, - 22.87600621530627, - 23.046783959207993, - 23.241420638389847, - 23.37430386973581, - 23.439548154329078, - 23.545363656058306 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224729, - 2.451192833151798, - 2.788419736492103, - 3.044998755151512, - 3.387982091040997, - 3.617110140866267, - 3.8021136251161445, - 4.1047648585497925, - 4.350983781877233, - 5.06128893298051, - 5.925003637112984, - 6.227480513767378, - 6.534250608231321, - 6.8718418949960105, - 7.166327329871255, - 7.4435993158139855, - 7.704966860717649, - 7.941906851090504, - 8.129996459754999, - 8.357401619358855, - 8.520887548515773, - 8.603979129174093, - 8.74262049857559 - ], - "5._384._0.0875": [ - 3.491684126056154, - 4.023267507716046, - 4.651174925558147, - 5.660890609776106, - 6.845321539568308, - 8.714448562778145, - 11.1546797022769, - 13.344257767992442, - 16.38076453653842, - 18.18694881010141, - 19.445955306673266, - 21.162765578761217, - 22.32287364781907, - 24.849058282507865, - 26.936649009114934, - 27.50233081779233, - 28.00813028502735, - 28.498773407013275, - 28.877749410788397, - 29.201208010437, - 29.47908016475411, - 29.711169165462465, - 29.884168799635933, - 30.0816478341597, - 30.21644745255911, - 30.282576152183083, - 30.38968599692364 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125465, - 2.1622431316564765, - 2.506080869002254, - 2.8001346640586275, - 3.1432943669902254, - 3.5123432738780753, - 3.860023189403586, - 4.453781231477062, - 4.89815880376439, - 5.262132947589282, - 5.853674150083607, - 6.330056488054773, - 7.669125795346013, - 9.179802372376678, - 9.662996327323881, - 10.122683829967814, - 10.593553265964477, - 10.973843623457475, - 11.308044409251224, - 11.60206310410503, - 11.85184357726925, - 12.039876838383226, - 12.255479121510879, - 12.403603915227595, - 12.47675996526066, - 12.595897895360725 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.555323563196497, - 2.8519146828713375, - 3.2002464578628, - 3.5242145577087713, - 4.00476731132331, - 4.674774041197153, - 5.362050482567375, - 6.533628009279137, - 7.401325843594434, - 8.10238229251294, - 9.20650021138882, - 10.052042191090058, - 12.166881018900074, - 14.141154721269062, - 14.7032737877692, - 15.211368045163812, - 15.709142915831414, - 16.095730689730015, - 16.426618683663488, - 16.710991874081056, - 16.948257287867833, - 17.124995025450126, - 17.32606168224979, - 17.46331707629899, - 17.53076461300303, - 17.64024585637809 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835166959499591, - 3.187125513679623, - 3.521450634598156, - 4.02736753659825, - 4.6210331510390965, - 5.564819680402334, - 6.856413552589171, - 8.136406518646817, - 10.167113324936727, - 11.51995843818636, - 12.521076487867289, - 13.95428374731642, - 14.958483679998952, - 17.21780072926858, - 19.12827504674581, - 19.650330869482392, - 20.116950944134274, - 20.569848652718548, - 20.919441682410103, - 21.217814306013178, - 21.47386233467655, - 21.687461661817636, - 21.84662276306885, - 22.028073330497463, - 22.151947995902926, - 22.21275794825712, - 22.31133855706593 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.1114679242247285, - 2.4511928331436965, - 2.78841962227144, - 3.044991761627475, - 3.3878349615637453, - 3.6167000464879, - 3.8014318093503445, - 4.1035156891659765, - 4.348962703925465, - 5.053438767650024, - 5.897970394386082, - 6.189528789634334, - 6.482816277175228, - 6.802871585877492, - 7.0799594208862695, - 7.339338146852361, - 7.582743954324521, - 7.802724100835819, - 7.97707656904319, - 8.18781060494777, - 8.339405993377113, - 8.416496687404335, - 8.545253937167901 - ], - "5._384._0.0875": [ - 3.4913209718023595, - 4.022066819255714, - 4.647626246005515, - 5.645321113362411, - 6.796896263013128, - 8.572263883011422, - 10.843632595149678, - 12.863769918752045, - 15.658198071320886, - 17.32040796790547, - 18.479808654848934, - 20.06254992869877, - 21.13303664383957, - 23.468423892265456, - 25.402095720924525, - 25.926528554047547, - 26.395717490985344, - 26.851073021865645, - 27.203010410414887, - 27.50342809513114, - 27.76160166119539, - 27.977305086386924, - 28.138092942928587, - 28.321652749956336, - 28.446937664334694, - 28.508388384737433, - 28.60788773965421 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312546, - 2.1622431316564774, - 2.5060808689637466, - 2.800134562146768, - 3.143277867164189, - 3.512104434365, - 3.8593092056663854, - 4.451648667345192, - 4.893292349778731, - 5.253263926922028, - 5.8340945084566, - 6.297331591525605, - 7.576545103571474, - 8.989796949703502, - 9.438162900188273, - 9.863881194854663, - 10.299609697890237, - 10.651552220228957, - 10.961054061709806, - 11.233647564172562, - 11.465552273918972, - 11.64035131385486, - 11.841128166564312, - 11.979226448827209, - 12.047459612100326, - 12.158600815166283 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.555323563035405, - 2.851914450439796, - 3.200220676181267, - 3.5239800693894594, - 4.003849610920761, - 4.671789116884014, - 5.352752814882151, - 6.498112920646301, - 7.33152223536234, - 7.9964282480996856, - 9.031987879024442, - 9.818648575237061, - 11.775179346397461, - 13.59977480198555, - 14.119740080639373, - 14.590450386776384, - 15.052153266566297, - 15.411261837734692, - 15.718896746450179, - 15.983602258275024, - 16.204702021418132, - 16.369489064116014, - 16.55711247148256, - 16.685226056357333, - 16.748178014534837, - 16.850324414730537 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "5_7": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351688203357885, - 3.1872707880384055, - 3.5225590741424675, - 4.031135543730506, - 4.628650423988393, - 5.587366833416984, - 6.95086306454254, - 8.402067695321808, - 10.904891372126123, - 12.6708153755377, - 14.010670613530527, - 15.95998227713012, - 17.3399082389479, - 20.453365530360152, - 23.078241080212067, - 23.793455133457798, - 24.429916403578012, - 25.04558303788607, - 25.518600832557738, - 25.921736512763815, - 26.26655905323652, - 26.553379616526378, - 26.766952905819306, - 27.010052574745778, - 27.176049154428092, - 27.25761283821541, - 27.390133299627223 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004344, - 2.111467924224728, - 2.4511928331740758, - 2.7884200505989325, - 3.045017987345732, - 3.3883866855284692, - 3.6182343373389, - 3.8039467995645735, - 4.107691750133038, - 4.354678607724848, - 5.067790728832384, - 5.947630268415983, - 6.264317280324333, - 6.592233410811651, - 6.961987894534758, - 7.292828204633072, - 7.611545889017779, - 7.918432045374954, - 8.201911531235776, - 8.430317708925855, - 8.710007607033114, - 8.91323859889943, - 9.01725797158694, - 9.19179519771969 - ], - "5._384._0.0875": [ - 3.4926918267211224, - 4.026284772576977, - 4.656217100609228, - 5.672279382165575, - 6.890749483310308, - 8.925629943813789, - 11.777642084385738, - 14.463760691681767, - 18.300322450685897, - 20.617465039999555, - 22.240555405583013, - 24.4562611495237, - 25.953918549452546, - 29.20182663984494, - 31.871390604867912, - 32.59276643688798, - 33.23627684350578, - 33.859262794128426, - 34.33920420924669, - 34.74861242226284, - 35.09974471823262, - 35.392606376663096, - 35.610874611955936, - 35.85988013943768, - 36.0299107978185, - 36.113376971776674, - 36.24875482455822 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125465, - 2.162243131656477, - 2.506080869108156, - 2.800134944316245, - 3.143339741557704, - 3.512999974377922, - 3.86195019405342, - 4.457763943921927, - 4.903547381838009, - 5.269279767410233, - 5.867907288436105, - 6.357511370663914, - 7.793071230999733, - 9.529483970718067, - 10.107858445224522, - 10.666412132989096, - 11.24540838781851, - 11.717112395005024, - 12.133894941617138, - 12.501693489531975, - 12.814491696617972, - 13.049966364350313, - 13.319408704876295, - 13.504375725602886, - 13.595789388860696, - 13.74485104701633 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235636394973, - 2.8519153220580753, - 3.2003173576347628, - 3.524859313706051, - 4.007183123191358, - 4.6794116807875135, - 5.369577270862288, - 6.563550205186536, - 7.479962094114038, - 8.246165200998934, - 9.498622240187274, - 10.4908167758871, - 13.061976467872231, - 15.531717690612922, - 16.24204284247892, - 16.884016350359374, - 17.51276425810442, - 17.999939756966054, - 18.416398839628723, - 18.773294785874956, - 19.070182988340594, - 19.291011464704162, - 19.54158889148426, - 19.712548313793718, - 19.796609025748438, - 19.933300101856734 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835168547412988, - 3.187249481079713, - 3.52239651486618, - 4.030592813742927, - 4.627721482546479, - 5.585586132781207, - 6.942252876708745, - 8.370534236646856, - 10.796400904632465, - 12.488384939274084, - 13.765391230514624, - 15.616776191786146, - 16.924446065190047, - 19.87276397993031, - 22.359801975763418, - 23.03786322214771, - 23.641791941814137, - 24.22638041330231, - 24.675937188655105, - 25.059190225515, - 25.387217875773505, - 25.660224585144125, - 25.8635400761881, - 26.095033868458508, - 26.25310023083977, - 26.330753776241156, - 26.45686654502016 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.4511928331696202, - 2.7884199877775666, - 3.045014140906611, - 3.388305766031536, - 3.6180094883757556, - 3.803580126978429, - 4.107106369569955, - 4.353941475790529, - 5.066564165209557, - 5.943522941998586, - 6.257424383184351, - 6.580948971186158, - 6.943701958562485, - 7.26631300861342, - 7.575380519866607, - 7.871427020733666, - 8.143635394027847, - 8.362170045147026, - 8.628974427676752, - 8.82240017989905, - 8.92126697778735, - 9.087009671738956 - ], - "5._384._0.0875": [ - 3.4924902440751033, - 4.025681012329982, - 4.65521441464559, - 5.670191455383498, - 6.8822340732711265, - 8.881044834052213, - 11.63539898242683, - 14.199402123442821, - 17.83679226376511, - 20.02661442230443, - 21.559182202674144, - 23.651269424674485, - 25.06555041872445, - 28.136212133804257, - 30.66370858011395, - 31.34718936662376, - 31.957236280631964, - 32.54811155089359, - 33.003601711884905, - 33.39220305784771, - 33.72561999306812, - 34.003799284920525, - 34.21113121502547, - 34.44769152198592, - 34.609210542098424, - 34.68848630154257, - 34.8170252835057 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.506080869086975, - 2.8001348882647203, - 3.1433306666415244, - 3.512868631702254, - 3.8615647353093423, - 4.456968040145207, - 4.902494469975342, - 5.267947748354527, - 5.865393325572198, - 6.352567214931404, - 7.76772180729497, - 9.451421094965895, - 10.006723697956039, - 10.54106376568349, - 11.09341360722246, - 11.542515009223523, - 11.938889500630316, - 12.288499489608018, - 12.585828702799336, - 12.809717700989703, - 13.066102138609235, - 13.242186810666816, - 13.329211327476695, - 13.471092849593457 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.5553235635508975, - 2.851915194220728, - 3.2003031776727298, - 3.52473035996673, - 4.006699841652932, - 4.678487388392947, - 5.368158665912254, - 6.558083530918199, - 7.464600170071629, - 8.216638299322032, - 9.435065663892738, - 10.392370744638267, - 12.851804213231175, - 15.198881938500488, - 15.872582172932185, - 16.48161961302125, - 17.078281918452657, - 17.540943631551542, - 17.93663195038179, - 18.276006353820364, - 18.558552448406417, - 18.768803006814576, - 19.007540370717138, - 19.170451962378966, - 19.250546575336667, - 19.380734225183375 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351682355012873, - 3.18722513028491, - 3.5222107358007606, - 4.029972636332023, - 4.626660415726704, - 5.583463942781427, - 6.929872869223122, - 8.32460174819521, - 10.648421241637255, - 12.250081988291685, - 13.453726122308646, - 15.1950154969809, - 16.423908812895952, - 19.197255030318875, - 21.541574290819735, - 22.181487490898178, - 22.752036846066687, - 23.304757268822005, - 23.730238734435343, - 24.09308697813105, - 24.403859631102268, - 24.662656998584477, - 24.855417358810268, - 25.07495776493769, - 25.224857068003622, - 25.298485766282898, - 25.418010597900967 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.451192833164528, - 2.7884199159817205, - 3.045009744976355, - 3.388213286973383, - 3.6177525240467543, - 3.803161096527458, - 4.1064374665068675, - 4.353099196304945, - 5.065136634499911, - 5.937776276596052, - 6.24737703547681, - 6.56431352555139, - 6.9169368406013945, - 7.228135477779803, - 7.52433395711089, - 7.806487283728026, - 8.064796271323296, - 8.271575307894325, - 8.523592945203816, - 8.706186502625675, - 8.799505445381719, - 8.956015180800154 - ], - "5._384._0.0875": [ - 3.492259892522562, - 4.02499113779971, - 4.654069229183809, - 5.667652074333671, - 6.870012400628015, - 8.816925916803745, - 11.444820908612867, - 13.863906418259877, - 17.2799195497609, - 19.33388649371495, - 20.771540255502096, - 22.735493777576256, - 24.064037554654973, - 26.95327512714198, - 29.335658803493455, - 29.980437298477327, - 30.556264080667937, - 31.114267766437493, - 31.54468448095281, - 31.91194068996434, - 32.22716118967833, - 32.49024194829176, - 32.68632464591754, - 32.91007544693902, - 33.06283415787967, - 33.13779857570794, - 33.259307506183745 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.1622431316564747, - 2.50608086906277, - 2.8001348242058364, - 3.14332029531039, - 3.5127185273613915, - 3.8611242435272444, - 4.4560587468806165, - 4.901288107653073, - 5.266384521297974, - 5.862099756813723, - 6.345528225867986, - 7.730673191562352, - 9.344421537297626, - 9.871294039421771, - 10.37671571452222, - 10.898197015561678, - 11.32181991608432, - 11.69568876018916, - 12.025612802971441, - 12.30646010740308, - 12.518149678648244, - 12.760924431543001, - 12.927832034329231, - 13.010349921504195, - 13.144900791930889 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.555323563449639, - 2.851915048120904, - 3.20028697200652, - 3.524582985817725, - 4.0061475810374265, - 4.677431636620153, - 5.366507060018139, - 6.550419411407468, - 7.442007739862414, - 8.173571067591539, - 9.345637152148056, - 10.258042476525493, - 12.583703124741143, - 14.794802314624393, - 15.429341944906044, - 16.00359627707255, - 16.566697532663166, - 17.003894260390354, - 17.378099353729944, - 17.699405010834397, - 17.967187862265067, - 18.166561152310834, - 18.3931262939835, - 18.547773585687064, - 18.623801105438158, - 18.747331591898824 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835167875603251, - 3.1871970332340473, - 3.5219963793381237, - 4.0292573183986, - 4.625417083802035, - 5.580061755676867, - 6.908928956024908, - 8.257174582755383, - 10.45714729846731, - 11.956831121983951, - 13.080260227521178, - 14.703952142703317, - 15.850133080237812, - 18.442211591081847, - 20.63996724704262, - 21.24080332793936, - 21.77712224721099, - 22.297136533390013, - 22.697866258991404, - 23.039725987265545, - 23.332723736206056, - 23.576863051712877, - 23.7587309126388, - 23.965925331509965, - 24.107389716439055, - 24.176863430300248, - 24.289595092941102 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.4511928331586534, - 2.788419833140358, - 3.045004672749363, - 3.388106580854825, - 3.6174560346212763, - 3.802677625137808, - 4.105665017121283, - 4.352117303745774, - 5.063050914451576, - 5.927630245302849, - 6.23051559060011, - 6.538011280816131, - 6.877068695077547, - 7.173809640449952, - 7.454377557473311, - 7.720254288380592, - 7.962774750578319, - 8.156531197434967, - 8.39254670787505, - 8.563658918066503, - 8.651173739546687, - 8.798139195929505 - ], - "5._384._0.0875": [ - 3.491994121227876, - 4.024195684098477, - 4.652712715286709, - 5.663411165763376, - 6.849296403772481, - 8.726014488563347, - 11.203914764051587, - 13.46273423763846, - 16.643939648889514, - 18.5570250805148, - 19.897088868929274, - 21.729933480598035, - 22.97101964829107, - 25.67524580083176, - 27.90947995600626, - 28.514706049338628, - 29.055515035649602, - 29.57984243662673, - 29.98452991151296, - 30.329874616160758, - 30.626395289649054, - 30.87394459174358, - 31.05845358019106, - 31.269019306715425, - 31.41276193460984, - 31.483290661136813, - 31.597572744693917 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.5060808690348386, - 2.800134750291739, - 3.1433083283920293, - 3.5125453321524778, - 3.8606160486375507, - 4.455004494169621, - 4.899763598034077, - 5.264041288668976, - 5.856136600833244, - 6.333028185197497, - 7.675908921555161, - 9.204860329189211, - 9.699437520647447, - 10.17275527722966, - 10.660633419162393, - 11.056971504294644, - 11.40701677894836, - 11.716289951601215, - 11.979962741135541, - 12.17899430279973, - 12.407688560443821, - 12.565127825066762, - 12.643007907707338, - 12.770034694180051 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235633328075, - 2.8519148795441813, - 3.200268273167082, - 3.524412940795934, - 4.005510526889623, - 4.676193349723232, - 5.364076752218477, - 6.536919667239534, - 7.406250671346711, - 8.110249747415187, - 9.224519291331704, - 10.084056266250649, - 12.260788157231465, - 14.327568340722971, - 14.921324129793463, - 15.45952463294007, - 15.987961925730136, - 16.398901795708667, - 16.750975259474895, - 17.053664594012243, - 17.30622749519735, - 17.494383556659248, - 17.708383410079637, - 17.854500737821688, - 17.926333476408328, - 18.04300756395123 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351674557223383, - 3.1871642534734352, - 3.521746183845263, - 4.028359369488893, - 4.622823961147695, - 5.568403302527634, - 6.864526392894679, - 8.15313415224542, - 10.216820542331645, - 11.610320546445527, - 12.651543539634721, - 14.15560003440615, - 15.217886959478331, - 17.62581049661035, - 19.673952429136403, - 20.234775692432414, - 20.735950997891393, - 21.222315936277717, - 21.59750998592424, - 21.91769703611597, - 22.19230610946137, - 22.421256512937777, - 22.591832864085365, - 22.78621887236619, - 22.91893274241945, - 22.984097808586117, - 23.089793288855013 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224729, - 2.4511928331517985, - 2.788419736492105, - 3.044998755151761, - 3.387982085480316, - 3.6171089257385938, - 3.802099572527138, - 4.104594709579011, - 4.350358551913859, - 5.055997338363017, - 5.903004775717815, - 6.195805724677951, - 6.490762261916294, - 6.813370017301491, - 7.093641833348739, - 7.357128791434171, - 7.6057241822135095, - 7.831811086319555, - 8.012179954555672, - 8.231866929129952, - 8.391293144694117, - 8.47290238726229, - 8.610143915611317 - ], - "5._384._0.0875": [ - 3.491686998323261, - 4.0231720641270945, - 4.649586274686791, - 5.649335739952878, - 6.80504854813037, - 8.594029497621863, - 10.91006913274814, - 13.003750403000646, - 15.946668238040617, - 17.717370826218165, - 18.958813382316027, - 20.65896830257715, - 21.811416786631245, - 24.32743456314354, - 26.410329027092597, - 26.975065773267524, - 27.479979035379742, - 27.969742915372798, - 28.34798101255416, - 28.67079343922413, - 28.948065677666165, - 29.17961454998364, - 29.352199519632634, - 29.549177103822075, - 29.68362988172937, - 29.74958988446464, - 29.856434413522166 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125465, - 2.1622431316564765, - 2.506080869002254, - 2.8001346640586284, - 3.1432943669978917, - 3.5123432305253424, - 3.8600108934912334, - 4.45315083353895, - 4.895434307829764, - 5.256065717926038, - 5.838372408726856, - 6.303194666150027, - 7.59033061769632, - 9.026309120891435, - 9.48717063928873, - 9.927409195253212, - 10.380908207747142, - 10.749432007681925, - 11.075204935773908, - 11.363414993985696, - 11.609527120555084, - 11.795577430062714, - 12.009769881919118, - 12.157427092449808, - 12.230510098193756, - 12.34975119449185 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.5553235631964966, - 2.851914682871339, - 3.200246457890357, - 3.5242145215457596, - 4.004731092441716, - 4.6735742062707555, - 5.355717278204832, - 6.504548802583241, - 7.342125035284214, - 8.012255949869113, - 9.061447556358392, - 9.864435497972186, - 11.887177483339055, - 13.806909210284111, - 14.359157213573218, - 14.860567671665379, - 15.353550567027737, - 15.737542643679355, - 16.066851632780807, - 16.350332304530777, - 16.587144201318708, - 16.76367328370745, - 16.964619667679475, - 17.101868101374688, - 17.16933973841309, - 17.278893447741456 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "5_8": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 20.0, - 25.0 - ], - [ - 20.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351692752072397, - 3.1873062996636756, - 3.5228300116499716, - 4.032040248380726, - 4.630197729777157, - 5.5900367196148695, - 6.959466918919208, - 8.431165629619032, - 11.016513561845205, - 12.875798340743232, - 14.30303893549764, - 16.400237093099456, - 17.89736131693401, - 21.29882915936856, - 24.180006772017265, - 24.96602857228584, - 25.664841143623644, - 26.340305879510428, - 26.858514744307456, - 27.299983669680078, - 27.67716180343569, - 27.990561337263422, - 28.223863779528404, - 28.489253311372877, - 28.67048433607842, - 28.759566914926676, - 28.904432117126646 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615422, - 1.4813847491413084, - 1.8198213217004355, - 2.111467924224729, - 2.451192833181503, - 2.788420155301211, - 3.0450243980779184, - 3.3885215520225747, - 3.618609096344806, - 3.804557963972701, - 4.108667564108514, - 4.355907245147609, - 5.069737532482071, - 5.952121913019212, - 6.271090565596982, - 6.602763407652032, - 6.978900069870568, - 7.317843076395118, - 7.646807209651629, - 7.966148327393356, - 8.263643924221123, - 8.505262732583695, - 8.80366827725399, - 9.022460639446457, - 9.135186072054722, - 9.325559119723913 - ], - "5._384._0.0875": [ - 3.4930278495131146, - 4.027291290184815, - 4.657885372208207, - 5.675279738801341, - 6.89930055254186, - 8.967430055572128, - 11.929040745929216, - 14.778894281172104, - 18.923925955344874, - 21.458222744286005, - 23.24276048068518, - 25.685878518164742, - 27.34039997270986, - 30.927331545014606, - 33.87144550068775, - 34.66625840771386, - 35.3745097771422, - 36.05953651264223, - 36.586595667333036, - 37.03607206605586, - 37.42124647210794, - 37.74226451234311, - 37.9814937732909, - 38.254322112390064, - 38.44064573508736, - 38.53213763078866, - 38.68063269652205 - ], - "5._48._0.075": [ - 1.526846324373138, - 1.8679037053125451, - 2.162243131656477, - 2.5060808691434553, - 2.8001350377354495, - 3.143354866420987, - 3.5132188816942658, - 3.862592684304565, - 4.459090584648091, - 4.905287714340043, - 5.271385753812174, - 5.871136008311992, - 6.362761868737102, - 7.816442663471852, - 9.609345457389098, - 10.216347785343006, - 10.807050160555242, - 11.423855779090335, - 11.929632157799421, - 12.378805168139692, - 12.776821145888526, - 13.116376557518889, - 13.372553446871676, - 13.666038156902044, - 13.867780217617952, - 13.967621475369473, - 14.130671896430199 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637871654, - 2.851915535120322, - 3.2003409909132867, - 3.525074239423523, - 4.007988703478171, - 4.680951049570523, - 5.3718214387796035, - 6.56942239841789, - 7.494248925090364, - 8.273376211081237, - 9.560508529720064, - 10.592382932567057, - 13.310964651615267, - 15.972793766591135, - 16.745667990430313, - 17.445777156138362, - 18.132685147965393, - 18.665218414689686, - 19.120659075482465, - 19.510797575810848, - 19.8351092836748, - 20.076257344556122, - 20.34964931339932, - 20.536173885608747, - 20.62793212120299, - 20.777289452681398 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351690611500633, - 3.1872895883063337, - 3.5227025108086627, - 4.031614480604618, - 4.629468662243947, - 5.5886203025198915, - 6.952537207621614, - 8.406181831954527, - 10.92899249709124, - 12.725308519315464, - 14.097349156915788, - 16.10617431209546, - 17.536576389007866, - 20.782381564939016, - 23.531625705976705, - 24.281927101594732, - 24.94950044148828, - 25.59515614993912, - 26.090925040569424, - 26.51339411884206, - 26.8745617899065, - 27.174822461684084, - 27.39837451094348, - 27.652746551701572, - 27.826448541294805, - 27.911815927270617, - 28.05058076639282 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004358, - 2.1114679242247285, - 2.4511928331780073, - 2.7884201060295517, - 3.045021381262723, - 3.3884580853334287, - 3.6184327374941625, - 3.804270350426825, - 4.10820832499834, - 4.355328854564091, - 5.068768745385377, - 5.948816061397907, - 6.26559476118965, - 6.593841203735273, - 6.964500040156359, - 7.296926426499153, - 7.618115137686643, - 7.92852906581103, - 8.216516453065559, - 8.449613114190237, - 8.736605951284158, - 8.946473582725748, - 9.05441907508556, - 9.236484306162584 - ], - "5._384._0.0875": [ - 3.49286971308677, - 4.026817594414848, - 4.657098247009988, - 5.67361163356625, - 6.892446871651873, - 8.93202710172655, - 11.81326334229535, - 14.557027093473277, - 18.5205652051587, - 20.935097512230247, - 22.63330326648608, - 24.957523814929885, - 26.531396228465045, - 29.94665125076321, - 32.75334000376014, - 33.51155290414542, - 34.18755011411423, - 34.8416826607102, - 35.34527913507292, - 35.77480154191614, - 36.143016698990294, - 36.45000075064438, - 36.678779033931384, - 36.93972218194066, - 37.11791534216598, - 37.20540220718309, - 37.34735186096282 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808691268437, - 2.8001349937734696, - 3.143347748837799, - 3.5131158660417277, - 3.862290326759149, - 4.4584660471404005, - 4.904460473408838, - 5.2703341016781176, - 5.869123036569458, - 6.358805798662599, - 7.796401558015725, - 9.546583375855949, - 10.13410590023302, - 10.703920405229729, - 11.297254269756042, - 11.782726628890211, - 12.213284513662586, - 12.5944924423731, - 12.919603768988342, - 13.164882924033094, - 13.446022427857656, - 13.639332892181764, - 13.7349932629084, - 13.891179275677276 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235637176743, - 2.8519154348557403, - 3.200329869369127, - 3.5249730974705344, - 4.007609589513016, - 4.680225615699856, - 5.370700263465807, - 6.56501207729497, - 7.482045697538973, - 8.250048989837492, - 9.509928256991957, - 10.513052186286783, - 13.135241379133586, - 15.68542151779153, - 16.42405081237506, - 17.093125991643483, - 17.749617922763303, - 18.25883745317747, - 18.694489656443537, - 19.067934796552276, - 19.37859456369727, - 19.60968099867273, - 19.871830028964027, - 20.050713016643154, - 20.13870127997519, - 20.281862258784777 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83516882033579, - 3.187270788038405, - 3.522559074142467, - 4.0311355431932805, - 4.628648603784464, - 5.586993226883931, - 6.943524695161556, - 8.371924138308179, - 10.811203225586986, - 12.528759915959991, - 13.834721018977104, - 15.74188379665837, - 17.098145855355963, - 20.17694163901104, - 22.78893190733226, - 23.502512450297743, - 24.138039568867878, - 24.753165265685954, - 25.22595296449976, - 25.628969038271798, - 25.973732524446625, - 26.260518633956135, - 26.474068409399226, - 26.717128531229925, - 26.883101345818094, - 26.96465694792284, - 27.09717022852188 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615424, - 1.4813847491413068, + 1.4813847491413064, 1.8198213217004344, 2.111467924224728, - 2.451192833174076, - 2.7884200505989307, - 3.0450179873457324, - 3.388386685528469, - 3.6182343373388983, - 3.803946799559913, - 4.1076917425565265, - 4.354678277515893, - 5.067669581782807, - 5.944640415024359, - 6.258350282357533, - 6.581750835947998, - 6.944703398620202, - 7.268128232707453, - 7.578835830269274, - 7.877575445573338, - 8.153537615842863, - 8.376205520807634, - 8.649753399015811, - 8.849544062925727, - 8.952255777929032, - 9.125509074184095 + 2.451192833133977, + 2.7884194852066426, + 3.044983369404198, + 3.3876587165849865, + 3.6162237361043794, + 3.8007379836159765, + 4.103129720794652, + 4.350102829372217, + 5.067928120419007, + 5.936077471900313, + 6.232835121445177, + 6.528263994452777, + 6.846458728182723, + 7.118094303455485, + 7.3691373778191585, + 7.601970037069404, + 7.81024240141826, + 7.973996458213108, + 8.170576214330374, + 8.311249417293881, + 8.382568722127301, + 8.501421332908262 ], "5._384._0.0875": [ - 3.4926918267203604, - 4.02628477024866, - 4.656212810247877, - 5.671675375645698, - 6.883549612993978, - 8.883481733972118, - 11.659229199789147, - 14.273942490699023, - 18.031383115825378, - 20.316169006647094, - 21.922848590439987, - 24.12290116812676, - 25.613455079574145, - 28.852668651317746, - 31.519052018281442, - 32.23993483970909, - 32.8829973427463, - 33.505555171561944, - 33.98513282085118, - 34.39422009330012, - 34.74504508771016, - 35.037621461596686, - 35.25566736200562, - 35.50439684461776, - 35.67423507767919, - 35.757607756035874, - 35.89283957194477 + 3.4908888766086696, + 4.0214372858495055, + 4.652182322530747, + 5.674285684119839, + 6.855637238669818, + 8.629119583234898, + 10.812661795538952, + 12.70643432437585, + 15.2907750005773, + 16.819034441384648, + 17.883354114009517, + 19.336025584072246, + 20.318656801322135, + 22.46586188873393, + 24.24738709804333, + 24.73104604652916, + 25.164120466171532, + 25.584719310636363, + 25.9100853134493, + 26.1878801786096, + 26.42674861454247, + 26.626423100504812, + 26.775273825459685, + 26.945246437882762, + 27.061246701378952, + 27.118131538555865, + 27.210197174032988 ], "5._48._0.075": [ 1.5268463243731418, - 1.8679037053125465, - 2.162243131656477, - 2.506080869108155, - 2.800134944316244, - 3.1433397415577056, - 3.512999974377923, - 3.8619501940484917, - 4.457763580825443, - 4.903529014061736, - 5.269138916191418, - 5.86670245656227, - 6.353748191512209, - 7.768881776697129, - 9.46186305407285, - 10.024769566937826, - 10.56897334602297, - 11.13440075211493, - 11.596433462100538, - 12.006026955410684, - 12.368723829128244, - 12.678237948652072, - 12.911933166210542, - 13.180138390017142, - 13.364724226536971, - 13.456094782125914, - 13.605290895285181 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235636394978, - 2.851915322058076, - 3.2003173576347597, - 3.524859313706052, - 4.007183123083013, - 4.679409636532822, - 5.369427600681789, - 6.559425971960656, - 7.465567547246499, - 8.21798610863943, - 9.440741663345895, - 10.406232385930029, - 12.910170054982826, - 15.333971487994383, - 16.03545538652465, - 16.67139196751201, - 17.295819237829434, - 17.780704833538554, - 18.19583805915212, - 18.552060390367057, - 18.848684444238803, - 19.06944726647809, - 19.32007468218811, - 19.491140839622854, - 19.575279790230837, - 19.71212686905244 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835168547412987, - 3.1872494810797063, - 3.5223965148661653, - 4.0305928131333895, - 4.627719759126345, - 5.585098656290256, - 6.931625748567501, - 8.326396936246887, - 10.662090409407817, - 12.287827457443967, - 13.519361534940963, - 15.31526137227633, - 16.592242558288486, - 19.49614957920816, - 21.96675737794538, - 22.642733175101988, - 23.24544223853786, - 23.829306205386867, - 24.278537942596966, - 24.66161011577881, - 24.989536201892424, - 25.26247569293906, - 25.46574374638024, - 25.697166512409034, - 25.855188436970703, - 25.932824780006513, - 26.058917471088186 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.4511928331696193, - 2.788419987777565, - 3.0450141409066123, - 3.3883057660315345, - 3.6180094883757543, - 3.803580126973619, - 4.107106362075011, - 4.353941080086928, - 5.066408846919868, - 5.939205701940276, - 6.248659887843933, - 6.565476304214355, - 6.918222496375909, - 7.230083013801204, - 7.527706330219998, - 7.812298108650953, - 8.074105990133072, - 8.284818714495293, - 8.543376092633343, - 8.732244598554036, - 8.829390971837142, - 8.993449668652447 - ], - "5._384._0.0875": [ - 3.492490244189735, - 4.0256810080298555, - 4.655210126724206, - 5.6693898727552074, - 6.871815130203044, - 8.819609417603068, - 11.466883804459165, - 13.934467763528797, - 17.468416344475962, - 19.616774569802924, - 21.128444146987263, - 23.20067821380637, - 24.605952649804593, - 27.66548879367651, - 30.188795648621454, - 30.871601059294022, - 31.4810291789569, - 32.071308991468186, - 32.52629431828923, - 32.91445098354656, - 33.247444373839066, - 33.525232413396765, - 33.73226016828302, - 33.968444308699176, - 34.129701420106436, - 34.208849911586405, - 34.337189896997074 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.506080869086975, - 2.8001348882647186, - 3.143330666641526, - 3.5128686317022506, - 3.86156473528612, - 4.456967712506227, - 4.902471516831758, - 5.267756753847028, - 5.863675421970375, - 6.347067919274413, - 7.732177004419352, - 9.354119064643344, - 9.888098889175131, - 10.402908917116749, - 10.937031088131313, - 11.37331552996784, - 11.760250833091131, - 12.1032167625973, - 12.396294559379992, - 12.617884593404314, - 12.872668837594222, - 13.048257714943981, - 13.135225161011045, - 13.277278573186482 + 1.8679037053125436, + 2.1622431316564765, + 2.5060808689175356, + 2.8001344398525343, + 3.1432580674775066, + 3.5118195257398965, + 3.858580828981761, + 4.45290162982718, + 4.90113258488081, + 5.269790745706036, + 5.867569878811222, + 6.342998928383726, + 7.630218370919072, + 8.99875736085706, + 9.42340565644545, + 9.823428024995106, + 10.230313584163639, + 10.55748853873308, + 10.844452946620997, + 11.096798341774953, + 11.311336588816863, + 11.473039104576452, + 11.658900755076706, + 11.786782136171931, + 11.849958455775068, + 11.952840272265341 ], "5._96._0.075": [ 2.209271810327403, - 2.555323563550898, - 2.8519151942207284, - 3.200303177672733, - 3.5247303599667297, - 4.006699841448873, - 4.678485426663437, - 5.367968120938165, - 6.552160696745491, - 7.443470067123398, - 8.17528714023652, - 9.351028553165566, - 10.270848535700448, - 12.63896333598115, - 14.92578617289491, - 15.58809085423441, - 16.18937034690555, - 16.780492370828327, - 17.240223558950916, - 17.634205745469036, - 17.972706582566737, - 18.254901959667745, - 18.465057587974677, - 18.703845288078174, - 18.866884983653847, - 18.94707585632017, - 19.07745757832766 + 2.5553235628420947, + 2.851914171521947, + 3.200189738662114, + 3.523700194199995, + 4.00307240574259, + 4.6750093684963225, + 5.370264392484583, + 6.547772192570917, + 7.392978051062503, + 8.055375224431513, + 9.06650934699318, + 9.82044322122481, + 11.660295696221507, + 13.352079239020547, + 13.832184631905527, + 14.266794426624795, + 14.693142242641112, + 15.025019229620597, + 15.309476385248932, + 15.554486436630631, + 15.759353953110262, + 15.912131620872866, + 16.086251572449545, + 16.2051801755, + 16.263612598479668, + 16.35838426983123 ] }, "logtime": [ @@ -28189,8 +1935,16 @@ 2.275, 3.003 ] - }, - "5": { + } + }, + "3_8": { + }, + "3_9": { + }, + "3_10": { + }, + "4_4": { + "1": { "bore_locations": [ [ 0.0, @@ -28209,20 +1963,16 @@ 0.0 ], [ - 20.0, - 0.0 - ], - [ - 20.0, + 15.0, 5.0 ], [ - 20.0, + 15.0, 10.0 ], [ 0.0, - 35.0 + 15.0 ], [ 0.0, @@ -28231,169 +1981,153 @@ [ 0.0, 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 ] ], "g": { "5._192._0.08": [ - 2.8351682355012886, - 3.1872251302849093, - 3.5222107358639363, - 4.029972782513552, - 4.626640476131106, - 5.582053942493779, - 6.912169117856516, - 8.26264417709034, - 10.478044337320485, - 12.003576943122658, - 13.155898645135414, - 14.835373299070952, - 16.03035561395919, - 18.75474307039099, - 21.080752849817944, - 21.71828562511436, - 22.28738963812534, - 22.839204141283858, - 23.264237953661443, - 23.626810143595225, - 23.93740283766205, - 24.196067935080354, - 24.388732912624896, - 24.6081455337736, - 24.75796226908575, - 24.831555687528432, - 24.95103257203199 + 2.835165636239734, + 3.187022207622659, + 3.520662700126178, + 4.024811706360364, + 4.618246492085718, + 5.577602357189488, + 6.930593362977536, + 8.27013730911453, + 10.305799407868758, + 11.592006196271335, + 12.513529975375201, + 13.79808800355458, + 14.678979018204332, + 16.62480215658412, + 18.2488264768942, + 18.690716626034398, + 19.085984722477804, + 19.46983352268822, + 19.76659712159539, + 20.019967202996902, + 20.237708518807462, + 20.41961226179577, + 20.555207696500926, + 20.709951202677345, + 20.81558646499876, + 20.867416249016795, + 20.951344739626176 ], "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.451192833164529, - 2.7884199159817213, - 3.045009744976355, - 3.3882132869740174, - 3.6177525240818875, - 3.803161090545601, - 4.106436739519913, - 4.353089206535257, - 5.064561989799957, - 5.929846676598872, - 6.23296813197663, - 6.5408135725456855, - 6.880561085571785, - 7.17845499773702, - 7.4608739999640745, - 7.729537600976471, - 7.975816821516215, - 8.173672261313587, - 8.416382873493102, - 8.593864123022488, - 8.685254511338746, - 8.839867856179117 + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.451192833122094, + 2.7884193176830028, + 3.0449731122312995, + 3.3874426433772196, + 3.6156114031501847, + 3.7996703668647145, + 4.100882362106419, + 4.346224898925525, + 5.058431311244528, + 5.938205478332148, + 6.2454712872914175, + 6.553322425438452, + 6.885623183027443, + 7.168405190432672, + 7.427814593237117, + 7.66575546132917, + 7.875646469458194, + 8.038201801611946, + 8.229905687023377, + 8.364436565153676, + 8.43170041321568, + 8.542218918216287 ], "5._384._0.0875": [ - 3.492259875188416, - 4.024991477758671, - 4.654031469747726, - 5.665572332736328, - 6.852579039947414, - 8.733295649423269, - 11.234380788097107, - 13.544010991330907, - 16.845319231623805, - 18.85379862576016, - 20.268544791848544, - 22.21070152491387, - 23.52930648969008, - 26.40603247192086, - 28.78346297526418, - 29.427393592420874, - 30.002440619841124, - 30.559689426631685, - 30.98947037176464, - 31.3561685045018, - 31.67086246854102, - 31.933461092290617, - 32.12917055570806, - 32.35246297133068, - 32.50490326700884, - 32.57971296671886, - 32.70097962753248 + 3.490341452425285, + 4.019256693703507, + 4.645242475571041, + 5.663015696969794, + 6.870961396281224, + 8.722045952534526, + 10.968017694918828, + 12.850605315815251, + 15.333821659373363, + 16.76783249479386, + 17.755971993298417, + 19.095372128092308, + 19.99702132365333, + 21.961932120277055, + 23.590345099332236, + 24.032380773467327, + 24.428493817447, + 24.813430064076773, + 25.11149023696463, + 25.366028392849262, + 25.58505101682981, + 25.76825577351642, + 25.904849535939963, + 26.06088890444515, + 26.16737568079158, + 26.21958387181005, + 26.304039577016905 ], "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, - 2.162243131656475, - 2.5060808690627714, - 2.8001348242058364, - 3.1433202953103887, - 3.5127185273808763, - 3.8611242637121594, - 4.456053384686184, - 4.901139835383906, - 5.265677810582627, - 5.858241333302596, - 6.335516451129725, - 7.6804125481926535, - 9.21993874257994, - 9.722190914097423, - 10.205342121508512, - 10.706234414087108, - 11.11550614071586, - 11.478845871566255, - 11.80137286575874, - 12.077480471186654, - 12.28659118775596, - 12.527543181582503, - 12.693864437962286, - 12.776301467256078, - 12.911016767302467 + 1.5268463243731403, + 1.8679037053125447, + 2.1622431316564747, + 2.5060808688610523, + 2.800134290381807, + 3.1432338676191445, + 3.51146772321088, + 3.8574550748275773, + 4.448646633722987, + 4.892881358644619, + 5.259328855039348, + 5.860557995824219, + 6.346883434753211, + 7.687273576885126, + 9.101118153759293, + 9.529338705689813, + 9.927289641778144, + 10.326192135238777, + 10.642615140692383, + 10.916900159028845, + 11.15566961322875, + 11.356928805832112, + 11.507619363301462, + 11.67983744328869, + 11.797719211064464, + 11.855743645066019, + 11.949922092002977 ], "5._96._0.075": [ - 2.2092718103274054, - 2.5553235634496407, - 2.851915048120906, - 3.200286972006516, - 3.524582985831382, - 4.006147662986756, - 4.677410429895274, - 5.365814562026033, - 6.539694409944456, - 7.409950972959052, - 8.11539168475236, - 9.235191521526195, - 10.103379844331736, - 12.324864630920196, - 14.468856792576602, - 15.090799980492083, - 15.656437630883755, - 16.213354742463107, - 16.647250351035467, - 17.019501858791955, - 17.339774629364783, - 17.607108170237424, - 17.806329871184793, - 18.032896605402897, - 18.187649767736396, - 18.26376660307895, - 18.38748536400978 + 2.209271810327404, + 2.5553235626058273, + 2.8519138306223555, + 3.2001519249819794, + 3.523354932375397, + 4.001549412014162, + 4.669089316628495, + 5.359101946268944, + 6.552379489671893, + 7.429815477491777, + 8.121820314543074, + 9.173143912712952, + 9.946213029499233, + 11.781039134458084, + 13.403268695619028, + 13.854454372473098, + 14.260003929688882, + 14.655669234316463, + 14.962475413080817, + 15.224731293240202, + 15.450225154706388, + 15.638568709166531, + 15.778910465988814, + 15.938820677805234, + 16.047959625600665, + 16.1015379064994, + 16.188353466015815 ] }, "logtime": [ @@ -28426,7 +2160,7 @@ 3.003 ] }, - "6": { + "2": { "bore_locations": [ [ 0.0, @@ -28445,16 +2179,12 @@ 0.0 ], [ - 20.0, - 0.0 - ], - [ - 20.0, + 15.0, 5.0 ], [ 0.0, - 35.0 + 15.0 ], [ 0.0, @@ -28463,169 +2193,153 @@ [ 0.0, 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 ] ], "g": { "5._192._0.08": [ - 2.83516787560327, - 3.187197033330878, - 3.5219962702287444, - 4.029198794040404, - 4.62434004419294, - 5.571438695634637, - 6.871364620036569, - 8.166428981961023, - 10.25317939573662, - 11.676915250722683, - 12.749704360781696, - 14.312606423063015, - 15.42540274101135, - 17.968767053339548, - 20.14766786403551, - 20.74590065035735, - 21.280545079135436, - 21.799413663994734, - 22.19949749530918, - 22.540911236702122, - 22.83357875639784, - 23.077457641434304, - 23.259135014777666, - 23.466092841912523, - 23.607400864036418, - 23.6768034244855, - 23.789430321351656 + 2.8351647264993423, + 3.186951185113044, + 3.520120762095406, + 4.022908840457471, + 4.613192189018059, + 5.553357119545568, + 6.836941764565307, + 8.072417777476293, + 9.917034103843235, + 11.073390796484931, + 11.900087116780503, + 13.051737859601054, + 13.84151299956939, + 15.58897243519494, + 17.050915239385326, + 17.44916920093101, + 17.805773444528953, + 18.152349245604196, + 18.42056433245828, + 18.649624669380906, + 18.846603680143236, + 19.011257479437973, + 19.134008158091746, + 19.27413530400662, + 19.369785226120584, + 19.41670551318206, + 19.49264845544399 ], "5._24._0.075": [ - 0.8740059532267966, + 0.8740059532267965, 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.451192833158654, - 2.788419833140358, - 3.0450046727495925, - 3.388106575721871, - 3.617454912961281, - 3.802664653391903, - 4.105507945291275, - 4.351540095621734, - 5.058163934337005, - 5.907262118344879, - 6.201060310477912, - 6.497274844964239, - 6.821688845638673, - 7.10413426024912, - 7.370422632779881, - 7.622649281369087, - 7.853184048131894, - 8.03812777343143, - 8.264982109446088, - 8.431044315639914, - 8.51664284663936, - 8.661698687076798 + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247267, + 2.451192833107242, + 2.7884191082784517, + 3.044960290773892, + 3.3871729161976023, + 3.6148602890949224, + 3.798427780692208, + 4.098671421766258, + 4.342760701025555, + 5.044196907034894, + 5.885761165493484, + 6.173109241648802, + 6.458187213329125, + 6.763304769544556, + 7.021219579646446, + 7.256751563518459, + 7.472114549141299, + 7.661736239898098, + 7.808486494653682, + 7.981608972488866, + 8.103176704421157, + 8.1639743328458, + 8.263914864157965 ], "5._384._0.0875": [ - 3.4919967730219934, - 4.024107567151913, - 4.651245744362634, - 5.65273673718302, - 6.811922099528438, - 8.610973645408887, - 10.958625192011533, - 13.109036433266299, - 16.177627963673835, - 18.045988858391404, - 19.36340409480691, - 21.174492236267756, - 22.405522425783914, - 25.096627970505246, - 27.325197663423587, - 27.929362479000382, - 28.469195157917127, - 28.992570862623182, - 29.396465215952343, - 29.741117298271583, - 30.036993864053233, - 30.283961433379723, - 30.468023129770735, - 30.67804569442607, - 30.821412507215257, - 30.89175865642795, - 31.0057542400544 + 3.4896748046623505, + 4.0171018504542335, + 4.6391649603613345, + 5.633334582359261, + 6.777423354182605, + 8.48011743093466, + 10.508676150536084, + 12.196848641332405, + 14.418505687057298, + 15.700982948369044, + 16.585012703238007, + 17.784388376412807, + 18.59237334378901, + 20.356297930357258, + 21.820925841542255, + 22.218835703293472, + 22.575624522310008, + 22.922522909474765, + 23.191302577308537, + 23.42086333314305, + 23.61846985157123, + 23.783815779548103, + 23.907095834432504, + 24.04794453869986, + 24.14405292279984, + 24.19116378321505, + 24.267345824271224 ], "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.506080869034839, - 2.8001347502917415, - 3.143308328399102, - 3.5125452921342157, - 3.8606046979946425, - 4.454422443584657, - 4.897247846519907, - 5.258438205447511, - 5.8419943256507185, - 6.308139326475674, - 7.601288737198463, - 9.053023339731885, - 9.52300494352351, - 9.974284956333625, - 10.441857927564534, - 10.82405043694022, - 11.163679950971792, - 11.465586637655631, - 11.724484968572707, - 11.92087459022065, - 12.147634265437976, - 12.304397783712364, - 12.382150947824549, - 12.509268145920466 + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.506080868790454, + 2.8001341035433973, + 3.143203617967474, + 3.511029904247479, + 3.856152805478866, + 4.444974647594222, + 4.884466201927085, + 5.243246979981296, + 5.8227560139656775, + 6.283297777362145, + 7.524103840428952, + 8.807945512182934, + 9.194384924931446, + 9.553166658512048, + 9.912687850486941, + 10.197983773814087, + 10.445428388178932, + 10.661051157114642, + 10.843018763232672, + 10.979390883733371, + 11.135467248125636, + 11.242381692801242, + 11.295016290117196, + 11.380439148692652 ], "5._96._0.075": [ 2.2092718103274045, - 2.5553235633328057, - 2.8519148795441804, - 3.2002682731925205, - 3.5244129074144133, - 4.0054770910391575, - 4.675085456535995, - 5.358227725862137, - 6.509992904573515, - 7.350857628733763, - 8.024752618822854, - 9.083376252541932, - 9.897868849378614, - 11.971160391153468, - 13.971665049878467, - 14.552893959649786, - 15.082406186668544, - 15.60451190389581, - 16.011982070515547, - 16.361934991138586, - 16.66342697319344, - 16.915391038411418, - 17.103282575262956, - 17.317152415698466, - 17.46328606927267, - 17.535164496060446, - 17.651958347251508 + 2.5553235623104933, + 2.8519134044978625, + 3.2001046586465205, + 3.522925086582346, + 3.9998856532802853, + 4.663987000362338, + 5.342182722576681, + 6.4831737142367984, + 7.300051390954155, + 7.935454728449091, + 8.891221455834549, + 9.589548472760537, + 11.240752602456341, + 12.699955368817093, + 13.106043498915271, + 13.471550686224996, + 13.828500722672317, + 14.10565082229637, + 14.342706531216326, + 14.546746378452665, + 14.717337608943652, + 14.844505073188188, + 14.989509482128286, + 15.088491705043397, + 15.137077502637203, + 15.215769375587161 ] }, "logtime": [ @@ -28659,8 +2373,8 @@ ] } }, - "6_6": { - "1": { + "4_5": { + "2": { "bore_locations": [ [ 0.0, @@ -28679,32 +2393,16 @@ 0.0 ], [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 25.0, + 15.0, 5.0 ], [ - 25.0, + 15.0, 10.0 ], - [ - 25.0, - 15.0 - ], - [ - 25.0, - 20.0 - ], [ 0.0, - 25.0 + 20.0 ], [ 0.0, @@ -28717,157 +2415,153 @@ [ 0.0, 15.0 - ], - [ - 0.0, - 20.0 ] ], "g": { "5._192._0.08": [ - 2.8351685474129877, - 3.1872494810797085, - 3.5223965148661844, - 4.030592811656449, - 4.627714361246171, - 5.584140222750663, - 6.918061687061552, - 8.290355577090926, - 10.610082119673034, - 12.244628402545722, - 13.48905336568867, - 15.3074520795651, - 16.599550563347986, - 19.52876103898667, - 22.009314786854148, - 22.6865092018802, - 23.289702737651364, - 23.873648515838408, - 24.32269866914527, - 24.705502830772286, - 25.033105894680233, - 25.305718454120736, - 25.50872247747098, - 25.739823951944064, - 25.89761460786285, - 25.975133842399586, - 26.1010358549801 + 2.8351663640324896, + 3.187079025855097, + 3.5210961280230464, + 4.026256801080415, + 4.620679596130408, + 5.581342227156848, + 6.943112631117537, + 8.3119061968232, + 10.437615443796641, + 11.805968769447427, + 12.795931741961128, + 14.185816514269026, + 15.144100752774316, + 17.26865417032703, + 19.045229973117674, + 19.528819270594727, + 19.96107115280859, + 20.380604312268346, + 20.70466083731581, + 20.98126901903915, + 21.218816320474723, + 21.417137287655024, + 21.564947879714698, + 21.73356300587548, + 21.848673489949775, + 21.905165277405725, + 21.996689417861297 ], "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413066, - 1.8198213217004349, - 2.1114679242247285, - 2.4511928331696184, - 2.788419987777567, - 3.045014140906611, - 3.388305766031536, - 3.618009488375746, - 3.803580126959415, - 4.107106339047922, - 4.353940144973575, - 5.066087886458091, - 5.933132928810665, - 6.238207730715223, - 6.549862486975425, - 6.89708184384569, - 7.205092455007118, - 7.500540049255561, - 7.784673334424664, - 8.047494575048605, - 8.259906500253773, - 8.521280437622925, - 8.712254948445805, - 8.810346000761752, - 8.975546005165267 + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.451192833133975, + 2.7884194852066417, + 3.044983369398643, + 3.3876584208449128, + 3.6162108734136047, + 3.8006476284261015, + 4.102439785864223, + 4.3481743258226935, + 5.061270999247916, + 5.9447576180517485, + 6.255824443290809, + 6.569549262699487, + 6.910884687344959, + 7.203860980226212, + 7.474829914695701, + 7.725368144099679, + 7.948050522229073, + 8.121647028551868, + 8.327650099025401, + 8.473069945656743, + 8.546070023645806, + 8.666454143188732 ], "5._384._0.0875": [ - 3.4924902440842334, - 4.025681002944053, - 4.65519760000662, - 5.667878936320498, - 6.8584047491212345, - 8.77585092097882, - 11.414550125624526, - 13.904004108851833, - 17.481960817629123, - 19.652415109417635, - 21.175935155401216, - 23.259810231923577, - 24.670308023726395, - 27.735125331270456, - 30.25869190995757, - 30.941138655171642, - 31.550146803945236, - 32.13993959408101, - 32.594503538059826, - 32.98228706724444, - 33.31494900309519, - 33.59245597228586, - 33.79927514282707, - 34.03522489602005, - 34.19632350028283, - 34.27539467752157, - 34.40361145943094 + 3.4908783986811023, + 4.0208629086587555, + 4.647845957178613, + 5.667156867053966, + 6.883390991621373, + 8.779441562788344, + 11.137539539318718, + 13.153520996798933, + 15.848687597244828, + 17.416971545953995, + 18.50067665547721, + 19.971432282122446, + 20.962238600786442, + 23.11998407238362, + 24.906027031814602, + 25.39053284565908, + 25.824397830204305, + 26.2457760431702, + 26.571799833918924, + 26.85017140979974, + 27.089580764047856, + 27.28974768659247, + 27.43897869190371, + 27.609416113730724, + 27.725739368315388, + 27.782781485012812, + 27.875094586767542 ], "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125458, - 2.1622431316564743, - 2.506080869086975, - 2.800134888264721, - 3.1433306666415235, - 3.5128686317022493, - 3.861564735288435, - 4.4569666138242, - 4.90242107152987, - 5.267391343048841, - 5.86090294040104, - 6.339557581151294, - 7.7029822520230935, - 9.314357337639127, - 9.850480698544585, - 10.36952295025419, - 10.909483040664316, - 11.351169515513913, - 11.742796132124422, - 12.089583885487999, - 12.385446224483859, - 12.608696691195538, - 12.864817634520552, - 13.04095751355361, - 13.128084114846052, - 13.27021845572316 + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.506080868917536, + 2.8001344398525374, + 3.143258067360414, + 3.511817936630581, + 3.8584822442261126, + 4.450749723549048, + 4.8955487977683045, + 5.2624184546734085, + 5.865189593370569, + 6.354811377674212, + 7.721374527012855, + 9.197553106076711, + 9.651881985036304, + 10.076753245376496, + 10.50504496042398, + 10.846271743861031, + 11.143043320858995, + 11.401993276463116, + 11.620613290765638, + 11.78448197622543, + 11.971839724079764, + 12.100177919593024, + 12.163399901545597, + 12.266104330035484 ], "5._96._0.075": [ 2.209271810327403, - 2.5553235635508984, - 2.8519151942207284, - 3.2003031776727306, - 3.5247303599667292, - 4.006699841231027, - 4.6784793790260215, - 5.367571004857667, - 6.543782826656962, - 7.421467633844777, - 8.141580510969167, - 9.304802974817639, - 10.222525602077718, - 12.609709440561087, - 14.92379254624852, - 15.592660291861653, - 16.19877951181794, - 16.793582046994793, - 17.25540770111174, - 17.650615126381812, - 17.98975875069552, - 18.272201559087815, - 18.482392727366864, - 18.721061577717897, - 18.883937536313518, - 18.964022464863927, - 19.09420277513519 + 2.5553235628420974, + 2.85191417152195, + 3.2001897381139464, + 3.52369877575152, + 4.002836709034522, + 4.671507621026489, + 5.3623523958800625, + 6.5608116580657425, + 7.451349226135013, + 8.161408662969507, + 9.253641844400866, + 10.066866858982916, + 12.02528106121994, + 13.781310517260053, + 14.272509409273658, + 14.714493448326069, + 15.14603465003867, + 15.480665262111376, + 15.76675572180131, + 16.012645594548598, + 16.217916740710585, + 16.370845171140513, + 16.544997925700372, + 16.663859571792273, + 16.722227495861578, + 16.816856530786318 ] }, "logtime": [ @@ -28900,7 +2594,7 @@ 3.003 ] }, - "2": { + "3": { "bore_locations": [ [ 0.0, @@ -28919,28 +2613,12 @@ 0.0 ], [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 25.0, + 15.0, 5.0 ], - [ - 25.0, - 10.0 - ], - [ - 25.0, - 15.0 - ], [ 0.0, - 25.0 + 20.0 ], [ 0.0, @@ -28953,157 +2631,153 @@ [ 0.0, 15.0 - ], - [ - 0.0, - 20.0 ] ], "g": { "5._192._0.08": [ - 2.835168235501288, - 3.187225130284912, - 3.5222107358007633, - 4.029972634716741, - 4.626654941510988, - 5.582365843376841, - 6.911936516450208, - 8.266572816050711, - 10.517813790901615, - 12.08195630628225, - 13.2649472935055, - 14.985989642844942, - 16.205622486681346, - 18.967982117176128, - 21.308649666993194, - 21.94807232071998, - 22.518176162263448, - 23.07049149936099, - 23.495642807119967, - 23.85819398499391, - 24.168682614351805, - 24.427215051354075, - 24.619765812174965, - 24.83904252651611, - 24.988756230871157, - 25.062294304646596, - 25.18167654227643 + 2.8351656362397586, + 3.1870222077625265, + 3.520662542462161, + 4.024725277625346, + 4.6164449457051955, + 5.559562301356887, + 6.854561927969589, + 8.120447900048557, + 10.055027159587599, + 11.293184233597465, + 12.188168530628072, + 13.44527637833843, + 14.31280639256918, + 16.240881996543386, + 17.858017819727984, + 18.2988286039526, + 18.69325791174862, + 19.07639207395043, + 19.37262662305555, + 19.625559559503333, + 19.842912486664606, + 20.024473426844295, + 20.159806725278344, + 20.314229974812832, + 20.419643910451875, + 20.471366570947602, + 20.55512695097287 ], "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.1114679242247285, - 2.4511928331645287, - 2.7884199159817205, - 3.045009744976354, - 3.3882132869733823, - 3.617752524046741, - 3.8031610965124254, - 4.106437442583411, - 4.35309815866109, - 5.064772945735825, - 5.930012603257466, - 6.233140547165058, - 6.541494487928723, - 6.8830720965925005, - 7.184074914267886, - 7.470931133040509, - 7.745066050105375, - 7.997181964464276, - 8.200000806762334, - 8.448585951095053, - 8.62967112419876, - 8.722523781240746, - 8.87872166961579 + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.451192833122094, + 2.7884193176830028, + 3.0449731122316335, + 3.3874426359626373, + 3.615609781338652, + 3.7996515176094663, + 4.100646660046628, + 4.345307621318644, + 5.048678100564503, + 5.895766901113474, + 6.187380376051302, + 6.4786400855583235, + 6.79296162577209, + 7.06110990306807, + 7.308183302247539, + 7.536108766536005, + 7.738506630386754, + 7.896321762757711, + 8.083851340310042, + 8.216459592889546, + 8.283096451816174, + 8.393124312240852 ], "5._384._0.0875": [ - 3.4922598925323394, - 4.024991130445897, - 4.654056319902517, - 5.665900219074103, - 6.852335139010997, - 8.74136455228804, - 11.29115505303874, - 13.662442100879062, - 17.04233496360507, - 19.08505173530278, - 20.517533731453568, - 22.476843236076107, - 23.80324285554618, - 26.689025930422964, - 29.068928329196435, - 29.713033980065592, - 30.28818141860292, - 30.8454746986736, - 31.275283264838677, - 31.642002366645702, - 31.95672748150394, - 32.21936757112262, - 32.41511435757952, - 32.638465600244224, - 32.79094926872409, - 32.86577983660896, - 32.98707786540897 + 3.4903452786224256, + 4.019124865882309, + 4.642710893735971, + 5.64029173843186, + 6.795006074396598, + 8.544031062865198, + 10.684327333208312, + 12.50532190359343, + 14.938880153800072, + 16.35608654578909, + 17.33622230796111, + 18.66804850109008, + 19.56611746845016, + 21.525574457478477, + 23.150610404022757, + 23.59181021466942, + 23.98711759947602, + 24.371231143615073, + 24.668599501471192, + 24.92253152951065, + 25.14099835946385, + 25.32370979150895, + 25.4599275558376, + 25.61551875230526, + 25.7216968242016, + 25.773754741589535, + 25.857973142820374 ], "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125451, + 1.5268463243731403, + 1.8679037053125447, 2.1622431316564747, - 2.5060808690627696, - 2.800134824205838, - 3.14332029531039, - 3.5127185273613932, - 3.861124243510543, - 4.456057644644423, - 4.901231524411675, - 5.265958172372358, - 5.858702768371778, - 6.335794314578913, - 7.683748963654632, - 9.247995469760264, - 9.762245638224883, - 10.257790273443888, - 10.77143011212698, - 11.19048091319974, - 11.561484174889552, - 11.889753803401739, - 12.169774987563516, - 12.381121173961972, - 12.623776826354845, - 12.790739003647644, - 12.87332738581507, - 13.008041869862234 + 2.5060808688610523, + 2.800134290381807, + 3.143233867629361, + 3.511467665393575, + 3.8574385634398944, + 4.447714789606452, + 4.888302448821012, + 5.248167997117308, + 5.830508297092652, + 6.295296586288774, + 7.56361887389745, + 8.90982360494905, + 9.322335114881888, + 9.708057004364308, + 10.09708949939826, + 10.407398184140611, + 10.677608220924602, + 10.913749061747826, + 11.113444149598129, + 11.263320515047692, + 11.434978919057615, + 11.552688041368015, + 11.610695030571737, + 11.704935810859379 ], "5._96._0.075": [ - 2.2092718103274054, - 2.55532356344964, - 2.8519150481209032, - 3.20028697200652, - 3.5245829858177236, - 4.006147580710548, - 4.6774254776815365, - 5.366058857474374, - 6.539743553484839, - 7.410347209629118, - 8.119196661697641, - 9.253027560730573, - 10.138793005810042, - 12.417800315361143, - 14.608866455829881, - 15.240628116462835, - 15.81323128010154, - 16.37530700952727, - 16.812062584925076, - 17.186013265631264, - 17.507198663975746, - 17.774925722568042, - 17.974262625092386, - 18.200779375463416, - 18.355397684465625, - 18.43141496716221, - 18.554933016392738 + 2.2092718103274045, + 2.5553235626058277, + 2.851913830622356, + 3.200151925018721, + 3.5233548841477056, + 4.001500388394046, + 4.667227780746542, + 5.3473600962024905, + 6.496001656505285, + 7.327146079181405, + 7.981025431062503, + 8.977774653538907, + 9.716112080638158, + 11.490796485403289, + 13.084823547615835, + 13.531443597883513, + 13.93399452961531, + 14.327530265190676, + 14.633154342086335, + 14.89465024576998, + 15.1196599568755, + 15.307696682750466, + 15.447851464430137, + 15.607576325531452, + 15.716613494272394, + 15.770152218969342, + 15.85691750463027 ] }, "logtime": [ @@ -29135,8 +2809,10 @@ 2.275, 3.003 ] - }, - "3": { + } + }, + "4_6": { + "4": { "bore_locations": [ [ 0.0, @@ -29155,21 +2831,9 @@ 0.0 ], [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 25.0, + 15.0, 5.0 ], - [ - 25.0, - 10.0 - ], [ 0.0, 25.0 @@ -29193,149 +2857,149 @@ ], "g": { "5._192._0.08": [ - 2.8351678756032506, - 3.187197033234046, - 3.5219963793381184, - 4.0292573173269055, - 4.625413507913837, - 5.579360755508458, - 6.897906936615181, - 8.222720380227667, - 10.382937350454533, - 11.86344318095377, - 12.976850099278726, - 14.591318360106637, - 15.733583453934115, - 18.32146124814001, - 20.517938334588, - 21.11860314693513, - 21.654732567305672, - 22.17455591263124, - 22.575116321180126, - 22.916817539632397, - 23.209659378342188, - 23.45365114780809, - 23.635401607638528, - 23.84244824414616, - 23.983808104272214, - 24.05323050585271, - 24.165880983780117 + 2.8351663640325118, + 3.1870790259809763, + 3.5210959861223587, + 4.026178988521359, + 4.619049732684816, + 5.564386056821893, + 6.865229334071739, + 8.146934182345795, + 10.139826035463237, + 11.439632638907808, + 12.389991078308185, + 13.737513012184142, + 14.674635962011365, + 16.77062042438686, + 18.53628582338796, + 19.01824608680174, + 19.449291036641398, + 19.86784597612683, + 20.191212613537253, + 20.46726545426784, + 20.70432976501326, + 20.902228986375412, + 21.049718360720323, + 21.217939821363466, + 21.332779417447323, + 21.389140895462422, + 21.480461862379464 ], "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247294, - 2.451192833158654, - 2.788419833140359, - 3.0450046727493625, - 3.3881065808548247, - 3.6174560346212705, - 3.802677625127374, - 4.10566500081076, - 4.352116604310975, - 5.06281629223933, - 5.922800658963917, - 6.221768357941125, - 6.524181494579025, - 6.85685401094193, - 7.14785418100855, - 7.42329381195661, - 7.6848894895833535, - 7.924204422065353, - 8.115979093427722, - 8.350354466090252, - 8.520794334343224, - 8.608116850856167, - 8.75497869247201 + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331339767, + 2.7884194852066435, + 3.0449833693989405, + 3.3876584141717525, + 3.6162094137740954, + 3.8006306635346228, + 4.1022275270280115, + 4.34734641579633, + 5.052220559169416, + 5.902283292465463, + 6.195875587548563, + 6.490198662815166, + 6.809494939541353, + 7.08373433864319, + 7.33825328861699, + 7.574913729471517, + 7.786813574393382, + 7.9533373824498135, + 8.152862813036988, + 8.295172244350077, + 8.367119416715457, + 8.486620784644476 ], "5._384._0.0875": [ - 3.4919941212384034, - 4.024195679088714, - 4.652704305074951, - 5.66229774428356, - 6.838423729270405, - 8.681624826573678, - 11.117484203467635, - 13.352612525344206, - 16.517672086709997, - 18.426255204891785, - 19.7643548416468, - 21.595504302754975, - 22.83580670021645, - 25.538610228306386, - 27.77163297871546, - 28.376507042307804, - 28.916956032474136, - 29.440903560831263, - 29.84526486174052, - 30.190321057902928, - 30.4865758728581, - 30.733889048169253, - 30.918218172663828, - 31.12857038911264, - 31.27216609628944, - 31.342623297050814, - 31.456792574013075 + 3.490881843490933, + 4.020744190378673, + 4.6455507369189, + 5.6456162497235844, + 6.805701852469171, + 8.579775438884196, + 10.7958753302268, + 12.721802949934933, + 15.34003917006757, + 16.881391897332673, + 17.95212124996099, + 19.410619017845786, + 20.395698431335255, + 22.545124100827895, + 24.326442077342126, + 24.80983613391418, + 25.24263553790218, + 25.66293250539065, + 25.98804746466618, + 26.265623063695553, + 26.504300662233362, + 26.70381615554619, + 26.852549978777425, + 27.02239302015432, + 27.1383065610374, + 27.19514929797835, + 27.287147913124493 ], "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125447, - 2.1622431316564743, - 2.5060808690348377, - 2.800134750291741, - 3.143308328392029, - 3.512545332152475, - 3.8606160486257077, - 4.455003765622254, - 4.899726380403744, - 5.263764232558448, - 5.853979674467659, - 6.326957866335037, - 7.647989147068824, - 9.149800355087564, - 9.637870117204775, - 10.106248206666853, - 10.59035174449623, - 10.984604086309986, - 11.333413876013694, - 11.642033275309593, - 11.905425620615986, - 12.104367023530324, - 12.333069619775559, - 12.490565879173854, - 12.568490634140915, - 12.695606100990457 + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.5060808689175356, + 2.800134439852535, + 3.1432580673696107, + 3.5118178845942074, + 3.8584673823959803, + 4.449908650940928, + 4.891367829027392, + 5.252037626761025, + 5.8360702118053025, + 6.302926359252817, + 7.585418101497831, + 8.972076453933258, + 9.403988173666447, + 9.810804563325926, + 10.224067284658947, + 10.55573813852613, + 10.845996040424307, + 11.100663204079385, + 11.316692633979722, + 11.479200442668107, + 11.665619484440226, + 11.793666325374954, + 11.856856917236017, + 11.959662996987694 ], "5._96._0.075": [ - 2.2092718103274045, - 2.5553235633328066, - 2.85191487954418, - 3.200268273167086, - 3.5244129407959393, - 4.005510526672377, - 4.676189323200988, - 5.363788386868529, - 6.5302904595370554, - 7.387074310567693, - 8.077930446998046, - 9.170904741923847, - 10.016193516318099, - 12.169533901138871, - 14.227465997412715, - 14.820160350180911, - 15.357778162112949, - 15.885894488173262, - 16.296727444158087, - 16.648742700709942, - 16.951410803182466, - 17.20396367522425, - 17.392107168098903, - 17.60608081911169, - 17.752177950304407, - 17.824001416439287, - 17.9406608493037 + 2.2092718103274036, + 2.555323562842096, + 2.8519141715219485, + 3.200189738147014, + 3.523698732345956, + 4.002792577614734, + 4.669822998615447, + 5.351451583019225, + 6.504273254993608, + 7.34236886935079, + 8.00621496865868, + 9.02817982321098, + 9.794047336380968, + 11.664929431464587, + 13.376910168907761, + 13.860748265729352, + 14.297853859181243, + 14.725931072481712, + 15.058665870110621, + 15.343563798028175, + 15.58872793821681, + 15.793571618341714, + 15.94625844067304, + 16.120195575766346, + 16.238955766258172, + 16.297292041193245, + 16.391893056910394 ] }, "logtime": [ @@ -29367,8 +3031,18 @@ 2.275, 3.003 ] - }, - "4": { + } + }, + "4_7": { + }, + "4_8": { + }, + "4_9": { + }, + "4_10": { + }, + "5_5": { + "3": { "bore_locations": [ [ 0.0, @@ -29391,16 +3065,12 @@ 0.0 ], [ - 25.0, - 0.0 - ], - [ - 25.0, + 20.0, 5.0 ], [ 0.0, - 25.0 + 20.0 ], [ 0.0, @@ -29413,157 +3083,153 @@ [ 0.0, 15.0 - ], - [ - 0.0, - 20.0 ] ], "g": { "5._192._0.08": [ - 2.835167455722338, - 3.1871642534734343, - 3.521746183845265, - 4.028359369041448, - 4.622822482434019, - 5.568110170935008, - 6.860114507972074, - 8.140296600267254, - 10.19237726948658, - 11.581996427495334, - 12.622003619464516, - 14.125946778063422, - 15.188736416121062, - 17.598138178518393, - 19.647017310543724, - 20.207941862804287, - 20.709144315409375, - 21.195495932643766, - 21.5706501601108, - 21.890787970397742, - 22.165340287685687, - 22.394232911771752, - 22.56476190317057, - 22.75908792412443, - 22.89175841550086, - 22.95690171381592, - 23.062562049011294 + 2.8351663640325113, + 3.1870790259809727, + 3.521095986066066, + 4.026177643506365, + 4.61888550527475, + 5.560524909054289, + 6.846233842334554, + 8.112583382303718, + 10.093123447605226, + 11.390821763471273, + 12.341180847819523, + 13.689790154770082, + 14.627832321306306, + 16.725367492115954, + 18.491438715885913, + 18.973383778484628, + 19.404346540100725, + 19.822777232172758, + 20.146013799088156, + 20.421940179172047, + 20.65887943462162, + 20.856662370095307, + 21.00406069335515, + 21.172171718469528, + 21.286933687818888, + 21.343256805284355, + 21.4345164536736 ], "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615422, - 1.4813847491413066, + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, 1.8198213217004344, - 2.111467924224729, - 2.451192833151798, - 2.788419736492105, - 3.0449987551517608, - 3.3879820854803158, - 3.617108925738591, - 3.8020995725220432, - 4.1045947020010125, - 4.350358233397575, - 5.055897864018083, - 5.901031435933705, - 6.1923054568926235, - 6.4853892528925385, - 6.8057919851358415, - 7.084236565486805, - 7.3462380745979345, - 7.593741869634274, - 7.819151484892813, - 7.999210011470592, - 8.218782262993555, - 8.378261959423554, - 8.459923325517641, - 8.597262308111468 + 2.111467924224728, + 2.451192833133975, + 2.7884194852066413, + 3.0449833693989414, + 3.3876584141713875, + 3.61620941246458, + 3.8006305788529957, + 4.10222123375797, + 4.347288432367357, + 5.050371575186146, + 5.891791206708273, + 6.181510390521909, + 6.4721326890698325, + 6.787981319660684, + 7.059922600798694, + 7.312933243777524, + 7.548732519484772, + 7.760272672725568, + 7.926745370701878, + 8.126411365877543, + 8.268882851776267, + 8.340915143893158, + 8.46053889796503 ], "5._384._0.0875": [ - 3.4916869983347407, - 4.023172061806123, - 4.649582794614773, - 5.648871822726241, - 6.80068844615851, - 8.577887630286671, - 10.882515562018003, - 12.972467832974456, - 15.915620453135176, - 17.68734602929525, - 18.929470194880057, - 20.630374480103875, - 21.783168263914195, - 24.299436970510452, - 26.38213317533995, - 26.946768210762006, - 27.45156933435985, - 27.941208634844866, - 28.31933766833771, - 28.64205272989215, - 28.919235503718834, - 29.150705493718498, - 29.323230590645295, - 29.520137897366904, - 29.654542397566953, - 29.720478843262327, - 29.82728605737563 + 3.4908818412596445, + 4.020741025155857, + 4.645275889918925, + 5.640508586510151, + 6.786684372538143, + 8.54055920528448, + 10.746041309441212, + 12.670796140756103, + 15.291202850402206, + 16.833906921134826, + 17.90533837816917, + 19.36445366313152, + 20.3497450530167, + 22.499045351507238, + 24.27980546327062, + 24.762995235382103, + 25.195588225634555, + 25.615666267925814, + 25.940596272570925, + 26.218009385818206, + 26.456540238133748, + 26.65592801625773, + 26.804565583566333, + 26.974296493291742, + 27.090133464134905, + 27.146938961512667, + 27.238878671827738 ], "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125465, + 1.5268463243731418, + 1.8679037053125436, 2.1622431316564765, - 2.506080869002254, - 2.8001346640586284, - 3.14329436699789, - 3.512343230525338, - 3.8600108934850286, - 4.453150524125276, - 4.895418065290395, - 5.255945627241403, - 5.8374644089825125, - 6.300707609000339, - 7.5798949221629535, - 9.007999807708698, - 9.467501007397258, - 9.90694237843792, - 10.360088532801647, - 10.728623528044526, - 11.05455434738798, - 11.342981760100686, - 11.589303908942284, - 11.775502729550407, - 11.989840196902158, - 12.137573884819304, - 12.210687402253406, - 12.3299639635133 + 2.506080868917536, + 2.800134439852537, + 3.143258067369609, + 3.5118178845822023, + 3.8584672962845494, + 4.449846990701017, + 4.890723878553551, + 5.249903512334961, + 5.828928711630364, + 6.29006602259276, + 7.556928395507179, + 8.935423056271237, + 9.36655014455558, + 9.773196249352429, + 10.186659162285936, + 10.518687918776314, + 10.809297924549707, + 11.064279126764733, + 11.280549840055432, + 11.443202921124502, + 11.629741001791093, + 11.757839513373316, + 11.821046768593177, + 11.923864650741955 ], "5._96._0.075": [ - 2.2092718103274054, - 2.5553235631964974, - 2.851914682871338, - 3.2002464578903593, - 3.5242145215457596, - 4.004731092350689, - 4.673572533052638, - 5.355595695684696, - 6.501850948069073, - 7.334675727605192, - 8.000228392754774, - 9.042821815664453, - 9.84207236762788, - 11.860839379810715, - 13.781058468085934, - 14.333686274237092, - 14.835442832381796, - 15.328729839702325, - 15.712920670778807, - 16.042355161813756, - 16.32591131567509, - 16.562759998903793, - 16.739300352861882, - 16.940240455377996, - 17.07747524120779, - 17.144937580150753, - 17.25447281682658 + 2.209271810327403, + 2.5553235628420974, + 2.851914171521948, + 3.2001897381470155, + 3.52369873233631, + 4.002792052103697, + 4.66964835021353, + 5.349199590220328, + 6.490211183379618, + 7.317357271409015, + 7.973790893008165, + 8.98789672166133, + 9.75059601525352, + 11.620131396920156, + 13.333710573384039, + 13.818022817252677, + 14.25546189999644, + 14.68378356346025, + 15.016643083308646, + 15.301595334547722, + 15.546765890616875, + 15.75158418018831, + 15.904235401879545, + 16.07811112617065, + 16.19681957765148, + 16.255127900435983, + 16.349680909095753 ] }, "logtime": [ @@ -29596,5 +3262,45 @@ 3.003 ] } + }, + "5_6": { + }, + "5_7": { + }, + "5_8": { + }, + "5_9": { + }, + "5_10": { + }, + "6_6": { + }, + "6_7": { + }, + "6_8": { + }, + "6_9": { + }, + "6_10": { + }, + "7_7": { + }, + "7_8": { + }, + "7_9": { + }, + "7_10": { + }, + "8_8": { + }, + "8_9": { + }, + "8_10": { + }, + "9_9": { + }, + "9_10": { + }, + "10_10": { } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json index 40665c54cc..9b15b689d8 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json @@ -1,4 +1,6 @@ { + "10_10": { + }, "3_3": { "1": { "bore_locations": [ @@ -436,6941 +438,69 @@ } }, "3_5": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351729205545966, - 3.1876134781815257, - 3.52612040778602, - 4.055459300295313, - 4.716264139443057, - 5.876509258213686, - 7.609471114736373, - 9.351026873638634, - 12.004060362056688, - 13.683090386653616, - 14.886973545664388, - 16.56452393352691, - 17.71453423119316, - 20.24711361547835, - 22.35214221535825, - 22.923766991041678, - 23.434146947495357, - 23.929070178250594, - 24.310993529312103, - 24.636931463928537, - 24.91670479538787, - 25.150191703086534, - 25.324220696801216, - 25.522736091286486, - 25.65829005115755, - 25.72483301903363, - 25.832696738109597 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615426, - 1.4813847491413068, - 1.8198213217004353, - 2.1114679242247276, - 2.451192833240911, - 2.7884209933194923, - 3.0450766572909966, - 3.389902910481726, - 3.623950827147713, - 3.816410626874652, - 4.139827127916242, - 4.412634936744756, - 5.257562153667253, - 6.371872626485972, - 6.7678964460500515, - 7.165970109754642, - 7.595755173534326, - 7.961160378669935, - 8.295764458410792, - 8.602061393982519, - 8.871615151851238, - 9.079922463122685, - 9.324698328552232, - 9.496002536749337, - 9.581558728195013, - 9.721984459912957 - ], - "5._384._0.0875": [ - 3.4974199567373274, - 4.056244959990871, - 4.760632887538217, - 6.004004860571218, - 7.554491520232059, - 9.964184408891521, - 12.897688541478386, - 15.364174499442019, - 18.62355820139788, - 20.50723190820899, - 21.8048530718321, - 23.561111303846936, - 24.741983378832323, - 27.30729869961155, - 29.426159837224063, - 30.000472896065098, - 30.51456176735112, - 31.01368078107411, - 31.39969515591717, - 31.72928506629475, - 32.012691057371256, - 32.249611077284754, - 32.42625838680088, - 32.628015971322924, - 32.76574137420197, - 32.83329175304543, - 32.942646405783584 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125467, - 2.1622431316564783, - 2.5060808694258587, - 2.8001357854052356, - 3.143480621979326, - 3.515723776906981, - 3.8750808388341094, - 4.520374089343204, - 5.0370872237644395, - 5.482261110629079, - 6.238242529326912, - 6.862204652871558, - 8.597557338778193, - 10.425649550281758, - 10.97892029188274, - 11.49173457965524, - 12.005026813976293, - 12.411240752061122, - 12.762888085692103, - 13.068271314256636, - 13.32503766473463, - 13.51699216912266, - 13.735799700106297, - 13.885399476061812, - 13.959036692164705, - 14.07864053397754 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235649685013, - 2.851917241130292, - 3.2005408956982033, - 3.5275084798309386, - 4.026718215677359, - 4.767720666054287, - 5.594434803922353, - 7.110002454112057, - 8.247233479557243, - 9.147106617798975, - 10.51467737447763, - 11.52018484023453, - 13.902563282693578, - 16.00338278355003, - 16.58675187880641, - 17.10987859745002, - 17.61934523636595, - 18.013407540767147, - 18.349915462634637, - 18.638698544669335, - 18.87948125141747, - 19.058791192949123, - 19.26286321909292, - 19.402135428074363, - 19.47053787272059, - 19.581498158341496 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "3_6": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351729196445214, - 3.187610182004973, - 3.5259626824014263, - 4.053548022173325, - 4.710951573561143, - 5.8734071778079535, - 7.640053420997824, - 9.455091216271416, - 12.29473286202236, - 14.133853791436968, - 15.469250904975931, - 17.34810747114205, - 18.64603022042545, - 21.51937306911535, - 23.914256514823947, - 24.564932004356127, - 25.145221450591123, - 25.70743268340367, - 26.14063755427492, - 26.51020405874999, - 26.82707566656593, - 27.091252395252713, - 27.28811278459882, - 27.51253749352492, - 27.665800016115323, - 27.741064776269823, - 27.863169713608485 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.195803175961542, - 1.4813847491413066, - 1.8198213217004344, - 2.1114679242247285, - 2.4511928332409116, - 2.7884209932623394, - 3.045076518245955, - 3.3898599396524416, - 3.623627644257527, - 3.815507323409033, - 4.137320633144267, - 4.40864736947764, - 5.253054855935139, - 6.383543245596532, - 6.790994138537986, - 7.20431703843826, - 7.655012824401349, - 8.042225700759282, - 8.400239553739137, - 8.731118270828675, - 9.024985349196797, - 9.253915758753177, - 9.525013530856556, - 9.716204385661712, - 9.812215445346036, - 9.970602486259743 - ], - "5._384._0.0875": [ - 3.4971826300813573, - 4.053888044407623, - 4.754872544393461, - 6.002682312676857, - 7.584667867534967, - 10.104119725304798, - 13.265237069812871, - 15.99051851427221, - 19.658368457086173, - 21.801669200114173, - 23.284409741808997, - 25.294964773646903, - 26.648369263968192, - 29.585392068085227, - 32.00671123507434, - 32.66232232360702, - 33.248549941913225, - 33.817188906822075, - 34.25643050536239, - 34.63137149588703, - 34.95351936363133, - 35.222638470008896, - 35.42327648141523, - 35.65236096118359, - 35.808764867687486, - 35.885500528774145, - 36.00980598694584 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125458, - 2.1622431316564765, - 2.5060808694258596, - 2.800135785360073, - 3.143479942554616, - 3.515617403112402, - 3.874127987733596, - 4.5160844794253565, - 5.031259045835945, - 5.47737559812762, - 6.240987187100199, - 6.877502836321844, - 8.680643313990617, - 10.635587627851816, - 11.239091522186893, - 11.80271219917238, - 12.370921958476035, - 12.823150272211574, - 13.216364976529492, - 13.558891797344021, - 13.847483083311447, - 14.063540379486573, - 14.309918500526134, - 14.478525973763313, - 14.561616918468143, - 14.696766171298517 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323564968502, - 2.8519172409142914, - 3.2005393477605955, - 3.527407507568092, - 4.025208623253943, - 4.762434980805928, - 5.589423543955042, - 7.127347649049229, - 8.30198232670713, - 9.2447081481088, - 10.699350229762292, - 11.785073389729774, - 14.40420425909021, - 16.75733659203168, - 17.41605185083613, - 18.00756639087347, - 18.584231103006086, - 19.030206060974727, - 19.41111793513842, - 19.73776967885598, - 20.0098817918209, - 20.212462826187775, - 20.442813613364656, - 20.600027851609173, - 20.677279431710527, - 20.80271617513507 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "3_7": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351729189619643, - 3.187607709872632, - 3.5258443886017474, - 4.052114745108451, - 4.706971171375829, - 5.87113667567836, - 7.663251348058056, - 9.533515216068507, - 12.518731309208293, - 14.48946154244564, - 15.936884648715427, - 17.992833535888252, - 19.424655957977727, - 22.614931787032607, - 25.285374477534898, - 26.0117695347434, - 26.659023562550722, - 27.28567747246284, - 27.767904433507724, - 28.17916379843762, - 28.53142328206118, - 28.824822127623804, - 29.043413380831797, - 29.292470363067032, - 29.462572922303504, - 29.5461384559791, - 29.681821703561038 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004342, - 2.111467924224728, - 2.4511928332409108, - 2.7884209932194746, - 3.0450764139621707, - 3.3898277115342994, - 3.623385257925254, - 3.8148298569302113, - 4.13544100541548, - 4.405658116942111, - 5.24970191286046, - 6.3924662001087995, - 6.808483784822626, - 7.233176760233515, - 7.699566350818755, - 8.103390385235613, - 8.47957310335953, - 8.829975165158368, - 9.143654254144934, - 9.389821468314828, - 9.683568841881728, - 9.892437967249506, - 9.997966251115024, - 10.173095109253776 - ], - "5._384._0.0875": [ - 3.497004656208138, - 4.052120776142045, - 4.750558061841151, - 6.001765983703082, - 7.607564985346876, - 10.209916514358277, - 13.551026130446065, - 16.493953652720812, - 20.525566731147773, - 22.90952127016701, - 24.56697052510634, - 26.820266299627676, - 28.33968915469285, - 31.635679855809784, - 34.349311805259134, - 35.083448968114, - 35.739230912780044, - 36.37479474662217, - 36.865155472499616, - 37.28362913367361, - 37.64290470810855, - 37.94283599455204, - 38.166425919445274, - 38.42163568777262, - 38.595900561544816, - 38.68142431048799, - 38.820052430963116 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.506080869425861, - 2.8001357853262, - 3.143479432986084, - 3.5155376228768187, - 3.8734133806044793, - 4.512869282989751, - 5.026899574940905, - 5.473751267189187, - 6.2431742672824, - 6.889153105826035, - 8.743209488813227, - 10.796846538824974, - 11.441274642202544, - 12.047288576003869, - 12.66243154100179, - 13.15487920802369, - 13.585116611429115, - 13.961265968305405, - 14.279059739034706, - 14.517467177559645, - 14.789625871389529, - 14.976142008663652, - 15.068192057086826, - 15.218159237214326 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235649685018, - 2.851917240752292, - 3.200538186807403, - 3.527331778442404, - 4.024076523179473, - 4.758474811435108, - 5.585699043253727, - 7.14057224661258, - 8.343225271342968, - 9.318187535705926, - 10.839846645000845, - 11.989214623956345, - 14.805710564080492, - 17.383174227683313, - 18.11118391667236, - 18.76627629107351, - 19.405961165619335, - 19.90088550555521, - 20.323830541305583, - 20.686392644999508, - 20.988234692502804, - 21.212912685842664, - 21.468203521384417, - 21.642462821773382, - 21.72813493998855, - 21.867381767777037 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "3_8": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 10.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835172918431087, - 3.1876057871030743, - 3.52575238245459, - 4.051000081536278, - 4.703877472611951, - 5.869372235601424, - 7.681329353112848, - 9.594822358003931, - 12.696323587856897, - 14.776011994180196, - 16.318819378434824, - 18.529902421302577, - 20.082210923408887, - 23.56580454912274, - 26.49783684092086, - 27.29679487246883, - 28.008285021561854, - 28.696787774478768, - 29.22600403487418, - 29.677223635394117, - 30.06334890913764, - 30.38466904380889, - 30.624016801468127, - 30.896577168569653, - 31.08275285523598, - 31.174247795969965, - 31.322925343863034 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615422, - 1.4813847491413075, - 1.8198213217004355, - 2.1114679242247285, - 2.4511928332409108, - 2.788420993186134, - 3.0450763328525636, - 3.389802645222456, - 3.6231967357174084, - 3.8143029451458825, - 4.1339792147628724, - 4.403333904580574, - 5.247097354146052, - 6.399416264613004, - 6.822122352666752, - 7.255664723608998, - 7.734301522544537, - 8.15117408539098, - 8.541781007215999, - 8.907912575077516, - 9.237849303387788, - 9.498442479482115, - 9.811620763608722, - 10.036121394425086, - 10.150270155313107, - 10.340960263934585 - ], - "5._384._0.0875": [ - 3.4968662446076877, - 4.050746481379307, - 4.747205287055012, - 6.001052648224909, - 7.625410017489632, - 10.29282333549522, - 13.778998164152002, - 16.905335036733813, - 21.25925952903218, - 23.864906056865447, - 25.686387589595572, - 28.170563603061822, - 29.849414799973736, - 33.49200817780871, - 36.48854621440273, - 37.29868474032228, - 38.021677642990326, - 38.721821206207984, - 39.26139901905697, - 39.72176553293678, - 40.11671362611951, - 40.44620701465264, - 40.691812457024454, - 40.972064333263575, - 41.16345307033642, - 41.257406757155586, - 41.40979125384825 - ], - "5._48._0.075": [ - 1.52684632437314, - 1.8679037053125456, - 2.1622431316564765, - 2.50608086942586, - 2.8001357852998567, - 3.1434790366550005, - 3.5154755716478725, - 3.8728575935431007, - 4.510369710680118, - 5.023512851910174, - 5.470938443850579, - 6.244879946020552, - 6.898224361348665, - 8.792082302052858, - 10.924340454034324, - 11.602340857335482, - 12.2438241008562, - 12.899007288734685, - 13.426476674782117, - 13.88952406262073, - 14.295960386748252, - 14.6404447410476, - 14.899523981114227, - 15.195775047750804, - 15.399185526157913, - 15.49974534147104, - 15.663882644585449 - ], - "5._96._0.075": [ - 2.2092718103274005, - 2.5553235649685004, - 2.851917240626292, - 3.2005372838438158, - 3.5272728780536515, - 4.023196056725778, - 4.755396856237598, - 5.582806595496845, - 7.1508662627764945, - 8.375370223752189, - 9.375538035404384, - 10.95024026802689, - 12.150947351655473, - 15.132653927877891, - 17.908632921569787, - 18.700071245859235, - 19.41403351664556, - 20.11266206007901, - 20.6536903947726, - 21.11642917478162, - 21.513089949626806, - 21.843210787727735, - 22.08893287419812, - 22.36797833641933, - 22.55849441645847, - 22.65221257824921, - 22.804690344749616 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "3_9": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 40.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 40.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 10.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835172918006393, - 3.187604248887456, - 3.525678777626001, - 4.050108418383805, - 4.701403880343332, - 5.867960997097962, - 7.695781932215484, - 9.644074194852983, - 12.840529704732127, - 15.011357169196343, - 16.635688096079242, - 18.982601634687096, - 20.642967445563926, - 24.3969950798548, - 27.576958091093655, - 28.44545617521269, - 29.21862188750233, - 29.966578060639918, - 30.540933162441394, - 31.030545271487547, - 31.449168569328656, - 31.797246764572986, - 32.056480914762744, - 32.35153854533249, - 32.55310476409099, - 32.652198990139766, - 32.813352402278596 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615422, - 1.4813847491413077, - 1.8198213217004353, - 2.1114679242247267, - 2.4511928332409125, - 2.7884209931594643, - 3.0450762679648764, - 3.389782592174411, - 3.6230459182629966, - 3.8138814198689035, - 4.1328098717133255, - 4.401475014462006, - 5.245015603074199, - 6.404967105833082, - 6.833034231372829, - 7.273667283638795, - 7.7621427190844114, - 8.189538587505298, - 8.591852490051506, - 8.970868035879624, - 9.314289286189487, - 9.587023270130029, - 9.916883900460432, - 10.155166094429312, - 10.277092476054818, - 10.482204495555136 - ], - "5._384._0.0875": [ - 3.4967555232158865, - 4.049647201291128, - 4.744524916267494, - 6.000480182542833, - 7.639676686579127, - 10.35957782897239, - 13.96492082303953, - 17.24675073247999, - 21.885776859997108, - 24.694749473417197, - 26.66957402395208, - 29.37262015136273, - 31.204252236364013, - 35.181359660208976, - 38.45199539407159, - 39.33581512233671, - 40.12387737494086, - 40.886466008877896, - 41.473533331299315, - 41.97430429421783, - 42.40360488971503, - 42.76152689305151, - 43.028298780610214, - 43.33261069981593, - 43.540454964779066, - 43.64251385860127, - 43.808141429594016 - ], - "5._48._0.075": [ - 1.5268463243731432, - 1.8679037053125407, - 2.1622431316564765, - 2.506080869425861, - 2.8001357852787785, - 3.1434787195901426, - 3.515425930705912, - 3.872412975538312, - 4.508370768162334, - 5.020805948073357, - 5.468691473952537, - 6.246240673870704, - 6.905469488877982, - 8.831318993887047, - 11.027625452467381, - 11.733470842066685, - 12.404828440832276, - 13.094251854498, - 13.652205926013885, - 14.144261989006404, - 14.5778955224822, - 14.946699144791394, - 15.22485024025256, - 15.543589939696258, - 15.762944850932596, - 15.871598848739824, - 16.049318059093594 - ], - "5._96._0.075": [ - 2.209271810327402, - 2.555323564968499, - 2.8519172405254944, - 3.200536561472959, - 3.5272257577693225, - 4.022491718731378, - 4.75293586325004, - 5.580495270012017, - 7.159086341415322, - 8.401102298727293, - 9.421543430222494, - 11.039262095495653, - 12.282113289854907, - 15.403183610228634, - 18.354522755364528, - 19.203823296853855, - 19.97211348601594, - 20.72572795098937, - 21.3101167813542, - 21.810512745552373, - 22.23957271499897, - 22.596635369937843, - 22.86244367118667, - 23.164180064921837, - 23.370251401131274, - 23.471684357145044, - 23.636883745842276 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "4_10": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 45.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 45.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 45.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 15.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835172917369344, - 3.1876019333150447, - 3.5255547068980273, - 4.046770637384118, - 4.672930331018968, - 5.7232356156162005, - 7.3408212781331255, - 9.15028265634769, - 12.333330392582573, - 14.61128065602307, - 16.361208348050432, - 18.942290850167915, - 20.79768018641119, - 25.045759226268736, - 28.67477612162631, - 29.668045338727676, - 30.550316084950445, - 31.40232658944957, - 32.054459168618095, - 32.609816510084386, - 33.08343007804131, - 33.476294206174124, - 33.76869259584162, - 34.10103277826036, - 34.32809098656457, - 34.43980381324924, - 34.621829440973066 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.195803175961541, - 1.4813847491413077, - 1.819821321700434, - 2.111467924224724, - 2.4511928332409108, - 2.788420993119457, - 3.04507617061357, - 3.3897513267820183, - 3.6227605635496194, - 3.81278768631041, - 4.126948650409693, - 4.385578249666706, - 5.155922369590932, - 6.178785289352434, - 6.564063288577266, - 6.969385053284215, - 7.431097204450355, - 7.846868052082254, - 8.248660184070799, - 8.63679347576128, - 8.996697025146233, - 9.288019713211344, - 9.647055639782364, - 9.911055268214337, - 10.047880357181668, - 10.28092283315512 - ], - "5._384._0.0875": [ - 3.4965597077101034, - 4.044869829941538, - 4.707625692139501, - 5.830677350127793, - 7.281709151393501, - 9.830502529102436, - 13.475856150247997, - 16.9775271966958, - 22.117253817855893, - 25.302815175530682, - 27.564204282704758, - 30.676213817075304, - 32.79277017725048, - 37.38405935368554, - 41.14782281452795, - 42.16268942132367, - 43.065466700669944, - 43.9372778487395, - 44.60652252930166, - 45.17703235103221, - 45.66521383663046, - 46.071567617119065, - 46.37436770353756, - 46.719531327980405, - 46.95534286635756, - 47.07120878144039, - 47.25951910559131 - ], - "5._48._0.075": [ - 1.5268463243731447, - 1.8679037053125414, - 2.1622431316564765, - 2.50608086942586, - 2.800135785247167, - 3.1434782435850877, - 3.51534491334337, - 3.8712574522720664, - 4.4911198700969575, - 4.966647476480025, - 5.3677663657394294, - 6.051368307132278, - 6.633716977765608, - 8.412440055052345, - 10.604449389609673, - 11.34170640572687, - 12.05701858123397, - 12.803339284414232, - 13.415712410176809, - 13.960722018521126, - 14.444740379740516, - 14.858689122623845, - 15.171966136093364, - 15.531568601458943, - 15.779579126365823, - 15.902729989591679, - 16.104724489036084 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.5553235649685018, - 2.851917240374292, - 3.200535475963637, - 3.5271492486724063, - 4.0202045692643615, - 4.723880315973749, - 5.4736576180890015, - 6.864778023064533, - 7.991176438819989, - 8.950931917137599, - 10.536691230720423, - 11.801281155612562, - 15.11462064268205, - 18.374006458855327, - 19.329315591509697, - 20.196406810864357, - 21.049545705999115, - 21.711597005134887, - 22.278776415959705, - 22.764525519406956, - 23.16805635475832, - 23.468173562881976, - 23.808143464800946, - 24.0402681542896, - 24.154627960836667, - 24.34127252399975 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "4_4": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 15.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 15.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 15.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351729205545935, - 3.187613472729638, - 3.5261116642188135, - 4.054253597390166, - 4.70242914864568, - 5.8086030113135525, - 7.467549516284039, - 9.173910326217955, - 11.817549620297518, - 13.50063752774223, - 14.708245124966707, - 16.390506424244155, - 17.542754332347926, - 20.076562667192977, - 22.17930066733775, - 22.74990326709019, - 23.259177076033392, - 23.752891128976884, - 24.133769674524423, - 24.458778473467625, - 24.737703371030964, - 24.9704461779962, - 25.14391178539724, - 25.341768285828188, - 25.47687046952432, - 25.543193094793875, - 25.650707779981367 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615426, - 1.4813847491413068, - 1.8198213217004353, - 2.1114679242247276, - 2.451192833240911, - 2.7884209933194914, - 3.0450766572778396, - 3.389902139693359, - 3.623913486030334, - 3.8161259791525683, - 4.137388995029404, - 4.4051267851223574, - 5.214701703132842, - 6.276949476181331, - 6.660407431446878, - 7.049422589341101, - 7.473153414434007, - 7.836070348060081, - 8.170029988786352, - 8.476777753348607, - 8.747261338461222, - 8.956411097426855, - 9.202137045330364, - 9.37395002483599, - 9.459699491909076, - 9.600312664462594 - ], - "5._384._0.0875": [ - 3.4974014612635833, - 4.0543778177746645, - 4.742542311205488, - 5.925653912078285, - 7.411046933317475, - 9.777945928796772, - 12.707582672564504, - 15.18137338890359, - 18.44968333281755, - 20.336262258422025, - 21.634806948968798, - 23.391045748332242, - 24.57126459982887, - 27.13330643048112, - 29.248061666688077, - 29.821100755788592, - 30.333976575384245, - 30.83185682051092, - 31.216858652123662, - 31.545573045197322, - 31.828203059721602, - 32.064458178976366, - 32.24060869933254, - 32.4417938093029, - 32.57913099533268, - 32.646493139072525, - 32.75555033459801 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125467, - 2.1622431316564783, - 2.506080869425859, - 2.8001357854052342, - 3.143480621708681, - 3.5157195599231095, - 3.8747798570388277, - 4.512229192124728, - 5.010413764679055, - 5.4337256554705515, - 6.151298086195742, - 6.7488452499404605, - 8.445309591581669, - 10.268274360411876, - 10.822950270217252, - 11.337592629263623, - 11.85269991856157, - 12.260211639281591, - 12.612677176675874, - 12.918533381258486, - 13.17548225828373, - 13.367423393448528, - 13.586035310552214, - 13.735408064577877, - 13.808908278883589, - 13.928255410057844 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235649685027, - 2.85191724113029, - 3.200540894404338, - 3.5275047266417947, - 4.025970191286226, - 4.753579891339415, - 5.543082335133833, - 6.987551562749769, - 8.092101425207474, - 8.9776988236641, - 10.337085958191386, - 11.342491130110483, - 13.731702648068135, - 15.836916503083607, - 16.420819154043382, - 16.943922157361797, - 17.453033126848272, - 17.846569813436922, - 18.1824859274211, - 18.470631174105463, - 18.71078748729027, - 18.889590015481595, - 19.093028010450833, - 19.231845509633082, - 19.30002062517405, - 19.41061394306638 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, - "6_6": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 25.0, - 0.0 - ], - [ - 25.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 25.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 25.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 25.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 25.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351729180063914, - 3.1876042411978536, - 3.5256660977976755, - 4.048261592032999, - 4.678125319836612, - 5.721415778712117, - 7.249330598074599, - 8.90569336262978, - 11.838626126063236, - 13.95237043510521, - 15.57086906704297, - 17.938523673196112, - 19.619403407669935, - 23.405501624053088, - 26.582896385707564, - 27.446230277110857, - 28.21233760663668, - 28.95183954607885, - 29.518403915548774, - 30.000871595907906, - 30.412789740441717, - 30.75487787275584, - 31.009531768524425, - 31.299187278894756, - 31.49701792294762, - 31.594279930921935, - 31.752523892845005 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615422, - 1.4813847491413077, - 1.8198213217004353, - 2.1114679242247267, - 2.451192833240914, - 2.788420993159463, - 3.0450762679464227, - 3.389781489357276, - 3.622991142046268, - 3.8134550103506912, - 4.129011588597102, - 4.389249359886956, - 5.159027046365854, - 6.137812167161886, - 6.494062817147581, - 6.865399913062771, - 7.287477540572042, - 7.66883091276258, - 8.03953962732851, - 8.399696181345396, - 8.734926306301789, - 9.00645585029502, - 9.339969584547898, - 9.582670638299223, - 9.70697325702771, - 9.915429006179368 - ], - "5._384._0.0875": [ - 3.4967280223886856, - 4.046757961011552, - 4.713416260570774, - 5.824033632520895, - 7.19103953420198, - 9.524044676843829, - 12.891471997900261, - 16.133018043058385, - 20.817726296703686, - 23.66018278237287, - 25.65205457328972, - 28.367406627105918, - 30.200350893591008, - 34.158880741811366, - 37.39768972355688, - 38.27094665257348, - 39.048759429166076, - 39.80074618740846, - 40.37905619616961, - 40.872223236363, - 41.29475300063063, - 41.646856403988, - 41.90927284432422, - 42.208562580497265, - 42.41299136531426, - 42.513390124745776, - 42.67639054275802 - ], - "5._48._0.075": [ - 1.5268463243731432, - 1.8679037053125407, - 2.1622431316564765, - 2.5060808694258596, - 2.80013578527878, - 3.1434787192097966, - 3.5154198424482956, - 3.8719615514675434, - 4.495081957558438, - 4.972566962177787, - 5.370979137734892, - 6.033695787358429, - 6.58191888985034, - 8.21442084648854, - 10.238890436144318, - 10.925160112467118, - 11.591341524277142, - 12.28453800774727, - 12.850555068698483, - 13.350759233753926, - 13.79167994985431, - 14.16582689331593, - 14.446825723565079, - 14.76715497336621, - 14.986539836134504, - 15.094906880618826, - 15.271675195383539 - ], - "5._96._0.075": [ - 2.2092718103274014, - 2.5553235649685, - 2.851917240525493, - 3.20053655965176, - 3.527220344124282, - 4.0213554761867405, - 4.729070206698629, - 5.476962862449265, - 6.807448554130743, - 7.844577374566916, - 8.721603713581594, - 10.177585447856124, - 11.348076769291694, - 14.426760802958022, - 17.409975398079716, - 18.269283432923284, - 19.04368211188817, - 19.80049782552116, - 20.38500261475183, - 20.88369219210977, - 21.30981629150404, - 21.663324061694986, - 21.925924051707458, - 22.22331718191104, - 22.426123962950754, - 22.52588374312891, - 22.688336751774283 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 25.0, - 0.0 - ], - [ - 25.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 25.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 25.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 25.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 25.0, - 20.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 20.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 20.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 20.0 - ], - [ - 5.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 20.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352057051561346, - 3.1902942659748033, - 3.551585222631147, - 4.198198232344726, - 5.110889451548836, - 6.825380789230274, - 9.559811542886276, - 12.56999225900893, - 17.66866521508078, - 21.187298552633735, - 23.82424079623938, - 27.61231422033835, - 30.268731352386318, - 36.168154127656315, - 41.05630771155337, - 42.377358219460696, - 43.546891798947776, - 44.67328607667263, - 45.53395645165399, - 46.26659021350367, - 46.89122415784301, - 47.40942786443812, - 47.79526019025108, - 48.234122488787335, - 48.534046123256246, - 48.681608947258205, - 48.92205350429747 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.4813847491413081, - 1.8198213217004324, - 2.1114679242247236, - 2.451192833775585, - 2.7884285340334354, - 3.04554346061454, - 3.401231492690864, - 3.6632459097848007, - 3.8957468091776644, - 4.317319047948468, - 4.694871508361472, - 5.926829159628528, - 7.645993692124584, - 8.2924381894822, - 8.964349632361243, - 9.71773825901911, - 10.38305138793512, - 11.01363371696495, - 11.60885559721035, - 12.146817659850914, - 12.571522266023756, - 13.078020885330597, - 13.437015319660908, - 13.618117667909207, - 13.917955695945158 - ], - "5._384._0.0875": [ - 3.530364982678175, - 4.226017950709882, - 5.210508997959975, - 7.0603481691790675, - 9.515894507913506, - 13.733369370001448, - 19.532526774392103, - 24.88659121085279, - 32.420608409710404, - 36.932098845435064, - 40.07749606171521, - 44.34192771339277, - 47.20986325872741, - 53.37034580489912, - 58.38683796759706, - 59.73660595795957, - 60.93782636764542, - 62.09803816111037, - 62.989215006692916, - 63.74914745779723, - 64.39985069988693, - 64.94185897656304, - 65.34588496610843, - 65.80672262625593, - 66.1216297390914, - 66.27635570162825, - 66.52777049186813 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125416, - 2.1622431316564787, - 2.5060808719674816, - 2.800142513287279, - 3.14459516672878, - 3.535497509822734, - 3.958496062443845, - 4.823378453158691, - 5.568314843197329, - 6.228713488356831, - 7.381494678618319, - 8.368271243383308, - 11.311118914104373, - 14.770891128353297, - 15.892053787906939, - 16.954911971110278, - 18.039734838412073, - 18.908267732913156, - 19.66658470593993, - 20.32620144684655, - 20.879655836854273, - 21.292496250499706, - 21.759474101465088, - 22.07788228121402, - 22.234953316228815, - 22.49153111558221 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.5553235756005312, - 2.851932589738921, - 3.20230071029849, - 3.546790263231941, - 4.144948992283942, - 5.163046630536585, - 6.3778938224632755, - 8.727357946977191, - 10.62089587447383, - 12.209010163884892, - 14.76907715167389, - 16.76162845154597, - 21.777029376341513, - 26.445060937989062, - 27.76643531433447, - 28.949060760786914, - 30.0980240284765, - 30.97952193415738, - 31.729685310689497, - 32.36810874913483, - 32.89607179114505, - 33.28797596333774, - 33.73128589684139, - 34.03366884993373, - 34.182524306759596, - 34.425456579607676 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "5_5": { - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 20.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 20.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 15.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 15.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 15.0 - ], - [ - 5.0, - 10.0 - ], - [ - 15.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352057059208735, - 3.1902971456855767, - 3.55172665572895, - 4.2004692427836465, - 5.122686838031373, - 6.865356908570625, - 9.59500138070258, - 12.466869971098307, - 17.050525989747886, - 20.063714144127186, - 22.26508504436579, - 25.366297280998058, - 27.508030781471852, - 32.21971861689966, - 36.11062252139669, - 37.162749507149165, - 38.0974158102132, - 39.000124122252984, - 39.69288432619882, - 40.28329078675718, - 40.78822831794044, - 41.20828961403463, - 41.52123434915544, - 41.87769168697783, - 42.121238461972595, - 42.240951515149334, - 42.435565543061436 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.195803175961541, - 1.4813847491413077, - 1.819821321700434, - 2.111467924224724, - 2.451192833775585, - 2.788428534083414, - 3.0455435822026957, - 3.4012693589590515, - 3.663547404849954, - 3.8966874997683734, - 4.3208138446612026, - 4.702412121434503, - 5.954690422801691, - 7.685391819093885, - 8.320567652631645, - 8.967262792911551, - 9.676003416631849, - 10.286623259609499, - 10.85310016673261, - 11.376733828464573, - 11.840983624896886, - 12.201707535720173, - 12.62574672797026, - 12.922438314648945, - 13.070802365443386, - 13.314588227878598 - ], - "5._384._0.0875": [ - 3.530559589137752, - 4.228965321547917, - 5.224867170018315, - 7.104152470404771, - 9.552404325118804, - 13.544468455911344, - 18.684275363310814, - 23.18991127613218, - 29.29844996393653, - 32.87464249622515, - 35.34690990286632, - 38.68809480619628, - 40.931215573239804, - 45.76727481108258, - 49.72699201342414, - 50.79574887687262, - 51.74940650867645, - 52.67270075503068, - 53.38417163150092, - 53.991253963400915, - 54.51212334360592, - 54.946740225530036, - 55.27077189756263, - 55.64062153113238, - 55.89325623754567, - 56.01729260505102, - 56.21850389323961 - ], - "5._48._0.075": [ - 1.5268463243731447, - 1.8679037053125414, - 2.162243131656477, - 2.506080871967487, - 2.800142513326794, - 3.144595760562643, - 3.5355921844189226, - 3.9594774056103, - 4.831323631211377, - 5.587963064752039, - 6.260665264711407, - 7.429071155964175, - 8.414918681999927, - 11.239243666548772, - 14.35295517927832, - 15.320143014541106, - 16.223229416239583, - 17.132252021660157, - 17.852307666356875, - 18.47632437195846, - 19.01665323518551, - 19.46902818790645, - 19.80621093467907, - 20.188244519212198, - 20.44881884457216, - 20.577173724731075, - 20.786257287757223 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.5553235756005335, - 2.8519325899279138, - 3.2023020631585193, - 3.546879963553079, - 4.146640536600958, - 5.1749778185582676, - 6.410650240381366, - 8.773962026425135, - 10.6173048088742, - 12.115104602549367, - 14.447730871086904, - 16.20528297473023, - 20.467954315602896, - 24.29117964791527, - 25.357337948584277, - 26.3099742919826, - 27.23471850605952, - 27.945683389514635, - 28.55130085419605, - 29.06830867568418, - 29.49726435975507, - 29.81614080240825, - 30.177819616816475, - 30.42459884521196, - 30.545959182660177, - 30.74348736335694 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 20.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 20.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351729189619634, - 3.1876077030221732, - 3.525833184797946, - 4.05050664724008, - 4.687045073311036, - 5.751478709548568, - 7.33818918743933, - 9.054515166332832, - 11.944587805829432, - 13.909255803542953, - 15.36401288124565, - 17.43654512628854, - 18.878835955716685, - 22.080282515155783, - 24.745790094934836, - 25.4689717479424, - 26.112405196008535, - 26.734713575405582, - 27.21307632981915, - 27.620852377552875, - 27.969890772005147, - 28.260440435035353, - 28.47686458764289, - 28.72337732854118, - 28.891728172622923, - 28.97443694335032, - 29.108761321661518 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004342, - 2.111467924224728, - 2.45119283324091, - 2.7884209932194732, - 3.0450764139457034, - 3.389826733227482, - 3.6233370182276405, - 3.81445650224803, - 4.132145048044015, - 4.395132736743389, - 5.178353901187254, - 6.190533273436082, - 6.562683849364356, - 6.949423435102403, - 7.383948802484938, - 7.769013939266884, - 8.13469576596328, - 8.480777037656146, - 8.79431362080049, - 9.04213526483185, - 9.339101450685295, - 9.550293745392025, - 9.656863286574941, - 9.8332512875261 - ], - "5._384._0.0875": [ - 3.4969805287765614, - 4.049610845053574, - 4.724024011799086, - 5.8591742119555486, - 7.280169967419424, - 9.685345656944277, - 12.95120002256416, - 15.900332959106045, - 19.96429971151604, - 22.363080408134557, - 24.02674149887119, - 26.283058672688007, - 27.801524249076753, - 31.086716085587014, - 33.78487263092562, - 34.51405470361341, - 35.16507936605384, - 35.79575560768902, - 36.28210157061513, - 36.69709677173895, - 37.053282624959635, - 37.35056288344656, - 37.57217026766499, - 37.825094946034696, - 37.997807969998355, - 38.08257829579417, - 38.22001485745728 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.506080869425861, - 2.8001357853261997, - 3.1434794326468762, - 3.5155322363303143, - 3.8730182626560827, - 4.50143610678418, - 4.98608138575969, - 5.392709543113633, - 6.075121774006067, - 6.645486494501959, - 8.339243711062696, - 10.332930898839978, - 10.975302538980678, - 11.584296248755559, - 12.20480617111768, - 12.702474977054884, - 13.136788557395816, - 13.515948973092035, - 13.835570209807281, - 14.074716459425884, - 14.346928567476011, - 14.533038905270708, - 14.624766884906823, - 14.774029985947116 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235649685013, - 2.8519172407522904, - 3.200538185183954, - 3.5273269874556794, - 4.023085197880575, - 4.738056115594018, - 5.499876288678041, - 6.87618738397232, - 7.958436089146634, - 8.862791581692829, - 10.320516438063786, - 11.4495744747687, - 14.270853163270374, - 16.867224880737787, - 17.599089437093166, - 18.25579625551043, - 18.895653663764897, - 19.38961431147736, - 19.811016516402006, - 20.171647018866707, - 20.471433105589288, - 20.69437167239769, - 20.947413245266862, - 21.1200251640414, - 21.204864147655087, - 21.34275589995689 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "5_6": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835172918431085, - 3.187605779786423, - 3.5257403586367153, - 4.049259351764441, - 4.682089957267456, - 5.735117618244403, - 7.295174423866334, - 8.993573874861196, - 11.933244240773512, - 13.989389048126723, - 15.536210396389814, - 17.767361464562363, - 19.33473223231206, - 22.83760126197414, - 25.764790408193367, - 26.55950068384141, - 27.265660068298025, - 27.947969841267987, - 28.47159655158252, - 28.91774143219698, - 29.29914470639263, - 29.616270790248485, - 29.85242152509669, - 30.121221700046792, - 30.304803617925515, - 30.3950283316758, - 30.541690130492167 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615422, - 1.4813847491413075, - 1.8198213217004355, - 2.1114679242247285, - 2.4511928332409116, - 2.7884209931861332, - 3.045076332834993, - 3.3898015977432414, - 3.623144864619185, - 3.8139001155044343, - 4.130404188467039, - 4.391864150259974, - 5.167724628268806, - 6.163912682424848, - 6.52961227249586, - 6.911070206257784, - 7.34296810745254, - 7.729886120449684, - 8.101757121404617, - 8.4582446207257, - 8.785383628767244, - 9.046918392192431, - 9.36388705734761, - 9.591698212132938, - 9.707453692284806, - 9.900228082093184 - ], - "5._384._0.0875": [ - 3.4968402429479086, - 4.04802580879566, - 4.718132682274434, - 5.840206443851195, - 7.236898446727306, - 9.624194250212188, - 12.972482537787066, - 16.090628870527517, - 20.485339892407602, - 23.11367822712819, - 24.945604955097004, - 27.436099052768505, - 29.11456438803184, - 32.74250497302852, - 35.71646564439045, - 36.519262442497784, - 37.235176213791576, - 37.928025861432346, - 38.46159839320984, - 38.916757154116716, - 39.30707493356083, - 39.63259311764718, - 39.875224622872096, - 40.152048465199925, - 40.34110766304057, - 40.43392971410683, - 40.584523886688004 - ], - "5._48._0.075": [ - 1.52684632437314, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808694258596, - 2.800135785299855, - 3.143479036292943, - 3.515469795261635, - 3.8724311940242426, - 4.4979057492173595, - 4.978587460669457, - 5.380762564306489, - 6.0532107359984755, - 6.6135053609962595, - 8.287417939363065, - 10.315699224288924, - 10.985663283002975, - 11.627860762768716, - 12.288607991014729, - 12.822899929123482, - 13.291869092700686, - 13.703077584598297, - 14.050743635392436, - 14.311321359787014, - 14.608110233998882, - 14.811194136458079, - 14.911398561919437, - 15.074659665462221 - ], - "5._96._0.075": [ - 2.2092718103274005, - 2.5553235649684996, - 2.85191724062629, - 3.200537282110509, - 3.5272677411455535, - 4.022124219768105, - 4.733064408466063, - 5.487279529707112, - 6.841682648919831, - 7.906751272507348, - 8.804741506198452, - 10.27586740503049, - 11.436680755430393, - 14.408327616466334, - 17.209868499503674, - 18.007621567384877, - 18.724832548680176, - 19.42460859563263, - 19.9648803655607, - 20.42581817912222, - 20.819976134728407, - 21.147301224103902, - 21.39059730762955, - 21.666447413981093, - 21.854597992256167, - 21.94711306217314, - 22.097626579974996 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 20.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 20.0 - ], - [ - 5.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 15.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352057054838817, - 3.190295500925566, - 3.5516471640651286, - 4.199371011347221, - 5.118552314404897, - 6.8601115590632205, - 9.630054213977337, - 12.61443130853699, - 17.511443731307537, - 20.80512225224392, - 23.241056991595435, - 26.70501934179484, - 29.115096940003657, - 34.44129969134381, - 38.846864344891934, - 40.037883259573924, - 41.09417545448372, - 42.112971771260604, - 42.8931763846526, - 43.55773561611095, - 44.12523940550822, - 44.5967182921772, - 44.9478720720997, - 45.34757762789605, - 45.62071061005465, - 45.755029434138066, - 45.97363503807855 - ], - "5._24._0.075": [ - 0.8740059532267972, - 1.195803175961542, - 1.4813847491413068, - 1.819821321700434, - 2.1114679242247245, - 2.451192833775584, - 2.7884285340548534, - 3.0455435127256356, - 3.4012478354363007, - 3.6633809000308393, - 3.8961955151417396, - 4.3192301252371665, - 4.699457753533426, - 5.948948474328306, - 7.695942489583611, - 8.346590384595524, - 9.015934665356127, - 9.757344658750181, - 10.403286679759958, - 11.008323893508065, - 11.572885343717068, - 12.077781171521716, - 12.472947149926677, - 12.940514070753137, - 13.26962250670975, - 13.43489092351233, - 13.707476534263929 - ], - "5._384._0.0875": [ - 3.5304513098812405, - 4.22759458951769, - 5.220172107434986, - 7.10045554189853, - 9.587008472438736, - 13.750456383002424, - 19.278832735784544, - 24.246253802812856, - 31.10328828388795, - 35.16221043654611, - 37.97991610284718, - 41.79380555195936, - 44.35646823951607, - 49.871532101612075, - 54.37513693195798, - 55.588867391944554, - 56.67048156974401, - 57.71644509420542, - 58.52118805786706, - 59.2076435861255, - 59.79603804771926, - 60.28658222064646, - 60.652279821214144, - 61.069545275006824, - 61.354623794143784, - 61.49464114048708, - 61.7219624163916 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.867903705312544, - 2.162243131656476, - 2.5060808719674883, - 2.8001425133042157, - 3.1445954212679244, - 3.53553871995983, - 3.958964896305143, - 4.82825533754784, - 5.582288510130633, - 6.254054009052045, - 7.428263637394244, - 8.428946744446785, - 11.354740597941007, - 14.67808389615023, - 15.730768524755593, - 16.720583663238006, - 17.7234575244014, - 18.521757627717264, - 19.216070634771928, - 19.81852765138508, - 20.32342502738764, - 20.69991867435479, - 21.126160893423634, - 21.416879030278988, - 21.560198013916423, - 21.794000312609192 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.5553235756005304, - 2.8519325898199224, - 3.2023012902822314, - 3.546829270777727, - 4.145796196718361, - 5.1708352973883365, - 6.40419914979403, - 8.790945131785577, - 10.687990334539599, - 12.25320929708268, - 14.729694062148138, - 16.623891617215776, - 21.298538854515435, - 25.566022817649547, - 26.764692416099734, - 27.836597623990734, - 28.87754390158141, - 29.677021161521704, - 30.35776424048104, - 30.9380424668208, - 31.418739434678212, - 31.77584573704637, - 32.18036525117254, - 32.456347276027664, - 32.59214008161628, - 32.813452575270645 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "5_7": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 30.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835172918006392, - 3.187604241197856, - 3.5256660977976737, - 4.048261593858988, - 4.6781314459346115, - 5.72259309334762, - 7.266444346756667, - 8.954094802205015, - 11.927656553684981, - 14.053606376048359, - 15.675222421583676, - 18.041783343370472, - 19.720295323431912, - 23.501196382822407, - 26.677075733212565, - 27.540453469164408, - 28.306877029979088, - 29.046852765371526, - 29.61391031150395, - 30.096854230821158, - 30.509239876779105, - 30.85175890897055, - 31.10674765477418, - 31.39680514575573, - 31.59491699363435, - 31.69231770042557, - 31.85078235989281 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615422, - 1.4813847491413077, - 1.8198213217004353, - 2.1114679242247267, - 2.4511928332409116, - 2.7884209931594626, - 3.045076267946422, - 3.389781489357278, - 3.6229911420462817, - 3.8134550103679934, - 4.129011615930157, - 4.389250538851609, - 5.159423444013664, - 6.145484469019887, - 6.507487553537916, - 6.885820837297019, - 7.316001954826201, - 7.70394360976519, - 8.079843575741524, - 8.443639720622707, - 8.78093806258029, - 9.053243885101567, - 9.386753064990291, - 9.629034521528666, - 9.753066252479712, - 9.961084837903389 - ], - "5._384._0.0875": [ - 3.4967280223748687, - 4.04675796940754, - 4.713430665530705, - 5.825892290759697, - 7.207956628556452, - 9.584507413797965, - 12.991086701668468, - 16.24363385592111, - 20.92521459243282, - 23.76353895130393, - 25.753003031371655, - 28.466086473506003, - 30.298238304498025, - 34.25728880083861, - 37.49824152176349, - 38.37227999577594, - 39.150876036538975, - 39.90368826792753, - 40.482691336405566, - 40.97646413274174, - 41.39953798929255, - 41.75211221792711, - 42.014882253206046, - 42.31458148462812, - 42.51928948437402, - 42.61982407418271, - 42.78303929527378 - ], - "5._48._0.075": [ - 1.5268463243731432, - 1.8679037053125407, - 2.1622431316564765, - 2.50608086942586, - 2.8001357852787785, - 3.1434787192097993, - 3.515419842448296, - 3.871961551486933, - 4.495083198623996, - 4.972630080023321, - 5.371445533974316, - 6.037226376600358, - 6.59152847920386, - 8.253701399709618, - 10.30535282576457, - 10.995887203926815, - 11.664146970720918, - 12.357832943413532, - 12.923219064699323, - 13.42246607796163, - 13.862363225859049, - 14.235643967986029, - 14.516095387883045, - 14.835958718022873, - 15.055135425937998, - 15.163430882596824, - 15.340137902657759 - ], - "5._96._0.075": [ - 2.209271810327402, - 2.5553235649684996, - 2.851917240525494, - 3.2005365596517543, - 3.527220344124284, - 4.02135547655658, - 4.729077098386667, - 5.477451266797833, - 6.817977622437549, - 7.873054756499029, - 8.766983248320026, - 10.246614891167704, - 11.42977892157351, - 14.519697736813761, - 17.49962521450853, - 18.3574246929739, - 19.130629708735338, - 19.886537090346014, - 20.47055809819104, - 20.9690405528997, - 21.39513707456738, - 21.74873728665216, - 22.011469655688035, - 22.309088859429185, - 22.512083702526276, - 22.611944379778897, - 22.77456835688649 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 30.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 25.0 - ], - [ - 5.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 15.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835205705156133, - 3.1902942680192634, - 3.551588501451931, - 4.198652707258221, - 5.116430859721318, - 6.859930813546439, - 9.661182638931674, - 12.727850116712471, - 17.866976674382055, - 21.390316811291648, - 24.02519816383796, - 27.80681362453494, - 30.458613022688105, - 36.35329110118051, - 41.245099064231496, - 42.568198203658305, - 43.740071023361736, - 44.8690786817117, - 45.73203783407005, - 46.46671435379011, - 47.09321652864812, - 47.61305545984105, - 48.000123612930885, - 48.440422997939734, - 48.74133287830654, - 48.88937799553328, - 49.13058754244556 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.4813847491413081, - 1.8198213217004324, - 2.1114679242247236, - 2.4511928337755844, - 2.7884285340334354, - 3.0455434606194713, - 3.4012317817359237, - 3.663259915162309, - 3.8958537297421305, - 4.318247244930179, - 4.697820688919924, - 5.94724176747158, - 7.707870545008717, - 8.369644178740563, - 9.055236363584603, - 9.82048937726613, - 10.492854095569033, - 11.127476932245129, - 11.724325270900232, - 12.26220911528791, - 12.686076263857414, - 13.190992696224008, - 13.54881656916423, - 13.7294022441434, - 14.028668124833048 - ], - "5._384._0.0875": [ - 3.5303719465885264, - 4.22672359472043, - 5.217887802268212, - 7.10180908650874, - 9.61782104894599, - 13.907878146963892, - 19.741324842629556, - 25.095428326891867, - 32.615829514166464, - 37.1200773030382, - 40.262332030534665, - 44.52540153060283, - 47.394110224139645, - 53.561206527184574, - 58.58676548519515, - 59.939408466295156, - 61.14335350034206, - 62.30634471341287, - 63.19978667945735, - 63.961673987133416, - 64.61410361338541, - 65.15758508616152, - 65.56271035011773, - 66.02480938841497, - 66.34057292571389, - 66.49571521953395, - 66.74778988177653 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125416, - 2.1622431316564787, - 2.506080871967482, - 2.800142513287274, - 3.144595166830273, - 3.5354990911720674, - 3.958609056421058, - 4.826562907914332, - 5.579817289453787, - 6.2520785219590955, - 7.432042505007791, - 8.443934064512947, - 11.443915832697487, - 14.928548275399029, - 16.050628545993614, - 17.112569708077306, - 18.195355648965084, - 19.061803291073893, - 19.81846032409375, - 20.47688349020765, - 21.029700095151068, - 21.442393453031308, - 21.909629182861142, - 22.228454674785333, - 22.38579624071585, - 22.642899453609754 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235756005312, - 2.8519325897389223, - 3.202300710783687, - 3.5467916706692226, - 4.145230363382129, - 5.1687250105033415, - 6.402418936688091, - 8.808610101383627, - 10.744577751776639, - 12.359240026082487, - 14.945035254741496, - 16.94697681578781, - 21.963616089778846, - 26.62422724920901, - 27.944119850142343, - 29.12630772492254, - 30.275588552434975, - 31.157948356692003, - 31.909243665296923, - 32.54897299439045, - 33.07826221349888, - 33.471259051799514, - 33.91594093942623, - 34.219312487057266, - 34.368664489170456, - 34.61239766480438 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "5_8": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 20.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351729176589204, - 3.1876029823526757, - 3.525605338988854, - 4.047445297729504, - 4.674894318785516, - 5.7123930446380555, - 7.244143978547499, - 8.925328339357938, - 11.925291425689178, - 14.106200939762495, - 15.789193537180248, - 18.27137005809961, - 20.048141399371296, - 24.083996542535104, - 27.495521399812347, - 28.424750677882855, - 29.249076698948166, - 30.044517659395453, - 30.65330647228244, - 31.171603435432996, - 31.613707869749668, - 31.98054418374183, - 32.253564431791865, - 32.56394649094808, - 32.77595429126954, - 32.88022399386509, - 33.05000938761273 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615408, - 1.4813847491413077, - 1.8198213217004344, - 2.1114679242247263, - 2.451192833240911, - 2.788420993137641, - 3.0450762148557766, - 3.3897650370424377, - 3.6228653692395913, - 3.8130908362471754, - 4.12787230457757, - 4.387112542609039, - 5.152647106832586, - 6.130891480511401, - 6.490386660419012, - 6.866767266392388, - 7.2960464542121874, - 7.684920990885535, - 8.063870162482337, - 8.433186367632688, - 8.778353084476684, - 9.059260965269258, - 9.406492449308647, - 9.66130974295716, - 9.792749609540875, - 10.014878798308983 - ], - "5._384._0.0875": [ - 3.496636210899751, - 4.0457207685735135, - 4.709586133395613, - 5.814258946270002, - 7.18546620996103, - 9.555988814007048, - 13.007567957093281, - 16.368779127749956, - 21.298774502498325, - 24.328031099155464, - 26.464146124240013, - 29.387860179501125, - 31.36720260568272, - 35.645782106107156, - 39.14534965448638, - 40.08841765136256, - 40.92765182652145, - 41.73838794290794, - 42.36116970699941, - 42.892132539485004, - 43.34669931053163, - 43.72524532613979, - 44.00734154355572, - 44.32897738537647, - 44.54869473810981, - 44.65663087011391, - 44.831975296375404 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125405, - 2.162243131656477, - 2.5060808694258614, - 2.8001357852615367, - 3.1434784597781356, - 3.515378971992167, - 3.8715773066714485, - 4.492774562512369, - 4.967760064119152, - 5.36384033721051, - 6.0243245343913605, - 6.5741854215377975, - 8.229002553879141, - 10.29875635374084, - 11.00515165562464, - 11.694249657302418, - 12.41507129219129, - 13.006841961524982, - 13.532416721176817, - 13.997830279427646, - 14.394352465518548, - 14.693129405793263, - 15.034574415624407, - 15.268984128553415, - 15.384999010966638, - 15.574629481250478 - ], - "5._96._0.075": [ - 2.2092718103274085, - 2.5553235649685, - 2.8519172404430195, - 3.2005359685491452, - 3.527181564760988, - 4.020726530677376, - 4.7258164668996825, - 5.469429597357325, - 6.799251292463835, - 7.847703644082401, - 8.73938734284763, - 10.225899989962551, - 11.426060102879168, - 14.610999694470571, - 17.745543602190715, - 18.657749583957376, - 19.482463250341194, - 20.290693169572307, - 20.91589699026682, - 21.44995857970152, - 21.906454915070164, - 22.285131532604975, - 22.56643978324661, - 22.88487250584161, - 23.10207842738738, - 23.208985088585454, - 23.383258406779195 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 20.0, - 30.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 30.0 - ], - [ - 5.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 15.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835205704901223, - 3.190293309092156, - 3.5515428750224585, - 4.198094303392608, - 5.114804858477586, - 6.860174201971527, - 9.686650891287966, - 12.817568021087787, - 18.149482626090514, - 21.862742663875764, - 24.6666883110011, - 28.725769332941567, - 31.594233187708163, - 38.0124800793326, - 43.36322623125346, - 44.812055952658994, - 46.09400088910928, - 47.32794651771547, - 48.269503213461185, - 49.0707340228428, - 49.75310123616174, - 50.318625242698786, - 50.73960133988834, - 51.218177300137114, - 51.545285627432804, - 51.7062903257929, - 51.96889527089313 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.195803175961542, - 1.4813847491413084, - 1.8198213217004344, - 2.1114679242247245, - 2.4511928337755835, - 2.7884285340167736, - 3.0455434200924576, - 3.4012192955251606, - 3.663165816253511, - 3.8955879168605954, - 4.317484023957986, - 4.6965576025590074, - 5.946126173848869, - 7.717975190152715, - 8.388494944258165, - 9.086661769424369, - 9.870371145252507, - 10.563331178263832, - 11.221309542651852, - 11.844078767516441, - 12.408973326597458, - 12.856816102611054, - 13.393699704794747, - 13.776834807781226, - 13.971237521445058, - 14.295166176863132 - ], - "5._384._0.0875": [ - 3.5303102229938292, - 4.226046772890181, - 5.216149108049983, - 7.103339563240524, - 9.643040145849088, - 14.032244127098243, - 20.11099765946651, - 25.79041302681861, - 33.896683222712824, - 38.809480946182866, - 42.25517466782903, - 46.94363397079161, - 50.10493992933616, - 56.89828502127495, - 62.42569968958153, - 63.911785765572915, - 65.23300759483486, - 66.50797447478283, - 67.48602685792218, - 68.3198239174181, - 69.03317189786652, - 69.62692166150758, - 70.0694765884, - 70.57410476243466, - 70.91898341274371, - 71.0884864535108, - 71.3641035729667 - ], - "5._48._0.075": [ - 1.5268463243731378, - 1.8679037053125447, - 2.162243131656481, - 2.5060808719674865, - 2.800142513274106, - 3.144594968934317, - 3.5354682688002037, - 3.9583323140882047, - 4.825256483760553, - 5.577985399431248, - 6.250808373641369, - 7.435677678868232, - 8.456579397027829, - 11.514523786407374, - 15.127009267965635, - 16.305925582527454, - 17.428113124092746, - 18.578907150047588, - 19.50453948964067, - 20.316250182134596, - 21.024872190427622, - 21.621262085159454, - 22.067231665796697, - 22.57249773764584, - 22.917597910018237, - 23.08812624452017, - 23.36729099191092 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.555323575600529, - 2.8519325896759256, - 3.202300260062606, - 3.5467624261529918, - 4.144790385713432, - 5.16710899919691, - 6.401286582901264, - 8.823401607802378, - 10.789803518072704, - 12.442866157364218, - 15.114793392375041, - 17.203447631224176, - 22.505859220263005, - 27.513114553177278, - 28.943454273262663, - 30.22726041925208, - 31.47731988336829, - 32.43725559512627, - 33.25486985081253, - 33.950590982730695, - 34.525674253621695, - 34.95250379317669, - 35.43501816445792, - 35.764209643508316, - 35.926367887226945, - 36.19135051501174 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "3_10": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 45.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 45.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 10.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351729176589204, - 3.1876029903474183, - 3.525618555552454, - 4.049378920565002, - 4.699380935279384, - 5.866806605153201, - 7.707596204386038, - 9.684501118969736, - 12.959972539641893, - 15.207903478655764, - 16.902342371039314, - 19.36842071387794, - 21.12558977844932, - 25.12829903045526, - 28.54287318649851, - 29.477996778294155, - 30.310410179262018, - 31.115582463509433, - 31.733373898552383, - 32.25994599550608, - 32.709827261984586, - 33.08361487741937, - 33.36195233374284, - 33.67860390089054, - 33.89494872332765, - 34.00134671230323, - 34.17451258111652 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615408, - 1.4813847491413077, - 1.8198213217004344, - 2.1114679242247263, - 2.451192833240912, - 2.788420993137642, - 3.0450762148749564, - 3.3897661851360392, - 3.622922522370131, - 3.8135365382954944, - 4.131853195644855, - 4.399954421540593, - 5.243313610752027, - 6.40950153470484, - 6.841958611939892, - 7.288399797534311, - 7.784954801978073, - 8.221020086147806, - 8.633021868928239, - 9.022763139003274, - 9.377505138197284, - 9.660538380973746, - 10.004770689609275, - 10.25519421691062, - 10.384118994874596, - 10.602561053125395 - ], - "5._384._0.0875": [ - 3.4966649382012998, - 4.048747893250999, - 4.742333107289083, - 6.0000107061877275, - 7.651339112510335, - 10.414482406311864, - 14.119427309061457, - 17.53415087082843, - 22.425545581865563, - 25.420481927795265, - 27.53816963206626, - 30.44809421695119, - 32.42583840390067, - 36.725589380320294, - 40.26200459457205, - 41.21735612003459, - 42.068516655717644, - 42.89159469955522, - 43.52457314587195, - 44.06438980054489, - 44.526838939988636, - 44.91215638006248, - 45.19932081856392, - 45.526797855220124, - 45.75048864048247, - 45.86035686748851, - 46.038759986308875 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125405, - 2.162243131656477, - 2.5060808694258614, - 2.800135785261536, - 3.1434784601734354, - 3.5153853154170003, - 3.872049204869314, - 4.506735742513772, - 5.018592843415825, - 5.466855207356262, - 6.247351162812301, - 6.911387387486451, - 8.863507463151777, - 11.113009222776139, - 11.842239560357433, - 12.538977098474943, - 13.257828662453905, - 13.842373773270808, - 14.36007373583501, - 14.818093853499157, - 15.209009810587181, - 15.504719686641822, - 15.84442215960059, - 16.07882316059886, - 16.19518161933302, - 16.38593974793012 - ], - "5._96._0.075": [ - 2.2092718103274085, - 2.5553235649685004, - 2.8519172404430204, - 3.2005359704422585, - 3.5271872048270474, - 4.021915465441306, - 4.750923229576864, - 5.5786059413282665, - 7.165800581777533, - 8.422158856271384, - 9.459262170660791, - 11.112572985380107, - 12.390592899328388, - 15.630322652056712, - 18.736641477174715, - 19.638613454077777, - 20.45691349588189, - 21.261702877874743, - 21.88680911726592, - 22.42281300491889, - 22.88266184268964, - 23.26541872705511, - 23.550430661214563, - 23.873891947483116, - 24.094887070764447, - 24.203738527959715, - 24.381206763854202 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "3_11": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 50.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 50.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 50.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 10.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 10.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835172917369345, - 3.18760194156407, - 3.525568370531681, - 4.04877103648699, - 4.69769576838602, - 5.8658447908564835, - 7.717434209776481, - 9.718275341664071, - 13.060546371157432, - 15.374442202099035, - 17.12961325978986, - 19.700606823661907, - 21.544544865173503, - 25.7755770741041, - 29.41183225653176, - 30.410760745551425, - 31.300101509073887, - 32.16038013750023, - 32.82002646810534, - 33.38223789545967, - 33.8622436942247, - 34.26078835495008, - 34.55751936205106, - 34.89494842923561, - 35.12551970775278, - 35.23895522642348, - 35.42371673821543 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.195803175961541, - 1.4813847491413077, - 1.819821321700434, - 2.111467924224724, - 2.451192833240911, - 2.7884209931194546, - 3.0450761706333505, - 3.389752512604718, - 3.6228196926011678, - 3.8132491388709044, - 4.1310560062552595, - 4.39868747881526, - 5.241896148176188, - 6.413275387211524, - 6.849392727621515, - 7.300677979387535, - 7.803986281055883, - 8.24731811720122, - 8.667469437588833, - 9.066272208250895, - 9.430634303693447, - 9.722484076461868, - 10.079161723404981, - 10.34029220323121, - 10.475505190900318, - 10.706239891993773 - ], - "5._384._0.0875": [ - 3.4965894542742135, - 4.04799854064753, - 4.740507439248547, - 5.999618730291386, - 7.6610507476131655, - 10.460430633767627, - 14.24987828770109, - 17.77919320054549, - 22.894502342469647, - 26.059284987175147, - 28.309741310994525, - 31.414731954056787, - 33.53194416044285, - 38.14265762648792, - 41.936940436877656, - 42.961818045444204, - 43.87425106693688, - 44.75601645250454, - 45.433456315201454, - 46.01107186547499, - 46.505566088974845, - 46.91733281754147, - 47.224181170670995, - 47.57400410818487, - 47.812983997306546, - 47.930390796311, - 48.121141787490984 - ], - "5._48._0.075": [ - 1.5268463243731447, - 1.8679037053125414, - 2.1622431316564765, - 2.506080869425861, - 2.8001357852471664, - 3.1434782439928526, - 3.515351469361636, - 3.87174606793782, - 4.505373546077348, - 5.016749712856131, - 5.465326470827821, - 6.248274621656474, - 6.9163120177246595, - 8.89038655766982, - 11.184788727256928, - 11.933904152475412, - 12.6524062728742, - 13.396717521036193, - 14.004544789257194, - 14.544948774348738, - 15.02483361018247, - 15.435833210636368, - 15.747683783381511, - 16.106900456077646, - 16.355493108864398, - 16.479186862445918, - 16.68247583863575 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.5553235649685, - 2.8519172403742936, - 3.2005354779166733, - 3.527155077387271, - 4.021435270350537, - 4.7492466574650205, - 5.577032706823618, - 7.171388177737547, - 8.439706816043635, - 9.490745953798262, - 11.173995278182321, - 12.481793730284808, - 15.823544060301352, - 19.06711466727736, - 20.016984222354065, - 20.881242484434424, - 21.733570770855643, - 22.396857681897966, - 22.966500675061244, - 23.455602487691912, - 23.862877732386814, - 24.16627123184885, - 24.510570481398094, - 24.745915097848037, - 24.86191731813652, - 25.051247902480167 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "3_12": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 55.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 55.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 55.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 10.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 10.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 10.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351729171243214, - 3.187601054132012, - 3.5255259063120996, - 4.048256694884497, - 4.696270298489871, - 5.865031075045978, - 7.7257536460680605, - 9.746912682563382, - 13.146405357336528, - 15.517331945397682, - 17.325516103835923, - 19.989293631704026, - 21.91114068481085, - 26.351668453359306, - 30.197120085575673, - 31.25711960877503, - 32.20115744723729, - 33.11453711393264, - 33.81455685665782, - 34.41118027725483, - 34.9202668671387, - 35.342697684485955, - 35.65717479122515, - 36.01463898976846, - 36.258935571276346, - 36.37916738353926, - 36.57514749644587 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.481384749141308, - 1.8198213217004335, - 2.1114679242247227, - 2.451192833240911, - 2.7884209931040687, - 3.045076133198145, - 3.3897409435402133, - 3.6227326828973156, - 3.813005956081982, - 4.130381490262945, - 4.397615605169147, - 5.240697369979265, - 6.416465238224162, - 6.8556810914084645, - 7.311067827483638, - 7.820104659014642, - 8.269615147421211, - 8.696717081073842, - 9.10327477397851, - 9.475905193638114, - 9.775372518875297, - 10.142894543525387, - 10.4134892428957, - 10.554350655169035, - 10.796401047047395 - ], - "5._384._0.0875": [ - 3.496525585804449, - 4.047364523300975, - 4.738963238999856, - 5.999286529809756, - 7.669263375407443, - 10.499446208611992, - 14.361503416088373, - 17.990513583562944, - 23.30515990660234, - 26.62502371353094, - 28.99866481340433, - 32.287227650990936, - 34.53733805234568, - 39.44751547751874, - 43.49209513216288, - 44.584614911654484, - 45.556619366900826, - 46.49540263579172, - 47.21596599048325, - 47.8302310399762, - 48.35575455433802, - 48.79310048411075, - 49.11898117113028, - 49.490397040407885, - 49.74415379347651, - 49.86885040739751, - 50.07155652334508 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125418, - 2.162243131656476, - 2.506080869425862, - 2.8001357852350077, - 3.143478061070816, - 3.5153228304050113, - 3.871489571215379, - 4.504221148991917, - 5.015190938094992, - 5.46403397849071, - 6.249054628163599, - 6.920474080425104, - 8.913168721553468, - 11.245983008213736, - 12.012204058307491, - 12.749545560837298, - 13.516044698847935, - 14.144355156502044, - 14.704915538966729, - 15.204424582733576, - 15.633661636662714, - 15.96033525806803, - 16.337696741631706, - 16.599666316734886, - 16.73034326323736, - 16.94568251673763 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235649685004, - 2.85191724031614, - 3.200535061164258, - 3.52712789263915, - 4.021028962776988, - 4.747828461447667, - 5.5757023639921846, - 7.176110780995019, - 8.454555579364747, - 9.517422085038572, - 11.226203173956176, - 12.559536520581906, - 15.989840267789255, - 19.35534602878828, - 20.348769052917326, - 21.25522525048462, - 22.151654238861763, - 22.850699773446074, - 23.45209194097165, - 23.968976469234217, - 24.399653604478313, - 24.72065603200915, - 25.08497100714779, - 25.33413794242311, - 25.457046736612956, - 25.657871414186317 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "3_13": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 60.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 60.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 60.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 10.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 10.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 10.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 10.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835172916914305, - 3.1876002934759677, - 3.525489508430597, - 4.047815846593318, - 4.69504878847922, - 5.864333697071719, - 7.732880935534273, - 9.771501957614763, - 13.220561599021373, - 15.641266447182696, - 17.496073500053292, - 20.242315255814457, - 22.2342920997709, - 26.867059387021403, - 30.909720338108432, - 32.028141199270515, - 33.024724085558724, - 33.98928669477665, - 34.72828171110082, - 35.35816826017557, - 35.89536787328923, - 36.34088338720324, - 36.67251246554157, - 37.04933303793817, - 37.30689759525256, - 37.43370595624031, - 37.64056182501586 - ], - "5._24._0.075": [ - 0.8740059532267972, - 1.195803175961542, - 1.4813847491413068, - 1.819821321700434, - 2.1114679242247245, - 2.451192833240913, - 2.788420993090879, - 3.04507610111083, - 3.3897310271995487, - 3.6226581032245933, - 3.8127975146688273, - 4.1298033547653485, - 4.39669696927479, - 5.239670292881503, - 6.419196912662795, - 6.861069632866126, - 7.319973845918856, - 7.8339311389450685, - 8.288759517045783, - 8.721859381920225, - 9.135128392610397, - 9.514938696475395, - 9.821046691519475, - 10.198081486173209, - 10.477069883954801, - 10.623008550293827, - 10.8754622470328 - ], - "5._384._0.0875": [ - 3.4964708432588196, - 4.046821116513314, - 4.73764007330228, - 5.999001401507786, - 7.67629920292421, - 10.532987264162399, - 14.458112754728523, - 18.174599666896764, - 23.667411922608114, - 27.128955239275, - 29.61678629607734, - 33.07785632825493, - 35.45441743981722, - 40.65275110176261, - 44.94034730011483, - 46.09872930752453, - 47.12871187188901, - 48.12295879785625, - 48.88540543179596, - 49.53525585862141, - 50.09086983509031, - 50.55299177824653, - 50.89730341861964, - 51.28961758390209, - 51.55767876440547, - 51.6894358336446, - 51.90373512336941 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.867903705312544, - 2.162243131656476, - 2.5060808694258583, - 2.800135785224582, - 3.143477904280504, - 3.5152982827376067, - 3.871269719623683, - 4.503233548320705, - 5.013855426880181, - 5.4629268963001465, - 6.2497221980179365, - 6.924037968581767, - 8.932724142814548, - 11.298775166460373, - 12.079864030128823, - 12.833658040575322, - 13.619637730314368, - 14.266065718472499, - 14.844584745625529, - 15.36174080258417, - 15.807548236636638, - 16.147829824772582, - 16.542048128642143, - 16.81661758721264, - 16.953940466743298, - 17.18087160310948 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235649685004, - 2.8519172402662947, - 3.2005347039479077, - 3.5271045914327526, - 4.02068070742273, - 4.746613187180097, - 5.574562693904319, - 7.180154819130176, - 8.46728344665813, - 9.540313501425647, - 11.271124617086672, - 12.62659389585306, - 16.13444929447562, - 19.6087002085521, - 20.6417543202309, - 21.58694879252136, - 22.524253361003694, - 23.256757896701572, - 23.88808941201745, - 24.431347232089262, - 24.884360827209584, - 25.22224071412789, - 25.605802600560484, - 25.86830386071744, - 25.997894628224234, - 26.209877024672302 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "4_5": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 20.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83517291964452, - 3.1876101757539033, - 3.525952533029806, - 4.05211363467208, - 4.6938069440163, - 5.78058550436625, - 7.420593520479523, - 9.159622018026033, - 11.965509667083033, - 13.807711943883904, - 15.149082048919817, - 17.037210672860628, - 18.340130310898758, - 21.217473513072264, - 23.60864229366581, - 24.257427338066265, - 24.835595044653477, - 25.39544939590001, - 25.826593778720277, - 26.19431780813388, - 26.50949834289068, - 26.77218691852415, - 26.967918531277338, - 27.19102130267829, - 27.34337585972222, - 27.4181972247516, - 27.539599393683137 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.195803175961542, - 1.4813847491413066, - 1.8198213217004344, - 2.1114679242247285, - 2.4511928332409116, - 2.7884209932623367, - 3.045076518230904, - 3.38985905028238, - 3.6235840764481617, - 3.8151720590575846, - 4.134398178917575, - 4.399472215935768, - 5.196052968742087, - 6.241796315968224, - 6.625043308760825, - 7.019204966521843, - 7.455428246531946, - 7.8352792745551625, - 8.19000685408261, - 8.520338648061067, - 8.815217930037624, - 9.045500576623557, - 9.318444579888297, - 9.510760590633401, - 9.607234163454487, - 9.766125270029438 - ], - "5._384._0.0875": [ - 3.4971609162458233, - 4.051656615125228, - 4.732248351210825, - 5.893919652077772, - 7.3631917153337465, - 9.787660788126857, - 12.926033000028275, - 15.661017953707479, - 19.346600513663347, - 21.496639445791523, - 22.981860600869524, - 24.99308548712326, - 26.345530187761003, - 29.276388573997952, - 31.689549865259668, - 32.342595899677626, - 32.926373526045, - 33.4925044471273, - 33.92969208257005, - 34.30285565404692, - 34.62342694833785, - 34.89119459294894, - 35.09082250719603, - 35.31874308885447, - 35.47435720985385, - 35.550709681997546, - 35.67440933495609 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125458, - 2.1622431316564765, - 2.5060808694258614, - 2.8001357853600726, - 3.1434799422447908, - 3.515612517816602, - 3.873773290653522, - 4.506122795199485, - 4.997198890417131, - 5.41272372077986, - 6.11681051077621, - 6.707327803870584, - 8.429089305083417, - 10.36366447234366, - 10.968263993871286, - 11.534670954770592, - 12.10622150797133, - 12.561157983519418, - 12.95626052909181, - 13.300027412729714, - 13.589249498360601, - 13.805461423269591, - 14.051629097627456, - 14.219885773491233, - 14.302747448049644, - 14.437444554948076 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323564968504, - 2.851917240914291, - 3.200539346278396, - 3.5274031613593095, - 4.02432205207084, - 4.744889028751256, - 5.520988392549123, - 6.943133814435939, - 8.053168239942085, - 8.962949116562063, - 10.392868307378329, - 11.473530341995346, - 14.101483788574436, - 16.464069579688307, - 17.12428878395319, - 17.716151871093476, - 18.29245407136119, - 18.737611633137337, - 19.117499424844905, - 19.442986678155897, - 19.71391981844301, - 19.915529683643555, - 20.144650636173814, - 20.300975362123253, - 20.377780106752258, - 20.502493352845047 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "4_6": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835172918961964, - 3.1876077030221746, - 3.5258331849493194, - 4.050510527423462, - 4.6875358104459455, - 5.763054549531828, - 7.394144426998772, - 9.153863581243023, - 12.076108771897163, - 14.044790624626577, - 15.498443845100452, - 17.566854807807655, - 19.00626350925429, - 22.203908259017155, - 24.869656663923113, - 25.59335433266986, - 26.237485729078696, - 26.86062404764487, - 27.339747584657555, - 27.74821904389734, - 28.09790935519036, - 28.38904155777396, - 28.605911231709207, - 28.85295031407458, - 29.02166508893666, - 29.104552225057226, - 29.23915973148136 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004342, - 2.111467924224728, - 2.4511928332409103, - 2.788420993219474, - 3.045076413945704, - 3.3898267332284386, - 3.6233370217379157, - 3.8144567358471533, - 4.132163043503081, - 4.395301996674714, - 5.183886157157078, - 6.221530079956745, - 6.604806774222066, - 7.002081207305576, - 7.44620896660154, - 7.837444575811893, - 8.206926007248612, - 8.554917866962386, - 8.868973604799308, - 9.116574360533686, - 9.412781674942373, - 9.623353597521293, - 9.729629000310686, - 9.905628228999316 - ], - "5._384._0.0875": [ - 3.4969805319915226, - 4.049620081733721, - 4.724847849018053, - 5.874471258350123, - 7.336209379180362, - 9.798097948543466, - 13.090738857806173, - 16.04076772811319, - 20.09679516696246, - 22.49149159865858, - 24.15329213670406, - 26.40837255241915, - 27.92673468797962, - 31.213803225273367, - 33.91507942055283, - 34.64528915089786, - 35.29731069658607, - 35.92901793983281, - 36.416215928480646, - 36.831951205765286, - 37.18879666762015, - 37.486644467998254, - 37.70867687081119, - 37.96209233759232, - 38.13513903409502, - 38.22007141675804, - 38.35776421710837 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.50608086942586, - 2.8001357853262006, - 3.1434794326468762, - 3.515532236363175, - 3.8730185060347346, - 4.5016186698654055, - 4.988001465581483, - 5.39908254739294, - 6.096358101366976, - 6.683501137191759, - 8.421557592648387, - 10.43591946863569, - 11.079753455501395, - 11.68843722508494, - 12.307739877888435, - 12.804009105926998, - 13.237137698921986, - 13.615346100169361, - 13.93431480393316, - 14.173125855122136, - 14.44514376095033, - 14.63122820633119, - 14.722973028779395, - 14.8723097797544 - ], - "5._96._0.075": [ - 2.2092718103274027, - 2.5553235649685018, - 2.8519172407522912, - 3.2005381851839534, - 3.527326987481365, - 4.023086702457184, - 4.738577851516029, - 5.506630901365102, - 6.917796325536122, - 8.031533120591579, - 8.956672664295077, - 10.435417905360405, - 11.572155871183657, - 14.394417604782115, - 16.985543010715418, - 17.71613737544944, - 18.372130170565537, - 19.011625575620993, - 19.505563106313698, - 19.92712729063385, - 20.288041928414057, - 20.58817197638323, - 20.81141895800279, - 21.064877851195654, - 21.23780314460188, - 21.32280258510182, - 21.460957618508484 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "4_7": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351729184310863, - 3.187605779786425, - 3.5257403588072855, - 4.0492637898046455, - 4.682663916059215, - 5.7497347921176205, - 7.375905721537113, - 9.15173845372725, - 12.161840019293384, - 14.231880555008651, - 15.779441375472862, - 18.004431807756962, - 19.566345146273502, - 23.06061861879693, - 25.987221252867094, - 26.782708667341943, - 27.49007651655167, - 28.173884598211384, - 28.698921712504987, - 29.146371524870975, - 29.52901089214577, - 29.847249175927015, - 30.084253549884693, - 30.354065501404136, - 30.538348968932766, - 30.628918114242666, - 30.776127014364754 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615422, - 1.4813847491413075, - 1.8198213217004355, - 2.1114679242247285, - 2.4511928332409108, - 2.788420993186134, - 3.045076332834991, - 3.389801597744311, - 3.6231448685725804, - 3.8139003801007396, - 4.130424773525185, - 4.392059883687705, - 5.17454473621128, - 6.207065787581612, - 6.5908237981659585, - 6.990629869845069, - 7.440596986040388, - 7.84016815625442, - 8.220653512254856, - 8.582196132188283, - 8.91145343900644, - 9.17322463804432, - 9.489163200044548, - 9.715839290633093, - 9.831004955998706, - 10.022946843816802 - ], - "5._384._0.0875": [ - 3.4968402459763515, - 4.048036407775718, - 4.719101919680178, - 5.85980791253314, - 7.317574829778804, - 9.808048514589679, - 13.218897014227998, - 16.346018060112396, - 20.72812734011748, - 23.348151881021572, - 25.175919596364324, - 27.663217456671568, - 29.34103708177526, - 32.97201595504033, - 35.95183263998288, - 36.75660669407012, - 37.474452630169495, - 38.169309586601166, - 38.704547072702276, - 39.161154055243294, - 39.55276471010081, - 39.87939650732782, - 40.12286245900509, - 40.4006501940374, - 40.59036524262374, - 40.68350602260782, - 40.83460429057368 - ], - "5._48._0.075": [ - 1.52684632437314, - 1.8679037053125456, - 2.1622431316564765, - 2.506080869425859, - 2.8001357852998567, - 3.1434790362929435, - 3.5154697952987837, - 3.8724314709528036, - 4.4981175648179486, - 4.980875531266282, - 5.388620834554591, - 6.081250402229724, - 6.666605925280091, - 8.417741276950908, - 10.492093811356062, - 11.166976341501423, - 11.810194915424471, - 12.469656120671925, - 13.00164301393173, - 13.468371011513677, - 13.877605679622594, - 14.22380985595394, - 14.483571094842059, - 14.779795823835961, - 14.982717349718277, - 15.08290424667884, - 15.246238680458847 - ], - "5._96._0.075": [ - 2.2092718103274005, - 2.5553235649685013, - 2.8519172406262894, - 3.2005372821105076, - 3.5272677411744464, - 4.022125937124743, - 4.7336751625562, - 5.495613849846325, - 6.8998308415910214, - 8.017338941791289, - 8.95393486264382, - 10.468951438153287, - 11.648714196825944, - 14.629601349116921, - 17.421952725019192, - 18.21698164372945, - 18.93243995827619, - 19.63113703362167, - 20.17108004145561, - 20.632127353059186, - 21.026683395251307, - 21.35456758904455, - 21.598395527669066, - 21.874993663202247, - 22.063717231376177, - 22.15652858727655, - 22.30753151860715 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "7_7": { + }, + "7_8": { + }, + "6_6": { + }, + "6_7": { + }, + "6_8": { + }, + "6_9": { + }, + "7_10": { + }, + "8_9": { + }, + "9_10": { + }, + "5_5": { + }, + "5_6": { + }, + "5_7": { + }, + "5_8": { + }, + "5_9": { + }, + "6_10": { + }, + "3_10": { + }, + "4_5": { + }, + "4_6": { + }, + "4_7": { }, "4_8": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835172918006393, - 3.1876042411978553, - 3.5256660979836165, - 4.048266477188433, - 4.678768851669018, - 5.739117069458447, - 7.361793238007429, - 9.150940499466731, - 12.230382253809593, - 14.38286833121705, - 16.0092513280118, - 18.369926587423958, - 20.041193341585334, - 23.80873769572107, - 26.982656986749706, - 27.846935901877355, - 28.614984260472816, - 29.35705396868417, - 29.92612958351552, - 30.410960911977313, - 30.825149947235815, - 31.169300648129674, - 31.42554531788392, - 31.717094969141165, - 31.916243718251007, - 32.01415422062864, - 32.17342909263989 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615422, - 1.4813847491413077, - 1.8198213217004353, - 2.1114679242247267, - 2.4511928332409125, - 2.7884209931594612, - 3.045076267946422, - 3.389781489358436, - 3.6229911463541593, - 3.8134552997522118, - 4.129034257586797, - 4.389466815672509, - 5.167087215031027, - 6.195713737158889, - 6.580044036365015, - 6.982014375391867, - 7.436656813429096, - 7.842739592562435, - 8.231817492736575, - 8.604063085026402, - 8.945562107988184, - 9.219002607207443, - 9.551661808202514, - 9.79246620993239, - 9.915647788313224, - 10.122386961242835 - ], - "5._384._0.0875": [ - 3.496728025268031, - 4.046769653441883, - 4.714508934705566, - 5.848132621465119, - 7.303147688027152, - 9.816819680889695, - 13.321510888008158, - 16.59553916640079, - 21.263679052197755, - 24.089982207536448, - 26.072907439466864, - 28.78047279289825, - 30.611178778252057, - 34.57402806773173, - 37.82343636455381, - 38.70039035136525, - 39.48185291465819, - 40.23765385248561, - 40.819142953381615, - 41.315080416804655, - 41.74008899572019, - 42.09433082732998, - 42.35835090035965, - 42.65949421245082, - 42.86518542073209, - 42.966198089955505, - 43.13016963976938 - ], - "5._48._0.075": [ - 1.5268463243731432, - 1.8679037053125407, - 2.1622431316564765, - 2.5060808694258596, - 2.8001357852787785, - 3.1434787192097993, - 3.5154198424888783, - 3.8719618552433253, - 4.495317764902503, - 4.975180588849802, - 5.38026965451384, - 6.069269598253574, - 6.653391527203778, - 8.415443821732918, - 10.537012645241475, - 11.23683832361941, - 11.908495413314549, - 12.601769239871638, - 13.1645430357506, - 13.66081458648382, - 14.09784544243856, - 14.468860735683993, - 14.74796927056448, - 15.06681880681194, - 15.285643499697485, - 15.393862887105179, - 15.570610715981447 - ], - "5._96._0.075": [ - 2.2092718103274014, - 2.5553235649685, - 2.851917240525495, - 3.200536559651756, - 3.5272203441557424, - 4.021357363932796, - 4.729755541449148, - 5.486820160821196, - 6.885755294310318, - 8.006727643784446, - 8.952539982614386, - 10.496001174224421, - 11.709828252365519, - 14.821522903041293, - 17.790354084932996, - 18.644078925465404, - 19.41441599377918, - 20.168378204507142, - 20.751622059252178, - 21.250048561457113, - 21.676568118118222, - 22.030878664363115, - 22.294328399718342, - 22.59299240108333, - 22.79680142573057, - 22.897086582988912, - 23.06041564974294 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "4_9": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 40.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 40.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 40.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83517291765892, - 3.187602982352677, - 3.5256053391873565, - 4.04745054536083, - 4.675583597915248, - 5.730447794451338, - 7.350337665291939, - 9.150554688408526, - 12.286509205798117, - 14.507176440378153, - 16.200216428638292, - 18.678666263685415, - 20.447321067388216, - 24.46569286067437, - 27.87364225503123, - 28.803818321918136, - 29.630130100937535, - 30.428221758462886, - 31.039619079717376, - 31.560379506478533, - 32.00485512931413, - 32.37384673665776, - 32.64852994454906, - 32.96089142723196, - 33.17427716711755, - 33.27922515105846, - 33.45008904225406 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615408, - 1.4813847491413077, - 1.8198213217004344, - 2.1114679242247263, - 2.451192833240911, - 2.7884209931376414, - 3.0450762148557757, - 3.38976503704367, - 3.6228653738375076, - 3.8130911459124053, - 4.127896628869495, - 4.387345625558778, - 5.160994121177612, - 6.1864693859244895, - 6.571312357494993, - 6.975105582922639, - 7.433601237790833, - 7.844974687605468, - 8.241003205776835, - 8.621932326860938, - 8.973466523626684, - 9.256615734842338, - 9.603491961349873, - 9.856663347593996, - 9.987042294485457, - 10.207466551700795 - ], - "5._384._0.0875": [ - 3.4966362136821494, - 4.045733340264032, - 4.710753511690287, - 5.838603113043211, - 7.291436569993537, - 9.824260223571406, - 13.405615844110969, - 16.802811266857148, - 21.721876378174834, - 24.736278964834206, - 26.863638943798247, - 29.779412724801215, - 31.756368423736298, - 36.03926021426468, - 39.54983750387637, - 40.49677051757302, - 41.33982464612402, - 42.15455528147514, - 42.78066742763326, - 43.314532501288646, - 43.77169548866444, - 44.1524802806459, - 44.43625513571722, - 44.75983010798709, - 44.980868437374475, - 45.089447206632535, - 45.26580858010412 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125405, - 2.162243131656477, - 2.5060808694258605, - 2.8001357852615354, - 3.143478459778138, - 3.515378972035553, - 3.871577632377447, - 4.493027735637699, - 4.97052478116828, - 5.373446208188501, - 6.059495891903427, - 6.6426448570915735, - 8.413783404942896, - 10.57378376575409, - 11.29402254217491, - 11.989364879041675, - 12.711263496016072, - 13.300610964664298, - 13.822822179419028, - 14.284682079688448, - 14.678222302301359, - 14.975141628068924, - 15.315095338546186, - 15.548936295904666, - 15.664803661652305, - 15.854426274154452 - ], - "5._96._0.075": [ - 2.209271810327408, - 2.5553235649685, - 2.8519172404430213, - 3.2005359685491497, - 3.5271815647945406, - 4.020728557154013, - 4.726550247529513, - 5.479636435020345, - 6.874298467262564, - 7.998222214282798, - 8.951635675476409, - 10.518202570482739, - 11.759745208235087, - 14.98067666272447, - 18.104205306414826, - 19.011220642657722, - 19.832021330180762, - 20.637415092730787, - 21.26133206276325, - 21.795111770169413, - 22.252004723197587, - 22.631506140623678, - 22.913697632919366, - 23.23345743261951, - 23.45171318755091, - 23.559171019427765, - 23.734364222442366 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + }, + "5_10": { + }, + "9_9": { + }, + "7_9": { + }, + "8_10": { + }, + "8_8": { } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json index 0443fd130e..9d2c3c1a31 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json @@ -1,4 +1,6 @@ { + "10_10": { + }, "3_4": { "1": { "bore_locations": [ @@ -218,6 +220,16 @@ } }, "3_5": { + }, + "3_6": { + }, + "3_7": { + }, + "3_8": { + }, + "3_9": { + }, + "3_3": { "1": { "bore_locations": [ [ @@ -247,169 +259,153 @@ [ 10.0, 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 ] ], "g": { "5._192._0.08": [ - 2.835166959499572, - 3.187125521522206, - 3.521463685390284, - 4.0292708101078425, - 4.644904567747859, - 5.71312819879793, - 7.307316673339804, - 8.909872319261455, - 11.35072167018288, - 12.895494747737084, - 14.003407905474937, - 15.547938805845172, - 16.60721797341642, - 18.942663349937895, - 20.88642415471305, - 21.414574413114533, - 21.88636839767081, - 22.344045572738686, - 22.697394497134884, - 22.998976881618432, - 23.25791886089577, - 23.474073345498063, - 23.63518508430462, - 23.818982153138496, - 23.944474714533282, - 24.006070079545342, - 24.10588687980541 + 2.8351635568339257, + 3.18685987649175, + 3.5194341168753853, + 4.021964695453296, + 4.625373168858598, + 5.631213203703021, + 7.017734131113873, + 8.301128331626503, + 10.117778789699045, + 11.210610651605968, + 11.976583504775217, + 13.028692005585269, + 13.742865870882106, + 15.311494952074163, + 16.618169400815415, + 16.97370980694966, + 17.292351934429536, + 17.602231685890924, + 17.842328567513636, + 18.047436530328493, + 18.223984896573956, + 18.37169673522136, + 18.48184538753949, + 18.60766758338057, + 18.693552413788066, + 18.735670645551725, + 18.803797793376237 ], "5._24._0.075": [ 0.8740059532267965, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.111467924224729, - 2.451192833143698, - 2.7884196222714364, - 3.044991761646357, - 3.3878360996302237, - 3.6167568401041454, - 3.8018743251439515, - 4.107449030686344, - 4.36157985013461, - 5.140893214380187, - 6.167565736488154, - 6.532939316352233, - 6.900217762443361, - 7.296936524147332, - 7.634356648978209, - 7.943557694081454, - 8.226800511414552, - 8.476283596226876, - 8.669254929778113, - 8.89631837461781, - 9.05540591311694, - 9.134903266625964, - 9.265449892837756 + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004349, + 2.1114679242247276, + 2.4511928330881463, + 2.7884188390440285, + 3.0449438060593743, + 3.3868270121676423, + 3.6139397405790454, + 3.7971850654668238, + 4.098986094465467, + 4.3483461306850195, + 5.091563856634515, + 6.003348584673112, + 6.30869169255662, + 6.606373821842283, + 6.918310269197569, + 7.176309365099972, + 7.407231942536657, + 7.614477838086076, + 7.793880568509998, + 7.930774556315486, + 8.090147260210866, + 8.200733499237531, + 8.255609007591945, + 8.345178145421313 ], "5._384._0.0875": [ - 3.4913458659637997, - 4.025031445778259, - 4.679459748673599, - 5.823514922526518, - 7.2496851339530926, - 9.465709095419118, - 12.162871522713194, - 14.430178619551123, - 17.426918448409662, - 19.15929141380058, - 20.353054328217997, - 21.969602052437914, - 23.0569638692773, - 25.421183037493776, - 27.375655065646225, - 27.905611261031314, - 28.380117646208024, - 28.840909851662392, - 29.197383891971214, - 29.5017622561314, - 29.763531311969654, - 29.982392436026295, - 30.145572332129515, - 30.331953946483488, - 30.459173127738946, - 30.521564128069652, - 30.62254759778572 + 3.4888288086422636, + 4.016644434684756, + 4.656097350048851, + 5.724643914605977, + 6.959907389349164, + 8.718829385823275, + 10.692998326451791, + 12.268677784338763, + 14.289104442978177, + 15.439317116143096, + 16.228160365480026, + 17.295731529216958, + 18.01381604634192, + 19.582369160770195, + 20.886702784603084, + 21.241361732916218, + 21.559695690469532, + 21.869461495310855, + 22.109738789160463, + 22.315010727642687, + 22.4918421881964, + 22.639906318278147, + 22.75031584383327, + 22.876508470046037, + 22.962608610867996, + 23.004802522166397, + 23.072995900320393 ], "5._48._0.075": [ - 1.5268463243731416, - 1.8679037053125453, - 2.1622431316564765, - 2.5060808689637453, - 2.800134562146769, - 3.143277867550195, - 3.512110701279523, - 3.8597749208835066, - 4.465308288754424, - 4.94262858930153, - 5.352657638814721, - 6.048496013896075, - 6.623113848411969, - 8.221987555057126, - 9.908799233756627, - 10.419596527986892, - 10.893552161184349, - 11.368272036526335, - 11.744278866087644, - 12.069981280671444, - 12.353067937004344, - 12.591283097765539, - 12.769461842221771, - 12.972723000760597, - 13.111741413849153, - 13.180171278848512, - 13.291295356631528 + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656477, + 2.506080868699679, + 2.800133863322582, + 3.14316472586218, + 3.5104718549266547, + 3.854845417542254, + 4.451018321828257, + 4.9116776892091, + 5.297016704953429, + 5.92640690466214, + 6.423636872828878, + 7.719212181270855, + 8.980633064022445, + 9.346857075629213, + 9.682185873929484, + 10.01431289649661, + 10.275472721434395, + 10.500494849414341, + 10.695612308471505, + 10.859690701170848, + 10.982362439165628, + 11.122558142675226, + 11.218429945956188, + 11.265557218538145, + 11.341930946657234 ], "5._96._0.075": [ - 2.2092718103274045, - 2.555323563035404, - 2.851914450439797, - 3.2002206780378732, - 3.5239856416868593, - 4.0050212111086045, - 4.696255292797876, - 5.45794678858022, - 6.8523229596520485, - 7.899174082572373, - 8.727630982952416, - 9.986721281780245, - 10.912700366416587, - 13.108650994034377, - 15.04793483199602, - 15.586871383611614, - 16.070555900739027, - 16.541880472649677, - 16.906704976274135, - 17.218339711615098, - 17.485917232552556, - 17.709122540263706, - 17.87536677621204, - 18.064622313136528, - 18.19378180185433, - 18.25720919402969, - 18.360067072826144 + 2.2092619209324726, + 2.5553055502990443, + 2.8518822508487456, + 3.199985852874824, + 3.5222728206245484, + 3.9984334914448545, + 4.675890638522396, + 5.39760263087033, + 6.630658201542146, + 7.489891206956369, + 8.137933780063445, + 9.080671485080162, + 9.748385559930018, + 11.273174243711193, + 12.580380605681452, + 12.94004337232528, + 13.262876866410474, + 13.577523541572688, + 13.821599056356835, + 14.03034643518104, + 14.210092929480233, + 14.360493279700068, + 14.472700352633987, + 14.600821880462636, + 14.688349595590935, + 14.731324538344243, + 14.800941414503159 ] }, "logtime": [ @@ -443,7 +439,27 @@ ] } }, - "3_6": { + "6_6": { + }, + "6_7": { + }, + "6_8": { + }, + "6_9": { + }, + "7_10": { + }, + "4_10": { + }, + "8_8": { + }, + "8_9": { + }, + "9_10": { + }, + "3_10": { + }, + "4_4": { "1": { "bore_locations": [ [ @@ -458,12 +474,16 @@ 10.0, 0.0 ], + [ + 15.0, + 0.0 + ], [ 0.0, 5.0 ], [ - 10.0, + 15.0, 5.0 ], [ @@ -471,7 +491,7 @@ 10.0 ], [ - 10.0, + 15.0, 10.0 ], [ @@ -479,413 +499,155 @@ 15.0 ], [ - 10.0, + 15.0, 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 ] ], "g": { "5._192._0.08": [ - 2.835167875603252, - 3.1871970416663165, - 3.5220101721476067, - 4.031240028495605, - 4.6501631955453515, - 5.734783968720361, - 7.384632084417677, - 9.08126154604247, - 11.733937470740669, - 13.450913327561594, - 14.697409931934853, - 16.45120992701785, - 17.66279306840409, - 20.3468838007641, - 22.586110573451368, - 23.194772299633314, - 23.737831944817636, - 24.26414955519051, - 24.669876455789225, - 25.016033964075223, - 25.31291601663492, - 25.56048525514763, - 25.744972177416336, - 25.95530942131925, - 26.098939907554126, - 26.169465466711348, - 26.283852295461894 + 2.8351663640324887, + 3.1870790258551014, + 3.5210961279932578, + 4.026258003624487, + 4.620874215132077, + 5.586704760859376, + 6.975975240133478, + 8.385515378636665, + 10.572004132104373, + 11.970612978165319, + 12.977584396047362, + 14.385269064815402, + 15.352257347698204, + 17.488292201888967, + 19.26916115727457, + 19.75338533767014, + 20.18611186851185, + 20.606034675672227, + 20.930371875826708, + 21.20720898473744, + 21.444958809834272, + 21.643459009031766, + 21.791407096906152, + 21.960191851340355, + 22.075419755393312, + 22.131968272416074, + 22.22358119190958 ], "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413072, - 1.8198213217004355, - 2.111467924224728, - 2.451192833158652, - 2.7884198331403582, - 3.045004672769633, - 3.388107784984605, - 3.6175154184662177, - 3.8031373350741844, - 4.109729271823215, - 4.365139759910043, - 5.153955597194153, - 6.210853926422769, - 6.592691644657162, - 6.980022527987565, - 7.4025014350709055, - 7.765501574665452, - 8.101268216962444, - 8.411675246313921, - 8.687475025368174, - 8.902437505358291, - 9.157209865225674, - 9.337000197656065, - 9.427306815703629, - 9.576316229475234 + 0.8740059532267964, + 1.195803175961543, + 1.4813847491413061, + 1.8198213217004344, + 2.1114679242247276, + 2.4511928331339754, + 2.788419485206642, + 3.044983369398642, + 3.387658420844403, + 3.61621087467806, + 3.800647721718858, + 4.102447078162199, + 4.3482454201841785, + 5.063761085434357, + 5.961844910337476, + 6.281053980373686, + 6.603822067448765, + 6.95537175531292, + 7.256945499031273, + 7.535358466093733, + 7.792070377777192, + 8.019450760285471, + 8.19605530658293, + 8.404727988051604, + 8.551378686479197, + 8.624779509112326, + 8.745473319995293 ], "5._384._0.0875": [ - 3.492024137406447, - 4.027293311777627, - 4.685745220359767, - 5.849630471308272, - 7.327017149653598, - 9.680469594956925, - 12.63134716477158, - 15.173095150536488, - 18.592251105784502, - 20.589800303714068, - 21.97182217181273, - 23.846439642542162, - 25.10866172495257, - 27.849785182011164, - 30.111313129328185, - 30.723866990481696, - 31.271728293277356, - 31.803265511092647, - 32.213961193154915, - 32.56454795365723, - 32.865818267121476, - 33.117529576693656, - 33.305187172224294, - 33.51945801339003, - 33.665737731685745, - 33.73749947899057, - 33.85372710274107 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125465, - 2.162243131656475, - 2.5060808690348377, - 2.8001347502917406, - 3.1433083288095505, - 3.512551963340742, - 3.861102839483403, - 4.469159939592605, - 4.950889951527631, - 5.367335572984737, - 6.080440244925044, - 6.6756416136487555, - 8.362820264510765, - 10.193789641219757, - 10.758918683989545, - 11.287067530551077, - 11.819679136119714, - 12.243765332769712, - 12.61264733075795, - 12.934155065922807, - 13.205195379931933, - 13.40818897765568, - 13.639811538319773, - 13.798359480325084, - 13.876489894690433, - 14.003540968323325 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235633328075, - 2.8519148795441818, - 3.200268275165373, - 3.5244188384440207, - 4.006732310496652, - 4.701558385188676, - 5.4735055032008715, - 6.909503153296633, - 8.007896097083322, - 8.889537380460428, - 10.249462852845713, - 11.264351406727839, - 13.713037213077811, - 15.914149688864603, - 16.530489051191996, - 17.084309756106933, - 17.624452349705088, - 18.042427326254813, - 18.39951098693807, - 18.705867206336457, - 18.961176691326557, - 19.15127273904355, - 19.36748237857211, - 19.515042862574564, - 19.58754125184745, - 19.705224061076315 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "3_7": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 10.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835168547412995, - 3.1872494898604957, - 3.522410946467774, - 4.032684670090972, - 4.654023445970472, - 5.750715925406672, - 7.441794543779469, - 9.209065650562295, - 12.028211908191846, - 13.887871931821303, - 15.253208244697303, - 17.192063513139097, - 18.542033858374815, - 21.550993372874228, - 24.071119764312858, - 24.7568454640089, - 25.3681009382456, - 25.96007756211007, - 26.415806384359716, - 26.804500877436972, - 27.137519762034753, - 27.414955087466684, - 27.621655802131386, - 27.857185290816126, - 28.018036820617635, - 28.09704802500887, - 28.225304676666546 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004355, - 2.111467924224727, - 2.451192833169619, - 2.788419987777567, - 3.045014140927697, - 3.3883070230574344, - 3.6180717439013645, - 3.804063683447519, - 4.11140211546309, - 4.367751956161955, - 5.163554966124934, - 6.242767904109348, - 6.636768087182504, - 7.039017356441888, - 7.480903481108109, - 7.863533793910553, - 8.220093365652007, - 8.55225931305743, - 8.849672308609028, - 9.083140676566902, - 9.361880434062318, - 9.560131691390612, - 9.660293492069464, - 9.826512606569564 - ], - "5._384._0.0875": [ - 3.492521703980014, - 4.028952948525272, - 4.690360254763027, - 5.868855167821229, - 7.384184533385384, - 9.841524860263968, - 12.99462018636414, - 15.768848563789204, - 19.566011203576267, - 21.810059371382483, - 23.37007702002737, - 25.49127964773133, - 26.921820435757866, - 30.02683239339849, - 32.58488775849014, - 33.27714723415718, - 33.89566474901201, - 34.49523522545308, - 34.9579494645981, - 35.35284424283011, - 35.691929164403774, - 35.9750417098565, - 36.186091912798595, - 36.42699698419073, - 36.591483568970325, - 36.67220137615987, - 36.80301735521155 + 3.490878423401478, + 4.020865767973589, + 4.648176032065668, + 5.674399499861875, + 6.916132435192409, + 8.869255322450169, + 11.291850797714199, + 13.34706889292032, + 16.074575342864755, + 17.653878358549843, + 18.74281157645554, + 20.218463293681307, + 21.211546808244698, + 23.372625740632863, + 25.160615694186212, + 25.645589407971297, + 26.07990639815786, + 26.50174629776772, + 26.828160051242154, + 27.10687395162787, + 27.34659864893684, + 27.547046683084734, + 27.69649241841502, + 27.867186693474277, + 27.983687149119135, + 28.040815557314513, + 28.133264868112562 ], "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125451, + 1.5268463243731425, + 1.8679037053125433, 2.1622431316564765, - 2.50608086908698, - 2.8001348882647212, - 3.1433306670760293, - 3.512875564734423, - 3.8620768415013647, - 4.471986784846617, - 4.956955922636253, - 5.378117879718729, - 6.103932829009752, - 6.7143079519054565, - 8.46763682791091, - 10.41162110587674, - 11.021389478586116, - 11.59507234209772, - 12.177449672030301, - 12.643748388181887, - 13.051217446168089, - 13.40757798827984, - 13.708768285958596, - 13.93477373629367, - 14.192893401603552, - 14.36981357317643, - 14.457119684843972, - 14.599319600545355 + 2.5060808689175333, + 2.8001344398525356, + 3.143258067360416, + 3.511817936616393, + 3.8584823063559384, + 4.450820115805174, + 4.896372927658499, + 5.265314109663766, + 5.875866438354276, + 6.375812833672173, + 7.781652584834328, + 9.298539449880645, + 9.762692744890986, + 10.195323728092962, + 10.629929896539666, + 10.975093504823272, + 11.274487256102537, + 11.535122656382152, + 11.754735236467663, + 11.919110587980263, + 12.106800684140174, + 12.235228520520732, + 12.298450749380303, + 12.401097139217644 ], "5._96._0.075": [ 2.2092718103274023, - 2.555323563550898, - 2.8519151942207315, - 3.200303179752876, - 3.5247365251559386, - 4.0079874978489425, - 4.705451448765458, - 5.484941704219999, - 6.951699784385171, - 8.088410450547496, - 9.0101852007518, - 10.44827084159664, - 11.534294234850115, - 14.195133739335644, - 16.62997741968012, - 17.317641527636738, - 17.936737909514484, - 18.541441605971116, - 19.009514738877346, - 19.40958686361222, - 19.75267224583673, - 20.03840034048691, - 20.25110680017244, - 20.49285009536575, - 20.6578575935991, - 20.73897025242924, - 20.87076658806696 + 2.555323562842096, + 2.85191417152195, + 3.2001897381139504, + 3.523698775742411, + 4.002837144576757, + 4.67171432905596, + 5.3653840526168555, + 6.583808098627554, + 7.498820819534223, + 8.230410547630026, + 9.35496261489984, + 10.189524424276817, + 12.186066303279896, + 13.960309446498885, + 14.454460899435773, + 14.898355927882445, + 15.331231711411391, + 15.666581859040832, + 15.953119427418569, + 16.199278410806752, + 16.40470718918719, + 16.557725016433995, + 16.731959681699756, + 16.850860777538816, + 16.9092413045836, + 17.00388218199376 ] }, "logtime": [ @@ -919,6246 +681,38 @@ ] } }, - "3_8": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 10.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351690611500695, - 3.1872895973536273, - 3.522717430862419, - 4.03378970907044, - 4.656977641220336, - 5.7629269653417055, - 7.485831544508645, - 9.308172055960728, - 12.260671350847355, - 14.239050872911623, - 15.706060504399423, - 17.807684388812714, - 19.282578702538235, - 22.592754166682457, - 25.379604519843245, - 26.1391485269006, - 26.81577318101457, - 27.470706507624065, - 27.97431028615888, - 28.40372603707861, - 28.771283870557852, - 29.077218063157073, - 29.30510823857548, - 29.564642749974233, - 29.741908563663536, - 29.829014631016243, - 29.970526299709224 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615428, - 1.481384749141308, - 1.8198213217004362, - 2.1114679242247285, - 2.451192833178006, - 2.788420106029547, - 3.045021381284434, - 3.38845938280911, - 3.6184971890096134, - 3.804772148056533, - 4.112681729643056, - 4.369750429462295, - 5.170906851267666, - 6.267291582499868, - 6.670676414826562, - 7.084470317408594, - 7.541474296262455, - 7.939551124840915, - 8.312674094813019, - 8.662450476127592, - 8.97768707060287, - 9.226718464588842, - 9.526105482424901, - 9.7407291797187, - 9.849834180975432, - 10.032058130519584 - ], - "5._384._0.0875": [ - 3.4929022917496706, - 4.03022261665977, - 4.6938926401601195, - 5.8835966176042795, - 7.428220407940365, - 9.966889426867072, - 13.283562085329121, - 16.254684294803873, - 20.388075264049768, - 22.859787959634286, - 24.587222429292108, - 26.943211467737253, - 28.535467813670657, - 31.991792129034692, - 34.836656803985285, - 35.60599810079289, - 36.29273355028421, - 36.95789481714895, - 37.470646019133554, - 37.90814026057783, - 38.28352368142686, - 38.59673513532809, - 38.83020251590502, - 39.09661357773846, - 39.27853938526354, - 39.367840300733874, - 39.51265492697088 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125453, - 2.1622431316564774, - 2.506080869126846, - 2.8001349937734705, - 3.1433477492852946, - 3.5131230298852603, - 3.8628217779493426, - 4.47414980511332, - 4.961598964807018, - 5.3863741088792265, - 6.121943923067568, - 6.74399418391771, - 8.54879561861235, - 10.583052045310557, - 11.229648805175845, - 11.84160942223588, - 12.466632620318647, - 12.969823713466472, - 13.411592072060714, - 13.799415695857661, - 14.128198104822753, - 14.375498282775048, - 14.658371880370419, - 14.852606468317697, - 14.948616330875947, - 15.105279153629233 - ], - "5._96._0.075": [ - 2.2092718103274027, - 2.5553235637176757, - 2.851915434855737, - 3.2003298715118706, - 3.5249794672432038, - 4.008947564668668, - 4.7084308536195625, - 5.493701484280023, - 6.9841459805526025, - 8.150527318966649, - 9.103627305689471, - 10.603713275857153, - 11.747368862845699, - 14.586604774327428, - 17.22898666277745, - 17.98206316244691, - 18.66168052476697, - 19.326808225196906, - 19.84206762432334, - 20.282820991871464, - 20.660753797822963, - 20.97538232815122, - 21.20959337594951, - 21.47561997037711, - 21.65724078021099, - 21.74657077682527, - 21.891865550916876 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "4_5": { }, - "3_9": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 10.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351694667321095, - 3.187321261194926, - 3.522959398296323, - 4.0346622999682396, - 4.6593112724796715, - 5.772584143072288, - 7.52079865725593, - 9.387324295594253, - 12.448783714711505, - 14.526767866998277, - 16.080964723897576, - 18.325538308333638, - 19.912766920367304, - 23.50113114766947, - 26.540874593926414, - 27.371143414638457, - 28.110497790192902, - 28.82590425500508, - 29.375455056704215, - 29.84395561110788, - 30.244621563917793, - 30.577835930595995, - 30.826003657034835, - 31.108488185189163, - 31.30145225762393, - 31.396306763787294, - 31.550529145700658 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.481384749141308, - 1.8198213217004335, - 2.1114679242247276, - 2.451192833184627, - 2.7884201993863793, - 3.0450270973558933, - 3.3885796675737705, - 3.6188330788331755, - 3.805331511541035, - 4.113692184539553, - 4.3713287297346435, - 5.176717810724106, - 6.28672496344539, - 6.697577569661208, - 7.120578401024117, - 7.589693201563713, - 8.000218838426207, - 8.386793943521104, - 8.751023469163487, - 9.081085009838214, - 9.34325569878249, - 9.66042448898008, - 9.889520978287852, - 10.006710135602445, - 10.203779549882478 - ], - "5._384._0.0875": [ - 3.4932028143747442, - 4.031225313396911, - 4.696683351956656, - 5.895258949336692, - 7.463183615052691, - 10.067311843808248, - 13.518546824042419, - 16.657150557450745, - 21.088844656849805, - 23.769834351145242, - 25.65403847603591, - 28.232841118555676, - 29.980157025676654, - 33.77553858626234, - 36.898145953599624, - 37.74216561558882, - 38.49489705349406, - 39.223431713280675, - 39.78442442296848, - 40.26297101985203, - 40.6732807879178, - 41.015412876169414, - 41.270414879901935, - 41.56131118331108, - 41.75998163028608, - 41.857528189959375, - 42.01580799948635 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125427, - 2.1622431316564756, - 2.5060808691583203, - 2.8001350770698523, - 3.1433612352433395, - 3.513318400330735, - 3.863409953862411, - 4.475858258287028, - 4.965267195005759, - 5.392898888624619, - 6.136191660028293, - 6.767505975605476, - 8.613537551900135, - 10.721349836664997, - 11.398597575879053, - 12.042895947840163, - 12.704503302769288, - 13.239898855377094, - 13.712069043053095, - 14.128201853046834, - 14.48215897685615, - 14.74912048071562, - 15.05510115789881, - 15.265666709327906, - 15.369947353325761, - 15.540455431866032 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235638493415, - 2.851915624830743, - 3.2003509439627287, - 3.52517126680515, - 4.0097056454423585, - 4.710784459073923, - 5.500625917645478, - 7.009869748002816, - 8.19992142806117, - 9.178156756083277, - 10.728532163023628, - 11.919593176824328, - 14.909739412500201, - 17.735954585796947, - 18.54880902258721, - 19.284352741312123, - 20.00589284361037, - 20.56554154558609, - 21.04478615321821, - 21.4558116727621, - 21.797950390563877, - 22.05266557767269, - 22.341859125618985, - 22.53935478447103, - 22.636552607072513, - 22.794807232316032 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "4_6": { }, - "3_3": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351635568339257, - 3.18685987649175, - 3.5194341168753853, - 4.021964695453296, - 4.625373168858598, - 5.631213203703021, - 7.017734131113873, - 8.301128331626503, - 10.117778789699045, - 11.210610651605968, - 11.976583504775217, - 13.028692005585269, - 13.742865870882106, - 15.311494952074163, - 16.618169400815415, - 16.97370980694966, - 17.292351934429536, - 17.602231685890924, - 17.842328567513636, - 18.047436530328493, - 18.223984896573956, - 18.37169673522136, - 18.48184538753949, - 18.60766758338057, - 18.693552413788066, - 18.735670645551725, - 18.803797793376237 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004349, - 2.1114679242247276, - 2.4511928330881463, - 2.7884188390440285, - 3.0449438060593743, - 3.3868270121676423, - 3.6139397405790454, - 3.7971850654668238, - 4.098986094465467, - 4.3483461306850195, - 5.091563856634515, - 6.003348584673112, - 6.30869169255662, - 6.606373821842283, - 6.918310269197569, - 7.176309365099972, - 7.407231942536657, - 7.614477838086076, - 7.793880568509998, - 7.930774556315486, - 8.090147260210866, - 8.200733499237531, - 8.255609007591945, - 8.345178145421313 - ], - "5._384._0.0875": [ - 3.4888288086422636, - 4.016644434684756, - 4.656097350048851, - 5.724643914605977, - 6.959907389349164, - 8.718829385823275, - 10.692998326451791, - 12.268677784338763, - 14.289104442978177, - 15.439317116143096, - 16.228160365480026, - 17.295731529216958, - 18.01381604634192, - 19.582369160770195, - 20.886702784603084, - 21.241361732916218, - 21.559695690469532, - 21.869461495310855, - 22.109738789160463, - 22.315010727642687, - 22.4918421881964, - 22.639906318278147, - 22.75031584383327, - 22.876508470046037, - 22.962608610867996, - 23.004802522166397, - 23.072995900320393 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125447, - 2.162243131656477, - 2.506080868699679, - 2.800133863322582, - 3.14316472586218, - 3.5104718549266547, - 3.854845417542254, - 4.451018321828257, - 4.9116776892091, - 5.297016704953429, - 5.92640690466214, - 6.423636872828878, - 7.719212181270855, - 8.980633064022445, - 9.346857075629213, - 9.682185873929484, - 10.01431289649661, - 10.275472721434395, - 10.500494849414341, - 10.695612308471505, - 10.859690701170848, - 10.982362439165628, - 11.122558142675226, - 11.218429945956188, - 11.265557218538145, - 11.341930946657234 - ], - "5._96._0.075": [ - 2.2092619209324726, - 2.5553055502990443, - 2.8518822508487456, - 3.199985852874824, - 3.5222728206245484, - 3.9984334914448545, - 4.675890638522396, - 5.39760263087033, - 6.630658201542146, - 7.489891206956369, - 8.137933780063445, - 9.080671485080162, - 9.748385559930018, - 11.273174243711193, - 12.580380605681452, - 12.94004337232528, - 13.262876866410474, - 13.577523541572688, - 13.821599056356835, - 14.03034643518104, - 14.210092929480233, - 14.360493279700068, - 14.472700352633987, - 14.600821880462636, - 14.688349595590935, - 14.731324538344243, - 14.800941414503159 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "4_7": { }, - "6_6": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 25.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 25.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 25.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 25.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 25.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351688203357908, - 3.1872707880384024, - 3.5225590741424657, - 4.031135541235536, - 4.628641926666353, - 5.585645304932676, - 6.921730797376026, - 8.303776891137797, - 10.670246859573522, - 12.35938221680729, - 13.654523031680132, - 15.557327632239552, - 16.914753490365563, - 19.999923936363622, - 22.615083266571194, - 23.329006355126353, - 23.96442398157154, - 24.579204790181233, - 25.051541725021607, - 25.454080509912362, - 25.798342585486534, - 26.084644241025433, - 26.297807403852996, - 26.54038946829001, - 26.706022546026723, - 26.78740944908537, - 26.919653114206056 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004342, - 2.111467924224728, - 2.4511928331740758, - 2.7884200505989325, - 3.0450179873457315, - 3.388386685528471, - 3.6182343373388854, - 3.8039467995420844, - 4.107691713941779, - 4.354677029988393, - 5.067224521351216, - 5.935177645196042, - 6.24115932528188, - 6.554524405631771, - 6.90497734414584, - 7.217398188333452, - 7.518664213649857, - 7.810028379669547, - 8.081055914267598, - 8.30119339315461, - 8.573395443557756, - 8.773167965651105, - 8.876072190696307, - 9.049803725403915 - ], - "5._384._0.0875": [ - 3.492691826729683, - 4.02628476143444, - 4.656197045628261, - 5.669524198136654, - 6.862062483361687, - 8.795894682333266, - 11.497705199482061, - 14.082534322245108, - 17.83466142235737, - 20.12332143179579, - 21.732947996611177, - 23.936347012259414, - 25.42834521474103, - 28.667762418484884, - 31.331882972906488, - 32.051858935333534, - 32.69396763984234, - 33.31549631839161, - 33.79419067455685, - 34.20249765009862, - 34.55261224331392, - 34.8445667096732, - 35.06214269701846, - 35.31032320787869, - 35.47978559743173, - 35.562975247110145, - 35.69791777336454 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.506080869108157, - 2.800134944316243, - 3.143339741557704, - 3.5129999743779248, - 3.8619501940288443, - 4.457762243767006, - 4.90346028655612, - 5.2686198209886275, - 5.862560258188004, - 6.341931977794788, - 7.713788137858659, - 9.357339183606713, - 9.910235858360533, - 10.448110467773986, - 11.010057398482223, - 11.471333852428037, - 11.881322858173476, - 12.244994955261525, - 12.555590011199671, - 12.790079614717015, - 13.059080490720548, - 13.244094019349328, - 13.335640587066575, - 13.485048223766206 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.555323563639498, - 2.851915322058079, - 3.200317357634756, - 3.524859313706055, - 4.007183122686854, - 4.679402126659913, - 5.368878258314808, - 6.546401203985863, - 7.427650304679995, - 8.15420954683679, - 9.336544871331913, - 10.277190626181516, - 12.750732356824619, - 15.173559196085266, - 15.876734004874015, - 16.514342013049138, - 17.140266436855892, - 17.626143665794014, - 18.041860373394147, - 18.398400424432207, - 18.69513534873061, - 18.91588328117409, - 19.16637766834288, - 19.337300112598786, - 19.421354880004817, - 19.558049433909147 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 25.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 25.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 25.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 25.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 25.0, - 25.0 - ], - [ - 5.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 20.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352010213947767, - 3.1899104640722453, - 3.547901176617397, - 4.176423613783134, - 5.041633789411094, - 6.610996216373288, - 9.020621402087025, - 11.627698315600325, - 16.047131965622203, - 19.113431437188, - 21.41995410308729, - 24.74546387019528, - 27.08416620026099, - 32.30009779569913, - 36.640684439366424, - 37.81606407468059, - 38.85776697572198, - 39.861978097086855, - 40.63016658573869, - 41.28422417080363, - 41.84222476693173, - 42.3053842741757, - 42.65022958307706, - 43.042509249060835, - 43.310547187408545, - 43.44238674406689, - 43.65708287103435 - ], - "5._24._0.075": [ - 0.8740059532267972, - 1.195803175961542, - 1.4813847491413068, - 1.819821321700434, - 2.1114679242247245, - 2.451192833699204, - 2.7884274567742824, - 3.0454767396044895, - 3.3996017694135356, - 3.6575248733556807, - 3.883984586642546, - 4.289526881829095, - 4.64766370477973, - 5.78568217680796, - 7.314403567563282, - 7.878866010806036, - 8.4628434072144, - 9.116969142282851, - 9.695555921367747, - 10.245994751949999, - 10.768114636292287, - 11.24272505446609, - 11.619538194499759, - 12.072169462066954, - 12.395178545226626, - 12.558781769323065, - 12.830586064311573 - ], - "5._384._0.0875": [ - 3.525571773166252, - 4.199729938413051, - 5.129214236448039, - 6.813752012164907, - 8.973917257773913, - 12.624408956302672, - 17.65280434032769, - 22.32069638533293, - 28.920673886855347, - 32.88458156626552, - 35.652430031044595, - 39.41179301392662, - 41.94331853884102, - 47.3928405151213, - 51.839231542846434, - 53.03668884851427, - 54.10282716815036, - 55.13303797049809, - 55.92481516051304, - 56.600025895914165, - 57.1783621052627, - 57.6602080778789, - 58.01937075260192, - 58.42904211234614, - 58.70894301861549, - 58.846444165775914, - 59.06978954258852 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.867903705312544, - 2.162243131656476, - 2.5060808716043965, - 2.800141552149977, - 3.1444357755182475, - 3.53264280605078, - 3.9461193603563443, - 4.772490188440044, - 5.466769576927177, - 6.070435365918531, - 7.102611914128007, - 7.970827575978542, - 10.527803834340826, - 13.54179086340255, - 14.524942676401523, - 15.461956386482195, - 16.422368841540337, - 17.194850186950386, - 17.87156312077681, - 18.46243391714731, - 18.95992249252498, - 19.33187154618109, - 19.753734923819554, - 20.041832754443554, - 20.184015131810686, - 20.416155712817897 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.555323574081672, - 2.8519303970265413, - 3.2020489189654233, - 3.5440075077734736, - 4.127124464799331, - 5.09339261561932, - 6.21084814241123, - 8.29666212623099, - 9.942809103211697, - 11.316731403931621, - 13.53444705107568, - 15.26698723978405, - 19.66056229681443, - 23.785701338066644, - 24.95863592256592, - 26.011096574186784, - 27.0356457906595, - 27.823524330731853, - 28.494719073356826, - 29.066825251647835, - 29.540547646151087, - 29.89233024009111, - 30.290491483877474, - 30.562083717166022, - 30.69574821149879, - 30.913713990892884 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "4_8": { }, - "4_10": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 15.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 15.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83516993683871, - 3.1873579529980915, - 3.523224114834591, - 4.033363427901735, - 4.633363962912164, - 5.618246832687198, - 7.119285680866576, - 8.799049772024896, - 11.754619284900851, - 13.86945301414951, - 15.493448212123159, - 17.887808093404015, - 19.608330344296633, - 23.54943345477123, - 26.918384466041836, - 27.84085376446059, - 28.660835109239606, - 29.453119529665372, - 30.06002704129387, - 30.576967589938864, - 31.018054479452765, - 31.384104611882634, - 31.65655756256214, - 31.966279552967332, - 32.177856444859856, - 32.281927822528345, - 32.451414787153674 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615408, - 1.4813847491413077, - 1.8198213217004344, - 2.1114679242247263, - 2.4511928331923047, - 2.78842030759543, - 3.04503372277996, - 3.388717722956018, - 3.619154230269169, - 3.805447430390857, - 4.110119193962556, - 4.35800188612341, - 5.083756893172275, - 6.035037561122144, - 6.393493368790233, - 6.7708223659570494, - 7.201063433352396, - 7.588801231422987, - 7.963839500107231, - 8.326340114429785, - 8.662683322868082, - 8.935155239875828, - 9.271335269294465, - 9.51869808152905, - 9.64689170332045, - 9.865203696177453 - ], - "5._384._0.0875": [ - 3.493516727583599, - 4.028772451514918, - 4.661864856462748, - 5.712537931576787, - 7.058641395680877, - 9.422722968072815, - 12.805081443580814, - 16.05134458163086, - 20.809654389272605, - 23.755472895938194, - 25.845959735260017, - 28.72301871002367, - 30.679821447065645, - 34.9284813508408, - 38.41515602451335, - 39.355849510370106, - 40.19302045715762, - 41.00180638950452, - 41.62301560941838, - 42.15261924882933, - 42.605946288098856, - 42.98339088144304, - 43.264645852491334, - 43.58527192567165, - 43.80429415823622, - 43.91189286509824, - 44.086707292214015 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125405, - 2.162243131656477, - 2.506080869194804, - 2.800135173617932, - 3.143376866228786, - 3.5135372987681186, - 3.8635277742337903, - 4.461355964530047, - 4.911496609785115, - 5.287310006309192, - 5.923553841214227, - 6.4644500776212785, - 8.117032224282216, - 10.15935092470897, - 10.846838648605964, - 11.51406100627956, - 12.21047964130188, - 12.782050885461688, - 13.291023290379664, - 13.743281164639443, - 14.130311992341811, - 14.423347774190725, - 14.759984998180947, - 14.992213543322022, - 15.107506537143387, - 15.296507933917225 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235640019554, - 2.851915845029044, - 3.200375366610068, - 3.5253868649820927, - 4.009163365772939, - 4.684164982450781, - 5.388774460976104, - 6.681163317498867, - 7.72704766588997, - 8.619123246249597, - 10.09302463243466, - 11.268935933988638, - 14.350006592055744, - 17.382126375854963, - 18.27041416088171, - 19.077488462610308, - 19.87189645926701, - 20.48880704129185, - 21.017489825519913, - 21.470573843035766, - 21.84721156577614, - 22.127392765270866, - 22.444916640747326, - 22.66170876826733, - 22.7684859683759, - 22.94264299682115 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "4_9": { }, - "3_10": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 10.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 10.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169795060513, - 3.187346893848356, - 3.523155280617886, - 4.035368806994226, - 4.661201289664253, - 5.78041278903457, - 7.549234541760137, - 9.452009063163977, - 12.604120429267944, - 14.766515327825836, - 16.395857090540186, - 18.766122107234732, - 20.45419904434237, - 24.29876189460571, - 27.577922585638593, - 28.47594391764054, - 29.275535654313064, - 30.04910539795833, - 30.64283621370808, - 31.148931495900474, - 31.581412392430558, - 31.94081138873253, - 32.20843818584458, - 32.51292793318534, - 32.72094995503735, - 32.82324352780976, - 32.98969123402188 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.4813847491413075, - 1.819821321700434, - 2.111467924224728, - 2.4511928331899893, - 2.7884202749609504, - 3.0450317246520586, - 3.3886770414395038, - 3.6191049974667653, - 3.805784361474252, - 4.1145103225532145, - 4.372606762225955, - 5.181426346809605, - 6.302503364258972, - 6.7194401406441875, - 7.149956692990554, - 7.628993207238195, - 8.049761103745677, - 8.44746255555381, - 8.823730184359762, - 9.16625471673779, - 9.439592793489714, - 9.772113646054821, - 10.01398807247955, - 10.138464486249635, - 10.349268935084034 - ], - "5._384._0.0875": [ - 3.4934461324734865, - 4.032037231786688, - 4.698943784358756, - 5.904715646459202, - 7.491614375915535, - 10.14958461832136, - 13.713323433211603, - 16.99537116271131, - 21.691720676126497, - 24.56448672057875, - 26.594969982865365, - 29.384600108843056, - 31.28029655868139, - 35.40272902560372, - 38.79454386921021, - 39.71102163941051, - 40.527709153182144, - 41.31759037849807, - 41.925187604391105, - 42.44337707239873, - 42.88736409250495, - 43.257344806802585, - 43.53307849554864, - 43.84753153537074, - 44.0623148094132, - 44.167800068191525, - 44.33905999563422 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125407, - 2.162243131656477, - 2.5060808691838012, - 2.800135144500258, - 3.1433721524496367, - 3.5134765594397335, - 3.863886140341405, - 4.47724181269682, - 4.968238441864553, - 5.398185189968358, - 6.147743943796443, - 6.786588203768167, - 8.66639596310323, - 10.835257092023097, - 11.538293101300253, - 12.210114446801734, - 12.903231242725662, - 13.466777425721169, - 13.965877002630359, - 14.407436585758397, - 14.784313266803512, - 15.069391602487975, - 15.39691749544762, - 15.622888964157115, - 15.735036986985598, - 15.918824177540337 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.5553235639559286, - 2.851915778620036, - 3.200368002619603, - 3.5253265351705654, - 4.010319416029917, - 4.712690692372387, - 5.506237117592, - 7.030763397646094, - 8.240139130747183, - 9.238992142145294, - 10.83095896835687, - 12.061608496088542, - 15.180457065696647, - 18.16948698551964, - 19.0368432999429, - 19.823933707296604, - 20.598021909769667, - 21.199370480448337, - 21.715013082440926, - 22.157476347832684, - 22.525834630227017, - 22.800136654860705, - 23.111487841868033, - 23.32419640797805, - 23.428950689023168, - 23.599688215446356 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "5_10": { }, - "3_11": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 10.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 10.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 10.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351700662883723, - 3.1873680686624972, - 3.5233170990960523, - 4.035952526875691, - 4.662763207184387, - 5.786887319485472, - 7.572812354374332, - 9.505860779166701, - 12.734577177549287, - 14.969254319863868, - 16.663785323327552, - 19.144890963250248, - 20.923513391475684, - 25.003606743808547, - 28.50910311466367, - 29.472007469248716, - 30.329462646536786, - 31.159025512398625, - 31.795300696442446, - 32.33762137558391, - 32.80073860495974, - 33.185329813628556, - 33.47167566115652, - 33.79731866494461, - 34.0198221620338, - 34.12927669057939, - 34.307514053513394 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141308, - 1.8198213217004349, - 2.111467924224725, - 2.4511928331944177, - 2.7884203373921217, - 3.045035547201222, - 3.3887574810470666, - 3.6193296311833936, - 3.8061584764086343, - 4.115186277420731, - 4.373662771771624, - 5.185318997070212, - 6.315569203511882, - 6.73755829885092, - 7.1743262111331, - 7.661639856950827, - 8.090981492225994, - 8.498034391007623, - 8.884470037146546, - 9.237590124600374, - 9.520497178250713, - 9.866330875250942, - 10.119492723868309, - 10.250527323758453, - 10.47401090611532 - ], - "5._384._0.0875": [ - 3.4936471599491608, - 4.03270808975875, - 4.700811965642921, - 5.912538357696873, - 7.515186603729773, - 10.2182232685083, - 13.877401562013999, - 17.2832973227974, - 22.21486367940057, - 25.26306820605535, - 27.429680062825383, - 30.418297144707754, - 32.45571416808425, - 36.89340121136781, - 40.54632728090228, - 41.53319663388153, - 42.411954918276216, - 43.261318842143865, - 43.91401981385223, - 44.47056112537411, - 44.94708250883536, - 45.34393173597746, - 45.63966305886921, - 45.97682421708353, - 46.20714291983397, - 46.32028640951883, - 46.50408339606979 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125425, - 2.1622431316564765, - 2.5060808692048493, - 2.8001352002036333, - 3.143381171012834, - 3.5136072140216155, - 3.864279541525984, - 4.478385100618678, - 4.970694116434439, - 5.402555063575379, - 6.157299570092233, - 6.802384828949929, - 8.71036785650641, - 10.930713036286052, - 11.655694031138552, - 12.351141513024372, - 13.071554601851648, - 13.65978571734247, - 14.182764063866818, - 14.647152918655744, - 15.044870367444213, - 15.346616593607786, - 15.694207230853651, - 15.934708189135836, - 16.054343409022554, - 16.250883130272815 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235640439804, - 2.8519159056633625, - 3.200382094557704, - 3.5254548017277325, - 4.010826502055223, - 4.714266037253779, - 5.510876311783492, - 7.048070477378532, - 8.273519739378633, - 9.289589899849627, - 10.91652313303612, - 12.18069782755099, - 15.410299719320104, - 18.5437532015212, - 19.46074067621607, - 20.295256175939652, - 21.118200992380036, - 21.75866987812453, - 22.308703778499964, - 22.781031825065803, - 23.17439845917733, - 23.46743658331913, - 23.800022528343725, - 24.027344282321184, - 24.13937469974316, - 24.322168434162624 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "7_7": { }, - "3_12": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 10.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 10.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 10.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 10.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351702941198202, - 3.1873858555158168, - 3.5234530284687264, - 4.036442910067871, - 4.664075636877076, - 5.792331097317525, - 7.592678989002933, - 9.551389349721674, - 12.845700958863757, - 15.142897396167205, - 16.894383698812288, - 19.47362637837505, - 21.33365402093398, - 25.630093891591656, - 29.349288806282207, - 30.37429955707189, - 31.287342528012992, - 32.17084237173575, - 32.84813449267922, - 33.4254117207103, - 33.91808281324539, - 34.326960888005615, - 34.631352239319554, - 34.97737544106979, - 35.21383823550688, - 35.330202214054324, - 35.51983588911598 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224723, - 2.451192833198135, - 2.7884203898343114, - 3.0450387581426184, - 3.3888250505461928, - 3.6195183271972917, - 3.8064727479945892, - 4.115754150643894, - 4.374549990130282, - 5.188590915665898, - 6.3265665974815475, - 6.752818055214826, - 7.194867145072558, - 7.689190679659194, - 8.125814080415223, - 8.540835553611277, - 8.93596867954762, - 9.298195014768218, - 9.58937269663101, - 9.946815828244993, - 10.209967457945718, - 10.346900957999573, - 10.582067704022808 - ], - "5._384._0.0875": [ - 3.493816040909042, - 4.033271710312212, - 4.702381844826308, - 5.919116897728456, - 7.535047584500053, - 10.276356254629055, - 14.01752483688956, - 17.531247959571516, - 22.6724782880981, - 25.881084282374, - 28.17414906306516, - 31.35019946487351, - 33.52274348827974, - 38.26408438049878, - 42.17039267202717, - 43.22571710018815, - 44.16479325259079, - 45.07191637205323, - 45.768338339566625, - 46.36204323833072, - 46.87004848921036, - 47.29286621011351, - 47.60792118298828, - 47.96701155831589, - 48.21233581488487, - 48.332880206816185, - 48.528807917039664 - ], - "5._48._0.075": [ - 1.5268463243731383, - 1.8679037053125402, - 2.1622431316564765, - 2.5060808692225316, - 2.80013524699447, - 3.1433887466069352, - 3.513716964852692, - 3.8646100193203328, - 4.479345708444171, - 4.972757698948523, - 5.4062278067008975, - 6.165335001432045, - 6.815677140014365, - 8.747519621024272, - 11.011874066986064, - 11.755734805376699, - 12.471642810420501, - 13.21586209440886, - 13.82583290404224, - 14.370034541705893, - 14.854936184422717, - 15.2715973644631, - 15.588663114051522, - 15.954919535935758, - 16.2091164920848, - 16.335877721240685, - 16.54467437707544 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.55532356411794, - 2.8519160123797547, - 3.200393931788631, - 3.525562546604677, - 4.011252494978863, - 4.715589767937546, - 5.514775932770895, - 7.062641462396603, - 8.301669879460908, - 9.3323330468497, - 10.989071487402216, - 12.281990091607067, - 15.607765014538504, - 18.869677638519473, - 19.831849062269875, - 20.70995331434296, - 21.578258249731455, - 22.2553841345927, - 22.837885368256256, - 23.338576233096305, - 23.7558051846037, - 24.066782808373418, - 24.41975112768232, - 24.661137473593794, - 24.780189231148, - 24.974653883023166 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "7_8": { }, - "3_13": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 10.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 10.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 10.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 10.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 10.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 10.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 10.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 10.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 10.0, - 60.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835170488198483, - 3.1874010072865393, - 3.5235688214896226, - 4.036860686027274, - 4.665193934376262, - 5.796972118327723, - 7.609646698175321, - 9.590385260098653, - 12.941497975989797, - 15.293272361793857, - 17.094876287684325, - 19.761410689994705, - 21.694788308445357, - 26.189936616575284, - 30.110686651010017, - 31.195115525249996, - 32.16155510563719, - 33.097030510444846, - 33.81390215647702, - 34.424951394248446, - 34.94617514384109, - 35.37850876725491, - 35.70032882860203, - 36.066026762403624, - 36.31597322170891, - 36.439017961314576, - 36.63969090451188 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615417, - 1.4813847491413072, - 1.8198213217004335, - 2.111467924224724, - 2.4511928332013038, - 2.788420434507277, - 3.045041493389074, - 3.388882609913897, - 3.6196790709049846, - 3.806740471659334, - 4.11623794573388, - 4.375305891425016, - 5.191379613498481, - 6.335950691508625, - 6.765846353012054, - 7.212415942358391, - 7.712752224265555, - 8.155636624962492, - 8.577528798521826, - 8.980184583493633, - 9.350316072163286, - 9.648703608636747, - 10.016334133852533, - 10.288353186323143, - 10.430594923131759, - 10.676512846962048 - ], - "5._384._0.0875": [ - 3.4939599153461143, - 4.0337519034527975, - 4.703719586571984, - 5.92472622026134, - 7.55200977470499, - 10.326222884658625, - 14.138593329969698, - 17.746964721082268, - 23.075764059298827, - 26.431070902972177, - 28.841475917948898, - 32.19380764455028, - 34.49499872234122, - 39.5285910733961, - 43.68086406846051, - 44.802817823040286, - 45.800573050255025, - 46.76385356673046, - 47.50271671142753, - 48.13248671066459, - 48.67100625681101, - 49.11896273424673, - 49.452720099899615, - 49.83302203732864, - 50.09286374901038, - 50.22057206728203, - 50.42825647393145 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.867903705312541, - 2.162243131656476, - 2.5060808692375924, - 2.800135286853327, - 3.1433951998915486, - 3.5138104570088227, - 3.8648915524211507, - 4.480164181189177, - 4.974516153341687, - 5.409357916364279, - 6.172186274036022, - 6.827016913810926, - 8.779323341516598, - 11.081731675384802, - 11.841998940112783, - 12.575778014651782, - 13.340906231905768, - 13.970118694058801, - 14.533244569832899, - 15.036608141194499, - 15.470495636856151, - 15.801635351935873, - 16.18524136979212, - 16.452340719610504, - 16.585883011911328, - 16.806465821408842 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235641809455, - 2.851916103286318, - 3.200404015357804, - 3.5256543299754224, - 4.0116154071262855, - 4.716717708070514, - 5.518099776474245, - 7.075077635927676, - 8.3257294595485, - 9.368918381563025, - 11.051362922280518, - 12.36919391727828, - 15.779204840319627, - 19.155777571056234, - 20.159105586935695, - 21.077259490744133, - 21.987638782563298, - 22.699081390646555, - 23.312208474205775, - 23.83982480562099, - 24.27982540998338, - 24.607990783044553, - 24.98054716433097, - 25.23549190376203, - 25.36133138322122, - 25.56711608284355 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "7_9": { }, - "4_4": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351663640324887, - 3.1870790258551014, - 3.5210961279932578, - 4.026258003624487, - 4.620874215132077, - 5.586704760859376, - 6.975975240133478, - 8.385515378636665, - 10.572004132104373, - 11.970612978165319, - 12.977584396047362, - 14.385269064815402, - 15.352257347698204, - 17.488292201888967, - 19.26916115727457, - 19.75338533767014, - 20.18611186851185, - 20.606034675672227, - 20.930371875826708, - 21.20720898473744, - 21.444958809834272, - 21.643459009031766, - 21.791407096906152, - 21.960191851340355, - 22.075419755393312, - 22.131968272416074, - 22.22358119190958 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961543, - 1.4813847491413061, - 1.8198213217004344, - 2.1114679242247276, - 2.4511928331339754, - 2.788419485206642, - 3.044983369398642, - 3.387658420844403, - 3.61621087467806, - 3.800647721718858, - 4.102447078162199, - 4.3482454201841785, - 5.063761085434357, - 5.961844910337476, - 6.281053980373686, - 6.603822067448765, - 6.95537175531292, - 7.256945499031273, - 7.535358466093733, - 7.792070377777192, - 8.019450760285471, - 8.19605530658293, - 8.404727988051604, - 8.551378686479197, - 8.624779509112326, - 8.745473319995293 - ], - "5._384._0.0875": [ - 3.490878423401478, - 4.020865767973589, - 4.648176032065668, - 5.674399499861875, - 6.916132435192409, - 8.869255322450169, - 11.291850797714199, - 13.34706889292032, - 16.074575342864755, - 17.653878358549843, - 18.74281157645554, - 20.218463293681307, - 21.211546808244698, - 23.372625740632863, - 25.160615694186212, - 25.645589407971297, - 26.07990639815786, - 26.50174629776772, - 26.828160051242154, - 27.10687395162787, - 27.34659864893684, - 27.547046683084734, - 27.69649241841502, - 27.867186693474277, - 27.983687149119135, - 28.040815557314513, - 28.133264868112562 - ], - "5._48._0.075": [ - 1.5268463243731425, - 1.8679037053125433, - 2.1622431316564765, - 2.5060808689175333, - 2.8001344398525356, - 3.143258067360416, - 3.511817936616393, - 3.8584823063559384, - 4.450820115805174, - 4.896372927658499, - 5.265314109663766, - 5.875866438354276, - 6.375812833672173, - 7.781652584834328, - 9.298539449880645, - 9.762692744890986, - 10.195323728092962, - 10.629929896539666, - 10.975093504823272, - 11.274487256102537, - 11.535122656382152, - 11.754735236467663, - 11.919110587980263, - 12.106800684140174, - 12.235228520520732, - 12.298450749380303, - 12.401097139217644 - ], - "5._96._0.075": [ - 2.2092718103274023, - 2.555323562842096, - 2.85191417152195, - 3.2001897381139504, - 3.523698775742411, - 4.002837144576757, - 4.67171432905596, - 5.3653840526168555, - 6.583808098627554, - 7.498820819534223, - 8.230410547630026, - 9.35496261489984, - 10.189524424276817, - 12.186066303279896, - 13.960309446498885, - 14.454460899435773, - 14.898355927882445, - 15.331231711411391, - 15.666581859040832, - 15.953119427418569, - 16.199278410806752, - 16.40470718918719, - 16.557725016433995, - 16.731959681699756, - 16.850860777538816, - 16.9092413045836, - 17.00388218199376 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "8_10": { }, - "4_5": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835167455722321, - 3.187164253368536, - 3.5217463021757833, - 4.028427836363309, - 4.624684630082045, - 5.596396180422826, - 7.021654999732946, - 8.516485795859836, - 10.922679147334124, - 12.504736239346794, - 13.658836270238554, - 15.286897355848462, - 16.412526210829927, - 18.90716185189082, - 20.988260218620216, - 21.553888068081033, - 22.058549347226762, - 22.547678348313518, - 22.924785442127003, - 23.246506041112095, - 23.522444349706053, - 23.752556634864902, - 23.924021079341824, - 24.1195019132571, - 24.252969516975394, - 24.318496397162527, - 24.424754094441145 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615426, - 1.4813847491413068, - 1.8198213217004353, - 2.1114679242247276, - 2.4511928331518, - 2.7884197364921053, - 3.044998755151511, - 3.3879820910415375, - 3.617110145509905, - 3.802113944017799, - 4.104789809067644, - 4.35122359689819, - 5.069884325161107, - 5.985111909717598, - 6.3172037017256075, - 6.657572709404107, - 7.033770157964548, - 7.361258663222535, - 7.6675128839922255, - 7.953255729334022, - 8.209016631065653, - 8.409350881388876, - 8.647796141532217, - 8.816459337544055, - 8.901251809332873, - 9.041206675006105 - ], - "5._384._0.0875": [ - 3.491684148784791, - 4.023279636156971, - 4.652351039645069, - 5.686157113357087, - 6.961545153770087, - 9.042383172066298, - 11.731244489922352, - 14.07796471915153, - 17.247822837975477, - 19.100513820330104, - 20.381936081030982, - 22.119937946398608, - 23.290017266302243, - 25.831183370975197, - 27.927934039212506, - 28.49587688585577, - 29.00386861500027, - 29.496754840839348, - 29.877622933863588, - 30.202741434415195, - 30.48213787781195, - 30.715580588180487, - 30.889611742253454, - 31.088319475857705, - 31.22396489190118, - 31.290505095979746, - 31.39826375473448 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125467, - 2.1622431316564783, - 2.506080869002253, - 2.8001346640586293, - 3.14329436699023, - 3.5123432739000746, - 3.860023494374007, - 4.454035537585791, - 4.9009907314408885, - 5.272074128547903, - 5.890863348417758, - 6.40420697216, - 7.88824247911931, - 9.55575813824719, - 10.07810160532861, - 10.569009178861092, - 11.065616271434864, - 11.462006453770927, - 11.807038786816884, - 12.108016745187705, - 12.361872337880557, - 12.55197315674844, - 12.768899382365463, - 12.917354994433628, - 12.990490268666912, - 13.109354087626448 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235631964983, - 2.85191468287134, - 3.2002464578628005, - 3.524214557727399, - 4.004769247598286, - 4.675512731336439, - 5.372544388972258, - 6.614708573868588, - 7.572011644721387, - 8.35376448018417, - 9.581192812625266, - 10.509754370843844, - 12.776316922635896, - 14.825606887511555, - 15.399996571961866, - 15.916126916831454, - 16.41953050033167, - 16.809142704362785, - 17.141933975522175, - 17.427464202576427, - 17.66542391275424, - 17.842574560868197, - 18.04404421612049, - 18.181513505321565, - 18.249038785093575, - 18.358611225228167 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "9_9": { }, - "4_6": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835168235501287, - 3.187225130284909, - 3.5222107360218113, - 4.02997840041794, - 4.627409825333906, - 5.603248489768871, - 7.05243281246964, - 8.605984674689251, - 11.178826753871103, - 12.911691333108958, - 14.192145315858346, - 16.016131103395832, - 17.286801987111335, - 20.116973372286008, - 22.483534481875175, - 23.126927897093587, - 23.700214013485763, - 24.255286841487692, - 24.682534242150155, - 25.046870976012332, - 25.35898234727682, - 25.618970843623128, - 25.812648388034702, - 26.033311921476066, - 26.183988618234917, - 26.257993610467494, - 26.378107415172135 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.195803175961542, - 1.4813847491413066, - 1.8198213217004344, - 2.1114679242247285, - 2.4511928331645287, - 2.7884199159817205, - 3.045009744976354, - 3.3882132869747608, - 3.617752529133315, - 3.8031614371046776, - 4.106464011358775, - 4.353352429920457, - 5.074237492245742, - 6.000837952290013, - 6.34138033437576, - 6.693622153718276, - 7.087049110302825, - 7.433424975465707, - 7.760751439062382, - 8.0693160257882, - 8.348210963891466, - 8.56851690028365, - 8.83284946927001, - 9.02127848810832, - 9.116520435454001, - 9.274493727612288 - ], - "5._384._0.0875": [ - 3.492259894917149, - 4.025004936754169, - 4.6553378239473915, - 5.694428342145734, - 6.992152202699412, - 9.162314380873108, - 12.057849245018245, - 14.6510818727442, - 18.219063650460807, - 20.327334273521956, - 21.791517295290035, - 23.780808543593466, - 25.12140957263153, - 28.029136601412134, - 30.423206808084387, - 31.07092333391018, - 31.649599886851615, - 32.21052115801187, - 32.64339521242799, - 33.01280579162818, - 33.32999968850202, - 33.5948278881234, - 33.79223980563305, - 34.0175688954002, - 34.17141251753898, - 34.246904560203106, - 34.36924498034679 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125458, - 2.1622431316564765, - 2.5060808690627714, - 2.800134824205838, - 3.143320295310389, - 3.5127185274099437, - 3.8611246029854076, - 4.456334420411525, - 4.904288889799071, - 5.276857311162185, - 5.901145716645142, - 6.423254393102804, - 7.960849779374967, - 9.74251159980519, - 10.312285707725744, - 10.852087706637393, - 11.402178752864387, - 11.843802223655274, - 12.229876834859011, - 12.567659921349026, - 12.853102212611725, - 13.067116296192332, - 13.311358681834932, - 13.478617334898406, - 13.561099489050957, - 13.695323354273706 - ], - "5._96._0.075": [ - 2.2092718103274027, - 2.55532356344964, - 2.8519150481209032, - 3.200286972006519, - 3.5245829858551394, - 4.006149810727657, - 4.678229392979975, - 5.37763655618152, - 6.635624639372579, - 7.621221753122868, - 8.43802635211238, - 9.741625539452174, - 10.743705895284736, - 13.236144010172131, - 15.532292302466427, - 16.180955443028406, - 16.764531231371677, - 17.334204095845855, - 17.77495214351862, - 18.151422697914864, - 18.474131899489475, - 18.742785124679088, - 18.942699175818188, - 19.169819199730124, - 19.3247833719786, - 19.40093639963708, - 19.524631143912814 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "5_5": { }, - "4_7": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351688203357908, - 3.1872707880384006, - 3.5225590743763915, - 4.031141697470602, - 4.629455285056693, - 5.608397617273535, - 7.075349642170789, - 8.672196371716607, - 11.37385590328267, - 13.23032490775426, - 14.618298733635688, - 16.614610105878967, - 18.01658875268129, - 21.15878441163157, - 23.79651993106107, - 24.51431050921618, - 25.153230372020154, - 25.771345369858018, - 26.246421015349867, - 26.651388476651924, - 26.997916081886654, - 27.286272279042212, - 27.501031104215546, - 27.7455643995728, - 27.912556679964613, - 27.994606374201542, - 28.127893647693245 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004342, - 2.111467924224728, - 2.4511928331740753, - 2.7884200505989307, - 3.0450179873457333, - 3.3883866855299227, - 3.618234342726912, - 3.803947161623676, - 4.107720112525002, - 4.35494994866659, - 5.077506717291564, - 6.012571161261899, - 6.359277370069171, - 6.720177799679841, - 7.126299319863856, - 7.4868650253233255, - 7.830388845417834, - 8.156972905126898, - 8.454663605818626, - 8.691645876959452, - 8.978264427124536, - 9.184285160290239, - 9.289051259153586, - 9.463835564514097 - ], - "5._384._0.0875": [ - 3.492691829132685, - 4.026299521277214, - 4.657579888953234, - 5.70064432883764, - 7.0149448832845795, - 9.251442054763267, - 12.309251632411385, - 15.109435391496786, - 19.031901219124943, - 21.377067344519194, - 23.013710293874176, - 25.242793777816658, - 26.747389556676197, - 30.008771925978046, - 32.689762560307514, - 33.41439574408507, - 34.06109295115862, - 34.68737302183485, - 35.17007898982935, - 35.58190632875483, - 35.9352337009237, - 36.23001858548865, - 36.44974133463374, - 36.700455100206696, - 36.87165547202282, - 36.95569042158567, - 37.0919657277796 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808691081577, - 2.800134944316244, - 3.1433397415577047, - 3.512999974429333, - 3.8619505766938853, - 4.4580596785761655, - 4.906764729400385, - 5.280447334812117, - 5.908839324560329, - 6.437404071779548, - 8.014469799997999, - 9.884148973109411, - 10.492449889901733, - 11.072990774211396, - 11.668778115855742, - 12.149954088687794, - 12.572605874487834, - 12.943726716621093, - 13.258167087261874, - 13.49435950304998, - 13.764137482457873, - 13.949097034005423, - 14.040426504408533, - 14.189269838905673 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235636395, - 2.851915322058077, - 3.2003173576347543, - 3.524859313745609, - 4.0071855009920885, - 4.680268466394042, - 5.38146142361432, - 6.6512427877621585, - 7.657572311570688, - 8.50027038823875, - 9.861801060100557, - 10.921838407685007, - 13.602223021294469, - 16.117871042356168, - 16.834846308097642, - 17.48111788370607, - 18.112917580905474, - 18.601848082475087, - 19.019621280120592, - 19.3775351146002, - 19.67526065696996, - 19.89674235172266, - 20.148144368159564, - 20.31968274620834, - 20.404022326809063, - 20.541152066723136 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "5_6": { }, - "4_8": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351692752072393, - 3.1873062996636787, - 3.522830011893929, - 4.032046705775042, - 4.631047121369011, - 5.612407366063844, - 7.093215322932616, - 8.723697745283589, - 11.527478060593165, - 13.48585377259962, - 14.965174857482191, - 17.112270310627302, - 18.6323294596025, - 22.063161752254924, - 24.95813312476431, - 25.747144024843976, - 26.448943489349418, - 27.127473165574315, - 27.648311172187235, - 28.092144221720982, - 28.47153507197085, - 28.78693076642966, - 29.021775244829573, - 29.28902504743075, - 29.471548819736196, - 29.561263238140764, - 29.707126183685745 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615422, - 1.4813847491413075, - 1.8198213217004355, - 2.1114679242247285, - 2.4511928331815023, - 2.788420155301208, - 3.0450243980779135, - 3.3885215520240872, - 3.618609101967282, - 3.8045583427440977, - 4.1086973465039245, - 4.356192993203295, - 5.080051687400434, - 6.02171279333475, - 6.373197448039349, - 6.740784213186807, - 7.156718586943188, - 7.528323396056365, - 7.884596873144551, - 8.225605837732004, - 8.538655327889064, - 8.789560950494065, - 9.095282311765391, - 9.316861787856402, - 9.43025974686089, - 9.62067878332003 - ], - "5._384._0.0875": [ - 3.493027851843019, - 4.027306781460973, - 4.659324877369516, - 5.7054858957634345, - 7.032713544595373, - 9.320892917320288, - 12.508614638204401, - 15.482685861234579, - 19.718910913273724, - 22.282194805187416, - 24.080691171289466, - 26.537744768445236, - 28.19973622736213, - 31.802295811851423, - 34.76061691175507, - 35.559578674805124, - 36.27189392482168, - 36.96112725570806, - 37.49171391829774, - 37.944275675222386, - 38.33224416371286, - 38.65570448764056, - 38.89677848614203, - 39.171767744069705, - 39.35956995138008, - 39.45178087741804, - 39.601410714569504 - ], - "5._48._0.075": [ - 1.52684632437314, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808691434566, - 2.800135037735452, - 3.1433548664209874, - 3.5132188817479064, - 3.862593084997211, - 4.459402196001838, - 4.908691695977329, - 5.283241809688558, - 5.914829544635133, - 6.4484123262850055, - 8.056132601343641, - 9.995388950126594, - 10.635158565009457, - 11.249686153039862, - 11.884398986296608, - 12.399991473228802, - 12.855049902370876, - 13.256200760094083, - 13.59714611201034, - 13.853850397087104, - 14.14748482504152, - 14.349131083427185, - 14.448856015973076, - 14.61166281299538 - ], - "5._96._0.075": [ - 2.2092718103274005, - 2.5553235637871654, - 2.8519155351203227, - 3.2003409909132827, - 3.5250742394647423, - 4.007991196671116, - 4.681855343099465, - 5.384439095576195, - 6.663415668062967, - 7.685825339637546, - 8.548589167517237, - 9.955570794135197, - 11.062050382646401, - 13.899278865940156, - 16.609019775326185, - 17.388500678499938, - 18.092805952174153, - 18.78268859683356, - 19.316971388041356, - 19.7738115626916, - 20.165114064065477, - 20.49045113267196, - 20.732435900227088, - 21.0069171416595, - 21.194226398583666, - 21.286369714338772, - 21.436341160436445 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "5_7": { }, - "4_9": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 15.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169639104507, - 3.1873347089886157, - 3.5230467667503773, - 4.032770852130202, - 4.63232117245887, - 5.615618031441836, - 7.107542438415692, - 8.765063543919664, - 11.651808161180966, - 13.695075430001566, - 15.25226913067192, - 17.5311777359599, - 19.157031123006632, - 22.85379344780366, - 25.99238599126197, - 26.849584461086945, - 27.61169040736368, - 28.348220370709036, - 28.91294997044361, - 29.394059626444587, - 29.80492523912211, - 30.146178625426803, - 30.40022392119084, - 30.689167252838683, - 30.886527813016755, - 30.983570681427576, - 31.141480940570492 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615422, - 1.4813847491413077, - 1.8198213217004353, - 2.1114679242247267, - 2.451192833187444, - 2.7884202390630266, - 3.0450295266639387, - 3.3886294458187187, - 3.6189089190202908, - 3.805047326733636, - 4.1094793015542965, - 4.357187762823741, - 5.082089047026489, - 6.029037552886479, - 6.384352604202716, - 6.757292068618604, - 7.181083738899558, - 7.561544038378338, - 7.928102929024764, - 8.280862264416237, - 8.606596258393731, - 8.869185447513718, - 9.191282594727669, - 9.426574198738848, - 9.54776090955464, - 9.752674402835543 - ], - "5._384._0.0875": [ - 3.4932967165669933, - 4.028112817201913, - 4.660721599681195, - 5.709363089430584, - 7.046962475898584, - 9.376757550195558, - 12.670664827266489, - 15.791692023847283, - 20.305053162252985, - 23.068223623783616, - 25.017933090065565, - 27.690972808704753, - 29.50370570583695, - 33.43527595839543, - 36.66198322268002, - 37.53290458613724, - 38.308650841399796, - 39.058656340609986, - 39.6353582400006, - 40.12713316830233, - 40.548394098898434, - 40.8993724419915, - 41.16093079985029, - 41.45919360520396, - 41.66291563615794, - 41.762971032785195, - 41.92543119955358 - ], - "5._48._0.075": [ - 1.5268463243731432, - 1.8679037053125407, - 2.1622431316564765, - 2.5060808691716976, - 2.800135112470815, - 3.143366966314302, - 3.513394010174011, - 3.8631071447594705, - 4.460476619644367, - 4.9102340972806635, - 5.285478803365044, - 5.919626261644965, - 6.457229119504843, - 8.089572435248849, - 10.085211301317639, - 10.750963788112326, - 11.394022716767424, - 12.061953556913876, - 12.607465481844363, - 13.091153855922277, - 13.519259066100389, - 13.884347782132005, - 14.159971641436057, - 14.47586675565077, - 14.69325174518255, - 14.800955540579196, - 14.977132525247987 - ], - "5._96._0.075": [ - 2.2092718103274027, - 2.5553235639053007, - 2.851915705570122, - 3.200359897543739, - 3.5252461825768133, - 4.008635853282756, - 4.683125431249428, - 5.3868229293102345, - 6.673171103856618, - 7.708475879994559, - 8.58733156004287, - 10.03097990241987, - 11.175376646425542, - 14.144484291356706, - 17.0254698330761, - 17.861931984251083, - 18.619764923566983, - 19.363801911470023, - 19.94071076025164, - 20.434490484280673, - 20.857485040590255, - 21.20909462126535, - 21.47061928180624, - 21.76710670213935, - 21.969475872457526, - 22.069086100357673, - 22.231380126729356 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "5_8": { }, - "5_5": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351678756032506, - 3.187197033234048, - 3.5219963792700995, - 4.029257161545586, - 4.625439813195518, - 5.581918076563316, - 6.933990603917165, - 8.343409539198467, - 10.682306034572184, - 12.27292622506223, - 13.455015982599358, - 15.146758080716909, - 16.328931987926094, - 18.971040219347593, - 21.186885586822314, - 21.790040722228873, - 22.32779285108981, - 22.84873536291079, - 23.249961972039905, - 23.59215328523894, - 23.885395855817396, - 24.129734539851317, - 24.311752570840557, - 24.519145420373643, - 24.660743710822437, - 24.73027853379732, - 24.843099967208566 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413072, - 1.8198213217004355, - 2.111467924224728, - 2.4511928331586517, - 2.788419833140358, - 3.045004672749363, - 3.3881065808541444, - 3.6174560345834483, - 3.8026776315843276, - 4.105665806331061, - 4.352128394869591, - 5.063781538734141, - 5.938762311957236, - 6.250846167726924, - 6.571007902567478, - 6.927526759376401, - 7.241737001718092, - 7.539835064668187, - 7.822320740946058, - 8.079156421197728, - 8.283171480085318, - 8.529448644853195, - 8.705911969659454, - 8.795360019155062, - 8.944111262053404 - ], - "5._384._0.0875": [ - 3.491994139759413, - 4.024195322361277, - 4.652756511449665, - 5.666195652760058, - 6.87397566775641, - 8.84136432472171, - 11.478860758463973, - 13.865186639973748, - 17.171757358351368, - 19.132163677896564, - 20.495455696933355, - 22.35005710100194, - 23.600978711799947, - 26.31771759579538, - 28.557226854855696, - 29.16343278711373, - 29.705165021229035, - 30.230406981773392, - 30.635871798031026, - 30.981901197422236, - 31.2790664638916, - 31.527203675858313, - 31.71216694327748, - 31.923287762128375, - 32.067415909683454, - 32.138132265115175, - 32.25270903482283 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125465, - 2.162243131656475, - 2.5060808690348373, - 2.800134750291741, - 3.1433083283920285, - 3.5125453321314977, - 3.860616026926391, - 4.455010512716528, - 4.899940946216643, - 5.26494227778323, - 5.861420441918838, - 6.347081096565084, - 7.745803779378014, - 9.369490750413814, - 9.893449331662142, - 10.392597214820164, - 10.903576860785785, - 11.315555495653392, - 11.676731963072786, - 11.993603874722568, - 12.262000667972892, - 12.4635272524625, - 12.693911196271408, - 12.851845828191463, - 12.929763191645833, - 13.056563502626716 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235633328057, - 2.8519148795441818, - 3.2002682731670866, - 3.524412940781227, - 4.005510438850903, - 4.676217623216871, - 5.364959040807383, - 6.552010893962662, - 7.451409752832565, - 8.191003352594112, - 9.3733885417648, - 10.287988859750532, - 12.586847732805381, - 14.726017512491744, - 15.332735933927033, - 15.879551465801764, - 16.414041367682128, - 16.828152267784894, - 17.182075910973094, - 17.485727379908106, - 17.73870066966237, - 17.926992844773178, - 18.14099206118265, - 18.287011663381687, - 18.358761066128682, - 18.475259237687844 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 5.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 15.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351997446336936, - 3.1898081491331167, - 3.5470149893140412, - 4.172787317952708, - 5.03874480801709, - 6.636504419581775, - 9.111380637561625, - 11.71898589498456, - 15.901912528221231, - 18.6610213860998, - 20.679975449062216, - 23.52863850528271, - 25.49835808784029, - 29.839352016117104, - 33.43057836996524, - 34.40242758058818, - 35.266167232713464, - 36.10068911488741, - 36.74141570431017, - 37.287521442409776, - 37.75469082995189, - 38.14341111665056, - 38.43300259204478, - 38.76287125644654, - 38.98822991830052, - 39.09898886772435, - 39.27900014597818 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615408, - 1.4813847491413077, - 1.8198213217004344, - 2.1114679242247263, - 2.4511928336783706, - 2.7884271630172246, - 3.0454586424573686, - 3.3991885241771826, - 3.656223455443289, - 3.881644259429857, - 4.285731906210324, - 4.644110402078949, - 5.797896442783604, - 7.370263226199228, - 7.94658698842093, - 8.53477878918855, - 9.181274907990586, - 9.74012817543478, - 10.260075586951727, - 10.742197626219165, - 11.170964730101094, - 11.505001167656221, - 11.898961525638406, - 12.175414400446003, - 12.313878751773133, - 12.541681201583328 - ], - "5._384._0.0875": [ - 3.5244317680822506, - 4.19568251536074, - 5.127510545370031, - 6.846487004071386, - 9.065356097107006, - 12.692449555277014, - 17.384789956865728, - 21.510344044598103, - 27.11478175617391, - 30.399923872229486, - 32.672392111696915, - 35.74587045246488, - 37.810363705152525, - 42.26527447178794, - 45.91591438950784, - 46.90160389922867, - 47.78130561420668, - 48.63315720494332, - 49.28972926019018, - 49.84997911333422, - 50.33072571100778, - 50.73190255458976, - 51.03099535539379, - 51.37238082192726, - 51.60555550336848, - 51.72002802595047, - 51.9056957813001 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125405, - 2.162243131656477, - 2.5060808715053717, - 2.800141290053961, - 3.14439279119691, - 3.5319430654979547, - 3.9436516923217337, - 4.768594218773206, - 5.469245976303344, - 6.084991982014356, - 7.1466448080231, - 8.03996039972485, - 10.607721318691233, - 13.45877242767244, - 14.34833017936, - 15.180755307676748, - 16.020208043902265, - 16.686521265362632, - 17.26472929393689, - 17.766192135245117, - 18.186619457261983, - 18.50025577686741, - 18.855984362821612, - 19.098743293836836, - 19.21833403013218, - 19.413087033693323 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.555323573667436, - 2.851929799168709, - 3.201981356047324, - 3.543323173450602, - 4.123916764246417, - 5.090690290458453, - 6.226009710863209, - 8.37084118686906, - 10.042157836627153, - 11.403732621876193, - 13.531493753236248, - 15.13917772097235, - 19.052395625126614, - 22.575910758338924, - 23.560310809647966, - 24.44080361054919, - 25.29621802791297, - 25.954502399334082, - 26.515463259565653, - 26.994642596076044, - 27.392411802017104, - 27.6881436127361, - 28.02364732371345, - 28.252560150656553, - 28.365119579376145, - 28.54825995188916 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "5_9": { }, - "5_6": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351685474129935, - 3.187249481079706, - 3.522396514866175, - 4.030592814196732, - 4.627722868303493, - 5.585841086958176, - 6.9469377655061955, - 8.389070850379817, - 10.851330609673159, - 12.569648938217183, - 13.86454498953832, - 15.737589739648987, - 17.05710413614582, - 20.022309865805664, - 22.51547507480264, - 23.19430474482107, - 23.798678892592097, - 24.383531892141182, - 24.833209858039353, - 25.216532343985165, - 25.544602231283324, - 25.81763968957515, - 26.020977958294246, - 26.252505406182365, - 26.410593790630703, - 26.48825655310354, - 26.614381411120902 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004355, - 2.111467924224727, - 2.451192833169619, - 2.788419987777565, - 3.0450141409066105, - 3.388305766031537, - 3.6180094883757605, - 3.803580126982537, - 4.107106375769473, - 4.3539417324984395, - 5.066648574115097, - 5.945456762285798, - 6.261223586417359, - 6.587518100882298, - 6.954348346746133, - 7.28129581131679, - 7.5949399774541835, - 7.895531879757293, - 8.171834130739583, - 8.393419775516348, - 8.663398494202083, - 8.858541085761054, - 8.958042164428168, - 9.12438421650145 - ], - "5._384._0.0875": [ - 3.4924902440759262, - 4.025681014266933, - 4.655217634927266, - 5.6705992538837435, - 6.886835581961211, - 8.906693804089493, - 11.704142832053767, - 14.306316280561097, - 17.984098613642125, - 20.189855550645685, - 21.73035945402206, - 23.82992795556813, - 25.247581453373627, - 28.322397269431466, - 30.851482285367695, - 31.535226791331933, - 32.14551836262141, - 32.73663215011843, - 33.19232607801402, - 33.58110747176217, - 33.91469605853329, - 34.19303384972863, - 34.40048899131228, - 34.63720142858958, - 34.79882642799924, - 34.87815374617774, - 35.00677348032432 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125451, - 2.1622431316564765, - 2.50608086908698, - 2.80013488826472, - 3.1433306666415226, - 3.5128686317022537, - 3.8615647353136846, - 4.456968323575433, - 4.902507826271181, - 5.268045845797907, - 5.866193120266112, - 6.355002524244668, - 7.78261094985483, - 9.491143688568082, - 10.054875557426008, - 10.596882993666739, - 11.15631979053995, - 11.610370300360149, - 12.010348903781642, - 12.362467689404339, - 12.661380281985315, - 12.886110921438517, - 13.143065470847077, - 13.31931646922876, - 13.406353618783722, - 13.548159121835953 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323563550899, - 2.8519151942207306, - 3.2003031776727373, - 3.52473035996673, - 4.006699841745819, - 4.67848894195067, - 5.368262813606941, - 6.560747951824675, - 7.47363008849471, - 8.233951728295116, - 9.46962181160411, - 10.441918133638021, - 12.937479643452814, - 15.307845855269182, - 15.98588001334119, - 16.59782391531588, - 17.19653710758874, - 17.660272096555012, - 18.05657642249162, - 18.396260469670775, - 18.67892627242685, - 18.88920599246353, - 19.127920499433873, - 19.290783044111105, - 19.37084154617619, - 19.500957119722518 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 5.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 15.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352006612825598, - 3.1898816085116395, - 3.5476553411392207, - 4.175988853683191, - 5.048398637518791, - 6.670690514170177, - 9.227098505564035, - 11.982196493167962, - 16.518064741282018, - 19.576306208825955, - 21.840947451843213, - 25.065258157862058, - 27.310758918343417, - 32.28080932342437, - 36.39824867079298, - 37.51216030980156, - 38.500490292192985, - 39.45407729755205, - 40.18466878030269, - 40.80701908168089, - 41.338611741599706, - 41.78034378779823, - 42.10933877961321, - 42.48383536106067, - 42.73971983138274, - 42.865541499383, - 43.07026687504246 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.481384749141308, - 1.8198213217004335, - 2.1114679242247227, - 2.4511928336933257, - 2.7884273739197263, - 3.045471635286713, - 3.3994855726654136, - 3.6571755154210557, - 3.8834614215639, - 4.289671857339597, - 4.650608056845512, - 5.81911240802793, - 7.434702680852298, - 8.035576168303997, - 8.654580508880029, - 9.34159153732549, - 9.941524258163117, - 10.504730149578211, - 11.031534558748772, - 11.503839962725861, - 11.874323686999102, - 12.313928661628148, - 12.62414865768061, - 12.780153238206358, - 13.037747543471877 - ], - "5._384._0.0875": [ - 3.5252591204622568, - 4.1995123893490245, - 5.1389390410559495, - 6.887157512787819, - 9.181201474250624, - 13.025936120479658, - 18.14757193803137, - 22.75932991449598, - 29.134970869282185, - 32.91246643771006, - 35.53612369250372, - 39.08966099333476, - 41.4784804715733, - 46.6236174302725, - 50.82835023003159, - 51.96192496945695, - 52.97229076275527, - 53.949532155416506, - 54.70157567786765, - 55.3430919109562, - 55.89303446942886, - 56.35156602460726, - 56.693391217296174, - 57.08342012723163, - 57.34987290747199, - 57.48073198383071, - 57.69315258372424 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125418, - 2.162243131656476, - 2.5060808715764673, - 2.800141478225463, - 3.144423651857475, - 3.5324474223378184, - 3.945568303100065, - 4.775678093292894, - 5.4836333090335465, - 6.108754920031067, - 7.194985248442829, - 8.118310601164671, - 10.822475691747156, - 13.909693340072309, - 14.890793004366627, - 15.815107179975435, - 16.75305993838713, - 17.50096119572592, - 18.15220817967321, - 18.71809035005923, - 19.19293630868651, - 19.54730143889941, - 19.948880699446285, - 20.222911285320865, - 20.35801441553482, - 20.57834977022931 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.555323573964835, - 2.851930228399971, - 3.2020298633481756, - 3.5438162503855466, - 4.126583606425951, - 5.100409358221385, - 6.25129982360889, - 8.456297278364591, - 10.206318547971142, - 11.652439241863053, - 13.945816094894854, - 15.703521036209818, - 20.05358007847467, - 24.03722198520634, - 25.157879440336306, - 26.160976362962128, - 27.135814753583162, - 27.8851683330389, - 28.523466571721702, - 29.067878629260132, - 29.519078395103858, - 29.854314635700103, - 30.2341419588738, - 30.49327088256919, - 30.62075533750573, - 30.82845628600888 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "5_7": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 20.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351690611500686, - 3.1872895883063315, - 3.5227025108086574, - 4.0316144810065735, - 4.6294698885543815, - 5.588846159662422, - 6.956513804611963, - 8.421692802765948, - 10.976720188004103, - 12.798216162783751, - 14.188273207628768, - 16.219985206988895, - 17.663483162263187, - 20.92883160888769, - 23.685451938829353, - 24.43669852926097, - 25.10480573945114, - 25.75076762839724, - 26.24666332279367, - 26.669195670913492, - 27.030391507190817, - 27.33066628523628, - 27.554227370773003, - 27.80861639761433, - 27.982327981927934, - 28.067698012609306, - 28.20646380880107 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615428, - 1.481384749141308, - 1.8198213217004362, - 2.1114679242247285, - 2.4511928331780064, - 2.7884201060295486, - 3.04502138126272, - 3.388458085333429, - 3.6184327374941647, - 3.8042703504304507, - 4.108208330468932, - 4.355329081130759, - 5.068843530585821, - 5.950467756558149, - 6.268782231076257, - 6.599309172038539, - 6.973367498986294, - 7.309500578254664, - 7.634718031079673, - 7.949274287163613, - 8.241136626201332, - 8.477234122402383, - 8.767494053548841, - 8.979226648656196, - 9.087890035399594, - 9.270668274192175 - ], - "5._384._0.0875": [ - 3.492869713086777, - 4.026817596137845, - 4.657101099604458, - 5.673971945515603, - 6.896353988095101, - 8.95361094214871, - 11.873782119735951, - 14.655249829534322, - 18.662088930573987, - 21.094796157090943, - 22.802319853777995, - 25.13549950033528, - 26.71345392387172, - 30.13368697457794, - 32.94216075507964, - 33.7006417953185, - 34.37687942241924, - 35.03123964863093, - 35.53502927341769, - 35.96472210924489, - 36.33310092097411, - 36.64023736672703, - 36.86913460367665, - 37.13022584595728, - 37.308522296706684, - 37.3960593314506, - 37.53808726303711 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125453, - 2.1622431316564774, - 2.506080869126846, - 2.8001349937734727, - 3.143347748837802, - 3.513115866041727, - 3.862290326763022, - 4.45846629731112, - 4.904472264622647, - 5.270420103115579, - 5.8698126245839095, - 6.360864879671247, - 7.808829994192228, - 9.580969328693548, - 10.17649105055843, - 10.753820358777707, - 11.354364372401923, - 11.845056214095862, - 12.279543370206444, - 12.663573869227953, - 12.990522433133835, - 13.236805420545116, - 13.518649149766405, - 13.712180069826088, - 13.807867852395061, - 13.963983079866981 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235637176748, - 2.8519154348557367, - 3.2003298693691313, - 3.524973097470532, - 4.007609589595562, - 4.6802269908076655, - 5.370792711227943, - 6.567293222133164, - 7.489594416161239, - 8.264519580278973, - 9.539337935508783, - 10.556076569909521, - 13.21355467501141, - 15.788835649379081, - 16.532411430695603, - 17.20489358172976, - 17.86384143966091, - 18.37437359773183, - 18.810787200000394, - 19.18462155824599, - 19.495435575160577, - 19.726561264718153, - 19.988682995725057, - 20.167506137271765, - 20.255450381067636, - 20.39852349857796 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 20.0, - 30.0 - ], - [ - 5.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 15.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352013334921073, - 3.1899354788143652, - 3.5481249534000185, - 4.178337732300235, - 5.055489771147242, - 6.695883695032752, - 9.312624001185608, - 12.178337850386914, - 16.99176604873781, - 20.297540488261824, - 22.772110970019522, - 26.32698656606, - 28.821649109065337, - 34.374159479707636, - 38.988257351919074, - 40.23702886993472, - 41.34351539522447, - 42.40988423856816, - 43.225312471660835, - 43.91957825507585, - 44.51176388044633, - 45.003223818451765, - 45.36915832847008, - 45.78543267082879, - 46.06990056317962, - 46.209840785138056, - 46.43779014891051 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615433, - 1.481384749141307, - 1.8198213217004335, - 2.1114679242247254, - 2.4511928337042943, - 2.788427528581559, - 3.0454811633625707, - 3.3997034105880393, - 3.65787373481769, - 3.884794208065459, - 4.292562498504417, - 4.655377054475657, - 5.8347222107764045, - 7.482158606424015, - 8.101037411087594, - 8.742862580980555, - 9.460327714766647, - 10.091773142765842, - 10.688824558328738, - 11.251398973077478, - 11.759409387853998, - 12.16047909195028, - 12.639392510758373, - 12.979532699860258, - 13.151405210234223, - 13.436513395979473 - ], - "5._384._0.0875": [ - 3.5258660925924397, - 4.202322992879835, - 5.147337125857051, - 6.917148796290579, - 9.26681120783209, - 13.27609531482578, - 18.740049125352545, - 23.762517903058352, - 30.82480751030232, - 35.05753491786813, - 38.01154773035239, - 42.021421137362445, - 44.72079302944064, - 50.528154310134035, - 55.263894999107315, - 56.538949815263436, - 57.67403157507341, - 58.77069534981074, - 59.61337411947689, - 60.331988860021596, - 60.94743804466872, - 61.46016425431274, - 61.842356802756804, - 62.278301201150086, - 62.57617466448527, - 62.72251645963684, - 62.96025760762381 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125422, - 2.1622431316564765, - 2.5060808716285963, - 2.8001416162179003, - 3.1444462830183775, - 3.532817294877352, - 3.9469741323563414, - 4.780879186940065, - 5.494205158541272, - 6.12621748346293, - 7.230495410583618, - 8.175824474844951, - 10.982025238307399, - 14.254351211233507, - 15.310575443027425, - 16.311895271706533, - 17.334169143713098, - 18.153338465809078, - 18.869449216094015, - 19.493346162156552, - 20.017759696246827, - 20.40953122748662, - 20.85347119857767, - 21.156536632318847, - 21.306110250972882, - 21.550447850148217 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.55532357418293, - 2.851930543169569, - 3.2020654353969285, - 3.5441778506908608, - 4.128539991991974, - 5.107548849800096, - 6.269914983147781, - 8.51934016949441, - 10.327666407116885, - 11.837525732172805, - 14.259356179318454, - 16.137116222510468, - 20.852900245070256, - 25.244972633155083, - 26.49034685862584, - 27.606765951144585, - 28.692806557773586, - 29.527265007917876, - 30.238017717631447, - 30.843549060042456, - 31.34476592469648, - 31.716965766532482, - 32.13820013296897, - 32.42556809880774, - 32.56702415966184, - 32.79779464881953 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "5_8": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 20.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 20.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351694667321072, - 3.1873212519372247, - 3.522944092612583, - 4.03242123481628, - 4.630849818506817, - 5.591220924805269, - 6.964067226845193, - 8.446952375529703, - 11.074273288756757, - 12.979796204962051, - 14.450034119331406, - 16.61984667217375, - 18.174467879273973, - 21.717026904047245, - 24.723497076153272, - 25.544074439719495, - 26.27324910998033, - 26.97778121872506, - 27.51789994254744, - 27.977935713911318, - 28.37075592086284, - 28.696983814572896, - 28.939804327962936, - 29.21593925715253, - 29.404515041167937, - 29.497224380668893, - 29.64805231480198 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.481384749141308, - 1.8198213217004335, - 2.1114679242247276, - 2.4511928331846278, - 2.788420199386379, - 3.0450270973336875, - 3.388578338163847, - 3.618766893624587, - 3.8048153125999447, - 4.10907850459407, - 4.356424771963522, - 5.0705776231491875, - 5.954425070556873, - 6.274709210418784, - 6.608463960476365, - 6.988004804140037, - 7.331129493232378, - 7.665267382522548, - 7.990803770668974, - 8.2952043426534, - 8.543293466201213, - 8.850824549109518, - 9.077184111405295, - 9.194141686617298, - 9.392212819948524 - ], - "5._384._0.0875": [ - 3.4931693521377487, - 4.027715182112536, - 4.658588908721927, - 5.676637760748852, - 6.903862586930828, - 8.989906823560416, - 12.006772262838828, - 14.937435014285525, - 19.234154508146588, - 21.875306366127315, - 23.73932798423881, - 26.294392263681708, - 28.02611673450778, - 31.779496570356425, - 34.857967954408636, - 35.688650859151714, - 36.42848234316304, - 37.143734418932745, - 37.6937096425489, - 38.16266684900968, - 38.564375003793764, - 38.89905632359789, - 39.14845667068011, - 39.432841903530154, - 39.62707130233068, - 39.72245898998227, - 39.87732715086438 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125427, - 2.1622431316564756, - 2.5060808691583216, - 2.800135077069853, - 3.14336123478559, - 3.5133110542642734, - 3.862863228587932, - 4.4596494130594735, - 4.906024071461582, - 5.272295808695539, - 5.872671547609131, - 6.365479247890142, - 7.829104262050452, - 9.650637814652443, - 10.271766188261278, - 10.878261687846724, - 11.513567541066418, - 12.03599235386469, - 12.500960526957698, - 12.913692157870098, - 13.266257279189972, - 13.53248267362831, - 13.837606202375325, - 14.047451355399524, - 14.15136069996523, - 14.32116382873384 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.55532356384934, - 2.851915624830741, - 3.2003509417705716, - 3.525164735516513, - 4.008327936777883, - 4.681599839483933, - 5.37279154351239, - 6.572464556414569, - 7.502035389339191, - 8.288088861976316, - 9.59303095427473, - 10.644778613888954, - 13.436072384839042, - 16.19185883264976, - 16.9953178314237, - 17.723793514613263, - 18.439044660472202, - 18.993638836743365, - 19.468008482353614, - 19.87425165075718, - 20.21181692493187, - 20.4627698842311, - 20.747148038784125, - 20.941161617210494, - 21.036624223263583, - 21.19208536006469 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 20.0, - 5.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 20.0, - 20.0 - ], - [ - 5.0, - 10.0 - ], - [ - 10.0, - 0.0 - ], - [ - 20.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 5.0, - 25.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 20.0 - ], - [ - 20.0, - 10.0 - ], - [ - 5.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 15.0, - 35.0 - ], - [ - 5.0, - 15.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 5.0, - 30.0 - ], - [ - 15.0, - 10.0 - ], - [ - 20.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 15.0 - ], - [ - 5.0, - 5.0 - ], - [ - 20.0, - 30.0 - ], - [ - 0.0, - 0.0 - ], - [ - 5.0, - 20.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 15.0 - ], - [ - 5.0, - 35.0 - ], - [ - 15.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352018475349174, - 3.1899766738041593, - 3.548484080603995, - 4.180134553847632, - 5.060918832717767, - 6.7152238875119235, - 9.378691477159375, - 12.33083148310555, - 17.367227913396817, - 20.87924575793508, - 23.53324602093391, - 27.37808485745505, - 30.096727343258493, - 36.18638957003464, - 41.2690969803904, - 42.64611544726972, - 43.864981695042964, - 45.038574626805215, - 45.93444318922741, - 46.69685289146488, - 47.34631054663387, - 47.884660865188515, - 48.285406666102176, - 48.74100028679999, - 49.052376966877105, - 49.205622221603875, - 49.455512832807806 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615428, - 1.4813847491413072, - 1.8198213217004342, - 2.111467924224725, - 2.451192833712682, - 2.7884276468523734, - 3.0454884495387997, - 3.3998699938789185, - 3.6584076913226915, - 3.8858135124714557, - 4.2947737557088415, - 4.659026262415168, - 5.846690342862623, - 7.518701519292506, - 8.151468447510322, - 8.81095216512148, - 9.552161207357566, - 10.208442209228412, - 10.832498429332865, - 11.424065001140573, - 11.961540234698408, - 12.388316422006762, - 12.901011348160473, - 13.267570021318038, - 13.45375836905364, - 13.764269679933369 - ], - "5._384._0.0875": [ - 3.5263303887990465, - 4.2044734388356275, - 5.153768575853586, - 6.94018839310381, - 9.332933106428094, - 13.471413993905427, - 19.213029912634518, - 24.58328986876397, - 32.25439935193894, - 36.905700498137044, - 40.169011976107555, - 44.61134034011652, - 47.60765142549959, - 54.050755517502246, - 59.29658257097697, - 60.70739838146629, - 61.961906507961395, - 63.17270142448641, - 64.1017327670064, - 64.89375668768089, - 65.57144791945123, - 66.13557341747463, - 66.55604100613394, - 67.03548782273188, - 67.36313844333323, - 67.52416304061077, - 67.78595722538174 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125431, - 2.1622431316564765, - 2.5060808716684684, - 2.800141721741523, - 3.144463589205842, - 3.53310014478284, - 3.948049357968011, - 4.7848600216947315, - 5.502302225009756, - 6.139601454414939, - 7.257759242108006, - 8.220038729039118, - 11.105818651171193, - 14.526287186434223, - 15.644574609833828, - 16.71061666317861, - 17.805006035201377, - 18.686276258786283, - 19.45979275281087, - 20.135779017090815, - 20.705261042250612, - 21.131384640465285, - 21.614549758500814, - 21.94468931338982, - 22.107833250348712, - 22.37482952734204 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235743497016, - 2.8519307838757304, - 3.202092637567919, - 3.544454374596635, - 4.130036452149964, - 5.113015180988668, - 6.2841903609752015, - 8.567934509176, - 10.421459762462637, - 11.981149679370441, - 14.505140843905714, - 16.480411680966427, - 21.503724034664625, - 26.25707004137565, - 27.616207088469878, - 28.837095737242436, - 30.02656017088674, - 30.94060188011402, - 31.719372363508867, - 32.38236685097292, - 32.930623244038166, - 33.337590952531926, - 33.79773812204282, - 34.1116622633555, - 34.26628147739859, - 34.51886202603377 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + "6_10": { } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json index d6261a6259..fff090ac67 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json @@ -403,7 +403,7 @@ 3.003 ] }, - "1_11": { + "1_2": { "bore_locations": [ [ 0.0, @@ -412,189 +412,153 @@ [ 5.0, 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 ] ], "g": { "5._192._0.08": [ - 2.835166956024766, - 3.1871129252249464, - 3.520843299054095, - 4.0192963642906365, - 4.590334438698769, - 5.475419106160404, - 6.651437097298937, - 7.781707252434485, - 9.539612397137628, - 10.714860604134, - 11.596057820139029, - 12.881376704471217, - 13.801466856553454, - 15.930291065085985, - 17.78481570776504, - 18.298205124324884, - 18.758899195704362, - 19.20740690890415, - 19.554318975188675, - 19.85076401646089, - 20.105351947785028, - 20.317816434551347, - 20.476169935446862, - 20.656682390937068, - 20.779948391530255, - 20.840479732116055, - 20.93864505768389 + 2.835140144617679, + 3.1849643917020174, + 3.502165426925441, + 3.9301922546307075, + 4.362516256614647, + 4.930474121911802, + 5.538533506350954, + 6.014628289895621, + 6.622810334317273, + 6.969487915354439, + 7.207956408149328, + 7.5328400096669235, + 7.75247268244368, + 8.238002774495671, + 8.64704570804324, + 8.758946823716846, + 8.859835704138877, + 8.958391369204966, + 9.035204266339816, + 9.100920292313864, + 9.157710284461414, + 9.20539775508919, + 9.240984185845074, + 9.281724082545848, + 9.309518333012262, + 9.323128053749246, + 9.345076672378271 ], "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615428, - 1.4813847491413066, - 1.819821321700434, - 2.111467924224729, - 2.4511928331436974, - 2.78841962205322, - 3.0449912307209437, - 3.387670451818616, - 3.615443910896892, - 3.7978076640254574, - 4.092338233006955, - 4.328397553193087, - 4.992949163085869, - 5.76801250736593, - 6.029781236270641, - 6.290135391262823, - 6.571245316238277, - 6.81270184564937, - 7.037818082041057, - 7.249121229528879, - 7.44103788897673, - 7.59455565827571, - 7.78307532107633, - 7.921856227626152, - 7.993858404082789, - 8.117132356045662 + 0.8740013793970967, + 1.1957934696806858, + 1.4813667488882372, + 1.8197853662506762, + 2.1114044341807157, + 2.451070524851898, + 2.7881799871003565, + 3.044230462293286, + 3.3782486192021772, + 3.5866413599987026, + 3.74411106062757, + 3.9824685850393973, + 4.160322393737606, + 4.602146633625265, + 5.020983171670913, + 5.142411578682097, + 5.254586545541572, + 5.366786238317462, + 5.456237065826286, + 5.534186703990583, + 5.602785747046791, + 5.6613702351166975, + 5.70569649489467, + 5.757148217666041, + 5.792742473532685, + 5.810347556509697, + 5.839015563099657 ], "5._384._0.0875": [ - 3.490402800913484, - 4.01184638147444, - 4.61150240798044, - 5.5440182526867305, - 6.590958810264655, - 8.153610793987403, - 10.115939649202868, - 11.881302724298786, - 14.400601805455599, - 15.948062110204873, - 17.047258461578473, - 18.569929296323494, - 19.611649701583907, - 21.907553994334226, - 23.823090499190428, - 24.343997291013615, - 24.810051963914674, - 25.262410766911263, - 25.611924188571084, - 25.9102572189314, - 26.166533977087592, - 26.380555036910398, - 26.540061430332216, - 26.722083883867462, - 26.84631186145688, - 26.907250299777406, - 27.005945547819984 + 3.466682955321226, + 3.9075976085194033, + 4.352889851862578, + 4.936605526584581, + 5.471776533129856, + 6.114911758424402, + 6.760965495692346, + 7.250135480426092, + 7.863263609642247, + 8.209452006454356, + 8.446764914353068, + 8.769298847382146, + 8.987050619959732, + 9.468043860391814, + 9.873074716597168, + 9.983788485375486, + 10.083594630400668, + 10.181047397631279, + 10.256969131093063, + 10.321883348146676, + 10.377954447427506, + 10.425017066023733, + 10.460117564935974, + 10.500283849242233, + 10.527666961819111, + 10.541067428758854, + 10.562670309595733 ], "5._48._0.075": [ - 1.5268463243731416, - 1.8679037053125453, - 2.1622431316564765, - 2.5060808689637444, - 2.8001345619743248, - 3.14327527284599, - 3.5116958341447164, - 3.855484903543964, - 4.429449886630906, - 4.848413008221112, - 5.185448909371842, - 5.721751958757662, - 6.142872548854635, - 7.277962610524241, - 8.505039016569283, - 8.89568453247388, - 9.269454692924638, - 9.656471499211035, - 9.973615359309843, - 10.256638514920573, - 10.509744197690857, - 10.728356525703933, - 10.895352532006921, - 11.089821263683508, - 11.225285805796554, - 11.292776078789121, - 11.403553804962254 + 1.5268359332879171, + 1.8678839385147372, + 2.162208738345644, + 2.506015108690003, + 2.800015488967817, + 3.142155865119192, + 3.4965449323272013, + 3.799865787506381, + 4.2507898166056, + 4.541446697892453, + 4.753927656129075, + 5.057673450312983, + 5.270631610442865, + 5.758786283451121, + 6.183706938120382, + 6.301893218645891, + 6.4091683251290315, + 6.514727559207145, + 6.597585833820916, + 6.668904620538769, + 6.7309060054309935, + 6.783262307486161, + 6.822521074175333, + 6.867673225089816, + 6.898636895106161, + 6.913858452525283, + 6.93850302308843 ], "5._96._0.075": [ - 2.209271810327403, - 2.555323563035406, - 2.8519144496150726, - 3.2002147651518276, - 3.5235923654195167, - 3.9976127004527013, - 4.640906269211821, - 5.281367623165438, - 6.331716548673918, - 7.075964327686381, - 7.659847649426192, - 8.558731389182544, - 9.239232692351038, - 10.95194726014642, - 12.610870498066545, - 13.097618917410369, - 13.544065360682819, - 13.987168920322944, - 14.335354578843374, - 14.635872625326117, - 14.896104768736013, - 15.114567066122902, - 15.277937381557118, - 15.464478590925468, - 15.592182795289506, - 15.655049154130324, - 15.757209673764626 + 2.209261920932469, + 2.555305542704949, + 2.8518712893055422, + 3.1987380359893054, + 3.50909251084119, + 3.9222326952815756, + 4.412264545566231, + 4.831434304741051, + 5.400936800325458, + 5.7374752125758075, + 5.972497848894372, + 6.296305409402205, + 6.516924423640519, + 7.008216169558008, + 7.424709235540797, + 7.539067708903202, + 7.6423144310817825, + 7.743353070829632, + 7.822238931842795, + 7.889838497084045, + 7.948346853021645, + 7.997549271904297, + 8.03431587002969, + 8.076458437227618, + 8.105253962886398, + 8.119371531258903, + 8.142168594180948 ] }, "logtime": [ @@ -627,7 +591,7 @@ 3.003 ] }, - "1_12": { + "1_3": { "bore_locations": [ [ 0.0, @@ -640,421 +604,153 @@ [ 10.0, 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 ] ], "g": { "5._192._0.08": [ - 2.8351674525370814, - 3.187152714048253, - 3.5211894505807377, - 4.020959431047094, - 4.594665961213216, - 5.486316299317611, - 6.675928980232576, - 7.82492333886984, - 9.624313273684493, - 10.836778995141598, - 11.751284956543785, - 13.093603245703891, - 14.060783628630842, - 16.315702835289013, - 18.29611773236931, - 18.846364779514293, - 19.340406551264334, - 19.821590338999005, - 20.193730238626916, - 20.511789116350204, - 20.78485454615621, - 21.01265356198188, - 21.182430900893383, - 21.375906247964426, - 21.508044268134995, - 21.572952455517225, - 21.678274835451475 + 2.8351510677223124, + 3.185839705255709, + 3.509771540026878, + 3.966330673031906, + 4.453898436646452, + 5.141063225581686, + 5.935299849182006, + 6.591064822401665, + 7.4573397084792585, + 7.960204506246263, + 8.308428386398862, + 8.784434241747197, + 9.106869195173443, + 9.819004468262776, + 10.417553200063558, + 10.581112939206577, + 10.728355197827176, + 10.872032730663653, + 10.983845567697387, + 11.079470322916373, + 11.162021309221977, + 11.23127300322087, + 11.282940091757375, + 11.342050731061262, + 11.382382337920458, + 11.402138935562201, + 11.434024927322461 ], "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615426, - 1.4813847491413068, - 1.8198213217004353, - 2.1114679242247276, - 2.4511928331517994, - 2.78841973629207, - 3.044998268487421, - 3.3878312843269467, - 3.61595744922661, - 3.7987772872559, - 4.094346971526464, - 4.331500858889003, - 5.000481535675707, - 5.783561432673244, - 6.048850056351318, - 6.3132080949251135, - 6.599270995069248, - 6.84560211086141, - 7.075864221877238, - 7.29264779833884, - 7.490223204534129, - 7.6488586426954726, - 7.844604797944689, - 7.989650766373584, - 8.065353950741912, - 8.19596159555141 - ], - "5._384._0.0875": [ - 3.490845146760672, - 4.013800576984361, - 4.616447685482763, - 5.556298589192033, - 6.6155718438411295, - 8.205446070411096, - 10.21831632655605, - 12.046615246052504, - 14.68555475001738, - 16.323272074299606, - 17.49319382401146, - 19.120782326846335, - 20.238141766254202, - 22.706320545580787, - 24.76820366937706, - 25.329065489369768, - 25.83061425677176, - 26.317224728454494, - 26.692943682322856, - 27.013601832688156, - 27.288918747243365, - 27.518733603976493, - 27.689997761870334, - 27.88538722626625, - 28.01874889739666, - 28.08418088612448, - 28.19019848615699 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125467, - 2.1622431316564783, - 2.506080869002254, - 2.8001346639005558, - 3.1432919888723587, - 3.5119686761631086, - 3.856504979554626, - 4.4327923790211194, - 4.854261236115371, - 5.193830143419228, - 5.735195756898862, - 6.16122348670068, - 7.314208483484153, - 8.569656313335456, - 8.971927090004087, - 9.358185604618605, - 9.759727997805836, - 10.090178290838885, - 10.386269367377167, - 10.652119263683115, - 10.882627338629803, - 11.059330076259018, - 11.265801397667284, - 11.410155234013164, - 11.482273819570151, - 11.600979927805605 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.5553235631964966, - 2.851914682115341, - 3.2002410394446894, - 3.5238591225316274, - 3.999013111517024, - 4.645246742910911, - 5.290195631950463, - 6.351566462172947, - 7.106568351530147, - 7.700757635882495, - 8.619040441855363, - 9.317323117487392, - 11.087804745581606, - 12.823525107995163, - 13.337238157917824, - 13.809921775601065, - 14.280525461161893, - 14.651213039501897, - 14.971798269216324, - 15.24978407875666, - 15.48337475815615, - 15.658200894683633, - 15.857899175248235, - 15.994714127890704, - 16.06211764890041, - 16.171752844075332 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_13": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835167872663028, - 3.1871863815472303, - 3.5214823555578953, - 4.022367016152781, - 4.598334354889267, - 5.4955590561422305, - 6.696755956292045, - 7.861774620507107, - 9.69693115383684, - 10.941721931534667, - 11.885403695052583, - 13.27827702288233, - 14.28786201533284, - 16.658889310291617, - 18.758565561855214, - 19.344236851889093, - 19.870461352435676, - 20.38328551672411, - 20.779898350722565, - 21.118955957936564, - 21.409981777397405, - 21.652687500813656, - 21.833573582954557, - 22.039651602239974, - 22.180420510309965, - 22.24959028613101, - 22.36189049207631 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413072, - 1.8198213217004355, - 2.111467924224728, - 2.4511928331586517, - 2.7884198329557117, - 3.0450042235209596, - 3.3879673742247722, - 3.6163919968135643, - 3.7995978097571586, - 4.096047138223399, - 4.334128068548515, - 5.006866139467722, - 5.796766371392239, - 6.0650541545499195, - 6.332829407521105, - 6.623127622742341, - 6.873635670032012, - 7.10831656766363, - 7.329818646947897, - 7.532282915710492, - 7.695359481580537, - 7.897427047661231, - 8.048031041316603, - 8.127069774893931, - 8.26445047623605 + 0.8740013793970963, + 1.1957934696806856, + 1.4813667488882378, + 1.819785366250676, + 2.1114044341807157, + 2.4510705250300893, + 2.788182499477228, + 3.0443852106901215, + 3.381782256847064, + 3.5979049641354917, + 3.7653169707122243, + 4.025976647688318, + 4.226681022892984, + 4.7519775047763355, + 5.289276786959019, + 5.452176058421596, + 5.605172805309302, + 5.760500989302295, + 5.885820943128873, + 5.9960544830599956, + 6.093756080482953, + 6.177649611559798, + 6.241387660406869, + 6.315575367344118, + 6.367049048904869, + 6.3925661935266564, + 6.434203924751947 ], "5._384._0.0875": [ - 3.4912195269820585, - 4.01545481290049, - 4.620636677472281, - 5.566717952683127, - 6.636501504823167, - 8.249708950892252, - 10.306259867285037, - 12.189528252962543, - 14.935286344099918, - 16.65566289930807, - 17.891414395561412, - 19.618059217852274, - 20.807724507673704, - 23.44240787608797, - 25.646966615268383, - 26.246897065048557, - 26.783143508888283, - 27.303228637340194, - 27.704532810741817, - 28.04698473157598, - 28.3408721828442, - 28.5860779446347, - 28.768798278611836, - 28.977205245202754, - 29.119463312118796, - 29.189273922698433, - 29.302432892670183 + 3.4763066788959396, + 3.949772974187067, + 4.456260341450167, + 5.169408748681231, + 5.871115554030923, + 6.760870364124674, + 7.687802150819135, + 8.402209462252888, + 9.30497492062296, + 9.81638347479816, + 10.167150006594197, + 10.64346476548816, + 10.964771566054742, + 11.672408151280557, + 12.266242640000142, + 12.42833604434291, + 12.574279870681229, + 12.716647611846046, + 12.827426487106704, + 12.92212131446228, + 13.003853316799084, + 13.072405876226359, + 13.123529770395518, + 13.182008691940712, + 13.22188408446242, + 13.241405445087377, + 13.272897556367255 ], "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125465, - 2.1622431316564756, - 2.5060808690348395, - 2.800134750145825, - 3.143306133205904, - 3.5121995463964875, - 3.8573682325474326, - 4.435622543126915, - 4.859215607366215, - 5.2009338357739825, - 5.74660219449404, - 6.176807200826814, - 7.345095550275651, - 8.624966197136617, - 9.037289120058336, - 9.43440314533406, - 9.848652172295793, - 10.190846763722394, - 10.498577487908223, - 10.775903064501275, - 11.01724976589269, - 11.202898824820965, - 11.420574238336473, - 11.573343716214922, - 11.649889367609283, - 11.776258615251136 + 1.5268359332879173, + 1.867883938514737, + 2.1622087383456456, + 2.5060151095371266, + 2.8000177309803878, + 3.1425235015701425, + 3.50253927551839, + 3.8221513912839025, + 4.3219203208202615, + 4.662094623549054, + 4.920779665355623, + 5.305197220055999, + 5.584574633595157, + 6.250240097046942, + 6.8508100598561175, + 7.02032416411666, + 7.174704624548563, + 7.3270420254642925, + 7.446781361568329, + 7.54998768102832, + 7.639728763200551, + 7.715491511685074, + 7.772309526957078, + 7.837607291416172, + 7.882394856115053, + 7.904425286274421, + 7.940124399290625 ], "5._96._0.075": [ - 2.2092718103274036, - 2.5553235633328053, - 2.851914878846339, - 3.2002632715487938, - 3.524084843889482, - 4.000198319686831, - 4.648922812711506, - 5.297679486622008, - 6.368431822809411, - 7.132613371363251, - 7.735622503083266, - 8.670576388448413, - 9.384199733351398, - 11.205025040342896, - 13.00920034546786, - 13.547507517930491, - 14.044362225422582, - 14.54057036604107, - 14.932413367974217, - 15.272017165308927, - 15.566941848969465, - 15.815046318043487, - 16.00091004159573, - 16.213327964554935, - 16.358981602902468, - 16.430799226610322, - 16.547727568787387 + 2.2092619209324704, + 2.5553055462488583, + 2.8518764040875877, + 3.1993160118959567, + 3.514955741603026, + 3.9527389763946745, + 4.503681602688366, + 5.006861923779691, + 5.738944199243816, + 6.194547647991565, + 6.520747151603693, + 6.97831807732745, + 7.294240982610546, + 8.004586646061995, + 8.61032697321235, + 8.776955960336549, + 8.927246070742218, + 9.074228802677638, + 9.188836957686432, + 9.287022505975273, + 9.37190962826258, + 9.4432139118431, + 9.496477965097244, + 9.557471885031982, + 9.599147261960589, + 9.619587423820962, + 9.652619821039247 ] }, "logtime": [ @@ -1087,7 +783,7 @@ 3.003 ] }, - "1_14": { + "1_4": { "bore_locations": [ [ 0.0, @@ -1104,193 +800,153 @@ [ 15.0, 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 ] ], "g": { "5._192._0.08": [ - 2.835168232771081, - 3.187215239427649, - 3.5217334224619536, - 4.023573791178922, - 4.6014810724421285, - 5.503497554915395, - 6.714683303304745, - 7.89357043757204, - 9.759880579201557, - 11.03299235138716, - 12.002400020203213, - 13.440296630532327, - 14.48812769554716, - 16.96600175290772, - 19.1784934244692, - 19.798177752783378, - 20.355441302131922, - 20.898896261853594, - 21.319254682235222, - 21.678723249299676, - 21.98722013576539, - 22.24443108069967, - 22.436131451112217, - 22.654477076955967, - 22.80365329199522, - 22.87697806509933, - 22.99609074636675 + 2.8351565293061927, + 3.186277369725293, + 3.5135763440050924, + 3.984482530615498, + 4.500328527187433, + 5.252929853813622, + 6.166049558164793, + 6.954818862458517, + 8.035329575127863, + 8.677316270389335, + 9.126260992463921, + 9.74365052040903, + 10.163560451553488, + 11.09224837617182, + 11.87253405098203, + 12.085668095178917, + 12.277305834288796, + 12.464136810401527, + 12.609345157930006, + 12.733492953922616, + 12.840568813105348, + 12.930315914522732, + 12.997261077795526, + 13.073806543685494, + 13.126038789048899, + 13.151633867822897, + 13.192971097467371 ], "5._24._0.075": [ - 0.8740059532267965, - 1.195803175961542, - 1.4813847491413066, - 1.8198213217004344, - 2.1114679242247285, - 2.451192833164531, - 2.7884199158102616, - 3.0450093278356825, - 3.388084023330471, - 3.6167644772302805, - 3.8003011673458533, - 4.097504763191927, - 4.336380937338536, - 5.012346740713731, - 5.808120179619418, - 6.078993930533342, - 6.3497197748766565, - 6.6436809162669475, - 6.897807761085545, - 7.136323878455932, - 7.361930063445901, - 7.568657635301319, - 7.735619231402951, - 7.943248658548291, - 8.09879613657327, - 8.180841390175354, - 8.324467314809317 - ], - "5._384._0.0875": [ - 3.4915404882342194, - 4.016873230041997, - 4.624230548279237, - 5.575669555781333, - 6.654516983841043, - 8.287945395167277, - 10.382623751070048, - 12.31426993708191, - 15.155693872554874, - 16.951753521601887, - 18.2486893280448, - 20.06868622816311, - 21.327350531742383, - 24.122788462956706, - 26.46643452588137, - 27.104582625129876, - 27.674769265210536, - 28.22759505377856, - 28.65390144279216, - 29.017648698758553, - 29.329667069297063, - 29.58988712085041, - 29.783781828338018, - 30.004879884742365, - 30.155812834757985, - 30.229894831858054, - 30.350026401871972 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125458, - 2.1622431316564765, - 2.5060808690627696, - 2.800134824070347, - 3.1433182569229547, - 3.512397438020802, - 3.8581082452270468, - 4.438049786267506, - 4.86346649954196, - 5.207031395809252, - 5.75640176150731, - 6.190205681638623, - 7.371730226802197, - 8.67284535479989, - 9.093941552362253, - 9.50056789345122, - 9.926004600959695, - 10.278611187797427, - 10.59673730579632, - 10.884407650442913, - 11.135628214012122, - 11.32951441903377, - 11.557633496196711, - 11.71835948686888, - 11.799135544739901, - 11.932908937110644 + 0.8740013793970963, + 1.1957934696806856, + 1.4813667488882372, + 1.8197853662506762, + 2.1114044341807157, + 2.451070525119184, + 2.78818375566569, + 3.044462584972616, + 3.3835492733852717, + 3.6035402764592814, + 3.775936601553508, + 4.04783928375391, + 4.260199503376492, + 4.83026072820424, + 5.440316619613034, + 5.631817647925681, + 5.8144603766946545, + 6.002746075381008, + 6.15671652137846, + 6.293698523897438, + 6.416260465066006, + 6.522333986896158, + 6.603431531688164, + 6.698303675873532, + 6.764456015353557, + 6.797366566033298, + 6.851243600007028 + ], + "5._384._0.0875": [ + 3.4811393655885206, + 3.971010269644954, + 4.508976665415018, + 5.294251139816838, + 6.103114537954158, + 7.177936460766827, + 8.343480110490887, + 9.262841494572463, + 10.439178278648443, + 11.109549088367109, + 11.570154220595375, + 12.195693347635098, + 12.617618287524184, + 13.544949039519576, + 14.321132217443383, + 14.532760907779526, + 14.723102299691968, + 14.908625655760929, + 15.052829037332357, + 15.176068454958983, + 15.282364173235125, + 15.37146341955096, + 15.43790498694524, + 15.513878999541594, + 15.565692266203763, + 15.591066210539713, + 15.632024448327295 + ], + "5._48._0.075": [ + 1.5268359332879173, + 1.8678839385147374, + 2.1622087383456443, + 2.5060151099606895, + 2.8000188519866724, + 3.1427073206177853, + 3.5055373540001047, + 3.8333195360139745, + 4.357904355255417, + 4.7240568674260475, + 5.008175496203009, + 5.440407740861426, + 5.762629797534667, + 6.557057784804414, + 7.302738578001398, + 7.517295299755165, + 7.713813485892955, + 7.90866356380504, + 8.062297541151557, + 8.19505899526737, + 8.310650013821848, + 8.408302728791881, + 8.481590072964535, + 8.565802485788343, + 8.623600723744266, + 8.652055179321795, + 8.698212371267878 ], "5._96._0.075": [ - 2.209271810327403, - 2.555323563449641, - 2.8519150474729065, - 3.2002823276454264, - 3.5242783221126226, - 4.00121439116372, - 4.652076184515599, - 5.304104455130177, - 6.382938640638393, - 7.155047335081405, - 7.7656896356862735, - 8.715123096184907, - 9.44211391608916, - 11.307166556476718, - 13.172540426147433, - 13.733276783069666, - 14.252380178574299, - 14.772394349337908, - 15.18409785722751, - 15.541701553333983, - 15.852770649385336, - 16.114790583669958, - 16.3112868541908, - 16.536005290945287, - 16.690239672830337, - 16.76635564404746, - 16.89040796030123 + 2.2092619209324704, + 2.5553055480208138, + 2.851878961478617, + 3.199605002205937, + 3.5178882395629185, + 3.968046678185059, + 4.55014749155164, + 5.098742395066348, + 5.930851539740409, + 6.470185581628055, + 6.865730338663789, + 7.431794194211518, + 7.82918121122223, + 8.73596275485232, + 9.51800957209451, + 9.734023351563122, + 9.928834742576504, + 10.119361285092724, + 10.267811157313929, + 10.394989586500742, + 10.504853818991128, + 10.597056343718467, + 10.665915874567876, + 10.744705908389962, + 10.798543354928198, + 10.824959083605435, + 10.867680397495905 ] }, "logtime": [ @@ -1323,7 +979,7 @@ 3.003 ] }, - "1_15": { + "1_5": { "bore_locations": [ [ 0.0, @@ -1344,213 +1000,173 @@ [ 20.0, 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 ] ], "g": { "5._192._0.08": [ - 2.835168544864798, - 3.1872402496087084, - 3.5219510178818707, - 4.024619867134964, - 4.604210006215437, - 5.51038966387555, - 6.730277114927017, - 7.921284108210023, - 9.814972097607797, - 11.113094412952053, - 12.105334536619209, - 13.583509803831516, - 14.665915026769497, - 17.242116743141935, - 19.561196616706166, - 20.213508120096993, - 20.8006874532547, - 21.373786224556817, - 21.817186168510986, - 22.1965011318012, - 22.52200356120584, - 22.793340998638072, - 22.99557916527651, - 23.225879358377117, - 23.38325470001306, - 23.460635492789127, - 23.586407499567034 + 2.8351598062666232, + 3.186539970868435, + 3.5158597860966205, + 3.9954013132700497, + 4.528420506228125, + 5.3215759636561835, + 6.31279536227868, + 7.197643286509492, + 8.449802285616565, + 9.21208449967516, + 9.751349000396456, + 10.498844387141098, + 11.01019344790078, + 12.144898313237372, + 13.099625948047745, + 13.360473668577686, + 13.594785319219229, + 13.823057700360815, + 14.00027547815332, + 14.151752764767862, + 14.282290873883106, + 14.39161564155346, + 14.47315005172904, + 14.566327283043137, + 14.629913935163467, + 14.661082947670087, + 14.7114545821795 ], "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004355, - 2.111467924224727, - 2.4511928331696202, - 2.788419987617539, - 3.045013751575309, - 3.38818511968639, - 3.6170873018470258, - 3.800910783189355, - 4.098768291494044, - 4.338334151692522, - 5.017102641248917, - 5.81798659581122, - 6.091112972862728, - 6.364412192937793, - 6.661572451971271, - 6.918864668623613, - 7.160740659407046, - 7.389948781942197, - 7.600425783334242, - 7.770812060636389, - 7.983364895457364, - 8.143324100462266, - 8.228081967016777, - 8.377460365559768 + 0.8740013793970968, + 1.195793469680686, + 1.4813667488882376, + 1.8197853662506758, + 2.111404434180715, + 2.451070525172641, + 2.7881845093787754, + 3.0445090095690146, + 3.384609546576235, + 3.60692258803915, + 3.782313721304198, + 4.060991129105417, + 4.280408476405369, + 4.878001605922317, + 5.534874882442655, + 5.745943502422536, + 5.949666959848923, + 6.162379721752643, + 6.338479744874569, + 6.49689031949909, + 6.64004768398907, + 6.76506132893069, + 6.861365674024911, + 6.974792013370061, + 7.054411305581753, + 7.094208003200405, + 7.159645254280049 ], "5._384._0.0875": [ - 3.491818702392649, - 4.018102898862346, - 4.627347707412996, - 5.583443124942264, - 6.670187257070959, - 8.321307417970685, - 10.449554932817602, - 12.424086433077191, - 15.351501191566973, - 17.21688986943145, - 18.570645372479667, - 20.478496292684877, - 21.80290442778471, - 24.753384005042783, - 27.23259965067327, - 27.90814462738544, - 28.5115478147078, - 29.096418014759173, - 29.54717665378859, - 29.93175005518627, - 30.26148649911399, - 30.536367741639214, - 30.74117274333813, - 30.974656194065883, - 31.1340566857579, - 31.21230974578456, - 31.33925612146927 + 3.484045428228503, + 3.983803041186735, + 4.5409283279405095, + 5.371119867045962, + 6.250610707585901, + 7.460822088981469, + 8.822064064479669, + 9.923056162452188, + 11.35373942918458, + 12.175784657247368, + 12.742211991048363, + 13.512226599200405, + 14.031877063359648, + 15.172488335257922, + 16.125332896405297, + 16.38489296263954, + 16.618121258210458, + 16.84527448121368, + 17.021659665212646, + 17.17237123947259, + 17.30227791766592, + 17.41110415604465, + 17.492249758034, + 17.585007675061036, + 17.64827611166057, + 17.67926884036746, + 17.72932432908714 ], "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125451, - 2.1622431316564765, - 2.506080869086979, - 2.8001348881382637, - 3.1433287641463257, - 3.512568946225356, - 3.858749650440403, - 4.440154434152093, - 4.867153811191537, - 5.212322438583283, - 5.76491165080864, - 6.2018484205203785, - 7.394933999789252, - 8.71469722294121, - 9.143515434537681, - 9.558540613011013, - 9.993891852575151, - 10.35577461600931, - 10.683216231423613, - 10.980229169564637, - 11.240449603806452, - 11.441916753239898, - 11.679760319943194, - 11.847999551268968, - 11.93281402315595, - 12.073737908458384 - ], - "5._96._0.075": [ - 2.2092718103274027, - 2.5553235635508993, - 2.8519151936159317, - 3.2002988429346937, - 3.5244460053102884, - 4.002095119942009, - 4.654810941263905, - 5.309680417353388, - 6.395549302123753, - 7.1745724521694845, - 7.791885389748233, - 8.754011608613151, - 9.492753082982883, - 11.396952459223979, - 13.317232898366825, - 13.898435593271188, - 14.438013553139642, - 14.980141471971496, - 15.410468734594135, - 15.785087764673625, - 16.11152854988615, - 16.38688118721623, - 16.59361657363124, - 16.830231863180607, - 16.99280095197227, - 17.073105670554494, - 17.204123255609414 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, + 1.5268463243731423, + 1.8679037053125438, + 2.1622431316564774, + 2.506080868409208, + 2.800133094236608, + 3.1430345625688068, + 3.5077674641030474, + 3.8408116625904216, + 4.381586671332468, + 4.765025811641742, + 5.0664282724592455, + 5.532471379825891, + 5.886390053018073, + 6.785527080084026, + 7.663765491037, + 7.921985185406946, + 8.160457294662926, + 8.39852958441645, + 8.587237147922867, + 8.750825350971988, + 8.893568538257197, + 9.014297504376565, + 9.104922018464343, + 9.208990335965863, + 9.280380743302517, + 9.315523178898712, + 9.372516058367696 + ], + "5._96._0.075": [ + 2.209261920932471, + 2.5553055490839878, + 2.8518804959132367, + 3.199778397146007, + 3.519648020844696, + 3.977249406611028, + 4.578267520113382, + 5.154848731697201, + 6.051483672644926, + 6.64903109207958, + 7.095749573899366, + 7.746739141717749, + 8.21143309928475, + 9.290062728168119, + 10.234593250466354, + 10.497074014542322, + 10.733965995209655, + 10.965795245194869, + 11.1463870323713, + 11.301144547056056, + 11.434763905850694, + 11.546829250128546, + 11.630513785636808, + 11.726204400187711, + 11.791598239536073, + 11.82369792476395, + 11.875650777827616 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, 0.196, 0.419, 0.642, @@ -1563,7 +1179,7 @@ 3.003 ] }, - "1_16": { + "1_6": { "bore_locations": [ [ 0.0, @@ -1588,193 +1204,153 @@ [ 25.0, 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 ] ], "g": { "5._192._0.08": [ - 2.8351688179468586, - 3.187262133530874, - 3.5221414169997245, - 4.025535339222074, - 4.606599178958763, - 5.516429477188771, - 6.743965140780842, - 7.945654210569434, - 9.863590332464337, - 11.183957984911705, - 12.196588493716607, - 13.71096705337824, - 14.824713259669757, - 17.491454754982396, - 19.91114320016257, - 20.59472497041603, - 21.210717501216095, - 21.812493486214496, - 22.278250946023377, - 22.676867632135043, - 23.018930577084788, - 23.304035524653422, - 23.516550699795705, - 23.75851179936078, - 23.92389166623181, - 24.00523622061856, - 24.137525180471517 + 2.835161990911118, + 3.1867150393227837, + 3.517382314078809, + 4.002692053524816, + 4.547247743896627, + 5.367980602934978, + 6.413570897056565, + 7.368631251473461, + 8.756431479101177, + 9.620653096642311, + 10.239410857054358, + 11.104845246864013, + 11.701048412476972, + 13.030666099915301, + 14.15275812389436, + 14.459600600779275, + 14.73502536672501, + 15.003207714105734, + 15.211206411368803, + 15.388959622334651, + 15.54202512808495, + 15.670121922445576, + 15.765641438969773, + 15.874746584972375, + 15.949209240564953, + 15.985720622448445, + 16.044762103825423 ], "5._24._0.075": [ - 0.8740059532267968, + 0.8740059532267962, 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004342, + 1.4813847491413075, + 1.8198213217004349, 2.111467924224728, - 2.4511928331740753, - 2.788420050448908, - 3.045017622347631, - 3.3882735793514955, - 3.6173697796751774, - 3.801444226963368, - 4.0998740717498166, - 4.340043768982335, - 5.021268666455174, - 5.826639922736297, - 6.101746112364224, - 6.3773094434263085, - 6.677287786387347, - 6.937372042389826, - 7.182215634901754, - 7.414610152926143, - 7.628409831028651, - 7.801836517664711, - 8.0187739954478, - 8.18268572331491, - 8.269895188689981, - 8.424569427195248 + 2.451192833062686, + 2.7884184796647324, + 3.0449208530816416, + 3.386062186750797, + 3.610309594636148, + 3.788116506186535, + 4.0722835555242085, + 4.297458391423497, + 4.918397013470395, + 5.61584433170168, + 5.843837463130339, + 6.066165491561771, + 6.300813022308235, + 6.497258102773271, + 6.675709755400152, + 6.838541308355629, + 6.982014684034514, + 7.0933559921619755, + 7.2254301846344235, + 7.318753499591462, + 7.365610745077294, + 7.442978084331978 ], "5._384._0.0875": [ - 3.4920621761544317, - 4.019179144035874, - 4.630077105548222, - 5.590256842469188, - 6.683942243923466, - 8.350671063373984, - 10.508699644263562, - 12.521502058429295, - 15.526517926932568, - 17.455481600753973, - 18.861988531208997, - 20.852437748365947, - 22.239408544228443, - 25.339273385807644, - 27.95060270293323, - 28.662749726732404, - 29.298675331050447, - 29.91492694531209, - 30.389617241678245, - 30.79457369621703, - 31.141639361121943, - 31.430849835299398, - 31.646316998266908, - 31.89189881346806, - 32.05957228352458, - 32.14190231924791, - 32.27551561227403 + 3.4859855003899294, + 3.9923526176916058, + 4.562366681191675, + 5.423179572495527, + 6.351897707188339, + 7.662034742866547, + 9.181066820380732, + 10.43987096909204, + 12.103673142668287, + 13.069209871928068, + 13.737033095912324, + 14.646499652878957, + 15.260947136768802, + 16.60872995583057, + 17.733078357411195, + 18.03913778800683, + 18.313907521596736, + 18.5813341907395, + 18.78879675179029, + 18.966027440371185, + 19.118697950718726, + 19.246521975063747, + 19.341825483318093, + 19.450734107695883, + 19.525027676769373, + 19.561430791160035, + 19.620254657474046 ], "5._48._0.075": [ - 1.5268463243731418, + 1.5268463243731434, 1.8679037053125456, - 2.1622431316564765, - 2.5060808691081564, - 2.800134944197689, - 3.1433379579682446, - 3.5127190175269383, - 3.859310926387652, - 4.4419967915031995, - 4.8703826523835385, - 5.216957051088386, - 5.77237072803716, - 6.212059284985178, - 7.415329590662027, - 8.75159245557415, - 9.187258920053583, - 9.60975183846644, - 10.053944454202847, - 10.424133269745642, - 10.759954403643556, - 11.065425253016377, - 11.33385819598319, - 11.542303046906923, - 11.78919522331024, - 11.964521601499293, - 12.053187410757682, - 12.201012967126601 + 2.162243131656478, + 2.5060808685786498, + 2.8001335427120204, + 3.1431081128315754, + 3.508967689277732, + 3.8452920087841305, + 4.396158399568936, + 4.790341907673497, + 5.1024668122352, + 5.589462598819013, + 5.963237889259346, + 6.930182846399339, + 7.9023401724775715, + 8.193762340376306, + 8.464899445380386, + 8.737487450753207, + 8.95476995829216, + 9.143990687370689, + 9.309650406466377, + 9.450109469695633, + 9.555748290333073, + 9.677192905925992, + 9.76062836275538, + 9.801755151911522, + 9.86854588921472 ], "5._96._0.075": [ - 2.209271810327404, - 2.555323563639499, - 2.8519153214910804, - 3.200313293817019, - 3.524592729685736, - 4.002865859327178, - 4.65720525184593, - 5.314565224975939, - 6.406612747444055, - 7.19171996673082, - 7.814912104944257, - 8.788255240748112, - 9.537406364315505, - 11.476494314006128, - 13.446230500775407, - 14.046129544729979, - 14.604555398702667, - 15.167215805002831, - 15.614993052560113, - 16.005680692537087, - 16.346743944170854, - 16.634862046513877, - 16.851453726570124, - 17.09957552366926, - 17.27024340909841, - 17.354632493131493, - 17.492465555796507 + 2.2092619209324704, + 2.5553055497927706, + 2.8518815188696505, + 3.1998939940869224, + 3.5208213260912595, + 3.9833921153927623, + 4.597116326255696, + 5.192666633794937, + 6.133875980646579, + 6.772999136289317, + 7.25762498277739, + 7.974401186413238, + 8.493701931753968, + 9.71993303662497, + 10.812582732567138, + 11.11854192062693, + 11.395086505922585, + 11.666052948584051, + 11.877194636648637, + 12.058233088047688, + 12.214508475351074, + 12.345520563404403, + 12.443354501252804, + 12.555167327733807, + 12.631594925930047, + 12.669128294461094, + 12.729922063086406 ] }, "logtime": [ @@ -1807,7 +1383,7 @@ 3.003 ] }, - "1_17": { + "1_7": { "bore_locations": [ [ 0.0, @@ -1836,193 +1412,153 @@ [ 30.0, 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 ] ], "g": { "5._192._0.08": [ - 2.8351690589016614, - 3.1872814428846103, - 3.5223094186438755, - 4.026343229355509, - 4.608708323963619, - 5.521765881811545, - 6.756076611788821, - 7.967251312957956, - 9.906812542686033, - 11.247093174140165, - 12.278038423182068, - 13.825109084030867, - 14.967352240082077, - 17.717546797284673, - 20.232133224527203, - 20.94566096794357, - 21.58938581808407, - 22.218891603498477, - 22.706340240518937, - 23.12373122115777, - 23.481927414665734, - 23.78045809380737, - 24.0030032764878, - 24.25634874241662, - 24.429550558560233, - 24.514772572479192, - 24.65344567398278 + 2.8351635513735327, + 3.1868400887210777, + 3.518469948327196, + 4.007905391760889, + 4.560744629535112, + 5.401449083758796, + 6.486976321316337, + 7.494819690011772, + 8.990031148978208, + 9.939742486515406, + 10.62756995709885, + 11.598631317944045, + 12.272809342815531, + 13.785766062801317, + 15.068231886920891, + 15.419442920350987, + 15.734535049510566, + 16.041230270215344, + 16.27890182163994, + 16.481985532426044, + 16.65674348422391, + 16.802895065437415, + 16.911862557914205, + 17.036270572370665, + 17.12118489782945, + 17.16283345665093, + 17.230222114881137 ], "5._24._0.075": [ 0.8740059532267965, - 1.1958031759615428, - 1.481384749141308, - 1.8198213217004362, - 2.1114679242247285, - 2.4511928331780064, - 2.788420105888346, - 3.0450210377350913, - 3.388351632271312, - 3.6176190296918462, - 3.801914935830435, - 4.10084990981322, - 4.341552684889036, - 5.024948150542268, - 5.834290922722765, - 6.1111508263710395, - 6.388721566780078, - 6.691201159220184, - 6.953766422234156, - 7.201250156647216, - 7.436483375001985, - 7.653247661503421, - 7.829391187567958, - 8.050256200291084, - 8.21772388269435, - 8.307154058477826, - 8.466703591473225 + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004349, + 2.1114679242247276, + 2.4511928330881467, + 2.788418838701112, + 3.044942971763282, + 3.386567629728472, + 3.6119230278460517, + 3.7911613045797923, + 4.078580049636962, + 4.307163752177449, + 4.941677435556674, + 5.663027618983758, + 5.901361759594423, + 6.135247696883413, + 6.383886230396662, + 6.59370507369637, + 6.785803776503792, + 6.962509782107197, + 7.119485626994295, + 7.242243538718094, + 7.389029028716575, + 7.493643635612574, + 7.5465023506515365, + 7.634332582782971 ], "5._384._0.0875": [ - 3.4922770341425298, - 4.02012899306331, - 4.632486859291764, - 5.596278145614024, - 6.696112839492165, - 8.376714356967737, - 10.561341677109818, - 12.608504931522763, - 15.683837052054457, - 17.671185756460726, - 19.12667579376766, - 21.19473410892038, - 22.64117916293682, - 25.884849491647305, - 28.62489244093846, - 29.372869137619684, - 30.040648890943377, - 30.687648311201425, - 31.185775876470803, - 31.610695667944412, - 31.974723288138225, - 32.277950111584374, - 32.50384570723368, - 32.7612557415252, - 32.93701919351604, - 33.02333776629886, - 33.163479063047035 + 3.487372589585155, + 3.998469801266941, + 4.5777474410051315, + 5.460776223461212, + 6.425674739213298, + 7.811448320008934, + 9.457393874786662, + 10.851633705797674, + 12.726622455189958, + 13.826818124689655, + 14.591252079696888, + 15.634857218384486, + 16.341099374278958, + 17.89012008611717, + 19.18120760165275, + 19.532466736275204, + 19.84756093006916, + 20.15403736620567, + 20.391581915199563, + 20.59447307028286, + 20.76914405185987, + 20.915308582552065, + 21.024277607388683, + 21.148765882915125, + 21.233696595705158, + 21.275322017056848, + 21.342617449775894 ], "5._48._0.075": [ 1.5268463243731418, - 1.8679037053125453, - 2.1622431316564774, - 2.5060808691268437, - 2.80013499366189, - 3.1433460701651925, - 3.5128514346389474, - 3.8598062058258567, - 4.443623013888008, - 4.873233525263319, - 5.221050255841933, - 5.778962302562658, - 6.221087105997153, - 7.4333976346872985, - 8.784362207472078, - 9.22614312011308, - 9.655318274451016, - 10.10744161540083, - 10.485104979323387, - 10.828493955601507, - 11.141643336312796, - 11.417582282826874, - 11.632453171433792, - 11.887762295998408, - 12.06976805740128, - 12.16210338056123, - 12.316586390040712 + 1.8679037053125447, + 2.162243131656477, + 2.506080868699679, + 2.8001338630516033, + 3.14316064878727, + 3.509825052299018, + 3.848493949538661, + 4.406595353628653, + 4.808512554916006, + 5.128385046179502, + 5.630621991594365, + 6.018944136982413, + 7.036679243449652, + 8.083085612065275, + 8.402118479140187, + 8.701041197701302, + 9.003679581690063, + 9.246361952110863, + 9.458765264812914, + 9.64545370153571, + 9.80423770945946, + 9.923954658858502, + 10.061818993725646, + 10.156722307309312, + 10.203578162091253, + 10.279798091320455 ], "5._96._0.075": [ - 2.209271810327406, - 2.5553235637176734, - 2.8519154343220916, - 3.200326044598801, - 3.524722193592667, - 4.003546002330923, - 4.659318963437549, - 5.3188798823630306, - 6.416397250672831, - 7.206899197478823, - 7.835311948164303, - 8.818639037856066, - 9.57707543473498, - 11.547450804359967, - 13.561916433207719, - 14.178921871017529, - 14.754711611968649, - 15.336435682657676, - 15.80055514492544, - 16.20640555029027, - 16.561367349484165, - 16.86169958035954, - 17.087774779945107, - 17.347024453353548, - 17.525563923786798, - 17.61393744351541, - 17.758443820562867 + 2.2092619209324726, + 2.555305550299042, + 2.8518822495528053, + 3.199976563484331, + 3.5216594589333883, + 3.987783469991948, + 4.610630051411952, + 5.219885841408891, + 6.193697119043065, + 6.863688145465759, + 7.37701355174114, + 8.145097648783063, + 8.708507627471517, + 10.06015942648566, + 11.28655314742143, + 11.632954167739143, + 11.94671528792384, + 12.254687309217946, + 12.494851774934968, + 12.700949413835472, + 12.87886828832538, + 13.02799852954206, + 13.13937721517926, + 13.266623199224691, + 13.353625807082219, + 13.396374577666606, + 13.465670536191942 ] }, "logtime": [ @@ -2055,7 +1591,7 @@ 3.003 ] }, - "1_18": { + "1_8": { "bore_locations": [ [ 0.0, @@ -2088,193 +1624,153 @@ [ 35.0, 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 ] ], "g": { "5._192._0.08": [ - 2.8351692730837423, - 3.187298606762966, - 3.522458755345322, - 4.027061448885452, - 4.610583947457378, - 5.52651499480654, - 6.7668690577360815, - 7.986523168712463, - 9.945489540603598, - 11.303698194546337, - 12.351181227263593, - 13.927906356309494, - 15.096143711793104, - 17.92336364870048, - 20.527420739654467, - 21.269606202744534, - 21.940005689337262, - 22.59631260124454, - 23.10480204177181, - 23.540455043047896, - 23.914372713649, - 24.226002396199565, - 24.458342735597878, - 24.72281121102384, - 24.903663092657645, - 24.992681563926993, - 25.13761451114891 + 2.8351647217214677, + 3.186933876044517, + 3.519285736505398, + 4.011818497662372, + 4.570894108303604, + 5.426728791536699, + 6.54283296440728, + 7.591620694148268, + 9.17287427882817, + 10.194107684929786, + 10.941523251610322, + 12.00638612842619, + 12.751640249349293, + 14.436094492467918, + 15.871970204591033, + 16.265984796584448, + 16.619382638898305, + 16.963296056123465, + 17.22962699562798, + 17.457181743403964, + 17.652877641644146, + 17.81643860401857, + 17.938371584706154, + 18.07752195433133, + 18.172508033742663, + 18.21911029705349, + 18.294558020175877 ], "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615422, - 1.4813847491413075, - 1.8198213217004355, - 2.1114679242247285, - 2.451192833181505, - 2.7884201551678527, - 3.0450240736351453, - 3.388421012860232, - 3.617840589098392, - 3.8023333619594015, - 4.101717439179855, - 4.3428942820167435, - 5.028221623461068, - 5.841104208397113, - 6.11952835591694, - 6.398891099642963, - 6.703605660887682, - 6.968390081255408, - 7.218237796175804, - 7.456015889045902, - 7.675441491684556, - 7.854027068103665, - 8.078429356470423, - 8.249109940536144, - 8.340557057811795, - 8.504596559438866 + 0.8740059532267965, + 1.1958031759615428, + 1.481384749141307, + 1.8198213217004344, + 2.1114679242247276, + 2.4511928331072417, + 2.788419107978398, + 3.0449595607775213, + 3.38694671903478, + 3.6131332285032456, + 3.793445501332113, + 4.083306271732066, + 4.314453820052616, + 4.959227826323579, + 5.698797092038951, + 5.945050639137389, + 6.187843159811322, + 6.447351967369248, + 6.667688198809891, + 6.870670508507129, + 7.058642033713825, + 7.226812270639648, + 7.359240903062616, + 7.518811155763976, + 7.633534711150006, + 7.691889342711376, + 7.78953283313596 ], "5._384._0.0875": [ - 3.492468041218071, - 4.020973477239523, - 4.6346300134515745, - 5.6016376685401745, - 6.7069578710748265, - 8.399970251169869, - 10.608497187365451, - 12.686680278655265, - 15.825986523133219, - 17.86705085107303, - 19.368050353335466, - 21.509008923275072, - 23.011947512440027, - 26.393939664914026, - 29.259348324645806, - 30.042401941906093, - 30.741390330681945, - 31.418530004676605, - 31.939623899075194, - 32.38410832038698, - 32.76475011837596, - 33.08169768430379, - 33.317801041800934, - 33.58678447788876, - 33.77046542270937, - 33.86068922785991, - 34.00722777352846 - ], - "5._48._0.075": [ - 1.52684632437314, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808691434566, - 2.800135037630068, - 3.143353281007823, - 3.5129691397283414, - 3.860246482515314, - 4.44506902751722, - 4.875769127202337, - 5.224691685707922, - 5.784829391325068, - 6.229126218508878, - 7.449515014152312, - 8.813661636168035, - 9.260934871510416, - 9.69612391814712, - 10.15539973642802, - 10.539821701313398, - 10.890073238816777, - 11.210214903264593, - 11.493027544865335, - 11.713822022515926, - 11.976960588559795, - 12.165257190672044, - 12.26108582343124, - 12.421986650584406 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.555323563787166, - 2.8519155346163263, - 3.2003373786296203, - 3.5248372735833664, - 4.004150635947617, - 4.661198672301654, - 5.322718705181594, - 6.4251124552275956, - 7.220430615138642, - 7.8535101038914545, - 8.845780615646634, - 9.612550366949462, - 11.611141314569045, - 13.66622890712801, - 14.298916080959975, - 14.890720891876425, - 15.490150856504643, - 15.969572129177786, - 16.38972255095019, - 16.7578859167738, - 17.069897439253392, - 17.305093189827005, - 17.575102662476116, - 17.761294063056955, - 17.853555913286083, - 18.004599999183345 + 3.4884136311046037, + 4.003063355715507, + 4.589320170805375, + 5.489201774443061, + 6.481812737411748, + 7.926527425106713, + 9.675279758487836, + 11.185093060011493, + 13.249766296660328, + 14.475431511368184, + 15.331419463282488, + 16.503586351457493, + 17.298532622656356, + 19.042952677600642, + 20.49631606502745, + 20.891580909268864, + 21.245886489210218, + 21.59029727570618, + 21.85701793916289, + 22.084788611103733, + 22.28076589101648, + 22.444673214799938, + 22.566859934104503, + 22.706408405934326, + 22.801623258318443, + 22.84829984392765, + 22.923796795536 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808687904506, + 2.800134103306287, + 3.143200050783419, + 3.510468107010462, + 3.8508963316091953, + 4.414438740817388, + 4.822188729027952, + 5.147920809779815, + 5.6617412665866, + 6.061172234912023, + 7.118222625355691, + 8.223977400646614, + 8.565926354152591, + 8.888368587760395, + 9.216982914172783, + 9.482070651932084, + 9.715283521502554, + 9.92114303118358, + 10.096861017270282, + 10.229732025255013, + 10.383086671728998, + 10.488908728979549, + 10.541255081907316, + 10.626567721596818 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323562310493, + 2.851913403363865, + 3.200096530994641, + 3.522392018642154, + 3.991314729739165, + 4.621427261157848, + 5.2418623011263055, + 6.243476466214302, + 6.940573200551681, + 7.479616008236281, + 8.295144787010088, + 8.900299636780371, + 10.376719238156289, + 11.74301450802422, + 12.132732242709551, + 12.486853442375677, + 12.835330841652922, + 13.10754000849982, + 13.341321271536831, + 13.543201038346496, + 13.71239405971962, + 13.838714322240936, + 13.982915022417407, + 14.08146763778019, + 14.129887734480553, + 14.208373458997382 ] }, "logtime": [ @@ -2307,7 +1803,7 @@ 3.003 ] }, - "1_19": { + "1_9": { "bore_locations": [ [ 0.0, @@ -2344,193 +1840,153 @@ [ 40.0, 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 ] ], "g": { "5._192._0.08": [ - 2.8351694647203747, - 3.1873139639239865, - 3.5225923739150744, - 4.027704142133235, - 4.612262797721352, - 5.530768708786782, - 6.776546817615984, - 8.003826069248145, - 9.980302249155868, - 11.354735837969141, - 12.417224683845912, - 14.020963763814295, - 15.212989636595125, - 18.11141747098906, - 20.799808841710586, - 21.569402824736645, - 22.265444163343734, - 22.94764236411192, - 23.47653703834465, - 23.929953308944043, - 24.31919431157749, - 24.64360949407731, - 24.885520886658927, - 25.16086452601835, - 25.34920413106403, - 25.441942790579557, - 25.593018899549524 + 2.8351656319927545, + 3.1870068219033163, + 3.519920275456365, + 4.014863864275213, + 4.578804079347618, + 5.446497302574992, + 6.5867638892224605, + 7.668210630295387, + 9.31948595678537, + 10.400751592603127, + 11.199460533416461, + 12.347208567557189, + 13.156859528019162, + 15.000946441179334, + 16.583279549015096, + 17.01857367752908, + 17.4089778114082, + 17.788893833730206, + 18.0829461087665, + 18.334181903923373, + 18.55012717027752, + 18.730511529439973, + 18.864972877443385, + 19.018358910344357, + 19.12307397596743, + 19.174464676721957, + 19.2577123592597 ], "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.481384749141308, - 1.8198213217004335, + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004344, 2.1114679242247276, - 2.4511928331846295, - 2.7884201992600426, - 3.0450267899668466, - 3.3884830904013934, - 3.6180388295226176, - 3.802707757790232, - 4.102493743617169, - 4.344094928527764, - 5.0311527726232, - 5.8472102182781915, - 6.127038263510064, - 6.40801049691517, - 6.714734094701957, - 6.98151516441067, - 7.233491826550191, - 7.473564274130246, - 7.695392081855646, - 7.876184460112501, - 8.103788638717877, - 8.277384497641398, - 8.370668879402892, - 8.53884674605867 + 2.451192833122094, + 2.7884193174162886, + 3.04497246334593, + 3.3872415704645307, + 3.6140745702022876, + 3.7952224531880465, + 4.086984505796733, + 4.320130426044472, + 4.9729318086172745, + 5.726847809033363, + 5.979358867048692, + 6.229217031584646, + 6.497391994910775, + 6.72617189207539, + 6.937966719710192, + 7.135171064256747, + 7.3126583934509215, + 7.4532752755923175, + 7.623914203819442, + 7.747637887561994, + 7.810998147346106, + 7.9178111669112 ], "5._384._0.0875": [ - 3.492638959997171, - 4.021729207136158, - 4.636548491089315, - 5.606438827200345, - 6.716682704096039, - 8.42086344905772, - 10.650981102850826, - 12.757306931705557, - 15.955046336331753, - 18.045630868074465, - 19.588949382937457, - 21.798385036074308, - 23.35495524595839, - 26.869899740663218, - 29.857376288511514, - 30.674771406224043, - 31.40434302732167, - 32.11103857220592, - 32.65464889641591, - 33.11831817970246, - 33.5152440260034, - 33.845632420925064, - 34.091734744662695, - 34.37205072584209, - 34.56348624980439, - 34.65753666354015, - 34.81034914359852 + 3.489223759869314, + 4.006639482911057, + 4.598343276007638, + 5.511446901966879, + 6.525963758174213, + 8.017847288010064, + 9.850905469534082, + 11.459298557513014, + 13.693400435541571, + 15.035278395984449, + 15.977598076151251, + 17.272541012503424, + 18.153014168043356, + 20.087039880660246, + 21.698451737439473, + 22.13661438713422, + 22.529104227366194, + 22.91042431111111, + 23.205490461365894, + 23.457425178969224, + 23.674073103378994, + 23.85517602846363, + 23.99017047005815, + 24.144303566541343, + 24.249479358635817, + 24.30105041601473, + 24.384501702015786 ], "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125427, - 2.1622431316564756, - 2.50608086915832, - 2.800135076970015, - 3.143359732815098, - 3.5130744555980176, - 3.860640436868563, - 4.446363214354356, - 4.878039015242469, - 5.2279522229643005, - 5.790085212520745, - 6.236330605202339, - 7.4639814181298565, - 8.840014168106686, - 9.292247757500606, - 9.73287749697581, - 10.198635997923388, - 10.589196922327671, - 10.945696321103062, - 11.27222560973697, - 11.561346841397315, - 11.787608661012374, - 12.058032438115518, - 12.252251150341785, - 12.351402859678249, - 12.518486570118924 + 1.526846324373141, + 1.8679037053125445, + 2.1622431316564743, + 2.5060808688610527, + 2.800134290171044, + 3.1432306967978354, + 3.510968279902779, + 3.8527654002068767, + 4.420548459229536, + 4.832854404892467, + 5.163173093427485, + 5.686094377701076, + 6.094284879986048, + 7.18264666289096, + 8.336585270179654, + 8.697625890919033, + 9.039982296550278, + 9.390985403061684, + 9.675748443344334, + 9.927540494293723, + 10.150785408708634, + 10.342080301255882, + 10.487197918838648, + 10.655135183964207, + 10.77134700075032, + 10.82895715943251, + 10.923049524254044 ], "5._96._0.075": [ - 2.209271810327403, - 2.555323563849339, - 2.8519156243532695, - 3.2003475196066087, - 3.524940240658566, - 4.00469167343449, - 4.6628811988220855, - 5.326156293868396, - 6.432924560501316, - 7.232568706607573, - 7.869844706270588, - 8.870172526624991, - 9.64446268725317, - 11.668627903906007, - 13.760755916047703, - 14.407850035469416, - 15.014447177596988, - 15.630332794069597, - 16.12408278510321, - 16.557714944932144, - 16.93841117116378, - 17.26158432186074, - 17.505547435996167, - 17.785958375958742, - 17.979588700653927, - 18.075646086329616, - 18.233097938689923 + 2.209271810327404, + 2.5553235626058286, + 2.851913829614357, + 3.200144700434344, + 3.5228810369142374, + 3.9938798036542758, + 4.629352674794193, + 5.257913589969824, + 6.279213384934956, + 6.9952773092555445, + 7.552289038871843, + 8.401007319695614, + 9.035923080498607, + 10.603863876776305, + 12.079333118352304, + 12.504253880805331, + 12.891518221104416, + 13.273615481615817, + 13.572592520008799, + 13.829730304265892, + 14.051931208170306, + 14.238218102995257, + 14.377356608283858, + 14.536178758759824, + 14.64477430111061, + 14.698160519875215, + 14.784765590895411 ] }, "logtime": [ @@ -2563,18115 +2019,7 @@ 3.003 ] }, - "1_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835140144617679, - 3.1849643917020174, - 3.502165426925441, - 3.9301922546307075, - 4.362516256614647, - 4.930474121911802, - 5.538533506350954, - 6.014628289895621, - 6.622810334317273, - 6.969487915354439, - 7.207956408149328, - 7.5328400096669235, - 7.75247268244368, - 8.238002774495671, - 8.64704570804324, - 8.758946823716846, - 8.859835704138877, - 8.958391369204966, - 9.035204266339816, - 9.100920292313864, - 9.157710284461414, - 9.20539775508919, - 9.240984185845074, - 9.281724082545848, - 9.309518333012262, - 9.323128053749246, - 9.345076672378271 - ], - "5._24._0.075": [ - 0.8740013793970967, - 1.1957934696806858, - 1.4813667488882372, - 1.8197853662506762, - 2.1114044341807157, - 2.451070524851898, - 2.7881799871003565, - 3.044230462293286, - 3.3782486192021772, - 3.5866413599987026, - 3.74411106062757, - 3.9824685850393973, - 4.160322393737606, - 4.602146633625265, - 5.020983171670913, - 5.142411578682097, - 5.254586545541572, - 5.366786238317462, - 5.456237065826286, - 5.534186703990583, - 5.602785747046791, - 5.6613702351166975, - 5.70569649489467, - 5.757148217666041, - 5.792742473532685, - 5.810347556509697, - 5.839015563099657 - ], - "5._384._0.0875": [ - 3.466682955321226, - 3.9075976085194033, - 4.352889851862578, - 4.936605526584581, - 5.471776533129856, - 6.114911758424402, - 6.760965495692346, - 7.250135480426092, - 7.863263609642247, - 8.209452006454356, - 8.446764914353068, - 8.769298847382146, - 8.987050619959732, - 9.468043860391814, - 9.873074716597168, - 9.983788485375486, - 10.083594630400668, - 10.181047397631279, - 10.256969131093063, - 10.321883348146676, - 10.377954447427506, - 10.425017066023733, - 10.460117564935974, - 10.500283849242233, - 10.527666961819111, - 10.541067428758854, - 10.562670309595733 - ], - "5._48._0.075": [ - 1.5268359332879171, - 1.8678839385147372, - 2.162208738345644, - 2.506015108690003, - 2.800015488967817, - 3.142155865119192, - 3.4965449323272013, - 3.799865787506381, - 4.2507898166056, - 4.541446697892453, - 4.753927656129075, - 5.057673450312983, - 5.270631610442865, - 5.758786283451121, - 6.183706938120382, - 6.301893218645891, - 6.4091683251290315, - 6.514727559207145, - 6.597585833820916, - 6.668904620538769, - 6.7309060054309935, - 6.783262307486161, - 6.822521074175333, - 6.867673225089816, - 6.898636895106161, - 6.913858452525283, - 6.93850302308843 - ], - "5._96._0.075": [ - 2.209261920932469, - 2.555305542704949, - 2.8518712893055422, - 3.1987380359893054, - 3.50909251084119, - 3.9222326952815756, - 4.412264545566231, - 4.831434304741051, - 5.400936800325458, - 5.7374752125758075, - 5.972497848894372, - 6.296305409402205, - 6.516924423640519, - 7.008216169558008, - 7.424709235540797, - 7.539067708903202, - 7.6423144310817825, - 7.743353070829632, - 7.822238931842795, - 7.889838497084045, - 7.948346853021645, - 7.997549271904297, - 8.03431587002969, - 8.076458437227618, - 8.105253962886398, - 8.119371531258903, - 8.142168594180948 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_20": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351696371933612, - 3.187327785374286, - 3.522712631856148, - 4.028282627251103, - 4.613774296796671, - 5.534600695857525, - 6.785274097425122, - 8.019447060121017, - 10.011802087152398, - 11.400988564990218, - 12.477153653582594, - 14.105599690365294, - 15.319465772954857, - 18.283842597373344, - 21.051724794674406, - 21.847519652068293, - 22.56819669019607, - 23.275395640410945, - 23.824074045622737, - 24.294767103877632, - 24.69894538463728, - 25.035844240638838, - 25.2871121235497, - 25.573095142611177, - 25.76876867285362, - 25.86515549243738, - 26.022264906438036 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615422, - 1.4813847491413077, - 1.8198213217004353, - 2.1114679242247267, - 2.4511928331874437, - 2.7884202389430075, - 3.045029234665444, - 3.3885389603274243, - 3.6182172483757613, - 3.803044725793384, - 4.103192493482654, - 4.345175728555701, - 5.033792627276574, - 5.852713647326416, - 6.13380869145111, - 6.416234423232714, - 6.724773718343498, - 6.993360772003964, - 7.24726470440848, - 7.489416193510193, - 7.7134231117013945, - 7.896219386983844, - 8.126735335914299, - 8.302987274853425, - 8.397950434322713, - 8.569946852458507 - ], - "5._384._0.0875": [ - 3.4927928012025156, - 4.022409476141426, - 4.638275863163416, - 5.610764557058385, - 6.725452367098285, - 8.439736555775063, - 10.689454618942138, - 12.821427827304152, - 16.07273937222973, - 18.209076029559952, - 19.791790758107503, - 22.06556461205989, - 23.673030956543514, - 27.315688530530007, - 30.421984567679353, - 31.27300126386915, - 32.0325485759906, - 32.768236272396045, - 33.33393205439052, - 33.816423552430365, - 34.22931934379198, - 34.572882950467516, - 34.82878627644716, - 35.12020669909482, - 35.319242640314414, - 35.417045319051056, - 35.57601522343307 - ], - "5._48._0.075": [ - 1.5268463243731432, - 1.8679037053125407, - 2.1622431316564765, - 2.506080869171697, - 2.8001351123759695, - 3.1433655394422244, - 3.513169240518399, - 3.860995014019506, - 4.447528293634243, - 4.880082877180298, - 5.230888658689268, - 5.7948205621844115, - 6.242823852786144, - 7.47703814152145, - 8.863843024524652, - 9.320578569205251, - 9.766153789262525, - 10.237814619106857, - 10.633975301398785, - 10.996184794714795, - 11.328568058378279, - 11.623493042018161, - 11.854808769646617, - 12.132015291522608, - 12.331807482334483, - 12.43411831623204, - 12.607154884324519 - ], - "5._96._0.075": [ - 2.2092718103274107, - 2.555323563905299, - 2.851915705116521, - 3.200356646487551, - 3.5250329116461923, - 4.005178647159127, - 4.664396023452272, - 5.3292524291969805, - 6.439967020736217, - 7.243518124627034, - 7.884588029394886, - 8.892212383493149, - 9.673323234233981, - 11.72077502425112, - 13.846807939425775, - 14.507168795428955, - 15.127451660780915, - 15.758645155844816, - 16.265816875085804, - 16.712157550424337, - 17.104747180518274, - 17.43858211770684, - 17.690969302139187, - 17.98143258711328, - 18.18229476278173, - 18.282057777696462, - 18.44579236694323 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_21": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169793240369, - 3.187340290500403, - 3.522821437662679, - 4.02880606850882, - 4.615142279529427, - 5.538070710245464, - 6.793184361475052, - 8.033619982294447, - 10.040440351716166, - 11.443098829752309, - 12.53177907931668, - 14.182906123577247, - 15.416886548168474, - 18.442460351745197, - 21.285280169404846, - 22.106111753397624, - 22.85044660048752, - 23.581775742486418, - 24.149630029196366, - 24.637124721157054, - 25.05586506428397, - 25.404956133969797, - 25.665374444589204, - 25.961771857534274, - 26.164633189132086, - 26.26459995224738, - 26.427638957165094 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.4813847491413075, - 1.819821321700434, - 2.111467924224728, - 2.451192833189989, - 2.7884202748466453, - 3.045031446535647, - 3.388589509421585, - 3.618378676974611, - 3.8033496112021505, - 4.103824757682689, - 4.346153773369789, - 5.036182554455577, - 5.857699499172582, - 6.139943732562841, - 6.423688594010761, - 6.733876861824094, - 7.0041052817680605, - 7.259762143074677, - 7.50380627402948, - 7.729798857117023, - 7.914422819303466, - 8.147597990710628, - 8.326279306878854, - 8.422781262165968, - 8.598306007073642 - ], - "5._384._0.0875": [ - 3.4929320025429207, - 4.0230250491489, - 4.639839329774228, - 5.614682143790885, - 6.733400991227226, - 8.45686899909088, - 10.724459818075463, - 12.879902058347124, - 16.18050224234337, - 18.359205454851935, - 19.97864336250751, - 22.312894387845716, - 23.968652318492857, - 27.733927590686918, - 30.955844476221202, - 31.839776873863467, - 32.628708288331325, - 33.39284290162256, - 33.980210236303186, - 34.48117681812316, - 34.90974304179571, - 35.26622930001565, - 35.5317455706717, - 35.834054013224716, - 36.04054423053691, - 36.14202875492882, - 36.307045813034286 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125407, - 2.162243131656477, - 2.5060808691838004, - 2.8001351444099334, - 3.143370793057716, - 3.5132549988240633, - 3.861315836802722, - 4.448582667038862, - 4.8819328718540556, - 5.233547028553512, - 5.799109102929008, - 6.248706299154747, - 7.488881645886046, - 8.885494102117143, - 9.346333828674165, - 9.796423816335842, - 10.273480931462933, - 10.674769619724872, - 11.042216778014167, - 11.379981921197478, - 11.680259463639278, - 11.916254929525858, - 12.199781519580494, - 12.404818660026793, - 12.510131197404112, - 12.68889576371312 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.5553235639559286, - 2.8519157781880358, - 3.200364904143093, - 3.5251167573315576, - 4.005619275078615, - 4.665767028855828, - 5.332055578110901, - 6.446348230660432, - 7.253445315934177, - 7.897961775777913, - 8.912224677532567, - 9.699549665956999, - 11.768293486965486, - 13.925474114554785, - 14.598081480610954, - 15.23104939962344, - 15.87649939446312, - 16.396249847290367, - 16.85457075712345, - 17.258444178575, - 17.60245943730846, - 17.86293748030772, - 18.163112870171826, - 18.37100519835866, - 18.47438648089748, - 18.644283059191896 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_22": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351699351013053, - 3.187351658800507, - 3.5229203528588706, - 4.029281965388362, - 4.616386259706996, - 5.541227726687679, - 6.800387204571251, - 8.046537252026768, - 10.066589949219782, - 11.481599047085332, - 12.581774685381085, - 14.253794677278407, - 15.506355693359684, - 18.588831453731814, - 21.502319535822622, - 22.34706858064212, - 23.114113043891038, - 23.86872259402826, - 24.455158390019587, - 24.958990200403857, - 25.391927213772398, - 25.75292829701442, - 26.022298574255064, - 26.328895089610302, - 26.538805012220735, - 26.6422869379382, - 26.81115736236544 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615408, - 1.4813847491413077, - 1.8198213217004344, - 2.1114679242247263, - 2.451192833192303, - 2.7884203074863216, - 3.0450334573267774, - 3.3886354632370828, - 3.6185254319094318, - 3.803626787666764, - 4.1043995943852165, - 4.347043051878554, - 5.038356442491675, - 5.862237507625182, - 6.145528819093735, - 6.430476245517716, - 6.742168707574648, - 7.013895388913404, - 7.271153451092598, - 7.516927788825538, - 7.744737217753353, - 7.931034876751183, - 8.16664812231494, - 8.347559620415202, - 8.445476472566819, - 8.624266573501489 - ], - "5._384._0.0875": [ - 3.4930585588446146, - 4.0235847364397, - 4.641261162978073, - 5.618246748308688, - 6.740638717555091, - 8.472490948551819, - 10.756445329191317, - 12.933443753825427, - 16.279540789380352, - 18.49756558533162, - 20.151284429588475, - 22.542419366813515, - 24.243997129043976, - 28.126949747351354, - 31.461339663906124, - 32.37749479494242, - 33.19523310981677, - 33.98728594786803, - 34.59592635097838, - 35.115034980788714, - 35.55898543857702, - 35.928153741584424, - 36.20310398241579, - 36.516094751587325, - 36.72990047303777, - 36.83500003054253, - 37.00595970721941 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125405, - 2.162243131656477, - 2.506080869194805, - 2.80013517353171, - 3.1433755690721896, - 3.513332961349259, - 3.8616075061495603, - 4.449541397810828, - 4.8836153336454915, - 5.235965043844581, - 5.803011223197802, - 6.254060254535791, - 7.499673509209754, - 8.905252857905698, - 9.36984939715998, - 9.824077232707184, - 10.306086791563468, - 10.712088571643777, - 11.084356549319347, - 11.427084724278389, - 11.732311125625047, - 11.97264787430162, - 12.262069359928088, - 12.472042776882272, - 12.58020630884848, - 12.764479457226965 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.555323564001953, - 2.851915844616682, - 3.200372411103785, - 3.525192981099091, - 4.006019872828364, - 4.667013768336452, - 5.334605449291082, - 6.452157143560606, - 7.262487038857301, - 7.9101482954323945, - 8.930476845553372, - 9.723486773505856, - 11.811773214872447, - 13.997665906421934, - 14.681605952902137, - 15.32635417360657, - 15.98509902317832, - 16.516646447241445, - 16.986263547326324, - 17.400841217637208, - 17.754574131865965, - 18.02282011710705, - 18.33237607961774, - 18.547101807603717, - 18.65401626049025, - 18.829957829988352 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_23": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351700646265035, - 3.187362038555789, - 3.523010667421206, - 4.029716514194435, - 4.617522366814459, - 5.544112266251565, - 6.806973459651767, - 8.058358643973987, - 10.090561703424724, - 11.516934177651272, - 12.627704792463744, - 14.319032074305824, - 15.588805981540627, - 18.7242986659053, - 21.704460282077747, - 22.572053254175636, - 23.360890024797758, - 24.137951788380132, - 24.742388190017827, - 25.262102756118257, - 25.708880057679707, - 26.081517281924512, - 26.35964788926543, - 26.67623694172776, - 26.893062490090003, - 26.999997902414915, - 27.174606589925 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141308, - 1.8198213217004349, - 2.111467924224725, - 2.4511928331944146, - 2.788420337287759, - 3.045035293266533, - 3.388677421146425, - 3.6186594269289127, - 3.803879868410371, - 4.104924487764751, - 4.347855123987537, - 5.040342318004613, - 5.866385418030912, - 6.150634724792366, - 6.436682944021793, - 6.7497530797584595, - 7.022852840583504, - 7.281579243316307, - 7.52894138258392, - 7.758419460903269, - 7.946255468667704, - 8.184112063736421, - 8.367077903174614, - 8.466299693355069, - 8.648117070559945 - ], - "5._384._0.0875": [ - 3.493174118260073, - 4.024095818049704, - 4.642559774486403, - 5.621504020072952, - 6.74725683076478, - 8.486793710367532, - 10.785785627902195, - 12.982651475889707, - 16.37087374942108, - 18.62547735310718, - 20.311246545140353, - 22.75592733266292, - 24.500985635141625, - 28.496838916124858, - 31.940606434080866, - 32.88830336636922, - 33.73428432027013, - 34.55374166123901, - 35.183270624134046, - 35.72020110051546, - 36.17926177001173, - 36.56088247707136, - 36.84509606053064, - 37.168573338491015, - 37.389562578535234, - 37.49821367926529, - 37.67501672355087 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125425, - 2.1622431316564765, - 2.5060808692048506, - 2.80013520012116, - 3.1433799297813794, - 3.513404144881383, - 3.8618738231515186, - 4.450416934981255, - 4.885152033977876, - 5.23817389163908, - 5.806576898360043, - 6.258953876103529, - 7.509547838706128, - 8.923356955525916, - 9.391405185135953, - 9.849439162386178, - 10.336009767027946, - 10.746357884160757, - 11.123077264232533, - 11.470395668254781, - 11.780209121632645, - 12.024580974010341, - 12.31950721680498, - 12.534127635589305, - 12.644998275469689, - 12.834566307315562 - ], - "5._96._0.075": [ - 2.209271810327413, - 2.5553235640439786, - 2.851915905268927, - 3.2003792652862146, - 3.5252625770599466, - 4.006385658378571, - 4.668152404317884, - 5.33693488596732, - 6.457467442838747, - 7.270756699625633, - 7.921298945444598, - 8.947191279457849, - 9.74542170375293, - 11.851707943839461, - 14.06415124872164, - 14.75860414229486, - 15.414314260146307, - 16.085475145727465, - 16.628095799107882, - 17.108368099996223, - 17.533100435846638, - 17.89610740796363, - 18.17180892018186, - 18.490422564352254, - 18.711789561572846, - 18.822154124929295, - 19.00402698930411 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_24": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351701833579566, - 3.187371553333999, - 3.5230934563465475, - 4.030114879334108, - 4.6185640492245765, - 5.54675814487875, - 6.813019047762281, - 8.069217930693853, - 10.112616756155399, - 11.549478970009305, - 12.670045642660634, - 14.379267703934133, - 15.665030583593053, - 18.850021700725332, - 21.893125465131018, - 22.782534922970296, - 23.59227848512995, - 24.39098663085836, - 25.012856304295862, - 25.54800909002831, - 26.008278662735176, - 26.392285701220093, - 26.678991154880674, - 27.005374054197283, - 27.22898791886398, - 27.339317954909017, - 27.51957629809993 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.195803175961541, - 1.4813847491413077, - 1.819821321700434, - 2.111467924224724, - 2.4511928331963535, - 2.788420364605745, - 3.0450369762113487, - 3.3887158826285635, - 3.6187822568567576, - 3.8041118646099017, - 4.105405675650201, - 4.348599625873345, - 5.042163560748403, - 5.870191457352085, - 6.155320579398301, - 6.442380211017218, - 6.756716812766428, - 7.031079522717561, - 7.291157271856184, - 7.539981677350151, - 7.770997608103563, - 7.960252371348408, - 8.200179978279499, - 8.385044225079497, - 8.485473065504461, - 8.670102217577858 - ], - "5._384._0.0875": [ - 3.4932800544412466, - 4.024564362176223, - 4.643750517304037, - 5.624492062436755, - 6.753331628704037, - 8.499937596820722, - 10.812795744744253, - 13.028030719563052, - 16.45536724267342, - 18.744074403027536, - 20.459856338969004, - 22.954985977014818, - 24.74131591735773, - 28.845463095026318, - 32.39556704329113, - 33.374136224066724, - 34.24780737655746, - 35.0941690142712, - 35.74421471584748, - 36.2986585478471, - 36.77256656361369, - 37.16642011447721, - 37.459734100286845, - 37.793511179747625, - 38.02155821625865, - 38.133700437840155, - 38.31625247765066 - ], - "5._48._0.075": [ - 1.5268463243731447, - 1.8679037053125414, - 2.1622431316564765, - 2.5060808692140597, - 2.800135224494824, - 3.1433839270984025, - 3.513469396751802, - 3.8621179556292846, - 4.451219656904182, - 4.886561128559948, - 5.240199587194301, - 5.809847842388775, - 6.26344408449944, - 7.518616870518701, - 8.940005864344126, - 9.411236334932566, - 9.872783022528173, - 10.363567792694909, - 10.777936530758641, - 11.158778522227783, - 11.510354206494007, - 11.824429776842289, - 12.072559579449825, - 12.372632924465817, - 12.591629841892164, - 12.70507056594037, - 12.89972575539405 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235640825003, - 2.8519159608668145, - 3.2003855482875525, - 3.525326373648384, - 4.006720980573583, - 4.669196412845865, - 5.339071288188706, - 6.462340683680253, - 7.278349132391487, - 7.931540405615576, - 8.962554425321235, - 9.765595519833592, - 11.888514085738567, - 14.125581375456678, - 14.829810126908729, - 15.495741139368295, - 16.178515172762214, - 16.731539848143992, - 17.221867864622986, - 17.65623483659549, - 18.028091449607974, - 18.31094674820345, - 18.638303828411235, - 18.86612434806142, - 18.9798578169419, - 19.167551203109994 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_25": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351702925909015, - 3.1873803069320994, - 3.5231696226449367, - 4.030481399539048, - 4.619522609052897, - 5.549193805173456, - 6.818587917404494, - 8.079227965006394, - 10.132976110462028, - 11.579551278994836, - 12.709201928579317, - 14.435055187044185, - 15.735707947015714, - 18.967005939675037, - 22.06957112333232, - 22.97981564069447, - 23.80961289606634, - 24.629184645818984, - 25.267933992315296, - 25.818090085870256, - 26.291511772845997, - 26.68662919196237, - 26.981729580306727, - 27.317714761628178, - 27.54799476781106, - 27.66166311939918, - 27.84748664705179 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224723, - 2.451192833198135, - 2.788420389738297, - 3.045038524520596, - 3.3887512672472395, - 3.6188952613703376, - 3.804325305775034, - 4.105848398598836, - 4.349284654168841, - 5.043839828349951, - 5.873696217707763, - 6.159636168631479, - 6.447628291149841, - 6.763133089700157, - 7.038661351128249, - 7.299986890773831, - 7.550162336106925, - 7.782600103898503, - 7.973167433971227, - 8.215012804195908, - 8.401636569155801, - 8.503185029381335, - 8.6904308259697 - ], - "5._384._0.0875": [ - 3.4933775214029796, - 4.024995467257823, - 4.644846295571922, - 5.627242930014972, - 6.758927376643568, - 8.512057958112573, - 10.837742607381948, - 13.070011336456053, - 16.53376213465702, - 18.854334173675525, - 20.598266453829414, - 23.140974025386207, - 24.966493672727083, - 29.174501943547362, - 32.82795743090862, - 33.83674020705184, - 34.73755999009746, - 35.61033798692983, - 36.2805401533977, - 36.852199557402635, - 37.340702296399364, - 37.74657841410071, - 38.04883695580883, - 38.392735551582184, - 38.627720455010184, - 38.74329621275265, - 38.931507389710845 - ], - "5._48._0.075": [ - 1.5268463243731383, - 1.8679037053125402, - 2.1622431316564765, - 2.506080869222531, - 2.8001352469185923, - 3.1433876046302958, - 3.5135294287254393, - 3.8623425647399436, - 4.451958284594152, - 4.887857878066339, - 5.242064003331624, - 5.8128591471928885, - 6.267578787709766, - 7.526975253408407, - 8.955368234746953, - 9.429541824935413, - 9.894340406834004, - 10.389030492206563, - 10.807129303226773, - 11.191800065998057, - 11.54733464419291, - 11.865379817701488, - 12.117016424528465, - 12.421909149276905, - 12.645030076488485, - 12.760910700186884, - 12.960451519080586 - ], - "5._96._0.075": [ - 2.2092718103274085, - 2.555323564117939, - 2.8519160120168783, - 3.200391328649437, - 3.525385066755577, - 4.007029492854211, - 4.670157119453648, - 5.3410376955918695, - 6.466828689743093, - 7.2853442513591675, - 7.940979510328468, - 8.97672376282244, - 9.784212087402047, - 11.922545306027317, - 14.182512016737254, - 14.895852566701084, - 15.57133264798879, - 16.26498617548411, - 16.82779658184618, - 17.327620512633175, - 17.77113099237226, - 18.151431970086875, - 18.441150115569517, - 18.776945077004044, - 19.011035585708875, - 19.12805846472729, - 19.32146420406816 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_27": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ], - [ - 125.0, - 0.0 - ], - [ - 130.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835170486782816, - 3.1873958688893316, - 3.5233050305501425, - 4.031133048464014, - 4.621227217240194, - 5.553527306787878, - 6.828504557605653, - 8.097069844261203, - 10.169334004284242, - 11.633325588847116, - 12.779296782425806, - 14.535119913927199, - 15.862676320154982, - 19.178146296403025, - 22.39012650547752, - 23.33927833367518, - 24.206754831657502, - 25.065800419056774, - 25.736704226022514, - 26.31560021526555, - 26.814335249351625, - 27.230920086277475, - 27.54229046120604, - 27.8969307853053, - 28.140194828795572, - 28.260379983415643, - 28.457095216012135 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615417, - 1.4813847491413072, - 1.8198213217004335, - 2.111467924224724, - 2.4511928332013038, - 2.788420434418377, - 3.045041277070427, - 3.388814173366417, - 3.619096160602223, - 3.804704767765848, - 4.106635532833023, - 4.350502687098148, - 5.0468215745976766, - 5.879934495833406, - 6.167319237042168, - 6.456973845502078, - 6.774562673524841, - 7.052171668144201, - 7.31572632132504, - 7.56831730564961, - 7.803299482289213, - 7.9962176911426495, - 8.241502093854152, - 8.431284902445395, - 8.534845424103077, - 8.726810431811309 - ], - "5._384._0.0875": [ - 3.493550809431671, - 4.025761981571622, - 4.646795043843613, - 5.632137787526959, - 6.768891812150048, - 8.5336717390016, - 10.882324934867754, - 13.1451968743755, - 16.674719787490936, - 19.053118169692137, - 20.848382838518848, - 23.478461610822386, - 25.376600006843596, - 29.77973651808322, - 33.63117569588843, - 34.69845173187269, - 35.651983767967394, - 36.57617450782001, - 37.285650033116745, - 37.890885666944094, - 38.40785691796956, - 38.83718094118817, - 39.156886804528945, - 39.520524217237146, - 39.76904615078867, - 39.8913265589588, - 40.09060287122764 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.867903705312541, - 2.162243131656476, - 2.5060808692375884, - 2.800135286783076, - 3.143394142465318, - 3.5136361528324747, - 3.8627418869368393, - 4.453271692839796, - 4.890164115943647, - 5.245380358647602, - 5.818217400909063, - 6.274938164641301, - 7.541869897370922, - 8.982787014848215, - 9.462229647777457, - 9.93285756767762, - 10.434558007465046, - 10.85936246866269, - 11.25092610059461, - 11.613599687783031, - 11.938817149966185, - 12.19680440574113, - 12.510460104631044, - 12.741139322750914, - 12.861536092178424, - 13.07026927241733 - ], - "5._96._0.075": [ - 2.209271810327405, - 2.5553235641809455, - 2.851916102950318, - 3.200401604849893, - 3.5254894106389445, - 4.007577996665169, - 4.671865560131055, - 5.344535703149877, - 6.4748183277903015, - 7.297803925222143, - 7.957800385627323, - 9.00199741444542, - 9.817442909517528, - 11.983449865156665, - 14.284717846103195, - 15.014538946276645, - 15.70734181369466, - 16.420798881633196, - 17.001511406475736, - 17.51879636984451, - 17.979231662667516, - 18.375281081087874, - 18.677895602369684, - 19.029684746436708, - 19.27578094414583, - 19.399150448745555, - 19.60366550891927 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_28": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ], - [ - 125.0, - 0.0 - ], - [ - 130.0, - 0.0 - ], - [ - 135.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351705734756507, - 3.187402816193764, - 3.52336548098413, - 4.031423986906555, - 4.621988410484003, - 5.555463328098155, - 6.832938430563296, - 8.105054142546754, - 10.185633120059142, - 11.657461943623746, - 12.810790568693324, - 14.580161985969752, - 15.91991052394946, - 19.273735742794045, - 22.536101616256527, - 23.503414237307084, - 24.388581848509915, - 25.266286128883614, - 25.952493147895396, - 26.54514467077048, - 27.056055071032482, - 27.48300838556064, - 27.802262719483053, - 28.16596715023576, - 28.415557245942036, - 28.538924947196584, - 28.740973291799257 - ], - "5._24._0.075": [ - 0.8740059532267972, - 1.195803175961542, - 1.4813847491413068, - 1.819821321700434, - 2.1114679242247245, - 2.451192833202719, - 2.78842045436484, - 3.045042505887342, - 3.388842256509229, - 3.619185848717624, - 3.804874174998917, - 4.106986961476761, - 4.351046536464688, - 5.048153420479637, - 5.882722583630704, - 6.170753693780705, - 6.461152440443229, - 6.779674637481651, - 7.0582161146369415, - 7.322770397649632, - 7.576445433301732, - 7.812570447827001, - 8.00654540606352, - 8.253377453844312, - 8.444583483240208, - 8.549051223756079, - 8.74314986056589 - ], - "5._384._0.0875": [ - 3.493628175709517, - 4.026104218976515, - 4.64766530931896, - 5.634324822779097, - 6.773347026823234, - 8.54334831493959, - 10.902324362210345, - 13.17899246276733, - 16.738313479394755, - 19.143022402426507, - 20.9617414804728, - 23.631990081949283, - 25.563786847620488, - 30.058542102576936, - 34.00473587190203, - 35.10031211911839, - 36.079426133864274, - 37.02863298526988, - 37.7572438918384, - 38.37885747496043, - 38.90971919722473, - 39.35048379208872, - 39.67870412968809, - 40.05197280831217, - 40.307103520849864, - 40.43265975649582, - 40.63734956518062 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.867903705312544, - 2.162243131656476, - 2.506080869244314, - 2.80013530457972, - 3.1433970611418847, - 3.5136837977703896, - 3.8629201628464727, - 4.453858156652562, - 4.891194060737777, - 5.246861634264923, - 5.820611473360854, - 6.278227239051302, - 7.548533917870565, - 8.99507233716158, - 9.476882539160453, - 9.950132909465063, - 10.454991146085717, - 10.88282026798728, - 11.277497099415939, - 11.643399968842882, - 11.971867332066365, - 12.232737676618205, - 12.550384829940361, - 12.784529878033535, - 12.907015973048535, - 13.120069050856403 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.5553235642090715, - 2.8519161435456, - 3.2004061924400253, - 3.5255359929701253, - 4.007822879950554, - 4.6726284709245345, - 5.346098211912283, - 6.478389666968315, - 7.303376179773238, - 7.96532637875014, - 9.013315016609234, - 9.832334010365152, - 12.0108079106571, - 14.330762256347034, - 15.068058544123545, - 15.768739135465797, - 16.491228570390565, - 17.08014142984534, - 17.60546048184383, - 18.07373003453598, - 18.477120432349174, - 18.78579020506179, - 19.145153345286918, - 19.396993240493753, - 19.523422905332733, - 19.733338968088553 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_29": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ], - [ - 125.0, - 0.0 - ], - [ - 130.0, - 0.0 - ], - [ - 135.0, - 0.0 - ], - [ - 140.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351706541896635, - 3.187409284374913, - 3.523421762686986, - 4.031694873805318, - 4.622697222782923, - 5.5572666205893695, - 6.837070299717256, - 8.112498467215886, - 10.20084602464598, - 11.680006280900084, - 12.84022495377408, - 14.622305141775325, - 15.973507186987108, - 19.363483193746248, - 22.67361816135384, - 23.658286762416957, - 24.560423073958614, - 25.456099911724845, - 26.157113342404273, - 26.763123451818167, - 27.285897463832264, - 27.722982851392576, - 28.049959160411973, - 28.42255875334268, - 28.678369123217795, - 28.804871222269455, - 29.01218145562214 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615424, - 1.4813847491413064, - 1.819821321700434, - 2.1114679242247245, - 2.4511928332040336, - 2.7884204729356936, - 3.0450436499582687, - 3.3888684029134755, - 3.6192693519775085, - 3.805031901504122, - 4.107314169994832, - 4.3515529259638015, - 5.049393808655655, - 5.885320135300333, - 6.173953800583426, - 6.465046453846793, - 6.784439318070044, - 7.063850963690024, - 7.329338437561237, - 7.584025931789781, - 7.821218840126646, - 8.016181716325347, - 8.264461586181655, - 8.456999922105739, - 8.562317328689025, - 8.758416927792833 - ], - "5._384._0.0875": [ - 3.4937002094623097, - 4.026422877951178, - 4.648475716663186, - 5.636362044948955, - 6.777498768208755, - 8.552372886995911, - 10.92099842365542, - 13.210586298648328, - 16.79789588891411, - 19.22738050353652, - 21.06823895227275, - 23.776540618330444, - 25.740371760613936, - 30.3230134207313, - 34.361221429277656, - 35.48448048648546, - 36.48867185092956, - 37.46244657695228, - 38.20986975877449, - 38.84759824680781, - 39.39213131688473, - 39.84415678626316, - 40.180759253539364, - 40.563508941344715, - 40.825147801891845, - 40.953931739352655, - 41.16396023436924 - ], - "5._48._0.075": [ - 1.5268463243731383, - 1.867903705312542, - 2.162243131656476, - 2.506080869250573, - 2.800135321149011, - 3.1433997785305388, - 3.5137281569877223, - 3.8630861477899723, - 4.454404241755811, - 4.892153182629838, - 5.248241174775111, - 5.822841545223678, - 6.281291501796825, - 7.5547464866991305, - 9.006535358339379, - 9.490558398916365, - 9.966261574528883, - 10.474075591937314, - 10.904738180546499, - 11.302333717231564, - 11.671266866330049, - 12.00278688496421, - 12.26636816070333, - 12.587775052150556, - 12.825196490990638, - 12.949667809965332, - 13.166865502665264 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.555323564235259, - 2.8519161813412093, - 3.200410463644995, - 3.5255793628601486, - 4.0080508833419, - 4.673338885996601, - 5.347553460170311, - 6.481717227686606, - 7.308569644909852, - 7.9723426117566065, - 9.023871425615866, - 9.846229290722574, - 12.036373373797403, - 14.373865148544661, - 15.118187296153739, - 15.826283199523534, - 16.557288915181854, - 17.15395200359406, - 17.686883232862897, - 18.162601632609462, - 18.57300134542715, - 18.887478761491426, - 19.25414570195323, - 19.511561809525343, - 19.64097806734624, - 19.8561951026781 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351510677223124, - 3.185839705255709, - 3.509771540026878, - 3.966330673031906, - 4.453898436646452, - 5.141063225581686, - 5.935299849182006, - 6.591064822401665, - 7.4573397084792585, - 7.960204506246263, - 8.308428386398862, - 8.784434241747197, - 9.106869195173443, - 9.819004468262776, - 10.417553200063558, - 10.581112939206577, - 10.728355197827176, - 10.872032730663653, - 10.983845567697387, - 11.079470322916373, - 11.162021309221977, - 11.23127300322087, - 11.282940091757375, - 11.342050731061262, - 11.382382337920458, - 11.402138935562201, - 11.434024927322461 - ], - "5._24._0.075": [ - 0.8740013793970963, - 1.1957934696806856, - 1.4813667488882378, - 1.819785366250676, - 2.1114044341807157, - 2.4510705250300893, - 2.788182499477228, - 3.0443852106901215, - 3.381782256847064, - 3.5979049641354917, - 3.7653169707122243, - 4.025976647688318, - 4.226681022892984, - 4.7519775047763355, - 5.289276786959019, - 5.452176058421596, - 5.605172805309302, - 5.760500989302295, - 5.885820943128873, - 5.9960544830599956, - 6.093756080482953, - 6.177649611559798, - 6.241387660406869, - 6.315575367344118, - 6.367049048904869, - 6.3925661935266564, - 6.434203924751947 - ], - "5._384._0.0875": [ - 3.4763066788959396, - 3.949772974187067, - 4.456260341450167, - 5.169408748681231, - 5.871115554030923, - 6.760870364124674, - 7.687802150819135, - 8.402209462252888, - 9.30497492062296, - 9.81638347479816, - 10.167150006594197, - 10.64346476548816, - 10.964771566054742, - 11.672408151280557, - 12.266242640000142, - 12.42833604434291, - 12.574279870681229, - 12.716647611846046, - 12.827426487106704, - 12.92212131446228, - 13.003853316799084, - 13.072405876226359, - 13.123529770395518, - 13.182008691940712, - 13.22188408446242, - 13.241405445087377, - 13.272897556367255 - ], - "5._48._0.075": [ - 1.5268359332879173, - 1.867883938514737, - 2.1622087383456456, - 2.5060151095371266, - 2.8000177309803878, - 3.1425235015701425, - 3.50253927551839, - 3.8221513912839025, - 4.3219203208202615, - 4.662094623549054, - 4.920779665355623, - 5.305197220055999, - 5.584574633595157, - 6.250240097046942, - 6.8508100598561175, - 7.02032416411666, - 7.174704624548563, - 7.3270420254642925, - 7.446781361568329, - 7.54998768102832, - 7.639728763200551, - 7.715491511685074, - 7.772309526957078, - 7.837607291416172, - 7.882394856115053, - 7.904425286274421, - 7.940124399290625 - ], - "5._96._0.075": [ - 2.2092619209324704, - 2.5553055462488583, - 2.8518764040875877, - 3.1993160118959567, - 3.514955741603026, - 3.9527389763946745, - 4.503681602688366, - 5.006861923779691, - 5.738944199243816, - 6.194547647991565, - 6.520747151603693, - 6.97831807732745, - 7.294240982610546, - 8.004586646061995, - 8.61032697321235, - 8.776955960336549, - 8.927246070742218, - 9.074228802677638, - 9.188836957686432, - 9.287022505975273, - 9.37190962826258, - 9.4432139118431, - 9.496477965097244, - 9.557471885031982, - 9.599147261960589, - 9.619587423820962, - 9.652619821039247 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_30": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ], - [ - 125.0, - 0.0 - ], - [ - 130.0, - 0.0 - ], - [ - 135.0, - 0.0 - ], - [ - 140.0, - 0.0 - ], - [ - 145.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835170729522757, - 3.187415321344995, - 3.523474292506245, - 4.031947713041556, - 4.62335888111881, - 5.558950381151416, - 6.840930003772339, - 8.119455801001529, - 10.215077785141705, - 11.701111047703169, - 12.867795468864816, - 14.661820364930357, - 16.023802143635955, - 19.44790809805366, - 22.803376979043826, - 23.804637855137987, - 24.72305227834873, - 25.63604012748017, - 26.351377716937332, - 26.97035901427703, - 27.504691569044354, - 27.951677620174447, - 28.28621759803615, - 28.667547917406786, - 28.929476058653634, - 29.059066035133572, - 29.27156958548801 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615433, - 1.481384749141307, - 1.8198213217004335, - 2.1114679242247254, - 2.4511928332052646, - 2.7884204902684795, - 3.0450447177578166, - 3.3888928062501393, - 3.619347288816046, - 3.805179115109707, - 4.1076195788214935, - 4.352025597043063, - 5.050551846965407, - 5.887746036979405, - 6.17694275195782, - 6.468683999559705, - 6.788890940656452, - 7.069116482994202, - 7.33547711651833, - 7.591112337940916, - 7.829305328285832, - 8.025193797504635, - 8.274831010723839, - 8.468619167320599, - 8.574733981361298, - 8.772713568546413 - ], - "5._384._0.0875": [ - 3.4937674436450186, - 4.026720314006036, - 4.649232236236229, - 5.638264337578413, - 6.781377021642147, - 8.560809201173699, - 10.938474621704195, - 13.240186684868874, - 16.853834746558, - 19.30668972088395, - 21.168477457253395, - 23.9128688275948, - 25.907210467217954, - 30.57417561823812, - 34.70172268690635, - 35.85205728217887, - 36.88082953512335, - 37.87873209820619, - 38.64465197155618, - 39.298239375826554, - 39.85623151696442, - 40.319344457193374, - 40.6642015802873, - 41.056287859123266, - 41.32433826215072, - 41.456303749704105, - 41.67159926179055 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125422, - 2.162243131656476, - 2.5060808692564143, - 2.800135336613675, - 3.143402314760063, - 3.5137695590432787, - 3.863241070484692, - 4.454913979545062, - 4.893048543865527, - 5.249529113025349, - 5.824923909987449, - 6.284153239956393, - 7.560551974335891, - 9.017255957479012, - 9.503351782254454, - 9.9813540446412, - 10.491940580728466, - 10.925405895689684, - 11.32562891707915, - 11.69739982973214, - 12.031786551956115, - 12.297916362763074, - 12.622869718027074, - 12.863386414838612, - 12.989744427765839, - 13.210917845983817 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.555323564259701, - 2.8519162166171115, - 3.2004144501032696, - 3.5256198415402134, - 4.008263693996773, - 4.674002043453629, - 5.348912125933494, - 6.484825146176308, - 7.3134216736416935, - 7.978899176880267, - 9.033740929664344, - 9.85922539546581, - 12.06031680582134, - 14.414299600452965, - 15.165237362117129, - 15.880325170450968, - 16.619372896706004, - 17.223369978391208, - 17.763520585005683, - 18.24632588197106, - 18.66342042293434, - 18.983468458979562, - 19.357177922820906, - 19.6200067043803, - 19.75233733998025, - 19.972756956369107 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_31": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ], - [ - 125.0, - 0.0 - ], - [ - 130.0, - 0.0 - ], - [ - 135.0, - 0.0 - ], - [ - 140.0, - 0.0 - ], - [ - 145.0, - 0.0 - ], - [ - 150.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351707999956375, - 3.1874209688340143, - 3.5235234335058956, - 4.032184250090117, - 4.623977939409734, - 5.560526113295022, - 6.844543575988252, - 8.125972414876957, - 10.228420342879218, - 11.72090983363596, - 12.893673659983115, - 14.698945901746974, - 16.071091150804005, - 19.527470351950363, - 22.92600623597834, - 23.943135268521328, - 24.877168356306644, - 25.806830169942792, - 26.53602426839845, - 27.167598950538515, - 27.713191586696666, - 28.16985169213015, - 28.51180047853234, - 28.901701243342792, - 29.169647666252818, - 29.30228049659512, - 29.51991123135962 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615426, - 1.4813847491413075, - 1.819821321700434, - 2.111467924224724, - 2.451192833206413, - 2.7884205064830305, - 3.045045716667082, - 3.3889156352007053, - 3.6194201978758245, - 3.805316832986985, - 4.1079052962739, - 4.352467808949108, - 5.051635472764212, - 5.890016758642696, - 6.179740779353468, - 6.472089606416639, - 6.793059376511488, - 7.074047829651038, - 7.341227201397993, - 7.597751430860609, - 7.836882947171558, - 8.03364039671905, - 8.284552689314712, - 8.479515600105112, - 8.586380230437612, - 8.78612927332769 - ], - "5._384._0.0875": [ - 3.493830342481267, - 4.026998579005837, - 4.649940069954882, - 5.640044675895824, - 6.785007948143941, - 8.568712956342962, - 10.954864614834113, - 13.267976460264022, - 16.906454161743053, - 19.381389684025184, - 21.26299128303932, - 24.04164985876534, - 26.065072306465883, - 30.812963223187857, - 35.02724049251235, - 36.204053507186416, - 37.25691810059146, - 38.27851616938577, - 39.062624124006625, - 39.73182098836914, - 40.30306626993099, - 40.77709912368774, - 41.13008796677949, - 41.53137186947526, - 41.805740969961185, - 41.940843700165914, - 42.16133749476193 - ], - "5._48._0.075": [ - 1.5268463243731476, - 1.8679037053125431, - 2.162243131656476, - 2.506080869261878, - 2.8001353510806246, - 3.1434046873619654, - 3.5138082901028174, - 3.8633860011511376, - 4.455390882043405, - 4.893886297931131, - 5.250734279462611, - 5.826872772000518, - 6.286831888938312, - 7.565989121367248, - 9.027303992950214, - 9.515345426007686, - 9.995507052390712, - 10.50869935105854, - 10.944523351612517, - 11.347441255045352, - 11.721907020589372, - 12.059007899198084, - 12.327551896742767, - 12.655856401354512, - 12.899314894492166, - 13.027468148017775, - 13.25245605736712 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.555323564282565, - 2.851916249617151, - 3.2004181793709434, - 3.525657708793978, - 4.0084627814788085, - 4.67462250694664, - 5.350183515382195, - 6.487734474239329, - 7.317964864175922, - 7.985039811681928, - 9.042988455571148, - 9.871406857153785, - 12.082787792584321, - 14.452305892209422, - 15.209483749917732, - 15.931174925341994, - 16.67782809366934, - 17.28877392026948, - 17.8357781530378, - 18.325330588445485, - 18.748822023746584, - 19.074214043856404, - 19.454713654947653, - 19.722795520827084, - 19.857969646174052, - 20.08349498507663 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_32": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ], - [ - 125.0, - 0.0 - ], - [ - 130.0, - 0.0 - ], - [ - 135.0, - 0.0 - ], - [ - 140.0, - 0.0 - ], - [ - 145.0, - 0.0 - ], - [ - 150.0, - 0.0 - ], - [ - 155.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351708660639874, - 3.187426263355768, - 3.523569503369532, - 4.032406012371374, - 4.624558383466829, - 5.562003890318857, - 6.847933832078334, - 8.132088898174898, - 10.240954500833427, - 11.73952019856559, - 12.918010655031841, - 14.733892058328793, - 16.11563568876514, - 19.60257846366803, - 23.042070193032597, - 24.074381246509645, - 25.02340388687948, - 25.969126910803286, - 26.711724477746095, - 27.355524378528315, - 27.912085189838177, - 28.37819738467053, - 28.727403368642616, - 29.125718140920004, - 29.399586133743572, - 29.535218172650445, - 29.757912206666315 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.4813847491413081, - 1.8198213217004324, - 2.1114679242247236, - 2.451192833207491, - 2.7884205216841638, - 3.045046653144524, - 3.3889370373618477, - 3.6194885504743928, - 3.8054459451857876, - 4.108173167290637, - 4.352882413985793, - 5.052651635098933, - 5.89214672850831, - 6.1823656096679676, - 6.475284772012818, - 6.796970813845815, - 7.078675835969997, - 7.346624456713784, - 7.603984265493397, - 7.843998261513456, - 8.041573114203885, - 8.293685472827125, - 8.489754628040425, - 8.597325613101797, - 8.798742911340494 - ], - "5._384._0.0875": [ - 3.4938893121971613, - 4.027259468570057, - 4.650603771071162, - 5.641714423161281, - 6.788414475257787, - 8.576133035135191, - 10.970266604053094, - 13.29411677400437, - 16.95604091612804, - 19.451870482736112, - 21.352255966419698, - 24.163488438869056, - 26.214650374580707, - 31.04022964233407, - 35.33869545300146, - 36.54139997054669, - 37.617876077760435, - 38.6627446118536, - 39.4647385271881, - 40.149301457567, - 40.7335998399704, - 41.21839048749643, - 41.57939234831516, - 41.98974000354764, - 42.27033847434185, - 42.40853586526047, - 42.63416195368961 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125416, - 2.1622431316564787, - 2.506080869267004, - 2.8001353646433884, - 3.1434069116763377, - 3.5138446005627424, - 3.8635218762709913, - 4.455838022931285, - 4.894671831169764, - 5.251864404869224, - 5.8287005709024635, - 6.289344474431319, - 7.571091903930872, - 9.03674082585325, - 9.526612038930091, - 10.008805655126155, - 10.52445154482053, - 10.962632629288924, - 11.367983552328523, - 11.744981354767198, - 12.084639488044136, - 12.355460206376934, - 12.686934949990114, - 12.933178093673398, - 13.063039305073413, - 13.291686148978576 - ], - "5._96._0.075": [ - 2.209271810327408, - 2.5553235643040018, - 2.85191628055469, - 3.200421675559636, - 3.5256932094334448, - 4.008649431741077, - 4.675204270838946, - 5.351375776313982, - 6.49046365669701, - 7.322227793131552, - 7.990802875712068, - 9.051670998193904, - 9.882847935650299, - 12.103918079244389, - 14.488096294842704, - 15.251169677194838, - 15.979106911426772, - 16.732962961931012, - 17.350500604584653, - 17.90401778408393, - 18.399998517972566, - 18.82960480266617, - 19.160124322034054, - 19.54717055740062, - 19.82034987315455, - 19.958297911438624, - 20.188833561811823 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_33": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ], - [ - 125.0, - 0.0 - ], - [ - 130.0, - 0.0 - ], - [ - 135.0, - 0.0 - ], - [ - 140.0, - 0.0 - ], - [ - 145.0, - 0.0 - ], - [ - 150.0, - 0.0 - ], - [ - 155.0, - 0.0 - ], - [ - 160.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835170928128181, - 3.1874312369980786, - 3.523612781275765, - 4.032614342270746, - 4.6251037169048725, - 5.563392570878039, - 6.851120852388221, - 8.137841004642436, - 10.252751560577726, - 11.757046006416466, - 12.940940112869459, - 14.766845178134755, - 16.157667783980145, - 19.673596456321732, - 23.15207677990012, - 24.198920047621264, - 25.162332558318656, - 26.12352801976333, - 26.879090580407148, - 27.534757200362105, - 28.102000800501614, - 28.577347640230673, - 28.933662293899285, - 29.34023820465336, - 29.619933622517184, - 29.7585224960741, - 29.986218018158613 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615422, - 1.481384749141308, - 1.8198213217004338, - 2.111467924224724, - 2.4511928332085033, - 2.7884205359640264, - 3.0450475328657656, - 3.3889571424399083, - 3.619552760804202, - 3.8055672338916406, - 4.108424813313886, - 4.353271919104228, - 5.053606443886188, - 5.894148639915744, - 6.18483284117036, - 6.478288416906532, - 6.800648308459817, - 7.083027654609269, - 7.35170038901853, - 7.609847022132023, - 7.850692323310206, - 8.049037457966618, - 8.302281293057863, - 8.499393998637256, - 8.607631543299291, - 8.810624246598424 - ], - "5._384._0.0875": [ - 3.493944709804192, - 4.027504560863145, - 4.651227342223847, - 5.643283573451738, - 6.791616781635786, - 8.583112515622382, - 10.984767300750718, - 13.318750208190613, - 17.00284969280605, - 19.518479436411997, - 21.43669605186097, - 24.278927510700562, - 26.35657033218998, - 31.256755482179024, - 35.63693598819045, - 36.86495535813209, - 37.964569734028, - 39.03229063667099, - 39.851874456265996, - 40.551565697619814, - 41.14872261828051, - 41.6441140031463, - 42.01301413375906, - 42.432296440011015, - 42.719038249193076, - 42.86028933537506, - 43.090984301552034 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125458, - 2.16224313165648, - 2.5060808692718175, - 2.8001353773841697, - 3.14340900118384, - 3.513878710469487, - 3.8636495188448166, - 4.456258103865205, - 4.895409878715638, - 5.252926286371768, - 5.830418247419486, - 6.291705974635625, - 7.575890244280432, - 9.045620573763609, - 9.53721577615852, - 10.021324944547077, - 10.53928518805767, - 10.979690985378628, - 11.387339685808689, - 11.76673044535217, - 12.108807162613381, - 12.381782654312193, - 12.71626096184229, - 12.96514736206668, - 13.096634902522178, - 13.328791996443183 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235643241377, - 2.8519163096172213, - 3.2004249598583194, - 3.5257265585975146, - 4.00882477493339, - 4.675750846290433, - 5.352496072939995, - 6.493028922816034, - 7.3262356171384635, - 7.996222152426862, - 9.059838795721534, - 9.893614132389757, - 12.123824152431656, - 14.521859040492313, - 15.290511033062359, - 16.02436504548192, - 16.785052123095525, - 17.408850518247448, - 17.968563159726287, - 18.470673015643655, - 18.906127302933136, - 19.241567718581233, - 19.63492583181368, - 19.91305092557182, - 20.053704602158895, - 20.289156532115715 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_34": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ], - [ - 125.0, - 0.0 - ], - [ - 130.0, - 0.0 - ], - [ - 135.0, - 0.0 - ], - [ - 140.0, - 0.0 - ], - [ - 145.0, - 0.0 - ], - [ - 150.0, - 0.0 - ], - [ - 155.0, - 0.0 - ], - [ - 160.0, - 0.0 - ], - [ - 165.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351709865415544, - 3.1874359180738123, - 3.5236535135604816, - 4.0328104243343725, - 4.625617031920641, - 5.5646999767039125, - 6.854122379888427, - 8.143260351690627, - 10.263874678820542, - 11.773579362844227, - 12.962580675752761, - 14.797970958961766, - 16.197394040478404, - 19.740849718951857, - 23.25648416035427, - 24.317244485195395, - 25.29447563206189, - 26.27057833599589, - 27.038681889452285, - 27.705866409347795, - 28.283513907495877, - 28.767882369727513, - 29.131160108303835, - 29.54584761703691, - 29.83127869231737, - 29.97278320147652, - 30.205420317188988 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615428, - 1.4813847491413072, - 1.8198213217004329, - 2.1114679242247245, - 2.451192833209457, - 2.7884205494038894, - 3.0450483608386962, - 3.3889760648818865, - 3.6196131943327448, - 3.8056813892852563, - 4.108661665137623, - 4.353638536635561, - 5.05450529286154, - 5.896033704470797, - 6.187156253689374, - 6.481117259530002, - 6.804112238472135, - 7.087127291581878, - 7.356482862225854, - 7.6153717090079605, - 7.857001464129365, - 8.056073717048836, - 8.31038615046112, - 8.508484888743821, - 8.617352463975381, - 8.82183520484332 - ], - "5._384._0.0875": [ - 3.4939968503332497, - 4.027735248545233, - 4.651814316226323, - 5.644760951849332, - 6.794632697014524, - 8.589689508012844, - 10.998443559101675, - 13.342003376265088, - 17.047107447054888, - 19.58152679033341, - 21.516691679562218, - 24.388455684718053, - 26.491398073018463, - 31.463255867493242, - 35.92274538761726, - 37.17551329649973, - 38.297800179899426, - 39.3879620098285, - 40.22484536771916, - 40.939432423747114, - 41.54925842007993, - 42.0550982061573, - 42.43178555649116, - 42.85987788214114, - 43.15268008834444, - 43.296945420584535, - 43.532648261688855 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564783, - 2.506080869276348, - 2.8001353893754906, - 3.1434109677792073, - 3.513910813982594, - 3.863769655075967, - 4.456653509109647, - 4.896104620020496, - 5.253925924258091, - 5.832035462524861, - 6.293929619060821, - 7.580410597869832, - 9.0539911488716, - 9.5472134609793, - 10.033131464484466, - 10.553278335387136, - 10.995787302287175, - 11.405609485924966, - 11.787265245153536, - 12.131632817230177, - 12.406650616458979, - 12.743978406523155, - 12.995376526630984, - 13.128413702313663, - 13.363938798114857 - ], - "5._96._0.075": [ - 2.209271810327409, - 2.55532356434309, - 2.851916336970189, - 3.200428050963151, - 3.5257579461155175, - 4.008989808304586, - 4.676265332179803, - 5.35355072995726, - 6.495444609266364, - 7.33001056958272, - 8.001327511777367, - 9.067536302021653, - 9.903763444489373, - 12.142609386662699, - 14.553761633763203, - 15.327700110089408, - 16.067166829534813, - 16.834340834826786, - 17.464092537492377, - 18.029704582442683, - 18.53766282264108, - 18.978712758118043, - 19.31887705268885, - 19.718320969554192, - 20.001244137354284, - 20.144536475915466, - 20.384811978980686 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_35": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ], - [ - 125.0, - 0.0 - ], - [ - 130.0, - 0.0 - ], - [ - 135.0, - 0.0 - ], - [ - 140.0, - 0.0 - ], - [ - 145.0, - 0.0 - ], - [ - 150.0, - 0.0 - ], - [ - 155.0, - 0.0 - ], - [ - 160.0, - 0.0 - ], - [ - 165.0, - 0.0 - ], - [ - 170.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351710416170253, - 3.187440331660009, - 3.5236919184083235, - 4.032995307805451, - 4.6261010679599215, - 5.565933040007484, - 6.856954150643887, - 8.148375001721586, - 10.27437999800527, - 11.78920223305721, - 12.983038020030586, - 14.827417233941004, - 16.23499902705823, - 19.804629978833344, - 23.355706438707237, - 24.429801630190305, - 25.42030758946564, - 26.41077543467133, - 27.19101031643517, - 27.869373591729683, - 28.457152573687562, - 28.950333980188066, - 29.320432044466703, - 29.74308472856306, - 30.034161900453554, - 30.178541933769115, - 30.416062522626085 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.195803175961543, - 1.4813847491413075, - 1.819821321700433, - 2.111467924224724, - 2.4511928332103556, - 2.7884205620757574, - 3.0450491414989034, - 3.388993906055309, - 3.619670174762784, - 3.805789022683699, - 4.108884990127895, - 4.353984226335824, - 5.055352961526817, - 5.8978118621225235, - 6.189348066096852, - 6.4837861275011095, - 6.807380682070508, - 7.090996049225032, - 7.360996609229086, - 7.620586746774943, - 7.862957954589051, - 8.062717688776502, - 8.318040937385458, - 8.517072813180821, - 8.626536808717715, - 8.832430937147976 - ], - "5._384._0.0875": [ - 3.4940460128288913, - 4.0279527652503, - 4.652367823035839, - 5.646154380504296, - 6.797478034329019, - 8.595897850682949, - 11.011363737882123, - 13.363989097065001, - 17.089017079927423, - 19.641290529104907, - 21.592584196954796, - 24.49251368272612, - 26.619646416452547, - 31.66038689989671, - 36.19684801838351, - 37.473808561353394, - 38.618309611298066, - 39.73050734564226, - 40.58440523912061, - 41.31366053054943, - 41.93597089654401, - 42.4521111532556, - 42.83647813511737, - 43.27326004206337, - 43.572042605981814, - 43.71928415898927, - 43.95993613872868 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125418, - 2.162243131656481, - 2.506080869280619, - 2.800135400681593, - 3.143412821997759, - 3.51394108307271, - 3.8638829281950784, - 4.457026350816353, - 4.896759758043998, - 5.25486863542053, - 5.833560779239377, - 6.296027136482711, - 7.584676441286279, - 9.061895122565378, - 9.556655603017074, - 10.044284393366686, - 10.566500442808067, - 11.011000716200414, - 11.42288188877613, - 11.80668466070193, - 12.153225183635584, - 12.430181360431158, - 12.770215960660058, - 13.024003350979806, - 13.158518124400434, - 13.397275270689706 - ], - "5._96._0.075": [ - 2.2092718103274005, - 2.5553235643609615, - 2.851916362760134, - 3.200430965433572, - 3.5257875401227774, - 4.009145415180342, - 4.67675047389153, - 5.354545352017953, - 6.497723428187463, - 7.333572373216954, - 8.006145460916835, - 9.07480299578222, - 9.91334740939417, - 12.16036583842112, - 14.583953629064741, - 15.36290874143678, - 16.10770682298475, - 16.881048782815633, - 17.516467917669605, - 18.087703078600523, - 18.601246220081514, - 19.0476532307378, - 19.392353655055526, - 19.79766584321908, - 20.085243350176246, - 20.23110867253371, - 20.476116326286267 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_36": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ], - [ - 125.0, - 0.0 - ], - [ - 130.0, - 0.0 - ], - [ - 135.0, - 0.0 - ], - [ - 140.0, - 0.0 - ], - [ - 145.0, - 0.0 - ], - [ - 150.0, - 0.0 - ], - [ - 155.0, - 0.0 - ], - [ - 160.0, - 0.0 - ], - [ - 165.0, - 0.0 - ], - [ - 170.0, - 0.0 - ], - [ - 175.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835171093632735, - 3.187444500047474, - 3.523728189762474, - 4.033169925406286, - 4.626558260624043, - 5.567097926433287, - 6.859630169758153, - 8.153209948098766, - 10.28431759368571, - 11.803987799723066, - 13.002406579807888, - 14.855316314953408, - 16.27064813719232, - 19.86519953833987, - 23.45011863269227, - 24.536997797783464, - 25.540261080097846, - 26.544574507151744, - 27.33654520930458, - 28.025757743794372, - 28.623402254482816, - 29.125192209050244, - 29.50197056712138, - 29.93244493781838, - 30.229080699108877, - 30.376297153749025, - 30.61864473934257 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.195803175961542, - 1.4813847491413084, - 1.8198213217004344, - 2.1114679242247245, - 2.4511928332112043, - 2.788420574043638, - 3.045049878789105, - 3.389010756064753, - 3.619723989832602, - 3.8058906774917673, - 4.109095914908762, - 4.354310730430312, - 5.056153700165011, - 5.899491956484735, - 6.191419151246364, - 6.486308217576494, - 6.810469733070167, - 7.094652896390301, - 7.365263659649986, - 7.625517457416045, - 7.868590556289696, - 8.069001287706815, - 8.32528212791029, - 8.525198386656957, - 8.635227808541899, - 8.84246071675754 - ], - "5._384._0.0875": [ - 3.494092445345096, - 4.028158207654891, - 4.652890645585196, - 5.647470817171797, - 6.800166867028141, - 8.601767692381163, - 11.023588842613687, - 13.384808223201876, - 17.128760541926795, - 19.698020461089126, - 21.664680953347265, - 24.59149992207715, - 26.741780960681808, - 31.84875137518641, - 36.459914806544596, - 37.76052255449013, - 38.92678681300619, - 40.06062165409103, - 40.93125415779198, - 41.674954715525395, - 42.309569188809235, - 42.8358661020677, - 43.227808371697016, - 43.67316336022734, - 43.97784897073151, - 44.128030057942745, - 44.373574571194844 - ], - "5._48._0.075": [ - 1.5268463243731378, - 1.8679037053125447, - 2.162243131656481, - 2.5060808692846526, - 2.8001354113595824, - 3.1434145732042134, - 3.5139696706032693, - 3.86398990998108, - 4.457378506767342, - 4.897378585276887, - 5.25575914795513, - 5.835001814296529, - 6.298008961873132, - 7.588708680033055, - 9.069370449388888, - 9.565587251347093, - 10.054836535703606, - 10.579013519824004, - 11.025401917058558, - 11.439236382434363, - 11.825077143506979, - 12.173681559908374, - 12.452479885945154, - 12.795088970569681, - 13.051151548759735, - 13.187076263933465, - 13.428935645794816 - ], - "5._96._0.075": [ - 2.209271810327408, - 2.555323564377844, - 2.8519163871173085, - 3.2004337179891276, - 3.5258154900735104, - 4.0092923807793674, - 4.677208712322843, - 5.355484923361614, - 6.499876690947692, - 7.336938584804072, - 8.010699604462998, - 9.08167405753446, - 9.9224119797625, - 12.17717575356634, - 14.61256897231103, - 15.396290950619207, - 16.14615958404328, - 16.925373308491526, - 17.566193706942506, - 18.142793926535095, - 18.6616746055373, - 19.113213191805887, - 19.462270931486472, - 19.873242246702617, - 20.16533432248025, - 20.31370825094366, - 20.56335788610802 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_37": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ], - [ - 125.0, - 0.0 - ], - [ - 130.0, - 0.0 - ], - [ - 135.0, - 0.0 - ], - [ - 140.0, - 0.0 - ], - [ - 145.0, - 0.0 - ], - [ - 150.0, - 0.0 - ], - [ - 155.0, - 0.0 - ], - [ - 160.0, - 0.0 - ], - [ - 165.0, - 0.0 - ], - [ - 170.0, - 0.0 - ], - [ - 175.0, - 0.0 - ], - [ - 180.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83517114283679, - 3.1874484431171286, - 3.523762500600301, - 4.0333351090762015, - 4.6269907826591625, - 5.568200138167545, - 6.862162943006732, - 8.157787523522796, - 10.293732272405565, - 11.818001608398214, - 13.020771002832856, - 14.881786976730778, - 16.304490014948833, - 19.922794895245993, - 23.540061017462417, - 24.639202919043292, - 25.654731270513917, - 26.67239265329968, - 27.47571760634825, - 28.175459504263543, - 28.782710028368363, - 29.292908366696814, - 29.676229631945635, - 30.114384973914646, - 30.416493733238088, - 30.566508443420492, - 30.81362807508817 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615428, - 1.4813847491413077, - 1.819821321700434, - 2.1114679242247245, - 2.451192833212005, - 2.7884205853646042, - 3.0450505762257873, - 3.3890266952739028, - 3.6197748961757257, - 3.8059868383777595, - 4.109295444371453, - 4.354619602980738, - 5.056911301115542, - 5.901081881930616, - 6.193379216348411, - 6.488695313866397, - 6.813393765906244, - 7.09811477943288, - 7.369303699330432, - 7.630186475323355, - 7.873924986116038, - 8.074953058129907, - 8.332142358836581, - 8.532897965879878, - 8.643464172125796, - 8.85196869848307 - ], - "5._384._0.0875": [ - 3.4941363691313923, - 4.028352553971058, - 4.653385266579702, - 5.6487164714024845, - 6.802711761857217, - 8.60732598174471, - 11.035173488288976, - 13.404551186215729, - 17.166501467855568, - 19.751941698491297, - 21.733259409505205, - 24.6857753653492, - 26.858225211991037, - 32.02890385883092, - 36.7125680940458, - 38.03628815238589, - 39.223872027377276, - 40.37895124698359, - 41.26604344179737, - 42.02397047374259, - 42.670712927761755, - 43.20702653304423, - 43.60644279181411, - 44.060258064600795, - 44.37077198027448, - 44.52385717521128, - 44.77423962302525 - ], - "5._48._0.075": [ - 1.526846324373138, - 1.8679037053125453, - 2.16224313165648, - 2.5060808692884677, - 2.800135421460376, - 3.1434162297509074, - 3.5139967129124905, - 3.86409111041446, - 4.45771165200517, - 4.89796403908223, - 5.256601680470399, - 5.836365365343462, - 6.299884410009899, - 7.592525991112464, - 9.076451076353935, - 9.574048712930992, - 10.064835157627996, - 10.590873101181998, - 11.03905424590374, - 11.454744228850583, - 11.842522035634993, - 12.193089274205482, - 12.473640485762681, - 12.818701124147637, - 13.076932506616659, - 13.214203620719134, - 13.459041382452773 - ], - "5._96._0.075": [ - 2.209271810327409, - 2.5553235643938055, - 2.851916410157874, - 3.2004363217580294, - 3.5258419292652703, - 4.009431405465741, - 4.677642224957686, - 5.356373891349707, - 6.501914495911434, - 7.340124884506552, - 8.015011031182558, - 9.088180939056995, - 9.93099825992412, - 12.193112840115628, - 14.639727985021318, - 15.427985199895135, - 16.182682171788375, - 16.967492165828098, - 17.613465675990494, - 18.19518969923837, - 18.719175589435437, - 19.175632627081782, - 19.52887745799167, - 19.94530696938441, - 20.241777796932787, - 20.39259725810676, - 20.646799936394654 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_38": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ], - [ - 125.0, - 0.0 - ], - [ - 130.0, - 0.0 - ], - [ - 135.0, - 0.0 - ], - [ - 140.0, - 0.0 - ], - [ - 145.0, - 0.0 - ], - [ - 150.0, - 0.0 - ], - [ - 155.0, - 0.0 - ], - [ - 160.0, - 0.0 - ], - [ - 165.0, - 0.0 - ], - [ - 170.0, - 0.0 - ], - [ - 175.0, - 0.0 - ], - [ - 180.0, - 0.0 - ], - [ - 185.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835171189451182, - 3.1874521786571877, - 3.5237950056919396, - 4.033491603225922, - 4.627400578484581, - 5.569244600839934, - 6.864563672244399, - 8.162127744892098, - 10.302664246896326, - 11.83130253827685, - 13.038207385903695, - 14.906936144301534, - 16.336658621851665, - 19.977629845251812, - 23.6258429286415, - 24.736754382698486, - 25.764079676345094, - 26.794612668069018, - 27.60892398861907, - 28.318884885181102, - 28.935488323510437, - 29.453899071838517, - 29.843628434643815, - 30.28932666649967, - 30.59682462450165, - 30.749600296601308, - 31.001438441464163 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615426, - 1.4813847491413075, - 1.819821321700433, - 2.1114679242247223, - 2.451192833212767, - 2.788420596089729, - 3.0450512369552833, - 3.3890417955872016, - 3.619823123413419, - 3.806077939000696, - 4.109484477683608, - 4.354912234619921, - 5.057629158832328, - 5.902588707623522, - 6.195236955097376, - 6.490957971925826, - 6.816165659267466, - 7.101396884758011, - 7.373134373944576, - 7.63461409463003, - 7.878984308721704, - 8.08059860748654, - 8.338650921354, - 8.540204193279592, - 8.651280662048471, - 8.86099456428967 - ], - "5._384._0.0875": [ - 3.494177982158168, - 4.028536679521545, - 4.653853907920194, - 5.649896902482179, - 6.8051239752339265, - 8.612596880898835, - 11.046166714718504, - 13.423299308388202, - 17.20238742372472, - 19.803257634410357, - 21.798570671144358, - 24.77566774083097, - 26.96936508828995, - 32.20135520343323, - 36.955385956561706, - 38.30169401275357, - 39.51016127554764, - 40.686098090872726, - 41.58937956010675, - 42.36131845781154, - 43.02001667927843, - 43.566210619432354, - 43.97300242635688, - 44.43516867016757, - 44.75143856713977, - 44.90739363043174, - 45.16256130421926 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312544, - 2.1622431316564827, - 2.506080869292083, - 2.8001354310295548, - 3.1434177991109755, - 3.5140223319876265, - 3.864186985806589, - 4.458027285475464, - 4.898518748318245, - 5.257400008913101, - 5.83765751816109, - 6.30166182186237, - 7.596145112255164, - 9.08316745824157, - 9.582076160542165, - 10.07432269437477, - 10.602129070334817, - 11.05201462550809, - 11.469469500943399, - 11.859090712730673, - 12.211526929446833, - 12.493748075031078, - 12.841145880139795, - 13.10144676381248, - 13.240004587432704, - 13.487702641714368 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.555323564408928, - 2.8519164319857833, - 3.20043878848657, - 3.5258669769647164, - 4.00956311590974, - 4.678052960466597, - 5.357216236857246, - 6.50384588679176, - 7.343145320087329, - 8.01909864046389, - 9.094351844602944, - 9.939143128805096, - 12.208243347920476, - 14.665539053153203, - 15.458116306443857, - 16.21741628292372, - 17.00756588387231, - 17.65846083982408, - 18.245082895846927, - 18.773955683584717, - 19.23512974097381, - 19.592399677832944, - 20.01409447500626, - 20.31481217194874, - 20.46801540117042, - 20.726683400384758 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_39": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ], - [ - 125.0, - 0.0 - ], - [ - 130.0, - 0.0 - ], - [ - 135.0, - 0.0 - ], - [ - 140.0, - 0.0 - ], - [ - 145.0, - 0.0 - ], - [ - 150.0, - 0.0 - ], - [ - 155.0, - 0.0 - ], - [ - 160.0, - 0.0 - ], - [ - 165.0, - 0.0 - ], - [ - 170.0, - 0.0 - ], - [ - 175.0, - 0.0 - ], - [ - 180.0, - 0.0 - ], - [ - 185.0, - 0.0 - ], - [ - 190.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351712336750636, - 3.1874557226314355, - 3.5238258439343753, - 4.033640075953617, - 4.627789393417546, - 5.5702357371148805, - 6.86684242102844, - 8.166248605881817, - 10.311149710049557, - 11.843943628562892, - 13.054784327781006, - 14.930860334254115, - 16.367275005177802, - 20.029898148895533, - 23.707746098618127, - 24.82996041874242, - 25.868637547421237, - 26.91158639131642, - 27.73652959988864, - 28.456408570922388, - 29.08211821070303, - 29.60854955057774, - 30.004554721429216, - 30.45766027474356, - 30.770465312804852, - 30.925965466473215, - 31.18246991080115 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615417, - 1.4813847491413064, - 1.8198213217004333, - 2.111467924224724, - 2.4511928332134887, - 2.7884206062648516, - 3.0450518638012096, - 3.3890561215343404, - 3.61986887761754, - 3.8061643685489224, - 4.109663821836776, - 4.355189873484604, - 5.0583103207318265, - 5.904018782595706, - 6.197000176580089, - 6.4931056747892635, - 6.818796985710866, - 7.1045128615052375, - 7.37677154660896, - 7.6388185640367405, - 7.883789269830207, - 8.085960974581624, - 8.344834179004733, - 8.547146459493641, - 8.658708585116132, - 8.869574074248101 - ], - "5._384._0.0875": [ - 3.494217462099807, - 4.0287113699208374, - 4.654298564073013, - 5.651017102379615, - 6.807413619691099, - 8.617602116527655, - 11.056612680162957, - 13.441125921306266, - 17.236551830899717, - 19.852152499467167, - 21.860842536630035, - 24.861475222878028, - 27.07555288042482, - 32.366576579205145, - 37.188906054016044, - 38.55728841166938, - 39.786210204551075, - 40.98262368075322, - 41.90182840293129, - 42.68756844976211, - 43.35805389103791, - 43.91399519090029, - 44.328066791724545, - 44.79847797477122, - 45.12043380986162, - 45.279225621756176, - 45.539127596096534 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312545, - 2.1622431316564814, - 2.506080869295512, - 2.800135440108009, - 3.143419287991072, - 3.5140466373048436, - 3.8642779456788174, - 4.458326752575517, - 4.8990450728039905, - 5.258157523145044, - 5.838883737471574, - 6.303348688606769, - 7.599581087244509, - 9.089546995390075, - 9.5897021495152, - 10.083337352024392, - 10.612826360363742, - 11.064334353098825, - 11.483469966677825, - 11.874847559176843, - 12.22906546618157, - 12.512879327866907, - 12.862507694221907, - 13.124785287083782, - 13.264573734672995, - 13.515019561301726 - ], - "5._96._0.075": [ - 2.2092718103274116, - 2.555323564423278, - 2.8519164526943106, - 3.2004411287163173, - 3.525890740206425, - 4.00968807453211, - 4.678442667992372, - 5.358015533872271, - 6.505678986827839, - 7.346012513945492, - 8.02297941923929, - 9.100212139478707, - 9.946879769225385, - 12.222626988569747, - 14.690100070797717, - 15.486797082225292, - 16.250490083599555, - 17.045739798098726, - 17.701339634825047, - 18.29264822366978, - 18.82620264197892, - 19.291903317090057, - 19.653044259005522, - 20.079819243738946, - 20.38465583611674, - 20.540182381839884, - 20.803229186936782 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351565293061927, - 3.186277369725293, - 3.5135763440050924, - 3.984482530615498, - 4.500328527187433, - 5.252929853813622, - 6.166049558164793, - 6.954818862458517, - 8.035329575127863, - 8.677316270389335, - 9.126260992463921, - 9.74365052040903, - 10.163560451553488, - 11.09224837617182, - 11.87253405098203, - 12.085668095178917, - 12.277305834288796, - 12.464136810401527, - 12.609345157930006, - 12.733492953922616, - 12.840568813105348, - 12.930315914522732, - 12.997261077795526, - 13.073806543685494, - 13.126038789048899, - 13.151633867822897, - 13.192971097467371 - ], - "5._24._0.075": [ - 0.8740013793970963, - 1.1957934696806856, - 1.4813667488882372, - 1.8197853662506762, - 2.1114044341807157, - 2.451070525119184, - 2.78818375566569, - 3.044462584972616, - 3.3835492733852717, - 3.6035402764592814, - 3.775936601553508, - 4.04783928375391, - 4.260199503376492, - 4.83026072820424, - 5.440316619613034, - 5.631817647925681, - 5.8144603766946545, - 6.002746075381008, - 6.15671652137846, - 6.293698523897438, - 6.416260465066006, - 6.522333986896158, - 6.603431531688164, - 6.698303675873532, - 6.764456015353557, - 6.797366566033298, - 6.851243600007028 - ], - "5._384._0.0875": [ - 3.4811393655885206, - 3.971010269644954, - 4.508976665415018, - 5.294251139816838, - 6.103114537954158, - 7.177936460766827, - 8.343480110490887, - 9.262841494572463, - 10.439178278648443, - 11.109549088367109, - 11.570154220595375, - 12.195693347635098, - 12.617618287524184, - 13.544949039519576, - 14.321132217443383, - 14.532760907779526, - 14.723102299691968, - 14.908625655760929, - 15.052829037332357, - 15.176068454958983, - 15.282364173235125, - 15.37146341955096, - 15.43790498694524, - 15.513878999541594, - 15.565692266203763, - 15.591066210539713, - 15.632024448327295 - ], - "5._48._0.075": [ - 1.5268359332879173, - 1.8678839385147374, - 2.1622087383456443, - 2.5060151099606895, - 2.8000188519866724, - 3.1427073206177853, - 3.5055373540001047, - 3.8333195360139745, - 4.357904355255417, - 4.7240568674260475, - 5.008175496203009, - 5.440407740861426, - 5.762629797534667, - 6.557057784804414, - 7.302738578001398, - 7.517295299755165, - 7.713813485892955, - 7.90866356380504, - 8.062297541151557, - 8.19505899526737, - 8.310650013821848, - 8.408302728791881, - 8.481590072964535, - 8.565802485788343, - 8.623600723744266, - 8.652055179321795, - 8.698212371267878 - ], - "5._96._0.075": [ - 2.2092619209324704, - 2.5553055480208138, - 2.851878961478617, - 3.199605002205937, - 3.5178882395629185, - 3.968046678185059, - 4.55014749155164, - 5.098742395066348, - 5.930851539740409, - 6.470185581628055, - 6.865730338663789, - 7.431794194211518, - 7.82918121122223, - 8.73596275485232, - 9.51800957209451, - 9.734023351563122, - 9.928834742576504, - 10.119361285092724, - 10.267811157313929, - 10.394989586500742, - 10.504853818991128, - 10.597056343718467, - 10.665915874567876, - 10.744705908389962, - 10.798543354928198, - 10.824959083605435, - 10.867680397495905 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_40": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ], - [ - 125.0, - 0.0 - ], - [ - 130.0, - 0.0 - ], - [ - 135.0, - 0.0 - ], - [ - 140.0, - 0.0 - ], - [ - 145.0, - 0.0 - ], - [ - 150.0, - 0.0 - ], - [ - 155.0, - 0.0 - ], - [ - 160.0, - 0.0 - ], - [ - 165.0, - 0.0 - ], - [ - 170.0, - 0.0 - ], - [ - 175.0, - 0.0 - ], - [ - 180.0, - 0.0 - ], - [ - 185.0, - 0.0 - ], - [ - 190.0, - 0.0 - ], - [ - 195.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835171275687775, - 3.1874590894072745, - 3.5238551403355647, - 4.033781128579467, - 4.628158798521362, - 5.571177529291744, - 6.869008255622753, - 8.170166326259787, - 10.31922132493572, - 11.855972784907479, - 13.07056383029445, - 14.95364689071097, - 16.39644881681502, - 20.079775831236535, - 23.786027588944403, - 24.91910308467764, - 25.968708864908706, - 27.023637678959116, - 27.858871392229002, - 28.58837684385814, - 29.222952321751183, - 29.757216558711054, - 30.159367720743443, - 30.619747435368602, - 30.937779015658258, - 31.095967930367927, - 31.35708768935699 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961541, - 1.4813847491413068, - 1.819821321700433, - 2.1114679242247245, - 2.4511928332141726, - 2.788420615931216, - 3.0450524593048454, - 3.3890697311921416, - 3.6199123442540326, - 3.8062464772980267, - 4.109834203162788, - 4.35545364301136, - 5.0589575304375485, - 5.905377825169635, - 6.198675914997585, - 6.495146965813912, - 6.8212981731455615, - 7.107475011256944, - 7.380229517421522, - 7.642816338164548, - 7.8883585805081555, - 8.091060943757208, - 8.350715924519246, - 8.553751298430942, - 8.665776211353926, - 8.877739538467898 - ], - "5._384._0.0875": [ - 3.4942549688707145, - 4.02887733228018, - 4.654721030444231, - 5.652081566313319, - 6.809589805578065, - 8.622361279174177, - 11.066551253932008, - 13.458097323587342, - 17.269115620358697, - 19.898793565608397, - 21.92028213385679, - 24.943469647665886, - 27.177110742658325, - 32.52500307800076, - 37.41362907441923, - 38.803582672590345, - 40.0525375223868, - 41.26905249717306, - 42.20391869985192, - 43.00325285909416, - 43.685360420168045, - 44.25091927955977, - 44.672177448087425, - 45.150730631862366, - 45.478304514872264, - 45.63990101256992, - 45.904488045726524 - ], - "5._48._0.075": [ - 1.526846324373144, - 1.8679037053125487, - 2.1622431316564796, - 2.506080869298771, - 2.8001354487325325, - 3.143420702427206, - 3.5140697273929837, - 3.8643643586098095, - 4.458611264324774, - 4.899545136877749, - 5.2588772750587545, - 5.840048944191337, - 6.304951757160064, - 7.602847474919426, - 9.095614407239376, - 9.596956058882732, - 10.091913621496825, - 10.623005553119036, - 11.076059778442632, - 11.49679784583472, - 11.88985080346057, - 12.245769073843187, - 12.531103652846621, - 12.882863074296523, - 13.14703057254651, - 13.287996924217405, - 13.541083361351898 - ], - "5._96._0.075": [ - 2.209271810327416, - 2.5553235644369052, - 2.8519164723674164, - 3.20044335193468, - 3.525913315321795, - 4.009806787532314, - 4.678812922050219, - 5.358775000185647, - 6.507421112985986, - 7.348737839422122, - 8.026668677913955, - 9.10578469845536, - 9.954238119584424, - 12.236317722436151, - 14.713499679314666, - 15.51412974292976, - 16.282019785649446, - 17.082145802705494, - 17.742247803520183, - 18.338044582337712, - 18.87608750416984, - 19.346134784717687, - 19.711000160939207, - 20.142677826160504, - 20.451509214511113, - 20.609299942089237, - 20.876640241057743 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351598062666232, - 3.186539970868435, - 3.5158597860966205, - 3.9954013132700497, - 4.528420506228125, - 5.3215759636561835, - 6.31279536227868, - 7.197643286509492, - 8.449802285616565, - 9.21208449967516, - 9.751349000396456, - 10.498844387141098, - 11.01019344790078, - 12.144898313237372, - 13.099625948047745, - 13.360473668577686, - 13.594785319219229, - 13.823057700360815, - 14.00027547815332, - 14.151752764767862, - 14.282290873883106, - 14.39161564155346, - 14.47315005172904, - 14.566327283043137, - 14.629913935163467, - 14.661082947670087, - 14.7114545821795 - ], - "5._24._0.075": [ - 0.8740013793970968, - 1.195793469680686, - 1.4813667488882376, - 1.8197853662506758, - 2.111404434180715, - 2.451070525172641, - 2.7881845093787754, - 3.0445090095690146, - 3.384609546576235, - 3.60692258803915, - 3.782313721304198, - 4.060991129105417, - 4.280408476405369, - 4.878001605922317, - 5.534874882442655, - 5.745943502422536, - 5.949666959848923, - 6.162379721752643, - 6.338479744874569, - 6.49689031949909, - 6.64004768398907, - 6.76506132893069, - 6.861365674024911, - 6.974792013370061, - 7.054411305581753, - 7.094208003200405, - 7.159645254280049 - ], - "5._384._0.0875": [ - 3.484045428228503, - 3.983803041186735, - 4.5409283279405095, - 5.371119867045962, - 6.250610707585901, - 7.460822088981469, - 8.822064064479669, - 9.923056162452188, - 11.35373942918458, - 12.175784657247368, - 12.742211991048363, - 13.512226599200405, - 14.031877063359648, - 15.172488335257922, - 16.125332896405297, - 16.38489296263954, - 16.618121258210458, - 16.84527448121368, - 17.021659665212646, - 17.17237123947259, - 17.30227791766592, - 17.41110415604465, - 17.492249758034, - 17.585007675061036, - 17.64827611166057, - 17.67926884036746, - 17.72932432908714 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125438, - 2.1622431316564774, - 2.506080868409208, - 2.800133094236608, - 3.1430345625688068, - 3.5077674641030474, - 3.8408116625904216, - 4.381586671332468, - 4.765025811641742, - 5.0664282724592455, - 5.532471379825891, - 5.886390053018073, - 6.785527080084026, - 7.663765491037, - 7.921985185406946, - 8.160457294662926, - 8.39852958441645, - 8.587237147922867, - 8.750825350971988, - 8.893568538257197, - 9.014297504376565, - 9.104922018464343, - 9.208990335965863, - 9.280380743302517, - 9.315523178898712, - 9.372516058367696 - ], - "5._96._0.075": [ - 2.209261920932471, - 2.5553055490839878, - 2.8518804959132367, - 3.199778397146007, - 3.519648020844696, - 3.977249406611028, - 4.578267520113382, - 5.154848731697201, - 6.051483672644926, - 6.64903109207958, - 7.095749573899366, - 7.746739141717749, - 8.21143309928475, - 9.290062728168119, - 10.234593250466354, - 10.497074014542322, - 10.733965995209655, - 10.965795245194869, - 11.1463870323713, - 11.301144547056056, - 11.434763905850694, - 11.546829250128546, - 11.630513785636808, - 11.726204400187711, - 11.791598239536073, - 11.82369792476395, - 11.875650777827616 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835161990911118, - 3.1867150393227837, - 3.517382314078809, - 4.002692053524816, - 4.547247743896627, - 5.367980602934978, - 6.413570897056565, - 7.368631251473461, - 8.756431479101177, - 9.620653096642311, - 10.239410857054358, - 11.104845246864013, - 11.701048412476972, - 13.030666099915301, - 14.15275812389436, - 14.459600600779275, - 14.73502536672501, - 15.003207714105734, - 15.211206411368803, - 15.388959622334651, - 15.54202512808495, - 15.670121922445576, - 15.765641438969773, - 15.874746584972375, - 15.949209240564953, - 15.985720622448445, - 16.044762103825423 - ], - "5._24._0.075": [ - 0.8740059532267962, - 1.1958031759615424, - 1.4813847491413075, - 1.8198213217004349, - 2.111467924224728, - 2.451192833062686, - 2.7884184796647324, - 3.0449208530816416, - 3.386062186750797, - 3.610309594636148, - 3.788116506186535, - 4.0722835555242085, - 4.297458391423497, - 4.918397013470395, - 5.61584433170168, - 5.843837463130339, - 6.066165491561771, - 6.300813022308235, - 6.497258102773271, - 6.675709755400152, - 6.838541308355629, - 6.982014684034514, - 7.0933559921619755, - 7.2254301846344235, - 7.318753499591462, - 7.365610745077294, - 7.442978084331978 - ], - "5._384._0.0875": [ - 3.4859855003899294, - 3.9923526176916058, - 4.562366681191675, - 5.423179572495527, - 6.351897707188339, - 7.662034742866547, - 9.181066820380732, - 10.43987096909204, - 12.103673142668287, - 13.069209871928068, - 13.737033095912324, - 14.646499652878957, - 15.260947136768802, - 16.60872995583057, - 17.733078357411195, - 18.03913778800683, - 18.313907521596736, - 18.5813341907395, - 18.78879675179029, - 18.966027440371185, - 19.118697950718726, - 19.246521975063747, - 19.341825483318093, - 19.450734107695883, - 19.525027676769373, - 19.561430791160035, - 19.620254657474046 - ], - "5._48._0.075": [ - 1.5268463243731434, - 1.8679037053125456, - 2.162243131656478, - 2.5060808685786498, - 2.8001335427120204, - 3.1431081128315754, - 3.508967689277732, - 3.8452920087841305, - 4.396158399568936, - 4.790341907673497, - 5.1024668122352, - 5.589462598819013, - 5.963237889259346, - 6.930182846399339, - 7.9023401724775715, - 8.193762340376306, - 8.464899445380386, - 8.737487450753207, - 8.95476995829216, - 9.143990687370689, - 9.309650406466377, - 9.450109469695633, - 9.555748290333073, - 9.677192905925992, - 9.76062836275538, - 9.801755151911522, - 9.86854588921472 - ], - "5._96._0.075": [ - 2.2092619209324704, - 2.5553055497927706, - 2.8518815188696505, - 3.1998939940869224, - 3.5208213260912595, - 3.9833921153927623, - 4.597116326255696, - 5.192666633794937, - 6.133875980646579, - 6.772999136289317, - 7.25762498277739, - 7.974401186413238, - 8.493701931753968, - 9.71993303662497, - 10.812582732567138, - 11.11854192062693, - 11.395086505922585, - 11.666052948584051, - 11.877194636648637, - 12.058233088047688, - 12.214508475351074, - 12.345520563404403, - 12.443354501252804, - 12.555167327733807, - 12.631594925930047, - 12.669128294461094, - 12.729922063086406 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351635513735327, - 3.1868400887210777, - 3.518469948327196, - 4.007905391760889, - 4.560744629535112, - 5.401449083758796, - 6.486976321316337, - 7.494819690011772, - 8.990031148978208, - 9.939742486515406, - 10.62756995709885, - 11.598631317944045, - 12.272809342815531, - 13.785766062801317, - 15.068231886920891, - 15.419442920350987, - 15.734535049510566, - 16.041230270215344, - 16.27890182163994, - 16.481985532426044, - 16.65674348422391, - 16.802895065437415, - 16.911862557914205, - 17.036270572370665, - 17.12118489782945, - 17.16283345665093, - 17.230222114881137 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004349, - 2.1114679242247276, - 2.4511928330881467, - 2.788418838701112, - 3.044942971763282, - 3.386567629728472, - 3.6119230278460517, - 3.7911613045797923, - 4.078580049636962, - 4.307163752177449, - 4.941677435556674, - 5.663027618983758, - 5.901361759594423, - 6.135247696883413, - 6.383886230396662, - 6.59370507369637, - 6.785803776503792, - 6.962509782107197, - 7.119485626994295, - 7.242243538718094, - 7.389029028716575, - 7.493643635612574, - 7.5465023506515365, - 7.634332582782971 - ], - "5._384._0.0875": [ - 3.487372589585155, - 3.998469801266941, - 4.5777474410051315, - 5.460776223461212, - 6.425674739213298, - 7.811448320008934, - 9.457393874786662, - 10.851633705797674, - 12.726622455189958, - 13.826818124689655, - 14.591252079696888, - 15.634857218384486, - 16.341099374278958, - 17.89012008611717, - 19.18120760165275, - 19.532466736275204, - 19.84756093006916, - 20.15403736620567, - 20.391581915199563, - 20.59447307028286, - 20.76914405185987, - 20.915308582552065, - 21.024277607388683, - 21.148765882915125, - 21.233696595705158, - 21.275322017056848, - 21.342617449775894 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125447, - 2.162243131656477, - 2.506080868699679, - 2.8001338630516033, - 3.14316064878727, - 3.509825052299018, - 3.848493949538661, - 4.406595353628653, - 4.808512554916006, - 5.128385046179502, - 5.630621991594365, - 6.018944136982413, - 7.036679243449652, - 8.083085612065275, - 8.402118479140187, - 8.701041197701302, - 9.003679581690063, - 9.246361952110863, - 9.458765264812914, - 9.64545370153571, - 9.80423770945946, - 9.923954658858502, - 10.061818993725646, - 10.156722307309312, - 10.203578162091253, - 10.279798091320455 - ], - "5._96._0.075": [ - 2.2092619209324726, - 2.555305550299042, - 2.8518822495528053, - 3.199976563484331, - 3.5216594589333883, - 3.987783469991948, - 4.610630051411952, - 5.219885841408891, - 6.193697119043065, - 6.863688145465759, - 7.37701355174114, - 8.145097648783063, - 8.708507627471517, - 10.06015942648566, - 11.28655314742143, - 11.632954167739143, - 11.94671528792384, - 12.254687309217946, - 12.494851774934968, - 12.700949413835472, - 12.87886828832538, - 13.02799852954206, - 13.13937721517926, - 13.266623199224691, - 13.353625807082219, - 13.396374577666606, - 13.465670536191942 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_26": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ], - [ - 50.0, - 0.0 - ], - [ - 55.0, - 0.0 - ], - [ - 60.0, - 0.0 - ], - [ - 65.0, - 0.0 - ], - [ - 70.0, - 0.0 - ], - [ - 75.0, - 0.0 - ], - [ - 80.0, - 0.0 - ], - [ - 85.0, - 0.0 - ], - [ - 90.0, - 0.0 - ], - [ - 95.0, - 0.0 - ], - [ - 100.0, - 0.0 - ], - [ - 105.0, - 0.0 - ], - [ - 110.0, - 0.0 - ], - [ - 115.0, - 0.0 - ], - [ - 120.0, - 0.0 - ], - [ - 125.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835170393421313, - 3.1873883871783186, - 3.5232399304115853, - 4.030819746532886, - 4.62040761388765, - 5.551443342893337, - 6.823734315007371, - 8.088484615210456, - 10.151828055850618, - 11.607422464180203, - 12.74551973706557, - 14.486869383953303, - 15.801421647321236, - 19.076126171558055, - 22.234909140887403, - 23.165052852397746, - 24.014083468146467, - 24.85375967327871, - 25.508849022953584, - 26.073583027118985, - 26.559824142498194, - 26.96579885983915, - 27.26911934221851, - 27.614521704929764, - 27.85135035025999, - 27.968303034431422, - 28.159611044541748 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.481384749141308, - 1.8198213217004335, - 2.1114679242247227, - 2.4511928331997788, - 2.788420412937566, - 3.0450399537291557, - 3.388783930019056, - 3.618999574062581, - 3.8045223323541233, - 4.106257091534953, - 4.349917061614497, - 5.04538776867076, - 5.87693410968033, - 6.1636237097452105, - 6.4524782903903235, - 6.7690640234497295, - 7.045671282354786, - 7.308152513938637, - 7.559579988412103, - 7.793336215411448, - 7.985121399955396, - 8.228747660071749, - 8.417006719091983, - 8.519596442347417, - 8.709282057731489 - ], - "5._384._0.0875": [ - 3.4934674957336784, - 4.02539344825342, - 4.64585803409726, - 5.629783783120462, - 6.764098589237183, - 8.523269858446136, - 10.860853882113345, - 13.10896117617859, - 16.60669584040968, - 18.957103258281542, - 20.72748204852442, - 23.315107446953288, - 25.177857430125357, - 29.485470022045188, - 33.23935048462212, - 34.277698765829676, - 35.2051356968036, - 36.10385330670727, - 36.79386220087496, - 37.382449203391765, - 37.885303461874834, - 38.30300043300665, - 38.61405424256533, - 38.96790387008743, - 39.20971207833941, - 39.32866641761304, - 39.52245105710482 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125418, - 2.162243131656476, - 2.5060808692303502, - 2.8001352676174576, - 3.1433909992753186, - 3.5135848430700425, - 3.8625499023776078, - 4.452640199855078, - 4.889055203052394, - 5.243785663371583, - 5.81564054649845, - 6.2713985968998145, - 7.534703363636782, - 8.96958762820137, - 9.446491163213379, - 9.914308786008066, - 10.412628015875795, - 10.834196653426119, - 11.222432554023689, - 11.581657694087056, - 11.903408466970498, - 12.158323976828193, - 12.467735800862195, - 12.69474541195319, - 12.81294250862731, - 13.017173814013772 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235641506533, - 2.8519160592323156, - 3.200396664368657, - 3.5254392452174708, - 4.0073142869130915, - 4.671044111678564, - 5.342853621596416, - 6.470975403126834, - 7.291809873751646, - 7.949706987977282, - 8.98983321948766, - 9.80144498143959, - 11.95410391571966, - 14.235420230971025, - 14.957272714369356, - 15.641691748220959, - 16.345553983552563, - 16.917579106470455, - 17.42637683063041, - 17.878567737632128, - 18.26692676482874, - 18.563227689775385, - 18.90716373243116, - 19.14734479345649, - 19.2675791823036, - 19.466591442511284 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_8": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351647217214677, - 3.186933876044517, - 3.519285736505398, - 4.011818497662372, - 4.570894108303604, - 5.426728791536699, - 6.54283296440728, - 7.591620694148268, - 9.17287427882817, - 10.194107684929786, - 10.941523251610322, - 12.00638612842619, - 12.751640249349293, - 14.436094492467918, - 15.871970204591033, - 16.265984796584448, - 16.619382638898305, - 16.963296056123465, - 17.22962699562798, - 17.457181743403964, - 17.652877641644146, - 17.81643860401857, - 17.938371584706154, - 18.07752195433133, - 18.172508033742663, - 18.21911029705349, - 18.294558020175877 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615428, - 1.481384749141307, - 1.8198213217004344, - 2.1114679242247276, - 2.4511928331072417, - 2.788419107978398, - 3.0449595607775213, - 3.38694671903478, - 3.6131332285032456, - 3.793445501332113, - 4.083306271732066, - 4.314453820052616, - 4.959227826323579, - 5.698797092038951, - 5.945050639137389, - 6.187843159811322, - 6.447351967369248, - 6.667688198809891, - 6.870670508507129, - 7.058642033713825, - 7.226812270639648, - 7.359240903062616, - 7.518811155763976, - 7.633534711150006, - 7.691889342711376, - 7.78953283313596 - ], - "5._384._0.0875": [ - 3.4884136311046037, - 4.003063355715507, - 4.589320170805375, - 5.489201774443061, - 6.481812737411748, - 7.926527425106713, - 9.675279758487836, - 11.185093060011493, - 13.249766296660328, - 14.475431511368184, - 15.331419463282488, - 16.503586351457493, - 17.298532622656356, - 19.042952677600642, - 20.49631606502745, - 20.891580909268864, - 21.245886489210218, - 21.59029727570618, - 21.85701793916289, - 22.084788611103733, - 22.28076589101648, - 22.444673214799938, - 22.566859934104503, - 22.706408405934326, - 22.801623258318443, - 22.84829984392765, - 22.923796795536 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808687904506, - 2.800134103306287, - 3.143200050783419, - 3.510468107010462, - 3.8508963316091953, - 4.414438740817388, - 4.822188729027952, - 5.147920809779815, - 5.6617412665866, - 6.061172234912023, - 7.118222625355691, - 8.223977400646614, - 8.565926354152591, - 8.888368587760395, - 9.216982914172783, - 9.482070651932084, - 9.715283521502554, - 9.92114303118358, - 10.096861017270282, - 10.229732025255013, - 10.383086671728998, - 10.488908728979549, - 10.541255081907316, - 10.626567721596818 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.555323562310493, - 2.851913403363865, - 3.200096530994641, - 3.522392018642154, - 3.991314729739165, - 4.621427261157848, - 5.2418623011263055, - 6.243476466214302, - 6.940573200551681, - 7.479616008236281, - 8.295144787010088, - 8.900299636780371, - 10.376719238156289, - 11.74301450802422, - 12.132732242709551, - 12.486853442375677, - 12.835330841652922, - 13.10754000849982, - 13.341321271536831, - 13.543201038346496, - 13.71239405971962, - 13.838714322240936, - 13.982915022417407, - 14.08146763778019, - 14.129887734480553, - 14.208373458997382 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_9": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351656319927545, - 3.1870068219033163, - 3.519920275456365, - 4.014863864275213, - 4.578804079347618, - 5.446497302574992, - 6.5867638892224605, - 7.668210630295387, - 9.31948595678537, - 10.400751592603127, - 11.199460533416461, - 12.347208567557189, - 13.156859528019162, - 15.000946441179334, - 16.583279549015096, - 17.01857367752908, - 17.4089778114082, - 17.788893833730206, - 18.0829461087665, - 18.334181903923373, - 18.55012717027752, - 18.730511529439973, - 18.864972877443385, - 19.018358910344357, - 19.12307397596743, - 19.174464676721957, - 19.2577123592597 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833122094, - 2.7884193174162886, - 3.04497246334593, - 3.3872415704645307, - 3.6140745702022876, - 3.7952224531880465, - 4.086984505796733, - 4.320130426044472, - 4.9729318086172745, - 5.726847809033363, - 5.979358867048692, - 6.229217031584646, - 6.497391994910775, - 6.72617189207539, - 6.937966719710192, - 7.135171064256747, - 7.3126583934509215, - 7.4532752755923175, - 7.623914203819442, - 7.747637887561994, - 7.810998147346106, - 7.9178111669112 - ], - "5._384._0.0875": [ - 3.489223759869314, - 4.006639482911057, - 4.598343276007638, - 5.511446901966879, - 6.525963758174213, - 8.017847288010064, - 9.850905469534082, - 11.459298557513014, - 13.693400435541571, - 15.035278395984449, - 15.977598076151251, - 17.272541012503424, - 18.153014168043356, - 20.087039880660246, - 21.698451737439473, - 22.13661438713422, - 22.529104227366194, - 22.91042431111111, - 23.205490461365894, - 23.457425178969224, - 23.674073103378994, - 23.85517602846363, - 23.99017047005815, - 24.144303566541343, - 24.249479358635817, - 24.30105041601473, - 24.384501702015786 - ], - "5._48._0.075": [ - 1.526846324373141, - 1.8679037053125445, - 2.1622431316564743, - 2.5060808688610527, - 2.800134290171044, - 3.1432306967978354, - 3.510968279902779, - 3.8527654002068767, - 4.420548459229536, - 4.832854404892467, - 5.163173093427485, - 5.686094377701076, - 6.094284879986048, - 7.18264666289096, - 8.336585270179654, - 8.697625890919033, - 9.039982296550278, - 9.390985403061684, - 9.675748443344334, - 9.927540494293723, - 10.150785408708634, - 10.342080301255882, - 10.487197918838648, - 10.655135183964207, - 10.77134700075032, - 10.82895715943251, - 10.923049524254044 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235626058286, - 2.851913829614357, - 3.200144700434344, - 3.5228810369142374, - 3.9938798036542758, - 4.629352674794193, - 5.257913589969824, - 6.279213384934956, - 6.9952773092555445, - 7.552289038871843, - 8.401007319695614, - 9.035923080498607, - 10.603863876776305, - 12.079333118352304, - 12.504253880805331, - 12.891518221104416, - 13.273615481615817, - 13.572592520008799, - 13.829730304265892, - 14.051931208170306, - 14.238218102995257, - 14.377356608283858, - 14.536178758759824, - 14.64477430111061, - 14.698160519875215, - 14.784765590895411 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_10": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351991469769, - 3.1897534909045384, - 3.5462612127065505, - 4.165346312107027, - 5.002616329336359, - 6.470554507992012, - 8.571173310445168, - 10.65082372359197, - 13.905563753564394, - 16.071489070674993, - 17.684516279019636, - 20.014091404434257, - 21.66558600985996, - 25.423102269743364, - 28.633684825612843, - 29.514427826915952, - 30.30045824758507, - 31.0623256184991, - 31.648600086899247, - 32.148777787873556, - 32.5769929299841, - 32.93343246797113, - 33.198976834733706, - 33.50136861552825, - 33.70795368596633, - 33.80949652010646, - 33.974530352437924 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615422, - 1.4813847491413077, - 1.8198213217004353, - 2.1114679242247267, - 2.4511928336686477, - 2.7884270258106443, - 3.0454499053115835, - 3.3989047567863793, - 3.654887762132971, - 3.8782412065362943, - 4.274881577540001, - 4.621494849663018, - 5.696502493814167, - 7.055781734610631, - 7.527997342671619, - 8.000258200538303, - 8.511307146049397, - 8.94960365640068, - 9.356770526831879, - 9.736380136576985, - 10.07798774386081, - 10.348508748622342, - 10.675599750982503, - 10.912472275504095, - 11.034029278685303, - 11.239525434602365 - ], - "5._384._0.0875": [ - 3.5234313882275057, - 4.18621884622795, - 5.082828535054123, - 6.648539510592799, - 8.524672288795037, - 11.407014036342856, - 15.052051705930182, - 18.31371908314974, - 22.91322836951863, - 25.707205368568737, - 27.67810471640075, - 30.386095209426983, - 32.226928486167274, - 36.24259959767141, - 39.559600445103385, - 40.45769918609362, - 41.259258990121275, - 42.03557354772715, - 42.63380669065918, - 43.144213037543096, - 43.58202232326349, - 43.947207667040026, - 44.219398693423685, - 44.52993320177161, - 44.74199748090885, - 44.84610539171864, - 45.01497707169361 - ], - "5._48._0.075": [ - 1.5268463243731432, - 1.8679037053125407, - 2.1622431316564765, - 2.506080871459159, - 2.8001411676476406, - 3.1443713066571433, - 3.5313889767378863, - 3.940088503760774, - 4.7444982960048785, - 5.406355670159458, - 5.9696851789601215, - 6.903215173759388, - 7.656680527891103, - 9.722680603679587, - 11.955138820788742, - 12.659611735984495, - 13.327440806397332, - 14.012450060044808, - 14.567306504957273, - 15.057911845932214, - 15.491714460448948, - 15.862170885282818, - 16.14269238137118, - 16.46572995289578, - 16.688950295165203, - 16.79976400390867, - 16.9813285308534 - ], - "5._96._0.075": [ - 2.2092718103274116, - 2.5553235734741278, - 2.8519295197148, - 3.2019465798473306, - 3.5427882589935717, - 4.118194248576405, - 5.05407889856666, - 6.105211761938466, - 7.958297064223382, - 9.316513763584762, - 10.392361400931774, - 12.051416521178915, - 13.303983720198387, - 16.4144548178818, - 19.355442379883744, - 20.20550552660126, - 20.97775910486863, - 21.73795713551596, - 22.329783919789033, - 22.83792190039124, - 23.274953317284055, - 23.639637381018275, - 23.911551627956943, - 24.220802859709742, - 24.43222119458885, - 24.536319181072194, - 24.705808136247086 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_11": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ], - [ - 5.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835199742965203, - 3.189801867070939, - 3.5467072607715213, - 4.167784651192716, - 5.009809733973495, - 6.491107819068051, - 8.621774801797184, - 10.744017555211947, - 14.092631245058312, - 16.34105996802032, - 18.02631119754084, - 20.47622533839053, - 22.224645367845195, - 26.232010019699533, - 29.681563384954295, - 30.630810317116495, - 31.478129292940125, - 32.29947865611202, - 32.93117593435185, - 33.47009948083765, - 33.93121062266946, - 34.31479616028715, - 34.60053280242791, - 34.925785609739386, - 35.14802021336619, - 35.25729344082422, - 35.43501749719455 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615408, - 1.4813847491413077, - 1.8198213217004344, - 2.1114679242247263, - 2.4511928336783733, - 2.7884271629081727, - 3.0454583771765567, - 3.399106007531155, - 3.6555680455287143, - 3.8795950167329134, - 4.2779261427071615, - 4.626481387733931, - 5.710247422118949, - 7.086845258955859, - 7.566887565362279, - 8.048101099377584, - 8.570214671830778, - 9.019342168461808, - 9.437823268830705, - 9.829302985028262, - 10.182926094205476, - 10.464073384001406, - 10.805677549049651, - 11.054666586161792, - 11.183187822233911, - 11.402018941499165 - ], - "5._384._0.0875": [ - 3.524009042329743, - 4.189136655289777, - 5.091186658957902, - 6.672030665200386, - 8.575509917495884, - 11.519907853799706, - 15.279263952281198, - 18.679560357979373, - 23.532453685410527, - 26.51156381587673, - 28.624948565354412, - 31.540447153905365, - 33.52869726506723, - 37.8732165409921, - 41.464006016443335, - 42.436168421428995, - 43.30323042001106, - 44.1424895986598, - 44.78863758276456, - 45.33982134349292, - 45.812309475099724, - 46.20619614128068, - 46.499754648970274, - 46.83457219738619, - 47.0632428692688, - 47.17553005028697, - 47.35776439441371 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125405, - 2.162243131656477, - 2.5060808715053726, - 2.800141289967739, - 3.144391495609368, - 3.5317369620531176, - 3.9415137110641045, - 4.749882882923018, - 5.416551219068939, - 5.985049259102155, - 6.929411774602361, - 7.693716056715292, - 9.799927685965667, - 12.095151920259088, - 12.824807669314163, - 13.519104789828258, - 14.234204310945772, - 14.815934314190464, - 15.332346316648877, - 15.790690171849619, - 16.18348283532243, - 16.48184626229431, - 16.826383805464705, - 17.06518052749808, - 17.184012201220362, - 17.37920422253316 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.5553235736674367, - 2.8519297987563554, - 3.2019784045834627, - 3.5431278813854825, - 4.1202109331185275, - 5.06130345683903, - 6.1214402707612825, - 7.998545482656954, - 9.381051132025013, - 10.480357397289968, - 12.183368116280931, - 13.475758497471716, - 16.711019044361535, - 19.80859949121743, - 20.711660213537222, - 21.534465542185675, - 22.346673537629567, - 22.980206185534886, - 23.52504132257942, - 23.994038663231287, - 24.385586413273945, - 24.6776721195698, - 25.009867038941014, - 25.237093977484427, - 25.34905679523205, - 25.531538851685934 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_12": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ], - [ - 5.0, - 50.0 - ], - [ - 5.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352002396223046, - 3.189842180590413, - 3.54707897903254, - 4.1698172982584065, - 5.015811793417501, - 6.508298918306948, - 8.664280447778166, - 10.822651891202582, - 14.251740634138335, - 16.571623927608666, - 18.320064509168986, - 20.876685062126285, - 22.7124018190964, - 26.94972088721287, - 30.62529366865215, - 31.64020748372183, - 32.54648103713905, - 33.42519948976322, - 34.100746411911196, - 34.67711025187851, - 35.17000256638202, - 35.57980077139165, - 35.885036114706075, - 36.23235314938975, - 36.469699760603625, - 36.58644475431739, - 36.77645474750113 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.195803175961541, - 1.4813847491413077, - 1.819821321700434, - 2.111467924224724, - 2.4511928336864712, - 2.788427277156116, - 3.045465437064551, - 3.39927371774131, - 3.656134971701408, - 3.880723310253186, - 4.280464154308078, - 4.630639640820035, - 5.721731745464834, - 7.112884573969467, - 7.599522106085801, - 8.088299625964137, - 8.61979028366504, - 9.078126780082867, - 9.506259045994017, - 9.907903391036394, - 10.27186490796404, - 10.562207317834803, - 10.916483827278359, - 11.176214294723227, - 11.311010977083873, - 11.542148590287328 - ], - "5._384._0.0875": [ - 3.5244905654552388, - 4.191569482088172, - 5.098162548399366, - 6.691689503517511, - 8.618212277018115, - 11.61536359909829, - 15.473036401120062, - 18.99419034538388, - 24.073313037078066, - 27.222029290226015, - 29.4680457754824, - 32.57937811345392, - 34.7084199285761, - 39.37012510298696, - 43.22691398925782, - 44.27118979992794, - 45.201984544061226, - 46.10244691921389, - 46.79511162070511, - 47.385871464605515, - 47.89197555882731, - 48.313651990898826, - 48.62789532940837, - 48.98620617794586, - 49.2309462433432, - 49.35115207636218, - 49.546337780603714 - ], - "5._48._0.075": [ - 1.5268463243731447, - 1.8679037053125414, - 2.162243131656477, - 2.506080871543882, - 2.800141391901159, - 3.144408319741254, - 3.5320269557530333, - 3.942701576526373, - 4.754374195041566, - 5.425062087847098, - 5.997884824484694, - 6.951335341185521, - 7.724757703110086, - 9.865041623392917, - 12.21396361523975, - 12.965315912041714, - 13.682562919409003, - 14.423939663252604, - 15.029370476934474, - 15.568755557595702, - 16.049187333687584, - 16.46231770448756, - 16.777107630608086, - 17.141677562392015, - 17.395177228837536, - 17.521649342752642, - 17.729952404573474 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.5553235738285274, - 2.851930031290988, - 3.2020049252113947, - 3.543410905779109, - 4.121891946554401, - 5.067331738149123, - 6.135002690545728, - 8.032308052383982, - 9.435335227659287, - 10.554543787522325, - 12.295077927066899, - 13.621659883163575, - 16.96540341198735, - 20.202505278563127, - 21.15390758361545, - 22.023261617391803, - 22.883846452111953, - 23.55652467849364, - 24.136058769129466, - 24.635458815450253, - 25.052674567987022, - 25.36410064770449, - 25.71834852002395, - 25.960812722049013, - 26.080375786866888, - 26.27545163153375 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_14": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 65.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ], - [ - 5.0, - 50.0 - ], - [ - 5.0, - 55.0 - ], - [ - 5.0, - 60.0 - ], - [ - 5.0, - 65.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352010200838147, - 3.1899055304939035, - 3.5476631289254206, - 4.173012740213884, - 5.025257500732775, - 6.535430448421685, - 8.731702708020274, - 10.94804021058728, - 14.507908112108485, - 16.94521880685443, - 18.798643787706418, - 21.535233439744765, - 23.520921191886735, - 28.16441638092275, - 32.25500567552028, - 33.39306216422044, - 34.41055450898533, - 35.39802691369615, - 36.15689403138563, - 36.804542308906804, - 37.35796328068206, - 37.81767141605935, - 38.16004226986927, - 38.549358899052486, - 38.81549743311725, - 38.9464986496815, - 39.16000872547332 - ], - "5._24._0.075": [ - 0.8740059532267972, - 1.195803175961542, - 1.4813847491413068, - 1.819821321700434, - 2.1114679242247245, - 2.4511928336992033, - 2.7884274566885985, - 3.045476531175191, - 3.399537264664532, - 3.657025898562647, - 3.8824965603286987, - 4.2844540639217055, - 4.637179192831405, - 5.739834242427371, - 7.154087049352276, - 7.651224188799972, - 8.152080854465247, - 8.69860007933182, - 9.171752024351754, - 9.615470253797856, - 10.033601013878384, - 10.41441454343363, - 10.719829370778353, - 11.095065801488643, - 11.372852861827866, - 11.518405946213266, - 11.771324960527853 - ], - "5._384._0.0875": [ - 3.5252475105777656, - 4.195394920570193, - 5.109144511307937, - 6.722735100540504, - 8.685943356319221, - 11.767952834986632, - 15.786026725127922, - 19.507303872818106, - 24.971137300800955, - 28.417591303679682, - 30.90140500487607, - 34.37081614231891, - 36.76193620263044, - 42.02367662661513, - 46.390236575951555, - 47.57330398167349, - 48.626687397265314, - 49.64479439578831, - 50.42669064050051, - 51.09334161042843, - 51.66379861052378, - 52.13858916125286, - 52.49235634277888, - 52.89551958094843, - 53.17094775707232, - 53.306287128932034, - 53.52626558012392 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.867903705312544, - 2.162243131656476, - 2.506080871604398, - 2.8001415520822306, - 3.144434757672044, - 3.5324826710439763, - 3.94456857626816, - 4.761439614625184, - 5.438463139952625, - 6.018114247665053, - 6.985958512058199, - 7.77386809593864, - 9.968748912830435, - 12.404722213723828, - 13.19149971363113, - 13.946478716158985, - 14.731387517404881, - 15.376505111900116, - 15.954762063001494, - 16.473067157843897, - 16.92158992659705, - 17.26539321232327, - 17.665952547177874, - 17.9463936565027, - 18.087076528263513, - 18.320147416417996 - ], - "5._96._0.075": [ - 2.209271810327409, - 2.5553235740816707, - 2.851930396702549, - 3.2020466005104686, - 3.543855668929185, - 4.124534353010243, - 5.076819132476015, - 6.156386344177028, - 8.085775619011201, - 9.521574903323264, - 10.672721399932554, - 12.47391490818078, - 13.856136417586772, - 17.378940208927123, - 20.852524229107974, - 21.88828154896148, - 22.839881241846708, - 23.787136257224795, - 24.530898125544514, - 25.174150201224023, - 25.729911568886266, - 26.195086943650978, - 26.542871013081605, - 26.93877494525698, - 27.21016280337114, - 27.34421450333225, - 27.56341388596575 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_15": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 65.0 - ], - [ - 0.0, - 70.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ], - [ - 5.0, - 50.0 - ], - [ - 5.0, - 55.0 - ], - [ - 5.0, - 60.0 - ], - [ - 5.0, - 65.0 - ], - [ - 5.0, - 70.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352013322685434, - 3.189930870485119, - 3.5478967961368797, - 4.174291355982785, - 5.029040546822261, - 6.546323259050281, - 8.75888857526571, - 10.998828219354516, - 14.612539354413904, - 17.09864870073849, - 18.996077981758557, - 21.809010862271354, - 23.85927563848103, - 28.68197284399027, - 32.96258773265809, - 34.15827970666526, - 35.228172735303396, - 36.26717524634053, - 37.06565053259994, - 37.747273322147144, - 38.329569184997425, - 38.813092124479326, - 39.173190753916394, - 39.582552019187965, - 39.862445974219455, - 40.000268724115266, - 40.22505201688486 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615433, - 1.481384749141307, - 1.8198213217004335, - 2.1114679242247254, - 2.451192833704296, - 2.788427528501591, - 3.0454809688197715, - 3.399642684223431, - 3.6573822839803634, - 3.8832059347616106, - 4.286050577388845, - 4.639796778374605, - 5.7470943634159015, - 7.1706657951019634, - 7.672049694151753, - 8.177804886959905, - 8.730437500080908, - 9.209635730957803, - 9.659735448759575, - 10.084641041344229, - 10.47240731136186, - 10.784066410186632, - 11.168041993517308, - 11.45344616368607, - 11.60360798751532, - 11.866134153859944 - ], - "5._384._0.0875": [ - 3.5255503796720915, - 4.196925926365243, - 5.1135441014123435, - 6.7352060136911165, - 8.713252594427878, - 11.829890734494345, - 15.914233467323026, - 19.71921819079604, - 25.34737688114094, - 28.92446904507142, - 31.514622961157208, - 35.14721032885701, - 37.65991009479262, - 43.20486760297167, - 47.815671415748255, - 49.06558853372572, - 50.17800860007091, - 51.25275232284675, - 52.077530496090596, - 52.78064291095734, - 53.38196954121695, - 53.88220013248199, - 54.254893224879645, - 54.67951669941554, - 54.96963264724299, - 55.112220564147805, - 55.34409383688387 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125422, - 2.1622431316564765, - 2.506080871628597, - 2.8001416161546704, - 3.144445332847532, - 3.5326649608924923, - 3.9453154973339752, - 4.7642684008969605, - 5.443832758175643, - 6.026226342742068, - 6.999866858925323, - 7.793626123171431, - 10.010712913842521, - 12.482451303008988, - 13.283866237086407, - 14.054522698161808, - 14.857626555274472, - 15.519466978795673, - 16.11423575754629, - 16.64880467083016, - 17.11272162658789, - 17.46931468203843, - 17.885998124421178, - 18.17875315856271, - 18.326033888529754, - 18.570799073073765 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.5553235741829274, - 2.8519305428671795, - 3.2020632706392016, - 3.5440335777934204, - 4.12559159421023, - 5.0806190188553835, - 6.164964276967722, - 8.10730483097837, - 9.55639474902032, - 10.72054734008956, - 12.5465994461793, - 13.951751010255329, - 17.549253975723822, - 21.123495715279354, - 22.196048748953814, - 23.18392845026459, - 24.169909268324297, - 24.94586137605532, - 25.618295420167193, - 26.20013205984512, - 26.687690176007177, - 27.052561698864917, - 27.4681576998614, - 27.753297469145988, - 27.894270438332697, - 28.12505350513997 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_16": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 65.0 - ], - [ - 0.0, - 70.0 - ], - [ - 0.0, - 75.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ], - [ - 5.0, - 50.0 - ], - [ - 5.0, - 55.0 - ], - [ - 5.0, - 60.0 - ], - [ - 5.0, - 65.0 - ], - [ - 5.0, - 70.0 - ], - [ - 5.0, - 75.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835201605430227, - 3.1899530429914433, - 3.5481012583474194, - 4.175410350620747, - 5.032352947467394, - 6.555873383164447, - 8.782778789919368, - 11.043568324629152, - 14.705131056113126, - 17.23482768618569, - 19.171735997970387, - 22.053583650272476, - 24.162584096980723, - 29.15045691299291, - 33.61018173911657, - 34.860994822208795, - 35.981233657891714, - 37.06995084562557, - 37.906741967502434, - 38.62129897064203, - 39.231613599196216, - 39.73825637534639, - 40.115573578200916, - 40.54440403481415, - 40.83766882895398, - 40.98212957937605, - 41.217901438212515 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.4813847491413081, - 1.8198213217004324, - 2.1114679242247236, - 2.451192833708749, - 2.788427591337959, - 3.045484851758927, - 3.3997349267075827, - 3.6576941280990285, - 3.883826672268031, - 4.287447784358506, - 4.642087993277021, - 5.753455956806287, - 7.185218312094895, - 7.690340314768808, - 8.20041341418194, - 8.75844370591497, - 9.242989692473808, - 9.698743577565681, - 10.129663666829654, - 10.52361538497026, - 10.840841044022484, - 11.232630487416385, - 11.524880097160374, - 11.679214888401168, - 11.950580958518422 - ], - "5._384._0.0875": [ - 3.52581543282321, - 4.198265945901948, - 5.117396937215473, - 6.746142862163244, - 8.737250662973482, - 11.884516213940126, - 16.027866814221436, - 19.907894333993433, - 25.68493544949115, - 29.382073186423778, - 32.07100477803156, - 35.856904783787265, - 38.48513375291481, - 44.302393258553444, - 49.15061412887461, - 50.46577885195908, - 51.63583200928826, - 52.76586600027737, - 53.63246565629438, - 54.37113398896956, - 55.002535364127766, - 55.52752804564284, - 55.91863986238979, - 56.36413804509573, - 56.66854416843634, - 56.81818795303488, - 57.0616525990023 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125416, - 2.1622431316564787, - 2.5060808716497824, - 2.8001416722180466, - 3.144454586127559, - 3.532824466259407, - 3.9459691100715193, - 4.766744817365787, - 5.448535491706804, - 6.033333973631099, - 7.012064463505546, - 7.81096806132483, - 10.047659783990632, - 12.551147314023844, - 13.365595123894279, - 14.150251183211816, - 14.96965223492637, - 15.646529349847683, - 16.25620273242059, - 16.805533252827576, - 17.283518001162072, - 17.651886649995355, - 18.08355877044326, - 18.387906519636623, - 18.541463892140253, - 18.79748428445383 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.555323574271527, - 2.8519306707612295, - 3.2020778570061146, - 3.5441892497390945, - 4.126516810893802, - 5.083946232648775, - 6.172481470562311, - 8.126210010483101, - 9.587015453929912, - 10.76265828388434, - 12.610746604222886, - 14.036286710647804, - 17.700660812153266, - 21.36589577976528, - 22.47213613775176, - 23.49344187329061, - 24.515367935143534, - 25.321449869875796, - 26.021393867075368, - 26.627978931445025, - 27.136910363836222, - 27.51818121572214, - 27.95276029377461, - 28.251214156648615, - 28.39891079197108, - 28.640988030657343 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_17": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 65.0 - ], - [ - 0.0, - 70.0 - ], - [ - 0.0, - 75.0 - ], - [ - 0.0, - 80.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ], - [ - 5.0, - 50.0 - ], - [ - 5.0, - 55.0 - ], - [ - 5.0, - 60.0 - ], - [ - 5.0, - 65.0 - ], - [ - 5.0, - 70.0 - ], - [ - 5.0, - 75.0 - ], - [ - 5.0, - 80.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835201846455302, - 3.1899726069784435, - 3.5482816688159917, - 4.176397858405252, - 5.035277387696189, - 6.564314657661088, - 8.803938316383382, - 11.08327979597285, - 14.78764685049213, - 17.35650734611131, - 19.32902434144303, - 22.27336075432403, - 24.435953828927353, - 29.576291363404586, - 34.20478785121655, - 35.50829294762541, - 36.67688389530612, - 37.81355528977075, - 38.687417777740066, - 39.43391340048111, - 40.071434483969306, - 40.60054298029896, - 40.994601654957506, - 41.44236484066223, - 41.74864292289229, - 41.89957142591264, - 42.14606837755359 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615428, - 1.4813847491413072, - 1.8198213217004329, - 2.1114679242247245, - 2.4511928337126805, - 2.7884276467818063, - 3.045488277881821, - 3.399816317421668, - 3.6579692900055463, - 3.884374408866304, - 4.288680813790297, - 4.644110295064712, - 5.7590761048397825, - 7.198094648634915, - 7.706532269475185, - 8.220440019204636, - 8.783270850165456, - 9.272580277787057, - 9.733378342968127, - 10.16967337821606, - 10.569163054441354, - 10.891381350160534, - 11.290196205319715, - 11.588624039596354, - 11.746747042472443, - 12.026250205652978 - ], - "5._384._0.0875": [ - 3.5260493363493777, - 4.199448618052139, - 5.120798976384402, - 6.755812295375743, - 8.758505269884841, - 11.93305161673836, - 16.129276293799528, - 20.076956359664972, - 25.98943308683796, - 29.797083294691312, - 32.57782606950433, - 36.507743862791585, - 39.24567795268489, - 45.32457129084727, - 50.4035580680982, - 51.78242846391278, - 53.00877575064312, - 54.19282438022843, - 55.10024673503052, - 55.87361984508507, - 56.534350772523766, - 57.08347115515284, - 57.49252727295247, - 57.95835285926516, - 58.276677688441325, - 58.43319741197209, - 58.68797022898703 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564783, - 2.5060808716684715, - 2.8001417216857334, - 3.1444627507875644, - 3.5329652076450486, - 3.9465458712248633, - 4.768930843410474, - 5.452688311937375, - 6.039612822327427, - 7.022848654866394, - 7.826311501582485, - 10.080438330352193, - 12.612297723460896, - 13.438422722529982, - 14.23565416107178, - 15.069733021615587, - 15.760195674150214, - 16.383377592230215, - 16.946147362195017, - 17.437013543806092, - 17.816235326115187, - 18.261842802889614, - 18.5770995998889, - 18.736624873466262, - 19.00347484589308 - ], - "5._96._0.075": [ - 2.2092718103274103, - 2.5553235743497025, - 2.851930783608917, - 3.2020907273331662, - 3.544326608647739, - 4.127333279822889, - 5.0868838038296404, - 6.179123218594112, - 8.142943296238633, - 9.614153274126263, - 10.800020527920088, - 12.6677763219132, - 14.111562188554249, - 17.83614544086916, - 21.583977233808106, - 22.721118679591232, - 23.773258598585592, - 24.828563974538273, - 25.662846587791712, - 26.388715139045086, - 27.01877955380572, - 27.5481141479437, - 27.94512242229719, - 28.398005766783264, - 28.709357747012774, - 28.86359133664205, - 29.116691169770814 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_18": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 65.0 - ], - [ - 0.0, - 70.0 - ], - [ - 0.0, - 75.0 - ], - [ - 0.0, - 80.0 - ], - [ - 0.0, - 85.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ], - [ - 5.0, - 50.0 - ], - [ - 5.0, - 55.0 - ], - [ - 5.0, - 60.0 - ], - [ - 5.0, - 65.0 - ], - [ - 5.0, - 70.0 - ], - [ - 5.0, - 75.0 - ], - [ - 5.0, - 80.0 - ], - [ - 5.0, - 85.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835202060699834, - 3.1899899971976353, - 3.548442035751396, - 4.177275768714856, - 5.037878255511087, - 6.57182960130087, - 8.82280997910934, - 11.118765106615607, - 14.861645600789473, - 17.46588409453256, - 19.47067646161018, - 22.4719165108488, - 24.68356670432791, - 29.9648715713144, - 34.75238393013055, - 36.10623959754885, - 37.321249977546216, - 38.50416675528362, - 39.41389891363579, - 40.19137677482895, - 40.855330201125156, - 41.40628595529109, - 41.81663718903847, - 42.282831022978, - 42.60178872654317, - 42.75902647543182, - 43.01600376801937 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.195803175961542, - 1.4813847491413084, - 1.8198213217004344, - 2.1114679242247245, - 2.4511928337161795, - 2.7884276960652374, - 3.0454913233244967, - 3.3998886649488713, - 3.658213882562811, - 3.884861307119581, - 4.289776997181166, - 4.645908401708438, - 5.764077291293349, - 7.209568616240353, - 7.7209671271505105, - 8.23830303648798, - 8.80543105005237, - 9.299010251704193, - 9.764335953512004, - 10.20546295262792, - 10.609939326771718, - 10.936660245320084, - 11.341824267647064, - 11.645851881633893, - 11.807423726897333, - 12.094422795576879 - ], - "5._384._0.0875": [ - 3.526257276650006, - 4.200500119917819, - 5.123824963125083, - 6.764422551061731, - 8.77746137435855, - 11.976461315592928, - 16.22033225474752, - 20.229311443571724, - 26.265474492183493, - 30.175066641198566, - 33.04122495681791, - 37.10644114895142, - 39.9485016465147, - 46.27863288516858, - 51.58189628077384, - 53.02298347384298, - 54.30434293639775, - 55.54119334053803, - 56.48849462803322, - 57.295770057847896, - 57.98512997273697, - 58.55778287405837, - 58.98433837622122, - 59.46997851840003, - 59.80187414368709, - 59.965101377580304, - 60.230917428321426 - ], - "5._48._0.075": [ - 1.5268463243731378, - 1.8679037053125447, - 2.162243131656481, - 2.506080871685079, - 2.800141765657014, - 3.1444700082640185, - 3.5330903121661894, - 3.9470585824626783, - 4.770874727829162, - 5.456382345912045, - 6.045199859378088, - 7.032451637386005, - 7.839983052706887, - 10.10971614992085, - 12.667080515921379, - 13.503727219598218, - 14.312315354604507, - 15.159680422747796, - 15.862473314621774, - 16.497947412486855, - 17.072991454484338, - 17.57567917288179, - 17.964917232650006, - 18.423486260253387, - 18.749005893413358, - 18.914202732303615, - 19.191469176000158 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.5553235744191958, - 2.8519308839179747, - 3.202102167626491, - 3.5444487064860666, - 4.1280591096933135, - 5.089496391344708, - 6.185034033269123, - 8.157858601541896, - 9.638370360616092, - 10.833394212667864, - 12.71881034734174, - 14.179018972873672, - 17.95809497255998, - 21.7812054700895, - 22.946752874484517, - 24.027378580373938, - 25.11370378330145, - 25.97438722779366, - 26.724682101758145, - 27.37701485966383, - 27.925820853879806, - 28.337929096476643, - 28.808464572089612, - 29.132317597280927, - 29.292910796273016, - 29.556777062262263 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_19": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 65.0 - ], - [ - 0.0, - 70.0 - ], - [ - 0.0, - 75.0 - ], - [ - 0.0, - 80.0 - ], - [ - 0.0, - 85.0 - ], - [ - 0.0, - 90.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ], - [ - 5.0, - 50.0 - ], - [ - 5.0, - 55.0 - ], - [ - 5.0, - 60.0 - ], - [ - 5.0, - 65.0 - ], - [ - 5.0, - 70.0 - ], - [ - 5.0, - 75.0 - ], - [ - 5.0, - 80.0 - ], - [ - 5.0, - 85.0 - ], - [ - 5.0, - 90.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352022523923535, - 3.19000555687425, - 3.5485855236117585, - 4.178061367639416, - 5.040206437649483, - 6.578562760075657, - 8.839745773805387, - 11.15066464887152, - 14.92838056220315, - 17.564732379862456, - 19.598910276836012, - 22.6521752097251, - 24.90887347896897, - 30.320755973915674, - 35.25810676632628, - 36.6600610902497, - 37.919619685578645, - 39.147122623238324, - 40.09156169908482, - 40.899100220939296, - 41.58874541339774, - 42.1609612245348, - 42.58718096041409, - 43.07133380544489, - 43.40265865814589, - 43.566057567255136, - 43.8332870699292 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615426, - 1.4813847491413075, - 1.819821321700433, - 2.1114679242247223, - 2.451192833719306, - 2.788427740160931, - 3.0454940481943296, - 3.399953397127015, - 3.6584327318825354, - 3.885296969899943, - 4.290757918293374, - 4.647517636969432, - 5.768556429898698, - 7.219857471346091, - 7.733916154744024, - 8.254335069285924, - 8.825332051894332, - 9.322760210077778, - 9.792172330647444, - 10.237666424264695, - 10.64665637303462, - 10.977458348009526, - 11.388387699173855, - 11.697511802741365, - 11.862233103722845, - 12.156144967674201 - ], - "5._384._0.0875": [ - 3.5264433492880074, - 4.20144112708512, - 5.12653398323379, - 6.7721386187540356, - 8.794472657605299, - 12.015516335973343, - 16.302542217345177, - 20.367318584705565, - 26.516860216591525, - 30.520690566664104, - 33.46640661661961, - 37.65877102456574, - 40.599636827257854, - 47.1709048711102, - 52.69210759232937, - 54.19396991758214, - 55.529110145144486, - 56.81760526876093, - 57.80389096760289, - 58.644309986867974, - 59.36163854290172, - 59.9572641917249, - 60.400900831052475, - 60.905873855367794, - 61.25101368865115, - 61.42079041508131, - 61.697401297568504 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312544, - 2.162243131656483, - 2.5060808716999428, - 2.8001418049997335, - 3.1444765017963188, - 3.5332022486417975, - 3.9475173517469444, - 4.772614591549732, - 5.459689640390155, - 6.050203449519789, - 7.041057394717512, - 7.852241837338804, - 10.136025528067247, - 12.716440699317683, - 13.562616421318346, - 14.381510664197029, - 15.240957925359602, - 15.954989360867858, - 16.60169189227084, - 17.18798211943497, - 17.701544662036582, - 18.100041137042748, - 18.57067399243466, - 18.905847371977092, - 19.076431854234354, - 19.36371362071867 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.555323574481373, - 2.8519309736681797, - 3.202112403680485, - 3.54455795274259, - 4.128708600019108, - 5.091835097694025, - 6.190328279544215, - 8.171236912201028, - 9.660114082357246, - 10.863385501899193, - 12.76474657409809, - 14.239814338966243, - 18.068441205412867, - 21.96042689851408, - 23.152146118390927, - 24.259132775348192, - 25.374314045937528, - 26.259724083395014, - 27.0330337472743, - 27.706481987917407, - 28.273865498399115, - 28.70045950578394, - 29.188018993189, - 29.52399251708459, - 29.690776093444843, - 29.965165950409748 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351729237398393, - 3.187625001099388, - 3.526650044183149, - 4.058948328555595, - 4.695595826630846, - 5.645955947827803, - 6.75199902668803, - 7.654056125477437, - 8.8295373343034, - 9.505225082070822, - 9.970821690581543, - 10.604517453302051, - 11.032316935322866, - 11.972865896385606, - 12.759872798830232, - 12.974553793259052, - 13.167610267540615, - 13.355840260878113, - 13.502187407405124, - 13.627318928756589, - 13.735282746334141, - 13.825809741457272, - 13.893347166070974, - 13.970596790045226, - 14.023313509428306, - 14.049144330457892, - 14.090854715886588 - ], - "5._24._0.075": [ - 0.8740013793970963, - 1.1957934696806856, - 1.4813667488882372, - 1.8197853662506762, - 2.1114044341807157, - 2.4510705253864713, - 2.788187524831072, - 3.044696167323624, - 3.389301466509918, - 3.6238334445562486, - 3.8172234620513863, - 4.139359785435122, - 4.401879357678648, - 5.121352318381859, - 5.866280620300906, - 6.090065304640391, - 6.298807049848143, - 6.509232545774595, - 6.6778214753752865, - 6.825248855115401, - 6.955178640279667, - 7.066160722878991, - 7.150130631281159, - 7.247402603037865, - 7.314637831281445, - 7.347899492449007, - 7.402074061153792 - ], - "5._384._0.0875": [ - 3.498202657558257, - 4.059507710829742, - 4.728549908300283, - 5.718298478054254, - 6.695598384635395, - 7.918919559501185, - 9.175209287898596, - 10.134696989496492, - 11.3395882766406, - 12.019506670062515, - 12.48495026821673, - 13.115725677557018, - 13.540591400366639, - 14.474053667337763, - 15.255546352872228, - 15.468670821792806, - 15.660444883601343, - 15.847432011925115, - 15.992846228666961, - 16.117138946341278, - 16.22438283629357, - 16.31430880283502, - 16.381374505740233, - 16.45808138679694, - 16.51039562508549, - 16.536012812409567, - 16.577355525545745 - ], - "5._48._0.075": [ - 1.5268359332879173, - 1.8678839385147374, - 2.1622087383456443, - 2.506015111231376, - 2.800022215479672, - 3.143265912621415, - 3.5156496031342086, - 3.876810167448651, - 4.510598902563926, - 4.97292547403106, - 5.3314780742753, - 5.86690818888861, - 6.254410228495219, - 7.165237276197894, - 7.97067816717318, - 8.195759462193532, - 8.399726151723728, - 8.600223537255848, - 8.757233427901257, - 8.892268671966473, - 9.009391745097531, - 9.108052422862833, - 9.181950800737681, - 9.266735500969588, - 9.324840376214043, - 9.353415812152894, - 9.399728543565555 - ], - "5._96._0.075": [ - 2.209261920932471, - 2.555305553336681, - 2.8518866359196213, - 3.2004882339226746, - 3.5277476508021492, - 4.02978044724101, - 4.745286216946609, - 5.439130433328325, - 6.459200418166225, - 7.08807746324128, - 7.534287055485237, - 8.154677466719678, - 8.57963145524655, - 9.525731186489454, - 10.324498118789299, - 10.543323487480553, - 10.740258694731052, - 10.932543867544993, - 11.082214965494755, - 11.210350854440943, - 11.321010221886622, - 11.413873719757635, - 11.483221068226714, - 11.562584991721117, - 11.616811000251728, - 11.64341307682708, - 11.68642648116794 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_20": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 0.0, - 65.0 - ], - [ - 0.0, - 70.0 - ], - [ - 0.0, - 75.0 - ], - [ - 0.0, - 80.0 - ], - [ - 0.0, - 85.0 - ], - [ - 0.0, - 90.0 - ], - [ - 0.0, - 95.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ], - [ - 5.0, - 50.0 - ], - [ - 5.0, - 55.0 - ], - [ - 5.0, - 60.0 - ], - [ - 5.0, - 65.0 - ], - [ - 5.0, - 70.0 - ], - [ - 5.0, - 75.0 - ], - [ - 5.0, - 80.0 - ], - [ - 5.0, - 85.0 - ], - [ - 5.0, - 90.0 - ], - [ - 5.0, - 95.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352024249156385, - 3.1900195605886963, - 3.548714664022493, - 4.1787684876152635, - 5.042302682086068, - 6.584630093979505, - 8.855029017124851, - 11.179495678760015, - 14.988870732174055, - 17.65450132672627, - 19.715543835171367, - 22.816550175175298, - 25.11474280412505, - 30.64781633743519, - 35.72639486078876, - 37.17428667156419, - 38.47658443403769, - 39.747062748117905, - 40.725082083121244, - 41.56179096715348, - 42.27641701480397, - 42.86933322340247, - 43.31101940659542, - 43.81268667957311, - 44.156085090989656, - 44.32550636028518, - 44.60277475675237 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961541, - 1.4813847491413068, - 1.819821321700433, - 2.1114679242247245, - 2.4511928337221214, - 2.7884277798470625, - 3.0454965005772374, - 3.4000116562328095, - 3.6586296989733604, - 3.885689080109618, - 4.291640848601012, - 4.648966274182615, - 5.7725912058807305, - 7.229135799301715, - 7.745597517663005, - 8.268803878263052, - 8.843302526419494, - 9.34421803201584, - 9.817336740021041, - 10.266796911932282, - 10.679891397017379, - 11.0144091984667, - 11.430596594983319, - 11.744377448317444, - 11.911983786334567, - 12.212279403790365 - ], - "5._384._0.0875": [ - 3.52661083145288, - 4.2022881867611686, - 5.128973360425757, - 6.779092912880758, - 8.80982378451993, - 12.050840485874518, - 16.3771347730144, - 20.492912195970003, - 26.74674955182948, - 30.83788998938396, - 33.85780650830196, - 38.16972239652327, - 41.20433636583176, - 48.00695397697509, - 53.739903906477544, - 55.30114211570355, - 56.68887672400879, - 58.02790929683504, - 59.05232909062495, - 59.925172368833785, - 60.669845579047625, - 61.287916289157565, - 61.74824000325579, - 62.27209253399691, - 62.63016934665649, - 62.80634700297716, - 63.09351933319999 - ], - "5._48._0.075": [ - 1.526846324373144, - 1.8679037053125487, - 2.1622431316564796, - 2.5060808717133214, - 2.8001418404081853, - 3.144482345975965, - 3.5333029921573815, - 3.947930266431675, - 4.774180952541709, - 5.462667907219772, - 6.054710448759875, - 7.048813588657112, - 7.863296064981113, - 10.159796061385041, - 12.761145168598654, - 13.615990925532394, - 14.444279396909947, - 15.314760469801133, - 16.039075934305302, - 16.69607274654622, - 17.292699702644896, - 17.816290978902725, - 18.223360235175036, - 18.705231230149288, - 19.04948577065328, - 19.225186409260942, - 19.52209401886293 - ], - "5._96._0.075": [ - 2.2092718103274196, - 2.555323574537322, - 2.8519310544433654, - 3.202121616130755, - 3.544656275037424, - 4.129293192674264, - 5.093940844791635, - 6.1950976467339745, - 8.183304149406414, - 9.679744894898722, - 10.890483681449624, - 12.806312204648108, - 14.294888042256245, - 18.16876447706913, - 22.12399747887236, - 23.339886999410982, - 24.47131326462637, - 25.613370231264, - 26.521953212051674, - 27.31695141495086, - 28.010420160276546, - 28.595524821613136, - 29.03601282791452, - 29.539990227619764, - 29.88771830769227, - 30.06053010807043, - 30.345212280231845 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835189313206151, - 3.1889552931299114, - 3.538903600312914, - 4.125245273292659, - 4.885340092341224, - 6.143016730599865, - 7.795423613565886, - 9.27950543596083, - 11.353436747367905, - 12.596840822504834, - 13.468067160431177, - 14.664470966131761, - 15.476574467940123, - 17.259801418963622, - 18.744684236603973, - 19.148663438954305, - 19.510655248879416, - 19.862646518364635, - 20.135320763803648, - 20.368260758547958, - 20.56874655291972, - 20.73647327867843, - 20.86155289126196, - 21.004430911305807, - 21.101968292861095, - 21.14980656381263, - 21.2272004431566 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615428, - 1.481384749141307, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833508249, - 2.7884247637014252, - 3.045310119636185, - 3.3955843569013524, - 3.6436674974056684, - 3.855925700780031, - 4.224811171067863, - 4.5397453647967625, - 5.475296090778514, - 6.570578898325478, - 6.92687615541592, - 7.270320655734392, - 7.627303621650882, - 7.920731222490932, - 8.182500131978642, - 8.41680285150039, - 8.619260142203307, - 8.773624250962664, - 8.953159155105311, - 9.077674641056438, - 9.139455677919402, - 9.240304416029538 - ], - "5._384._0.0875": [ - 3.513927363245156, - 4.138323236620862, - 4.946934659382122, - 6.276023786386213, - 7.745123433015339, - 9.775152078177463, - 12.027507501059624, - 13.821671148549264, - 16.122385823361906, - 17.4324968039469, - 18.331112481880304, - 19.547113368196523, - 20.364969660768274, - 22.15086918925759, - 23.635424304237905, - 24.039034587050264, - 24.401264702494476, - 24.753712834574596, - 25.027064089428094, - 25.260592821811322, - 25.461753936083383, - 25.63018173599274, - 25.755780013529776, - 25.899333215570362, - 25.997285001804187, - 26.04529040415504, - 26.122885369700576 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808706966746, - 2.800139149366015, - 3.1440381898974845, - 3.5256483410086874, - 3.916608969868303, - 4.6564326435683565, - 5.2408522575199115, - 5.722156280418049, - 6.488021692642983, - 7.078108817637764, - 8.576263856323838, - 10.010562551630642, - 10.425304910732308, - 10.804721194183715, - 11.180326309928033, - 11.475509468067585, - 11.729855694876939, - 11.950339156563452, - 12.135706243920572, - 12.274298805136475, - 12.43266659756452, - 12.540977602810342, - 12.594230671057593, - 12.680561756879944 - ], - "5._96._0.075": [ - 2.209271810327405, - 2.5553235702845147, - 2.851924915529097, - 3.201421474439214, - 3.5371855730616306, - 4.085002516161643, - 4.9363362454780155, - 5.844581988979856, - 7.333675535782044, - 8.340589006658128, - 9.091921499272008, - 10.179343803963988, - 10.948160171270874, - 12.705528852454755, - 14.213545899477472, - 14.628526877105443, - 15.001108095533844, - 15.364261803956104, - 15.645980395169984, - 15.886802623855722, - 16.09410089941256, - 16.267481710205853, - 16.396752054083837, - 16.544255556142314, - 16.644951440401478, - 16.694366889837227, - 16.774367453977067 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351925911221576, - 3.1892213571751724, - 3.541355680931138, - 4.138584767756017, - 4.9241374783226926, - 6.249826317837372, - 8.042260934494504, - 9.703216610321878, - 12.09809062521322, - 13.56908007334359, - 14.612006032564038, - 16.055720129237326, - 17.041446513509268, - 19.21235807125101, - 21.021394579795135, - 21.51348253987512, - 21.953838825026494, - 22.381596137133617, - 22.71246057740695, - 22.995009669704974, - 23.237929131473347, - 23.440952165864083, - 23.592323435875723, - 23.765132002398985, - 23.883117319556238, - 23.9410075258365, - 24.034741663406493 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961543, - 1.4813847491413061, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833561717, - 2.788425517737825, - 3.045356714841056, - 3.3966911071229466, - 3.6474066614447547, - 3.8633595181679907, - 4.24146678775765, - 4.566884714356566, - 5.547880470514063, - 6.726814251230247, - 7.118959710629289, - 7.50128704873647, - 7.9035098800175545, - 8.238003360525568, - 8.5395714881233, - 8.812074243127194, - 9.049545264964225, - 9.231894169168777, - 9.445246167913844, - 9.59406803876897, - 9.66821594998837, - 9.789711570773129 - ], - "5._384._0.0875": [ - 3.517089669530491, - 4.154236578069029, - 4.991813562490588, - 6.397124777871605, - 7.993192537890449, - 10.273204407311878, - 12.894363852555866, - 15.03591773423202, - 17.826301894246654, - 19.428894473358316, - 20.531330089142955, - 22.024350568112386, - 23.028917741747733, - 25.218676239030803, - 27.034574164062334, - 27.527694270576607, - 27.969766769490864, - 28.399509205537253, - 28.732408761913508, - 29.016742293317094, - 29.261480255157917, - 29.466255352215995, - 29.61894760132361, - 29.793411897991778, - 29.91247707075819, - 29.970849669315502, - 30.06526432438584 - ], - "5._48._0.075": [ - 1.5268463243731425, - 1.8679037053125433, - 2.1622431316564765, - 2.5060808709508366, - 2.8001398221265577, - 3.1441492286179065, - 3.527561651194066, - 3.9244278621678506, - 4.685625175731641, - 5.295453920390567, - 5.803427043965115, - 6.6229181920128095, - 7.264275168426223, - 8.932368370759292, - 10.58456660789766, - 11.071975122419524, - 11.520931091653425, - 11.96807575491938, - 12.320962857674967, - 12.626044874588079, - 12.890997615805377, - 13.113976808931236, - 13.280824408999106, - 13.471430249883822, - 13.601864227263004, - 13.666054533956704, - 13.770242133670214 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.555323571347717, - 2.8519264502576633, - 3.20159650900156, - 3.539052908031279, - 4.096048940752249, - 4.975279344723372, - 5.929988032282506, - 7.533985925741476, - 8.64781926922027, - 9.494276092360495, - 10.740984617263898, - 11.637037095800018, - 13.720762587803135, - 15.536368860385512, - 16.03891768592228, - 16.490303967511636, - 16.930398915078918, - 17.271561697172185, - 17.563187144528, - 17.81397563275722, - 18.023509191350684, - 18.179684517471944, - 18.35771990199947, - 18.47926197550023, - 18.538934132395124, - 18.635627554320685 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835194776403702, - 3.189398734249572, - 3.5429906551271997, - 4.147493036610092, - 4.950165526407451, - 6.322325947945721, - 8.213140523575431, - 10.00404673135627, - 12.651839280952673, - 14.314270284959207, - 15.507089118840375, - 17.173211426297815, - 18.318916424353645, - 20.854215039208412, - 22.97220757935492, - 23.548640740966395, - 24.06392881596858, - 24.564066263714846, - 24.950393726779343, - 25.280205384945937, - 25.563473873179056, - 25.799997143659894, - 25.976312530096294, - 26.17748488544885, - 26.314852124828327, - 26.382277368678544, - 26.491536968616256 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615426, - 1.4813847491413068, - 1.8198213217004353, - 2.1114679242247276, - 2.4511928335973625, - 2.788426020428762, - 3.04538777832223, - 3.39742896823682, - 3.6498999508935053, - 3.8683179986236484, - 4.252589697250231, - 4.585038912230555, - 5.596902232638405, - 6.833949903612745, - 7.251586682059921, - 7.662168207694794, - 8.098052429433398, - 8.46398881849528, - 8.796861276508569, - 9.100273090291651, - 9.366884545269267, - 9.573131053829176, - 9.816132842538343, - 9.986844739411623, - 10.072338303554865, - 10.213112455870055 - ], - "5._384._0.0875": [ - 3.519201037735992, - 4.1648742333474305, - 5.021964575889329, - 6.479529112750988, - 8.164916022435744, - 10.630335740400797, - 13.54754130003539, - 15.988556742531603, - 19.224440531444987, - 21.10214682620412, - 22.39892239656571, - 24.158089937150905, - 25.342956130398463, - 27.92303179392658, - 30.058740712492458, - 30.63815212060242, - 31.15705060709677, - 31.66104776330363, - 32.0510235263629, - 32.384028781889945, - 32.67044998779967, - 32.90994501000154, - 33.088512792653496, - 33.29247820507928, - 33.431698508036504, - 33.49997326323534, - 33.61047259070623 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125467, - 2.1622431316564783, - 2.506080871120279, - 2.800140270633584, - 3.1442232545423314, - 3.528837321897716, - 3.929644688159898, - 4.705176992300043, - 5.3321680348045115, - 5.858291153692439, - 6.714771973749863, - 7.392082765391023, - 9.184216030899579, - 11.007835289852359, - 11.555817753283268, - 12.064102628815379, - 12.573710137268211, - 12.977960802632031, - 13.328917619045004, - 13.634567638782286, - 13.892292968473821, - 14.085424182697414, - 14.30615918712256, - 14.457372546436877, - 14.531880291070685, - 14.652988007211588 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.5553235720565195, - 2.851927473410041, - 3.2017131990285077, - 3.5402979241200945, - 4.103422930866219, - 5.001409883129368, - 5.987732431051312, - 7.671784593185418, - 8.862593624388174, - 9.779801614056705, - 11.149820778158503, - 12.14859515300512, - 14.510485397336991, - 16.604474674321583, - 17.188433137775124, - 17.7136216535764, - 18.22617257113618, - 18.623459282003946, - 18.96315582480573, - 19.25510392043533, - 19.49883596128978, - 19.68046561589149, - 19.887355846574007, - 20.028612014935717, - 20.097996583186443, - 20.210531112544956 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351963373211526, - 3.189525432671323, - 3.5441586181564264, - 4.153863578420259, - 4.968837350679872, - 6.374765189955052, - 8.338435532940242, - 10.227924235923822, - 13.07667744467613, - 14.899216964004614, - 16.22157557832085, - 18.085611206462346, - 19.3773839575985, - 22.253326929252243, - 24.665607531774025, - 25.32290199772217, - 25.910008879139216, - 26.4794990185844, - 26.91887561651495, - 27.293881055164704, - 27.61566790717984, - 27.88411833618692, - 28.08419851671805, - 28.312364693175297, - 28.46818244123285, - 28.544691410541315, - 28.668765753189405 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.195803175961542, - 1.4813847491413066, - 1.8198213217004344, - 2.1114679242247285, - 2.451192833622822, - 2.7884263794937194, - 3.045409966528578, - 3.397956025424473, - 3.651681123419255, - 3.871861045175125, - 4.260544029058912, - 4.598036282181444, - 5.632233733917122, - 6.911990032935292, - 7.348562914574632, - 7.78038615503268, - 8.241930786777354, - 8.632288563414834, - 8.98993245080486, - 9.31834432206036, - 9.60908718406086, - 9.835583579650885, - 10.10436619003651, - 10.294663417617404, - 10.390522851782857, - 10.549284342416126 - ], - "5._384._0.0875": [ - 3.5207107105767967, - 4.172486685832283, - 5.04361535233427, - 6.539238771629346, - 8.290823424995548, - 10.897851125859063, - 14.053556094702584, - 16.750421010307743, - 20.387366959629162, - 22.52182567501487, - 24.0028806054672, - 26.016906929358765, - 27.37561986803111, - 30.333082187151593, - 32.77808502329351, - 33.4408977970093, - 34.033921738549736, - 34.609458476118434, - 35.05430372502859, - 35.43407705021292, - 35.76049119191312, - 36.03325310775754, - 36.236608202722216, - 36.46881511674917, - 36.62733410445668, - 36.705095253830414, - 36.831022119800515 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125458, - 2.1622431316564765, - 2.5060808712413083, - 2.800140590995746, - 3.1442761302569138, - 3.5297485792209886, - 3.9333730661275474, - 4.719186917317336, - 5.358546917521309, - 5.897818294295266, - 6.781339816883465, - 7.485187602696929, - 9.37107376118838, - 11.330559442278814, - 11.928785231530378, - 12.48730495904651, - 13.05095909356793, - 13.500543415541326, - 13.892672496932104, - 14.235364076732068, - 14.52508549238362, - 14.742640279650308, - 14.991570236901701, - 15.16236207344109, - 15.246643307399514, - 15.383865538978908 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.555323572562807, - 2.851928204233168, - 3.2017965492038645, - 3.541187283099064, - 4.108694827048994, - 5.020157591633424, - 6.0293823589962185, - 7.772395988356641, - 9.020893246502068, - 9.992125954630469, - 11.458833301601528, - 12.540663840621466, - 15.137968789154458, - 17.481764918967876, - 18.140996507450293, - 18.73505764069588, - 19.315730519637945, - 19.76601839452198, - 20.151266342940364, - 20.482270484553275, - 20.758468346547456, - 20.96427808400023, - 21.19856448999212, - 21.358556705411893, - 21.437185909378837, - 21.56483305389653 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_8": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351975080103657, - 3.1896204567673427, - 3.5450346584205175, - 4.158645586977014, - 4.982885349041962, - 6.414457224860929, - 8.434260555603638, - 10.4009213179499, - 13.41176726606915, - 15.368452215986, - 16.802330909530166, - 18.841384554308217, - 20.26561355395392, - 23.458439082609456, - 26.150709208225802, - 26.885581925639688, - 27.54163574143345, - 28.17772807252831, - 28.66798691944528, - 29.086338063810278, - 29.445016368135864, - 29.74400096673775, - 29.96680277464305, - 30.22075259479998, - 30.394198976970667, - 30.47939383405256, - 30.617657151921577 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004342, - 2.111467924224728, - 2.4511928336419166, - 2.7884266487924356, - 3.0454266076863563, - 3.398351325717276, - 3.6530171403547804, - 3.8745190273400456, - 4.266514920247846, - 4.607800786511952, - 5.658906817890103, - 6.97137719342753, - 7.422553385002921, - 7.870877175482006, - 8.352526094457385, - 8.762239856677033, - 9.139756733004683, - 9.488541614977851, - 9.799310885445944, - 10.04293370014671, - 10.33403068586692, - 10.54175862779562, - 10.64704793916489, - 10.822560261357017 - ], - "5._384._0.0875": [ - 3.521843815484846, - 4.178203766401465, - 5.059916289769679, - 6.584493394590957, - 8.387110607219094, - 11.105528291689232, - 14.455516162254296, - 17.37051570657643, - 21.36607785316105, - 23.73859073927171, - 25.39348869281476, - 27.65073505691816, - 29.176769303984504, - 32.49910864788708, - 35.24368633771473, - 35.98727554907545, - 36.65198172234362, - 37.296608957568495, - 37.7943357856378, - 38.219163059929286, - 38.58404830143178, - 38.88876891818065, - 39.115931429479964, - 39.37524549113963, - 39.55229168840916, - 39.639164660112286, - 39.779927116162895 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808713320784, - 2.80014083126737, - 3.1443157870725327, - 3.530432057195756, - 3.93617048414868, - 4.729718687744946, - 5.378416024939635, - 5.927650167082058, - 6.831797854977626, - 7.556026218629943, - 9.515121535061022, - 11.583871445050967, - 12.223865385593657, - 12.824870765046922, - 13.435095381146187, - 13.924486882948283, - 14.353363915378884, - 14.729608312946509, - 15.048691240780647, - 15.288897090394657, - 15.564212942873112, - 15.753484460131938, - 15.847049602754923, - 15.999675657394397 - ], - "5._96._0.075": [ - 2.209271810327405, - 2.555323572942525, - 2.8519287523505126, - 3.201859061920749, - 3.5418543361171233, - 4.112651354784914, - 5.034263989539381, - 6.060842911721544, - 7.849093185252161, - 9.14236624190215, - 10.156017221383621, - 11.699967632878995, - 12.8495813191719, - 15.646072480134803, - 18.212739171423223, - 18.941239075007537, - 19.599334474182076, - 20.243910047272013, - 20.744216038223744, - 21.172648244032946, - 21.540772175137285, - 21.84787026063639, - 22.076721059740787, - 22.337114812401982, - 22.51498546269777, - 22.602451514080382, - 22.74457961479501 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_9": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835198418547093, - 3.1896943645633273, - 3.545716063364626, - 4.162367359950148, - 4.993837801795569, - 6.445545831743682, - 8.509920678607969, - 10.538617685064448, - 13.682447511574487, - 15.752224503905364, - 17.282177876097418, - 19.47559514513419, - 21.01939914915772, - 24.505794584289276, - 27.46406311323045, - 28.273380035511796, - 28.995693679826125, - 29.695854532997593, - 30.235026179564322, - 30.695052984414993, - 31.089161790852845, - 31.417435244433054, - 31.662027415434142, - 31.940682448256794, - 32.13102606331549, - 32.22455320303138, - 32.3764500545759 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615422, - 1.4813847491413075, - 1.8198213217004355, - 2.1114679242247285, - 2.4511928336567665, - 2.788426858246996, - 3.0454395508108583, - 3.3986587858870467, - 3.6540563461469944, - 3.8765867600299537, - 4.271161995637254, - 4.615405175484388, - 5.679756664442103, - 7.018085006853974, - 7.48086287452734, - 7.942362725697819, - 8.440161375337219, - 8.865539150725466, - 9.25926528960598, - 9.624846063864272, - 9.952346659195861, - 10.210490003647902, - 10.520878090072602, - 10.744064497108202, - 10.857899584318131, - 11.048973887632274 - ], - "5._384._0.0875": [ - 3.522725623674997, - 4.1826549787548455, - 5.072632188592192, - 6.619974580091965, - 8.463131086967564, - 11.271425810809793, - 14.781921603063866, - 17.883370250368863, - 22.198461731165903, - 24.790578981186382, - 26.608735188663495, - 29.09733118292373, - 30.78408865582497, - 34.45909150998949, - 37.49416295960211, - 38.31612082778855, - 39.0502792708857, - 39.76176991589837, - 40.31057401883343, - 40.77890042412573, - 41.18087695465329, - 41.516370466928876, - 41.766452127657075, - 42.051845066198084, - 42.24671906842188, - 42.342364272199916, - 42.49742578082318 - ], - "5._48._0.075": [ - 1.52684632437314, - 1.8679037053125456, - 2.1622431316564765, - 2.506080871402683, - 2.800141018145298, - 3.144346631280049, - 3.5309636719073954, - 3.9383469262623554, - 4.737924514571376, - 5.3939203096996176, - 5.950963882047983, - 6.87136170113179, - 7.611730315035198, - 9.629562641841172, - 11.787686421025292, - 12.462636985661309, - 13.099692223816705, - 13.750038685728187, - 14.274313235840253, - 14.735879222325778, - 15.142407828124924, - 15.488351037826146, - 15.749517321062976, - 16.049507592930876, - 16.25623567729539, - 16.358634985170532, - 16.526024259848008 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.5553235732378576, - 2.8519291786640055, - 3.2019076829733635, - 3.542373175152058, - 4.1157301991876505, - 5.0452627549044005, - 6.085445400890604, - 7.909495952865928, - 9.238517507415333, - 10.286309160851365, - 11.89318186739695, - 13.098818792766913, - 16.064542838393542, - 18.829420127710723, - 19.621422679970937, - 20.338851908077856, - 21.043225025641945, - 21.59067698646771, - 22.060041420722968, - 22.463475028896674, - 22.800035447222456, - 23.050893457286666, - 23.336239786241798, - 23.53122685607122, - 23.62716968819104, - 23.783224284174963 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_10": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 10.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835210075814847, - 3.1906495811177646, - 3.5548790668397516, - 4.2161285407558, - 5.160948249795461, - 6.933945313810361, - 9.659364306545045, - 12.49380096465744, - 17.069098452026115, - 20.164087232963933, - 22.482078237485656, - 25.835663220953847, - 28.21431748617899, - 33.600815663638635, - 38.16887949338064, - 39.41672429858512, - 40.52608809749482, - 41.59792192992798, - 42.41919409019706, - 43.11902347279221, - 43.716489268641475, - 44.21262001514479, - 44.58208288439175, - 45.002384918847234, - 45.289632239057035, - 45.430951384776755, - 45.66112615869285 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615433, - 1.481384749141307, - 1.8198213217004335, - 2.1114679242247254, - 2.451192833846876, - 2.788429539425253, - 3.045605611739641, - 3.4027143385056156, - 3.668282776282311, - 3.9057938503323393, - 4.339775909578282, - 4.730944015226396, - 6.008446836145554, - 7.742906921837534, - 8.370579445855215, - 9.00758399630217, - 9.70561846213718, - 10.309722926163866, - 10.874387249954985, - 11.40246002032353, - 11.877934308548776, - 12.253983546656094, - 12.706357795581718, - 13.032093733339085, - 13.198767552928906, - 13.47967079761278 - ], - "5._384._0.0875": [ - 3.534571909596633, - 4.247248697407099, - 5.267418019274389, - 7.175753034995917, - 9.617858755624695, - 13.562803774105587, - 18.724898871030092, - 23.421842012276066, - 30.09428378511947, - 34.15983192856568, - 37.02838731002652, - 40.96043843321205, - 43.62819305490235, - 49.41266547578336, - 54.15878672488727, - 55.439592147409215, - 56.580161424788045, - 57.682540018402705, - 58.52977491984013, - 59.252283575794586, - 59.87104495827262, - 60.3864799587319, - 60.77065009296159, - 61.20876328318569, - 61.50808969479934, - 61.65514069722072, - 61.89402426407251 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125422, - 2.1622431316564765, - 2.5060808723063666, - 2.8001434103092397, - 3.1447433357947294, - 3.5380655597514, - 3.9690370279738114, - 4.861752835812768, - 5.635792918459037, - 6.31988121746601, - 7.4959838889232815, - 8.477580349283024, - 11.267285459867372, - 14.374771200580676, - 15.364999347517248, - 16.30411935266805, - 17.266611358061834, - 18.043713532831116, - 18.72895273615689, - 19.33195133164648, - 19.8441621606034, - 20.23045938157088, - 20.672620334908984, - 20.977061888159607, - 21.12809427961614, - 21.375843115373893 - ], - "5._96._0.075": [ - 2.209271810327405, - 2.5553235770181355, - 2.851934636081463, - 3.202534356410317, - 3.5492961212811234, - 4.159823229325833, - 5.213187984742428, - 6.472791012126626, - 8.8422250058252, - 10.664412260031558, - 12.141764390064173, - 14.457594115660617, - 16.226711325132328, - 20.64892619002576, - 24.829529426407504, - 26.035201704314964, - 27.12587718226382, - 28.195623110939962, - 29.02398382761888, - 29.733317137528964, - 30.340669083239288, - 30.84539563324061, - 31.221051206418, - 31.64709196881909, - 31.93818877938485, - 32.081621147319815, - 32.31571201120421 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_11": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ], - [ - 5.0, - 50.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 10.0, - 45.0 - ], - [ - 10.0, - 50.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352106718610526, - 3.190698167158004, - 3.555335353385531, - 4.218719963688649, - 5.168917627526714, - 6.958118518872828, - 9.722784317638625, - 12.615696767603318, - 17.323564315709945, - 20.536233728271327, - 22.957231246571446, - 26.481896689655407, - 28.997887645863536, - 34.735146948572414, - 39.6349822472307, - 40.97731465654018, - 42.17071811904262, - 43.323676275791584, - 44.20641140088534, - 44.95853473317054, - 45.600157838318765, - 46.132557579915996, - 46.528970213535025, - 46.979726701554334, - 47.287831576395625, - 47.43947010369973, - 47.686657920895414 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615422, - 1.481384749141308, - 1.8198213217004338, - 2.111467924224724, - 2.4511928338565987, - 2.788429676526422, - 3.0456140924532105, - 3.402918340933328, - 3.668984510129585, - 3.907212220588279, - 4.343046021450768, - 4.736406798952442, - 6.024354320544625, - 7.781025352446509, - 8.419150484086654, - 9.068288744300512, - 9.781494949003458, - 10.400563793637522, - 10.980905327095437, - 11.52540717031958, - 12.017429363808409, - 12.40799991071165, - 12.879932907738462, - 13.221756762690756, - 13.397604991245304, - 13.695949085689344 - ], - "5._384._0.0875": [ - 3.5351650948848614, - 4.250366207173127, - 5.276740022916981, - 7.2036015892132825, - 9.681528530366322, - 13.712074401474817, - 19.036629554057868, - 23.932220374168146, - 30.967667052404593, - 35.29843207545871, - 38.37105138425359, - 42.599368460756416, - 45.47713661048706, - 51.72613987139242, - 56.855165352314884, - 58.23896702853923, - 59.470294461056405, - 60.65956903732257, - 61.57262005394929, - 62.35108785426607, - 63.017294719064935, - 63.57189791224761, - 63.98522437832787, - 64.45645055898137, - 64.77843742703702, - 64.93666234950933, - 65.1938509113892 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125458, - 2.16224313165648, - 2.5060808723525816, - 2.800143532632209, - 3.1447635679887873, - 3.5384204103572396, - 3.970530360483989, - 4.867652725872986, - 5.647326609397021, - 6.337700655096179, - 7.527495349461646, - 8.523278053166411, - 11.367653079233834, - 14.56263670383012, - 15.588084514732099, - 16.564046855674796, - 17.568134644083276, - 18.382078324678332, - 19.102416739397132, - 19.73847270998194, - 20.28047207738758, - 20.690372344633595, - 21.16067097052536, - 21.48534110175388, - 21.646766502892522, - 21.912219272522034 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235772114453, - 2.851934915136768, - 3.2025662796792025, - 3.5496422545328943, - 4.16195513832651, - 5.221199025986556, - 6.491621381623833, - 8.891950989803965, - 10.74693882631047, - 12.256720030748594, - 14.634228374343612, - 16.459703282788468, - 21.058167944458503, - 25.457320448150295, - 26.736433992682684, - 27.89669575770228, - 29.0375951809885, - 29.92251458439744, - 30.681365466870076, - 31.33151424166479, - 31.87194138765432, - 32.27429703629286, - 32.73054686333194, - 33.042422264140505, - 33.19620410605444, - 33.4474770481297 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_12": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ], - [ - 5.0, - 50.0 - ], - [ - 5.0, - 55.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 10.0, - 45.0 - ], - [ - 10.0, - 50.0 - ], - [ - 10.0, - 55.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835211168566421, - 3.1907386555726203, - 3.555715604029822, - 4.220880242865249, - 5.175567589473242, - 6.978343498094728, - 9.776103326422756, - 12.718702712382926, - 17.540533370838595, - 20.85545235778205, - 23.366833381267767, - 27.043492655060387, - 29.683274831280645, - 35.74307032648724, - 40.956014289410135, - 42.388688570654274, - 43.66271096229513, - 44.8936811202469, - 45.83555205851139, - 46.638027096445526, - 47.32214479720741, - 47.88941977543867, - 48.3117436160535, - 48.7917621316761, - 49.11991778264804, - 49.28148648380018, - 49.54507774514221 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.195803175961542, - 1.4813847491413084, - 1.8198213217004344, - 2.1114679242247245, - 2.451192833864699, - 2.788429790777389, - 3.0456211597150284, - 3.403088344231274, - 3.6695693123621176, - 3.9083943200171825, - 4.345772069533417, - 4.740962287617559, - 6.037648186239969, - 7.81299866664244, - 8.45994148276447, - 9.11934522642864, - 9.845432248640932, - 10.477252596906032, - 11.07100204808063, - 11.629613453658616, - 12.13591647547864, - 12.539087336683885, - 13.02812996661641, - 13.384223339494797, - 13.568333447049236, - 13.882741170568162 - ], - "5._384._0.0875": [ - 3.5356595680708787, - 4.252965581978755, - 5.284521061158263, - 7.226915304517654, - 9.735055005326704, - 13.83850489971923, - 19.30319710387336, - 24.372505240499635, - 31.732554896860318, - 36.3062517207829, - 39.568614831604, - 44.0760779672877, - 47.1540442561334, - 53.85011347059078, - 59.35019200802955, - 60.83398870028925, - 62.153353570733024, - 63.42684492285784, - 64.40356147383629, - 65.23613987417029, - 65.94815868282058, - 66.54053140614964, - 66.9819669323844, - 67.48509666260952, - 67.82892098257537, - 67.99791993971608, - 68.27278160656516 - ], - "5._48._0.075": [ - 1.5268463243731378, - 1.8679037053125447, - 2.1622431316564814, - 2.5060808723910877, - 2.8001436345680197, - 3.1447804281555505, - 3.5387161252783312, - 3.971775009484365, - 4.872574056772496, - 5.656955440836209, - 6.352590024420149, - 7.553876655628024, - 8.561602318170074, - 11.452375238931394, - 14.72241866442464, - 15.778311211935119, - 16.78631366655131, - 17.82681418817368, - 18.673307653622555, - 19.424916292444205, - 20.090722516523208, - 20.6598195068072, - 21.09141325297641, - 21.587865298661637, - 21.931571443345412, - 22.10286685522202, - 22.38529323091085 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.555323577372537, - 2.85193514768286, - 3.202592882417825, - 3.5499307047711626, - 4.163732207494736, - 5.22788402148015, - 6.507361689023943, - 8.933692340577565, - 10.816427726704154, - 12.353771369201542, - 14.784062169061853, - 16.658071826926577, - 21.41021641434649, - 26.00431750416352, - 27.35040080575251, - 28.574669201446728, - 29.78163499307329, - 30.71952416991671, - 31.5250756153583, - 32.21580932869844, - 32.79023690907256, - 33.21810127442672, - 33.703275599499214, - 34.0350956361088, - 34.19883706762389, - 34.46669915740793 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352002410885504, - 3.189847920478392, - 3.5473525792099516, - 4.173513343591349, - 5.031103387411992, - 6.549814266069877, - 8.69442879239438, - 10.721324554732862, - 13.65066964685244, - 15.44052750504318, - 16.70336338021932, - 18.442387607021207, - 19.624242629285188, - 22.21124949222853, - 24.354935950516587, - 24.93652914059481, - 25.45632976083144, - 25.960761123219662, - 26.35050366363597, - 26.683238448122456, - 26.969127500138683, - 27.207942691806487, - 27.384862363531592, - 27.58807304902318, - 27.726771272570428, - 27.794843355039397, - 27.90509303114989 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615426, - 1.4813847491413068, - 1.8198213217004353, - 2.1114679242247276, - 2.451192833686473, - 2.7884272772560266, - 3.0454656800625717, - 3.3993485393835376, - 3.6567087082817475, - 3.8824142106708246, - 4.285999244949475, - 4.64140506131016, - 5.752918587514246, - 7.150877891153093, - 7.625157114941832, - 8.089389542953798, - 8.578662964181403, - 8.985091297075328, - 9.350608889757698, - 9.679499813117744, - 9.964576379686473, - 10.182272185752982, - 10.435156613231342, - 10.610355923351054, - 10.697293161936095, - 10.839197931839957 - ], - "5._384._0.0875": [ - 3.524813013470324, - 4.196082597982126, - 5.115976700938693, - 6.735607643646009, - 8.64884312392933, - 11.433330763113077, - 14.640392275429818, - 17.244403752490573, - 20.612198870306447, - 22.53576380936692, - 23.85529131495063, - 25.637609078985058, - 26.834547309355262, - 29.43671810893321, - 31.589403095738646, - 32.17341065027805, - 32.69669213307692, - 33.205149395583696, - 33.59881448123163, - 33.93502709709848, - 34.22433851221049, - 34.46635467357401, - 34.64682518692814, - 34.85302282193397, - 34.99376891856543, - 35.06278474363444, - 35.174454122124004 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125467, - 2.1622431316564783, - 2.506080871543884, - 2.800141391980189, - 3.144409505548065, - 3.532211674254694, - 3.9444357938732804, - 4.765296944453598, - 5.448739751006118, - 6.033258183172322, - 6.998288087184899, - 7.7674948917547475, - 9.79428865808197, - 11.802490368795349, - 12.390872724774988, - 12.930279814376554, - 13.464929069909926, - 13.884729934838585, - 14.246253191878566, - 14.55894010657095, - 14.821120177884682, - 15.016811451464584, - 15.23971426470978, - 15.391971646535712, - 15.466843972899632, - 15.588341534532205 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.5553235738285265, - 2.851930031668963, - 3.202007625224777, - 3.543586030366084, - 4.124736958241059, - 5.082713019435455, - 6.171003447660342, - 8.075248025750884, - 9.427832536161716, - 10.462184889371523, - 11.986453113820447, - 13.078953428323361, - 15.599578889002377, - 17.769616806353657, - 18.366645113318807, - 18.901131312514813, - 19.42097004808437, - 19.82294703284428, - 20.166134149668775, - 20.460792123371245, - 20.706648075957443, - 20.889798157998282, - 21.09842186937948, - 21.240818571675668, - 21.31073706027092, - 21.424089701005023 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352035193230685, - 3.190115138800661, - 3.5498609390674054, - 4.187688439336998, - 5.074041478141767, - 6.674851559973054, - 9.000044409053602, - 11.265363589488713, - 14.640705302321196, - 16.753121867319063, - 18.261395800878635, - 20.355240076506362, - 21.78665838351262, - 24.92844738952389, - 27.5317040745881, - 28.23775895426794, - 28.8677789647084, - 29.478403256846654, - 29.94933188617236, - 30.351197015774652, - 30.69604102364139, - 30.983769286271553, - 31.19824205188385, - 31.44289297464086, - 31.609982581668845, - 31.692023877482363, - 31.825060805735905 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004355, - 2.111467924224727, - 2.451192833739939, - 2.7884280313124297, - 3.045512323934649, - 3.400470421944272, - 3.660565779681686, - 3.8902025074456943, - 4.303887086797668, - 4.671126564722622, - 5.836664507123772, - 7.340846191318556, - 7.862325920906742, - 8.378434762821415, - 8.928717654497387, - 9.390964497926422, - 9.810888100082494, - 10.192152505169856, - 10.525265720066491, - 10.781314206342634, - 11.080292619880323, - 11.288426782296373, - 11.392078377270282, - 11.561816421662916 - ], - "5._384._0.0875": [ - 3.5280599856953785, - 4.213080973607932, - 5.165964107748593, - 6.878390066508662, - 8.955789180466084, - 12.078589755638017, - 15.802405759794022, - 18.903720339012498, - 22.98036958608921, - 25.329307120729734, - 26.94539178766916, - 29.12973200874632, - 30.597052358018693, - 33.78032438092293, - 36.406449930074466, - 37.1179215124281, - 37.75463540337469, - 38.3726714132892, - 38.85052568468331, - 39.25853134546095, - 39.6093215162144, - 39.9025466523854, - 40.12118910579749, - 40.37091898315502, - 40.54141449038774, - 40.62504903311347, - 40.76047255508587 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125451, - 2.162243131656477, - 2.506080871798045, - 2.800142064756538, - 3.144520782096798, - 3.534162728595581, - 3.952628090970952, - 4.797262842492293, - 5.5104147945451665, - 6.127267242589088, - 7.159631758201581, - 7.995211026076231, - 10.248998514382093, - 12.556617414498104, - 13.24599147390895, - 13.882164392659803, - 14.51636929107626, - 15.016212753998312, - 15.447931515019524, - 15.82181908321612, - 16.135455325602557, - 16.369632358543218, - 16.636147059457226, - 16.81822829471624, - 16.907840987543533, - 17.0534457869186 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.55532357489173, - 2.851931566473131, - 3.202183201710241, - 3.54548916192579, - 4.136413501500515, - 5.125849398712307, - 6.269765395047149, - 8.32027253206208, - 9.8149750604999, - 10.97845798628486, - 12.722398994312112, - 13.992652563395433, - 16.97356671612827, - 19.578683271043086, - 20.29937994043897, - 20.944626862714102, - 21.572169037324258, - 22.05685533073115, - 22.47052748366812, - 22.8252259401652, - 23.120766658247714, - 23.34082659747316, - 23.591209104025143, - 23.762105877575106, - 23.846059645802825, - 23.982316413754653 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835205704816959, - 3.190293285399311, - 3.5515334397035314, - 4.19715513589494, - 5.102856999602241, - 6.759849032154584, - 9.212342591476311, - 11.65329422908895, - 15.379832421395756, - 17.762546930011908, - 19.484068428300247, - 21.895402312117103, - 23.55565494352747, - 27.21634362064644, - 30.255883688788987, - 31.080452306813484, - 31.815263715778293, - 32.52671775525227, - 33.07450510088772, - 33.54177168256636, - 33.942257965367105, - 34.27604754317096, - 34.52480137724168, - 34.80838532926366, - 35.0020923195893, - 35.097242840611095, - 35.25168166225623 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615422, - 1.4813847491413075, - 1.8198213217004355, - 2.1114679242247285, - 2.451192833775585, - 2.7884285340166994, - 3.0455434198606337, - 3.4012183716952746, - 3.6631376890722773, - 3.895397436319461, - 4.3158332530702035, - 4.691010151229295, - 5.89328012010944, - 7.4714612866346615, - 8.026604691859681, - 8.580512360129228, - 9.1762579817188, - 9.681254889734719, - 10.143911497686958, - 10.567432226228624, - 10.940357945620761, - 11.228984748685384, - 11.568123077498209, - 11.805700190015722, - 11.924564375597381, - 12.120071229868115 - ], - "5._384._0.0875": [ - 3.53022795930162, - 4.2244448279434845, - 5.199561646858205, - 6.975714944684915, - 9.168995707213172, - 12.543370473894523, - 16.681275678101866, - 20.2094096446599, - 24.92799701261454, - 27.6755069399848, - 29.573397725890672, - 32.14270118970849, - 33.87025443341328, - 37.613002937038466, - 40.694046012280246, - 41.527794262549854, - 42.27309038330444, - 42.995821292705266, - 43.5538972802211, - 44.03027369131587, - 44.439507992169546, - 44.78133754053311, - 45.036202338067945, - 45.3272113694606, - 45.52592424418663, - 45.62343329258464, - 45.78143339885348 - ], - "5._48._0.075": [ - 1.52684632437314, - 1.8679037053125456, - 2.1622431316564765, - 2.506080871967489, - 2.8001425132741034, - 3.144594966573821, - 3.535463565273232, - 3.9580941285098836, - 4.818676511301623, - 5.551905165101823, - 6.190784885090294, - 7.269689573977297, - 8.15195325978915, - 10.57190391575667, - 13.114786056846384, - 13.88801224236919, - 14.606358313810917, - 15.327027223147484, - 15.897704379180679, - 16.392499684667463, - 16.82202224253226, - 17.18284914035004, - 17.452544174931923, - 17.75946151517089, - 17.96928823640093, - 18.072670614473463, - 18.240900765698264 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.5553235756005317, - 2.8519325896759065, - 3.2023002530207605, - 3.546758045225016, - 4.144208344536223, - 5.154803547420688, - 6.336612534881606, - 8.489323728253032, - 10.086688355252646, - 11.346424983670472, - 13.260460519421951, - 14.673903856811481, - 18.045400892386333, - 21.042239152299054, - 21.87731014069735, - 22.62574246274712, - 23.35415088489598, - 23.916447514396122, - 24.396374340196605, - 24.807482872044265, - 25.149651158090396, - 25.404341483409727, - 25.693844446082803, - 25.89145399417834, - 25.988581225612954, - 26.146391301460568 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352072658860914, - 3.1904205334842937, - 3.5527282107360296, - 4.203925222236156, - 5.123533201493656, - 6.821391451122628, - 9.368436397732365, - 11.943162572636414, - 15.949393739546375, - 18.557973706123164, - 20.463295294916723, - 23.15613829329123, - 25.024503666745364, - 29.168298866373274, - 32.62163554135902, - 33.5592998191031, - 34.39405196827756, - 35.201603548524346, - 35.822467373331286, - 36.35188673414025, - 36.80513948363441, - 37.18252071011594, - 37.463703405301935, - 37.784072252632136, - 38.00293477554098, - 38.11048523625906, - 38.285207836430395 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.4813847491413075, - 1.819821321700434, - 2.111467924224728, - 2.4511928338010445, - 2.788428893091184, - 3.045565631241853, - 3.4017526352536334, - 3.664975026063789, - 3.8991094377086237, - 4.324376494978305, - 4.705246703143643, - 5.93411253906267, - 7.566801177922631, - 8.14703546303203, - 8.729462473320325, - 9.359983386075301, - 9.898278667828516, - 10.394804274460423, - 10.852510498229758, - 11.258362925642443, - 11.574519759595608, - 11.948433390185716, - 12.212210637558458, - 12.34488936194736, - 12.564281097940267 - ], - "5._384._0.0875": [ - 3.531778143868566, - 4.232577391674354, - 5.2236944248031145, - 7.046321415124095, - 9.325746807549638, - 12.893053255225862, - 17.365066724862338, - 21.257119977452273, - 26.551527124188016, - 29.66968754325377, - 31.833932865422923, - 34.7707163855328, - 36.74841924532966, - 41.03023542182837, - 44.549454092182714, - 45.50085654302919, - 46.35042503079395, - 47.173520380980065, - 47.80830236475757, - 48.35001757193086, - 48.81500711028401, - 49.203132891395676, - 49.492491838173734, - 49.822782474151644, - 50.0483538173161, - 50.15907705356923, - 50.33860892539618 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125407, - 2.1622431316564774, - 2.5060808720885155, - 2.8001428336437937, - 3.144647955540441, - 3.5363927998615297, - 3.9620006495333975, - 4.834022706615588, - 5.581725666949762, - 6.236573337279973, - 7.349551361231286, - 8.26635964712362, - 10.812389315542237, - 13.542081604007649, - 14.384786717014432, - 15.172562341132798, - 15.967795428751282, - 16.6007331253139, - 17.15186859398305, - 17.631759269143853, - 18.0357881780892, - 18.338277168024973, - 18.682736727237906, - 18.918501316217476, - 19.03482261703996, - 19.224431210587166 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.5553235761068187, - 2.851933320535034, - 3.202383861256546, - 3.5476644535913353, - 4.149781229554295, - 5.175581991367814, - 6.3848644223057835, - 8.613031149365078, - 10.287618435116254, - 11.621141621655099, - 13.66894338618213, - 15.198288028572723, - 18.89972457972761, - 22.246632625232692, - 23.186983577331137, - 24.03127223357871, - 24.854064002342966, - 25.489269396880914, - 26.031625564119697, - 26.495930237310198, - 26.882065305089665, - 27.169417872648395, - 27.49578329898258, - 27.718584133845496, - 27.828154337091263, - 28.00637741408611 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_8": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835208436689069, - 3.1905159698294137, - 3.5536243588638925, - 4.209007254815328, - 5.139091810656374, - 6.868008923843148, - 9.488066450456998, - 12.167916964981599, - 16.40058205876062, - 19.198676238570247, - 21.26213262081574, - 24.20341882343351, - 26.259946796872796, - 30.851560857867664, - 34.69709101456677, - 35.742815220599844, - 36.67309331806136, - 37.57249839739963, - 38.26308499443793, - 38.85178843740266, - 39.35528034257376, - 39.77409004148697, - 40.08608046740968, - 40.44135642057948, - 40.68409763432837, - 40.80342901542499, - 40.99746060468074 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.195803175961541, - 1.4813847491413077, - 1.819821321700434, - 2.111467924224724, - 2.451192833820142, - 2.788429162397046, - 3.045582289780788, - 3.402153340434567, - 3.6663531703762815, - 3.9018941705197836, - 4.330789544643986, - 4.715942732641851, - 5.964953807012271, - 7.639465698109971, - 8.239103181609954, - 8.843754787016477, - 9.501621773269132, - 10.066408072472177, - 10.59019172218022, - 11.07581857563665, - 11.509021814286065, - 11.84844942564679, - 12.25239638172775, - 12.53940349662911, - 12.68459182145681, - 12.926111302917246 - ], - "5._384._0.0875": [ - 3.532941676023963, - 4.238685321972887, - 5.2418679857005035, - 7.0998822503641295, - 9.445870951992244, - 13.165545967090711, - 17.910624922655778, - 22.11299031659934, - 27.921098107035835, - 31.381884986606853, - 33.796660822403695, - 37.08312145277919, - 39.30090034382501, - 44.10226769696981, - 48.04433378065071, - 49.10922481085599, - 50.05919641678497, - 50.978779492163355, - 51.68712390843502, - 52.2914679875054, - 52.809809877188755, - 53.24216943643232, - 53.56447810633849, - 53.932265171865616, - 54.1834802251864, - 54.30682727028212, - 54.50695686877147 - ], - "5._48._0.075": [ - 1.5268463243731447, - 1.8679037053125414, - 2.162243131656477, - 2.5060808721792887, - 2.8001430739210664, - 3.144687697295194, - 3.5370897616433643, - 3.9649317486105478, - 4.845560181129666, - 5.604192509901537, - 6.271145487062485, - 7.410142404574125, - 8.353531878924258, - 10.99836759220473, - 13.87879667280827, - 14.779339303479189, - 15.62583876454124, - 16.485229557077798, - 17.172706392963274, - 17.77395993465592, - 18.299291238262576, - 18.742782019434262, - 19.075528458814198, - 19.454920246430248, - 19.71500938793799, - 19.843539185167817, - 20.053448880570645 - ], - "5._96._0.075": [ - 2.209271810327409, - 2.5553235764865336, - 2.851933868679379, - 3.202446567519156, - 3.548344294404596, - 4.153963706741686, - 5.1912190720837055, - 6.421331840121233, - 8.70749307177083, - 10.442200648952939, - 11.833885633195116, - 13.98897211928729, - 15.613191714982714, - 19.59388388162565, - 23.252245479435548, - 24.28912580255754, - 25.22219584462156, - 26.13316514396154, - 26.836867809736717, - 27.438124368269076, - 27.952720396480785, - 28.380460232782763, - 28.698744687554065, - 29.060008265901747, - 29.30668480449682, - 29.428069363904708, - 29.625728599437423 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_9": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835209347314263, - 3.190590198264583, - 3.5543214043606906, - 4.212962596705303, - 5.1512235430151545, - 6.904542872589432, - 9.58267436755654, - 12.347301291021939, - 16.766474484705668, - 19.724788568983108, - 21.9246159028046, - 25.084907034383033, - 27.3109850038689, - 32.31627680404597, - 36.53314633543599, - 37.6821865760017, - 38.70391325794995, - 39.69131096892082, - 40.44860845436374, - 41.09403251299731, - 41.64551837710639, - 42.10384277219545, - 42.44520812132989, - 42.833734241377044, - 43.09922862610516, - 43.22979582026925, - 43.442279025649974 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615417, - 1.4813847491413072, - 1.8198213217004335, - 2.111467924224724, - 2.4511928338349938, - 2.788429371857161, - 3.045595246423972, - 3.40246500447147, - 3.667425144292986, - 3.904060507502699, - 4.335780803250038, - 4.7242729100994, - 5.9890709972497875, - 7.696684029608159, - 8.311769237433873, - 8.934213133134474, - 9.61411815681868, - 10.200420906830395, - 10.746518361533488, - 11.255237229363766, - 11.71134360474764, - 12.070521975363835, - 12.500417012444714, - 12.807977269824569, - 12.964464574587549, - 13.22645683578083 - ], - "5._384._0.0875": [ - 3.5338471756390373, - 4.243440983525481, - 5.25604699446988, - 7.141904217286183, - 9.54086261309936, - 13.383895821458474, - 18.35544238226275, - 22.82348940304751, - 29.08886073062521, - 32.86499276758752, - 35.51444497972394, - 39.13263811507234, - 41.58042346508839, - 46.88249910892325, - 51.233223042116485, - 52.40781155708563, - 53.454681637184336, - 54.46725318818644, - 55.246327525735936, - 55.910860019175274, - 56.48039129780531, - 56.95512871455668, - 57.30899726574982, - 57.71267441422352, - 57.988439951580766, - 58.12387946005577, - 58.34376632410615 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.867903705312541, - 2.162243131656476, - 2.506080872249888, - 2.8001432608033827, - 3.1447186075665337, - 3.53763186426914, - 3.9672122086089443, - 4.854550303550217, - 5.621727094994757, - 6.298172519872817, - 7.457685136150757, - 8.422155980635695, - 11.146501702775446, - 14.15068876331347, - 15.099775356391865, - 15.996183739997655, - 16.91085551660979, - 17.646082341128594, - 18.29182912246625, - 18.85805879512229, - 19.337522892385987, - 19.69815357662434, - 20.110059494143368, - 20.393003932742577, - 20.53308554314836, - 20.762344000308314 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.5553235767818676, - 2.8519342950138724, - 3.2024953391075672, - 3.5488730799497015, - 4.15721841286256, - 5.2034129108566844, - 6.449861706483356, - 8.78198205912175, - 10.56480276074678, - 12.003454876857722, - 14.24627531377879, - 15.949206285638818, - 20.1675883695264, - 24.102533041345332, - 25.22766557154372, - 26.24274495734458, - 27.23594328846332, - 28.003963133213883, - 28.66081765139372, - 29.22303495004049, - 29.690246054915036, - 30.03791647956293, - 30.43234417933908, - 30.701742909879727, - 30.834393478894228, - 31.050640942243973 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4_10": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 10.0, - 45.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 15.0, - 30.0 - ], - [ - 15.0, - 35.0 - ], - [ - 15.0, - 40.0 - ], - [ - 15.0, - 45.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352155402654335, - 3.1910976341695036, - 3.5591900204293077, - 4.241652041536282, - 5.24171949396765, - 7.182936888226474, - 10.302721307884687, - 13.680644113004497, - 19.316353987909178, - 23.213395747429903, - 26.159914337557296, - 30.445316998312613, - 33.49467590504104, - 40.38914003693473, - 46.20740576963803, - 47.79141958607468, - 49.194964590676555, - 50.54722077058344, - 51.57932317433709, - 52.45783615112389, - 53.205913700995225, - 53.825741797079196, - 54.287130640410425, - 54.81152164590888, - 55.17000212316612, - 55.34650141538502, - 55.6345347741917 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961541, - 1.4813847491413068, - 1.819821321700433, - 2.1114679242247245, - 2.4511928339359916, - 2.788430796232586, - 3.045683465038299, - 3.4046193440079198, - 3.6749844025486302, - 3.9195920161181945, - 4.372401388010593, - 4.786329403494248, - 6.173010240482175, - 8.136371342963601, - 8.869131687075104, - 9.622989136162882, - 10.459911574901794, - 11.192306489285478, - 11.883018956743255, - 12.533255147185786, - 13.121340689495254, - 13.587533856607337, - 14.147847599563326, - 14.550329419694714, - 14.756016943103335, - 15.102173668697063 - ], - "5._384._0.0875": [ - 3.5401698118427123, - 4.2780166961608534, - 5.362028064745618, - 7.46201237539137, - 10.263500721024824, - 14.983285402903114, - 21.39220849783048, - 27.357600085390374, - 35.93928737868593, - 41.20058578311279, - 44.91885401303913, - 50.009739651562825, - 53.45978872545569, - 60.903591083480165, - 66.97629692432217, - 68.6102105793335, - 70.06234745388832, - 71.46322972277306, - 72.53722061466122, - 73.4526901270822, - 74.23554352402222, - 74.88685863227347, - 75.37227732866307, - 75.92564584260464, - 76.30385326029787, - 76.48976698860798, - 76.79218295459374 - ], - "5._48._0.075": [ - 1.526846324373144, - 1.8679037053125487, - 2.1622431316564796, - 2.5060808727299757, - 2.8001445316400346, - 3.14492935120152, - 3.54140488776489, - 3.9835472186598357, - 4.921233884858785, - 5.7543937909609015, - 6.505191705985544, - 7.82487334234465, - 8.951972222331316, - 12.2539289246367, - 16.06130908157437, - 17.293783614266104, - 18.467384754047103, - 19.673021838138368, - 20.646177876032347, - 21.50365940104872, - 22.25609193500655, - 22.892875907813213, - 23.371599803401796, - 23.916873837838313, - 24.291157683918307, - 24.47674558526666, - 24.781592224288648 - ], - "5._96._0.075": [ - 2.2092718103274196, - 2.5553235787901345, - 2.8519371942648046, - 3.202828247109315, - 3.552551048670487, - 4.180721137001639, - 5.294399687099114, - 6.667157251134592, - 9.352240447151873, - 11.493722069492803, - 13.267835690989934, - 16.099461412084842, - 18.296059095844857, - 23.85930592685619, - 29.15900723905656, - 30.688746394143784, - 32.069001036933976, - 33.419293538690305, - 34.46032951872535, - 35.34973521012785, - 36.10829783187206, - 36.73639290249071, - 37.20308802544895, - 37.7310678587544, - 38.091610971988196, - 38.26937088570593, - 38.56013729661122 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352057050613384, - 3.190294242055475, - 3.551579047869279, - 4.197770654769028, - 5.1054120007203085, - 6.7678989750914, - 9.223529620147279, - 11.643191719638494, - 15.264731051826653, - 17.53099848045213, - 19.146834311027266, - 21.385549244341814, - 22.91296317062012, - 26.25623404457498, - 29.018865847773657, - 29.76728194372418, - 30.43471243912256, - 31.081298204444867, - 31.579710618632273, - 32.00497113457921, - 32.36978762980547, - 32.674111151169065, - 32.9009496756597, - 33.15968804910977, - 33.33640963015014, - 33.42318886201574, - 33.56393896764539 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004342, - 2.111467924224728, - 2.4511928337755844, - 2.7884285340333554, - 3.045543460360317, - 3.4012308424856124, - 3.6632333298732687, - 3.895679416225261, - 4.31675891175422, - 4.692833948174316, - 5.899118182564597, - 7.48182609108996, - 8.036130969316716, - 8.586360956960199, - 9.174427810982532, - 9.668875717075965, - 10.118139436466775, - 10.525684289909554, - 10.881172619214876, - 11.153862223043946, - 11.471314013282175, - 11.691614772754814, - 11.801113409711034, - 11.980093093119201 - ], - "5._384._0.0875": [ - 3.5302822737344224, - 4.225196089371995, - 5.202543479706359, - 6.9845076031642765, - 9.180197396034956, - 12.517560061523431, - 16.51590495451879, - 19.843103403321294, - 24.204871060071238, - 26.712008336560274, - 28.43468369345217, - 30.76023182086211, - 32.321016474020226, - 35.70296883297569, - 38.4899869029692, - 39.24471154047153, - 39.91998782836852, - 40.575325478060925, - 41.081902738143405, - 41.51441975468773, - 41.886238751676515, - 42.19701198353821, - 42.42874356296075, - 42.693420979465074, - 42.87413361981612, - 42.96278712311065, - 43.10635847412245 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808719674896, - 2.8001425132872746, - 3.1445951642087775, - 3.5354943555535385, - 3.958383257412994, - 4.82049654334741, - 5.55608555439892, - 6.197585289305629, - 7.280477073704636, - 8.164075596561373, - 10.566510726760388, - 13.03739726929072, - 13.774655267379785, - 14.454030782462283, - 15.130054743922495, - 15.661707506033217, - 16.12007990765267, - 16.516291073142064, - 16.84806774892725, - 17.095482272655033, - 17.376664199368363, - 17.56859366785283, - 17.66301600159165, - 17.816417053290447 - ], - "5._96._0.075": [ - 2.209271810327405, - 2.555323575600532, - 2.8519325897389014, - 3.2023007030249224, - 3.546787236114989, - 4.144682387847334, - 5.157372873719228, - 6.343302644340462, - 8.50140385797139, - 10.092625153883795, - 11.33723466762142, - 13.206986255752291, - 14.569711913815667, - 17.761408408023094, - 20.53774599629982, - 21.30372051619266, - 21.98844832655775, - 22.653610907399276, - 23.166744166689213, - 23.604428796379032, - 23.97942908490322, - 24.291686885464387, - 24.524133862685446, - 24.78851590779729, - 24.96894880690779, - 25.05758985180375, - 25.2014847208316 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_13": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ], - [ - 5.0, - 50.0 - ], - [ - 5.0, - 55.0 - ], - [ - 5.0, - 60.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352006598707553, - 3.1898762920636603, - 3.5473935180632306, - 4.1715377260635895, - 5.020895830883935, - 6.522890397495444, - 8.700488863909614, - 10.889889762348467, - 14.388728224919818, - 16.77104450494998, - 18.575136452074414, - 21.22676058341145, - 23.141232634714896, - 27.590093276032498, - 31.47917982350957, - 32.5570037403776, - 33.51997807732878, - 34.454044930204454, - 35.17195700108144, - 35.78453894859285, - 36.30817832191067, - 36.74332966804524, - 37.06742682689267, - 37.43607898109859, - 37.68804677670192, - 37.812027825755756, - 38.013955965723426 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.481384749141308, - 1.8198213217004335, - 2.1114679242247227, - 2.451192833693326, - 2.7884273738274508, - 3.0454714108162904, - 3.3994156272726337, - 3.656614695038024, - 3.88167810419859, - 4.282612323285663, - 4.63416015504307, - 5.731470768807269, - 7.13502727491078, - 7.627297711996777, - 8.122549874223196, - 8.662087897971082, - 9.12834908333362, - 9.564809161134086, - 9.975251718249439, - 10.34819436209166, - 10.646557775211628, - 11.011962534000862, - 11.281238745299008, - 11.421690709135857, - 11.664169099718864 - ], - "5._384._0.0875": [ - 3.524898110893181, - 4.193628965156947, - 5.104072895261537, - 6.708383037632419, - 8.654587039742907, - 11.697129826878683, - 15.64025310003894, - 19.267577509799665, - 24.549305103618522, - 27.853376822536482, - 30.22267903734085, - 33.5185052753241, - 35.78179491307977, - 40.74918280211661, - 44.86447763166951, - 45.97902438701196, - 46.971894059028806, - 47.93193766975734, - 48.66982219087215, - 49.299045198691914, - 49.83778213799759, - 50.2864061110406, - 50.62070367203176, - 51.00177857485403, - 51.262092296985514, - 51.38997625929076, - 51.597733912216576 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125418, - 2.162243131656476, - 2.5060808715764678, - 2.800141478152505, - 3.14442255554874, - 3.5322723392534385, - 3.943706830309592, - 4.758177490218428, - 5.432273960243295, - 6.008768579784901, - 6.969952418995137, - 7.751151360410304, - 9.920671832003787, - 12.316054106072752, - 13.086276693261397, - 13.823584586698994, - 14.588058234012035, - 15.214484968470689, - 15.774376030958493, - 16.274711374743337, - 16.70636032178794, - 17.036262767920842, - 17.419478923670248, - 17.686847410289747, - 17.820598495124457, - 18.041521059397294 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.555323573964834, - 2.851930228051061, - 3.202027365753009, - 3.543650392029674, - 4.1233146571676595, - 5.072438149178273, - 6.146506120156569, - 8.061035398490636, - 9.481628884071474, - 10.617933083706443, - 12.390868807454716, - 13.747115296554318, - 17.1859400558244, - 20.54771812900628, - 21.54321866767704, - 22.45540627868258, - 23.36093568736147, - 24.0703157875775, - 24.68262880105878, - 25.21093053682736, - 25.65267293396371, - 25.982652654112712, - 26.358120768973517, - 26.615293426789542, - 26.742213502934213, - 26.949518708273327 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351838500296616, - 3.1885118572313673, - 3.534817814223326, - 4.1030737424674095, - 4.821317420742483, - 5.969919191578708, - 7.41028413925126, - 8.648650678142598, - 10.318019242462421, - 11.295421939311396, - 11.97337743517005, - 12.898811056559623, - 13.524508345420257, - 14.897437624552998, - 16.042123430945267, - 16.35383097791215, - 16.633592896224254, - 16.90595883307184, - 17.117309952985618, - 17.297937101829362, - 17.45358097851654, - 17.58393310527604, - 17.6811611636915, - 17.79229429280022, - 17.868148885395772, - 17.905336255686425, - 17.965445068310917 - ], - "5._24._0.075": [ - 0.8740059532267962, - 1.1958031759615424, - 1.4813847491413075, - 1.8198213217004349, - 2.111467924224728, - 2.4511928334191357, - 2.788423506974107, - 3.0452324610064143, - 3.3937398837242934, - 3.637437610795647, - 3.843546410724326, - 4.197128320327028, - 4.494757418969375, - 5.356757547871304, - 6.322806150411278, - 6.626738081951607, - 6.915404542282874, - 7.21101958981349, - 7.450860982652266, - 7.66246734371669, - 7.850165882224263, - 8.011164200847652, - 8.133224321258036, - 8.274627098240014, - 8.37233003387617, - 8.420668855356707, - 8.49937572606141 - ], - "5._384._0.0875": [ - 3.508669460749622, - 4.111915670923915, - 4.873040032123389, - 6.080558225789574, - 7.357967553781383, - 9.04485058828995, - 10.84277364416776, - 12.241098615273712, - 14.011222366677718, - 15.01309719121016, - 15.699134890832847, - 16.62764066517033, - 17.252332732919882, - 18.619928993318393, - 19.76028670279949, - 20.070751033016197, - 20.34972432420409, - 20.621432400545174, - 20.832432856467467, - 21.012738747514504, - 21.168177723656544, - 21.298415605446706, - 21.395540979639048, - 21.50658808640696, - 21.58234324516048, - 21.619456039757466, - 21.679401052203215 - ], - "5._48._0.075": [ - 1.5268463243731434, - 1.8679037053125456, - 2.162243131656478, - 2.5060808702730704, - 2.8001380280984436, - 3.1438531258067117, - 3.5224600129449035, - 3.9035943923639613, - 4.608135080323152, - 5.1510836559379705, - 5.589462884077594, - 6.27130271990618, - 6.783963554912862, - 8.04316830464235, - 9.202414931053042, - 9.53127928011967, - 9.83044491677738, - 10.125260643940114, - 10.356342764412293, - 10.555043007864295, - 10.727181907122153, - 10.87191268601469, - 10.980113122105404, - 11.103877010708246, - 11.188516611811483, - 11.230104665601413, - 11.297459077760191 - ], - "5._96._0.075": [ - 2.2092619209324718, - 2.555305556880593, - 2.8518917514576345, - 3.201071628572207, - 3.5339683812307245, - 4.066374782143852, - 4.871306856588727, - 5.703345918840731, - 7.011014828442001, - 7.859290682278471, - 8.476335068125367, - 9.349652040268383, - 9.955723894960455, - 11.316721448596432, - 12.4702954875727, - 12.786558094229333, - 13.070633086294775, - 13.347621860741711, - 13.562753164373564, - 13.746815702553597, - 13.905500700816589, - 14.038445223288367, - 14.137675478115584, - 14.251099311683415, - 14.328597138129837, - 14.366636071121864, - 14.428211518355958 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_13": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 45.0 - ], - [ - 0.0, - 50.0 - ], - [ - 0.0, - 55.0 - ], - [ - 0.0, - 60.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 5.0, - 45.0 - ], - [ - 5.0, - 50.0 - ], - [ - 5.0, - 55.0 - ], - [ - 5.0, - 60.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 10.0, - 45.0 - ], - [ - 10.0, - 50.0 - ], - [ - 10.0, - 55.0 - ], - [ - 10.0, - 60.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352115888557163, - 3.190772915034292, - 3.5560373629937767, - 4.222708711284617, - 5.181200747095087, - 6.995514461436926, - 9.821555926381665, - 12.806891110520562, - 17.727729652831986, - 21.132249123333395, - 23.723462479939972, - 27.53574672795674, - 30.287352759889096, - 36.6437421421003, - 42.15193549304779, - 43.67096354497362, - 45.022334435646236, - 46.328369520344566, - 47.32720232447755, - 48.178228319362994, - 48.903312552277995, - 49.50419053638759, - 49.95147977738863, - 50.459677804151866, - 50.80715296433605, - 50.97829960001236, - 51.25774347080595 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615417, - 1.4813847491413064, - 1.8198213217004333, - 2.111467924224724, - 2.4511928338715547, - 2.7884298874512945, - 3.0456271397061605, - 3.4032321940809167, - 3.6700641620808914, - 3.9093946461996776, - 4.348079403756525, - 4.744819182987006, - 6.0489236448939145, - 7.840201809802898, - 8.494682676763372, - 9.162883487837572, - 9.900041383924576, - 10.542855292667, - 11.148200056404882, - 11.719055372031143, - 12.237798294671274, - 12.651990363578587, - 13.156089521928232, - 13.524877112379013, - 13.716432493101697, - 14.045620978478409 - ], - "5._384._0.0875": [ - 3.5360780765139292, - 4.255166083200758, - 5.29111405094006, - 7.246718372859257, - 9.78068259109057, - 13.946960992537598, - 19.533764907053822, - 24.756133711660876, - 32.40744198345068, - 37.20374130279261, - 40.64236684493673, - 45.41248197779373, - 48.68103177722378, - 55.807087839035646, - 61.66691220857489, - 63.24788934245661, - 64.65276024628109, - 66.00798943232864, - 67.04638927137164, - 67.93137619471358, - 68.68770507380076, - 69.31656277601168, - 69.78514563919967, - 70.31906874020058, - 70.68397518373732, - 70.86338125599785, - 71.15533647142837 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312545, - 2.1622431316564814, - 2.5060808724236745, - 2.800143720821401, - 3.144794694454098, - 3.5389663499154795, - 3.972828319777032, - 4.876741640220147, - 5.665115305459974, - 6.365217078059232, - 7.5762861535312025, - 8.59420409507729, - 11.524843841404845, - 14.859981018401964, - 15.942430631817126, - 16.978519482404938, - 18.051107967181835, - 18.92649753837637, - 19.706054568416143, - 20.398682321702786, - 20.992444869299153, - 21.4439745986043, - 21.96472441378349, - 22.326341420962663, - 22.50701283196082, - 22.805727147646582 - ], - "5._96._0.075": [ - 2.2092718103274143, - 2.5553235775088416, - 2.85193534445262, - 3.2026153924377607, - 3.550174782211989, - 4.165236221144645, - 5.233547046854669, - 6.52071484133149, - 8.969228949697433, - 10.875741017343405, - 12.436796088437582, - 14.912759621338642, - 16.828988279200853, - 21.716215668574343, - 26.484795410373476, - 27.891989676176898, - 29.175124078931383, - 30.443389814975784, - 31.430855310076836, - 32.280427738655675, - 33.00964572834221, - 33.61646965452663, - 34.06872852107129, - 34.58164074605417, - 34.932642094761974, - 35.10598828939342, - 35.389903169774406 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835194777381192, - 3.1894025608097913, - 3.5431730221711955, - 4.14995457114244, - 4.9602850236753655, - 6.347578461069761, - 8.219303063204094, - 9.914516638470111, - 12.278861307216795, - 13.689375428116989, - 14.674344858546927, - 16.022611202493785, - 16.935365383865182, - 18.932857449180446, - 20.590866358188737, - 21.041366524348163, - 21.444770448561922, - 21.836821848945775, - 22.14035060837515, - 22.399611200201736, - 22.622676684137772, - 22.809243153220393, - 22.948370714060438, - 23.107281147415655, - 23.21577422790068, - 23.26899392646864, - 23.35511895816213 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.4511928335973607, - 2.7884260204953697, - 3.04538794032085, - 3.397478847285279, - 3.65028236953504, - 3.8694446367968838, - 4.256269763172383, - 4.592145183247248, - 5.616342141065902, - 6.8505258017449835, - 7.255864594819363, - 7.646968809849212, - 8.053276846734915, - 8.386585501883108, - 8.683166345880695, - 8.947757383742928, - 9.175550285120444, - 9.348629321286626, - 9.549090750604586, - 9.687603583920982, - 9.75618204850785, - 9.867903170019959 - ], - "5._384._0.0875": [ - 3.519414642750923, - 4.167877970390456, - 5.033726376163877, - 6.505666850113914, - 8.171517377809307, - 10.490884518790367, - 13.057641798784514, - 15.091596800768148, - 17.68751684607798, - 19.161074457078783, - 20.170244304416116, - 21.533887452770426, - 22.450098703200283, - 24.44785294350101, - 26.106290008466924, - 26.556935572090406, - 26.961259778317036, - 27.354567382479086, - 27.659517769608016, - 27.920033833407945, - 28.144407005050972, - 28.332246401451023, - 28.47232450648087, - 28.632424722805496, - 28.741678395827968, - 28.795229262854185, - 28.881805767853283 - ], - "5._48._0.075": [ - 1.526846324373141, - 1.8679037053125445, - 2.1622431316564743, - 2.5060808711202784, - 2.8001402706862746, - 3.144224045078283, - 3.5289604520774644, - 3.9307999739317094, - 4.712428254185614, - 5.347418921621241, - 5.879965415980396, - 6.739706948129181, - 7.408865386614326, - 9.11626514200392, - 10.744546670597042, - 11.212791446300308, - 11.639773033803978, - 12.061220509658641, - 12.391458830061971, - 12.675406212948246, - 12.921007864313719, - 13.127088899769337, - 13.280972380875744, - 13.456545976421273, - 13.576513141553155, - 13.63547462786866, - 13.731049929860575 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.555323572056519, - 2.851927473662024, - 3.2017149990298575, - 3.5404146600729027, - 4.105317906966819, - 5.011588848511913, - 6.010214756195945, - 7.689683107068938, - 8.83802759134417, - 9.696161835980128, - 10.936159020578424, - 11.810006714617264, - 13.795953525503256, - 15.487658517857962, - 15.951619872839778, - 16.36743918194945, - 16.772210126218116, - 17.08580136939843, - 17.353701914617353, - 17.584116928288115, - 17.77669672785507, - 17.92024261930604, - 18.08396769607562, - 18.195727750777714, - 18.25057695718145, - 18.33939900223481 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4_6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835211169055195, - 3.190740568900505, - 3.555806837447424, - 4.222114481719129, - 5.180726827978714, - 6.994692210986222, - 9.801801306478529, - 12.711669365740184, - 17.306958196040448, - 20.313979559079527, - 22.509229131489796, - 25.60266092158644, - 27.740831900656737, - 32.45277663278692, - 36.35173915683929, - 37.40702211445346, - 38.34494163120891, - 39.25111930270079, - 39.94681177557848, - 40.53979417561562, - 41.04705009845453, - 41.46911805581384, - 41.78357052831432, - 42.141771426922816, - 42.38650797893885, - 42.50680080963859, - 42.70233331345696 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.195803175961541, - 1.4813847491413077, - 1.819821321700434, - 2.111467924224724, - 2.451192833864698, - 2.7884297908107003, - 3.0456212407144294, - 3.403113286830256, - 3.6697606314251296, - 3.9089586001860983, - 4.347627656190297, - 4.744628758757631, - 6.049505830754877, - 7.835822093388059, - 8.484042429292838, - 9.139760876169989, - 9.854491322893697, - 10.467358498125922, - 11.034232893032646, - 11.557007985163457, - 12.019866257839624, - 12.37938824387906, - 12.80221488254162, - 13.098433387581728, - 13.246723705247986, - 13.490724587617915 - ], - "5._384._0.0875": [ - 3.5357685212015846, - 4.25447453108904, - 5.290552426961249, - 7.244804859254682, - 9.760735554762402, - 13.799119746084859, - 18.943513819560053, - 23.43681594702994, - 29.529034129749576, - 33.09995548130835, - 35.57087257807374, - 38.91325256763047, - 41.158739210652634, - 46.00440012951232, - 49.975289841764415, - 51.0474459312075, - 52.00428965653315, - 52.93080690361388, - 53.64488507074211, - 54.25421161819308, - 54.77705586647584, - 55.21335367191182, - 55.53863775593689, - 55.90992278140478, - 56.16353003712956, - 56.2880385146237, - 56.48999763797806 - ], - "5._48._0.075": [ - 1.5268463243731447, - 1.8679037053125414, - 2.162243131656477, - 2.5060808723910917, - 2.8001436345943644, - 3.144780823426412, - 3.538777713746986, - 3.9723539371763015, - 4.876240923140578, - 5.66543730741923, - 6.36658716267569, - 7.577124315285288, - 8.59017046930741, - 11.455134478048976, - 14.575088037078471, - 15.540175272345705, - 16.441043549310255, - 17.3479118169563, - 18.066663521644067, - 18.690130397965042, - 19.230542638083087, - 19.683498534013406, - 20.02145513661169, - 20.40478985489511, - 20.6664658538358, - 20.79541745205557, - 21.005528502493263 - ], - "5._96._0.075": [ - 2.2092718103274085, - 2.555323577372538, - 2.8519351478088426, - 3.2025937824298785, - 3.549989093500739, - 4.1646821336920805, - 5.233072953961854, - 6.520941979756781, - 8.960132724550686, - 10.837614671983362, - 12.351003593271576, - 14.693412994353347, - 16.451183264414418, - 20.70497126457557, - 24.522982220920643, - 25.589238623553253, - 26.543013953636727, - 27.46965590738078, - 28.182708846279542, - 28.79043976220002, - 29.309569829839248, - 29.740509716301837, - 30.06094627545974, - 30.424510834948624, - 30.67261564059115, - 30.794632755555284, - 30.993212156611094 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4_7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 15.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8352127302001513, - 3.1908680918238215, - 3.5570150199982864, - 4.229085793544763, - 5.202433855230753, - 7.061209600473721, - 9.97651692656453, - 13.045185967390168, - 17.982480772017013, - 21.271252047103506, - 23.697922500153087, - 27.147785397936314, - 29.55046850167983, - 34.87533964765561, - 39.29603173361724, - 40.49325768734383, - 41.55604916049398, - 42.58183308195911, - 43.36798167624348, - 44.037777549175374, - 44.61000733483925, - 45.08558369172983, - 45.43981914127112, - 45.843090179460155, - 46.118659307443615, - 46.25416652264142, - 46.474655921283706 - ], - "5._24._0.075": [ - 0.8740059532267972, - 1.195803175961542, - 1.4813847491413068, - 1.819821321700434, - 2.1114679242247245, - 2.451192833890158, - 2.7884301498899418, - 3.0456434636831005, - 3.403651154015615, - 3.6716260670279346, - 3.912755221106316, - 4.356467374998892, - 4.759494769105454, - 6.09328298629729, - 7.9412961364592025, - 8.618724055769915, - 9.308071765574113, - 10.064260360602603, - 10.717195857795145, - 11.325096100196635, - 11.889467717197507, - 12.392483773476206, - 12.785587197205533, - 13.250683008757768, - 13.578570131573304, - 13.74351121988725, - 14.016228207959381 - ], - "5._384._0.0875": [ - 3.537339153860883, - 4.262870226284847, - 5.315969547277279, - 7.321435619388486, - 9.936112947019334, - 14.204407248698367, - 19.760318152314884, - 24.711582703072196, - 31.538394290946147, - 35.58587684680458, - 38.40005171341498, - 42.21538744661634, - 44.78238327983052, - 50.31658473923125, - 54.843081044919614, - 56.06383304058538, - 57.152036746920864, - 58.204675152254794, - 59.01482369808337, - 59.70593397335717, - 60.298426206338625, - 60.79245889428853, - 61.16075650450086, - 61.581001719574665, - 61.868100632538244, - 62.00909943185183, - 62.23797631783918 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.867903705312544, - 2.162243131656476, - 2.5060808725121233, - 2.800143954967821, - 3.144833869019466, - 3.539715940436163, - 3.9763498286837806, - 4.892269086965696, - 5.697055737439854, - 6.415737434527838, - 7.664515806699038, - 8.71719044431535, - 11.730877029278274, - 15.077757799141612, - 16.128311640677573, - 17.114880392496225, - 18.113909573290012, - 18.90949206451863, - 19.6023514064881, - 20.20452205705877, - 20.710154059290744, - 21.087896491828268, - 21.516443602278002, - 21.80920321775351, - 21.9536484374961, - 22.189416381947453 - ], - "5._96._0.075": [ - 2.209271810327409, - 2.555323577878822, - 2.8519358786859716, - 3.2026775196974895, - 3.550904029602273, - 4.170406343368212, - 5.254896591986804, - 6.572735408808356, - 9.09746000703989, - 11.065487415857547, - 12.667096150360281, - 15.17198621958764, - 17.07241908811606, - 21.737005948793204, - 25.99396089914289, - 27.192298309433397, - 28.265943079205663, - 29.310200016390944, - 30.11354705536849, - 30.79832861996199, - 31.38274219229705, - 31.867354406306237, - 32.22756320353797, - 32.635854327515396, - 32.91449904138233, - 33.05161467034174, - 33.27504744118438 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4_8": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 15.0, - 30.0 - ], - [ - 15.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83521390106, - 3.1909637342985233, - 3.55792122770089, - 4.234318933581562, - 5.21876950941556, - 7.111614832990994, - 10.11056373615037, - 13.304255026541057, - 18.518970532685664, - 22.044369042102705, - 24.670085957378262, - 28.434126481214705, - 31.075480596923956, - 36.967007522101625, - 41.88064955012611, - 43.21301957496745, - 44.39471524848902, - 45.53435313062214, - 46.406403039672874, - 47.14910821992622, - 47.78287187409569, - 48.309014452774974, - 48.70082700343199, - 49.14661704007344, - 49.45128227834391, - 49.60116095758315, - 49.84527856023825 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.4813847491413081, - 1.8198213217004324, - 2.1114679242247236, - 2.451192833909255, - 2.7884304191993747, - 3.045660130912619, - 3.4040545619719356, - 3.673025287330593, - 3.915603436073409, - 4.3631030270647555, - 4.770664010851438, - 6.126356768914951, - 8.021748700704597, - 8.72179146205668, - 9.437383875780068, - 10.226232074423642, - 10.91110526838138, - 11.552079601686485, - 12.150467839428664, - 12.68686045634634, - 13.108340945912543, - 13.609889982570108, - 13.965779928180952, - 14.145746264998753, - 14.444957297715039 - ], - "5._384._0.0875": [ - 3.5385180443847837, - 4.269175902621764, - 5.335112367817748, - 7.379592591251421, - 10.070655171657723, - 14.520872246351406, - 20.41372246224612, - 25.75554473720777, - 33.23673822372381, - 37.72379594664652, - 40.86011425688447, - 45.1244555049501, - 47.99929091160211, - 54.19529713477677, - 59.25620226786147, - 60.619758800680756, - 61.8339551761055, - 63.00734086876476, - 63.909207169555096, - 64.67835052887197, - 65.33716938764755, - 65.8860903375165, - 66.29527052137485, - 66.76201612494658, - 67.08093212493662, - 67.23760673727163, - 67.4921115091408 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125416, - 2.1622431316564787, - 2.5060808726028916, - 2.8001441952479063, - 3.144873653244084, - 3.540419646725224, - 3.979347993289872, - 4.9043198907596155, - 5.72087999808215, - 6.452855636219181, - 7.730850257680718, - 8.814043861479881, - 11.944482885330554, - 15.474794979081432, - 16.596556232651924, - 17.65562068060096, - 18.733878742144945, - 19.59665855248339, - 20.351104333427344, - 21.008829430595267, - 21.5624093872475, - 21.97671152472228, - 22.447132616129196, - 22.768884006828337, - 22.92786376219209, - 23.187857918321356 - ], - "5._96._0.075": [ - 2.2092718103274085, - 2.555323578258537, - 2.8519364268438174, - 3.202740322734169, - 3.5515902665958445, - 4.17470242064408, - 5.271321661919149, - 6.611890211942486, - 9.202412304313315, - 11.241029886489315, - 12.912307765949919, - 15.547770731455877, - 17.5651830408324, - 22.57755912255198, - 27.224315411933127, - 28.543427122381996, - 29.727774258476046, - 30.881564599580837, - 31.76943586199232, - 32.526622809091194, - 33.17247843436801, - 33.70762672579371, - 34.10529811219582, - 34.555689074760835, - 34.863105519047224, - 35.01447149304295, - 35.26143654077793 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4_9": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 5.0, - 40.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 10.0, - 40.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 15.0, - 30.0 - ], - [ - 15.0, - 35.0 - ], - [ - 15.0, - 40.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835214811729444, - 3.191038123057198, - 3.5586260978660595, - 4.238391915228239, - 5.231507946561699, - 7.151128794054718, - 10.21666120368133, - 13.51133038977782, - 18.95501459271787, - 22.68079532669389, - 25.478283028568413, - 29.51920190891991, - 32.37535708575504, - 38.789233330324116, - 44.1683364420255, - 45.62951232379906, - 46.92465726843978, - 48.17296798232406, - 49.12686757227683, - 49.939024528029485, - 50.631292559991415, - 51.20542047577396, - 51.632876455622025, - 52.118952686496925, - 52.45119539017573, - 52.61470895470477, - 52.88129493138586 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.195803175961542, - 1.4813847491413084, - 1.8198213217004344, - 2.1114679242247245, - 2.451192833924107, - 2.788430628662272, - 3.0456730943151524, - 3.4043683282001433, - 3.674113654888109, - 3.917819158442404, - 4.368267565977953, - 4.77936290586547, - 6.152224701749474, - 8.08513832059299, - 8.803202919999432, - 9.539830269951565, - 10.35503948614304, - 11.06590011084179, - 11.73400085242105, - 12.360572370538987, - 12.92495150207961, - 13.370532578627307, - 13.903563757528335, - 14.284189074108486, - 14.477692670437904, - 14.801337136500607 - ], - "5._384._0.0875": [ - 3.5394355026319917, - 4.274085602627163, - 5.3500488215462605, - 7.425236257140273, - 10.17713588762754, - 14.774879383536906, - 20.947741259822074, - 26.624299595764533, - 34.687651857560326, - 39.578630547015486, - 43.01613214228379, - 47.70555841801493, - 50.87469271101252, - 57.70692180805619, - 63.28276018304753, - 64.78388418981623, - 66.11924227563452, - 67.40855454167266, - 68.39824062554061, - 69.24205985445857, - 69.96423391652506, - 70.56549748344443, - 71.01365450613962, - 71.52470105844701, - 71.87393656167646, - 72.04555849742648, - 72.32453770628041 - ], - "5._48._0.075": [ - 1.5268463243731378, - 1.8679037053125447, - 2.1622431316564814, - 2.506080872673493, - 2.8001443821324234, - 3.144904596547583, - 3.5409669953346103, - 3.981680637696233, - 4.913710370813636, - 5.739475696557407, - 6.48187766970423, - 7.782917874190976, - 8.890331486785566, - 12.11485689658106, - 15.796060837074295, - 16.97769093703813, - 18.098431650851865, - 19.244963353568604, - 20.166542850529325, - 20.97558880332802, - 21.683214573456116, - 22.28038892240046, - 22.728275600410328, - 23.237526442669882, - 23.586396747025454, - 23.75906287369005, - 24.04203712455829 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.555323578553876, - 2.851936853188805, - 3.2027891695914237, - 3.5521240271724186, - 4.1780455456090975, - 5.284130818287365, - 6.642528963770898, - 9.28522818536104, - 11.380398541252108, - 13.108024122402853, - 15.850470852742214, - 17.965131262109672, - 23.273855985236416, - 28.26644710647456, - 29.69575479033731, - 30.98212603155965, - 32.23778982021208, - 33.20478452958437, - 34.030084770436815, - 34.733897352935024, - 35.316785359950075, - 35.74988121185051, - 36.24008018455158, - 36.57473419230536, - 36.7396177323459, - 37.00897849580251 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835212261944466, - 3.1908301793012535, - 3.5566689765509913, - 4.227215949610627, - 5.196842224885245, - 7.0440820866322404, - 9.928731546062709, - 12.943897997835265, - 17.731924831712323, - 20.87229986876777, - 23.165206928936378, - 26.393573310751727, - 28.62231096260378, - 33.523419151724845, - 37.569205395827126, - 38.66304767321368, - 39.63470574734655, - 40.573074572594216, - 41.29313958945059, - 41.906812798474704, - 42.43162674355349, - 42.86821000783666, - 43.1934677847563, - 43.56395236687505, - 43.817090546221344, - 43.941521932125596, - 44.14381796186636 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224723, - 2.45119283388252, - 2.788430042172163, - 3.045636811371912, - 3.403494282353935, - 3.671100852200699, - 3.9117176975869334, - 4.354148691102873, - 4.755692530827026, - 6.082237929165074, - 7.913815192741123, - 8.582889494151143, - 9.26155944309715, - 10.003161606353768, - 10.640190300135753, - 11.230143857435756, - 11.774445582811454, - 12.25625466428401, - 12.630210189019634, - 13.069251260944311, - 13.376120281818041, - 13.529495346282447, - 13.78144439602977 - ], - "5._384._0.0875": [ - 3.536887439631412, - 4.260621986890672, - 5.30941743513026, - 7.301520558516979, - 9.888095658935889, - 14.0750989618675, - 19.441219378080824, - 24.136796960934703, - 30.49804481780765, - 34.22088340990063, - 36.79426596763055, - 40.27155943657565, - 42.605807850364556, - 47.63750456045575, - 51.756810235839026, - 52.868572894975635, - 53.860578190825606, - 54.82096936395555, - 55.56099759279513, - 56.19244726142982, - 56.734213685759, - 57.186261258870765, - 57.52329130296054, - 57.907979170443376, - 58.17075394245952, - 58.29977096376778, - 58.50906818280206 - ], - "5._48._0.075": [ - 1.5268463243731383, - 1.8679037053125402, - 2.1622431316564765, - 2.5060808724758146, - 2.800143858860523, - 3.1448180264855656, - 3.5394455528414155, - 3.9752550951869865, - 4.88811680385552, - 5.689083227445786, - 6.403497873623544, - 7.642527663005111, - 8.684436343273642, - 11.648957886171534, - 14.89666948542051, - 15.902523330107925, - 16.84120545052638, - 17.785407337985987, - 18.532757895495582, - 19.180217121778256, - 19.740574932404513, - 20.209541459248, - 20.55903247757555, - 20.954923737649256, - 21.224930037000323, - 21.357933327907748, - 21.574617724454846 - ], - "5._96._0.075": [ - 2.2092718103274103, - 2.555323577726938, - 2.851935659445512, - 3.2026525605057574, - 3.5506400534107025, - 4.168859674233158, - 5.249275018150159, - 6.559575615112115, - 9.060991140192742, - 11.00111555945029, - 12.571624795887127, - 15.009731452208731, - 16.84307515732602, - 21.281943234606615, - 25.257616427573492, - 26.3656960429444, - 27.355646640430965, - 28.316439477280184, - 29.054961075778653, - 29.684015441755214, - 30.220964434886575, - 30.666423612436333, - 30.997567553990688, - 31.373152571066402, - 31.629428561237248, - 31.755464598806842, - 31.96062194630897 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5_6": { + "2_2": { "bore_locations": [ [ 0.0, @@ -20681,22 +2029,6 @@ 0.0, 5.0 ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], [ 5.0, 0.0 @@ -20704,241 +2036,153 @@ [ 5.0, 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 20.0, - 25.0 ] ], "g": { "5._192._0.08": [ - 2.83521444760823, - 3.1910089415373464, - 3.558371518524349, - 4.237133309139093, - 5.227965201817827, - 7.140189532584869, - 10.182468257593936, - 13.428955201521454, - 18.706211502923495, - 22.239533993863674, - 24.849313964051788, - 28.556222502919436, - 31.133425901563022, - 36.82439937606868, - 41.52816069862249, - 42.79940828612951, - 43.926705494618346, - 45.013830502345606, - 45.846214343889294, - 46.55520845436563, - 47.16060387944192, - 47.6635302173305, - 48.038114502365254, - 48.464494271093166, - 48.7558705053121, - 48.899169080629825, - 49.13241567285412 + 2.8351729237398393, + 3.187625001099388, + 3.526650044183149, + 4.058948328555595, + 4.695595826630846, + 5.645955947827803, + 6.75199902668803, + 7.654056125477437, + 8.8295373343034, + 9.505225082070822, + 9.970821690581543, + 10.604517453302051, + 11.032316935322866, + 11.972865896385606, + 12.759872798830232, + 12.974553793259052, + 13.167610267540615, + 13.355840260878113, + 13.502187407405124, + 13.627318928756589, + 13.735282746334141, + 13.825809741457272, + 13.893347166070974, + 13.970596790045226, + 14.023313509428306, + 14.049144330457892, + 14.090854715886588 ], "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615433, - 1.481384749141307, - 1.8198213217004335, - 2.1114679242247254, - 2.4511928339181654, - 2.7884305448871074, - 3.045667933253777, - 3.4042503042014327, - 3.673735701494519, - 3.917102165990339, - 4.366758858486466, - 4.776985655289066, - 6.145437110680342, - 8.067025750967296, - 8.778968118174959, - 9.506885099448699, - 10.308906033125632, - 11.003798309787776, - 11.652430740721604, - 12.255423745848491, - 12.792977488071054, - 13.21274209185525, - 13.70813815559165, - 14.056069053909402, - 14.230597917294789, - 14.518285259048824 + 0.8740013793970963, + 1.1957934696806856, + 1.4813667488882372, + 1.8197853662506762, + 2.1114044341807157, + 2.4510705253864713, + 2.788187524831072, + 3.044696167323624, + 3.389301466509918, + 3.6238334445562486, + 3.8172234620513863, + 4.139359785435122, + 4.401879357678648, + 5.121352318381859, + 5.866280620300906, + 6.090065304640391, + 6.298807049848143, + 6.509232545774595, + 6.6778214753752865, + 6.825248855115401, + 6.955178640279667, + 7.066160722878991, + 7.150130631281159, + 7.247402603037865, + 7.314637831281445, + 7.347899492449007, + 7.402074061153792 ], "5._384._0.0875": [ - 3.5391012065704643, - 4.27257508662953, - 5.345889427189335, - 7.412291480943808, - 10.142744419166958, - 14.663452979232003, - 20.614715814725013, - 25.942454693616966, - 33.28516160400033, - 37.6284983481508, - 40.643055925946996, - 44.72214156766028, - 47.46243059870045, - 53.35784662574217, - 58.170660500533735, - 59.46755947309802, - 60.62322798305135, - 61.740733053025075, - 62.600448750904675, - 63.33379545882413, - 63.96235802518071, - 64.48637518027024, - 64.87703241648606, - 65.32278075535028, - 65.62732850998472, - 65.77691300888307, - 66.01978121692412 + 3.498202657558257, + 4.059507710829742, + 4.728549908300283, + 5.718298478054254, + 6.695598384635395, + 7.918919559501185, + 9.175209287898596, + 10.134696989496492, + 11.3395882766406, + 12.019506670062515, + 12.48495026821673, + 13.115725677557018, + 13.540591400366639, + 14.474053667337763, + 15.255546352872228, + 15.468670821792806, + 15.660444883601343, + 15.847432011925115, + 15.992846228666961, + 16.117138946341278, + 16.22438283629357, + 16.31430880283502, + 16.381374505740233, + 16.45808138679694, + 16.51039562508549, + 16.536012812409567, + 16.577355525545745 ], "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125422, - 2.162243131656476, - 2.5060808726452497, - 2.800144307386522, - 3.1448923378057554, - 3.5407665316111783, - 3.9809213055219472, - 4.911057341258801, - 5.7345975049091935, - 6.474537807895156, - 7.769421641992184, - 8.869380266985297, - 12.050480846329132, - 15.622575450385499, - 16.747476412188277, - 17.8039400651553, - 18.87283340211514, - 19.722349216325487, - 20.46069464508857, - 21.100723676375814, - 21.636692011386113, - 22.036210019007218, - 22.488312031797026, - 22.796615439289024, - 22.94860772550027, - 23.196627062518044 + 1.5268359332879173, + 1.8678839385147374, + 2.1622087383456443, + 2.506015111231376, + 2.800022215479672, + 3.143265912621415, + 3.5156496031342086, + 3.876810167448651, + 4.510598902563926, + 4.97292547403106, + 5.3314780742753, + 5.86690818888861, + 6.254410228495219, + 7.165237276197894, + 7.97067816717318, + 8.195759462193532, + 8.399726151723728, + 8.600223537255848, + 8.757233427901257, + 8.892268671966473, + 9.009391745097531, + 9.108052422862833, + 9.181950800737681, + 9.266735500969588, + 9.324840376214043, + 9.353415812152894, + 9.399728543565555 ], "5._96._0.075": [ - 2.209271810327405, - 2.5553235784357407, - 2.8519366826886094, - 3.2027699008474553, - 3.551928038647379, - 4.176993437005642, - 5.28056873400609, - 6.634338338040775, - 9.260386370828902, - 11.33290413347482, - 13.031844236198308, - 15.70385568905499, - 17.739578598838328, - 22.74599951979482, - 27.303324886066342, - 28.582002562638632, - 29.725139989989078, - 30.8348642059186, - 31.686794411028234, - 32.41211428105273, - 33.03023309777194, - 33.5421790522247, - 33.92249660138713, - 34.35329023329461, - 34.647215311901654, - 34.79184866232004, - 35.02761301644761 + 2.209261920932471, + 2.555305553336681, + 2.8518866359196213, + 3.2004882339226746, + 3.5277476508021492, + 4.02978044724101, + 4.745286216946609, + 5.439130433328325, + 6.459200418166225, + 7.08807746324128, + 7.534287055485237, + 8.154677466719678, + 8.57963145524655, + 9.525731186489454, + 10.324498118789299, + 10.543323487480553, + 10.740258694731052, + 10.932543867544993, + 11.082214965494755, + 11.210350854440943, + 11.321010221886622, + 11.413873719757635, + 11.483221068226714, + 11.562584991721117, + 11.616811000251728, + 11.64341307682708, + 11.68642648116794 ] }, "logtime": [ @@ -20971,7 +2215,7 @@ 3.003 ] }, - "5_7": { + "2_4": { "bore_locations": [ [ 0.0, @@ -20989,18 +2233,6 @@ 0.0, 15.0 ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], [ 5.0, 0.0 @@ -21016,249 +2248,153 @@ [ 5.0, 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 15.0, - 30.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 20.0, - 25.0 - ], - [ - 20.0, - 30.0 ] ], "g": { "5._192._0.08": [ - 2.8352160087987066, - 3.1911366293658077, - 3.5595877503960627, - 4.2442258511149475, - 5.250301167990765, - 7.209834757435488, - 10.36946086103237, - 13.792684956117702, - 19.460364137362607, - 23.32183130951512, - 26.20397536446149, - 30.33348488832197, - 33.22604151779046, - 39.64827311393372, - 44.97200414444327, - 46.41127011587434, - 47.68578885421903, - 48.91342537141683, - 49.85152025041537, - 50.650144168377885, - 51.331085392040585, - 51.89603834505562, - 52.316710961073035, - 52.795241892930925, - 53.12230443525592, - 53.283229491687074, - 53.54546750520715 + 2.835189313206151, + 3.1889552931299114, + 3.538903600312914, + 4.125245273292659, + 4.885340092341224, + 6.143016730599865, + 7.795423613565886, + 9.27950543596083, + 11.353436747367905, + 12.596840822504834, + 13.468067160431177, + 14.664470966131761, + 15.476574467940123, + 17.259801418963622, + 18.744684236603973, + 19.148663438954305, + 19.510655248879416, + 19.862646518364635, + 20.135320763803648, + 20.368260758547958, + 20.56874655291972, + 20.73647327867843, + 20.86155289126196, + 21.004430911305807, + 21.101968292861095, + 21.14980656381263, + 21.2272004431566 ], "5._24._0.075": [ - 0.8740059532267969, - 1.195803175961543, - 1.4813847491413075, - 1.819821321700433, - 2.111467924224724, - 2.451192833943628, - 2.7884309039692052, - 3.045690163174915, - 3.404790333704355, - 3.6756180015140654, - 3.920949604119146, - 4.375777106300585, - 4.792232315544887, - 6.191042916717176, - 8.179051062298406, - 8.92302047211656, - 9.688190819428279, - 10.53655133305984, - 11.276621759075839, - 11.971828282663182, - 12.62231575277514, - 13.205917703571588, - 13.664282486065678, - 14.208249404485976, - 14.592466717555043, - 14.786042977933816, - 15.10653662461536 + 0.8740059532267965, + 1.1958031759615428, + 1.481384749141307, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833508249, + 2.7884247637014252, + 3.045310119636185, + 3.3955843569013524, + 3.6436674974056684, + 3.855925700780031, + 4.224811171067863, + 4.5397453647967625, + 5.475296090778514, + 6.570578898325478, + 6.92687615541592, + 7.270320655734392, + 7.627303621650882, + 7.920731222490932, + 8.182500131978642, + 8.41680285150039, + 8.619260142203307, + 8.773624250962664, + 8.953159155105311, + 9.077674641056438, + 9.139455677919402, + 9.240304416029538 ], "5._384._0.0875": [ - 3.540684166099684, - 4.281129708236007, - 5.37209309695766, - 7.492732493714258, - 10.330392110744432, - 15.107838626652223, - 21.531921606667996, - 27.397568581029397, - 35.61692924396306, - 40.534587818598, - 43.96424146655387, - 48.61512863810956, - 51.74386465616055, - 58.46675592745313, - 63.94290211563782, - 65.41653920624294, - 66.72807614527058, - 67.99487586748367, - 68.96794571772581, - 69.79773260382063, - 70.50826362353733, - 71.10011728023058, - 71.54130902347457, - 72.04455176042308, - 72.3884446193061, - 72.55741510918489, - 72.83198153791605 + 3.513927363245156, + 4.138323236620862, + 4.946934659382122, + 6.276023786386213, + 7.745123433015339, + 9.775152078177463, + 12.027507501059624, + 13.821671148549264, + 16.122385823361906, + 17.4324968039469, + 18.331112481880304, + 19.547113368196523, + 20.364969660768274, + 22.15086918925759, + 23.635424304237905, + 24.039034587050264, + 24.401264702494476, + 24.753712834574596, + 25.027064089428094, + 25.260592821811322, + 25.461753936083383, + 25.63018173599274, + 25.755780013529776, + 25.899333215570362, + 25.997285001804187, + 26.04529040415504, + 26.122885369700576 ], "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125418, - 2.162243131656481, - 2.506080872766288, - 2.8001446277622337, - 3.1449454173747937, - 3.541710154672102, - 3.984970917712823, - 4.927499616546537, - 5.7673187213549815, - 6.525772345222051, - 7.86159324032452, - 9.00458261598653, - 12.350505865953032, - 16.180592259946017, - 17.4040338769195, - 18.559814340883175, - 19.735850474942875, - 20.674742293418838, - 21.49379075977045, - 22.205450107178287, - 22.802264947234267, - 23.247545440767514, - 23.75132329563177, - 24.094984358774592, - 24.26458597393411, - 24.541834895954246 + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808706966746, + 2.800139149366015, + 3.1440381898974845, + 3.5256483410086874, + 3.916608969868303, + 4.6564326435683565, + 5.2408522575199115, + 5.722156280418049, + 6.488021692642983, + 7.078108817637764, + 8.576263856323838, + 10.010562551630642, + 10.425304910732308, + 10.804721194183715, + 11.180326309928033, + 11.475509468067585, + 11.729855694876939, + 11.950339156563452, + 12.135706243920572, + 12.274298805136475, + 12.43266659756452, + 12.540977602810342, + 12.594230671057593, + 12.680561756879944 ], "5._96._0.075": [ - 2.2092718103274036, - 2.5553235789420263, - 2.851937413576538, - 3.2028537155346757, - 3.5528480923641514, - 4.182808720655418, - 5.303030370647647, - 6.688336567634186, - 9.406571160161274, - 11.57894262352434, - 13.37663647905118, - 16.233052481758186, - 18.43276902172264, - 23.917790891601452, - 28.992380257414332, - 30.427134839076754, - 31.71168828859476, - 32.95982336482503, - 33.917455765621916, - 34.73269171783086, - 35.426599409249704, - 36.00054806778224, - 36.42669535644342, - 36.90885453560493, - 37.237820141561905, - 37.399791107516585, - 37.66418988617597 + 2.209271810327405, + 2.5553235702845147, + 2.851924915529097, + 3.201421474439214, + 3.5371855730616306, + 4.085002516161643, + 4.9363362454780155, + 5.844581988979856, + 7.333675535782044, + 8.340589006658128, + 9.091921499272008, + 10.179343803963988, + 10.948160171270874, + 12.705528852454755, + 14.213545899477472, + 14.628526877105443, + 15.001108095533844, + 15.364261803956104, + 15.645980395169984, + 15.886802623855722, + 16.09410089941256, + 16.267481710205853, + 16.396752054083837, + 16.544255556142314, + 16.644951440401478, + 16.694366889837227, + 16.774367453977067 ] }, "logtime": [ @@ -21291,7 +2427,7 @@ 3.003 ] }, - "5_8": { + "2_5": { "bore_locations": [ [ 0.0, @@ -21313,18 +2449,6 @@ 0.0, 20.0 ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], [ 5.0, 0.0 @@ -21344,261 +2468,357 @@ [ 5.0, 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351925911221576, + 3.1892213571751724, + 3.541355680931138, + 4.138584767756017, + 4.9241374783226926, + 6.249826317837372, + 8.042260934494504, + 9.703216610321878, + 12.09809062521322, + 13.56908007334359, + 14.612006032564038, + 16.055720129237326, + 17.041446513509268, + 19.21235807125101, + 21.021394579795135, + 21.51348253987512, + 21.953838825026494, + 22.381596137133617, + 22.71246057740695, + 22.995009669704974, + 23.237929131473347, + 23.440952165864083, + 23.592323435875723, + 23.765132002398985, + 23.883117319556238, + 23.9410075258365, + 24.034741663406493 ], - [ - 5.0, - 25.0 - ], - [ - 5.0, - 30.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 10.0, - 30.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961543, + 1.4813847491413061, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833561717, + 2.788425517737825, + 3.045356714841056, + 3.3966911071229466, + 3.6474066614447547, + 3.8633595181679907, + 4.24146678775765, + 4.566884714356566, + 5.547880470514063, + 6.726814251230247, + 7.118959710629289, + 7.50128704873647, + 7.9035098800175545, + 8.238003360525568, + 8.5395714881233, + 8.812074243127194, + 9.049545264964225, + 9.231894169168777, + 9.445246167913844, + 9.59406803876897, + 9.66821594998837, + 9.789711570773129 ], - [ - 15.0, - 30.0 + "5._384._0.0875": [ + 3.517089669530491, + 4.154236578069029, + 4.991813562490588, + 6.397124777871605, + 7.993192537890449, + 10.273204407311878, + 12.894363852555866, + 15.03591773423202, + 17.826301894246654, + 19.428894473358316, + 20.531330089142955, + 22.024350568112386, + 23.028917741747733, + 25.218676239030803, + 27.034574164062334, + 27.527694270576607, + 27.969766769490864, + 28.399509205537253, + 28.732408761913508, + 29.016742293317094, + 29.261480255157917, + 29.466255352215995, + 29.61894760132361, + 29.793411897991778, + 29.91247707075819, + 29.970849669315502, + 30.06526432438584 ], - [ - 15.0, - 35.0 + "5._48._0.075": [ + 1.5268463243731425, + 1.8679037053125433, + 2.1622431316564765, + 2.5060808709508366, + 2.8001398221265577, + 3.1441492286179065, + 3.527561651194066, + 3.9244278621678506, + 4.685625175731641, + 5.295453920390567, + 5.803427043965115, + 6.6229181920128095, + 7.264275168426223, + 8.932368370759292, + 10.58456660789766, + 11.071975122419524, + 11.520931091653425, + 11.96807575491938, + 12.320962857674967, + 12.626044874588079, + 12.890997615805377, + 13.113976808931236, + 13.280824408999106, + 13.471430249883822, + 13.601864227263004, + 13.666054533956704, + 13.770242133670214 ], + "5._96._0.075": [ + 2.2092718103274054, + 2.555323571347717, + 2.8519264502576633, + 3.20159650900156, + 3.539052908031279, + 4.096048940752249, + 4.975279344723372, + 5.929988032282506, + 7.533985925741476, + 8.64781926922027, + 9.494276092360495, + 10.740984617263898, + 11.637037095800018, + 13.720762587803135, + 15.536368860385512, + 16.03891768592228, + 16.490303967511636, + 16.930398915078918, + 17.271561697172185, + 17.563187144528, + 17.81397563275722, + 18.023509191350684, + 18.179684517471944, + 18.35771990199947, + 18.47926197550023, + 18.538934132395124, + 18.635627554320685 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_3": { + "bore_locations": [ [ - 20.0, + 0.0, 0.0 ], [ - 20.0, + 0.0, 5.0 ], [ - 20.0, + 0.0, 10.0 ], [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 20.0, - 25.0 + 5.0, + 0.0 ], [ - 20.0, - 30.0 + 5.0, + 5.0 ], [ - 20.0, - 35.0 + 5.0, + 10.0 ] ], "g": { "5._192._0.08": [ - 2.8352171796926875, - 3.1912323955198802, - 3.56049999565259, - 4.249550028573317, - 5.267110970892145, - 7.262622452490169, - 10.513023481366805, - 14.075543864660455, - 20.060281189008855, - 24.197506543401715, - 27.313866241728935, - 31.81556173840786, - 34.99223632333103, - 42.089113929496186, - 47.99705654658159, - 49.595787304114204, - 51.01001516903632, - 52.37090685322932, - 53.408958395159274, - 54.2922718199328, - 55.04440678104219, - 55.66766757792533, - 56.13163963757638, - 56.65910131703204, - 57.01965614833479, - 57.19714145360328, - 57.48668867212045 + 2.8351838500296616, + 3.1885118572313673, + 3.534817814223326, + 4.1030737424674095, + 4.821317420742483, + 5.969919191578708, + 7.41028413925126, + 8.648650678142598, + 10.318019242462421, + 11.295421939311396, + 11.97337743517005, + 12.898811056559623, + 13.524508345420257, + 14.897437624552998, + 16.042123430945267, + 16.35383097791215, + 16.633592896224254, + 16.90595883307184, + 17.117309952985618, + 17.297937101829362, + 17.45358097851654, + 17.58393310527604, + 17.6811611636915, + 17.79229429280022, + 17.868148885395772, + 17.905336255686425, + 17.965445068310917 ], "5._24._0.075": [ - 0.874005953226797, - 1.195803175961541, - 1.4813847491413068, - 1.819821321700433, - 2.1114679242247245, - 2.451192833962722, - 2.788431173280784, - 3.045706835618799, - 3.40519536343196, - 3.6770298713540206, - 3.9238359425768987, - 4.382546804128344, - 4.803687731545685, - 6.22550348281308, - 8.26454272545655, - 9.033327122241456, - 9.827594044338952, - 10.712497255272448, - 11.488618159662211, - 12.221409490821387, - 12.910766728530104, - 13.532654737824, - 14.023630504289848, - 14.609443480426677, - 15.025682797415206, - 15.236399684731932, - 15.587059398091673 + 0.8740059532267962, + 1.1958031759615424, + 1.4813847491413075, + 1.8198213217004349, + 2.111467924224728, + 2.4511928334191357, + 2.788423506974107, + 3.0452324610064143, + 3.3937398837242934, + 3.637437610795647, + 3.843546410724326, + 4.197128320327028, + 4.494757418969375, + 5.356757547871304, + 6.322806150411278, + 6.626738081951607, + 6.915404542282874, + 7.21101958981349, + 7.450860982652266, + 7.66246734371669, + 7.850165882224263, + 8.011164200847652, + 8.133224321258036, + 8.274627098240014, + 8.37233003387617, + 8.420668855356707, + 8.49937572606141 ], "5._384._0.0875": [ - 3.5418723153370695, - 4.2875548225430595, - 5.391829583210791, - 7.553797923045855, - 10.47444288412533, - 15.4552764443417, - 22.26690742381884, - 28.591324881289722, - 37.590797272722426, - 43.03731757173099, - 46.85583270985285, - 52.048524431573, - 55.5484418342339, - 63.06474107299005, - 69.17697562347936, - 70.81987198491822, - 72.28036229442219, - 73.68953892650171, - 74.7703665517925, - 75.6917736235231, - 76.48001038324286, - 77.13605237149497, - 77.62504853785302, - 78.1826382392934, - 78.5637326590175, - 78.75104578471024, - 79.0556567040888 + 3.508669460749622, + 4.111915670923915, + 4.873040032123389, + 6.080558225789574, + 7.357967553781383, + 9.04485058828995, + 10.84277364416776, + 12.241098615273712, + 14.011222366677718, + 15.01309719121016, + 15.699134890832847, + 16.62764066517033, + 17.252332732919882, + 18.619928993318393, + 19.76028670279949, + 20.070751033016197, + 20.34972432420409, + 20.621432400545174, + 20.832432856467467, + 21.012738747514504, + 21.168177723656544, + 21.298415605446706, + 21.395540979639048, + 21.50658808640696, + 21.58234324516048, + 21.619456039757466, + 21.679401052203215 ], "5._48._0.075": [ - 1.526846324373144, - 1.8679037053125487, - 2.1622431316564796, - 2.506080872857054, - 2.8001448680440215, - 3.1449852270814374, - 3.5424179084997003, - 3.9880093956834037, - 4.939862149723824, - 5.79197569202499, - 6.564469395710022, - 7.931575415279252, - 9.107719981191298, - 12.583168624254064, - 16.62201014777784, - 17.92759700079677, - 19.16739965914743, - 20.43548697638933, - 21.452461518109263, - 22.34301280497745, - 23.118964178222107, - 23.771011667028986, - 24.258204548647722, - 24.80965662349337, - 25.18613943442992, - 25.37217522339887, - 25.67688529446201 - ], - "5._96._0.075": [ - 2.209271810327418, - 2.555323579321738, - 2.851937961742485, - 3.202916576636184, - 3.5535381677970186, - 4.18717316823856, - 5.319936490017815, - 6.729164937306775, - 9.518352219988081, - 11.768632926224731, - 13.64439883883691, - 16.64917886255251, - 18.983504338698914, - 24.87378358615821, - 30.407113640680546, - 31.984277484052726, - 33.39913505617774, - 34.775837801132, - 35.8321176604548, - 36.73155863532055, - 37.496514530753714, - 38.128583165876954, - 38.5976884009178, - 39.12794358595513, - 39.489739271230974, - 39.6679839630719, - 39.95935698577689 + 1.5268463243731434, + 1.8679037053125456, + 2.162243131656478, + 2.5060808702730704, + 2.8001380280984436, + 3.1438531258067117, + 3.5224600129449035, + 3.9035943923639613, + 4.608135080323152, + 5.1510836559379705, + 5.589462884077594, + 6.27130271990618, + 6.783963554912862, + 8.04316830464235, + 9.202414931053042, + 9.53127928011967, + 9.83044491677738, + 10.125260643940114, + 10.356342764412293, + 10.555043007864295, + 10.727181907122153, + 10.87191268601469, + 10.980113122105404, + 11.103877010708246, + 11.188516611811483, + 11.230104665601413, + 11.297459077760191 + ], + "5._96._0.075": [ + 2.2092619209324718, + 2.555305556880593, + 2.8518917514576345, + 3.201071628572207, + 3.5339683812307245, + 4.066374782143852, + 4.871306856588727, + 5.703345918840731, + 7.011014828442001, + 7.859290682278471, + 8.476335068125367, + 9.349652040268383, + 9.955723894960455, + 11.316721448596432, + 12.4702954875727, + 12.786558094229333, + 13.070633086294775, + 13.347621860741711, + 13.562753164373564, + 13.746815702553597, + 13.905500700816589, + 14.038445223288367, + 14.137675478115584, + 14.251099311683415, + 14.328597138129837, + 14.366636071121864, + 14.428211518355958 ] }, "logtime": [ @@ -21631,7 +2851,7 @@ 3.003 ] }, - "6_6": { + "3_3": { "bore_locations": [ [ 0.0, @@ -21645,18 +2865,6 @@ 0.0, 10.0 ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], [ 5.0, 0.0 @@ -21669,18 +2877,6 @@ 5.0, 10.0 ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ], - [ - 5.0, - 25.0 - ], [ 10.0, 0.0 @@ -21692,237 +2888,153 @@ [ 10.0, 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 20.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 15.0, - 15.0 - ], - [ - 15.0, - 20.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 20.0, - 10.0 - ], - [ - 20.0, - 15.0 - ], - [ - 20.0, - 20.0 - ], - [ - 20.0, - 25.0 - ], - [ - 25.0, - 0.0 - ], - [ - 25.0, - 5.0 - ], - [ - 25.0, - 10.0 - ], - [ - 25.0, - 15.0 - ], - [ - 25.0, - 20.0 - ], - [ - 25.0, - 25.0 ] ], "g": { "5._192._0.08": [ - 2.83521663331447, - 3.1911878576853034, - 3.560081573640177, - 4.247163908669402, - 5.259677180126459, - 7.23924511472876, - 10.447868176066773, - 13.942965071629349, - 19.756898724440635, - 23.729200231483375, - 26.69673685660295, - 30.948444394774704, - 33.92505912275877, - 40.524097910570646, - 45.9832741565197, - 47.4576772357258, - 48.76263040219454, - 50.019062314583046, - 50.97872071412914, - 51.79559022146965, - 52.491905154499115, - 53.06949237423321, - 53.49955846204977, - 53.98874282668598, - 54.32309322448679, - 54.48761334687621, - 54.75575287511337 + 2.835194777381192, + 3.1894025608097913, + 3.5431730221711955, + 4.14995457114244, + 4.9602850236753655, + 6.347578461069761, + 8.219303063204094, + 9.914516638470111, + 12.278861307216795, + 13.689375428116989, + 14.674344858546927, + 16.022611202493785, + 16.935365383865182, + 18.932857449180446, + 20.590866358188737, + 21.041366524348163, + 21.444770448561922, + 21.836821848945775, + 22.14035060837515, + 22.399611200201736, + 22.622676684137772, + 22.809243153220393, + 22.948370714060438, + 23.107281147415655, + 23.21577422790068, + 23.26899392646864, + 23.35511895816213 ], "5._24._0.075": [ - 0.8740059532267968, - 1.195803175961542, - 1.4813847491413084, + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, 1.8198213217004344, - 2.1114679242247245, - 2.451192833953814, - 2.7884310476047123, - 3.0456990616246222, - 3.4050083442379275, - 3.6763862918772694, - 3.922534072185545, - 4.379535772365788, - 4.798634609761959, - 6.210355322197774, - 8.22643764956269, - 8.983943999600514, - 9.764602568872254, - 10.631773827593644, - 11.389517931978578, - 12.102275928811814, - 12.769780079251275, - 13.368914884380999, - 13.83947432411354, - 14.397489882942963, - 14.79105444325335, - 14.989097631357176, - 15.316529077620034 + 2.1114679242247276, + 2.4511928335973607, + 2.7884260204953697, + 3.04538794032085, + 3.397478847285279, + 3.65028236953504, + 3.8694446367968838, + 4.256269763172383, + 4.592145183247248, + 5.616342141065902, + 6.8505258017449835, + 7.255864594819363, + 7.646968809849212, + 8.053276846734915, + 8.386585501883108, + 8.683166345880695, + 8.947757383742928, + 9.175550285120444, + 9.348629321286626, + 9.549090750604586, + 9.687603583920982, + 9.75618204850785, + 9.867903170019959 ], "5._384._0.0875": [ - 3.5413264893585925, - 4.284676712376069, - 5.383098592540394, - 7.526658021972517, - 10.409048595000398, - 15.289396365782563, - 21.886075688945958, - 27.92564939113464, - 36.39223498336281, - 41.45410657070107, - 44.981767532899354, - 49.7613536617339, - 52.974359824952735, - 59.87135121110951, - 65.48414489132358, - 66.99393802272574, - 68.33742448077338, - 69.63486168361176, - 70.63126359831513, - 71.48091931235662, - 72.2083847655162, - 72.81429242500884, - 73.26596320751466, - 73.7811526798732, - 74.13322224635995, - 74.30621875235995, - 74.58735669198336 + 3.519414642750923, + 4.167877970390456, + 5.033726376163877, + 6.505666850113914, + 8.171517377809307, + 10.490884518790367, + 13.057641798784514, + 15.091596800768148, + 17.68751684607798, + 19.161074457078783, + 20.170244304416116, + 21.533887452770426, + 22.450098703200283, + 24.44785294350101, + 26.106290008466924, + 26.556935572090406, + 26.961259778317036, + 27.354567382479086, + 27.659517769608016, + 27.920033833407945, + 28.144407005050972, + 28.332246401451023, + 28.47232450648087, + 28.632424722805496, + 28.741678395827968, + 28.795229262854185, + 28.881805767853283 ], "5._48._0.075": [ - 1.5268463243731378, - 1.8679037053125447, - 2.1622431316564814, - 2.5060808728146964, - 2.80014475591463, - 3.1449666808368937, - 3.542092547198847, - 3.9866376733728646, - 4.9343853105653634, - 5.78114564180377, - 6.547535874658476, - 7.900826591060631, - 9.062077226182737, - 12.475260733403815, - 16.402185096714526, - 17.659079007551213, - 18.846866902266196, - 20.05539223099621, - 21.019578887090393, - 21.86007361399316, - 22.58957375290493, - 23.200618615117648, - 23.65603924643864, - 24.170665609820286, - 24.521416307101852, - 24.694447090878644, - 24.97726355402357 + 1.526846324373141, + 1.8679037053125445, + 2.1622431316564743, + 2.5060808711202784, + 2.8001402706862746, + 3.144224045078283, + 3.5289604520774644, + 3.9307999739317094, + 4.712428254185614, + 5.347418921621241, + 5.879965415980396, + 6.739706948129181, + 7.408865386614326, + 9.11626514200392, + 10.744546670597042, + 11.212791446300308, + 11.639773033803978, + 12.061220509658641, + 12.391458830061971, + 12.675406212948246, + 12.921007864313719, + 13.127088899769337, + 13.280972380875744, + 13.456545976421273, + 13.576513141553155, + 13.63547462786866, + 13.731049929860575 ], "5._96._0.075": [ - 2.209271810327407, - 2.5553235791445417, - 2.851937705941786, - 3.202887313447567, - 3.5532208005038974, - 4.185212253897755, - 5.312459990141107, - 6.711174904651938, - 9.46817736922537, - 11.682032084341168, - 13.51960769519183, - 16.446955263544993, - 18.70607114245926, - 24.347455523773686, - 29.564725517415805, - 31.03792026154789, - 32.355678492669284, - 33.6349571575402, - 34.61550898062674, - 35.449755980580974, - 36.15934343210846, - 36.74591393187839, - 37.181310902310514, - 37.67377194157702, - 38.00972016000984, - 38.17512689782224, - 38.445178505993205 + 2.2092718103274045, + 2.555323572056519, + 2.851927473662024, + 3.2017149990298575, + 3.5404146600729027, + 4.105317906966819, + 5.011588848511913, + 6.010214756195945, + 7.689683107068938, + 8.83802759134417, + 9.696161835980128, + 10.936159020578424, + 11.810006714617264, + 13.795953525503256, + 15.487658517857962, + 15.951619872839778, + 16.36743918194945, + 16.772210126218116, + 17.08580136939843, + 17.353701914617353, + 17.584116928288115, + 17.77669672785507, + 17.92024261930604, + 18.08396769607562, + 18.195727750777714, + 18.25057695718145, + 18.33939900223481 ] }, "logtime": [ @@ -21955,7 +3067,7 @@ 3.003 ] }, - "4_5": { + "5_8": { "bore_locations": [ [ 0.0, @@ -21977,6 +3089,18 @@ 0.0, 20.0 ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 30.0 + ], + [ + 0.0, + 35.0 + ], [ 5.0, 0.0 @@ -21997,6 +3121,18 @@ 5.0, 20.0 ], + [ + 5.0, + 25.0 + ], + [ + 5.0, + 30.0 + ], + [ + 5.0, + 35.0 + ], [ 10.0, 0.0 @@ -22017,6 +3153,18 @@ 10.0, 20.0 ], + [ + 10.0, + 25.0 + ], + [ + 10.0, + 30.0 + ], + [ + 10.0, + 35.0 + ], [ 15.0, 0.0 @@ -22036,153 +3184,197 @@ [ 15.0, 20.0 + ], + [ + 15.0, + 25.0 + ], + [ + 15.0, + 30.0 + ], + [ + 15.0, + 35.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 5.0 + ], + [ + 20.0, + 10.0 + ], + [ + 20.0, + 15.0 + ], + [ + 20.0, + 20.0 + ], + [ + 20.0, + 25.0 + ], + [ + 20.0, + 30.0 + ], + [ + 20.0, + 35.0 ] ], "g": { "5._192._0.08": [ - 2.8352089834551246, - 3.1905620375303294, - 3.5541155630814143, - 4.212366550930244, - 5.15047814406547, - 6.902871843758689, - 9.564513771873905, - 12.266296781738957, - 16.432694787061884, - 19.10240290594075, - 21.02871255029554, - 23.71920535187863, - 25.565709407027192, - 29.61725703981457, - 32.964188487014965, - 33.87013355528035, - 34.676553587978695, - 35.45664494444173, - 36.05669385665616, - 36.5684003114769, - 37.006732485832885, - 37.37190294616794, - 37.64403020332212, - 37.95421715632263, - 38.16611622258322, - 38.27022080724798, - 38.43925987136973 + 2.8352171796926875, + 3.1912323955198802, + 3.56049999565259, + 4.249550028573317, + 5.267110970892145, + 7.262622452490169, + 10.513023481366805, + 14.075543864660455, + 20.060281189008855, + 24.197506543401715, + 27.313866241728935, + 31.81556173840786, + 34.99223632333103, + 42.089113929496186, + 47.99705654658159, + 49.595787304114204, + 51.01001516903632, + 52.37090685322932, + 53.408958395159274, + 54.2922718199328, + 55.04440678104219, + 55.66766757792533, + 56.13163963757638, + 56.65910131703204, + 57.01965614833479, + 57.19714145360328, + 57.48668867212045 ], "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615422, - 1.4813847491413077, - 1.8198213217004353, - 2.1114679242247267, - 2.4511928338290536, - 2.788429288099758, - 3.045590128566022, - 3.4023602921425917, - 3.6671493891795928, - 3.9036452487826288, - 4.335267048257785, - 4.7238667888472845, - 5.988828129009444, - 7.691476783111234, - 8.30056976292707, - 8.911790503155604, - 9.572413103798613, - 10.133915427880254, - 10.649072931963232, - 11.120439346334004, - 11.534706208075443, - 11.85442068431646, - 12.228298348869451, - 12.48878711498404, - 12.618654746153297, - 12.83150959363346 + 0.874005953226797, + 1.195803175961541, + 1.4813847491413068, + 1.819821321700433, + 2.1114679242247245, + 2.451192833962722, + 2.788431173280784, + 3.045706835618799, + 3.40519536343196, + 3.6770298713540206, + 3.9238359425768987, + 4.382546804128344, + 4.803687731545685, + 6.22550348281308, + 8.26454272545655, + 9.033327122241456, + 9.827594044338952, + 10.712497255272448, + 11.488618159662211, + 12.221409490821387, + 12.910766728530104, + 13.532654737824, + 14.023630504289848, + 14.609443480426677, + 15.025682797415206, + 15.236399684731932, + 15.587059398091673 ], "5._384._0.0875": [ - 3.5335719772357534, - 4.24274330748113, - 5.255172065366526, - 7.139241180076386, - 9.522530514477932, - 13.261720368104003, - 17.896552088599943, - 21.85208563675306, - 27.123351982778942, - 30.18046047540108, - 32.28729804723092, - 35.132970697287575, - 37.04313155935796, - 41.172031063620665, - 44.5639854287393, - 45.4810776979844, - 46.30054458736149, - 47.094899784321136, - 47.70800890408918, - 48.23132892108421, - 48.680784746995094, - 49.056141185640584, - 49.33601167651269, - 49.655565860331066, - 49.87379582749348, - 49.980896995355636, - 50.15448605455635 + 3.5418723153370695, + 4.2875548225430595, + 5.391829583210791, + 7.553797923045855, + 10.47444288412533, + 15.4552764443417, + 22.26690742381884, + 28.591324881289722, + 37.590797272722426, + 43.03731757173099, + 46.85583270985285, + 52.048524431573, + 55.5484418342339, + 63.06474107299005, + 69.17697562347936, + 70.81987198491822, + 72.28036229442219, + 73.68953892650171, + 74.7703665517925, + 75.6917736235231, + 76.48001038324286, + 77.13605237149497, + 77.62504853785302, + 78.1826382392934, + 78.5637326590175, + 78.75104578471024, + 79.0556567040888 ], "5._48._0.075": [ - 1.5268463243731432, - 1.8679037053125407, - 2.1622431316564765, - 2.5060808722216517, - 2.8001431860715305, - 3.144706559672528, - 3.5374642892328367, - 3.966762877330371, - 4.8538772214145105, - 5.621452645062008, - 6.298425543328302, - 7.4567656654115835, - 8.416317198568095, - 11.085640177313419, - 13.920099971496448, - 14.781976315269302, - 15.581289769997717, - 16.38106072731364, - 17.01216034706201, - 17.557674585374972, - 18.02960217636503, - 18.42475977521135, - 18.719405342894085, - 19.05379996134803, - 19.28200397573608, - 19.394351723211262, - 19.577123887082962 + 1.526846324373144, + 1.8679037053125487, + 2.1622431316564796, + 2.506080872857054, + 2.8001448680440215, + 3.1449852270814374, + 3.5424179084997003, + 3.9880093956834037, + 4.939862149723824, + 5.79197569202499, + 6.564469395710022, + 7.931575415279252, + 9.107719981191298, + 12.583168624254064, + 16.62201014777784, + 17.92759700079677, + 19.16739965914743, + 20.43548697638933, + 21.452461518109263, + 22.34301280497745, + 23.118964178222107, + 23.771011667028986, + 24.258204548647722, + 24.80965662349337, + 25.18613943442992, + 25.37217522339887, + 25.67688529446201 ], "5._96._0.075": [ - 2.2092718103274094, - 2.5553235766637368, - 2.851934124580871, - 3.2024765504753168, - 3.5487082723421532, - 4.156675708712891, - 5.202665948278876, - 6.449215563353447, - 8.772685597331476, - 10.52999756347063, - 11.928525829270317, - 14.064647460451033, - 15.64628460332434, - 19.41325548986843, - 22.738703725682267, - 23.660981520446935, - 24.485271804283713, - 25.285748092487932, - 25.902272969545734, - 26.427846943292803, - 26.877382961272005, - 27.251068866867534, - 27.529072150446442, - 27.844853717677722, - 28.060351048648688, - 28.16627390291646, - 28.338442870475888 + 2.209271810327418, + 2.555323579321738, + 2.851937961742485, + 3.202916576636184, + 3.5535381677970186, + 4.18717316823856, + 5.319936490017815, + 6.729164937306775, + 9.518352219988081, + 11.768632926224731, + 13.64439883883691, + 16.64917886255251, + 18.983504338698914, + 24.87378358615821, + 30.407113640680546, + 31.984277484052726, + 33.39913505617774, + 34.775837801132, + 35.8321176604548, + 36.73155863532055, + 37.496514530753714, + 38.128583165876954, + 38.5976884009178, + 39.12794358595513, + 39.489739271230974, + 39.6679839630719, + 39.95935698577689 ] }, "logtime": [ diff --git a/HPXMLtoOpenStudio/resources/g_functions/util.rb b/HPXMLtoOpenStudio/resources/g_functions/util.rb index 92e35ca579..15d0995179 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/util.rb +++ b/HPXMLtoOpenStudio/resources/g_functions/util.rb @@ -5,18 +5,33 @@ def process_g_functions(filepath) require 'json' require 'zip' - # downselect criteria - n_x_m = 40 # for example, upper bound on number of boreholes - - g_functions_path = File.dirname(filepath) + g_functions_path = File.dirname(filepath) Dir[File.join(filepath, '*.json')].each do |config_json| file = File.open(config_json) json = JSON.load(file) - - # downselect the File - json.keys.each do |n_m| - n, m = n_m.split('_') - json.delete(n_m) if (Float(n) * Float(m) > n_x_m) + # downselect the File for JSON files with 2 layers of keys + if config_json.include?("zoned_rectangle_5m_v1.0.json") || config_json.include?("C_configurations_5m_v1.0.json") || config_json.include?("LopU_configurations_5m_v1.0.json") || config_json.include?("Open_configurations_5m_v1.0.json") || config_json.include?("U_configurations_5m_v1.0.json") + json.keys.each do |n_m| + n, m = n_m.split('_') + if n_m != '5_8' && (n.to_i>10 || m.to_i>10) + json.delete(n_m) + else + json[n_m].keys.each do |sub_key| + if json[n_m][sub_key].key?("bore_locations") && json[n_m][sub_key]["bore_locations"].length > 10 + json[n_m].delete(sub_key) + end + end + end + end + else + # downselect the File for JSON files with 1 layer of keys + json.keys.each do |n_m| + n, m = n_m.split('_') + bore_locations = json[n_m]["bore_locations"] + if n_m != '5_8' && (bore_locations && bore_locations.length > 10) + json.delete(n_m) + end + end end configpath = File.join(g_functions_path, File.basename(config_json)) diff --git a/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json index 7abe24dbaa..3f4ee8dd73 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json @@ -1,17466 +1,58 @@ { + "10_10": { + }, "4_7": { - "1_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 7.5, - 6.0 - ], - [ - 7.5, - 12.0 - ], - [ - 7.5, - 18.0 - ], - [ - 7.5, - 24.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351612916549174, - 3.1868118480930505, - 3.5214760491745505, - 4.05541257046864, - 4.771496959063462, - 6.12565548187168, - 8.290021197651777, - 10.617578986370207, - 14.43343219344073, - 17.00258897338687, - 18.90655991463661, - 21.62426801164568, - 23.52280167025776, - 27.74646832744757, - 31.265776505863187, - 32.22033513840285, - 33.06835088365426, - 33.887389707677684, - 34.515597443151904, - 35.05088784987197, - 35.508395902047724, - 35.88874698113723, - 36.17203324658834, - 36.49453298790829, - 36.71486144283248, - 36.82317859241036, - 36.99934126554211 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615408, - 1.4813847491413077, - 1.8198213217004344, - 2.1114679242247263, - 2.451192833046527, - 2.788418287458567, - 3.0449206951020633, - 3.38724757051266, - 3.61850403632618, - 3.811381364984323, - 4.146977082287915, - 4.442544645371403, - 5.413478476339766, - 6.781701103121397, - 7.291352600640382, - 7.8165537505901765, - 8.398984539340237, - 8.907547084916636, - 9.384864022289396, - 9.831958727375463, - 10.233791670273815, - 10.549942179579354, - 10.927052327407726, - 11.194866351434037, - 11.330130421717449, - 11.554449103316042 - ], - "5._384._0.0875": [ - 3.492053721540635, - 4.059924988462409, - 4.831616160647287, - 6.295250843698073, - 8.237966962975912, - 11.485751935408194, - 15.788001538866416, - 19.65783869681176, - 25.023377870409895, - 28.214597935016197, - 30.436395983107474, - 33.4532649761495, - 35.485214833814986, - 39.8730027276945, - 43.466962885258845, - 44.436812830029055, - 45.3015964174609, - 46.138365231134905, - 46.78261142032229, - 47.33220364407575, - 47.803456786665606, - 48.19645061624461, - 48.48940624074326, - 48.82367353732015, - 49.05200308691436, - 49.1641229433298, - 49.34607296631648 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125405, - 2.162243131656477, - 2.506080868502034, - 2.8001333694180275, - 3.143123764336332, - 3.5117741342402353, - 3.869847203468731, - 4.553213060341413, - 5.1373427818355735, - 5.659087925892351, - 6.57554494440892, - 7.357716813213112, - 9.649828684776594, - 12.258669789309865, - 13.088698811742663, - 13.87190080517147, - 14.668765310395022, - 15.306598615779649, - 15.863754483050641, - 16.349763364999447, - 16.759133394456633, - 17.065511273163285, - 17.413840689640484, - 17.65204476731939, - 17.769591021507456, - 17.961321479632183 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.555323561105395, - 2.8519117587431215, - 3.1999948076739755, - 3.523597835586041, - 4.0240024863817885, - 4.8240099032301815, - 5.781399711036753, - 7.6457389772889846, - 9.126575202466062, - 10.34706179841653, - 12.279051484227715, - 13.757850810805675, - 17.423446758352718, - 20.80195216851114, - 21.757216773287116, - 22.61472641002419, - 23.450180757546274, - 24.094123893208806, - 24.64343073330391, - 25.112774325089926, - 25.502323683358696, - 25.791924853668867, - 26.120290025742555, - 26.344357234454808, - 26.454584900774663, - 26.634076144186242 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 5.0, - 6.0 - ], - [ - 5.0, - 12.0 - ], - [ - 5.0, - 18.0 - ], - [ - 5.0, - 24.0 - ], - [ - 10.0, - 6.0 - ], - [ - 10.0, - 12.0 - ], - [ - 10.0, - 18.0 - ], - [ - 10.0, - 24.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351768029084212, - 3.1884982140870126, - 3.5399655200950084, - 4.159132680579318, - 5.043310167827616, - 6.734259570844476, - 9.403990067197196, - 12.230685926252091, - 16.799137258280933, - 19.84988363722113, - 22.103226594199434, - 25.309810138806267, - 27.544737903040392, - 32.50274532876693, - 36.62282072399607, - 37.73908229161835, - 38.73021146656613, - 39.68700512221716, - 40.420444096405184, - 41.04535067254345, - 41.57929222819405, - 42.023086570204796, - 42.35364264345615, - 42.729956598487135, - 42.9870898811391, - 43.11352296562639, - 43.319219775856574 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.481384749141308, - 1.8198213217004335, - 2.1114679242247227, - 2.4511928332496473, - 2.7884216544938134, - 3.045178887900911, - 3.3951756681773415, - 3.647403063117421, - 3.869751395720987, - 4.2742568516716375, - 4.63998151281358, - 5.852393416749416, - 7.543618311470251, - 8.166785670322346, - 8.802971460615792, - 9.5028003808606, - 10.108803377340507, - 10.67415431855699, - 11.200213498597687, - 11.670085751452397, - 12.037925021288329, - 12.474057204273898, - 12.782107518981976, - 12.937226802856864, - 13.193888130251025 - ], - "5._384._0.0875": [ - 3.51623638528283, - 4.182534380219341, - 5.138893108464726, - 6.964803756377397, - 9.359896218845194, - 13.294388352464951, - 18.43720782464621, - 23.030152342317198, - 29.371211004039207, - 33.13359756303134, - 35.75044586340833, - 39.29969188300404, - 41.68832858235261, - 46.84026996267815, - 51.05575507502951, - 52.192822438810694, - 53.20650747173057, - 54.187144650984834, - 54.94195765916947, - 55.585865897587354, - 56.137920155609734, - 56.598252720203455, - 56.94142138280945, - 57.33299072172242, - 57.600488850415246, - 57.73185603482696, - 57.945082230400764 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125418, - 2.162243131656476, - 2.5060808694791796, - 2.8001363596457067, - 3.143779784957073, - 3.525998673951438, - 3.9312434206565907, - 4.764852471148493, - 5.495069050579647, - 6.148319481319552, - 7.28812477272002, - 8.252677604278032, - 11.03105602396165, - 14.13579478459462, - 15.113580026971484, - 16.032891650581963, - 16.964929251937875, - 17.708127326709146, - 18.355877840429706, - 18.91938615060825, - 19.392944147846794, - 19.74689160614836, - 20.148670677216572, - 20.423213393642694, - 20.55867343727451, - 20.779728198358104 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.555323565250502, - 2.8519187898338996, - 3.2010666917293418, - 3.5374432224056935, - 4.110406212012664, - 5.095977645190078, - 6.293398632019837, - 8.601773242944848, - 10.411075495579066, - 11.88821503257597, - 14.205072939425177, - 15.966576487271793, - 20.30033048783651, - 24.265076472165678, - 25.382386972372124, - 26.383971012272927, - 27.358576320055015, - 28.108722551058037, - 28.74828104984055, - 29.294272042076493, - 29.74713536783998, - 30.083761152224803, - 30.465354645278932, - 30.72576827515188, - 30.853902218864985, - 31.062657465686442 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 7.5, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169469722837, - 3.187332693904426, - 3.5235625416258682, - 4.042883946041353, - 4.682646457191729, - 5.801313493538155, - 7.560151968316116, - 9.486585685710137, - 12.714013129307281, - 14.91412690355804, - 16.552920312310743, - 18.902325976242317, - 20.54859975292621, - 24.22444869877162, - 27.297774297100904, - 28.13254522306131, - 28.8746325354482, - 29.591794562091454, - 30.14225344892876, - 30.61134410096529, - 31.012419222452944, - 31.345946496706134, - 31.594343672097203, - 31.877125099713126, - 32.07028302878385, - 32.165222810782666, - 32.319565177673596 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.481384749141308, - 1.8198213217004335, - 2.1114679242247276, - 2.4511928331846287, - 2.7884201995762328, - 3.045027566749336, - 3.3887371108015327, - 3.620114237655505, - 3.8091027520312246, - 4.124603185075481, - 4.388729861259154, - 5.20157320039569, - 6.312813410699086, - 6.729961403815689, - 7.164355278572759, - 7.651344019372893, - 8.081366418358783, - 8.488562759448369, - 8.873350980964906, - 9.22199766254238, - 9.498074542287275, - 9.829852263641033, - 10.06703368032835, - 10.187284944878344, - 10.387344624111247 - ], - "5._384._0.0875": [ - 3.4941094991523753, - 4.041430406753463, - 4.722109676453478, - 5.924096504794645, - 7.502609933927765, - 10.19996566127224, - 13.848851936104701, - 17.16738702391159, - 21.79759492384403, - 24.560528034019235, - 26.486678390185606, - 29.10590966486106, - 30.871820551891055, - 34.69072697793446, - 37.82278844141152, - 38.66845608296655, - 39.42269412989945, - 40.15268825264609, - 40.714906960091824, - 41.194528814816785, - 41.605848822209474, - 41.948901644039026, - 42.204614466223546, - 42.496379441863034, - 42.6956519344267, - 42.79349085479697, - 42.95222811935028 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125427, - 2.1622431316564756, - 2.5060808691583207, - 2.8001350772198865, - 3.143363552797332, - 3.5137195266023293, - 3.867384816078826, - 4.494670373352554, - 4.991392555263045, - 5.419804757092543, - 6.161737214157857, - 6.79637572096678, - 8.695090561861797, - 10.914785249282179, - 11.630698383114662, - 12.310171764673694, - 13.004763635094156, - 13.563453621279448, - 14.052848062584541, - 14.4811792721289, - 14.842996252952485, - 15.114238986949626, - 15.423239350153306, - 15.634780629621114, - 15.739200435570952, - 15.909453656407013 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235638493397, - 2.8519156255490095, - 3.2003562651196305, - 3.525550971809609, - 4.0161373222253385, - 4.734023327599434, - 5.52902856116355, - 7.041222729277607, - 8.256261343307644, - 9.27110252873261, - 10.89995822237019, - 12.15952834421259, - 15.316948372201745, - 18.256318977298086, - 19.09107132043628, - 19.841687754300604, - 20.57414204616125, - 21.13967609469519, - 21.622422137421932, - 22.035330646172145, - 22.378324766081132, - 22.63336373411643, - 22.922632352920715, - 23.12000490910507, - 23.21707866420464, - 23.375058018079258 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 7.5, - 10.0 - ], - [ - 7.5, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351663658925808, - 3.1870869210357737, - 3.5216078941912636, - 4.037835741578408, - 4.6899149070726205, - 5.878591920339216, - 7.777580920679048, - 9.844350689060867, - 13.27444080282156, - 15.599890676513857, - 17.32808205166118, - 19.80088730524011, - 21.531336169822332, - 25.38916459785127, - 28.610025902680636, - 29.48435320604841, - 30.2613983074769, - 31.01215859042278, - 31.588239144229988, - 32.079142356365914, - 32.498804573851665, - 32.84774944270824, - 33.107634911305034, - 33.40349454430398, - 33.60560043285796, - 33.704946555051336, - 33.866478982642626 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615422, - 1.4813847491413077, - 1.8198213217004353, - 2.1114679242247267, - 2.4511928331339767, - 2.7884194853273234, - 3.044983677296911, - 3.3877795440354466, - 3.6174090388005493, - 3.804951414351753, - 4.120721913796074, - 4.389742533833025, - 5.246165594921308, - 6.444965021137562, - 6.894526860761225, - 7.3609703418165005, - 7.8815565541779895, - 8.339081165477271, - 8.770638822409719, - 9.176928391204294, - 9.543799502813703, - 9.833517613798032, - 10.180609387601532, - 10.428061913692437, - 10.553319087582594, - 10.76141959049578 - ], - "5._384._0.0875": [ - 3.491666654771148, - 4.036555039229863, - 4.734223037156891, - 6.016731965294465, - 7.721544157793291, - 10.611277865038081, - 14.484320931552226, - 17.98934975073714, - 22.865975969468906, - 25.771763470079236, - 27.796355138815436, - 30.54776286937325, - 32.40200036605496, - 36.40949278222393, - 39.69446488918187, - 40.581219483841494, - 41.372024527716185, - 42.13732975474072, - 42.726667690501834, - 43.22942227116025, - 43.660553967384715, - 44.02011386070993, - 44.28813727529421, - 44.59395180153474, - 44.80283049884675, - 44.905391220938824, - 45.07180507572196 - ], - "5._48._0.075": [ - 1.5268463243731432, - 1.8679037053125407, - 2.1622431316564765, - 2.5060808689175333, - 2.800134439947913, - 3.1432596179608434, - 3.5121468806320206, - 3.863020565905418, - 4.495956902063145, - 5.014225637206339, - 5.470787620096626, - 6.271080069255243, - 6.957068709296682, - 8.993903874007302, - 11.347886602621138, - 12.102730601487488, - 12.817264067782439, - 13.546217357998287, - 14.131332664855416, - 14.643267489110713, - 15.090700973570737, - 15.468205064292778, - 15.751008353198518, - 16.072908783826968, - 16.293175215310605, - 16.401885729558153, - 16.579156757828745 - ], - "5._96._0.075": [ - 2.209271810327402, - 2.555323562842096, - 2.8519141719794616, - 3.200193350975481, - 3.5240082029429076, - 4.011182245987465, - 4.7417739234257255, - 5.583310139820175, - 7.21549819081575, - 8.523736592954299, - 9.610460294207183, - 11.344230323172535, - 12.678898824255567, - 16.007948120271127, - 19.093766354891258, - 19.968456849944104, - 20.75442838525945, - 21.520882564555926, - 22.11224308138297, - 22.6168935256422, - 23.048349185033743, - 23.406626836233144, - 23.673008066089107, - 23.97510044465487, - 24.181228056445093, - 24.282616407449478, - 24.44765534809854 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 7.5, - 7.5 - ], - [ - 7.5, - 15.0 - ], - [ - 7.5, - 22.5 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351635580256604, - 3.1868700404538632, - 3.5202733026573148, - 4.040309792932084, - 4.720083459051813, - 5.990614734967209, - 8.024310347090275, - 10.223561864968083, - 13.84857484741107, - 16.2966012415779, - 18.11298918502549, - 20.70842323599815, - 22.52291755877334, - 26.56337067694557, - 29.932979411823094, - 30.8472671484664, - 31.659650426704424, - 32.44439934367994, - 33.04642059250584, - 33.55941144163968, - 33.99790321020989, - 34.362471803799416, - 34.63399869621654, - 34.943111115963305, - 35.154282869055336, - 35.25809249564105, - 35.42690529931335 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.4813847491413075, - 1.819821321700434, - 2.111467924224728, - 2.4511928330881476, - 2.7884188391102973, - 3.044944113859872, - 3.3870145536937994, - 3.615935956740703, - 3.8042583331092863, - 4.126833785480621, - 4.407304930041428, - 5.319495770623669, - 6.6041325569847595, - 7.08428946776401, - 7.580670468072656, - 8.13273320179482, - 8.616188581950206, - 9.070936388173825, - 9.497857583496534, - 9.882362141739208, - 10.185381123740937, - 10.547535885387022, - 10.805176757455673, - 10.935430823690655, - 11.151611894596037 - ], - "5._384._0.0875": [ - 3.4901551614952333, - 4.041097881412215, - 4.771848974435697, - 6.144587936966614, - 7.97025351938825, - 11.041794067893326, - 15.131453081443718, - 18.81974921668134, - 23.941237317823834, - 26.989747785252334, - 29.112882986060225, - 31.99685541770366, - 33.939796946082446, - 38.13699512583497, - 41.57601668952772, - 42.50418984793176, - 43.331865643285646, - 44.13278456607795, - 44.749482556501285, - 45.275575582028935, - 45.72669799612162, - 46.10291581909021, - 46.38336158698881, - 46.70335272100703, - 46.921923281162364, - 47.02924731066947, - 47.20340350607982 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125407, - 2.162243131656477, - 2.506080868699682, - 2.800133863374056, - 3.1431664867990414, - 3.511003879199242, - 3.8623156451160527, - 4.515173719049069, - 5.06479992787909, - 5.55370685411924, - 6.412750788291099, - 7.147635684054228, - 9.314256445469622, - 11.79706691534515, - 12.58976257881212, - 13.338760107902576, - 14.101727895855928, - 14.713191789486814, - 15.247697832108951, - 15.71435529791113, - 16.107716935146748, - 16.402240388063763, - 16.7372647486207, - 16.96643110165261, - 17.079523899775598, - 17.263965765956055 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.5553235619307806, - 2.8519128568997587, - 3.2000482708937437, - 3.52287575342177, - 4.012109809731903, - 4.772385757748915, - 5.670806651992732, - 7.420622298774972, - 8.816630526323616, - 9.971270947948478, - 11.805342676830222, - 13.212700238326887, - 16.710685300724073, - 19.94278603555217, - 20.85765915429973, - 21.679279014564994, - 22.480091054444397, - 23.097613097003524, - 23.624473626034565, - 24.074763282987433, - 24.44857947629786, - 24.72649680566013, - 25.041639412758165, - 25.25667775021034, - 25.362456901059495, - 25.53467629980608 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "4_8": { - "1_1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 7.5, - 17.5 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169797270246, - 3.1873565955049634, - 3.523698914875385, - 4.042636415747127, - 4.679086176627898, - 5.784197393736978, - 7.521220830944112, - 9.445174819621897, - 12.726518184290763, - 15.002194652978792, - 16.715555270613894, - 19.195492550903992, - 20.94805815716021, - 24.891360875775305, - 28.207689797070817, - 29.110108757093318, - 29.911830627391875, - 30.6862112669186, - 31.27986277652867, - 31.785604511672425, - 32.2175803818633, - 32.576462301801236, - 32.84368135091169, - 33.147716322664856, - 33.35540951111465, - 33.457530104994795, - 33.62368458644538 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.4813847491413075, - 1.819821321700434, - 2.111467924224728, - 2.451192833189991, - 2.788420275097119, - 3.0450321005892036, - 3.3888169178476653, - 3.6202641569863396, - 3.809175680020829, - 4.123955031722743, - 4.386735281574301, - 5.190962817653696, - 6.2870815737944055, - 6.700592769215197, - 7.133340331683953, - 7.621552622981938, - 8.055747235442517, - 8.469798019276292, - 8.863991439213548, - 9.223928643814144, - 9.51103911112572, - 9.858885661498869, - 10.10978323915151, - 10.237858378584402, - 10.452421756416168 - ], - "5._384._0.0875": [ - 3.4942656681079076, - 4.040971278222298, - 4.717540376736331, - 5.9040864016957375, - 7.463221803343502, - 10.16301884534146, - 13.890164278426766, - 17.34622787563684, - 22.252941259885226, - 25.217927538243224, - 27.29677952527105, - 30.13327634443982, - 32.050206205632115, - 36.196844104975575, - 39.59485570226279, - 40.51167357607459, - 41.32857078021392, - 42.11854616330715, - 42.726236545340825, - 43.24451675523966, - 43.68864026660027, - 44.058794317564704, - 44.33468066206288, - 44.64936237898076, - 44.86431248352875, - 44.96987808467706, - 45.14125843225491 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125407, - 2.162243131656477, - 2.506080869183801, - 2.800135144607571, - 3.143374062009305, - 3.513836878311045, - 3.8674606132706066, - 4.492504540274874, - 4.984813896344954, - 5.40779569080493, - 6.138910528757699, - 6.765429333993832, - 8.658939013288999, - 10.915835705620678, - 11.654609035713799, - 12.360768942098689, - 13.087581864576237, - 13.675894372860066, - 14.193882654548496, - 14.649215635163303, - 15.035190064363924, - 15.32529586592365, - 15.656365088908501, - 15.883427633880977, - 15.995694427026992, - 16.179069290951226 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.5553235639559264, - 2.851915779142888, - 3.2003724544342167, - 3.5256673583250495, - 4.016048934196492, - 4.7303960697276555, - 5.516316610225044, - 7.007867394592321, - 8.214725126751047, - 9.2313005899022, - 10.879978600880344, - 12.168730628579155, - 15.447897264272536, - 18.55765978776065, - 19.449629020763542, - 20.25387427176925, - 21.0404124287667, - 21.648325089555986, - 22.167666587967346, - 22.611849713614102, - 22.9806808045161, - 23.254898035786866, - 23.56571701843824, - 23.77782279758467, - 23.882199280437234, - 24.052235385654473 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 7.5, - 11.666666666666698 - ], - [ - 7.5, - 23.3333333333333 - ] - ], - "g": { - "5._192._0.08": [ - 2.835166960720879, - 3.1871321955021763, - 3.5219211566154387, - 4.037673395003338, - 4.681926936241187, - 5.842153103790585, - 7.702839014214701, - 9.755571959385927, - 13.226081840795217, - 15.620286864410794, - 17.41877474092838, - 20.01689368172398, - 21.850525273814647, - 25.969726674661292, - 29.42889461959045, - 30.369600975231247, - 31.205108381708975, - 32.011914421108145, - 32.63023568865273, - 33.15696771576153, - 33.60680080897036, - 33.98047368975826, - 34.2587114216045, - 34.57528201126229, - 34.79155372376095, - 34.897901048406894, - 35.07096171953132 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615408, - 1.4813847491413077, - 1.8198213217004344, - 2.1114679242247263, - 2.451192833143698, - 2.7884196223472686, - 3.0449919974516058, - 3.3879447727981766, - 3.6178004309384613, - 3.8053263532337063, - 4.119674460601333, - 4.385508699550363, - 5.2228803661924825, - 6.39482348755364, - 6.8376199683282035, - 7.299761192674103, - 7.819066416192497, - 8.278920162139174, - 8.715812322708459, - 9.130281559921087, - 9.507491987292344, - 9.807578355400388, - 10.170036257172521, - 10.430761137386138, - 10.563633440898554, - 10.785907811188576 - ], - "5._384._0.0875": [ - 3.492043109992415, - 4.03595094701054, - 4.723814128728142, - 5.974912681257754, - 7.645895149305873, - 10.522784559082238, - 14.45987149777272, - 18.09316023903547, - 23.236837335479528, - 26.340467672811638, - 28.515259695018717, - 31.480800287060315, - 33.484064700819424, - 37.81476157297041, - 41.36164278188219, - 42.31840110140284, - 43.17079968660562, - 43.995015605522305, - 44.62895927760343, - 45.16962663759632, - 45.63290343141323, - 46.01900178246487, - 46.306778159246235, - 46.63502513430439, - 46.859252288918775, - 46.969379681792766, - 47.148183048522114 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125405, - 2.162243131656477, - 2.5060808689637466, - 2.800134562206415, - 3.143279115476509, - 3.51240617554137, - 3.863412784021317, - 4.4913177785603535, - 4.9992446339918555, - 5.444424391679893, - 6.2248877379339085, - 6.896930783082895, - 8.917073844100175, - 11.299381696203385, - 12.075000007913399, - 12.814397315266337, - 13.573885247140069, - 14.187377856834724, - 14.726879674235825, - 15.200449566820632, - 15.601391267650452, - 15.902519399717042, - 16.245862692987703, - 16.48121650994105, - 16.597561831083205, - 16.787618274738126 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.555323563035406, - 2.8519144507350873, - 3.200223661964631, - 3.5242637317263545, - 4.0113191976945455, - 4.733609866561337, - 5.555415234069362, - 7.150900564240685, - 8.44250610439751, - 9.525368292155106, - 11.271757129714937, - 12.630984636541557, - 16.072558215686378, - 19.32242841346877, - 20.25278792468201, - 21.091037526517727, - 21.910278864927648, - 22.54299466288797, - 23.083361960891775, - 23.545315472721963, - 23.928762821108396, - 24.213819128325678, - 24.536876490672643, - 24.757337226983676, - 24.865833890730343, - 25.04262328630157 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 7.5, - 8.75 - ], - [ - 7.5, - 17.5 - ], - [ - 7.5, - 26.25 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351643703796903, - 3.1869268949218093, - 3.5203553000828394, - 4.035632209234826, - 4.697697200536918, - 5.926451905317148, - 7.908799844366956, - 10.083725577917932, - 13.736524554944438, - 16.246660146411728, - 18.12907383550448, - 20.844506405394167, - 22.75897059261554, - 27.054418064626965, - 30.657344251793205, - 31.63665863746843, - 32.50625438067732, - 33.345798822315885, - 33.98904715433488, - 34.536991753730184, - 35.00487845837196, - 35.39350950690269, - 35.68289020281972, - 36.01213811885565, - 36.23708412986984, - 36.34770465390815, - 36.527744963023814 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141308, - 1.8198213217004349, - 2.111467924224725, - 2.4511928331014317, - 2.7884190263257524, - 3.0449553382632883, - 3.3871547831879862, - 3.6157309845602406, - 3.802652193068878, - 4.119710617902083, - 4.392820251462485, - 5.27523768842361, - 6.523989357505093, - 6.994707692953451, - 7.484483941530732, - 8.033048717304094, - 8.517161661849112, - 8.975825767809063, - 9.409747033649518, - 9.803640676777311, - 10.116342420388051, - 10.493108094324915, - 10.763523018072704, - 10.901152082095088, - 11.131122031553744 - ], - "5._384._0.0875": [ - 3.4901255546394805, - 4.034797255647659, - 4.745193576357573, - 6.073093708967332, - 7.853437426441619, - 10.898450968064411, - 15.038796109765787, - 18.846240019386645, - 24.225226707008474, - 27.46725873856015, - 29.738007550529417, - 32.832847462090605, - 34.922726814894965, - 39.438360164230005, - 43.13502657418355, - 44.131993952004066, - 45.02013987970927, - 45.87884162609885, - 46.53923392979351, - 47.10245533529058, - 47.58503065256028, - 47.98719566588265, - 48.28695271981084, - 48.62886795534734, - 48.86244161374305, - 48.977164464847206, - 49.16344420497706 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125425, - 2.1622431316564765, - 2.5060808687628278, - 2.800134030422866, - 3.143192269379365, - 3.5111307353644503, - 3.860609001131126, - 4.499434025731459, - 5.031459537838914, - 5.503918450522629, - 6.336424305710959, - 7.0527472130753495, - 9.19253947755475, - 11.695309533835124, - 12.506696984072471, - 13.278681619780496, - 14.070408299377384, - 14.708908876512645, - 15.269863158891232, - 15.761702775285956, - 16.177702665595948, - 16.48995233295852, - 16.84572335635143, - 17.08949559895313, - 17.209987953271234, - 17.406842759884665 - ], - "5._96._0.075": [ - 2.2092718103274085, - 2.555323562194929, - 2.8519132377249674, - 3.2000875311587906, - 3.5230101355035424, - 4.00875625516151, - 4.749825680797558, - 5.6184628527421, - 7.319258503603456, - 8.691314816476849, - 9.83705080162265, - 11.67701423412214, - 13.10451064831868, - 16.70581051734762, - 20.09532268946245, - 21.06421380685831, - 21.936662973015014, - 22.788866015231612, - 23.446639743432993, - 24.008269495012613, - 24.488219545411013, - 24.88648661185218, - 25.182537581347592, - 25.518016083151505, - 25.746958013918004, - 25.85963684365112, - 26.04327801674626 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 7.5, - 7.0 - ], - [ - 7.5, - 14.0 - ], - [ - 7.5, - 21.0 - ], - [ - 7.5, - 28.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351619994628505, - 3.186752520833827, - 3.51955978757887, - 4.0403125061503875, - 4.728226436259568, - 6.028070344384858, - 8.129327484739141, - 10.423999316494138, - 14.256525300539296, - 16.881529041501757, - 18.84737420027856, - 21.67977211833264, - 23.675001088942718, - 28.14705108469578, - 31.89443699215745, - 32.91259737334496, - 33.816511602157576, - 34.68903212912509, - 35.35740294097356, - 35.92672920877177, - 36.41281910744506, - 36.816535865979674, - 37.11715437804924, - 37.4591879523753, - 37.69288142624205, - 37.807810590258725, - 37.99488640236864 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.195803175961541, - 1.4813847491413077, - 1.819821321700434, - 2.111467924224724, - 2.451192833062686, - 2.7884184801919725, - 3.0449223024893945, - 3.3866096819502696, - 3.6151015379905447, - 3.8034993059809996, - 4.127893642059773, - 4.41170665283013, - 5.34278195334716, - 6.666819991050252, - 7.1648636250259194, - 7.681611421095316, - 8.258756880148889, - 8.766596109333685, - 9.246614091190608, - 9.699645778186671, - 10.109963485787098, - 10.435114324774538, - 10.826043992076645, - 11.10608339428264, - 11.248450754742857, - 11.486116194696246 - ], - "5._384._0.0875": [ - 3.4893347039183387, - 4.041664358627259, - 4.7823279988568075, - 6.188522915276659, - 8.075663481798427, - 11.285397885038305, - 15.626400365074174, - 19.60668405926818, - 25.220221338353387, - 28.600562400997916, - 30.96732380944429, - 34.1916895425578, - 36.3684093148798, - 41.069673812588306, - 44.9168451786361, - 45.954232578712954, - 46.878320307322355, - 47.77170212541695, - 48.45869818843817, - 49.04460624087136, - 49.54659571103754, - 49.96492498451099, - 50.27673503452289, - 50.63240082051509, - 50.87537644587597, - 50.99472160783708, - 51.18852017986433 - ], - "5._48._0.075": [ - 1.5268463243731447, - 1.8679037053125414, - 2.1622431316564765, - 2.5060808685786515, - 2.8001335431276213, - 3.143115477862344, - 3.5103976454626267, - 3.86152803674152, - 4.5200167174579065, - 5.0796487092453795, - 5.580138125938582, - 6.463835055409945, - 7.223380344805953, - 9.480125533475501, - 12.101564986516044, - 12.948286242854616, - 13.752611895347739, - 14.576422097797664, - 15.239878043390412, - 15.822287263288457, - 16.33244223636534, - 16.763573773171487, - 17.087019351287903, - 17.45532860690535, - 17.70760824535113, - 17.832294870472605, - 18.036028084154434 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235614244936, - 2.8519121266348346, - 3.199969204120678, - 3.522275664380955, - 4.01170976222281, - 4.780683183580726, - 5.698762586674148, - 7.502747282680261, - 8.953518384334261, - 10.160935647012899, - 12.092998887177734, - 13.587933418579762, - 17.34794267542127, - 20.877029794569935, - 21.884563069237696, - 22.791368978301616, - 23.676730123828932, - 24.3597479162878, - 24.942813960268467, - 25.440925346169237, - 25.854159987093947, - 26.161318900674964, - 26.509351815007673, - 26.746866763887155, - 26.86377270604872, - 27.05433684216844 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 7.5, - 5.83333333333333 - ], - [ - 7.5, - 11.666666666666698 - ], - [ - 7.5, - 17.5 - ], - [ - 7.5, - 23.3333333333333 - ], - [ - 7.5, - 29.1666666666667 - ] - ], - "g": { - "5._192._0.08": [ - 2.835160935436525, - 3.1868513061797277, - 3.522109226552801, - 4.058916910217595, - 4.781510018290014, - 6.155106271693841, - 8.369821364191848, - 10.777765611330146, - 14.783755827914032, - 17.52151619899021, - 19.569902332327192, - 22.518771516729682, - 24.59476989483064, - 29.244190199866043, - 33.13724172826346, - 34.19463786458545, - 35.13323160485285, - 36.039095928542785, - 36.73288755324075, - 37.3238518922433, - 37.82836999898943, - 38.247363054570414, - 38.55936080688802, - 38.914340857540715, - 39.15689045809694, - 39.27618103620443, - 39.47037598309252 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224723, - 2.451192833029333, - 2.7884181637710057, - 3.0449223679137036, - 3.3875054399047, - 3.6194984330958744, - 3.8133650903874146, - 4.151324756046323, - 4.44957541723896, - 5.433025518385966, - 6.829452746302856, - 7.353087038054823, - 7.895090545108844, - 8.499132438536055, - 9.029485349594106, - 9.529953484634133, - 10.001468552655254, - 10.42783130739095, - 10.765247331993033, - 11.170271049178728, - 11.459983984264111, - 11.607145831300443, - 11.852645644486135 - ], - "5._384._0.0875": [ - 3.492882462594741, - 4.064071643976168, - 4.843212833654895, - 6.32915152161983, - 8.317905631947884, - 11.683968967575979, - 16.2195342970227, - 20.370183535226886, - 26.217212075483175, - 29.73588961660947, - 32.1988233415454, - 35.55313638311747, - 37.81707658312739, - 42.705041103641946, - 46.70377146823235, - 47.78188318594358, - 48.742189667894486, - 49.67052656439825, - 50.384344462428395, - 50.993125363250996, - 51.51469072610566, - 51.94932034356942, - 52.273284260047234, - 52.64281521074822, - 52.895270209720856, - 53.0192752733766, - 53.220652427162804 - ], - "5._48._0.075": [ - 1.5268463243731383, - 1.8679037053125402, - 2.1622431316564765, - 2.506080868423246, - 2.800133256061025, - 3.1431338877332955, - 3.5122567216395923, - 3.8719318571039025, - 4.560741645636349, - 5.151622754318021, - 5.6809417372059, - 6.61433603026378, - 7.414801619801712, - 9.782040579873577, - 12.517866139774474, - 13.39923687923432, - 14.235559945620091, - 15.09132515595599, - 15.779820080246257, - 16.383836811381123, - 16.912527418913104, - 17.359036532942465, - 17.69388892823754, - 18.075011271439244, - 18.336003635482506, - 18.464989692110045, - 18.675773570759805 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235607903275, - 2.8519115447450543, - 3.200015964541127, - 3.5240665650049254, - 4.026921835955737, - 4.834061171893603, - 5.80441961931526, - 7.707714731810569, - 9.232651186085834, - 10.498474652172181, - 12.518938752669758, - 14.079401170586774, - 17.996118836237155, - 21.664971577866634, - 22.71146059167286, - 23.652946116226406, - 24.57184116662423, - 25.28044455726192, - 25.885253615397488, - 26.401810236035267, - 26.83026195341878, - 27.14871708230486, - 27.509522379936534, - 27.75575944131046, - 27.87696539129626, - 28.07456811972431 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 5.0, - 5.83333333333333 - ], - [ - 5.0, - 11.666666666666698 - ], - [ - 5.0, - 17.5 - ], - [ - 5.0, - 23.3333333333333 - ], - [ - 5.0, - 29.1666666666667 - ], - [ - 10.0, - 5.83333333333333 - ], - [ - 10.0, - 11.666666666666698 - ], - [ - 10.0, - 17.5 - ], - [ - 10.0, - 23.3333333333333 - ], - [ - 10.0, - 29.1666666666667 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351828421003793, - 3.1889162105828097, - 3.5432029761105506, - 4.173814256695744, - 5.079863468737567, - 6.821966110237225, - 9.597280099184662, - 12.568702566345522, - 17.441272290397443, - 20.743120501947004, - 23.204619983878768, - 26.73636160750024, - 29.216375864155445, - 34.75282341509192, - 39.37421370838594, - 40.627785349245926, - 41.739794916704035, - 42.81240233037382, - 43.633324255738835, - 44.33250411354304, - 44.92918898432837, - 45.424588043262325, - 45.79350017203132, - 46.213234644600696, - 46.500078410032486, - 46.64118173646535, - 46.87097921802992 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615433, - 1.481384749141307, - 1.8198213217004335, - 2.1114679242247254, - 2.4511928333554143, - 2.788423074476667, - 3.045258609640092, - 3.3967357677809824, - 3.6521160768201897, - 3.8784615353155876, - 4.291850043776406, - 4.666596515689791, - 5.913680140693791, - 7.666489734854778, - 8.316755594023519, - 8.983539370669678, - 9.720523937890082, - 10.362104727667537, - 10.963688689323424, - 11.526497454533475, - 12.032002889564447, - 12.429850947427521, - 12.904207917937574, - 13.241405994968742, - 13.412085896363305, - 13.696048128981584 - ], - "5._384._0.0875": [ - 3.5203043126364992, - 4.199641488261283, - 5.180276551511109, - 7.063159175667152, - 9.554156579021802, - 13.697730673008198, - 19.206097189854173, - 24.20939740286298, - 31.224857088239265, - 35.435461302742674, - 38.3793966814095, - 42.38356816866399, - 45.08366557780701, - 50.90528727970205, - 55.66200606670417, - 56.943797599704446, - 58.08526082886659, - 59.188439362646484, - 60.0364231424926, - 60.75961671332702, - 61.37910526636609, - 61.89527451689839, - 62.28003535692553, - 62.7189236849628, - 63.01879585041029, - 63.16610971032365, - 63.40539315477605 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125422, - 2.162243131656476, - 2.5060808699803925, - 2.800137628654088, - 3.1439627653951674, - 3.5285770212296232, - 3.940392453278868, - 4.7934067372374285, - 5.543524481004366, - 6.216532827357565, - 7.39562486126754, - 8.398376961133817, - 11.313098663156692, - 14.61900303107054, - 15.672760076337998, - 16.6686263748455, - 17.683653180745566, - 18.49681549704643, - 19.208379263738365, - 19.82926891646122, - 20.35224080883121, - 20.74380666106344, - 21.188641326985408, - 21.492966680793185, - 21.643339916637252, - 21.889209777450304 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.555323567339309, - 2.8519216530492066, - 3.2013484569266835, - 3.539968849386015, - 4.122841827165889, - 5.132565637626151, - 6.365119690402001, - 8.759022256174644, - 10.652158337668455, - 12.208844087057757, - 14.670370202681072, - 16.558361949457574, - 21.25930158965087, - 25.627008313049572, - 26.86815124564095, - 27.982981926206673, - 29.06948206263259, - 29.905955175932835, - 30.619435261468418, - 31.228183520428797, - 31.73269730013102, - 32.10762015751907, - 32.53227883216182, - 32.82212120056376, - 32.964823832544326, - 33.19761226122462 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "4_9": { - "1_1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 40.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 40.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 40.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 7.5, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835170068758978, - 3.1873775111617735, - 3.5238121252744743, - 4.0422585708783485, - 4.675730820680686, - 5.77065147619262, - 7.491371116236748, - 9.412720332304541, - 12.735935862302583, - 15.073170165280814, - 16.849081080266494, - 19.441809801935015, - 21.28878484096337, - 25.477296367296375, - 29.023594053199165, - 29.9908510676327, - 30.849875646111105, - 31.679325209183204, - 32.31452804624852, - 32.85553410858817, - 33.317206591785755, - 33.700422664367814, - 33.98570002532905, - 34.31010694806243, - 34.53173723480634, - 34.64074942186788, - 34.81826230507517 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141308, - 1.8198213217004349, - 2.111467924224725, - 2.4511928331944173, - 2.788420337548957, - 3.0450359349564455, - 3.388887265004769, - 3.6203739248026743, - 3.80916293766458, - 4.1231924261003865, - 4.384749403075436, - 5.182315075188425, - 6.267306702248411, - 6.677950454559443, - 7.109256023311873, - 7.598187023558923, - 8.035438148543527, - 8.454732555595376, - 8.856319003755482, - 9.225346398883532, - 9.521540158935188, - 9.882975781097985, - 10.145854317842177, - 10.280949611421297, - 10.508933026568126 - ], - "5._384._0.0875": [ - 3.4943891946547767, - 4.040375148803086, - 4.713355159022485, - 5.8884290785499545, - 7.433033714365236, - 10.133811416753947, - 13.92272707043771, - 17.492906868789557, - 22.64123255655335, - 25.79011382829199, - 28.01094598610131, - 31.052687866945654, - 33.11405209481811, - 37.576807302255084, - 41.23259880543493, - 42.21844254758018, - 43.096046122624905, - 43.94406187201493, - 44.59565485629165, - 45.15124182582196, - 45.62697059861039, - 46.02319751741648, - 46.31848694156693, - 46.6551947793449, - 46.88521602195558, - 46.99821345937625, - 47.181770775001006 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125425, - 2.1622431316564765, - 2.506080869204849, - 2.8001352003275732, - 3.143383085419685, - 3.5139370364721705, - 3.8674457449912953, - 4.490348770656598, - 4.979091448011679, - 5.39803132274762, - 6.121284526961562, - 6.741718855627343, - 8.63060984685441, - 10.916299540197242, - 11.673462775983188, - 12.401616491244631, - 13.155527908273466, - 13.769315773229499, - 14.312355943243968, - 14.79178557190238, - 15.199690169177815, - 15.507169841387935, - 15.858847339428118, - 16.100587276798343, - 16.22033799539218, - 16.41633060681391 - ], - "5._96._0.075": [ - 2.209271810327409, - 2.5553235640439755, - 2.8519159062567163, - 3.200386489843664, - 3.5257671002439284, - 4.015842077954414, - 4.726992389396811, - 5.5059924918418, - 6.9823379831898436, - 8.182583948099538, - 9.200052282815651, - 10.863689625201761, - 12.175447027615055, - 15.555156837461194, - 18.813828533316457, - 19.757687681388532, - 20.611224940644668, - 21.448097501024353, - 22.095837301857333, - 22.6498175433471, - 23.12375085917942, - 23.517242597008536, - 23.809803129589323, - 24.141255823096397, - 24.367492748601983, - 24.478888750872862, - 24.660548083838783 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 40.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 40.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 40.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 7.5, - 13.333333333333302 - ], - [ - 7.5, - 26.6666666666667 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351674568418495, - 3.187170378460999, - 3.5221772684679373, - 4.037710229470168, - 4.677134931942406, - 5.816849124440087, - 7.647144896094423, - 9.688011228042658, - 13.189075689909362, - 15.638592346284796, - 17.495556871217573, - 20.20136659083157, - 22.126337523806093, - 26.48490220315927, - 30.16976794946685, - 31.17419174979153, - 32.0659830806098, - 32.92684691032232, - 33.585902981577206, - 34.14719508073352, - 34.6261006573842, - 35.02357236226425, - 35.319467112655275, - 35.65594603903937, - 35.885839047683675, - 35.99892438736497, - 36.1831006939669 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.195803175961541, - 1.4813847491413077, - 1.819821321700434, - 2.111467924224724, - 2.4511928331517994, - 2.788419736561618, - 3.044998971323878, - 3.388082734960557, - 3.6181161713503402, - 3.805652136418744, - 4.119185121750708, - 4.3830748124551295, - 5.207149516747439, - 6.358090459920626, - 6.795477952820412, - 7.254062252125338, - 7.772117309615391, - 8.233551951446408, - 8.674438084043137, - 9.09524618893855, - 9.48069339794033, - 9.789251251217742, - 10.164642497916756, - 10.436934700659997, - 10.576635333990497, - 10.812035919258262 - ], - "5._384._0.0875": [ - 3.492348467580125, - 4.03573852175107, - 4.717432112030226, - 5.945501737144653, - 7.589569830332809, - 10.45504345486116, - 14.441659272965673, - 18.180281967228144, - 23.556120617539925, - 26.839360839627677, - 29.15362332185621, - 32.32135887434499, - 34.467176103762974, - 39.10989246483906, - 42.91100324558082, - 43.93578873531772, - 44.847967229507205, - 45.729293658174896, - 46.40638775641261, - 46.983714091889645, - 47.47802382372292, - 47.889705619718406, - 48.19651912059655, - 48.546370595417756, - 48.78538209960519, - 48.90280183206316, - 49.09356100667274 - ], - "5._48._0.075": [ - 1.5268463243731447, - 1.8679037053125414, - 2.1622431316564765, - 2.506080869002256, - 2.800134664113307, - 3.1432955112839607, - 3.5126197351907824, - 3.8637541038517735, - 4.488655694791383, - 4.989665585414462, - 5.426591866413335, - 6.191816095457576, - 6.852785237760771, - 8.858929777780533, - 11.262713009000295, - 12.054827327017938, - 12.814538922942909, - 13.599548076469329, - 14.23734092395602, - 14.800934697659951, - 15.297802053872612, - 15.720021605936997, - 16.03804538215206, - 16.40145270873223, - 16.65111119181177, - 16.774759275443646, - 16.977148276371512 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235631964974, - 2.8519146831420232, - 3.200249194856068, - 3.524474466862927, - 4.011523500729819, - 4.728696900365399, - 5.536520964840269, - 7.10329974227939, - 8.381382015395435, - 9.460719547904393, - 11.216170949914419, - 12.59441364449244, - 16.128041186596064, - 19.520751791638137, - 20.501525217192537, - 21.387819819213718, - 22.256222205947395, - 22.92785798606695, - 23.502096303982146, - 23.99312967981386, - 24.400667153545175, - 24.703638191666467, - 25.046832864022274, - 25.28108601167103, - 25.396437810374614, - 25.584591786763507 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 40.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 40.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 40.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 7.5, - 10.0 - ], - [ - 7.5, - 20.0 - ], - [ - 7.5, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351650547090013, - 3.186980688212253, - 3.5206620106255917, - 4.033829088184277, - 4.683561765509022, - 5.879139536726041, - 7.82014974517546, - 9.974831533838346, - 13.647234878272519, - 16.206648965018854, - 18.143571906511152, - 20.961660451704184, - 22.96437431762188, - 27.49305121887755, - 31.316961094604427, - 32.358728060881596, - 33.28344670140875, - 34.175891792640684, - 34.8589390987797, - 35.44063629274549, - 35.93688024532917, - 36.34869719498268, - 36.655275868491366, - 37.00390250013427, - 37.242109380324194, - 37.35929271503263, - 37.550171776726486 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224723, - 2.45119283311259, - 2.7884191837128927, - 3.044965042377167, - 3.3873429258621885, - 3.6160126791803595, - 3.8024210593267798, - 4.116293045705996, - 4.384294263885441, - 5.243415440612806, - 6.463336132167189, - 6.926509108983703, - 7.41087644737771, - 7.956361112002564, - 8.440632905841708, - 8.902059329147692, - 9.341276483176573, - 9.742555961558399, - 10.063109673719058, - 10.452124850295881, - 10.73365829386581, - 10.877900417980577, - 11.120652933691101 - ], - "5._384._0.0875": [ - 3.4904530829056597, - 4.032036866096728, - 4.727823087853641, - 6.019904955105208, - 7.763764337133147, - 10.786133733385642, - 14.964245960963538, - 18.86859472828863, - 24.47054394459515, - 27.88791545472592, - 30.29556720892744, - 33.589392302366576, - 35.81979579345043, - 40.64290662933854, - 44.58979950712191, - 45.65366308656147, - 46.60054022752268, - 47.51530060081833, - 48.21799370478835, - 48.81714296779331, - 49.33010619186676, - 49.75730381127666, - 50.07568648615388, - 50.43873270780076, - 50.68676891667433, - 50.80862765298279, - 51.00661521762972 - ], - "5._48._0.075": [ - 1.5268463243731383, - 1.8679037053125402, - 2.1622431316564765, - 2.50608086881587, - 2.8001341708438034, - 3.1432152270501255, - 3.5114021222365284, - 3.8603577137807035, - 4.49013387322001, - 5.008675025659283, - 5.468027173637792, - 6.279198486602413, - 6.980651503854152, - 9.098274758738045, - 11.615293522365544, - 12.441305018122828, - 13.231913375476031, - 14.047543488763099, - 14.709118527102783, - 15.293138629818229, - 15.807402353544685, - 16.243951152512118, - 16.572552303321388, - 16.947757370806187, - 17.205398612886544, - 17.332980627122122, - 17.541830432425318 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235624168145, - 2.8519135580888157, - 3.2001234090452986, - 3.5232802487837804, - 4.007687556408312, - 4.735511544816177, - 5.580623013787889, - 7.241979813811867, - 8.594641848234287, - 9.732696528068825, - 11.575978539618248, - 13.01859012096629, - 16.703570371608045, - 20.229704181448316, - 21.247452929927437, - 22.166587327329665, - 23.066647515620385, - 23.762317991298506, - 24.35694349875292, - 24.86520339348142, - 25.286901879401633, - 25.600371770770437, - 25.955412541946007, - 26.197754233630853, - 26.317097490323526, - 26.511802938109902 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 40.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 40.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 40.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 7.5, - 8.0 - ], - [ - 7.5, - 16.0 - ], - [ - 7.5, - 24.0 - ], - [ - 7.5, - 32.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351628361920165, - 3.1868054047612775, - 3.5194425014509974, - 4.034261897292192, - 4.703739033702754, - 5.962696749340307, - 8.012452279518492, - 10.277287026586677, - 14.116867238724952, - 16.78444784290071, - 18.800498549233957, - 21.73025750801041, - 23.810570855532895, - 28.509807914283297, - 32.47374264436566, - 33.5531911166691, - 34.51116177674711, - 35.43552405123954, - 36.142839123326326, - 36.74518075066815, - 37.258974845541815, - 37.68531758028336, - 38.00271452292085, - 38.36364224445966, - 38.610266775123755, - 38.73159847959083, - 38.9292599082117 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.481384749141308, - 1.8198213217004335, - 2.1114679242247227, - 2.4511928330763975, - 2.788418673305684, - 3.0449336291103064, - 3.3866901560093967, - 3.6145325875840033, - 3.8010866047751666, - 4.1192418735890906, - 4.395378133176947, - 5.297121566405144, - 6.585749729313428, - 7.073941118427813, - 7.583106439033022, - 8.15497487837232, - 8.661260252110894, - 9.142578631343156, - 9.599687240049207, - 10.016417958497733, - 10.348731432460033, - 10.751176894102901, - 11.041873013268624, - 11.19063930568199, - 11.440758415374495 - ], - "5._384._0.0875": [ - 3.489015294355486, - 4.033799923843057, - 4.7535725796719746, - 6.115984976149539, - 7.957564628186365, - 11.13175083816206, - 15.49715402408615, - 19.56508940257129, - 25.391901402299652, - 28.943233074832417, - 31.44433027410756, - 34.86454820336213, - 37.179851490548515, - 42.1843330455541, - 46.27802444143149, - 47.38126478342864, - 48.36311503223758, - 49.311583455696905, - 50.04009433135148, - 50.66125359495393, - 51.1930333876155, - 51.63588443574116, - 51.9659383218816, - 52.34229539729108, - 52.59943468790607, - 52.72577043831398, - 52.931046630083586 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125418, - 2.162243131656476, - 2.5060808686438207, - 2.800133715449931, - 3.1431408472824436, - 3.5103848837870215, - 3.8589695707223757, - 4.502316316189344, - 5.044426579832137, - 5.528866252487682, - 6.386684279396166, - 7.127664828068744, - 9.352843754606786, - 11.980163939738642, - 12.839397213817902, - 13.66049356116856, - 14.506480523557771, - 15.191748367945461, - 15.796190411839255, - 16.327916491817277, - 16.778904523580557, - 17.1181945267422, - 17.505362640214173, - 17.77112023637636, - 17.902707355816727, - 18.11813855293153 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.5553235616971084, - 2.851912519275822, - 3.2000069431507296, - 3.5222766591494223, - 4.00717884832881, - 4.756057595204926, - 5.6449169431034765, - 7.400481360918528, - 8.825326242427044, - 10.020211237974125, - 11.948913659516657, - 13.45452133711772, - 17.289101293223975, - 20.948448061145086, - 22.00332344890346, - 22.955510053112036, - 23.887500142091284, - 24.607468338649515, - 25.22272711061862, - 25.74844819894794, - 26.184518828759842, - 26.50864946578353, - 26.875726761130682, - 27.126288531335994, - 27.24968780892263, - 27.45104723862411 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 40.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 40.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 40.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 7.5, - 6.66666666666667 - ], - [ - 7.5, - 13.333333333333302 - ], - [ - 7.5, - 20.0 - ], - [ - 7.5, - 26.6666666666667 - ], - [ - 7.5, - 33.3333333333333 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351608703692106, - 3.186699227023219, - 3.5195706334324983, - 4.0428515165949825, - 4.739022814022848, - 6.062900197725623, - 8.217647177053024, - 10.589110198266889, - 14.592630048489978, - 17.36720945052083, - 19.461867759628912, - 22.502967089863276, - 24.660845852728126, - 29.531078442917106, - 33.63581640286018, - 34.75320605563113, - 35.744674758232115, - 36.70120681571397, - 37.432996013151374, - 38.056160072552196, - 38.58766106158225, - 39.02866268864585, - 39.35697674381342, - 39.73031807347095, - 39.98543626141951, - 40.110953217135204, - 40.31545533691805 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615417, - 1.4813847491413072, - 1.8198213217004335, - 2.111467924224724, - 2.451192833042894, - 2.788418211372714, - 3.044908942150018, - 3.3865272957199357, - 3.6153224268391226, - 3.8045135112106188, - 4.1315383636024565, - 4.418762114753414, - 5.36572204215577, - 6.720905699726244, - 7.23314149443984, - 7.766163271682532, - 8.363514289168922, - 8.891163647302605, - 9.39188808405859, - 9.866531680979211, - 10.298475557375351, - 10.642414456718418, - 11.058203750925554, - 11.358051100347659, - 11.511354199253836, - 11.768893761208867 - ], - "5._384._0.0875": [ - 3.489442702604155, - 4.044966269955405, - 4.7952026506571865, - 6.22851564203788, - 8.164308985636847, - 11.485684638774854, - 16.035199609815994, - 20.265304416573073, - 26.316247719757662, - 30.001493736329397, - 32.59611455488376, - 36.14298227076282, - 38.543432434983245, - 43.73001781852471, - 47.97125120774145, - 49.1140848117803, - 50.13110621786603, - 51.11347982200607, - 51.86796519859124, - 52.511268316193416, - 53.061981080057244, - 53.52058357356989, - 53.862381298976516, - 54.25213175418077, - 54.51842981720462, - 54.64926959883911, - 54.86187728004538 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.867903705312541, - 2.162243131656476, - 2.506080868484627, - 2.800133302759138, - 3.1430876470710682, - 3.510359115720163, - 3.862604804596787, - 4.527651430824921, - 5.0960360169514125, - 5.605957105761465, - 6.5091444889623915, - 7.288152531295865, - 9.61722585450025, - 12.35263827171699, - 13.24467693620639, - 14.096047390530359, - 14.972289192618048, - 15.681262246032029, - 16.306185915323166, - 16.855477748412905, - 17.321031252916068, - 17.671124590998836, - 18.070412601815704, - 18.344407814432635, - 18.480063218282826, - 18.702180940578312 - ], - "5._96._0.075": [ - 2.2092718103274023, - 2.5553235610315768, - 2.8519115868510534, - 3.1999295584307883, - 3.5222297418107766, - 4.013612835879308, - 4.791561035457416, - 5.725959980763115, - 7.572795593317915, - 9.067242487692669, - 10.317241476287421, - 12.329456483688327, - 13.897065334279638, - 17.88015396496326, - 21.672754689826593, - 22.764921418547605, - 23.750351167125825, - 24.71450218145654, - 25.45898331435926, - 26.09507322998872, - 26.63844125062079, - 27.089049134646775, - 27.42396617763477, - 27.803226553905763, - 28.062109011740667, - 28.189613552181733, - 28.397705036659318 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 40.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 40.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 40.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 7.5, - 5.71428571428571 - ], - [ - 7.5, - 11.4285714285714 - ], - [ - 7.5, - 17.1428571428571 - ], - [ - 7.5, - 22.857142857142897 - ], - [ - 7.5, - 28.571428571428598 - ], - [ - 7.5, - 34.2857142857143 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351622192136787, - 3.186932832966185, - 3.522598510413625, - 4.060630844173668, - 4.78707305850437, - 6.176233905229876, - 8.4337215528789, - 10.909258998978235, - 15.074035521291732, - 17.954675332565337, - 20.12757073411259, - 23.279856747335863, - 25.515360883190855, - 30.55713876154386, - 34.80345333481621, - 35.95903050301487, - 36.984227970654324, - 37.97316457266292, - 38.72961846024047, - 39.37376883596574, - 39.92312065514981, - 40.37890318117258, - 40.718224877090464, - 41.10408281393436, - 41.367764187099404, - 41.49750010986978, - 41.708896209260395 - ], - "5._24._0.075": [ - 0.8740059532267972, - 1.195803175961542, - 1.4813847491413068, - 1.819821321700434, - 2.1114679242247245, - 2.4511928330520014, - 2.7884184669104846, - 3.044938868026206, - 3.387771044164756, - 3.620144366848768, - 3.814413950599497, - 4.153437257219755, - 4.453244668649678, - 5.446327521771922, - 6.866807616815766, - 7.40246210978401, - 7.958680067034483, - 8.580834307512795, - 9.12932957733705, - 9.649067061244844, - 10.140960115305258, - 10.587935610552536, - 10.943408493737541, - 11.372501767263921, - 11.681516511697788, - 11.839379612182292, - 12.104403974881272 - ], - "5._384._0.0875": [ - 3.493480598044306, - 4.066101545515, - 4.849906976918042, - 6.354011496645642, - 8.381904152780276, - 11.84702393823923, - 16.577999254340174, - 20.969175006110486, - 27.243849790767488, - 31.063088914469233, - 33.75136996211129, - 37.425188270968725, - 39.911041873201945, - 45.280441342383256, - 49.66991204062836, - 50.852539394200306, - 51.90491508641422, - 52.92137588883455, - 53.70198039652418, - 54.36755085245823, - 54.93730398349374, - 55.41174837977269, - 55.76535698281573, - 56.1685770307134, - 56.4440853028881, - 56.579454066780194, - 56.7994328131703 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.867903705312544, - 2.162243131656476, - 2.506080868530667, - 2.800133527041056, - 3.143170941585358, - 3.5126622119805915, - 3.8730350961646813, - 4.564689424835949, - 5.160454446162293, - 5.695941691651459, - 6.643759149409968, - 7.459924916422396, - 9.890329063427478, - 12.73205660235987, - 13.6565795317767, - 14.538085061859043, - 15.444545896789434, - 16.177280109090184, - 16.822778216280742, - 17.38976001415425, - 17.870015269559755, - 18.231029129426517, - 18.64259057267688, - 18.9249383559563, - 19.064720990133967, - 19.293622065973796 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235612379916, - 2.8519121549781774, - 3.200072064157095, - 3.524466617348279, - 4.028375983183299, - 4.839673596504613, - 5.820225506834013, - 7.7566138213001805, - 9.318940853471391, - 10.62275740519715, - 12.716919352268075, - 14.345706071182125, - 18.476505704873542, - 22.40258058253732, - 23.532225440184828, - 24.55110318284237, - 25.547649042672642, - 26.316852624373787, - 26.97396247307402, - 27.535151688865373, - 28.000449905207752, - 28.346269066987436, - 28.73784666857547, - 29.005141485306236, - 29.136796021752044, - 29.351690313884696 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 40.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 40.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 40.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 5.0, - 5.71428571428571 - ], - [ - 5.0, - 11.4285714285714 - ], - [ - 5.0, - 17.1428571428571 - ], - [ - 5.0, - 22.857142857142897 - ], - [ - 5.0, - 28.571428571428598 - ], - [ - 5.0, - 34.2857142857143 - ], - [ - 10.0, - 5.71428571428571 - ], - [ - 10.0, - 11.4285714285714 - ], - [ - 10.0, - 17.1428571428571 - ], - [ - 10.0, - 22.857142857142897 - ], - [ - 10.0, - 28.571428571428598 - ], - [ - 10.0, - 34.2857142857143 - ] - ], - "g": { - "5._192._0.08": [ - 2.835184813624687, - 3.189131165423414, - 3.545356744252871, - 4.18473873462797, - 5.108456211113644, - 6.893791683303347, - 9.758219103033362, - 12.850630984813641, - 17.97789144229745, - 21.49380098569, - 24.135828279814266, - 27.955133356181317, - 30.656283881555463, - 36.7270082390543, - 41.82242652714847, - 43.20702741309369, - 44.434518586634255, - 45.61781145874865, - 46.52220486570194, - 47.29223465079107, - 47.94866207639994, - 48.49310823643331, - 48.898459661380734, - 49.35940021520625, - 49.67444780546822, - 49.82949041418244, - 50.08223708551247 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615428, - 1.4813847491413072, - 1.8198213217004329, - 2.1114679242247245, - 2.4511928333766897, - 2.788423490965625, - 3.045292207209134, - 3.397695786468975, - 3.6553847657643024, - 3.8847837583808427, - 4.3051460645099295, - 4.687217908266763, - 5.963532280485104, - 7.768767437239841, - 8.44201458732713, - 9.134433045173473, - 9.902404263076468, - 10.5735678475288, - 11.205370333295177, - 11.798961426555039, - 12.334546995377195, - 12.757991236619628, - 13.265431282040101, - 13.628370661515381, - 13.81305120099802, - 14.122144391809702 - ], - "5._384._0.0875": [ - 3.523070359780667, - 4.212454479636687, - 5.212842058518179, - 7.14390425862233, - 9.715792772493083, - 14.033716908630918, - 19.849435440958963, - 25.20630756506176, - 32.823441142027434, - 37.44662774652155, - 40.696828194287484, - 45.13222952641827, - 48.13039805060863, - 54.59644659415324, - 59.87518606485176, - 61.29653606638462, - 62.561010520291184, - 63.78197172313699, - 64.7192768822837, - 65.51843938426437, - 66.20242574428649, - 66.77191490416882, - 67.19638325069776, - 67.6804145369154, - 68.01117872373422, - 68.17371823650619, - 68.43791707853396 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564783, - 2.506080870084627, - 2.8001379975210337, - 3.1440476392061356, - 3.530254974914842, - 3.947034395102561, - 4.8154773236152, - 5.582289147498631, - 6.272233886256382, - 7.484880999877681, - 8.52004989295708, - 11.548648207561097, - 15.022744221627013, - 16.140731169064964, - 17.20212719651548, - 18.28899828963052, - 19.163549814235957, - 19.931821629541396, - 20.604333790257343, - 21.172279845984082, - 21.598428873913814, - 22.083208632211093, - 22.415399778596573, - 22.579817309759886, - 22.849224368826295 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235677904254, - 2.851922534655338, - 3.201486238754876, - 3.5416057412547253, - 4.132019664762227, - 5.161204525149512, - 6.423520531121944, - 8.88989838269673, - 10.853437475052077, - 12.476521430060279, - 15.05877837313237, - 17.053126410372897, - 22.06898584221572, - 26.795288696780133, - 28.149605034722764, - 29.369011765355335, - 30.559764827139134, - 31.477175492469204, - 32.26029932081243, - 32.92833033015455, - 33.48170607380953, - 33.89289431861205, - 34.358333149481126, - 34.676074758107255, - 34.83261540112632, - 35.08830304533989 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "5_5": { - "2_1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 20.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 20.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 6.66666666666667, - 10.0 - ], - [ - 13.333333333333302, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351657345873336, - 3.1870727503912026, - 3.521982753412592, - 4.041616148900451, - 4.698783026804452, - 5.890635106272722, - 7.779720170992983, - 9.821960521659463, - 13.172632884556535, - 15.410821505126743, - 17.056647286823818, - 19.388652974814157, - 21.00597103616414, - 24.58239839598278, - 27.550085960301686, - 28.35414852245792, - 29.06913223676383, - 29.760255583720905, - 30.291171205589407, - 30.743704416712983, - 31.13092532598734, - 31.453180164572377, - 31.69323526564007, - 31.966665436253198, - 32.15343180781915, - 32.245205992003605, - 32.394309797112435 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615422, - 1.4813847491413075, - 1.8198213217004355, - 2.1114679242247285, - 2.4511928331221116, - 2.788419330311878, - 3.044977358319714, - 3.387859235933277, - 3.618179497618861, - 3.8069220513831072, - 4.125342464110532, - 4.396514215897897, - 5.256536284538244, - 6.4512208912391245, - 6.8971655732656565, - 7.358728455273069, - 7.872203729989412, - 8.32150758574725, - 8.743227310368821, - 9.137900479273588, - 9.491870459162875, - 9.7694545554817, - 10.099326763949266, - 10.33232724099065, - 10.449445378462618, - 10.642653797339428 - ], - "5._384._0.0875": [ - 3.49224347652155, - 4.041064869164032, - 4.743880756840067, - 6.0285925882382285, - 7.723922462926962, - 10.575655462543793, - 14.344867027567286, - 17.695549029483953, - 22.27531483915372, - 24.968505027524774, - 26.833823306050036, - 29.359948670221417, - 31.05828842651195, - 34.727516438580835, - 37.737376043348306, - 38.55038437835451, - 39.276090691001244, - 39.97894975440218, - 40.520804489469505, - 40.9831621268072, - 41.37994551166122, - 41.711077130110226, - 41.95793321393818, - 42.23968310338636, - 42.432103175704185, - 42.526557691086424, - 42.67972854331501 - ], - "5._48._0.075": [ - 1.52684632437314, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808688612117, - 2.8001343010558144, - 3.143248368886363, - 3.512391469978415, - 3.8651024449745655, - 4.503233267093543, - 5.024491298271462, - 5.482215083703422, - 6.281166546398598, - 6.9633940187189936, - 8.977769977258447, - 11.278164715643596, - 12.006469733688716, - 12.691448374961837, - 13.385456271975523, - 13.938978346204152, - 14.420601678661834, - 14.839623337883081, - 15.191848060451923, - 15.454973542986501, - 15.753906491843123, - 15.95806202743579, - 16.058647974417166, - 16.222367400052594 - ], - "5._96._0.075": [ - 2.2092718103274005, - 2.555323562607016, - 2.851913864540251, - 3.2001796360299273, - 3.524238363964395, - 4.014280569245819, - 4.750596731762358, - 5.59517455902985, - 7.2216305844556095, - 8.517894758551254, - 9.589979630416423, - 11.28927876086917, - 12.586607344391009, - 15.779007151483587, - 18.682166155666557, - 19.496605512250042, - 20.226212923846926, - 20.9360234027032, - 21.483074011761314, - 21.9494898424667, - 22.348247331075147, - 22.67947101298694, - 22.92574714971439, - 23.205194307088473, - 23.39583116956993, - 23.489547933860138, - 23.641948697026425 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 20.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 20.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 6.66666666666667, - 6.66666666666667 - ], - [ - 6.66666666666667, - 13.333333333333302 - ], - [ - 13.333333333333302, - 6.66666666666667 - ], - [ - 13.333333333333302, - 13.333333333333302 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351599997534733, - 3.186703336446965, - 3.521092481164318, - 4.059313020933388, - 4.788189577342276, - 6.162781272014343, - 8.345292851315753, - 10.676504474975355, - 14.448865581245432, - 16.948658904085182, - 18.78097280584794, - 21.370066546020315, - 23.1621857129937, - 27.115991149876702, - 30.389797743506584, - 31.276027205787074, - 32.06375151339001, - 32.82490670172234, - 33.409367133998146, - 33.90751120296878, - 34.33366619065526, - 34.6882646773629, - 34.95242464297974, - 35.25331235310287, - 35.45885855171617, - 35.55987457149555, - 35.724036263396904 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615422, - 1.4813847491413077, - 1.8198213217004353, - 2.1114679242247267, - 2.451192833027056, - 2.788417998915073, - 3.044901043274957, - 3.386927783383287, - 3.618364577070543, - 3.8125545270972716, - 4.152943341827983, - 4.453914846908808, - 5.440712112104673, - 6.82229901014234, - 7.335017140753599, - 7.861777053274915, - 8.443663952615292, - 8.949105686227796, - 9.420845535863021, - 9.859780481739303, - 10.25135344331256, - 10.557132964254265, - 10.918743496257653, - 11.173083203853237, - 11.300626542914664, - 11.510637024286607 - ], - "5._384._0.0875": [ - 3.4917159668172433, - 4.065158966476996, - 4.850863023721858, - 6.335415762954903, - 8.293980115111522, - 11.541816897809717, - 15.778013462479818, - 19.517384443650464, - 24.60822768352863, - 27.595731211173327, - 29.6631553485588, - 32.460410604178605, - 34.33984147872651, - 38.396587146913, - 41.72164747583962, - 42.61949576464608, - 43.420811065889666, - 44.19677595522341, - 44.79487349744912, - 45.30522022719408, - 45.74314619654415, - 46.10858823737837, - 46.38103286749354, - 46.69199414343684, - 46.904381302228074, - 47.00864588233013, - 47.177750223676 - ], - "5._48._0.075": [ - 1.5268463243731432, - 1.8679037053125407, - 2.1622431316564765, - 2.506080868409371, - 2.800133112547571, - 3.1430767931454193, - 3.511386848717033, - 3.8710890578512656, - 4.565514537506568, - 5.159967424672273, - 5.68948199888322, - 6.616540287691154, - 7.40529923467462, - 9.702550418181303, - 12.281642651222278, - 13.090793778877762, - 13.84910693801245, - 14.615091200054472, - 15.224108064381122, - 15.753072591918855, - 16.212309739505855, - 16.597653774799877, - 16.88523289321435, - 17.211554092525482, - 17.43427872425332, - 17.543998539184912, - 17.722636910383695 - ], - "5._96._0.075": [ - 2.209271810327402, - 2.5553235607170253, - 2.85191116392723, - 3.199921625014676, - 3.523204807642179, - 4.0267419184683275, - 4.840760204163394, - 5.813332336326741, - 7.696094684224542, - 9.18388822428947, - 10.403936138091717, - 12.320796371321462, - 13.774670680800304, - 17.326878347330336, - 20.536479425646146, - 21.434414637449454, - 22.237929897764705, - 23.018880741361954, - 23.6201138371665, - 24.13252122891918, - 24.570317147279777, - 24.933785086454822, - 25.204009676221734, - 25.510574922835644, - 25.719726015521935, - 25.82255982870878, - 25.989848857401267 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 20.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 20.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 5.0, - 6.66666666666667 - ], - [ - 5.0, - 13.333333333333302 - ], - [ - 10.0, - 6.66666666666667 - ], - [ - 10.0, - 13.333333333333302 - ], - [ - 15.0, - 6.66666666666667 - ], - [ - 15.0, - 13.333333333333302 - ] - ], - "g": { - "5._192._0.08": [ - 2.83517506150512, - 3.188084149750735, - 3.5338694903630508, - 4.120772613488644, - 4.940732472986014, - 6.501653001612625, - 8.967822182231144, - 11.576289358494135, - 15.75821977880861, - 18.51532133869308, - 20.53234294951659, - 23.37750009470285, - 25.344386097329892, - 29.677129129947204, - 33.259556860091344, - 34.228765241011274, - 35.089999748903516, - 35.92197371361982, - 36.56062040849432, - 37.1049279637809, - 37.57050377458143, - 37.957859665667755, - 38.2464317093403, - 38.575127370639464, - 38.79968971819924, - 38.91006194764505, - 39.089461828297104 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615408, - 1.4813847491413077, - 1.8198213217004344, - 2.1114679242247263, - 2.451192833246048, - 2.7884213638417794, - 3.0451313548122245, - 3.392771863217782, - 3.6374374468885233, - 3.8486409128162546, - 4.226783721492134, - 4.565705611453768, - 5.685367531266004, - 7.248567974247921, - 7.825040743687937, - 8.413788118213947, - 9.060790768565193, - 9.619817451469801, - 10.139603298409016, - 10.621299767718048, - 11.049440288985398, - 11.38281323765505, - 11.775722402614818, - 12.051266106250484, - 12.189224707269556, - 12.416120146465303 - ], - "5._384._0.0875": [ - 3.508081047714071, - 4.136962196301595, - 5.022763777100336, - 6.708325201748374, - 8.9208025775383, - 12.548995540472646, - 17.240228493141537, - 21.36326179949014, - 26.962884668883728, - 30.24464507947175, - 32.51448735958012, - 35.58374201073144, - 37.64505804313861, - 42.09162213587395, - 45.73419473145637, - 46.717553353599484, - 47.59509352438236, - 48.44477782155921, - 49.099606913169595, - 49.65836013233257, - 50.13779217307387, - 50.5378511421908, - 50.83611132097161, - 51.176542193269555, - 51.409070344221014, - 51.52322914254473, - 51.70840002675176 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125405, - 2.162243131656477, - 2.506080869457111, - 2.8001361076527793, - 3.1436398137531314, - 3.521417433383787, - 3.909028593705896, - 4.68520962828333, - 5.359520678387415, - 5.962020550344118, - 7.014321044335631, - 7.905674773759608, - 10.47384294060144, - 13.32311760057119, - 14.211490816317712, - 15.042301286740182, - 15.879841207709852, - 16.54434098830463, - 17.12080804735399, - 17.62055836379206, - 18.039386895778044, - 18.351747993902713, - 18.705903941573403, - 18.947538053129197, - 19.06656757736786, - 19.260415803113826 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235651331954, - 2.851918102641616, - 3.2008204122301893, - 3.533004064889046, - 4.078659570784809, - 4.993323190615415, - 6.098361640004133, - 8.230294504830068, - 9.901681198813938, - 11.263769223904522, - 13.39115650270654, - 14.99784295951474, - 18.905889714403816, - 22.422187708341607, - 23.404163442439863, - 24.282226237000863, - 25.13506821344426, - 25.791165816943135, - 26.35018332266246, - 26.827592120490102, - 27.22381188129518, - 27.518369693593417, - 27.85250171321998, - 28.080474244346835, - 28.192574970025092, - 28.374989221504144 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 20.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 20.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 10.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351690633539097, - 3.187297729317165, - 3.5231036913448337, - 4.03829515196311, - 4.668769284467644, - 5.777440926784886, - 7.516980560016233, - 9.408208653929846, - 12.541448581917443, - 14.646742465310703, - 16.198463432247014, - 18.401364382030078, - 19.931126947261973, - 23.3189624425537, - 26.133972642596465, - 26.897088922535158, - 27.575829825847972, - 28.232069929758374, - 28.736322872950243, - 29.166145539318638, - 29.533983455420717, - 29.840138163659294, - 30.06819405504583, - 30.32795615627281, - 30.50537347615724, - 30.592546488854328, - 30.734152414556835 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615428, - 1.481384749141308, - 1.8198213217004362, - 2.1114679242247285, - 2.4511928331780077, - 2.7884201061707126, - 3.0450217246869804, - 3.388565179481605, - 3.6192868993770895, - 3.8069539331658686, - 4.118538407429997, - 4.378744130427089, - 5.183253508727977, - 6.284020672155531, - 6.695014469215383, - 7.122157330148088, - 7.599498561101806, - 8.01923069211515, - 8.414766798479853, - 8.786413185216366, - 9.120942300420413, - 9.384027154875726, - 9.697662373564988, - 9.919793749932527, - 10.031619073169086, - 10.21632971726765 - ], - "5._384._0.0875": [ - 3.4934572709321556, - 4.035691721022439, - 4.706624305572615, - 5.8985057336757425, - 7.459178539186731, - 10.104211957553916, - 13.633796669906554, - 16.787891397377003, - 21.111139215244012, - 23.65703513151427, - 25.421283303472304, - 27.81192564136665, - 29.419825079624587, - 32.895639191448346, - 35.74827181162997, - 36.518970300658175, - 37.20697324196509, - 37.87338036975562, - 38.38719415998495, - 38.825625902051655, - 39.20189768001081, - 39.515924303129665, - 39.75002320078204, - 40.017209438135325, - 40.19967417152731, - 40.28923726732824, - 40.43446284012706 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125453, - 2.1622431316564774, - 2.506080869126845, - 2.800134993885049, - 3.143349426668005, - 3.513384089652635, - 3.865111868446782, - 4.483801482406906, - 4.974525454681382, - 5.399366104195478, - 6.135266526023098, - 6.762751058745606, - 8.628872573609703, - 10.78479744712892, - 11.471690880303774, - 12.119406999486857, - 12.777009627174387, - 13.302587787154682, - 13.760422830412521, - 14.15928564800977, - 14.494942818422327, - 14.745850943130364, - 15.031122437439242, - 15.226028694352411, - 15.322068749754699, - 15.478367110702123 - ], - "5._96._0.075": [ - 2.2092718103274023, - 2.5553235637176743, - 2.851915435389374, - 3.200333692339888, - 3.5252272673310836, - 4.012534865719168, - 4.720170488536042, - 5.5076987699385676, - 7.005583313020637, - 8.201820604148494, - 9.196497756966165, - 10.782952382200207, - 11.99995619143155, - 15.010254291210055, - 17.75981255164101, - 18.532566088636568, - 19.22529556804791, - 19.899642099253548, - 20.41971051192545, - 20.863231028104984, - 21.24256674314214, - 21.55775696138165, - 21.79212690758522, - 22.058095593622557, - 22.239531227056123, - 22.328716918121458, - 22.47371715520643 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "5_6": { - "1_1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 10.0, - 12.5 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351694687039664, - 3.1873285330833565, - 3.523298993086346, - 4.037857676485525, - 4.660152860286639, - 5.732696330391313, - 7.409457133000339, - 9.265895914357825, - 12.440911662681614, - 14.634405342539148, - 16.27554092604608, - 18.632836346287444, - 20.284742330159077, - 23.967054678904983, - 27.037454103635262, - 27.87029057978814, - 28.610076485807504, - 29.32461972855016, - 29.872751794833064, - 30.339747248690742, - 30.738888785314757, - 31.070710011349497, - 31.317811729766714, - 31.59907674982727, - 31.79119147157856, - 31.885620910577956, - 32.0391537316673 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.481384749141308, - 1.8198213217004335, - 2.1114679242247276, - 2.4511928331846295, - 2.788420199512683, - 3.0450274046000447, - 3.3886737897263868, - 3.619514079008248, - 3.807087969227413, - 4.117252607445643, - 4.37419125638628, - 5.1557152742019365, - 6.215185245063147, - 6.613361489935756, - 7.03082951261164, - 7.502741238481832, - 7.923191525096671, - 8.324419001941129, - 8.706259524630008, - 9.054232036724946, - 9.330827071126809, - 9.664090030657572, - 9.902487743423018, - 10.023297819970265, - 10.224014902768637 - ], - "5._384._0.0875": [ - 3.493686223247902, - 4.034818041917828, - 4.695286202222272, - 5.846087347940122, - 7.350533817943262, - 9.957373874316726, - 13.561901915019792, - 16.879857713377454, - 21.526317333419982, - 24.29775225470112, - 26.22766737168768, - 28.848869605873418, - 30.614289856188755, - 34.426815302652344, - 37.54963436398097, - 38.39233664537438, - 39.143736056848844, - 39.870818263892545, - 40.43065013894707, - 40.90820627045633, - 41.31769476517519, - 41.65917905272685, - 41.913719788986214, - 42.2041361472295, - 42.40249282692727, - 42.49988688072049, - 42.65792001963899 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125427, - 2.1622431316564756, - 2.5060808691583216, - 2.800135077169685, - 3.1433627358474254, - 3.513549073781385, - 3.8652513396076986, - 4.478815998844064, - 4.957787900494696, - 5.368218795608704, - 6.075463003253535, - 6.679656075508203, - 8.507475821922554, - 10.693440444607246, - 11.40730181597588, - 12.087380841799945, - 12.784171529912118, - 13.34532620076285, - 13.83678847181513, - 14.266692979223741, - 14.62946172071643, - 14.901060493736342, - 15.2099983115044, - 15.421225440801702, - 15.525415808145468, - 15.69518734786503 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.555323563849339, - 2.8519156253082074, - 3.2003543616083143, - 3.5253903945670104, - 4.012397626775901, - 4.711352088249862, - 5.474621802989541, - 6.915973253506186, - 8.079106374554685, - 9.060767733700345, - 10.65623437022798, - 11.903090610203705, - 15.058364134120605, - 18.007098130364255, - 18.843907706887975, - 19.595412325205288, - 20.32792187252642, - 20.892840825675552, - 21.37462206884474, - 21.78633336789877, - 22.12806030989264, - 22.38203021654616, - 22.669924129937844, - 22.866292937140873, - 22.96285951455357, - 23.120015210603356 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 10.0, - 8.33333333333333 - ], - [ - 10.0, - 16.6666666666667 - ] - ], - "g": { - "5._192._0.08": [ - 2.835166363979474, - 3.1870797355335543, - 3.521207804448792, - 4.031023724097261, - 4.66035672819702, - 5.790224605008705, - 7.598409205700306, - 9.597236292286109, - 12.981230229358184, - 15.302780686315655, - 17.034564583313347, - 19.51607669820588, - 21.25229916764419, - 25.115784551405202, - 28.33217274109507, - 29.204041108347607, - 29.97828437221068, - 30.72590894448695, - 31.29923719473004, - 31.787677116349453, - 32.20507967837409, - 32.552040061083986, - 32.81042244977902, - 33.10452802366989, - 33.30542932472885, - 33.40418655591054, - 33.564784912767045 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615422, - 1.4813847491413077, - 1.8198213217004353, - 2.1114679242247267, - 2.4511928331339763, - 2.788419485207269, - 3.0449833824823838, - 3.387678467870019, - 3.6165293696485006, - 3.802135968097245, - 4.110879395069579, - 4.370514564916897, - 5.186377982541512, - 6.325697587106456, - 6.7558604961388795, - 7.205890450029461, - 7.712542774210724, - 8.161714570358729, - 8.58840187867678, - 8.99263343303595, - 9.359453342140323, - 9.650035760513893, - 9.998833287487546, - 10.24753641975879, - 10.373333886194557, - 10.582004391903176 - ], - "5._384._0.0875": [ - 3.4910375189425884, - 4.0276765763561135, - 4.699034057073624, - 5.917059869318452, - 7.540613081317836, - 10.343234104028417, - 14.178413457963051, - 17.68610064088216, - 22.58067394019115, - 25.495151398306493, - 27.52340514843496, - 30.276303979095594, - 32.129564230794784, - 36.12916300940241, - 39.40331666619901, - 40.286641334826356, - 41.07418044509514, - 41.836146115358005, - 42.42275504876172, - 42.92315068919159, - 43.35219461073805, - 43.70996915708998, - 43.9766593051476, - 44.28094126531311, - 44.48877959335471, - 44.59083491707867, - 44.75644849821898 - ], - "5._48._0.075": [ - 1.5268463243731432, - 1.8679037053125407, - 2.1622431316564765, - 2.5060808689175333, - 2.800134439853044, - 3.14325816374314, - 3.5118840447907793, - 3.8600422314387015, - 4.475055792744343, - 4.970093764721541, - 5.40356386196328, - 6.162385020553538, - 6.815144066054368, - 8.782497928050793, - 11.107585115556367, - 11.86146121473633, - 12.57724402415079, - 13.308773197959257, - 13.896416084401107, - 14.410345761179858, - 14.859173414637072, - 15.237396561331241, - 15.52034264645664, - 15.841888384523926, - 16.061617541551367, - 16.169982972022257, - 16.34658154347361 - ], - "5._96._0.075": [ - 2.209271810327402, - 2.5553235628420943, - 2.851914171525622, - 3.200190011153421, - 3.523759866853767, - 4.00606459901289, - 4.7119862551821985, - 5.512518864194617, - 7.06335675746193, - 8.31925133503675, - 9.374626935519023, - 11.078615700313033, - 12.40287274271961, - 15.732588316775649, - 18.827871475181475, - 19.704325161366974, - 20.490817548066733, - 21.25687953771731, - 21.847202509905376, - 22.35050070011437, - 22.780393210982588, - 23.137077096178274, - 23.402140514602785, - 23.702566992407522, - 23.90749001022024, - 24.008272579374843, - 24.172331237160424 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 6.66666666666667, - 8.33333333333333 - ], - [ - 6.66666666666667, - 16.6666666666667 - ], - [ - 13.333333333333302, - 8.33333333333333 - ], - [ - 13.333333333333302, - 16.6666666666667 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351610872837996, - 3.1867164372085854, - 3.5195396635007343, - 4.039121237522495, - 4.719098832026887, - 5.994828174374967, - 8.057792157620788, - 10.320684331786696, - 14.099772162137233, - 16.669682886388795, - 18.579667333275758, - 21.30798441325289, - 23.212767703199937, - 27.440763751855673, - 30.95252613316534, - 31.90355953656099, - 32.74774445275871, - 33.56258040317286, - 34.18715547110399, - 34.719219685396745, - 35.173791636828525, - 35.55158021751866, - 35.83293214745588, - 36.15318402319302, - 36.371972374351635, - 36.47953724771939, - 36.65450667756401 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615408, - 1.4813847491413077, - 1.8198213217004344, - 2.1114679242247263, - 2.45119283304649, - 2.788418261235872, - 3.0449120982764595, - 3.386564555585336, - 3.615084239461561, - 3.803231177203992, - 4.1257310234075995, - 4.406279557040129, - 5.3210041209108105, - 6.6201125898541955, - 7.110226598789162, - 7.620005152898807, - 8.190285469834162, - 8.692304615247705, - 9.166399506219403, - 9.612791724989746, - 10.015535085310253, - 10.33308818802776, - 10.712216157370767, - 10.981261105525986, - 11.116980771606247, - 11.34161356304978 - ], - "5._384._0.0875": [ - 3.489316636454216, - 4.039872206862295, - 4.7710140343775365, - 6.150578370242928, - 8.003497245570976, - 11.169202370278374, - 15.443653173786542, - 19.322160909984923, - 24.70961622929955, - 27.910205628134534, - 30.135596632706385, - 33.1531035094959, - 35.18313044450232, - 39.559958543149406, - 43.139854028288184, - 44.10531303656802, - 44.965945826230076, - 45.79848906417702, - 46.43929723745629, - 46.985922804249604, - 47.45455707270575, - 47.84531625131873, - 48.13660456885794, - 48.46895809951328, - 48.69598912415713, - 48.80747810208587, - 48.988428483325436 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125405, - 2.162243131656477, - 2.506080868501707, - 2.800133347256768, - 3.1430951606826176, - 3.510368166180444, - 3.8612401353457133, - 4.514067995014405, - 5.064578162279747, - 5.5554908461283015, - 6.421892604254496, - 7.167766514243787, - 9.3928358339436, - 11.97985092364917, - 12.810529229234543, - 13.596017524220638, - 14.396066625098053, - 15.036499536090906, - 15.595472283739372, - 16.082489764636257, - 16.49208377683801, - 16.798146682390374, - 17.145493531027352, - 17.382680369805957, - 17.49963296408954, - 17.69028076822833 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235611029175, - 2.8519116882934883, - 3.199941237696881, - 3.5222439642356296, - 4.01095608929747, - 4.771427951048562, - 5.672792853782765, - 7.442639930905666, - 8.871164523575647, - 10.062994896368664, - 11.970274797863052, - 13.442169727024702, - 17.113430737587276, - 20.50181692373179, - 21.45831446287822, - 22.315645794072307, - 23.14982476724349, - 23.791881516399023, - 24.339046208312578, - 24.806075601840266, - 25.193357734874695, - 25.4811263917665, - 25.807221674385733, - 26.029667024768873, - 26.13908378479256, - 26.317268432935368 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 6.66666666666667, - 6.25 - ], - [ - 6.66666666666667, - 12.5 - ], - [ - 6.66666666666667, - 18.75 - ], - [ - 13.333333333333302, - 6.25 - ], - [ - 13.333333333333302, - 12.5 - ], - [ - 13.333333333333302, - 18.75 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351569223626014, - 3.1865404257177086, - 3.5207045543359103, - 4.063210591206855, - 4.809556450377362, - 6.241781646261672, - 8.557304620347475, - 11.075093750107822, - 15.23740022526726, - 18.05107576458621, - 20.137216116541527, - 23.110883830806557, - 25.183828330544284, - 29.776737029422865, - 33.58510696367523, - 34.61573951845329, - 35.5302762428902, - 36.4127486842924, - 37.08892099672075, - 37.66491228979662, - 38.15692151241992, - 38.56576661619077, - 38.870257661743786, - 39.216849237206794, - 39.45365505561612, - 39.57009069368329, - 39.75953063809353 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.195803175961541, - 1.4813847491413077, - 1.819821321700434, - 2.111467924224724, - 2.451192832973612, - 2.7884172693650284, - 3.0448635266603343, - 3.3865570131229163, - 3.6182443105100095, - 3.813701198053618, - 4.159114877928057, - 4.467268114676162, - 5.491372375266899, - 6.950646835128457, - 7.498842992517277, - 8.065810670872981, - 8.696710401071487, - 9.249002587522842, - 9.768348526387227, - 10.255141347636249, - 10.692483869896305, - 11.036148350047668, - 11.444817769403953, - 11.733796457126477, - 11.87928311512644, - 12.11971192209192 - ], - "5._384._0.0875": [ - 3.491430375464833, - 4.070537833315201, - 4.876912928151545, - 6.427150391264343, - 8.506763437722867, - 12.02293890328615, - 16.72492333893336, - 20.969049728927253, - 26.846762422381317, - 30.333078006086865, - 32.75560001022239, - 36.038031863910234, - 38.24518982951953, - 43.00041137612287, - 46.88728020049392, - 47.93523554072574, - 48.869294389277165, - 49.772746987475294, - 50.46801890273723, - 51.06110024447133, - 51.56952143008126, - 51.993430835725476, - 52.309439833161235, - 52.67000404528583, - 52.91632134606413, - 53.037289237555335, - 53.233647934232415 - ], - "5._48._0.075": [ - 1.5268463243731447, - 1.8679037053125414, - 2.1622431316564765, - 2.5060808681554296, - 2.8001324603803206, - 3.142996407807979, - 3.5109778495579107, - 3.8723182109076335, - 4.58000390636217, - 5.194416740375317, - 5.746751505455564, - 6.722513187765832, - 7.560181844033206, - 10.033639034347503, - 12.873357182719428, - 13.77878985614987, - 14.632684247501482, - 15.500332581849237, - 16.19312322257067, - 16.796913141856333, - 17.32205919172322, - 17.763069212341193, - 18.092329229244818, - 18.4656295112816, - 18.720411288788668, - 18.84602753123195, - 19.050857909022852 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235596555948, - 2.8519096966007043, - 3.1998043116324517, - 3.5227869149613222, - 4.029447066377771, - 4.862357003575239, - 5.873653365715489, - 7.863159968109839, - 9.45901602867768, - 10.782177693120602, - 12.885820495651114, - 14.50134645482007, - 18.509209762893388, - 22.189795664104775, - 23.226514939697957, - 24.154939458789578, - 25.057580028832454, - 25.751715141943844, - 26.3430658968363, - 26.847539194526888, - 27.265696936865755, - 27.57638305668422, - 27.928397203206433, - 28.16853761081853, - 28.286673242506012, - 28.479118089986812 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 5.0, - 6.25 - ], - [ - 5.0, - 12.5 - ], - [ - 5.0, - 18.75 - ], - [ - 10.0, - 6.25 - ], - [ - 10.0, - 12.5 - ], - [ - 10.0, - 18.75 - ], - [ - 15.0, - 6.25 - ], - [ - 15.0, - 12.5 - ], - [ - 15.0, - 18.75 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351741441200615, - 3.1882269219255517, - 3.537014969294027, - 4.144047980316804, - 5.010309594272373, - 6.683520586964234, - 9.367602258928624, - 12.254426997694942, - 16.977925852838975, - 20.152520051504595, - 22.50101231740583, - 25.84178095625648, - 28.16709374781555, - 33.30954395183727, - 37.566033310158026, - 38.71709151766936, - 39.73812400802694, - 40.72303795973404, - 41.47740857941537, - 42.11998086594559, - 42.66875316689969, - 43.12469846468777, - 43.46428061072425, - 43.85081739688282, - 44.11494317817427, - 44.2448271736018, - 44.45619713893994 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615417, - 1.4813847491413072, - 1.8198213217004335, - 2.111467924224724, - 2.4511928332097055, - 2.788421060753707, - 3.045136740336649, - 3.3939027929074093, - 3.6428438477485177, - 3.8608632892124777, - 4.2564840317884425, - 4.614681158007294, - 5.81111328518271, - 7.505308012486504, - 8.137126467918922, - 8.786107198113411, - 9.504044138390807, - 10.128702233443452, - 10.713564368639833, - 11.259145770087757, - 11.74711869343378, - 12.129199201516935, - 12.58161317087264, - 12.900297329332457, - 13.060407098398711, - 13.324611025661781 - ], - "5._384._0.0875": [ - 3.512399763896465, - 4.165056178920474, - 5.10284674352593, - 6.912744569266401, - 9.322487250916055, - 13.346529825592144, - 18.676470776933837, - 23.46355807233637, - 30.074437422015478, - 33.989494290473196, - 36.708209265969586, - 40.3892180505903, - 42.863113773045015, - 48.188865055898404, - 52.53910426061052, - 53.71164499207278, - 54.756613751882426, - 55.767197514216654, - 56.54477552105764, - 57.208061737012535, - 57.77661697460402, - 58.250634119350394, - 58.60400737761545, - 59.007209709177516, - 59.28267348203699, - 59.417964851756736, - 59.637602346422476 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.867903705312541, - 2.162243131656476, - 2.5060808692888226, - 2.8001358310230824, - 3.1436737115065454, - 3.5237221752812484, - 3.9218966531130315, - 4.737755831743835, - 5.456210608159213, - 6.1029453767925155, - 7.2404632172995065, - 8.211533987273178, - 11.04383489116409, - 14.252933357513216, - 15.26862467754741, - 16.2242390380802, - 17.192873455505065, - 17.964251071754568, - 18.63550880906579, - 19.218245044147842, - 19.70685026817163, - 20.071323672121306, - 20.484116520214716, - 20.765717249040776, - 20.904548607879615, - 21.131014692209057 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323564451639, - 2.851917566298522, - 3.200893930772208, - 3.5352265214872265, - 4.0976060500171805, - 5.063107492022097, - 6.245990053059001, - 8.558122153477598, - 10.395965179400461, - 11.909340422506906, - 14.299521429464425, - 16.12630143398773, - 20.634910068853745, - 24.754456753149466, - 25.91225096552744, - 26.94815604143832, - 27.95445817670548, - 28.727582203079383, - 29.385998190826484, - 29.9473640771006, - 30.412474801107987, - 30.75802072953638, - 31.149475166290312, - 31.416542109274317, - 31.547943146164677, - 31.76207371644273 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "5_7": { - "1_1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 30.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 10.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351697968445744, - 3.187353472665289, - 3.5234608934784273, - 4.03795271475831, - 4.657255552980749, - 5.710397184697553, - 7.343613610539403, - 9.170301653180003, - 12.367059521848496, - 14.626077188902679, - 16.339088595748446, - 18.827594298283937, - 20.587819921301463, - 24.54185828098083, - 27.855550332026333, - 28.755532066904596, - 29.554178091077315, - 30.324973980107437, - 30.915385436191027, - 31.41818551995393, - 31.84742675122551, - 32.203883844037286, - 32.46925674033857, - 32.77112551682339, - 32.977325143008976, - 33.078714034938194, - 33.24370712798848 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.4813847491413075, - 1.819821321700434, - 2.111467924224728, - 2.451192833189991, - 2.7884202750752283, - 3.0450320026345508, - 3.3887620769272244, - 3.619713483947078, - 3.807307899554144, - 4.117064544818049, - 4.3728409336737455, - 5.142940726956137, - 6.175064636755585, - 6.5637604897349835, - 6.973243355184749, - 7.439615738804859, - 7.858997118730205, - 8.263059144931818, - 8.651545468690102, - 9.009290133924527, - 9.29639035976076, - 9.645855919000137, - 9.89844466525507, - 10.027379175662004, - 10.2430616759874 - ], - "5._384._0.0875": [ - 3.493879805757724, - 4.034792783566068, - 4.691231171855179, - 5.819057556239314, - 7.284195264811111, - 9.856340305199147, - 13.507790653098331, - 16.95393083450452, - 21.87941257792168, - 24.85681289358606, - 26.94174341946028, - 29.782170246031807, - 31.69904523099904, - 35.837414078929044, - 39.22241157043857, - 40.13498001083374, - 40.94778788460919, - 41.73355381126256, - 42.33778366751876, - 42.85306553878659, - 43.294527057880174, - 43.66239926659383, - 43.93657959357073, - 44.249297693490995, - 44.462913332898964, - 44.56783032206374, - 44.73818375435501 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125407, - 2.162243131656477, - 2.5060808691838017, - 2.800135144590581, - 3.1433735101237383, - 3.513684507521313, - 3.8654826269378426, - 4.477345718805803, - 4.951081669716486, - 5.353742305168801, - 6.043002770497086, - 6.630949111164545, - 8.426903815908053, - 10.628634115849245, - 11.361994242822542, - 12.067204486248635, - 12.795945966470233, - 13.38731536842719, - 13.908212816828915, - 14.366001986675538, - 14.753650369349067, - 15.044540635453636, - 15.375841730576207, - 15.602652055714957, - 15.7146789936319, - 15.897487730379494 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.555323563955926, - 2.8519157790520278, - 3.200371094677397, - 3.5255241265292, - 4.01257137443348, - 4.708358389525702, - 5.459194385213035, - 6.863048705148024, - 8.000592604721083, - 8.969774382507984, - 10.56652374443924, - 11.832611713584354, - 15.100219402585854, - 18.2219063224582, - 19.117181137571425, - 19.92321575935046, - 20.71039498741277, - 21.31786133894557, - 21.836143840767175, - 22.278855402359355, - 22.64604345479904, - 22.918834329133055, - 23.22778032344731, - 23.438501576404605, - 23.542173983861375, - 23.711061702534895 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 30.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835166959430706, - 3.1871255057054384, - 3.5214612757595662, - 4.029262833197984, - 4.646104181393115, - 5.737022788869836, - 7.483622329987976, - 9.441424911226218, - 12.836061694691375, - 15.217748567030064, - 17.01783148068144, - 19.625788960426316, - 21.46727806969847, - 25.59581477505238, - 29.04973939675788, - 29.9871267263814, - 30.81871793377291, - 31.62107220899746, - 32.23544038400482, - 32.75861435464358, - 33.20516727242132, - 33.57594996744803, - 33.85199478813144, - 34.16600271838438, - 34.38051176953185, - 34.48599643256612, - 34.65768815022273 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615408, - 1.4813847491413077, - 1.8198213217004344, - 2.1114679242247263, - 2.4511928331436983, - 2.788419622271382, - 3.0449917614650284, - 3.387835796703528, - 3.616754854358582, - 3.8018782408541547, - 4.107556788957007, - 4.362084027839397, - 5.151788318244156, - 6.250588138560492, - 6.667809075736287, - 7.107214703496019, - 7.606083492515846, - 8.052711615634506, - 8.481089457625576, - 8.891099855987354, - 9.267028782892785, - 9.567629557291554, - 9.932057457277056, - 10.194536256081863, - 10.32824121899148, - 10.551494158709792 - ], - "5._384._0.0875": [ - 3.49130516499162, - 4.024983659768471, - 4.681325560720965, - 5.856153118232167, - 7.424615051593453, - 10.178135011652783, - 14.048777747933524, - 17.677147452007812, - 22.84221861383679, - 25.958507766927244, - 28.139166432151, - 31.10779143345258, - 33.11016385082988, - 37.43001802128192, - 40.96121921458518, - 41.91294343514309, - 42.76053204391302, - 43.579817910922344, - 44.209724965140744, - 44.7469006023661, - 45.20708450103715, - 45.59053669327452, - 45.876336309142225, - 46.20231087196131, - 46.424994484175535, - 46.534371646880594, - 46.71198666742821 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125405, - 2.162243131656477, - 2.5060808689637484, - 2.800134562146766, - 3.143277865803423, - 3.5121094080649398, - 3.8597629344015254, - 4.465820592664218, - 4.946412566747862, - 5.36453084884143, - 6.0950111178194835, - 6.725090688917273, - 8.649353570081535, - 10.983026730153924, - 11.75488312074937, - 12.494333196763263, - 13.256352191238188, - 13.873020266843998, - 14.415325971624076, - 14.891071378492416, - 15.293313772022112, - 15.594878937593222, - 15.93797406665015, - 16.172706855166574, - 16.288620686564276, - 16.4777943430517 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.5553235630354054, - 2.851914450439783, - 3.2002206731259215, - 3.523984329285472, - 4.005008632094552, - 4.697533152600954, - 5.471228283623124, - 6.966592827817952, - 8.188101194661561, - 9.225798738001723, - 10.925114326484389, - 12.264985582979289, - 15.699267656056247, - 18.961221011179113, - 19.894406153442066, - 20.733835541573168, - 21.552975382290374, - 22.184542936356006, - 22.723206072413713, - 23.183078595293484, - 23.56433918604979, - 23.84755496270308, - 24.168254954226924, - 24.386997262100397, - 24.49462597469295, - 24.670006865997205 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 30.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 10.0, - 7.5 - ], - [ - 10.0, - 15.0 - ], - [ - 10.0, - 22.5 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351643704359257, - 3.1869241053883655, - 3.520031486988369, - 4.027705167439552, - 4.658630315932386, - 5.805003999627133, - 7.663833222907654, - 9.744168868733418, - 13.325702835065997, - 15.82575370664918, - 17.711026411199043, - 20.4372770382706, - 22.35986588583441, - 26.66401966044909, - 30.260131210881962, - 31.235570108993254, - 32.100711662784896, - 32.93524382429965, - 33.574074381925996, - 34.11805770016615, - 34.582305865576465, - 34.96774004275992, - 35.25469881031543, - 35.581121666211665, - 35.80412644891877, - 35.91379724652071, - 36.09233038372585 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141308, - 1.8198213217004349, - 2.111467924224725, - 2.4511928331014334, - 2.7884190263380715, - 3.044955286110542, - 3.3870887811663213, - 3.614923789598121, - 3.7996499107102313, - 4.1076988739726215, - 4.367940462735553, - 5.193331239377411, - 6.360964942071496, - 6.805428765189991, - 7.272615107099393, - 7.80149176693141, - 8.273324552937787, - 8.724407066929627, - 9.154685087743426, - 9.547914757000395, - 9.861504912704822, - 10.240518632865758, - 10.512761970969704, - 10.651221809421395, - 10.882101866056383 - ], - "5._384._0.0875": [ - 3.489585470018635, - 4.024207344548306, - 4.698227424589336, - 5.936105154409621, - 7.606062327014861, - 10.52873841833669, - 14.607590830791967, - 18.413170530439555, - 23.815529475380558, - 27.07058475948806, - 29.347188713428828, - 32.444692387565894, - 34.53319394578491, - 39.036364579165834, - 42.71560879447216, - 43.70702306156783, - 44.58988094479919, - 45.44317320229033, - 46.09914460132278, - 46.65854468952839, - 47.13773879155753, - 47.53701354142068, - 47.834612218690076, - 48.17404766975762, - 48.405937179397675, - 48.519841391131294, - 48.70482400338086 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125425, - 2.1622431316564765, - 2.5060808687628287, - 2.800134030433169, - 3.143191874980115, - 3.5109306527916684, - 3.857432798848257, - 4.472383414277057, - 4.9716845719065965, - 5.411783755491677, - 6.187352219820642, - 6.858694621189554, - 8.902461983483777, - 11.360397085324573, - 12.16903590754051, - 12.941738687117601, - 13.736440820749735, - 14.378248820783371, - 14.941992840770164, - 15.435871948288385, - 15.852965420498558, - 16.16544867936315, - 16.520680340303265, - 16.76360297493698, - 16.8835439294005, - 17.079316688376345 - ], - "5._96._0.075": [ - 2.2092718103274085, - 2.555323562194927, - 2.8519132377567895, - 3.2000864331054273, - 3.522823344039205, - 4.0029701445629104, - 4.710393797232478, - 5.521364319744673, - 7.111070943000508, - 8.411630417751287, - 9.51314537102817, - 11.308608812516411, - 12.718631609131466, - 16.315322960880838, - 19.71725584043103, - 20.688725534668976, - 21.56201786701543, - 22.41368491319826, - 23.06988233049655, - 23.62940655738753, - 24.106890022659154, - 24.502622351940996, - 24.79656598706107, - 25.12937323337924, - 25.356379258792646, - 25.46808302337705, - 25.650145223684707 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 30.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 6.66666666666667, - 7.5 - ], - [ - 6.66666666666667, - 15.0 - ], - [ - 6.66666666666667, - 22.5 - ], - [ - 13.333333333333302, - 7.5 - ], - [ - 13.333333333333302, - 15.0 - ], - [ - 13.333333333333302, - 22.5 - ] - ], - "g": { - "5._192._0.08": [ - 2.835157908982548, - 3.1864866057268815, - 3.5183113506609716, - 4.041428797095838, - 4.7425665329953475, - 6.081155094857022, - 8.271865283892238, - 10.702472457824506, - 14.823973635455234, - 17.671776630879233, - 19.809610312088086, - 22.889022596788195, - 25.054641132850303, - 29.88702776399254, - 33.91214116456691, - 35.00254427420828, - 35.96909020753494, - 36.90092859697979, - 37.613778543526976, - 38.22073434510952, - 38.73854832982404, - 39.168345092968345, - 39.488348378640374, - 39.852360670600824, - 40.10108472943693, - 40.223426156668204, - 40.42266020515586 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.481384749141308, - 1.8198213217004335, - 2.1114679242247227, - 2.451192832994151, - 2.7884175266711724, - 3.0448683457501775, - 3.385814647117732, - 3.6138054127571295, - 3.802784782326399, - 4.130942220985338, - 4.420258017394151, - 5.376972332570756, - 6.752292873221113, - 7.275085066261916, - 7.82105557295256, - 8.434728155135126, - 8.977834773155495, - 9.493521215576962, - 9.981824331249852, - 10.424930870488314, - 10.776226273332925, - 11.19787768361331, - 11.49882597868358, - 11.651324544823689, - 11.904852963013308 - ], - "5._384._0.0875": [ - 3.4879653135290964, - 4.043868375754809, - 4.800004030325527, - 6.24994980476941, - 8.218683229846754, - 11.624857327207307, - 16.30843952180347, - 20.6376034033475, - 26.748620000091723, - 30.41983430968288, - 32.984542486672716, - 36.469518863971246, - 38.817181075337764, - 43.872532251140356, - 47.998158239840485, - 49.10929652338893, - 50.09856103285085, - 51.05446895956154, - 51.78910833339899, - 52.41558704486436, - 52.952164350552444, - 53.399203736404225, - 53.732419275245014, - 54.11248682026275, - 54.37216181548412, - 54.4997283314234, - 54.70694195599619 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125418, - 2.162243131656476, - 2.506080868252926, - 2.8001326916826175, - 3.1429938818087413, - 3.509293362485747, - 3.860793590916157, - 4.529327610419912, - 5.103138649088949, - 5.618732120154399, - 6.534172531767116, - 7.326606492830144, - 9.710925617414649, - 12.526187325493252, - 13.441791216499674, - 14.31229611727274, - 15.203748123888662, - 15.920438802225997, - 16.548271936465667, - 17.09656934483403, - 17.558381275276357, - 17.903810422494345, - 18.295766382978783, - 18.563526144402633, - 18.695694524917513, - 18.91151630699064 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323560062381, - 2.8519101958862008, - 3.1997853553695266, - 3.521175188269719, - 4.011959249636365, - 4.795198932885351, - 5.739561262538097, - 7.6142241266636095, - 9.141617187072212, - 10.42518894529491, - 12.496555869310146, - 14.110267908286554, - 18.186825253763427, - 22.007972373974592, - 23.094754238052293, - 24.070213593402126, - 25.02016692903935, - 25.7509190980352, - 26.373628799736117, - 26.904512478125675, - 27.344165953260376, - 27.670677732076577, - 28.04025684292852, - 28.292363302245302, - 28.416443332641574, - 28.61878827436647 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 30.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 6.66666666666667, - 6.0 - ], - [ - 6.66666666666667, - 12.0 - ], - [ - 6.66666666666667, - 18.0 - ], - [ - 6.66666666666667, - 24.0 - ], - [ - 13.333333333333302, - 6.0 - ], - [ - 13.333333333333302, - 12.0 - ], - [ - 13.333333333333302, - 18.0 - ], - [ - 13.333333333333302, - 24.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835154725486448, - 3.186427744543559, - 3.5205639978477086, - 4.0672191992647155, - 4.827634288646258, - 6.30128609952791, - 8.712120526492999, - 11.369688120595477, - 15.841504328466874, - 18.917004780540854, - 21.221273386321627, - 24.534655171260635, - 26.861866599727648, - 32.046767778121065, - 36.35914686769121, - 37.52664400886655, - 38.56122173442576, - 39.55837707708766, - 40.32094231746109, - 40.97019916231659, - 41.52400684110463, - 41.983620372204605, - 42.32583304502317, - 42.715110106425776, - 42.98111889205836, - 43.11197454050006, - 43.32511505213819 - ], - "5._24._0.075": [ - 0.8740059532267972, - 1.195803175961542, - 1.4813847491413068, - 1.819821321700434, - 2.1114679242247245, - 2.4511928329354373, - 2.7884167483391273, - 3.044836903268359, - 3.386333384497444, - 3.6184180063010367, - 3.815163222895371, - 4.165046473112391, - 4.47900568529313, - 5.530289714873271, - 7.044453977625688, - 7.618181571883135, - 8.214788593168237, - 8.882644186340636, - 9.471148283442131, - 10.028046405084842, - 10.55345314824666, - 11.028575818972088, - 11.40417782453438, - 11.853467578335831, - 12.173141251620066, - 12.334842599089724, - 12.603304367205961 - ], - "5._384._0.0875": [ - 3.491414661781152, - 4.0758258568766665, - 4.89851969928763, - 6.495705146702889, - 8.662148133551355, - 12.381526149162836, - 17.45845533104957, - 22.1318761998456, - 28.712697748594152, - 32.66093804099919, - 35.41769813326958, - 39.161309708729064, - 41.68212406151279, - 47.10682421954079, - 51.531347548129844, - 52.722688163890076, - 53.783245595529806, - 54.807919044678435, - 55.595287283063115, - 56.2667274294061, - 56.84177141671526, - 57.32083203657294, - 57.67792408417285, - 58.08522965606594, - 58.36352933585407, - 58.500252970703436, - 58.72236464209723 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.867903705312544, - 2.162243131656476, - 2.5060808679740427, - 2.8001319946109295, - 3.142939799294969, - 3.510780875539805, - 3.8738697515503886, - 4.5927092208488105, - 5.222012404754091, - 5.790528665554502, - 6.800437977740432, - 7.672845193762808, - 10.277568810729207, - 13.323362748905765, - 14.308421360453439, - 15.242896105307299, - 16.19794242977728, - 16.964111104327124, - 17.634430043767516, - 18.218934126310376, - 18.71059884162665, - 19.078073872979406, - 19.49467220532073, - 19.77913514994062, - 19.91953606136205, - 20.148864832040108 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.555323558897426, - 2.8519086488138523, - 3.199722304014191, - 3.5225792751373737, - 4.0323814405123, - 4.880578612197373, - 5.91985270571329, - 7.985156478585879, - 9.660199528207766, - 11.061317595813675, - 13.311101143824619, - 15.057177215335226, - 19.44906666770257, - 23.54873971028911, - 24.712566852640954, - 25.7563832935541, - 26.772205096376435, - 27.55301178702323, - 28.218174651102885, - 28.78497748248295, - 29.254201304663734, - 29.602647408911125, - 29.997003491369668, - 30.26602508873959, - 30.39844504724042, - 30.61445304890489 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 30.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 30.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 30.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 5.0, - 6.0 - ], - [ - 5.0, - 12.0 - ], - [ - 5.0, - 18.0 - ], - [ - 5.0, - 24.0 - ], - [ - 10.0, - 6.0 - ], - [ - 10.0, - 12.0 - ], - [ - 10.0, - 18.0 - ], - [ - 10.0, - 24.0 - ], - [ - 15.0, - 6.0 - ], - [ - 15.0, - 12.0 - ], - [ - 15.0, - 18.0 - ], - [ - 15.0, - 24.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351763446312592, - 3.1884481156599507, - 3.539691384229997, - 4.161181270199361, - 5.059902300141593, - 6.811851917756529, - 9.654393506351706, - 12.75339157665242, - 17.912275539175397, - 21.438293737975687, - 24.073492386330344, - 27.853905068970693, - 30.504480669940296, - 36.3968975373071, - 41.287427980730726, - 42.61027207714341, - 43.782007893716255, - 44.91091286218067, - 45.773816362192015, - 46.50845625338192, - 47.13493821494136, - 47.6547682960675, - 48.04183226445724, - 48.4821313848893, - 48.7830417077195, - 48.93108656311293, - 49.172293427966636 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.4813847491413081, - 1.8198213217004324, - 2.1114679242247236, - 2.451192833248056, - 2.7884215655924085, - 3.045170562778542, - 3.3949998494336997, - 3.647177251477171, - 3.8701056631055994, - 4.278040833452351, - 4.649651545495858, - 5.899527203227264, - 7.687170014626369, - 8.359585297730082, - 9.05382453689896, - 9.826152307501468, - 10.502304488248209, - 11.139119374138719, - 11.736738021969686, - 12.274434895863704, - 12.697746103732976, - 13.201569790121757, - 13.558379167578806, - 13.7384035144341, - 14.036743599967721 - ], - "5._384._0.0875": [ - 3.5159616968318335, - 4.185618291300701, - 5.159833104302448, - 7.057280109646621, - 9.610797525923555, - 13.93958146976611, - 19.789844161630338, - 25.146128045375974, - 32.66432535274215, - 37.16685005419264, - 40.30831250232239, - 44.57058124195141, - 47.43890010470032, - 53.60567525406913, - 58.63132909681914, - 59.98403813394102, - 61.188064646063246, - 62.35114812838823, - 63.24467372128733, - 64.00663401962885, - 64.65913129550964, - 65.20267262770254, - 65.60784231506847, - 66.06999306286492, - 66.38579092217535, - 66.54094930803205, - 66.79304779646836 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125416, - 2.1622431316564787, - 2.506080869469626, - 2.8001362816405546, - 3.1437590860298372, - 3.5257511546964744, - 3.9316263375864047, - 4.775395921966008, - 5.524441173704562, - 6.201799963270704, - 7.399503029764422, - 8.428223241549846, - 11.46063227166634, - 14.957770701161653, - 16.079697230985335, - 17.141134997131577, - 18.222880813001137, - 19.08800232132773, - 19.843507340371772, - 20.500812316828036, - 21.052659560250884, - 21.464657106070543, - 21.931130117117057, - 22.249451641437734, - 22.406551631165733, - 22.663281186905987 - ], - "5._96._0.075": [ - 2.209271810327405, - 2.55532356520097, - 2.8519185931447306, - 3.2010337168805982, - 3.537196172525325, - 4.111668401797206, - 5.112835936800638, - 6.349928014421957, - 8.791481924116407, - 10.75362900148944, - 12.383375038950609, - 14.982039978724222, - 16.9885854394939, - 22.006888369650653, - 26.66436285088839, - 27.983085036488273, - 29.164551087665075, - 30.3131887620431, - 31.19507557906113, - 31.94602306882129, - 32.585477122740016, - 33.1145576005885, - 33.50741412885012, - 33.95195370083672, - 34.25523563018993, - 34.40454495991607, - 34.648209581128214 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "5_8": { - "1_1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 20.0, - 30.0 - ], - [ - 10.0, - 17.5 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351700679173013, - 3.1873740739578245, - 3.5235943718865395, - 4.038066018815882, - 4.655807303620559, - 5.698213556725049, - 7.301276254863769, - 9.103648775906654, - 12.311783449836708, - 14.62042845804739, - 16.391555949992235, - 18.991434017645624, - 20.847186191862676, - 25.05040292986037, - 28.5950587293667, - 29.55959977527507, - 30.414965453908366, - 31.240041359577365, - 31.87122000466518, - 32.40854050110782, - 32.86676129129182, - 33.24690141162086, - 33.52983054152512, - 33.85147557057423, - 34.07119744657318, - 34.179273416935544, - 34.355299446928015 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.481384749141308, - 1.8198213217004349, - 2.111467924224725, - 2.4511928331944186, - 2.7884203374964627, - 3.045035801007024, - 3.388834954912431, - 3.619877844247044, - 3.8074932361101856, - 4.117006312625864, - 4.372164210249908, - 5.136185778835661, - 6.1502548771424665, - 6.531903781598539, - 6.935027448028119, - 7.396478544384952, - 7.814196720767056, - 8.219603707836418, - 8.612534149512369, - 8.97749278580923, - 9.272809177965637, - 9.63561639520318, - 9.900482084277657, - 10.036695115124518, - 10.266265800176733 - ], - "5._384._0.0875": [ - 3.4940393593513437, - 4.034837081664086, - 4.6892068821085875, - 5.803983786398862, - 7.241670035680953, - 9.784480044622716, - 13.466641718430418, - 17.014141440325453, - 22.17993192359468, - 25.344268837001284, - 27.57339626455187, - 30.621297098164074, - 32.68333023574828, - 37.13658563417574, - 40.776038199914005, - 41.756452665757145, - 42.62880309137055, - 43.47139294322551, - 44.11851247425088, - 44.67021922685818, - 45.14249853975145, - 45.53576604624354, - 45.828841771454506, - 46.16300088034788, - 46.391288782073445, - 46.50344327825494, - 46.68566566000346 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125425, - 2.1622431316564765, - 2.50608086920485, - 2.8001352002861046, - 3.143382410547845, - 3.5137962131552722, - 3.865677595289705, - 4.4766162688761515, - 4.947680138306228, - 5.346073340324081, - 6.024139035189826, - 6.600778256802691, - 8.371135820038923, - 10.581228959364173, - 11.328905991575773, - 12.053797457904155, - 12.808604278949595, - 13.425533181102411, - 13.97201805294053, - 14.454651667884834, - 14.864945216415807, - 15.173693163472896, - 15.526011260077697, - 15.767651221561957, - 15.887196736476094, - 16.082607383567936 - ], - "5._96._0.075": [ - 2.2092718103274094, - 2.555323564043974, - 2.8519159060577914, - 3.2003849173769767, - 3.5256344372259454, - 4.0127321446528565, - 4.706863452516169, - 5.451032076697263, - 6.830107039065771, - 7.9480590453469455, - 8.90641431166896, - 10.50113171076632, - 11.780023109300389, - 15.135827758468674, - 18.40702991436558, - 19.355317041419347, - 20.211602984789625, - 21.049872229242087, - 21.697523692271538, - 22.250523939012062, - 22.72286579376741, - 23.11446538912954, - 23.40532946144251, - 23.73450363490982, - 23.95903423466534, - 24.069556819431455, - 24.249785145857597 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 20.0, - 30.0 - ], - [ - 10.0, - 8.75 - ], - [ - 10.0, - 17.5 - ], - [ - 10.0, - 26.25 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351650523951943, - 3.1869715367037945, - 3.52011947181509, - 4.024220228844604, - 4.641148293813484, - 5.7498071165490705, - 7.5488499901155715, - 9.584406773888482, - 13.155158709748958, - 15.693682726347884, - 17.62974608329774, - 20.457830311409687, - 22.469937331966808, - 27.010619351170956, - 30.827248279287947, - 31.864342701947585, - 32.78351804527595, - 33.66963502512957, - 34.34704322509243, - 34.92365591828496, - 35.41520746351882, - 35.82288865912764, - 36.12632879472429, - 36.47128949056849, - 36.70697371736857, - 36.82292169028247, - 37.01183964345211 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224723, - 2.4511928331125894, - 2.788419183568274, - 3.0449646783207744, - 3.3872088269099154, - 3.614803699598692, - 3.798488594473483, - 4.102341415805989, - 4.356830873766227, - 5.156465407895655, - 6.285155276678893, - 6.716721638416625, - 7.172730000704441, - 7.692341208789642, - 8.159461678404602, - 8.609458523505353, - 9.042286008729873, - 9.441282144814327, - 9.76205855990235, - 10.153275851439874, - 10.437029005769, - 10.5823848153502, - 10.826500209166955 - ], - "5._384._0.0875": [ - 3.489593329362771, - 4.019473572484613, - 4.677210886148365, - 5.873521099890636, - 7.489934356338687, - 10.356680740668793, - 14.443012363237486, - 18.334370573183197, - 23.959633269251132, - 27.393270227003402, - 29.80889925729071, - 33.10714098600377, - 35.33639295755766, - 40.14419281657262, - 44.06861662708409, - 45.12523504930923, - 46.06518916161644, - 46.97285180258842, - 47.669733258025886, - 48.26385584203632, - 48.772367780532036, - 49.19575866212824, - 49.511297758216834, - 49.87107673251231, - 50.1168928277937, - 50.23767193139154, - 50.433948453479054 - ], - "5._48._0.075": [ - 1.5268463243731383, - 1.8679037053125402, - 2.1622431316564765, - 2.5060808688158716, - 2.8001341707295535, - 3.143213407626778, - 3.5110479990978525, - 3.85619667676829, - 4.460257142100437, - 4.944979043375426, - 5.370289466499451, - 6.118841876005519, - 6.768220316367038, - 8.765974488693983, - 11.217742492238607, - 12.037430310461843, - 12.826851359044934, - 13.644747678909633, - 14.30987821987193, - 14.897265828517806, - 15.414266423838248, - 15.85250574770731, - 16.181688693131928, - 16.55655049329527, - 16.813318322643827, - 16.94028896580765, - 17.147880558483386 - ], - "5._96._0.075": [ - 2.209271810327405, - 2.5553235624168145, - 2.851913557541273, - 3.200119194309912, - 3.52294607825181, - 4.000491896985515, - 4.692755257871498, - 5.477582395690269, - 7.013964075397075, - 8.279503273104043, - 9.360429384694012, - 11.142025421208881, - 12.557412823929752, - 16.22672335471559, - 19.766150355338073, - 20.787443428908013, - 21.7081014547319, - 22.608015619172228, - 23.30210274095346, - 23.894351848456377, - 24.399686488122253, - 24.818293629843243, - 25.129148749120787, - 25.480832912348042, - 25.72072283502361, - 25.838826150686113, - 26.0315184273947 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 20.0, - 30.0 - ], - [ - 6.66666666666667, - 8.75 - ], - [ - 6.66666666666667, - 17.5 - ], - [ - 6.66666666666667, - 26.25 - ], - [ - 13.333333333333302, - 8.75 - ], - [ - 13.333333333333302, - 17.5 - ], - [ - 13.333333333333302, - 26.25 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351589614380677, - 3.1865519460384353, - 3.518209950619901, - 4.033273295419021, - 4.706332049875291, - 5.977350363170973, - 8.069488720234684, - 10.424036773329988, - 14.497886379341214, - 17.365178617261897, - 19.54160831743406, - 22.707749584073024, - 24.95379334946884, - 30.0050201067037, - 34.23712477615948, - 35.385540002966884, - 36.402766979210256, - 37.38283995842011, - 38.131549458708, - 38.76878633168966, - 39.311819817464894, - 39.76207531355488, - 40.09721950498516, - 40.478221674367425, - 40.73857055388248, - 40.866676126986285, - 41.07548388433844 - ], - "5._24._0.075": [ - 0.8740059532267972, - 1.195803175961542, - 1.4813847491413068, - 1.819821321700434, - 2.1114679242247245, - 2.4511928330117705, - 2.7884177716034624, - 3.0448822848851207, - 3.3859283000336338, - 3.613152930577784, - 3.7997069478302117, - 4.118903856307514, - 4.3965561102687305, - 5.305805204534932, - 6.616211113751772, - 7.1180131952515975, - 7.645710978517628, - 8.243419490356645, - 8.776954652704278, - 9.287613370591643, - 9.775322650691535, - 10.221772918930833, - 10.578575895809593, - 11.01066726526617, - 11.322000939650623, - 11.480862214733502, - 11.746778520877854 - ], - "5._384._0.0875": [ - 3.4876277823678117, - 4.033092462429255, - 4.757041135596917, - 6.1336500532912765, - 8.01438088463661, - 11.323004957429456, - 15.975062925076402, - 20.36358926633032, - 26.66967535913925, - 30.506896611374625, - 33.20318012109432, - 36.87962890156972, - 39.36218181082809, - 44.708945752545574, - 49.06800395982098, - 50.241013671101356, - 51.28428094018796, - 52.29145275116085, - 53.06448996712415, - 53.72352834782347, - 54.287513980751456, - 54.757037891763225, - 55.10697443378756, - 55.50598173235304, - 55.778628741586, - 55.91260585978251, - 56.130377256643584 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.867903705312544, - 2.162243131656476, - 2.506080868336655, - 2.8001329103779895, - 3.1430250047464274, - 3.509310397448329, - 3.8575303549404008, - 4.503598261057744, - 5.04965511446445, - 5.538719993277932, - 6.408367376050737, - 7.164838529009064, - 9.472243991797686, - 12.257675774480415, - 13.17873438344356, - 14.061010102779223, - 14.971050726863224, - 15.707647820781132, - 16.35630497269754, - 16.925348401596004, - 17.406332635032708, - 17.766984897010563, - 18.17685718656779, - 18.457271503926584, - 18.595886529271468, - 18.82260428495822 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.55532356041246, - 2.851910692124595, - 3.1998317329751247, - 3.521208035306955, - 4.005964590449587, - 4.7587041323617, - 5.655427727126614, - 7.441181219231315, - 8.911167701861556, - 10.158968618392267, - 12.19681867340067, - 13.803326090288248, - 17.92682609374497, - 21.867345589982047, - 22.99948638261228, - 24.01846329967444, - 25.012985479667236, - 25.7787337913546, - 26.431687079852086, - 26.98823138473893, - 27.44888014287527, - 27.790885289072413, - 28.177693021693877, - 28.441555708228584, - 28.571486992028046, - 28.78359836334696 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 20.0, - 30.0 - ], - [ - 6.66666666666667, - 7.0 - ], - [ - 6.66666666666667, - 14.0 - ], - [ - 6.66666666666667, - 21.0 - ], - [ - 6.66666666666667, - 28.0 - ], - [ - 13.333333333333302, - 7.0 - ], - [ - 13.333333333333302, - 14.0 - ], - [ - 13.333333333333302, - 21.0 - ], - [ - 13.333333333333302, - 28.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351555712094094, - 3.1863206803553044, - 3.5175171311879634, - 4.04363206673185, - 4.760229440821041, - 6.145988752605883, - 8.437120236647061, - 11.00275742250071, - 15.406160438328163, - 18.489229455137107, - 20.82407129084959, - 24.213820613407435, - 26.615017590043692, - 32.00576356481619, - 36.51486308330387, - 37.737576877772355, - 38.82026500413531, - 39.863086812367946, - 40.659432657155264, - 41.33717702652559, - 41.91461638131081, - 42.39332912296113, - 42.74966503887414, - 43.15475912626482, - 43.43159449614722, - 43.56782606946002, - 43.78992627673758 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615433, - 1.481384749141307, - 1.8198213217004335, - 2.1114679242247254, - 2.4511928329557615, - 2.7884169866400437, - 3.044836261004417, - 3.385299044043256, - 3.613049603870011, - 3.80280804242424, - 4.13525636297446, - 4.430959001080378, - 5.418841818607112, - 6.853537512262558, - 7.402323267109134, - 7.977281513282314, - 8.625937749420423, - 9.202408963663038, - 9.752138330380252, - 10.275094608713069, - 10.75198992234107, - 11.131914725706398, - 11.590269071512738, - 11.919365955011628, - 12.086948463832192, - 12.367004680158825 - ], - "5._384._0.0875": [ - 3.4871261076717195, - 4.047345593605567, - 4.821709955230412, - 6.324809588478758, - 8.38472053045817, - 11.98511062761099, - 17.008021758879863, - 21.7239600417951, - 28.481022247688195, - 32.58643843474829, - 35.46944653896486, - 39.397768851942736, - 42.04913231587907, - 47.75535082953776, - 52.4044834688384, - 53.6551936817713, - 54.767437305487505, - 55.841052126522726, - 56.66494434724872, - 57.3673323596595, - 57.9683640465497, - 58.46869715255173, - 58.84160500985267, - 59.2668094721413, - 59.55737374976411, - 59.70016393628101, - 59.932287695508215 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125422, - 2.162243131656476, - 2.5060808680704296, - 2.8001322097512884, - 3.14291998360464, - 3.508581644904994, - 3.8608367872019014, - 4.540994845947109, - 5.131894861864378, - 5.666040808510571, - 6.61932478205193, - 7.448410957451473, - 9.960545651518425, - 12.963077638081792, - 13.949930546948222, - 14.892746522085332, - 15.86302855347855, - 16.646480418980644, - 17.33539839008924, - 17.938715846187606, - 18.44791435782036, - 18.82937779534404, - 19.26245345355176, - 19.55857129001063, - 19.704928788209696, - 19.94437765164138 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323559298979, - 2.851909098402319, - 3.1996721333567604, - 3.5204648002902137, - 4.013161384814128, - 4.813075096412154, - 5.789488182041971, - 7.7458507641040635, - 9.352208519811589, - 10.709854343872067, - 12.915352660896401, - 14.646761741369556, - 19.06873407794575, - 23.27464481077639, - 24.480439888718227, - 25.564815125533816, - 26.62234386369584, - 27.435877994688724, - 28.129335946282055, - 28.720077693233982, - 29.208820914312362, - 29.57164936959938, - 29.981946618562823, - 30.261845225278734, - 30.3996890352779, - 30.624789954760807 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 20.0, - 30.0 - ], - [ - 6.66666666666667, - 5.83333333333333 - ], - [ - 6.66666666666667, - 11.666666666666698 - ], - [ - 6.66666666666667, - 17.5 - ], - [ - 6.66666666666667, - 23.3333333333333 - ], - [ - 6.66666666666667, - 29.1666666666667 - ], - [ - 13.333333333333302, - 5.83333333333333 - ], - [ - 13.333333333333302, - 11.666666666666698 - ], - [ - 13.333333333333302, - 17.5 - ], - [ - 13.333333333333302, - 23.3333333333333 - ], - [ - 13.333333333333302, - 29.1666666666667 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351556539658116, - 3.1865521735707523, - 3.521865085283509, - 4.073936308443842, - 4.845864936839765, - 6.350137745589544, - 8.832929776577991, - 11.59947953639935, - 16.321577202356945, - 19.61655890549363, - 22.108152637553115, - 25.720540438573188, - 28.276828590652183, - 34.00817281948661, - 38.79601469788492, - 40.0935914346554, - 41.242254590221556, - 42.348346858248924, - 43.19275089485442, - 43.91136416455542, - 44.523525644742044, - 45.03096273554896, - 45.40868819391679, - 45.83809849465942, - 46.13157174002309, - 46.276002847375906, - 46.51151213222771 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.4813847491413081, - 1.8198213217004324, - 2.1114679242247236, - 2.4511928329419637, - 2.7884169308835656, - 3.044855019070604, - 3.386909383692799, - 3.620398041393607, - 3.8190168638672723, - 4.173296638930277, - 4.492012757771971, - 5.56350066470049, - 7.118632767595791, - 7.71174168696523, - 8.331191359269122, - 9.027924903556503, - 9.64513907251848, - 10.232207299653048, - 10.78912701332737, - 11.295616395767464, - 11.698189625202268, - 12.182503941996304, - 12.529326803672076, - 12.705668343838333, - 13.000010823020645 - ], - "5._384._0.0875": [ - 3.4930819133676665, - 4.083731503886975, - 4.91941529073247, - 6.551260710155993, - 8.783325264974433, - 12.662246010102992, - 18.04537293416706, - 23.084268612625163, - 30.29042503637552, - 34.66405993975208, - 37.73401813256249, - 41.9148244166744, - 44.73554602529885, - 50.80272754100648, - 55.74340156284035, - 57.07223347749946, - 58.253834376542656, - 59.39426944315992, - 60.26931481668812, - 61.01530673388395, - 61.653604839495856, - 62.18493216422122, - 62.580948394989726, - 63.0325055042691, - 63.34109205972408, - 63.49274635086086, - 63.73930372618695 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125416, - 2.1622431316564787, - 2.506080868007349, - 2.8001321552344214, - 3.142987339465544, - 3.5117930535182706, - 3.87791662489022, - 4.60664153226657, - 5.247172949550534, - 5.827575601720974, - 6.862711570086787, - 7.761211525805152, - 10.467939062206904, - 13.679783460274791, - 14.731044607142847, - 15.733618968966889, - 16.763736751920458, - 17.594053102936442, - 18.323380226183616, - 18.96125197851719, - 19.499002869857332, - 19.901574610413732, - 20.358247429680368, - 20.670366327217906, - 20.82461942440792, - 21.07705032688801 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.555323559048004, - 2.8519090485087646, - 3.199800874632754, - 3.5235663607789225, - 4.038003252041499, - 4.898855798184064, - 5.958843521818454, - 8.080851175258388, - 9.816710725818032, - 11.278860858066174, - 13.645613970658172, - 15.498456394927043, - 20.215034824815184, - 24.686378492276113, - 25.96629744948144, - 27.11654144250849, - 28.237628332746745, - 29.09945377551539, - 29.83386705966765, - 30.459223189070972, - 30.976426298253337, - 31.360352638910907, - 31.794455847876726, - 32.09060628421024, - 32.236468093588144, - 32.47472570139971 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 20.0, - 30.0 - ], - [ - 5.0, - 5.83333333333333 - ], - [ - 5.0, - 11.666666666666698 - ], - [ - 5.0, - 17.5 - ], - [ - 5.0, - 23.3333333333333 - ], - [ - 5.0, - 29.1666666666667 - ], - [ - 10.0, - 5.83333333333333 - ], - [ - 10.0, - 11.666666666666698 - ], - [ - 10.0, - 17.5 - ], - [ - 10.0, - 23.3333333333333 - ], - [ - 10.0, - 29.1666666666667 - ], - [ - 15.0, - 5.83333333333333 - ], - [ - 15.0, - 11.666666666666698 - ], - [ - 15.0, - 17.5 - ], - [ - 15.0, - 23.3333333333333 - ], - [ - 15.0, - 29.1666666666667 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351829704496425, - 3.1889149520572277, - 3.543363196425655, - 4.1778731442333825, - 5.10117880020927, - 6.910435978746915, - 9.872588591488004, - 13.137850408634957, - 18.65124930061616, - 22.473752314756982, - 25.356395996863906, - 29.525112064018675, - 32.469339751558664, - 39.05415156949002, - 44.541709638826696, - 46.02737226612868, - 47.34187896993436, - 48.60707871696163, - 49.57239318164633, - 50.39384034810322, - 51.093392757915716, - 51.67314038972331, - 52.104711069903104, - 52.595336217436575, - 52.93069015288513, - 53.095758256493816, - 53.36500698068329 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615428, - 1.4813847491413077, - 1.819821321700434, - 2.1114679242247245, - 2.451192833362697, - 2.7884231186828408, - 3.045258803222013, - 3.396760422848534, - 3.6525354194329283, - 3.880019917402897, - 4.298011214563857, - 4.679761937717946, - 5.968448714529124, - 7.825580564633353, - 8.528864362728967, - 9.258146515480218, - 10.073229855701896, - 10.790503968023362, - 11.46934078497118, - 12.109690779081905, - 12.688881048123386, - 13.147138986074324, - 13.695361942660279, - 14.085864362351854, - 14.283820495989831, - 14.613532732140662 - ], - "5._384._0.0875": [ - 3.520580959077126, - 4.205052259360763, - 5.206518827892384, - 7.167839797719376, - 9.830065791621468, - 14.399461731588424, - 20.677643318165575, - 26.52132108383868, - 34.849217915793346, - 39.89362909263726, - 43.43148931520966, - 48.24467311389546, - 51.489796351310794, - 58.46230851891426, - 64.13478955400115, - 65.65978637099397, - 67.01557692439125, - 68.32385882313831, - 69.3274245855664, - 70.18297109617835, - 70.91491116712527, - 71.52412634876838, - 71.97821156666623, - 72.4959896953239, - 72.84986051923946, - 73.02378558090044, - 73.30660123463147 - ], - "5._48._0.075": [ - 1.526846324373138, - 1.8679037053125453, - 2.16224313165648, - 2.506080870013248, - 2.8001376692589264, - 3.1439624378523243, - 3.528671339685413, - 3.9420402880951615, - 4.807697302833851, - 5.579019847572725, - 6.278510004086791, - 7.520440654978931, - 8.592467723205685, - 11.781066233769222, - 15.511806510679454, - 16.72266095468499, - 17.87393066050816, - 19.053147471316663, - 20.000361034136667, - 20.830620455830637, - 21.554901213377413, - 22.16414801079633, - 22.619634529330547, - 23.135549874448422, - 23.487886078153856, - 23.661994831323188, - 23.947082280619306 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.555323567468373, - 2.8519217290581507, - 3.20134761840962, - 3.5400558825255217, - 4.125815495423485, - 5.154146481029055, - 6.430568140645403, - 8.968708824519224, - 11.026682447855945, - 12.74811672632832, - 15.514835788444643, - 17.669444645489882, - 23.12084864521348, - 28.25636962813872, - 29.722060318757514, - 31.03764096051368, - 32.31840299992044, - 33.30166567048182, - 34.13912512916261, - 34.85163454480895, - 35.44053871401797, - 35.87763195307203, - 36.37174661080312, - 36.708867388256685, - 36.874940108300876, - 37.146350144422115 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 35.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 35.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 35.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 20.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 20.0, - 30.0 - ], - [ - 10.0, - 11.666666666666698 - ], - [ - 10.0, - 23.3333333333333 - ] - ], - "g": { - "5._192._0.08": [ - 2.835167455659192, - 3.1871642430788274, - 3.521751863017781, - 4.029625490185352, - 4.641271376311497, - 5.707187858750252, - 7.406856996237069, - 9.329613638053685, - 12.724472584119559, - 15.150309492426237, - 17.004945186820816, - 19.71962820992081, - 21.653714656787137, - 26.02524034388058, - 29.705017980289227, - 30.70554299089441, - 31.59254029343546, - 32.4478564278646, - 33.10192055080105, - 33.65868971132875, - 34.13340189576214, - 34.52716474387445, - 34.82023963241524, - 35.153417541426506, - 35.38103616325519, - 35.49300716727037, - 35.67541440136786 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.195803175961541, - 1.4813847491413077, - 1.819821321700434, - 2.111467924224724, - 2.451192833151799, - 2.7884197364920524, - 3.044998754994472, - 3.3879824678463044, - 3.6171425481633706, - 3.802391076121065, - 4.1074028202409245, - 4.359863065640691, - 5.133837292624781, - 6.202638445587484, - 6.609656215788956, - 7.040133559330346, - 7.531815618276208, - 7.975217912291406, - 8.403715769118003, - 8.817235787031207, - 9.199683978669603, - 9.50801463256211, - 9.885258446642618, - 10.159666901619392, - 10.30047825744187, - 10.537323753418518 - ], - "5._384._0.0875": [ - 3.4916636397093734, - 4.025129421282424, - 4.6746661999374375, - 5.8208834192847325, - 7.347150563199453, - 10.057461110441897, - 13.94713413515704, - 17.669220851437412, - 23.0660664095782, - 26.365183907770643, - 28.687493192454244, - 31.860274988128893, - 34.0056375779066, - 38.6353408080032, - 42.41644523657339, - 43.43471897850845, - 44.340649837265865, - 45.215555665191715, - 45.88738081726496, - 46.46014576358005, - 46.95041114703426, - 47.358630643745784, - 47.66285677609194, - 48.009733455157, - 48.246723131424034, - 48.36315970239605, - 48.552361215018124 - ], - "5._48._0.075": [ - 1.5268463243731447, - 1.8679037053125414, - 2.1622431316564765, - 2.5060808690022567, - 2.8001346640586284, - 3.143294365587185, - 3.5123457855770335, - 3.860301659971665, - 4.46336291719809, - 4.936022737554475, - 5.344187345045735, - 6.054327305457337, - 6.6670642084900695, - 8.554929670239313, - 10.88966322727732, - 11.674261024508445, - 12.431989461356832, - 13.21872433947938, - 13.859903795311766, - 14.426883162161992, - 14.926660831987295, - 15.350838652498851, - 15.66971117529238, - 16.03316125331156, - 16.282251794726882, - 16.405449274278585, - 16.60684782591118 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.555323563196496, - 2.8519146828713313, - 3.2002464543334663, - 3.5242166364349967, - 4.005494246703019, - 4.69255009407634, - 5.44956907192158, - 6.903790730270509, - 8.09741739144736, - 9.119232736188483, - 10.810563881581235, - 12.159543573126813, - 15.6744422184715, - 19.08011999669934, - 20.064777884372937, - 20.953059386134246, - 21.821909155920988, - 22.492545313717663, - 23.064956478364085, - 23.553592722407227, - 23.958515812893282, - 24.259238286770394, - 24.59950726648892, - 24.83160721127395, - 24.945866084102033, - 25.132240650938986 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + }, + "5_10": { + }, + "5_9": { + }, + "6_10": { }, "6_6": { - "3_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 25.0, - 0.0 - ], - [ - 25.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 25.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 25.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 25.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 25.0, - 20.0 - ], - [ - 6.25, - 8.33333333333333 - ], - [ - 6.25, - 16.6666666666667 - ], - [ - 12.5, - 8.33333333333333 - ], - [ - 12.5, - 16.6666666666667 - ], - [ - 18.75, - 8.33333333333333 - ], - [ - 18.75, - 16.6666666666667 - ] - ], - "g": { - "5._192._0.08": [ - 2.835158056292792, - 3.1865385723994653, - 3.5186146993772907, - 4.037305090835699, - 4.721412665301104, - 6.026417620964839, - 8.177760504364336, - 10.580426708515798, - 14.680762409812505, - 17.52592656833705, - 19.66520515263722, - 22.748700006404988, - 24.91724778360174, - 29.752346983830645, - 33.77419114571337, - 34.86292383459735, - 35.82761465985008, - 36.75739259242331, - 37.468445215800514, - 38.07379859025046, - 38.590149034918745, - 39.01866585358743, - 39.337701824325066, - 39.7005894708088, - 39.94854165980335, - 40.070505457818285, - 40.26913976622213 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.481384749141308, - 1.8198213217004335, - 2.1114679242247227, - 2.4511928329941677, - 2.7884175451623063, - 3.0448741481936503, - 3.3860309378716007, - 3.613930282667832, - 3.801655127115789, - 4.124267642276869, - 4.406414544054931, - 5.338241906877125, - 6.68695762694144, - 7.202102264385516, - 7.7416856720171445, - 8.349894784363586, - 8.889666364010251, - 9.403382469972982, - 9.890849442802313, - 10.333969006839363, - 10.685690153934107, - 11.108162468330562, - 11.409699416864067, - 11.562434277057845, - 11.81614825574478 - ], - "5._384._0.0875": [ - 3.4882485085118677, - 4.038157719619586, - 4.775078363675287, - 6.189692818880586, - 8.123561522951322, - 11.493245108361899, - 16.15853681730054, - 20.48815439903931, - 26.608105762350316, - 30.284069225268993, - 32.850866318447494, - 36.3365983651144, - 38.683533130150835, - 43.733679545488876, - 47.85230883594768, - 48.96123697259764, - 49.94840919188431, - 50.902183415663686, - 51.635084689543724, - 52.260062772267524, - 52.79531485105064, - 53.24122329357498, - 53.5735946371175, - 53.952693277297016, - 54.21171014711939, - 54.33895657015168, - 54.54566241845537 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125418, - 2.162243131656476, - 2.5060808682530853, - 2.8001327072599276, - 3.14301173845291, - 3.509585470776711, - 3.8595981524179295, - 4.514325838282624, - 5.072682634819743, - 5.575355816797108, - 6.471256488067298, - 7.249815242385588, - 9.605902822485673, - 12.40837260033647, - 13.323372924471599, - 14.194270580650173, - 15.08680354425095, - 15.804546866258882, - 16.43323016370738, - 16.982059791865705, - 17.444047354834336, - 17.78937579579267, - 18.180900637000324, - 18.448180390248343, - 18.580062369480185, - 18.795354140579615 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323560063692, - 2.851910246240687, - 3.199816806889659, - 3.521469189272979, - 4.009154787248454, - 4.773908779632291, - 5.693882792063749, - 7.531822213501737, - 9.038068756351773, - 10.308801479358738, - 12.367154392607135, - 13.975821154966436, - 18.051530938011283, - 21.87686769607405, - 22.96431744519923, - 23.939851904638278, - 24.889343205544968, - 25.61927488504852, - 26.24099885491949, - 26.77078280731418, - 27.209338969761603, - 27.534954437782197, - 27.903415491472696, - 28.154718998096467, - 28.278396173250528, - 28.480090598946006 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 25.0, - 0.0 - ], - [ - 25.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 25.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 25.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 25.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 25.0, - 20.0 - ], - [ - 6.25, - 6.25 - ], - [ - 6.25, - 12.5 - ], - [ - 6.25, - 18.75 - ], - [ - 12.5, - 6.25 - ], - [ - 12.5, - 12.5 - ], - [ - 12.5, - 18.75 - ], - [ - 18.75, - 6.25 - ], - [ - 18.75, - 12.5 - ], - [ - 18.75, - 18.75 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351532627432503, - 3.186365441816804, - 3.5205881367678926, - 4.070329934846432, - 4.841342728426847, - 6.347763681742121, - 8.826815067931381, - 11.56888479372147, - 16.19458421541986, - 19.38166370506703, - 21.77100899241534, - 25.205905355622072, - 27.61696886742297, - 32.980378450161126, - 37.43193528834957, - 38.63588521205343, - 39.70220951744415, - 40.729529811123506, - 41.51479574290802, - 42.1832878304746, - 42.75335040260863, - 43.22635381167699, - 43.578525273411095, - 43.979105088030614, - 44.25284431333289, - 44.387510908281484, - 44.60689559997505 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615424, - 1.4813847491413064, - 1.819821321700434, - 2.1114679242247245, - 2.4511928329091166, - 2.788416395828188, - 3.0448204148834845, - 3.38624365364982, - 3.618690323226711, - 3.816390729070249, - 4.169541092210377, - 4.487884404406876, - 5.560797167211822, - 7.116376926724869, - 7.707767856138821, - 8.32314248644563, - 9.012548754483674, - 9.620384890952167, - 10.19595697886165, - 10.739096268547923, - 11.230214740779159, - 11.618338400790138, - 12.082115808959083, - 12.411545196941873, - 12.577958736246464, - 12.853832518160388 - ], - "5._384._0.0875": [ - 3.491564298014737, - 4.079899796494627, - 4.914987087100288, - 6.549100268528113, - 8.777343333735127, - 12.615169997488216, - 17.87069099116271, - 22.71754370201331, - 29.54326419360561, - 33.63502913051839, - 36.48991906659653, - 40.363315626285164, - 42.96961850654603, - 48.57254111651578, - 53.13815714011859, - 54.36698135882563, - 55.46071739987902, - 56.51726277243008, - 57.32895477791721, - 58.021115024777274, - 58.61383941767428, - 59.107586672463, - 59.47562884270867, - 59.895419877009644, - 60.18226178856448, - 60.323189262700474, - 60.55215502617666 - ], - "5._48._0.075": [ - 1.5268463243731383, - 1.867903705312542, - 2.162243131656476, - 2.5060808678490165, - 2.800131679151917, - 3.1429062897013473, - 3.510745645475484, - 3.8751765993170255, - 4.602304186237718, - 5.2433859885373, - 5.825104522976823, - 6.861869926315137, - 7.759695730398334, - 10.44497965968738, - 13.593268079039685, - 14.612359850199457, - 15.579225240495997, - 16.567101447929478, - 17.358910479035405, - 18.05112980245232, - 18.654022183381393, - 19.160519303123607, - 19.538680169299877, - 19.966859566255255, - 20.258964199977722, - 20.40307769713374, - 20.63843898144848 - ], - "5._96._0.075": [ - 2.209271810327398, - 2.5553235583751164, - 2.8519079444569932, - 3.1996752677688276, - 3.522535388466865, - 4.034703872121308, - 4.894407105179826, - 5.956009437179301, - 8.07779965350393, - 9.804627612232878, - 11.25136710914329, - 13.577168433949094, - 15.38449659346843, - 19.93372599401535, - 24.17670501448134, - 25.37948843060963, - 26.457292620736155, - 27.505248659882472, - 28.309931267019472, - 28.995022256061954, - 29.57838467574508, - 30.06102564822838, - 30.419334830297128, - 30.824717139259622, - 31.101223967435054, - 31.237327365774032, - 31.459382594292983 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 25.0, - 0.0 - ], - [ - 25.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 25.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 25.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 25.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 25.0, - 20.0 - ], - [ - 6.25, - 5.0 - ], - [ - 6.25, - 10.0 - ], - [ - 6.25, - 15.0 - ], - [ - 6.25, - 20.0 - ], - [ - 12.5, - 5.0 - ], - [ - 12.5, - 10.0 - ], - [ - 12.5, - 15.0 - ], - [ - 12.5, - 20.0 - ], - [ - 18.75, - 5.0 - ], - [ - 18.75, - 10.0 - ], - [ - 18.75, - 15.0 - ], - [ - 18.75, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351741150557777, - 3.188201784120751, - 3.536782868923097, - 4.144645580393933, - 5.01886927555272, - 6.728924719531885, - 9.522575544097627, - 12.589190471569879, - 17.725976251919075, - 21.250372436466716, - 23.887991507679097, - 27.673540457486407, - 30.327361542509067, - 36.22122252359086, - 41.10541421035352, - 42.42549796572394, - 43.594300765278994, - 44.720019294372655, - 45.580190355603946, - 46.312414396459246, - 46.936708814148865, - 47.45463844935966, - 47.84027116776664, - 48.27891324197053, - 48.57868906172096, - 48.726179434301606, - 48.96650580010713 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.4813847491413081, - 1.8198213217004324, - 2.1114679242247236, - 2.4511928332146113, - 2.788421071278395, - 3.045133907810344, - 3.3937840236783643, - 3.6425716224381373, - 3.860738471915272, - 4.257992843433281, - 4.61939949926218, - 5.838110985044108, - 7.592761317218409, - 8.256133419332675, - 8.94310877084039, - 9.709525863066458, - 10.382306987593262, - 11.017322654445692, - 11.614360455559124, - 12.152303777403162, - 12.576173890659984, - 13.080831411913557, - 13.438085057188047, - 13.618217808315103, - 13.91643872474511 - ], - "5._384._0.0875": [ - 3.5121322098601375, - 4.166158984318862, - 5.113915675617301, - 6.967357572562658, - 9.477656269697185, - 13.764440632344735, - 19.596439144576543, - 24.95533600005937, - 32.48512352300956, - 36.99306821856324, - 40.13658661604164, - 44.398782637275026, - 47.26540328187977, - 53.42366059000222, - 58.43872889229391, - 59.788155662644456, - 60.989098536658034, - 62.14905297756626, - 63.04004149026736, - 63.79981546465467, - 64.45038703425617, - 64.99228851031604, - 65.39623517267565, - 65.85698406663914, - 66.17183013551939, - 66.32652555901849, - 66.57788916685854 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125416, - 2.1622431316564787, - 2.506080869310498, - 2.800135841710073, - 3.1436650244408875, - 3.5235296425180116, - 3.921770325545484, - 4.7429119609929975, - 5.472330057550385, - 6.13360558613027, - 7.3069390921314, - 8.318537229913051, - 11.317958977222439, - 14.801924508214091, - 15.923449984789034, - 16.98546941971741, - 18.068376071397804, - 18.934425201284142, - 19.690514282196283, - 20.347951175278318, - 20.899494577255695, - 21.310945768090956, - 21.776375643870068, - 22.09374863555352, - 22.250319929163066, - 22.5061199424345 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.555323564534403, - 2.8519175717823138, - 3.2008787068774653, - 3.5350369181149657, - 4.097841708816732, - 5.071835596895357, - 6.278473551974097, - 8.67419852204336, - 10.611135153624527, - 12.226350902887427, - 14.811105095228866, - 16.81275381204515, - 21.831324538462397, - 26.49281670264317, - 27.811738690938963, - 28.992628832743602, - 30.139969727358068, - 31.02022103400606, - 31.76940549930693, - 32.40701247365242, - 32.93431972700949, - 33.32575945323543, - 33.76856686016321, - 34.07062004741964, - 34.21931675574269, - 34.46199677992251 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 25.0, - 0.0 - ], - [ - 25.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 25.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 25.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 25.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 25.0, - 20.0 - ], - [ - 12.5, - 12.5 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169796844573, - 3.187353470562797, - 3.523457425367959, - 4.037500262195462, - 4.652891545846028, - 5.692031457524183, - 7.296978193950228, - 9.091715717952203, - 12.25585026582936, - 14.507030237838993, - 16.219006735637997, - 18.709974506245775, - 20.472865976608713, - 24.43126232193913, - 27.74484367924665, - 28.644230411895204, - 29.44204036196697, - 30.21182800150983, - 30.801307790507835, - 31.303253596985257, - 31.73169334934982, - 32.08743510955193, - 32.35226156482159, - 32.65348680405597, - 32.859241586748084, - 32.960412270319786, - 33.1250588794945 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.4813847491413075, - 1.819821321700434, - 2.111467924224728, - 2.4511928331899906, - 2.788420275075227, - 3.0450320026295232, - 3.3887617742303515, - 3.6196986874257147, - 3.80719754195939, - 4.116195907366271, - 4.37039714862068, - 5.13128447019476, - 6.1465409439581284, - 6.527869802334831, - 6.92985042914817, - 7.3886258815175205, - 7.80245988392942, - 8.202510006755443, - 8.588479689599913, - 8.945044582248984, - 9.231895025352822, - 9.581763369021441, - 9.83491534658852, - 9.964154261426858, - 10.180258059199142 - ], - "5._384._0.0875": [ - 3.4938721087806295, - 4.034101641566103, - 4.685664870391485, - 5.797766545777645, - 7.237184659946991, - 9.766669753171083, - 13.387846284931626, - 16.82818468557522, - 21.75932715051096, - 24.741140598721064, - 26.828358629222006, - 29.670506217132967, - 31.587642015451678, - 35.72388630618971, - 39.105097453475224, - 40.01640313223258, - 40.82798711494738, - 41.612487736296345, - 42.215673478354965, - 42.73004936953771, - 43.170704959572944, - 43.537885264550525, - 43.811547923097145, - 44.12366964626152, - 44.336879749169896, - 44.44159958881485, - 44.611640941421044 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125407, - 2.162243131656477, - 2.5060808691838004, - 2.8001351445905818, - 3.143373510019962, - 3.5136828385651424, - 3.8653653507402477, - 4.47465597980367, - 4.943394649907056, - 5.340615329664317, - 6.019048003874134, - 6.596485022559555, - 8.361147140715069, - 10.541185859264997, - 11.271933834956048, - 11.976275829839093, - 12.705357534529503, - 13.297690506899421, - 13.819621978295167, - 14.278353837522017, - 14.666699447302637, - 14.957963481790621, - 15.289475838829004, - 15.516293966817557, - 15.628286510203935, - 15.810978898538036 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.5553235639559273, - 2.8519157790520264, - 3.200371094180022, - 3.525522642248139, - 4.012286085802932, - 4.703913221044723, - 5.445213243922704, - 6.825843373478874, - 7.942180249466224, - 8.895148297291602, - 10.472432845954172, - 11.729146965214928, - 14.990393669054896, - 18.116126752109675, - 19.012710001738913, - 19.81957861941644, - 20.607216818119344, - 21.214736734478958, - 21.732833614377906, - 22.175201457437705, - 22.541965874885648, - 22.814372594050624, - 23.12279815350336, - 23.333128372347044, - 23.436600313406167, - 23.605159232087694 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 25.0, - 0.0 - ], - [ - 25.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 25.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 25.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 25.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 25.0, - 20.0 - ], - [ - 8.33333333333333, - 12.5 - ], - [ - 16.6666666666667, - 12.5 - ] - ], - "g": { - "5._192._0.08": [ - 2.835166959444571, - 3.187126061804506, - 3.521542669427986, - 4.030849459640759, - 4.648786026380797, - 5.726049115510968, - 7.436067002389321, - 9.358829854458694, - 12.721815767516153, - 15.09662294690483, - 16.89617534461606, - 19.50702815019734, - 21.351368675325546, - 25.484477753006043, - 28.938337400089086, - 29.875123982964503, - 30.705872907174232, - 31.507208208061435, - 32.120632510983555, - 32.64294075817109, - 33.08868069810456, - 33.45873735891513, - 33.73422738149106, - 34.04758174965824, - 34.26163874606258, - 34.36690154973292, - 34.538240823095485 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615408, - 1.4813847491413077, - 1.8198213217004344, - 2.1114679242247263, - 2.451192833143698, - 2.788419622271781, - 3.0449917707528673, - 3.3878515107071303, - 3.616958072420745, - 3.802576841118557, - 4.109568659212579, - 4.364665696032136, - 5.147247424879052, - 6.223865549509686, - 6.6324010733361005, - 7.063431947836093, - 7.554347222433416, - 7.995532649991077, - 8.420213392997468, - 8.828068103699257, - 9.203136282454324, - 9.503710520789719, - 9.868755472316037, - 10.131908708385241, - 10.265965593905529, - 10.489706268021774 - ], - "5._384._0.0875": [ - 3.4914439250214255, - 4.026947507489263, - 4.683557796363836, - 5.841545409342196, - 7.376825267694742, - 10.084040775638162, - 13.925762666087689, - 17.54937895263452, - 22.720740147749453, - 25.841628158831185, - 28.02467616571294, - 30.995106487586213, - 32.9977705885531, - 37.315503493910555, - 40.84287038876386, - 41.793312559033545, - 42.63965893162262, - 43.45765988214436, - 44.08650619302783, - 44.62276120485642, - 45.08212593939381, - 45.46487471638152, - 45.75014792417171, - 46.07551593268654, - 46.29778693785856, - 46.40696345187964, - 46.58426074394035 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125405, - 2.162243131656477, - 2.506080868963746, - 2.8001345621470604, - 3.1432779378756663, - 3.5121591316188434, - 3.8605036845125844, - 4.468626368934475, - 4.946768262689237, - 5.359256469304684, - 6.07555438879206, - 6.692023493127531, - 8.58111437140613, - 10.894332720277589, - 11.664049772499713, - 12.403049072968535, - 13.16575415401044, - 13.783587355103505, - 14.327059949346829, - 14.803834486710809, - 15.206828762956308, - 15.5088002667746, - 15.852135378456786, - 16.086891299255736, - 16.202776867626934, - 16.39184269551067 - ], - "5._96._0.075": [ - 2.209271810327407, - 2.555323563035406, - 2.8519144504419645, - 3.2002208820722746, - 3.5240306232204843, - 4.006246524504991, - 4.700112173914175, - 5.465447479777289, - 6.930360301465915, - 8.127164426503366, - 9.147725306726052, - 10.827909153131886, - 12.159139216374856, - 15.58844327762249, - 18.85495112779507, - 19.789504817963735, - 20.62981092667169, - 21.44943912209259, - 22.081069363863456, - 22.61955196709948, - 23.079079466901884, - 23.459911813352562, - 23.742738913518593, - 24.0629116811368, - 24.281257192330685, - 24.38868226066476, - 24.56372901073838 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 25.0 - ], - [ - 25.0, - 0.0 - ], - [ - 25.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 25.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 25.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 25.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 25.0, - 20.0 - ], - [ - 8.33333333333333, - 8.33333333333333 - ], - [ - 8.33333333333333, - 16.6666666666667 - ], - [ - 16.6666666666667, - 8.33333333333333 - ], - [ - 16.6666666666667, - 16.6666666666667 - ] - ], - "g": { - "5._192._0.08": [ - 2.835161994018188, - 3.1867285494020567, - 3.5182682755088077, - 4.021923473347687, - 4.6580500203737465, - 5.838255827353698, - 7.770332734646656, - 9.939938246997276, - 13.68108576060219, - 16.294861104024406, - 18.265908235939833, - 21.114053501581818, - 23.120594580391444, - 27.603575916198054, - 31.339555667922774, - 32.35170107696498, - 33.24884463607722, - 34.113811514631465, - 34.775568537083224, - 35.33898472884404, - 35.819664596564806, - 36.2186408435436, - 36.51567325342579, - 36.85353145206576, - 37.08435855206386, - 37.197885803734145, - 37.382736721524154 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.195803175961541, - 1.4813847491413077, - 1.819821321700434, - 2.111467924224724, - 2.4511928330626858, - 2.7884184798660177, - 3.0449213723432558, - 3.386272086844316, - 3.612371960284729, - 3.7954013995158458, - 4.102367809678669, - 4.364697844821755, - 5.211200118889425, - 6.422984852754772, - 6.885911137016102, - 7.372979366698515, - 7.924669808813616, - 8.416983242944593, - 8.887693672262053, - 9.33656857827997, - 9.746541627845208, - 10.073220991494182, - 10.467398066508945, - 10.74990403365967, - 10.893335552675072, - 11.132041319004049 - ], - "5._384._0.0875": [ - 3.4873367432842857, - 4.018207771748884, - 4.7000024546386046, - 5.976810595157205, - 7.713178471133877, - 10.761442780989807, - 15.024526691176199, - 19.005518683635533, - 24.65310890152398, - 28.051578304455536, - 30.42626334683797, - 33.65367350214828, - 35.82786296312993, - 40.51004833908344, - 44.331289314956464, - 45.360464409109866, - 46.27675674846065, - 47.16217917761799, - 47.84268249800007, - 48.422982564602385, - 48.92001536690708, - 49.334111590185145, - 49.64276163233187, - 49.99479904488206, - 50.23531081555423, - 50.35345821684595, - 50.54535828740111 - ], - "5._48._0.075": [ - 1.5268463243731447, - 1.8679037053125414, - 2.1622431316564765, - 2.5060808685786515, - 2.800133542871085, - 3.143110744596121, - 3.5095378426547095, - 3.852963815030337, - 4.469053809960684, - 4.978866363319574, - 5.432474229509403, - 6.2366154207254985, - 6.934925549431722, - 9.064468400964756, - 11.629172308067126, - 12.473094748647227, - 13.27894031600619, - 14.107104603203977, - 14.775043063091477, - 15.361097386750446, - 15.873740496243576, - 16.30599822687034, - 16.629426236722082, - 16.996542097121935, - 17.24731421196278, - 17.371069167880815, - 17.573032996245207 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.555323561424493, - 2.85191212537586, - 3.1999581798412042, - 3.521461467896855, - 3.997578177857924, - 4.71011245759202, - 5.543573264133778, - 7.193898948740402, - 8.54924277237596, - 9.698754074121961, - 11.573493205488408, - 13.046651316440416, - 16.802912375783333, - 20.348979441699278, - 21.359608290012453, - 22.267074319358514, - 23.151090156788253, - 23.831366746994174, - 24.411012273465058, - 24.90523995340782, - 25.31455477345712, - 25.618488220391804, - 25.962469550798595, - 26.19706377111836, - 26.312502319240625, - 26.500694784938972 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + }, + "6_7": { + }, + "6_8": { + }, + "6_9": { + }, + "7_10": { + }, + "7_7": { + }, + "7_8": { + }, + "7_9": { + }, + "8_10": { + }, + "8_8": { + }, + "8_9": { + }, + "9_10": { }, "4_10": { - "1_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 45.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 45.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 45.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 15.0, - 40.0 - ], - [ - 7.5, - 15.0 - ], - [ - 7.5, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351678770340913, - 3.187203104382345, - 3.522386192610618, - 4.037644694718695, - 4.673578709604122, - 5.7983146022612155, - 7.603654679324664, - 9.632848289977494, - 13.156072165135793, - 15.650405563561284, - 17.55636453667185, - 20.35511412696446, - 22.360997487068033, - 26.938270637682596, - 30.836357031080663, - 31.90184818802942, - 32.84776801643635, - 33.76074258651302, - 34.459077454566334, - 35.05371043597777, - 35.560641086434345, - 35.98103068909282, - 36.29392449529091, - 36.64955433201961, - 36.89255564214934, - 37.012131456346886, - 37.20703600902331 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.195803175961542, - 1.481384749141308, - 1.8198213217004335, - 2.1114679242247227, - 2.451192833158653, - 2.78841983323319, - 3.0450049095899128, - 3.388199423767682, - 3.6183610819413583, - 3.805862950545615, - 4.11871307447355, - 4.381195107539685, - 5.195738689277346, - 6.329908941435329, - 6.762557831033205, - 7.2177417967052095, - 7.73416226489339, - 8.196351887772328, - 8.640051514907727, - 9.065709557712205, - 9.457729057699241, - 9.773236814575467, - 10.159544064968793, - 10.441915361798772, - 10.587725277730891, - 10.835246690551008 - ], - "5._384._0.0875": [ - 3.492592222653354, - 4.035469378288333, - 4.712762211401826, - 5.923803052689403, - 7.545631082222761, - 10.399049968553218, - 14.42350381787265, - 18.249349544690762, - 23.82767864178811, - 27.27376398858085, - 29.717148778493506, - 33.075215788520616, - 35.357041013239325, - 40.300503068949965, - 44.34828573433241, - 45.43918110145337, - 46.40939157704897, - 47.34610163521083, - 48.064954722702566, - 48.67774256903446, - 49.20202473753273, - 49.6383805095947, - 49.96354977443299, - 50.33421830764943, - 50.58747796787222, - 50.711929413807795, - 50.91423264452495 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125418, - 2.162243131656476, - 2.5060808690348417, - 2.80013475036511, - 3.143309521066824, - 3.5127965215955106, - 3.863974296463465, - 4.486604082089243, - 4.982746594064645, - 5.413663282144735, - 6.167059241861282, - 6.818833682777793, - 8.811661004165328, - 11.230949978540588, - 12.036222045319814, - 12.81264744366665, - 13.619108116184771, - 14.277797669730843, - 14.862469808347715, - 15.380094062450969, - 15.8215981618673, - 16.155162196932647, - 16.537299582558646, - 16.800502987875287, - 16.93113242808027, - 17.14541988705934 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.555323563332805, - 2.851914879896113, - 3.2002710518186834, - 3.524649323332277, - 4.011604574127139, - 4.725060374305544, - 5.522819708882828, - 7.0666649386731395, - 8.332620224225225, - 9.407894644379649, - 11.169033013887182, - 12.561850103955042, - 16.171380461438638, - 19.68873152009175, - 20.71511895481482, - 21.645446300941547, - 22.55948862554413, - 23.267652029185992, - 23.873937078464845, - 24.392653967735285, - 24.823227713955056, - 25.14337881084555, - 25.505920737962217, - 25.753453834459645, - 25.87542195746399, - 26.074578397764597 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 45.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 45.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 45.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 15.0, - 40.0 - ], - [ - 7.5, - 11.25 - ], - [ - 7.5, - 22.5 - ], - [ - 7.5, - 33.75 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351656361222255, - 3.187024948080456, - 3.5209862388153255, - 4.034013116813729, - 4.677455082372498, - 5.849133112312294, - 7.755318431660023, - 9.890794121920335, - 13.575399355220691, - 16.173936252121358, - 18.156043190873206, - 21.06220370072595, - 23.142847104488876, - 27.884548050452857, - 31.91762048679873, - 33.01940931606773, - 33.99731484862593, - 34.940942106874786, - 35.662521952949945, - 36.27691720194367, - 36.80061762350469, - 37.234865418333264, - 37.55807806376907, - 37.925434044367975, - 38.17646209856086, - 38.29999629754041, - 38.50138298785755 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615417, - 1.4813847491413072, - 1.8198213217004335, - 2.111467924224724, - 2.451192833122093, - 2.788419317672888, - 3.044973164207352, - 3.387507927002255, - 3.6164379710040464, - 3.8029281095924077, - 4.115777905312539, - 4.38121966487534, - 5.224460060161017, - 6.420705371418165, - 6.877225913579602, - 7.356526426614499, - 7.898743315081809, - 8.382500047654272, - 8.845640944459424, - 9.288766555006271, - 9.695843526165483, - 10.022784441946351, - 10.422104884397923, - 10.713326573420561, - 10.863495876028312, - 11.118092822266568 - ], - "5._384._0.0875": [ - 3.490850097760196, - 4.0318959284235625, - 4.719722441502121, - 5.985285945852858, - 7.698227567670065, - 10.698350249160786, - 14.903454724197449, - 18.88688614458819, - 24.682193260808123, - 28.25815135172602, - 30.792415131600503, - 34.27355040960854, - 36.6381245635602, - 41.758081292285624, - 45.94833886211054, - 47.07738834839765, - 48.081441796514525, - 49.05072809207839, - 49.79448673331989, - 50.428500375986275, - 50.97090852806126, - 51.42232907475172, - 51.758730220781814, - 52.14220492055053, - 52.40422491618174, - 52.532986754472724, - 52.74231447028009 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.867903705312541, - 2.162243131656476, - 2.506080868861052, - 2.8001342903733684, - 3.143234256462221, - 3.5116667609400714, - 3.860889437894991, - 4.486753771733694, - 4.996744411435726, - 5.4465388998272175, - 6.240640564512636, - 6.929444078174934, - 9.026340723224513, - 11.552432476312108, - 12.389879783539952, - 13.195654682977995, - 14.031261356280387, - 14.712625299052661, - 15.316815117996349, - 15.851080690611363, - 16.30630198387537, - 16.649998262325433, - 17.043433315263254, - 17.31428037686844, - 17.44867974413096, - 17.669171074427954 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.55532356260583, - 2.8519138305976277, - 3.2001530057569543, - 3.5235404547940887, - 4.008077423743671, - 4.729252801227716, - 5.557867937557266, - 7.1868267517538325, - 8.522068283222069, - 9.652367214843688, - 11.496174945162926, - 12.949799061851493, - 16.70288971526793, - 20.34787882790473, - 21.409824172741256, - 22.37180116202632, - 23.31639088199254, - 24.04774215673705, - 24.673703756862388, - 25.20903268299679, - 25.653248363737035, - 25.983509625612303, - 26.357449118864697, - 26.61276513891031, - 26.738576587925884, - 26.944051713784535 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 45.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 45.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 45.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 15.0, - 40.0 - ], - [ - 7.5, - 9.0 - ], - [ - 7.5, - 18.0 - ], - [ - 7.5, - 27.0 - ], - [ - 7.5, - 36.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351635560231028, - 3.1868605588199936, - 3.5197205913108403, - 4.032107242001262, - 4.689338878527329, - 5.91609480880366, - 7.922253915757673, - 10.160096426745977, - 14.001413090730017, - 16.702254949827044, - 18.759607185751136, - 21.772506119751476, - 23.92772063223086, - 28.834066860608974, - 33.002802453366954, - 34.14113058681058, - 35.15124783055476, - 36.12576249815349, - 36.87078114349018, - 37.50510633494238, - 38.045724974760674, - 38.49395750325177, - 38.82758313964832, - 39.206772640817924, - 39.46590015636077, - 39.59342809866077, - 39.80135294570721 - ], - "5._24._0.075": [ - 0.8740059532267972, - 1.195803175961542, - 1.4813847491413068, - 1.819821321700434, - 2.1114679242247245, - 2.4511928330881454, - 2.788418838991739, - 3.0449437600352103, - 3.3868740697677913, - 3.614747482984892, - 3.8006674151577635, - 4.115444984478436, - 4.386504042271237, - 5.265733384598827, - 6.524783968340328, - 7.004425473169085, - 7.506774872728131, - 8.073604647270159, - 8.577977982286157, - 9.059798842863906, - 9.51978681456353, - 9.941476651419094, - 10.279569957702828, - 10.69165889414753, - 10.99161949293673, - 11.146114753556537, - 11.407770722701125 - ], - "5._384._0.0875": [ - 3.4892939796677114, - 4.030635017056702, - 4.736043916495476, - 6.063527176779256, - 7.866415278594892, - 11.007875585768776, - 15.388988503159649, - 19.52775261238041, - 25.538795529662384, - 29.244445827673154, - 31.869591494053402, - 35.47397542769371, - 37.9215051931922, - 43.21861066321695, - 47.55203257966306, - 48.71943936588378, - 49.75752145485119, - 50.759569336005676, - 51.52838123548475, - 52.18374698171809, - 52.74439109338012, - 53.210969105089156, - 53.55867086993404, - 53.95502987668618, - 54.225862998831566, - 54.35896086868168, - 54.575353797671625 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.867903705312544, - 2.162243131656476, - 2.506080868699677, - 2.8001338632808253, - 3.143164655456349, - 3.510638967804544, - 3.8585184426402126, - 4.492642614636155, - 5.021737618185604, - 5.49347359507956, - 6.329921355527415, - 7.0551238409688874, - 9.251988703264695, - 11.881422706854497, - 12.750258944498459, - 13.584886328706059, - 14.449291652536255, - 15.153187777777209, - 15.776834175131558, - 16.327756162580872, - 16.796757620760825, - 17.150658517689426, - 17.555506589664958, - 17.83409534402867, - 17.9723180031298, - 18.199104546727167 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.555323561930778, - 2.8519128564395615, - 3.2000439594040633, - 3.5225307524244815, - 4.005814523066644, - 4.7414980075047355, - 5.607630458326129, - 7.32271778382067, - 8.724816945943555, - 9.908004214095989, - 11.831726220630527, - 13.344581855787995, - 17.239207552480483, - 21.01143808937249, - 22.109051952021158, - 23.102812875261662, - 24.078134793501565, - 24.83286210952034, - 25.478676112549575, - 26.03078719570263, - 26.488798958262176, - 26.829288701497706, - 27.214765084232244, - 27.47796061871905, - 27.607662963049794, - 27.81953251968545 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 45.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 45.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 45.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 15.0, - 40.0 - ], - [ - 7.5, - 7.5 - ], - [ - 7.5, - 15.0 - ], - [ - 7.5, - 22.5 - ], - [ - 7.5, - 30.0 - ], - [ - 7.5, - 37.5 - ] - ], - "g": { - "5._192._0.08": [ - 2.835161620655716, - 3.186714164706971, - 3.518923274277485, - 4.034882614599873, - 4.712337028031814, - 5.996653562783168, - 8.100196386843407, - 10.437882598893097, - 14.433411289250628, - 17.23558228492764, - 19.367725599534957, - 22.487054060459148, - 24.71678438807135, - 29.788115117876746, - 34.09316666974313, - 35.26825628601343, - 36.3107983151342, - 37.31642013521224, - 38.085057899286355, - 38.739468885106504, - 39.29714330383202, - 39.75947756596832, - 40.10360311832303, - 40.494725153725774, - 40.762019013040515, - 40.8935731386113, - 41.10808737729355 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615424, - 1.4813847491413064, - 1.819821321700434, - 2.1114679242247245, - 2.4511928330565396, - 2.788418393396161, - 3.044916623602905, - 3.386383022259411, - 3.6139655615958253, - 3.800759573012226, - 4.120925973652803, - 4.400352671282769, - 5.318832080391656, - 6.639315935398341, - 7.1414315425878945, - 7.666156823494527, - 8.256935418552585, - 8.781426729753676, - 9.281543235871924, - 9.758093118980138, - 10.19417830863132, - 10.543290644326742, - 10.968042447200931, - 11.27670151695284, - 11.435515779773642, - 11.704247956122467 - ], - "5._384._0.0875": [ - 3.4884358615850313, - 4.035035316977999, - 4.7643308441318775, - 6.15531904551955, - 8.045716368414126, - 11.325104050390625, - 15.879731508460347, - 20.17262797246179, - 26.39873885746621, - 30.234008778965297, - 32.95009128746662, - 36.67793716673272, - 39.208633217920564, - 44.683529484393844, - 49.16077596220922, - 50.366733238268274, - 51.43902110533669, - 52.4740071341705, - 53.26801290063592, - 53.94485085183249, - 54.523835443843296, - 55.0056589763188, - 55.36472659594133, - 55.77404403681144, - 56.053740289932996, - 56.1911984375536, - 56.414695005325555 - ], - "5._48._0.075": [ - 1.5268463243731383, - 1.867903705312542, - 2.162243131656476, - 2.5060808685494314, - 2.800133465700251, - 3.143101119971846, - 3.5099360751938935, - 3.8586361554073076, - 4.507768693808951, - 5.0590176636099775, - 5.553452701863523, - 6.431554858476458, - 7.192114226176439, - 9.486247212369511, - 12.2173010322916, - 13.117154609354174, - 13.98042207428779, - 14.873501527377623, - 15.59990044907304, - 16.24302223649712, - 16.810658580122343, - 17.293522173054974, - 17.657707010250686, - 18.074082752774267, - 18.360504686241068, - 18.502599171340936, - 18.735763050827252 - ], - "5._96._0.075": [ - 2.2092718103273987, - 2.5553235613022864, - 2.8519119497526675, - 3.199945439442421, - 3.52183122284598, - 4.007339127654402, - 4.764782187573331, - 5.670877705981988, - 7.470208563893063, - 8.937357856425189, - 10.172207752512493, - 12.174388559492497, - 13.745681845241307, - 17.780902086806435, - 21.68033370914506, - 22.81372495578746, - 23.839419373680943, - 24.845659318571087, - 25.62393902331952, - 26.289769817669246, - 26.8588188888362, - 27.330766353691228, - 27.68159143467572, - 28.07872997918935, - 28.34989130021944, - 28.48352681492243, - 28.701857823245977 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 45.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 45.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 45.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 15.0, - 40.0 - ], - [ - 7.5, - 6.428571428571429 - ], - [ - 7.5, - 12.857142857142902 - ], - [ - 7.5, - 19.2857142857143 - ], - [ - 7.5, - 25.714285714285698 - ], - [ - 7.5, - 32.1428571428571 - ], - [ - 7.5, - 38.5714285714286 - ] - ], - "g": { - "5._192._0.08": [ - 2.835160005230006, - 3.186662904296333, - 3.5195748866531407, - 4.044406646054083, - 4.746256672555482, - 6.089172092328113, - 8.288313005919427, - 10.723745454937479, - 14.871373543474038, - 17.774089385684924, - 19.980682831455056, - 23.2062503166704, - 25.510511679100386, - 30.747261932039706, - 35.189332408109856, - 36.40141531727292, - 37.47660221398872, - 38.51355724750479, - 39.30599917723617, - 39.98065582067375, - 40.555527094268136, - 41.03208312085917, - 41.38679785206491, - 41.789954216879565, - 42.065483277579844, - 42.2010970183589, - 42.42225351798755 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615433, - 1.481384749141307, - 1.8198213217004335, - 2.1114679242247254, - 2.451192833027072, - 2.7884180018436724, - 3.0448992918890783, - 3.38647363082194, - 3.6154534949064674, - 3.8051222697937774, - 4.133804202688418, - 4.4233559228210835, - 5.382606464132685, - 6.7635979556291925, - 7.287642704379621, - 7.834172459136975, - 8.448324726317784, - 8.992500819181938, - 9.510580056680364, - 10.003441351585366, - 10.453751018670488, - 10.813784753790841, - 11.25113618921337, - 11.568487722011305, - 11.731632086847847, - 12.00748376210186 - ], - "5._384._0.0875": [ - 3.489512186776227, - 4.047015449671006, - 4.803976265722696, - 6.259008800910596, - 8.235204797309057, - 11.649730500063, - 16.375762628511932, - 20.82183436117685, - 27.262561726970592, - 31.22747328654464, - 34.03459188023991, - 37.88615580910577, - 40.500251147855074, - 46.153615972657676, - 50.77537109876196, - 52.020078252806854, - 53.12675475973348, - 54.19486126773863, - 55.014206242668024, - 55.71264066493645, - 56.31007401952474, - 56.80723442044639, - 57.17773565464799, - 57.60008864100305, - 57.8887001183237, - 58.03054382690227, - 58.261184142112945 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125422, - 2.162243131656476, - 2.5060808684094953, - 2.8001331151772577, - 3.143068084973163, - 3.5103330340556393, - 3.86325374095028, - 4.532630842606958, - 5.107569267121991, - 5.625032473158483, - 6.544285048621042, - 7.3394637783870085, - 9.728725828907596, - 12.559934298308246, - 13.490525956837478, - 14.382293271459442, - 15.30398583860215, - 16.052909057899132, - 16.71556202567238, - 17.30000187848923, - 17.796833954496535, - 18.171398882025, - 18.599433842021835, - 18.893790817627078, - 19.039810216866737, - 19.279439797716158 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323560717895, - 2.851911169121818, - 3.19990212527128, - 3.5221990740854023, - 4.0147697378103135, - 4.798865118995367, - 5.746050551883711, - 7.6283412435200475, - 9.159083633288898, - 10.444537445493907, - 12.523952052202374, - 14.153026442182146, - 18.328131266300915, - 22.35488326182843, - 23.52420491230343, - 24.58200360385768, - 25.619364859046286, - 26.42138472829594, - 27.107404858195615, - 27.693553867169992, - 28.179581147278082, - 28.54085148325561, - 28.94978068055524, - 29.228996158113734, - 29.36660812227774, - 29.591469203218896 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 45.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 45.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 45.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 15.0, - 40.0 - ], - [ - 5.0, - 6.428571428571429 - ], - [ - 5.0, - 12.857142857142902 - ], - [ - 5.0, - 19.2857142857143 - ], - [ - 5.0, - 25.714285714285698 - ], - [ - 5.0, - 32.1428571428571 - ], - [ - 5.0, - 38.5714285714286 - ], - [ - 10.0, - 6.428571428571429 - ], - [ - 10.0, - 12.857142857142902 - ], - [ - 10.0, - 19.2857142857143 - ], - [ - 10.0, - 25.714285714285698 - ], - [ - 10.0, - 32.1428571428571 - ], - [ - 10.0, - 38.5714285714286 - ] - ], - "g": { - "5._192._0.08": [ - 2.835176775197096, - 3.188424002517178, - 3.5385646362579575, - 4.15049454348057, - 5.025426141305681, - 6.723407944181103, - 9.47671869577091, - 12.48243710950514, - 17.52953554101715, - 21.032119566236076, - 23.68450026599686, - 27.547789644884585, - 30.29993540079288, - 36.53208069993229, - 41.79955585947738, - 43.23459990725297, - 44.506600748677485, - 45.73251275687289, - 46.66855707400283, - 47.46535679050132, - 48.14399777760479, - 48.706384104004165, - 49.12500412629316, - 49.60078787967758, - 49.92601096250928, - 50.08611866764611, - 50.3473422057165 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.195803175961542, - 1.4813847491413084, - 1.8198213217004344, - 2.1114679242247245, - 2.451192833250311, - 2.788421664254476, - 3.0451732161827962, - 3.394651980074972, - 3.645071212750743, - 3.864827614607712, - 4.263969130587157, - 4.625613032852822, - 5.837571386101098, - 7.5688580840623505, - 8.219578791193824, - 8.892169255289756, - 9.641917752036012, - 10.300737742236498, - 10.923948402492963, - 11.512620053474043, - 12.046753731012476, - 12.471324444334638, - 12.983340463339296, - 13.352290926495138, - 13.541179585016998, - 13.859487965154075 - ], - "5._384._0.0875": [ - 3.514345158505229, - 4.172499903033542, - 5.120041558600355, - 6.958767253063125, - 9.432047832065766, - 13.636040562426736, - 19.378584242433114, - 24.74032403634576, - 32.46883598897509, - 37.21256361249055, - 40.56680190122649, - 45.162207796671105, - 48.27786796128133, - 55.005091457907504, - 60.49680973948958, - 61.974848129056156, - 63.288622528304636, - 64.55621442834008, - 65.52820261256636, - 66.35673455078647, - 67.06531238358593, - 67.6548751170393, - 68.09425992215911, - 68.59514650365112, - 68.93746458916728, - 69.10572561619124, - 69.37939219488 - ], - "5._48._0.075": [ - 1.5268463243731378, - 1.8679037053125447, - 2.162243131656481, - 2.5060808694830623, - 2.800136369175071, - 3.143758715957318, - 3.524959524691439, - 3.9260663520447445, - 4.749615649939926, - 5.476275829466319, - 6.132215233459897, - 7.291456215059053, - 8.286877915710974, - 11.228818379480328, - 14.651298125841073, - 15.764489557051013, - 16.826490953267683, - 17.919512838006792, - 18.803562127819287, - 19.58353279542353, - 20.269031280400057, - 20.84997232389805, - 21.287087231216905, - 21.785464949810812, - 22.12773906445087, - 22.297469975138682, - 22.57616938802999 - ], - "5._96._0.075": [ - 2.2092718103274014, - 2.5553235652697874, - 2.8519187973268236, - 3.2010258501476656, - 3.5364389623839463, - 4.103141339420617, - 5.0782483788700175, - 6.277224105299635, - 8.64165768801305, - 10.541836432542265, - 12.123205993848398, - 14.657711097022641, - 16.629769833695114, - 21.641814471957666, - 26.434077911202795, - 27.81977064192598, - 29.071097476800887, - 30.29616792099115, - 31.24147604415653, - 32.049389134904324, - 32.73883079900573, - 33.30994494663247, - 33.73434720643926, - 34.214556479668005, - 34.542462013828, - 34.70410965141771, - 34.968428870578606 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 45.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 45.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 45.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 15.0, - 40.0 - ], - [ - 5.0, - 5.625 - ], - [ - 5.0, - 11.25 - ], - [ - 5.0, - 16.875 - ], - [ - 5.0, - 22.5 - ], - [ - 5.0, - 28.125 - ], - [ - 5.0, - 33.75 - ], - [ - 5.0, - 39.375 - ], - [ - 10.0, - 5.625 - ], - [ - 10.0, - 11.25 - ], - [ - 10.0, - 16.875 - ], - [ - 10.0, - 22.5 - ], - [ - 10.0, - 28.125 - ], - [ - 10.0, - 33.75 - ], - [ - 10.0, - 39.375 - ] - ], - "g": { - "5._192._0.08": [ - 2.83518875424044, - 3.1894044727093065, - 3.5474886159009147, - 4.194238623034052, - 5.132022736413438, - 6.951492103023742, - 9.887710930929993, - 13.079394961108616, - 18.420717262587083, - 22.120491412312496, - 24.919902524332088, - 28.994183055323287, - 31.8948874798597, - 38.4580761446523, - 44.00084216951961, - 45.51034131337594, - 46.848085516954214, - 48.13714022007107, - 49.12118915820559, - 49.95882422158708, - 50.672164359209646, - 51.26325499631834, - 51.703247024582744, - 52.20332004140872, - 52.545162129730535, - 52.71346096627351, - 52.988082169740295 - ], - "5._24._0.075": [ - 0.874005953226797, - 1.1958031759615426, - 1.4813847491413075, - 1.819821321700433, - 2.1114679242247223, - 2.451192833446817, - 2.7884244203720288, - 3.0453440956544027, - 3.3987226364461947, - 3.65848089731849, - 3.890463518488714, - 4.316509686976077, - 4.704403407802107, - 6.003725713462459, - 7.85087206836901, - 8.542618784412934, - 9.255871379152852, - 10.049262814724944, - 10.744938174851917, - 11.40197385126271, - 12.021507386069134, - 12.582694355172627, - 13.028138849834567, - 13.564378407966904, - 13.95014608852297, - 14.147459434893022, - 14.479730291942866 - ], - "5._384._0.0875": [ - 3.525744358183569, - 4.223489510841021, - 5.23954146883061, - 7.208722578181864, - 9.845826531495971, - 14.307549331403411, - 20.383203586105193, - 26.0466958477083, - 34.20166749926028, - 39.204106810914155, - 42.740311444277175, - 47.5833919669361, - 50.8662033722806, - 57.95161068675401, - 63.73372185028044, - 65.28966872979396, - 66.67259683418042, - 68.00680608395187, - 69.02977295764609, - 69.90175420480399, - 70.6474525971231, - 71.26787679980808, - 71.73026760932505, - 72.25738260410533, - 72.61763689892769, - 72.79472019928188, - 73.08275508708786 - ], - "5._48._0.075": [ - 1.5268463243731416, - 1.867903705312544, - 2.1622431316564827, - 2.5060808704165956, - 2.8001388283531705, - 3.1441669136357877, - 3.531953316020037, - 3.9529974045269953, - 4.8338622388333015, - 5.613796879752831, - 6.317064740194648, - 7.556363194396496, - 8.617525573670978, - 11.739376769859266, - 15.354354325255603, - 16.527216876939004, - 17.64504106335725, - 18.794393710518527, - 19.72301490459487, - 20.541756898050817, - 21.26073588935462, - 21.86960888861339, - 22.327535322986297, - 22.849367350567167, - 23.207649443896297, - 23.385310159103575, - 23.677084873579233 - ], - "5._96._0.075": [ - 2.209271810327406, - 2.555323569172173, - 2.8519244058871864, - 3.2016701636543443, - 3.5432693919810654, - 4.1400867262816226, - 5.184794055001499, - 6.470547229773009, - 8.99498201756996, - 11.015692212443394, - 12.693376095702334, - 15.376392892114996, - 17.460702549356192, - 22.748286470430315, - 27.794185974329107, - 29.251876428949995, - 30.56764203365003, - 31.85529771690469, - 32.848448177233934, - 33.697088386838615, - 34.42107278080083, - 35.02066149176546, - 35.466197905879774, - 35.970277686617365, - 36.31449180836029, - 36.484190646838066, - 36.761725781781486 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 45.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 45.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 45.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 45.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 15.0, - 30.0 - ], - [ - 0.0, - 35.0 - ], - [ - 15.0, - 35.0 - ], - [ - 0.0, - 40.0 - ], - [ - 15.0, - 40.0 - ], - [ - 7.5, - 22.5 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351702959759977, - 3.187394003145829, - 3.523906714969534, - 4.042101842346096, - 4.673419228674303, - 5.760719849210829, - 7.469307131833088, - 9.388280062783728, - 12.744640100839767, - 15.13263928893941, - 16.961410696489146, - 19.651916152696984, - 21.582733729759422, - 25.9955885724961, - 29.759216089944164, - 30.788614751401713, - 31.702744035138686, - 32.585271210053435, - 33.26053249626298, - 33.835552023639615, - 34.32584530941383, - 34.732489993128596, - 35.03514930883426, - 35.37914933871069, - 35.61418913489421, - 35.729838254038356, - 35.91831076711161 - ], - "5._24._0.075": [ - 0.8740059532267971, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224723, - 2.4511928331981374, - 2.7884203899486892, - 3.045039073925607, - 3.3889422910199327, - 3.6204790887830414, - 3.8092194700114885, - 4.1227661109936955, - 4.383437751528868, - 5.176001622073817, - 6.2527827451554945, - 6.661223630500353, - 7.091325095216277, - 7.580674286554885, - 8.02020569387426, - 8.443582900320912, - 8.851071689511008, - 9.227507408300333, - 9.531241735501046, - 9.904214603744752, - 10.177553218672896, - 10.31893005641674, - 10.559294128263595 - ], - "5._384._0.0875": [ - 3.4944980181234353, - 4.040076629139527, - 4.7104207784436305, - 5.876945768467081, - 7.410726016994291, - 10.111801623784213, - 13.95033295493666, - 17.616086350510358, - 22.975924923226263, - 26.29181132113419, - 28.64424418203059, - 31.879336264505554, - 34.07856641453266, - 38.84608285430502, - 42.75199889140845, - 43.804921703634264, - 44.74145566756271, - 45.64575613040896, - 46.33983680617369, - 46.93151271790422, - 47.437768126306956, - 47.85914278703403, - 48.173142163327384, - 48.53107496797867, - 48.775621808989946, - 48.89578590569849, - 49.091101173412014 - ], - "5._48._0.075": [ - 1.5268463243731383, - 1.8679037053125402, - 2.1622431316564765, - 2.5060808692225307, - 2.8001352470846137, - 3.143390350550219, - 3.5140182127224504, - 3.867504625212205, - 4.488924707926055, - 4.974981055845373, - 5.39089878191324, - 6.108378565867456, - 6.724294554430576, - 8.609332888713816, - 10.91773358737474, - 11.689890383234074, - 12.436342316108187, - 13.213183814951975, - 13.848948140623474, - 14.413952377169938, - 14.914868459923449, - 15.342648564519955, - 15.666100881583064, - 16.036998960385645, - 16.29261951814996, - 16.419514964363284, - 16.627663727556303 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.55532356411794, - 2.8519160128189562, - 3.2003976708963284, - 3.5258475762718553, - 4.015791910412142, - 4.724641124486228, - 5.498441330770842, - 6.963555481103096, - 8.1586009642745, - 9.176494759796519, - 10.851642643198156, - 12.181832552799511, - 15.645449311189944, - 19.034457969844322, - 20.025301593887924, - 20.924049647711275, - 21.807670489987608, - 22.492790430837328, - 23.079539476381616, - 23.581785115107603, - 23.998847541607145, - 24.308989982515815, - 24.660255369464377, - 24.900090158402936, - 25.01825678492442, - 25.21116122696543 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "4_4": { - "1_1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 15.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 15.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 15.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 7.5, - 7.5 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351678798604345, - 3.1872177656117713, - 3.5232854354783685, - 4.052438428723101, - 4.737474926415511, - 5.977489432905987, - 7.856754647922466, - 9.757886641432913, - 12.65721965944212, - 14.489023102379893, - 15.799787506923897, - 17.621687420628838, - 18.867683164022797, - 21.602860244685026, - 23.86907055587442, - 24.48364661201678, - 25.03200961694053, - 25.563482964117686, - 25.973372450536573, - 26.32312358373291, - 26.623239533466247, - 26.873638232417136, - 27.060269509428625, - 27.27314400577993, - 27.418514658262378, - 27.48988549628561, - 27.605605098659062 - ], - "5._24._0.075": [ - 0.8740059532267966, - 1.1958031759615428, - 1.4813847491413072, - 1.8198213217004355, - 2.111467924224728, - 2.451192833158653, - 2.7884198333956856, - 3.0450054383047207, - 3.388423414909576, - 3.620332527088513, - 3.8120682594158315, - 4.140041187434159, - 4.422886678754824, - 5.321234989615849, - 6.5263437404866025, - 6.957686304348439, - 7.391567154083204, - 7.860314222708644, - 8.258606025392256, - 8.623043600790599, - 8.956058309223891, - 9.248420146003598, - 9.473772823909444, - 9.737610667646901, - 9.921562602400382, - 10.01322191695006, - 10.163325953713956 - ], - "5._384._0.0875": [ - 3.493996636696855, - 4.054659256266985, - 4.78875306945473, - 6.121025206876537, - 7.80352951065869, - 10.433901019383976, - 13.640941694839348, - 16.331370561092573, - 19.87431599525205, - 21.916007808617138, - 23.320390687400792, - 25.218451029282615, - 26.493354059266988, - 29.259069977783355, - 31.540586806336844, - 32.158670408518, - 32.711800316168194, - 33.24870064288903, - 33.66382260617443, - 34.018254057586034, - 34.32297815575483, - 34.577691682824415, - 34.76761085869214, - 34.98452514114636, - 35.13260942703353, - 35.205247646838394, - 35.322859512661175 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125465, - 2.1622431316564756, - 2.5060808690348377, - 2.8001347504925422, - 3.143312305355372, - 3.5133861797008517, - 3.8705310824159427, - 4.531769197972898, - 5.077899785965173, - 5.55462300227648, - 6.3711748012195075, - 7.048675915142177, - 8.939167539808523, - 10.931806169001842, - 11.533159553013329, - 12.089419777562865, - 12.64489905654875, - 13.083338715281778, - 13.462104966217911, - 13.790303957182326, - 14.065688463472014, - 14.271267984243181, - 14.505221390976585, - 14.665007991014143, - 14.743623198045242, - 14.871293402214993 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.555323563332806, - 2.8519148805355723, - 3.2002776648469786, - 3.525206128924598, - 4.022767075983574, - 4.789456780493782, - 5.670963648218378, - 7.310927123196966, - 8.550282587645464, - 9.533176072028752, - 11.027135098862418, - 12.124848504513153, - 14.717167899186993, - 16.98976615396995, - 17.618790577984015, - 18.181887823775902, - 18.729541065237587, - 19.15255691604014, - 19.51353906417054, - 19.82305155110091, - 20.080928561476814, - 20.27291183541213, - 20.491317598553422, - 20.640355442461797, - 20.71355755380681, - 20.832334532578137 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 15.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 15.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 15.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 7.5, - 5.0 - ], - [ - 7.5, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351711814013543, - 3.1877619161150377, - 3.5300521987323443, - 4.092350053972336, - 4.846045715867644, - 6.226030365575266, - 8.301646015806089, - 10.37896592317485, - 13.521464069334, - 15.498792833674043, - 16.91154931578895, - 18.872602017133534, - 20.21246432782293, - 23.15028892524921, - 25.581789694205543, - 26.240913949035075, - 26.828903751768717, - 27.39868300301964, - 27.838026505409367, - 28.212900954378327, - 28.534542552922407, - 28.80288099513015, - 29.002888521067113, - 29.231021045823017, - 29.386821853893696, - 29.46331909418647, - 29.587366908436255 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.195803175961542, - 1.4813847491413066, - 1.8198213217004344, - 2.1114679242247285, - 2.45119283317253, - 2.7884204452488497, - 3.0450776854767603, - 3.391231242253256, - 3.6310826882034704, - 3.834200811876476, - 4.189479548289206, - 4.501000324208016, - 5.500154502892341, - 6.83397784285001, - 7.307508114996968, - 7.781213144781125, - 8.290675036159072, - 8.72167336973038, - 9.114874342962088, - 9.473097792217311, - 9.786763933623792, - 10.028064719450208, - 10.309933726858137, - 10.506088603242873, - 10.603728742838797, - 10.76349911300112 - ], - "5._384._0.0875": [ - 3.502951035108636, - 4.1021182676846255, - 4.912099940002563, - 6.394312539684579, - 8.251758092475313, - 11.12198110832681, - 14.595001329381112, - 17.4984730325936, - 21.314758329968765, - 23.51166411917869, - 25.022151255906795, - 27.062667289719766, - 28.43281242316016, - 31.403766951270235, - 33.853595240469225, - 34.5171700430619, - 35.11096376694695, - 35.68729155277061, - 36.13285736527143, - 36.51328211340298, - 36.840340494020914, - 37.113714720973874, - 37.31755224691423, - 37.55036585440934, - 37.70931169123703, - 37.78728131747946, - 37.913535295118905 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125458, - 2.1622431316564765, - 2.5060808691112553, - 2.8001352858759265, - 3.1435101206117877, - 3.5185458782381347, - 3.8938257837458465, - 4.615538123293564, - 5.222669763731222, - 5.7542059909967485, - 6.661109585044995, - 7.409053123901263, - 9.473867374906161, - 11.627812881089339, - 12.274783066123721, - 12.872278339628457, - 13.468077371448969, - 13.937653596310543, - 14.34299477885783, - 14.693880322398936, - 14.988062080556276, - 15.207579986864737, - 15.457259764071907, - 15.627744146780127, - 15.711618851192473, - 15.847848859102404 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235637037206, - 2.851916258652669, - 3.2006127849279995, - 3.530219822586601, - 4.055842692400081, - 4.898148492299303, - 5.879869422948944, - 7.695974590146078, - 9.055304631317874, - 10.126995612407795, - 11.747734775736093, - 12.93448191707208, - 15.727331901290837, - 18.16795636288144, - 18.84260051387258, - 19.44620431858016, - 20.032976785916762, - 20.485981307087, - 20.872483756031464, - 21.20378005998712, - 21.479742725429944, - 21.685182126746238, - 21.91887558652922, - 22.078352298963235, - 22.156687893966236, - 22.283817115227492 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "4_5": { - "1_1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 20.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 7.5, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835168551201247, - 3.187263976408304, - 3.523184523197632, - 4.04452040682191, - 4.7005339485370845, - 5.877655613810245, - 7.706884587478849, - 9.629481927492161, - 12.680895872103044, - 14.66623421623402, - 16.107069823295962, - 18.12990315873668, - 19.52341523869152, - 22.594982906243462, - 25.143157755727064, - 25.83406578778365, - 26.44958758446652, - 27.045446061718135, - 27.504170200652943, - 27.89539984900222, - 28.23067337623168, - 28.510075186569157, - 28.718266960324986, - 28.95557317653764, - 29.117642448401405, - 29.197243024940448, - 29.326424822164203 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004355, - 2.111467924224727, - 2.451192833169619, - 2.788419988018048, - 3.0450147355036905, - 3.3885072584301543, - 3.6197366217784492, - 3.8091701816889123, - 4.128111892087807, - 4.39884260436798, - 5.250757746951914, - 6.41439563001892, - 6.841366918909256, - 7.278024893171893, - 7.757621892686313, - 8.171853615449939, - 8.556169245065416, - 8.911938008820746, - 9.227907913590471, - 9.47372814602179, - 9.763911436403815, - 9.967702695671553, - 10.069740089831281, - 10.23752927403046 - ], - "5._384._0.0875": [ - 3.4936911508997595, - 4.044097301447126, - 4.744923718584172, - 6.0114003816396595, - 7.651402365475661, - 10.325139436732687, - 13.730191644475592, - 16.67435138772061, - 20.626379130842803, - 22.92757920760366, - 24.516116133712856, - 26.66564279862443, - 28.110337650479053, - 31.23886548369332, - 33.81315290772364, - 34.50962628838817, - 35.13215348683249, - 35.73579244844193, - 36.20187944168707, - 36.59970980376465, - 36.94144936015703, - 37.226885257841325, - 37.439692108001495, - 37.68266352301702, - 37.8485645882877, - 37.92996974889343, - 38.061870293085036 - ], - "5._48._0.075": [ - 1.526846324373142, - 1.8679037053125451, - 2.1622431316564765, - 2.5060808690869796, - 2.8001348884547657, - 3.1433336028828944, - 3.5133882256158144, - 3.8674609225070657, - 4.505684759190436, - 5.02351149512212, - 5.475414978679433, - 6.257517502871103, - 6.91771555215415, - 8.82167848196441, - 10.919458244618195, - 11.568976989964966, - 12.175149278710098, - 12.785173774635, - 13.269430465427192, - 13.68941778925645, - 14.054226929203727, - 14.360729615993563, - 14.589688246739875, - 14.850125079875735, - 15.02804222870348, - 15.115647231915892, - 15.258073594028103 - ], - "5._96._0.075": [ - 2.2092718103274027, - 2.5553235635508993, - 2.8519151951305375, - 3.200309921062786, - 3.525221538470626, - 4.017011426432835, - 4.752240865873735, - 5.587799412525928, - 7.171409197280925, - 8.406044616381264, - 9.408583286542262, - 10.967860919290501, - 12.137273381796012, - 14.959721757879969, - 17.482441991861208, - 18.185755121275072, - 18.81574329641796, - 19.428700020432608, - 19.901780150224106, - 20.30537685411131, - 20.651009517012206, - 20.938601574341416, - 21.152590732614865, - 21.395744036470568, - 21.561649265594898, - 21.643169548262744, - 21.77557426738418 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 20.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 7.5, - 6.66666666666667 - ], - [ - 7.5, - 13.333333333333302 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351647654098957, - 3.1870019296024386, - 3.522152439946208, - 4.053234730035851, - 4.753101588023297, - 6.044806244243766, - 8.049311711082694, - 10.135188381741113, - 13.41573683361848, - 15.539856295811123, - 17.078553199392136, - 19.235352055092044, - 20.71948312823841, - 23.9864412401848, - 26.69337728940948, - 27.426970879134828, - 28.080367460296316, - 28.712760520865228, - 29.199495173423564, - 29.61460089023562, - 29.970292937430838, - 30.266684175698973, - 30.487541073119512, - 30.73928425440769, - 30.911225717850375, - 30.995681768231915, - 31.132763642110117 - ], - "5._24._0.075": [ - 0.8740059532267968, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004342, - 2.111467924224728, - 2.451192833107241, - 2.7884191120863417, - 3.0449632326772083, - 3.3877382719138542, - 3.619091492976565, - 3.8112165500997244, - 4.142806832922043, - 4.431757166105383, - 5.363369779200566, - 6.64038969892985, - 7.106086261687892, - 7.579779536802278, - 8.097562121580633, - 8.542654926043523, - 8.954172795590582, - 9.333815845796273, - 9.66995589061417, - 9.930855543609805, - 10.238012110819021, - 10.453232658092256, - 10.560855761506765, - 10.737647572071156 - ], - "5._384._0.0875": [ - 3.492724650046691, - 4.056536999397526, - 4.808508296914031, - 6.199917065349385, - 7.996683163712336, - 10.893136179720965, - 14.549965059251054, - 17.69858646111919, - 21.915429381956674, - 24.3678444427113, - 26.059927633029716, - 28.34835255832928, - 29.885833526469767, - 33.21353962319658, - 35.95045394583936, - 36.69078806272622, - 37.352461161108, - 37.99400218008086, - 38.48930146611856, - 38.91206572180314, - 39.27520570791666, - 39.578505304372214, - 39.80463577033268, - 40.06282241003654, - 40.23912110556791, - 40.325632532998625, - 40.465818783908624 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808687904665, - 2.800134106683666, - 3.1432157028185324, - 3.5124021379774466, - 3.8696516110902732, - 4.541465704093968, - 5.10527898866411, - 5.602323668715245, - 6.463155857685603, - 7.186694694273159, - 9.251583130722528, - 11.501071201964994, - 12.193800885194127, - 12.83897657384665, - 13.4871435858579, - 14.000784139986672, - 14.44582539645008, - 14.831950036928395, - 15.15604673577814, - 15.3980186884817, - 15.673076337389045, - 15.860919307521614, - 15.953404546886063, - 16.10378641579022 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.5553235623106128, - 2.8519134161192086, - 3.2001301005001825, - 3.524228435075337, - 4.02274796685743, - 4.8053387974294495, - 5.721422024901963, - 7.460307554350175, - 8.80511608325137, - 9.890398971159826, - 11.568732678639803, - 12.822364522310849, - 15.835457525447797, - 18.518619256405643, - 19.265500167964422, - 19.934094245763017, - 20.58425605469147, - 21.085753547179657, - 21.51349961497687, - 21.879684265099627, - 22.184292773813247, - 22.410931239167212, - 22.66843081749066, - 22.844131573053932, - 22.93047242725706, - 23.070735166691637 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 20.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 5.0, - 6.66666666666667 - ], - [ - 5.0, - 13.333333333333302 - ], - [ - 10.0, - 6.66666666666667 - ], - [ - 10.0, - 13.333333333333302 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351754402567453, - 3.188143168481585, - 3.534491816905175, - 4.122123973415333, - 4.935162221768324, - 6.454970187781035, - 8.791843710939084, - 11.190084875738906, - 14.917532571648044, - 17.315767598224912, - 19.04885539732574, - 21.47293451907933, - 23.138379397715177, - 26.79754688487095, - 29.824139185179995, - 30.64378672665415, - 31.373578512863027, - 32.07969970638596, - 32.62299176900542, - 33.086311594294166, - 33.48324742695662, - 33.8139632766165, - 34.060407095818846, - 34.34131711434135, - 34.53320031743349, - 34.62746272816131, - 34.78049502755753 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615422, - 1.4813847491413075, - 1.8198213217004355, - 2.1114679242247285, - 2.4511928332471684, - 2.78842143364, - 3.045139478206705, - 3.3930545621102266, - 3.638322015952265, - 3.849959457011476, - 4.227458035741884, - 4.563646572595317, - 5.659122706391232, - 7.151203406478846, - 7.690033508176637, - 8.233857216300137, - 8.82439826523121, - 9.328697522092353, - 9.792817563359396, - 10.21893018485081, - 10.594578349118606, - 10.885171786148934, - 11.225954687886416, - 11.463948458749329, - 11.582747298889908, - 11.77763069179007 - ], - "5._384._0.0875": [ - 3.5088591444247412, - 4.138058435447715, - 5.014622066954455, - 6.6509857593762, - 8.744645365413476, - 12.068116601124007, - 16.217696522551673, - 19.771276259666998, - 24.51613879253919, - 27.271043074809004, - 29.170522297398303, - 31.7374995968351, - 33.46122556408392, - 37.1892086820482, - 40.25329767981054, - 41.081909065672946, - 41.822385294840494, - 42.54023982986685, - 43.0943695028361, - 43.56734804975019, - 43.97359066969115, - 44.31287216242885, - 44.56583826929634, - 44.854669691082364, - 45.05190785641764, - 45.14870152608009, - 45.305569271375525 - ], - "5._48._0.075": [ - 1.52684632437314, - 1.8679037053125456, - 2.1622431316564765, - 2.506080869463895, - 2.800136168659578, - 3.1436617280088393, - 3.5219085956668823, - 3.910409506342306, - 4.682866733518197, - 5.345805828167493, - 5.932042332152574, - 6.942573119966385, - 7.785821978681714, - 10.157597880971, - 12.702631524943639, - 13.480495314472357, - 14.203096192952183, - 14.927313740829016, - 15.499798706990768, - 15.99513875079792, - 16.42418288444033, - 16.783799184640564, - 17.052087261617228, - 17.35677324744398, - 17.56476009231505, - 17.66715611627265, - 17.83369734434752 - ], - "5._96._0.075": [ - 2.2092718103274023, - 2.555323565168604, - 2.851918260506528, - 3.200857169267355, - 3.5334840048420872, - 4.080109072859136, - 4.987531662232407, - 6.066470347504326, - 8.100250173673466, - 9.654531957491793, - 10.898613832925436, - 12.808231862196637, - 14.227078522423248, - 17.618521614394414, - 20.623067871267452, - 21.457595102935795, - 22.203965932975148, - 22.929187118758676, - 23.48810082167464, - 23.96466978329137, - 24.372442728859188, - 24.711510944147836, - 24.963771271120553, - 25.250340373123745, - 25.44589005709357, - 25.541997725786633, - 25.698175214245545 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } }, "4_6": { - "1_1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 7.5, - 12.5 - ] - ], - "g": { - "5._192._0.08": [ - 2.835169063879736, - 3.1873015843404118, - 3.5233933817767276, - 4.04347112593589, - 4.688812269514357, - 5.829638775480363, - 7.618711062386892, - 9.545879631457671, - 12.700175649103544, - 14.80557985562017, - 16.35463181054751, - 18.552611251603377, - 20.079481602574923, - 23.464853437176107, - 26.282180703106082, - 27.046487224969788, - 27.726562862123252, - 28.38428434037525, - 28.889829700758668, - 29.32080607740153, - 29.689700086435334, - 29.996781339612355, - 30.22553864176717, - 30.48611941649302, - 30.664098447789407, - 30.751545800050827, - 30.893586595286187 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615428, - 1.481384749141308, - 1.8198213217004362, - 2.1114679242247285, - 2.4511928331780086, - 2.788420106197756, - 3.0450218456835656, - 3.3886325484673203, - 3.6199484751606614, - 3.8091179972025664, - 4.125837573727386, - 4.392216001969537, - 5.21944497506787, - 6.352576688843227, - 6.774267679360054, - 7.210214019180217, - 7.694762492617509, - 8.118597888062192, - 8.5163481569974, - 8.888747952653393, - 9.223067159239987, - 9.485584909059776, - 9.798300229224946, - 10.019828115622106, - 10.1314075144537, - 10.315874510512577 - ], - "5._384._0.0875": [ - 3.4939241705891044, - 4.042376139159062, - 4.730004584643474, - 5.956847446025895, - 7.561939749135504, - 10.252492411299217, - 13.798032639881864, - 16.94854391624387, - 21.26199772306788, - 23.80377410626104, - 25.56642292420247, - 27.956560573434423, - 29.56502209311471, - 33.04464485675703, - 35.90234150052891, - 36.67463335662818, - 37.36415264184675, - 38.03210898000369, - 38.54718820047536, - 38.98671361357117, - 39.36395341023184, - 39.67880805370624, - 39.91352525080563, - 40.18142252819703, - 40.36436966644778, - 40.4541669400695, - 40.59976304723249 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125453, - 2.1622431316564774, - 2.506080869126844, - 2.8001349939060365, - 3.143350108280592, - 3.5135702317802866, - 3.8674029921247235, - 4.498461076243309, - 5.002682413032505, - 5.440020472716026, - 6.19830436015179, - 6.844033818845034, - 8.747254330939768, - 10.916346524259096, - 11.603190755211052, - 12.249863222880634, - 12.905920527990794, - 13.430136458308294, - 13.886974584359862, - 14.28518202873224, - 14.62052845571471, - 14.871397918904234, - 15.15686778639844, - 15.35204188347284, - 15.44824959574672, - 15.604869492837256 - ], - "5._96._0.075": [ - 2.2092718103274023, - 2.5553235637176743, - 2.851915435501614, - 3.2003353714240528, - 3.5254023511655435, - 4.0164519999031825, - 4.740304823037769, - 5.550413077897991, - 7.092458734889403, - 8.31712922128038, - 9.328098640118423, - 10.928876814882996, - 12.150044282549896, - 15.157810880555951, - 17.90233640122202, - 18.67426472459367, - 19.366815359375206, - 20.041421175016218, - 20.562029604627444, - 21.006219962014345, - 21.386311247017648, - 21.70226155840685, - 21.937255118766178, - 22.204008393193398, - 22.386009382443966, - 22.47547873234593, - 22.62093745768087 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 7.5, - 8.33333333333333 - ], - [ - 7.5, - 16.6666666666667 - ] - ], - "g": { - "5._192._0.08": [ - 2.835165637745978, - 3.187031004920172, - 3.5213455558987583, - 4.04077002472627, - 4.709094933661963, - 5.9397571653195405, - 7.886569774001082, - 9.966217195737869, - 13.336955682472075, - 15.574546869355562, - 17.21728934446072, - 19.543960763060234, - 21.158193581332558, - 24.732004967332813, - 27.702113233001022, - 28.507422606015847, - 29.22380074155503, - 29.916471533851947, - 30.44873706343993, - 30.902474918784282, - 31.29079834856608, - 31.61402027485428, - 31.85480742404202, - 32.12909185401532, - 32.316444440809725, - 32.4085049927282, - 32.558062843012884 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615422, - 1.4813847491413075, - 1.8198213217004355, - 2.1114679242247285, - 2.451192833122094, - 2.788419317776049, - 3.044973410400212, - 3.387596151052741, - 3.6172472014068964, - 3.8056265429874867, - 4.125801245601284, - 4.401555301475566, - 5.2877137307415625, - 6.5211491195614455, - 6.9786112476398925, - 7.44932897879243, - 7.969992053166164, - 8.4231498751828, - 8.846768738518469, - 9.241891415750468, - 9.595401420616941, - 9.872253209342075, - 10.201049366351974, - 10.433363095692172, - 10.550200789434614, - 10.743121382506292 - ], - "5._384._0.0875": [ - 3.49141769162688, - 4.040805689112824, - 4.757581974520725, - 6.085170441500388, - 7.831917596789576, - 10.730815514000996, - 14.514874518438509, - 17.861096821046182, - 22.430339385499, - 25.1191715834642, - 26.982793909689924, - 29.508376163153148, - 31.207298118566275, - 34.88049845170055, - 37.895643148990864, - 38.710314794884695, - 39.43760304149092, - 40.14207816081089, - 40.68525272536578, - 41.148751032018865, - 41.546543938763655, - 41.87853900612284, - 42.12603987683288, - 42.408531235220494, - 42.60145443565442, - 42.696153232686825, - 42.84971069989829 - ], - "5._48._0.075": [ - 1.52684632437314, - 1.8679037053125456, - 2.1622431316564765, - 2.506080868861052, - 2.800134290454979, - 3.1432354726203915, - 3.51190060554169, - 3.863742082655698, - 4.508829254117572, - 5.044452994612255, - 5.517626529918412, - 6.344238235003312, - 7.047455175712933, - 9.100797592427828, - 11.413226723166163, - 12.141122151960708, - 12.824770202716554, - 13.516993937957368, - 14.069013012642007, - 14.549548931437473, - 14.967861541708452, - 15.319748950750569, - 15.582826023695587, - 15.881958287025466, - 16.08638852287525, - 16.18714731681782, - 16.3511986130018 - ], - "5._96._0.075": [ - 2.2092718103274, - 2.5553235626058286, - 2.8519138309853336, - 3.2001558076387058, - 3.5237610197869325, - 4.013088819770735, - 4.761170924765721, - 5.632630481947888, - 7.3120769192705035, - 8.63887556809196, - 9.727522386836293, - 11.440606831609077, - 12.741563835191926, - 15.930461612171387, - 18.828179317707146, - 19.64175185124222, - 20.371171339192596, - 21.0812550544668, - 21.628875159549747, - 22.09599395912269, - 22.49554405754589, - 22.827564430163505, - 23.07449349295895, - 23.35476132247166, - 23.545989462978433, - 23.640002923878303, - 23.79288319524922 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 7.5, - 6.25 - ], - [ - 7.5, - 12.5 - ], - [ - 7.5, - 18.75 - ] - ], - "g": { - "5._192._0.08": [ - 2.835162784390543, - 3.1868967820749936, - 3.5217514824310125, - 4.054074677167511, - 4.762607837367495, - 6.0904139213023925, - 8.187755469825778, - 10.411740806993643, - 13.99130357982898, - 16.358531401795247, - 18.093912091281737, - 20.548678289655992, - 22.25025023371322, - 26.013369087266817, - 29.13765792124084, - 29.984425071776105, - 30.737535147503195, - 31.465594486520484, - 32.02493824491679, - 32.50174617408865, - 32.90977087723654, - 33.24936461057747, - 33.50235332883448, - 33.79053735312961, - 33.98739577196025, - 34.08413360618185, - 34.24130967626709 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.481384749141308, - 1.8198213217004335, - 2.1114679242247276, - 2.4511928330720996, - 2.788418639033064, - 3.0449394232254496, - 3.3874623216188593, - 3.6187036963320653, - 3.8111243993123245, - 4.144659034390168, - 4.437126812337527, - 5.3912658932545074, - 6.721517052618911, - 7.212693224507756, - 7.715999858090263, - 8.270645057972233, - 8.751585383010926, - 9.199949730714154, - 9.616992043917447, - 9.989175361821827, - 10.28008290694917, - 10.624789284455106, - 10.867865815354655, - 10.989982153193427, - 11.191441659947373 - ], - "5._384._0.0875": [ - 3.4923147089092814, - 4.057982605657056, - 4.820658579049535, - 6.2539674071851765, - 8.135460753866882, - 11.231874064936468, - 15.247049862187206, - 18.78600677326706, - 23.609709219876972, - 26.445565056258655, - 28.410330390375155, - 31.071837727105454, - 32.861661248125294, - 36.72971653081415, - 39.90359362353065, - 40.76101777623556, - 41.52641714171467, - 42.26775194658865, - 42.839293365602494, - 43.326996539108706, - 43.74554458393207, - 44.09485045243022, - 44.35526123952157, - 44.65249031751613, - 44.85548639023518, - 44.95513359014942, - 45.116726611627065 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125427, - 2.1622431316564756, - 2.5060808686235485, - 2.800133683566298, - 3.1431645958860503, - 3.512038352572462, - 3.869568365210148, - 4.54732981377982, - 5.122602794552038, - 5.634005564993292, - 6.527406573667282, - 7.285110440565232, - 9.480102273662496, - 11.930620554723909, - 12.698640623236782, - 13.418803687986525, - 14.14698055813237, - 14.72682685435799, - 15.231176139406962, - 15.669786218827426, - 16.038441893725267, - 16.313927002294434, - 16.62699042269801, - 16.84088045649392, - 16.946295382443505, - 17.11795171920887 - ], - "5._96._0.075": [ - 2.2092718103274023, - 2.55532356161337, - 2.8519124677149166, - 3.2000551202234337, - 3.5238644023306476, - 4.023146277567882, - 4.815011082791614, - 5.754882081893816, - 7.566872669133539, - 8.990039049258957, - 10.152335468739668, - 11.973218581175017, - 13.351683840656754, - 16.719367895921415, - 19.770422909636817, - 20.62595545421694, - 21.39260395294877, - 22.13858801218981, - 22.713603977054287, - 23.203999004757666, - 23.623331025575396, - 23.971706990791834, - 24.230788058809612, - 24.524822947053536, - 24.725451355397475, - 24.82409349740927, - 24.98452928916188 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 25.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 25.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 15.0, - 20.0 - ], - [ - 5.0, - 6.25 - ], - [ - 5.0, - 12.5 - ], - [ - 5.0, - 18.75 - ], - [ - 10.0, - 6.25 - ], - [ - 10.0, - 12.5 - ], - [ - 10.0, - 18.75 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351741863953843, - 3.1882634860179278, - 3.5373525772384933, - 4.143178619535997, - 4.997873255469941, - 6.6181007599089305, - 9.147507493669872, - 11.788925556347044, - 15.983003957059116, - 18.735749624593417, - 20.74783290610567, - 23.586443708142955, - 25.550225127186724, - 29.882884304659832, - 33.47196535538805, - 34.443817654851216, - 35.30779285993037, - 36.14269966705547, - 36.78383256394082, - 37.33032778677323, - 37.79787605271334, - 38.1869417278772, - 38.47679957411788, - 38.806983795600395, - 39.03256257196661, - 39.14343025610068, - 39.323615177791915 - ], - "5._24._0.075": [ - 0.8740059532267969, - 1.1958031759615408, - 1.4813847491413077, - 1.8198213217004344, - 2.1114679242247263, - 2.4511928332025716, - 2.788421045445075, - 3.045140860374883, - 3.3940755487378347, - 3.6432398297140307, - 3.8610449148535997, - 4.2542898782265555, - 4.607822741658699, - 5.7720872748730265, - 7.380226202176751, - 7.967655649728444, - 8.564202195104356, - 9.216617922115507, - 9.777946051603452, - 10.298396701216113, - 10.779623483887729, - 11.206747090891207, - 11.539169120387944, - 11.931068347652245, - 12.206194492585936, - 12.344077955523993, - 12.571134668572862 - ], - "5._384._0.0875": [ - 3.512789010960961, - 4.163451624307049, - 5.086773094561928, - 6.834185784646973, - 9.10204083535811, - 12.77090544821971, - 17.46833428022939, - 21.581756267580705, - 27.16764270786367, - 30.44480170085468, - 32.713384712789185, - 35.78351460181108, - 37.84676687623272, - 42.301402584873564, - 45.95346938520776, - 46.93972560289612, - 47.8199863290366, - 48.67242587481501, - 49.329486457214344, - 49.89016150076515, - 50.371286000968816, - 50.77278648399149, - 51.07212106471546, - 51.4137839215366, - 51.64714700092887, - 51.7617111293263, - 51.94752403989266 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125405, - 2.162243131656477, - 2.5060808692572922, - 2.8001358154783684, - 3.1436863472395316, - 3.5240022264436335, - 3.9220804439307484, - 4.730258740892413, - 5.432829768144059, - 6.058580233819141, - 7.144749451428224, - 8.05830447060512, - 10.661430492794914, - 13.517554506707274, - 14.40445887904231, - 15.23352566309754, - 16.069269744932615, - 16.73263321519266, - 17.308570208967943, - 17.80832298383912, - 18.22758388224634, - 18.540559560146498, - 18.895779895029815, - 19.138328495377795, - 19.257856438480104, - 19.452568052732374 - ], - "5._96._0.075": [ - 2.2092718103274076, - 2.5553235643312524, - 2.851917558322094, - 3.2009160746228895, - 3.5355023118367317, - 4.097263243809056, - 5.050426046611206, - 6.19906453105728, - 8.392461533733863, - 10.092678009453508, - 11.46854148303462, - 13.60543954747809, - 15.213058541101228, - 19.114370603926062, - 22.62612978922212, - 23.608107835755977, - 24.487045971539757, - 25.34141446856395, - 25.99922684908182, - 26.559997085792183, - 27.039178930616504, - 27.437065237530273, - 27.73293787346251, - 28.06866472947046, - 28.297760831655744, - 28.41041890046813, - 28.593726228942344 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } + }, + "9_9": { } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index 10cc18b085..19ad73ee1f 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -3391,7 +3391,7 @@ def self.set_gshp_assumptions(heat_pump, weather) end def self.valid_borefield_configs - valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], + valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 40], # HPXML::GeothermalLoopBorefieldConfigurationZonedRectangle => [], HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => [8, 10], # HPXML::GeothermalLoopBorefieldConfigurationC => [], diff --git a/tasks.rb b/tasks.rb index a0ad246fbe..20609c463a 100644 --- a/tasks.rb +++ b/tasks.rb @@ -2223,7 +2223,7 @@ def download_g_functions FileUtils.mkdir(g_functions_dir) if !File.exist?(g_functions_dir) filepath = File.join(g_functions_dir, 'g-function_library_1.0') - if !File.exist?(filepath) + if !File.exist?(filepath) # To check: Is it OK to remove this 'if' statement (to auto-overwrite the 'g-function_library_1.0' folder with each download)? require 'tempfile' tmpfile = Tempfile.new('functions') @@ -2240,6 +2240,7 @@ def download_g_functions end end + num_configs_actual = process_g_functions(filepath) puts "#{num_configs_actual} config files are available in #{g_functions_dir}." diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index c24aaaf3d3..d257e9b441 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2434,6 +2434,14 @@ "geothermal_loop_boreholes_or_trenches_count": 5, "geothermal_loop_borefield_configuration": "L" }, + "sample_files/base-hvac-library-test-case.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_borefield_configuration": "Rectangle", + "geothermal_loop_boreholes_or_trenches_count": 40, + "geothermal_loop_boreholes_or_trenches_length": 492.125, + "geothermal_loop_boreholes_or_trenches_spacing": 22.96588, + "geothermal_loop_boreholes_or_trenches_diameter": 6.2992126 + }, "sample_files/base-hvac-ground-to-air-heat-pump.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_type": "none", diff --git a/workflow/sample_files/base-hvac-library-test-case.xml b/workflow/sample_files/base-hvac-library-test-case.xml new file mode 100644 index 0000000000..8778eac399 --- /dev/null +++ b/workflow/sample_files/base-hvac-library-test-case.xml @@ -0,0 +1,568 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + 40 + 492.125 + 22.96588 + 6.2992126 + + + Rectangle + + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file From 95fdc8896e3883916eeebd11556596cde8d3964f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 13 Jul 2023 19:12:52 +0000 Subject: [PATCH 067/217] Latest results. --- workflow/tests/base_results/results.csv | 1 + workflow/tests/base_results/results_bills.csv | 1 + 2 files changed, 2 insertions(+) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 64a8e99dcc..c2d604b9ed 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -314,6 +314,7 @@ base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.73 base-hvac-install-quality-ground-to-air-heat-pump.xml,41.358,41.358,41.358,41.358,0.0,0.0,0.0,0.0,0.0,0.0,6.658,0.379,0.0,0.0,2.92,0.961,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.424,0.0,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3442.3,2724.4,21.792,15.702,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.955,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.235,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-library-test-case.xml,39.021,39.021,39.021,39.021,0.0,0.0,0.0,0.0,0.0,0.0,5.056,0.337,0.0,0.0,2.19,0.998,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.426,0.0,12.642,9.233,0.614,0.0,0.0,0.0,0.0,3117.3,2452.1,20.464,14.58,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.931,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.73,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,0.0,12.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,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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 864aa5647a..5e7da86be9 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -314,6 +314,7 @@ base-hvac-install-quality-furnace-gas-only.xml,1493.87,144.0,1028.54,0.0,1172.54 base-hvac-install-quality-ground-to-air-heat-pump.xml,1521.26,144.0,1377.26,0.0,1521.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1276.65,144.0,1132.65,0.0,1276.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1498.26,144.0,1354.26,0.0,1498.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-library-test-case.xml,1443.42,144.0,1299.42,0.0,1443.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1255.32,144.0,1111.32,0.0,1255.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ductless.xml,1250.66,144.0,1106.66,0.0,1250.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1232.78,144.0,1088.78,0.0,1232.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 234c8a37f211b665d14372e2647516e6f8ecbdda Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 14 Jul 2023 15:57:50 +0000 Subject: [PATCH 068/217] Latest results. --- workflow/tests/base_results/results.csv | 985 ++++++++++++------------ 1 file changed, 493 insertions(+), 492 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 1532674f5e..ba5ed37682 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -1,492 +1,493 @@ -HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: 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: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),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 Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),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) -base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,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,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,22.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-portable.xml,34.583,34.583,33.262,33.262,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.604,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,1.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,1.18,0.0,30.514,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.1,9.476,14.236,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.307,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.344,9.575,1.88,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-ief-whole-home.xml,34.611,34.611,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.655,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,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15,0.0,30.49,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2767.0,9.495,14.236,0.0,1.77,1.652,0.0,0.0,0.392,5.039,-4.911,0.0,0.0,0.0,1.312,-0.373,1.058,0.077,0.399,0.0,0.032,-4.78,-0.772,0.0,0.548,-0.009,0.0,0.0,0.206,1.933,17.103,0.0,0.0,0.0,1.819,-0.368,-0.332,-1.9,-0.091,0.0,0.344,9.532,1.875,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-multiple.xml,34.574,34.574,33.184,33.184,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.813,1.88,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.541,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,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.452,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.3,9.552,14.236,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.035,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.344,9.512,1.873,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier.xml,34.548,34.548,33.243,33.243,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.818,1.882,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.593,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.174,0.0,30.467,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.0,9.548,14.236,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.344,9.498,1.87,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.167,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,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,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,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,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,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,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,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,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,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 -base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,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,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,67.293,67.293,40.782,40.782,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.921,0.983,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,0.0,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.831,0.0,16.409,9.18,0.614,0.0,0.0,0.0,0.0,2378.3,3719.8,26.547,20.758,4.552,1.164,5.544,0.518,7.651,0.635,15.399,-16.987,0.0,0.0,0.0,8.521,-0.082,7.083,0.0,0.73,0.0,3.11,-10.232,-3.183,0.005,0.021,-0.566,-0.053,2.687,-0.029,-3.027,17.676,0.0,0.0,0.0,-6.349,-0.075,-1.69,-4.153,-0.166,0.0,0.937,8.933,2.568,1354.8,997.6,11399.6,2521.8,36000.0,24000.0,0.0,6.8,91.76,38184.0,7494.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18712.0,182.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,37.385,37.385,33.168,33.168,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.236,1.963,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,0.0,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.893,0.0,31.745,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3190.7,13.54,17.969,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.366,9.113,1.789,1354.8,997.6,9989.0,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,22162.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,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,0.0,22.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,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.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30483.0,4824.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.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,0.0,22.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,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,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,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,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,0.0,60.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,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.626,36.626,24.815,24.815,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.087,0.0,0.0,1.608,0.207,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,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,0.0,3.054,9.538,0.73,0.0,0.0,0.0,0.0,1572.5,2015.2,7.667,5.819,0.0,2.94,3.649,0.0,0.0,0.582,1.416,-1.582,0.0,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-4.25,-1.186,0.0,-0.922,-0.231,0.0,0.0,-0.054,-0.234,1.305,0.0,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.559,3.423,0.841,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-multiple.xml,31.845,31.845,25.255,25.255,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,2.093,0.314,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,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,0.0,4.965,9.538,0.61,0.0,0.0,0.0,0.0,1562.3,2239.8,9.397,10.552,0.0,-0.004,3.294,0.0,0.0,1.383,4.001,-4.202,0.0,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-6.296,-1.142,0.0,0.0,-0.445,0.0,0.0,-0.418,-0.571,3.958,0.0,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.481,5.704,0.884,1354.8,997.6,11399.5,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,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.799,49.799,24.82,24.82,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,1.466,0.173,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,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,0.0,2.504,9.538,0.818,0.0,0.0,0.0,0.0,1579.9,2256.3,11.078,8.452,0.0,5.364,4.204,0.0,0.0,0.788,1.403,-1.699,0.0,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-4.485,-1.249,0.0,-1.186,-0.054,0.0,0.0,-0.054,-0.122,1.188,0.0,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.528,3.187,0.778,1354.8,997.6,11399.5,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,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.041,26.041,24.679,24.679,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.632,0.213,9.742,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,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,0.0,3.156,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2015.1,3.416,5.821,0.0,0.353,3.152,0.0,0.0,0.376,1.484,-1.49,0.0,0.0,0.375,0.0,-0.006,1.698,0.0,0.0,0.0,0.387,-4.015,-1.12,0.0,-0.831,-0.466,0.0,0.0,-0.076,-0.345,1.397,0.0,0.0,-0.847,0.0,-0.002,-0.394,-0.388,0.0,0.0,0.576,3.657,0.907,1354.8,997.6,11399.5,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.343,26.343,25.227,25.227,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.109,0.333,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,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,0.0,5.133,9.538,0.587,0.0,0.0,0.0,0.0,1559.4,1834.6,3.707,4.327,0.0,-0.003,3.197,0.0,0.0,0.368,1.519,-1.394,0.0,0.0,-0.002,0.0,-0.063,1.76,0.0,0.0,0.0,0.321,-3.692,-1.021,0.0,-0.001,-0.556,0.0,0.0,-0.044,-0.506,1.493,0.0,0.0,-0.0,0.0,-0.059,-0.532,-0.512,0.0,0.0,0.913,3.98,1.006,1354.8,997.6,11399.5,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,6278.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.841,26.841,26.284,26.284,0.557,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.967,0.547,9.684,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.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,0.514,0.0,8.85,9.538,0.575,0.0,0.0,0.0,0.0,1703.9,1962.7,3.256,6.985,0.0,-0.013,2.505,0.0,0.0,0.42,4.041,-2.559,0.0,0.0,-0.009,0.0,-0.344,0.994,0.0,0.68,0.0,0.0,-4.559,-0.773,0.0,-0.008,-1.074,0.0,0.0,-0.048,-1.702,5.598,0.0,0.0,-0.004,0.0,-0.334,-0.402,-1.335,-0.391,0.0,0.0,7.407,1.254,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 -base-bldgtype-multifamily-residents-1.xml,19.898,19.898,18.595,18.595,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.363,0.394,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,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,0.0,6.696,4.213,0.585,0.0,0.0,0.0,0.0,1104.0,1602.9,3.916,6.507,0.0,-0.014,2.619,0.0,0.0,0.418,4.236,-3.104,0.0,0.0,-0.012,0.0,-0.305,1.3,0.0,0.75,0.0,0.0,-3.826,-0.937,0.0,-0.01,-0.765,0.0,0.0,-0.014,-1.207,5.053,0.0,0.0,-0.007,0.0,-0.297,-0.396,-1.194,-0.272,0.0,0.0,4.803,1.089,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.394,27.394,26.696,26.696,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.0,3.07,0.825,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1670.4,2088.4,3.455,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.149,28.149,27.404,27.404,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,3.656,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1695.4,2322.2,3.602,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.038,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,8647.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.679,27.679,27.017,27.017,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.346,0.825,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.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.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1680.5,2160.3,3.454,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,32.821,32.821,32.278,32.278,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,8.52,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1940.2,3671.7,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.766,27.766,27.223,27.223,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,3.465,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1688.5,2269.4,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1509.2,1333.8,3.459,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.356,23.356,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1522.4,1334.7,3.605,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.749,22.749,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1534.7,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.28,23.28,22.878,22.878,0.402,0.0,0.0,0.0,0.0,0.0,0.129,0.064,0.0,0.0,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.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1648.9,1334.7,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.303,23.303,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1536.8,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1528.0,1334.7,3.537,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.649,26.649,26.649,26.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.054,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1670.9,2071.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.327,27.327,27.327,27.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.637,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1702.6,2322.2,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922,26.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1681.0,2152.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.969,27.969,27.969,27.969,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.818,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.9,1820.0,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.708,32.708,27.342,27.342,5.366,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.574,0.439,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,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,0.0,7.061,9.538,0.588,0.0,0.0,0.0,0.0,1711.5,2147.3,4.167,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,4.308,-3.183,0.0,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-5.414,-0.952,0.0,-0.009,-0.693,0.0,0.0,-0.005,-1.118,4.974,0.0,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,6.564,1.074,1354.8,997.6,11399.5,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent.xml,31.03,31.03,27.217,27.217,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,2.492,0.416,9.705,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,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,0.0,6.838,9.538,0.598,0.0,0.0,0.0,0.0,1638.9,2132.2,5.993,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,4.232,-3.684,0.0,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-5.86,-1.052,0.0,-0.008,-0.511,0.0,0.0,-0.01,-0.941,4.473,0.0,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,6.129,0.974,1354.8,997.6,11399.5,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-pv.xml,26.899,2.451,26.223,1.775,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.901,30.901,17.531,17.531,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,1052.2,1525.8,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater.xml,29.805,29.805,16.435,16.435,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,999.5,1473.1,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.347,37.347,37.347,37.347,0.0,0.0,0.0,0.0,0.0,0.0,5.339,0.369,0.0,0.0,2.587,1.083,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.882,0.0,13.353,9.232,0.614,2.924,0.0,0.0,0.0,3216.9,2129.8,20.987,15.084,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.099,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.826,8.485,2.01,1354.8,997.6,11413.0,2618.9,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.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,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,0.0,18.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.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,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,0.0,24.587,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1066.9,770.9,9019.2,2069.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,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,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.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,388.3,286.5,3205.6,735.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.67,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,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,0.0,23.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,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,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,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.89,0.0,13.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,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-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,1075.0,777.3,9103.8,2089.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.106,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.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.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,472.0,347.5,3998.4,917.5,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,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,0.0,22.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,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,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,0.0,23.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,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,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,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,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,0.0,22.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,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,17.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,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,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,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,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,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,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,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,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,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,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,0.0,25.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,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,48000.0,36000.0,0.0,6.8,91.76,43789.0,7646.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,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,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,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,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,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,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,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,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 -base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.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,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 -base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,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,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,67.648,67.648,29.356,29.356,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.632,0.0,0.0,3.58,0.646,9.367,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,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.866,0.0,10.726,9.342,0.621,0.0,0.0,0.0,0.0,1766.6,3491.4,29.153,20.79,0.0,3.477,3.648,0.0,0.0,0.67,9.92,-12.906,0.0,0.0,29.048,0.0,-0.198,2.052,0.0,0.787,0.0,7.954,-7.487,-1.578,0.0,0.424,-0.063,0.0,0.0,0.096,0.383,10.935,0.0,0.0,-7.934,0.0,-0.193,-0.259,-1.855,-0.085,0.0,2.655,5.717,1.069,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,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,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,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,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,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,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,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,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,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,22.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,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,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,22.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,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,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,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,40.753,40.753,29.446,29.446,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.84,0.724,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,0.0,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,11.955,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2605.0,13.185,12.044,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.304,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.076,6.354,1.189,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,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 -base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,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,22.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,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,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,0.0,40.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,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.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,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,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,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,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,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,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,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,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-ambient.xml,48.007,48.007,30.285,30.285,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.292,0.0,0.0,4.61,0.898,9.354,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,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.601,0.0,15.077,9.342,0.606,0.0,0.0,0.0,2.0,1740.7,3397.3,20.514,21.089,0.0,3.835,3.846,0.0,0.0,0.76,10.831,-11.429,0.0,0.0,10.226,0.0,-0.403,2.065,0.0,0.789,0.0,3.979,-6.811,-1.44,0.0,-0.046,-0.527,0.0,0.0,0.028,-0.75,12.412,0.0,0.0,-3.67,0.0,-0.396,-0.402,-2.391,-0.154,0.0,3.577,6.38,1.207,1354.8,997.6,11399.5,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,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,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,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 -base-foundation-belly-wing-no-skirt.xml,49.694,49.694,29.445,29.445,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,3.895,0.731,9.354,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,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.964,0.0,12.009,9.342,0.607,0.0,0.0,0.0,0.0,1753.6,3211.6,24.176,17.286,0.0,3.981,5.371,0.0,0.0,0.753,8.835,-11.05,0.0,0.0,10.267,0.0,-0.35,2.069,0.0,0.794,0.0,6.238,-6.883,-1.459,0.0,0.302,-0.601,0.0,0.0,0.038,-0.188,9.522,0.0,0.0,-3.443,0.0,-0.343,-0.395,-2.184,-0.144,0.0,2.215,6.308,1.188,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-belly-wing-skirt.xml,49.322,49.322,29.453,29.453,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.328,0.0,0.0,3.906,0.734,9.354,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,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.608,0.0,12.062,9.342,0.607,0.0,0.0,0.0,0.0,1752.3,3180.5,24.023,17.245,0.0,3.987,5.379,0.0,0.0,0.753,8.843,-11.04,0.0,0.0,9.969,0.0,-0.345,2.068,0.0,0.793,0.0,6.125,-6.873,-1.457,0.0,0.296,-0.61,0.0,0.0,0.036,-0.211,9.532,0.0,0.0,-3.365,0.0,-0.338,-0.399,-2.199,-0.146,0.0,2.221,6.318,1.191,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-complex.xml,78.103,78.103,37.261,37.261,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.674,0.0,0.0,5.116,1.028,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.25,0.0,17.361,9.233,0.617,0.0,0.0,0.0,2.0,2171.5,3845.1,33.417,21.451,0.0,3.431,3.657,0.52,19.54,0.65,10.564,-12.717,0.0,0.0,0.0,8.705,-0.111,6.102,0.0,0.739,0.0,8.38,-9.124,-2.557,0.0,0.048,-0.359,-0.044,3.767,-0.003,-1.508,11.564,0.0,0.0,0.0,-4.519,-0.103,-1.227,-3.259,-0.137,0.0,3.71,7.657,1.952,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,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,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,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,0.0,18.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,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 -base-foundation-multiple.xml,42.738,42.738,29.706,29.706,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.218,0.812,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,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,0.0,13.443,9.285,0.693,0.0,0.0,0.0,0.0,1723.6,2714.9,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,10.857,-11.246,0.0,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-4.636,-1.429,0.0,-0.098,-0.674,0.0,0.0,-0.018,-1.077,12.595,0.0,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.65,4.23,1.218,1354.8,997.6,11399.4,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,14275.0,222.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-slab.xml,39.954,39.954,29.299,29.299,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.9,0.74,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,0.0,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.972,0.0,12.215,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2611.5,12.703,12.011,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.078,6.379,1.193,1354.8,997.6,11399.5,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,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-above-grade.xml,43.94,43.94,29.852,29.852,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.308,0.833,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,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,0.0,13.834,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.0,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,10.912,-11.281,0.0,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.069,12.56,0.0,0.0,-0.506,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.93,4.211,1.213,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,14270.0,226.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-assembly-r.xml,41.196,41.196,29.243,29.243,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.197,0.0,0.0,3.847,0.722,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,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,0.0,11.864,9.285,0.71,0.0,0.0,0.0,0.0,1718.3,2855.2,14.652,12.883,0.0,3.994,3.856,0.0,0.0,0.759,10.855,-11.125,0.0,0.0,4.456,0.0,-0.343,2.583,0.0,0.0,0.0,1.82,-4.614,-1.421,0.0,-0.074,-0.626,0.0,0.0,0.009,-1.062,12.715,0.0,0.0,-2.011,0.0,-0.339,-0.564,-2.512,0.0,0.0,1.12,4.251,1.226,1354.8,997.6,11399.5,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,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-wall-insulation.xml,48.948,48.948,28.952,28.952,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.558,0.653,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,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,0.0,10.743,9.285,0.64,0.0,0.0,0.0,0.0,1726.7,2483.3,16.597,11.56,0.0,3.723,3.619,0.0,0.0,0.633,9.712,-12.351,0.0,0.0,14.373,0.0,-0.047,2.46,0.0,0.0,0.0,2.599,-4.778,-1.481,0.0,0.063,-0.441,0.0,0.0,-0.015,-0.972,11.49,0.0,0.0,-2.769,0.0,-0.045,-0.521,-2.405,0.0,0.0,1.302,4.088,1.166,1354.8,997.6,11399.5,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,15218.0,128.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement.xml,42.817,42.817,29.736,29.736,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,4.234,0.816,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,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,0.0,13.513,9.285,0.703,0.0,0.0,0.0,0.0,1723.8,2921.5,15.45,14.318,0.0,3.994,3.853,0.0,0.0,0.749,10.805,-11.235,0.0,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-4.634,-1.429,0.0,-0.077,-0.629,0.0,0.0,-0.0,-1.111,12.605,0.0,0.0,-0.673,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.724,4.231,1.218,1354.8,997.6,11399.5,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,14277.0,222.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,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,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,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,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,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,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,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,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-walkout-basement.xml,64.814,64.814,36.328,36.328,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,4.532,0.884,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,0.0,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.677,0.0,14.89,9.233,0.615,0.0,0.0,0.0,0.0,2125.9,3513.1,26.787,19.805,0.0,3.523,3.688,0.52,7.364,0.646,11.292,-12.794,0.0,0.0,0.0,10.155,-0.066,6.639,0.0,0.728,0.0,6.073,-8.935,-2.506,0.0,-0.099,-0.515,-0.06,1.48,-0.031,-2.074,12.046,0.0,0.0,0.0,-3.677,-0.061,-1.529,-3.357,-0.16,0.0,3.264,7.844,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,0.0,15.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.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,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,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.645,42.645,42.645,42.645,0.0,0.0,0.0,0.0,0.0,0.0,9.823,1.762,0.591,0.052,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,0.0,23.588,0.643,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7296.6,1637.3,25.567,0.0,0.0,3.452,3.637,0.512,7.485,0.629,10.516,-12.551,0.0,0.0,0.0,8.112,-0.066,4.805,0.0,0.728,0.0,7.372,-8.907,-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,1354.8,997.6,11399.5,2615.8,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.145,46.145,46.145,46.145,0.0,0.0,0.0,0.0,0.0,0.0,9.718,1.011,0.443,0.024,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.466,13.102,9.233,0.614,0.0,0.0,0.0,0.0,6954.5,3209.9,24.358,15.771,0.0,3.499,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.018,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,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,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,0.0,21.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.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,25971.0,25971.0,11194.0,51.62,90.68,11194.0,4365.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.698,44.698,44.698,44.698,0.0,0.0,0.0,0.0,0.0,0.0,9.125,0.912,0.046,0.006,3.198,0.971,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.362,0.052,11.97,9.233,0.614,0.0,0.0,0.0,0.0,6628.4,2912.2,22.625,13.15,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.864,-8.907,-2.499,0.0,0.037,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.05,7.871,2.01,1354.8,997.6,11399.5,2615.8,65908.0,65908.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,24186.0,24186.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.554,41.554,41.554,41.554,0.0,0.0,0.0,0.0,0.0,0.0,7.131,0.629,0.416,0.017,2.294,0.626,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.433,13.325,9.233,0.614,0.0,0.0,0.0,0.0,6922.4,2762.7,24.33,16.718,0.0,3.453,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.249,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.431,7.871,2.01,1354.8,997.6,11399.5,2615.8,33416.0,33416.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.544,40.544,40.544,40.544,0.0,0.0,0.0,0.0,0.0,0.0,6.849,0.507,0.049,0.005,2.124,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.035,0.054,12.091,9.233,0.614,0.0,0.0,0.0,0.0,6732.2,2521.0,23.383,13.585,0.0,3.588,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.557,-8.907,-2.499,0.0,0.034,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.172,7.871,2.01,1354.8,997.6,11399.5,2615.8,65567.0,65567.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.171,51.171,37.619,37.619,13.551,0.0,0.0,0.0,0.0,0.0,4.154,0.37,0.0,0.138,2.31,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.722,11.262,14.452,9.233,0.615,0.0,0.0,2.0,0.0,3194.1,2672.7,23.547,17.679,0.0,3.375,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.35,-8.918,-2.502,0.0,-0.058,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.697,7.861,2.008,1354.8,997.6,11399.5,2615.8,33628.0,33628.0,23640.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.458,54.458,37.825,37.825,16.632,0.0,0.0,0.0,0.0,0.0,4.006,0.353,0.0,0.501,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,28.514,13.807,14.556,9.233,0.614,0.0,0.0,2.0,0.0,3328.2,2622.0,30.614,17.514,0.0,3.251,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.289,-0.061,4.804,0.0,0.728,0.0,12.284,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.063,-0.165,0.0,3.704,7.87,2.01,1354.8,997.6,11399.5,2615.8,33628.0,33628.0,32235.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,26367.0,26367.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.158,41.158,41.158,41.158,0.0,0.0,0.0,0.0,0.0,0.0,7.314,0.748,0.123,0.008,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.792,0.131,14.556,9.233,0.614,0.0,0.0,0.0,0.0,7031.0,2622.0,24.672,17.514,0.0,3.37,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.48,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.703,7.87,2.01,1354.8,997.6,11399.5,2615.8,33628.0,33628.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.898,40.898,40.898,40.898,0.0,0.0,0.0,0.0,0.0,0.0,7.281,0.641,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.771,0.057,13.49,9.233,0.614,0.0,0.0,0.0,0.0,6896.7,2561.9,23.811,16.273,0.0,3.447,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.401,-8.907,-2.499,0.0,-0.02,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.608,7.871,2.01,1354.8,997.6,11399.5,2615.8,50423.0,50423.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-elec-only.xml,48.203,48.203,48.203,48.203,0.0,0.0,0.0,0.0,0.0,0.0,17.594,0.191,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.2,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.331,55.331,36.429,36.429,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2096.7,3330.0,16.459,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,23640.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-only.xml,49.354,49.354,30.642,30.642,18.712,0.0,0.0,0.0,0.0,0.0,0.0,0.224,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,18.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2057.9,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20155.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,0.0,17.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.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20283.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.538,48.538,48.538,48.538,0.0,0.0,0.0,0.0,0.0,0.0,9.911,1.779,0.593,0.052,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.645,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7326.8,3330.1,25.567,17.819,0.0,3.446,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.439,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,31147.0,19922.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.275,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.283,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.275,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.283,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.666,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,26139.0,26139.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.666,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-evap-cooler-furnace-gas.xml,56.319,56.319,32.044,32.044,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,0.0,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,1915.1,25.1,11.075,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,32235.0,13458.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-elec-only.xml,53.605,53.605,53.605,53.605,0.0,0.0,0.0,0.0,0.0,0.0,22.563,0.625,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,0.0,22.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8622.9,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.875,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2124.3,2947.8,24.237,18.493,0.0,3.51,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.863,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,32235.0,20155.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,32235.0,20283.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.324,34.324,34.324,34.324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.874,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.707,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2888.0,0.0,17.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.164,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.697,36.697,36.697,36.697,0.0,0.0,0.0,0.0,0.0,0.0,5.486,0.794,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,0.0,21.07,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3421.0,1637.3,23.54,0.0,0.0,3.55,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.785,-8.907,-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,1354.8,997.6,11399.5,2615.8,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.97,39.97,39.97,39.97,0.0,0.0,0.0,0.0,0.0,0.0,5.504,0.688,0.0,0.0,2.527,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.125,0.0,13.273,9.233,0.614,0.0,0.0,0.0,0.0,3365.5,2553.9,23.007,15.726,0.0,3.551,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.677,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.382,7.871,2.01,1354.8,997.6,11399.5,2615.8,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.557,39.557,39.557,39.557,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.364,0.0,0.0,2.47,1.04,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.784,0.0,12.822,9.233,0.614,0.0,0.0,0.0,0.0,3219.5,2594.7,21.329,15.036,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.298,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.912,7.871,2.01,1354.8,997.6,11399.5,2615.8,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.557,39.557,39.557,39.557,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.364,0.0,0.0,2.47,1.04,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.784,0.0,12.822,9.233,0.614,0.0,0.0,0.0,0.0,3219.5,2594.7,21.329,15.036,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.298,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.912,7.871,2.01,1354.8,997.6,11399.5,2615.8,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,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,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-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,1354.8,997.6,11399.5,2615.8,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,19866.0,19866.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.91,38.91,38.91,38.91,0.0,0.0,0.0,0.0,0.0,0.0,5.84,0.317,0.073,0.002,2.16,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,0.0,19.98,0.075,12.245,9.233,0.614,0.0,0.0,0.0,0.0,4268.2,2191.0,19.501,13.372,0.0,3.593,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.501,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.402,38.402,38.402,38.402,0.0,0.0,0.0,0.0,0.0,0.0,5.406,0.268,0.0,0.0,2.213,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.045,0.0,11.734,9.233,0.614,0.0,0.0,0.0,0.0,3640.7,2214.0,19.188,12.558,0.0,3.624,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.54,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.818,7.871,2.01,1354.8,997.6,11399.5,2615.8,41843.0,41843.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.75,37.75,37.75,37.75,0.0,0.0,0.0,0.0,0.0,0.0,5.078,0.102,0.042,0.0,2.06,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.042,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3682.6,2120.6,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.614,35.614,0.0,12.321,0.0,0.0,0.0,0.0,3.012,0.092,0.0,0.0,2.043,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.658,7.393,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2846.2,2123.8,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,49.605,49.605,42.912,42.912,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.191,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2614.2,3427.5,16.894,14.883,0.0,2.873,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.449,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,31430.0,27561.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-stove-oil-only.xml,52.275,52.275,30.519,30.519,0.0,21.756,0.0,0.0,0.0,0.0,0.0,0.1,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,21.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.5,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize.xml,59.984,59.984,36.217,36.217,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.324,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2126.9,3189.8,24.296,18.003,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.91,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,32235.0,19922.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,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,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,24.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,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,19.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.929,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.276,11.121,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.39,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.179,15.199,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.042,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.535,15.232,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.756,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,26.265,15.613,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,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,0.0,47.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,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,71259.0,33168.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,28612.0,4972.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34496.0,10856.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32660.0,9020.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,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,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,0.0,14.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.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fixed-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,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,0.0,26.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,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,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,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,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,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,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-borefield-configuration.xml,39.611,39.611,39.611,39.611,0.0,0.0,0.0,0.0,0.0,0.0,5.26,0.363,0.0,0.0,2.512,1.034,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.551,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3220.4,2615.4,20.982,14.735,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.059,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-count.xml,39.586,39.586,39.586,39.586,0.0,0.0,0.0,0.0,0.0,0.0,5.255,0.363,0.0,0.0,2.496,1.032,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.68,9.233,0.614,0.0,0.0,0.0,0.0,3217.0,2594.6,20.961,14.715,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.767,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-diameter.xml,39.582,39.582,39.582,39.582,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.363,0.0,0.0,2.49,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3216.5,2593.6,20.904,14.714,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.766,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-length.xml,39.52,39.52,39.52,39.52,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.36,0.0,0.0,2.457,1.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,0.0,19.535,0.0,12.674,9.233,0.614,0.0,0.0,0.0,0.0,3204.8,2574.2,20.845,14.69,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.042,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.761,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-spacing.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.361,0.0,0.0,2.468,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.539,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3209.0,2580.0,20.864,14.698,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.047,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-ground-diffusivity.xml,39.58,39.58,39.58,39.58,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.363,0.0,0.0,2.489,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3216.2,2591.5,20.899,14.711,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.766,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-grout-conductivity.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.363,0.0,0.0,2.487,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3216.7,2587.7,20.894,14.706,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-loop-flow.xml,39.582,39.582,39.582,39.582,0.0,0.0,0.0,0.0,0.0,0.0,5.259,0.363,0.0,0.0,2.488,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3212.8,2589.5,20.884,14.709,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-conductivity.xml,39.56,39.56,39.56,39.56,0.0,0.0,0.0,0.0,0.0,0.0,5.25,0.362,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.8,2584.5,20.88,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.051,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-diameter.xml,39.563,39.563,39.563,39.563,0.0,0.0,0.0,0.0,0.0,0.0,5.248,0.362,0.0,0.0,2.481,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3212.1,2581.8,20.927,14.699,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.528,39.528,39.528,39.528,0.0,0.0,0.0,0.0,0.0,0.0,5.239,0.361,0.0,0.0,2.461,1.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,0.0,19.537,0.0,12.674,9.233,0.614,0.0,0.0,0.0,0.0,3207.1,2575.5,20.852,14.692,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.044,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.762,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.834,33.834,33.834,33.834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.571,0.777,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.556,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2618.9,0.0,14.783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.993,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.574,36.574,36.574,36.574,0.0,0.0,0.0,0.0,0.0,0.0,5.394,0.763,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,0.0,20.341,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3367.4,1637.3,22.277,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.035,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.558,39.558,39.558,39.558,0.0,0.0,0.0,0.0,0.0,0.0,5.249,0.362,0.0,0.0,2.477,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.4,2584.7,20.879,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.051,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.378,41.378,41.378,41.378,0.0,0.0,0.0,0.0,0.0,0.0,6.664,0.38,0.0,0.0,2.932,0.962,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.427,0.0,13.138,9.233,0.614,0.0,0.0,0.0,0.0,3445.1,2732.5,21.808,15.713,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.959,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.237,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,0.0,12.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,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,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,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,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,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,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,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.378,66.378,51.93,51.93,7.162,3.603,3.683,0.0,0.0,0.0,13.664,0.862,0.199,0.008,6.203,0.554,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.718,0.207,18.969,9.233,0.615,0.0,0.0,0.0,4.0,6442.4,4057.4,37.83,22.72,0.0,3.417,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.316,-8.919,-2.502,0.0,-0.122,-0.445,-0.049,2.738,-0.021,-1.886,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.244,7.859,2.007,1354.8,997.6,11399.5,2615.8,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.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,1354.8,997.6,8540.6,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 -base-hvac-portable-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,0.0,3.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.01,-0.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,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,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,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,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,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,0.0,0.0,0.0,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,56.19,56.19,35.529,35.529,20.661,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,3.959,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,20.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,19.378,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2961.2,20.444,15.145,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.888,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,28898.0,18434.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,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,0.0,15.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,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,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,0.0,22.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,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-kwh-per-year.xml,60.469,60.469,39.553,39.553,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.535,0.889,9.163,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.996,9.233,0.613,0.0,0.0,0.0,0.0,2416.3,3795.3,22.788,18.414,0.0,3.575,3.655,0.514,7.569,0.633,10.56,-12.521,0.0,0.0,0.0,8.359,-0.067,4.811,0.0,0.729,0.0,4.568,-8.891,-4.249,0.0,-0.085,-0.489,-0.055,2.612,-0.033,-2.015,11.745,0.0,0.0,0.0,-6.471,-0.063,-1.192,-3.199,-0.169,0.0,3.277,7.886,3.428,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,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,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,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,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 -base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,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,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,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,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,15107.0,1151.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 -base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,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.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,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,13718.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 -base-location-dallas-tx.xml,34.353,34.353,32.588,32.588,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.767,1.868,6.814,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,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,0.0,30.193,6.675,0.573,0.0,0.0,0.0,0.0,2014.4,2771.1,9.706,14.235,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.343,9.5,1.888,1354.8,997.6,9989.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-location-duluth-mn.xml,70.96,70.96,29.786,29.786,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,2.265,0.329,11.623,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,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,0.0,5.222,11.597,0.833,0.0,0.0,0.0,0.0,1760.4,2414.3,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,19.994,-13.274,0.0,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-6.293,-1.93,0.0,-0.435,-0.782,0.0,0.0,-0.099,-1.383,7.876,0.0,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.334,2.573,0.717,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,11642.0,149.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 -base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,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,0.0,42.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,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 -base-location-honolulu-hi.xml,36.199,36.199,36.199,36.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.218,3.035,4.816,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,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,2132.0,2154.5,0.0,13.168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,13.134,2.647,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,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 -base-location-miami-fl.xml,35.353,35.353,35.353,35.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.444,2.83,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,0.0,0.0,45.97,4.712,0.551,0.0,0.0,0.0,0.0,2104.8,2424.8,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,0.0,0.0,0.0,1.006,0.575,0.0,0.0,0.304,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,13.135,2.647,1354.8,997.6,8625.1,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,13318.0,-219.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 -base-location-phoenix-az.xml,38.434,38.434,38.433,38.433,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.029,3.092,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.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,0.0,51.765,4.955,0.556,0.0,0.0,0.0,0.0,2368.2,3386.4,0.593,17.634,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,11.511,2.368,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,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 -base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,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,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,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,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,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 -base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,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,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,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,0.0,24.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,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.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.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,0.0,0.0,11.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.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,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,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,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,63.835,44.385,31.488,12.038,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,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.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-emissions.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 -base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-round-trip-efficiency.xml,60.69,33.803,37.859,10.972,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.909,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-scheduled.xml,60.483,33.596,37.652,10.766,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery-scheduled.xml,77.483,42.407,37.652,2.576,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery.xml,76.584,41.509,36.754,1.678,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.804,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,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,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps-power-outage.xml,33.64,33.64,28.659,28.659,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.082,0.0,0.0,3.199,0.556,7.442,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,9.408,7.426,0.561,0.0,0.0,0.5,0.5,9398.1,10416.5,41.812,21.425,0.0,2.585,2.431,0.339,4.203,0.328,6.833,-12.363,0.0,0.0,0.0,3.542,-0.105,3.354,0.0,0.382,0.0,1.039,-6.567,-1.596,0.0,-0.232,-0.587,-0.07,2.391,-0.062,-2.309,11.863,0.0,0.0,0.0,-7.603,-0.059,-1.378,-4.919,-0.21,0.0,2.269,8.448,2.023,1141.2,883.5,9401.7,2157.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps.xml,42.676,42.676,34.392,34.392,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.137,0.0,0.0,3.211,0.559,9.199,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.756,0.0,9.457,9.21,0.671,0.0,0.0,0.0,0.5,9394.7,10419.5,31.982,21.427,0.0,2.889,2.782,0.39,5.331,0.415,7.871,-12.359,0.0,0.0,0.0,5.381,-0.059,3.834,0.0,0.578,0.0,1.776,-8.861,-2.486,0.0,-0.236,-0.59,-0.07,2.395,-0.063,-2.32,11.863,0.0,0.0,0.0,-7.535,-0.058,-1.38,-4.931,-0.211,0.0,2.279,8.448,2.023,1354.7,998.0,11490.9,2636.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,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,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,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,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,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,0.0,22.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,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,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,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,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,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,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,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,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -house001.xml,86.453,86.453,46.944,46.944,39.508,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.684,4.394,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,0.0,22.462,0.0,17.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.215,0.0,49.863,10.416,2.681,0.0,0.0,0.0,0.0,1853.4,6417.7,37.576,40.427,0.492,1.982,7.189,0.419,0.0,0.959,7.577,-4.942,0.0,0.0,0.438,1.255,-0.262,4.293,0.0,5.152,0.0,3.214,-6.762,-2.935,0.562,1.981,3.785,0.305,0.0,0.258,0.298,11.575,0.0,0.0,0.573,6.821,-0.248,-0.42,-1.413,-0.757,0.0,10.696,11.588,4.446,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,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 -house002.xml,67.263,67.263,39.818,39.818,27.444,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.726,3.409,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,0.0,13.958,0.0,13.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.316,0.0,39.308,7.526,2.891,0.0,0.0,0.0,0.0,1554.0,4934.4,23.891,28.399,0.0,2.53,5.051,0.0,0.0,0.85,5.996,-4.053,0.0,0.0,0.0,1.759,-0.146,1.573,0.0,3.789,0.0,1.372,-5.071,-2.493,0.0,3.082,2.762,0.0,0.0,0.396,-0.488,8.601,0.0,0.0,0.0,8.468,-0.14,-0.182,-1.052,-0.638,0.0,5.863,8.93,3.888,1610.9,1574.7,9989.4,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,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 -house003.xml,68.642,68.642,40.063,40.063,28.579,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.737,3.543,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,0.0,15.333,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.0,40.757,7.526,2.691,0.0,0.0,0.0,0.0,1632.4,5147.9,26.295,31.384,0.648,2.781,4.656,0.0,0.0,0.985,6.674,-3.929,0.0,0.0,0.0,1.074,-0.164,1.988,0.0,3.937,0.0,1.615,-5.293,-2.701,0.794,3.047,2.594,0.0,0.0,0.624,-0.264,9.905,0.0,0.0,0.0,6.53,-0.157,-0.218,-1.094,-0.633,0.0,6.453,9.189,4.174,1610.9,1574.7,9989.3,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,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 -house004.xml,136.271,136.271,75.306,75.306,60.965,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,28.978,9.455,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,0.0,44.816,0.0,16.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.241,0.0,107.036,8.985,3.511,0.0,0.0,0.0,101.0,3061.1,7371.4,54.694,50.188,0.128,5.535,11.395,0.0,0.0,1.249,14.009,-5.986,0.0,0.0,0.0,3.226,-0.721,4.938,0.0,6.279,0.0,7.107,-7.297,-3.933,0.199,6.756,11.661,0.0,0.0,0.524,5.468,17.456,0.0,0.0,0.0,18.954,-0.708,1.03,0.0,1.86,0.0,21.407,15.06,7.63,1857.7,1859.3,12228.9,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,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 -house005.xml,95.118,95.118,53.277,53.277,41.841,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.27,5.149,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,0.0,26.64,0.0,15.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,21.604,0.0,59.527,8.985,2.731,0.0,0.0,0.0,0.0,2076.0,7519.1,45.933,50.952,0.0,3.02,8.096,0.267,0.0,1.336,10.048,-6.655,0.0,0.0,0.37,1.253,-0.336,5.037,0.0,5.077,0.0,4.386,-6.862,-3.637,0.0,2.987,4.342,0.212,0.0,0.297,0.319,15.402,0.0,0.0,0.447,7.536,-0.319,-0.49,-1.768,-0.737,0.0,14.474,11.523,5.518,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,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 -house006.xml,139.365,139.365,31.78,31.78,107.585,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.951,0.34,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,0.0,81.738,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,78.691,0.0,7.8,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2441.9,40.506,14.727,0.0,4.261,22.283,1.991,37.119,1.868,17.963,-9.449,0.0,0.0,0.0,9.284,-0.313,9.523,0.0,4.368,0.0,0.0,-14.567,-6.452,0.0,0.174,-0.793,-0.044,2.801,-0.086,-0.887,4.262,0.0,0.0,0.0,-3.89,-0.313,-0.514,-0.614,-0.075,0.0,0.0,5.649,2.235,1610.9,1574.7,12168.1,4288.2,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 -house007.xml,138.83,138.83,33.914,33.914,104.916,0.0,0.0,0.0,0.0,0.0,0.0,1.632,0.0,0.0,2.54,0.396,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,0.0,75.248,0.0,23.282,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,70.851,0.0,5.753,15.632,3.269,0.0,0.0,0.0,0.0,2192.0,2562.1,39.678,13.27,0.0,4.719,23.705,4.446,10.133,1.504,19.077,-9.362,0.0,0.0,0.077,11.566,-0.343,6.119,0.0,20.834,0.0,2.867,-17.238,-7.765,0.0,0.197,-0.722,-0.06,0.577,-0.049,-0.553,4.531,0.0,0.0,-0.009,-4.0,-0.339,-0.191,-0.585,-1.888,0.0,0.104,6.303,2.533,1857.7,1859.4,14896.3,4852.9,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 -house008.xml,183.501,183.501,39.139,39.139,144.362,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.556,0.53,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,0.0,110.924,0.0,26.378,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,104.521,0.0,9.981,18.129,3.214,0.0,0.0,0.0,0.0,2473.2,3287.8,54.741,19.298,0.0,7.23,27.419,4.689,24.238,1.181,22.401,-7.862,0.0,0.0,1.235,17.867,-0.356,18.326,0.0,6.386,0.0,7.825,-18.694,-8.197,0.0,0.294,-1.11,-0.063,1.637,-0.086,-1.372,5.318,0.0,0.0,-0.1,-2.732,-0.356,-0.983,-0.682,-0.282,0.0,0.528,7.259,2.809,2104.5,2144.0,17624.6,5341.6,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 -house009.xml,154.293,154.293,33.983,33.983,120.31,0.0,0.0,0.0,0.0,0.0,0.0,2.035,0.0,0.0,2.375,0.286,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,0.0,90.634,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,85.401,0.0,5.187,15.632,3.276,0.0,0.0,0.0,0.0,2227.1,2605.9,44.161,13.902,0.0,5.098,28.389,4.31,13.07,2.257,19.625,-8.244,0.0,0.0,0.266,15.661,-0.329,8.731,0.0,21.443,0.0,0.0,-17.529,-7.88,0.0,0.238,-0.711,-0.038,0.753,-0.078,-0.78,4.49,0.0,0.0,-0.028,-4.065,-0.325,-0.258,-0.521,-1.794,0.0,0.0,5.992,2.391,1857.7,1859.4,14896.3,4852.9,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 -house010.xml,153.796,153.796,37.549,37.549,116.246,0.0,0.0,0.0,0.0,0.0,0.0,1.86,0.0,0.0,2.896,0.273,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,0.0,82.81,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,78.033,0.0,7.28,18.129,3.214,0.0,0.0,0.0,0.0,2409.0,2810.7,45.27,15.353,0.875,4.93,25.457,4.901,9.774,1.256,23.582,-9.227,0.0,0.0,0.906,11.41,-0.365,19.566,0.0,6.402,0.0,4.869,-18.715,-8.186,0.023,0.211,-0.764,-0.099,0.558,-0.073,-1.356,5.066,0.0,0.0,-0.046,-4.161,-0.362,-1.021,-0.677,-0.269,0.0,0.334,7.219,2.8,2104.5,2144.0,17624.6,5341.6,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 -house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,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,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,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,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 -house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,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,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,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,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 -house013.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,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,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,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,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 -house015.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house016.xml,61.263,61.263,39.85,39.85,0.0,0.0,21.413,0.0,0.0,0.0,7.562,0.538,0.161,0.004,3.068,1.038,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.225,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.35,0.164,12.001,10.478,0.0,0.0,0.0,1.0,16.0,7459.2,3559.3,42.956,19.008,0.0,4.428,10.851,0.619,5.712,0.298,7.395,-8.024,0.0,0.0,0.0,6.777,-0.02,5.735,0.0,3.86,0.0,0.0,-8.634,-4.768,0.0,-0.362,-0.889,-0.023,2.899,-0.047,-0.596,12.366,0.0,0.0,0.0,-8.869,-0.022,-1.375,-1.189,-1.027,0.0,0.0,7.78,3.838,1759.0,1745.5,13591.0,4566.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 -house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 -house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,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,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2606.0,1095.0,711.0,800.0 -house019.xml,129.831,129.831,51.94,51.94,77.891,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.257,3.783,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.116,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.065,0.0,44.56,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6497.7,84.656,46.058,0.0,11.387,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.955,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.944,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 -house020.xml,116.979,116.979,56.877,56.877,0.0,0.0,60.102,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.245,2.923,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.965,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.971,0.0,34.513,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6618.4,31.034,32.534,0.91,11.02,10.576,1.133,9.807,0.632,14.612,-15.405,0.0,0.0,0.0,7.524,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.24,0.116,0.176,0.053,6.39,0.012,-1.763,21.501,0.0,0.0,0.0,-6.709,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 -house021.xml,156.416,156.416,48.605,48.605,107.811,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.488,1.582,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.77,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,18.993,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4771.0,81.115,23.848,0.0,8.272,27.058,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.315,26.613,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.008,-0.864,0.005,2.201,-0.093,-1.709,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.322,8.889,3.787,1759.0,1745.5,13752.0,4620.1,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 -house022.xml,137.518,137.518,48.884,48.884,0.0,88.635,0.0,0.0,0.0,0.0,0.0,2.204,0.0,0.0,8.878,0.897,12.47,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,88.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.755,0.0,19.669,10.989,1.479,0.0,0.0,184.0,126.0,2989.1,5375.4,90.672,27.64,3.697,3.766,20.67,0.0,0.0,1.489,16.102,-13.284,0.0,0.0,14.728,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.522,0.0,0.0,-0.127,-0.987,12.096,0.0,0.0,1.908,0.0,-0.281,-2.742,-0.645,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 -house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 -house024.xml,129.181,129.181,44.059,44.059,0.0,85.122,0.0,0.0,0.0,0.0,0.0,2.117,0.0,0.0,5.375,0.691,16.753,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.176,0.0,16.013,14.653,2.088,0.0,0.0,0.0,0.0,2750.5,3528.1,72.024,17.577,0.0,7.189,30.113,0.0,0.0,0.682,6.988,-7.991,0.0,0.0,5.221,0.0,-0.109,25.401,0.0,1.837,0.0,11.726,-8.633,-2.537,0.0,0.564,1.148,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.499,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.853,5.531,1.379,2176.1,2226.5,14983.5,4452.7,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,21856.0,1377.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7041.0,2605.0,3636.0,800.0 -house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,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,32212.0,8765.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 -house026.xml,57.14,57.14,24.857,24.857,32.282,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,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,0.0,18.136,0.0,14.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,13.896,0.0,0.0,8.607,2.082,0.0,0.0,0.0,0.0,1554.0,1299.3,17.371,0.0,0.0,1.761,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.103,0.0,-0.058,2.488,0.0,3.127,0.0,0.0,-6.707,-3.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,1294.8,1282.2,8578.8,3023.3,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 -house027.xml,72.753,72.753,31.736,31.736,41.016,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,7.874,1.017,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,0.0,20.065,0.0,17.882,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.901,0.0,23.04,8.564,5.232,0.0,0.0,0.0,0.0,1580.0,3622.8,24.052,22.72,0.716,1.776,7.887,0.452,0.0,0.591,5.247,-4.028,0.0,0.0,0.376,3.336,-0.14,1.745,0.0,10.425,0.0,2.046,-8.79,-2.845,0.489,1.124,0.653,0.056,0.0,-0.113,-0.286,5.628,0.0,0.0,0.105,3.836,-0.14,-0.365,-0.966,-3.474,0.0,2.595,10.728,3.102,1610.9,1574.7,10579.5,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 -house028.xml,67.831,67.831,29.68,29.68,38.15,0.0,0.0,0.0,0.0,0.0,0.0,0.259,0.0,0.0,7.107,1.515,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,0.0,13.643,0.0,18.121,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.812,0.0,22.735,10.226,3.62,0.0,0.0,0.0,0.0,1517.3,3323.9,20.023,21.223,0.769,1.663,7.049,0.35,0.0,0.432,5.505,-3.79,0.0,0.0,0.236,2.464,-0.05,4.039,0.0,4.464,0.0,1.543,-9.08,-2.901,0.607,1.232,-0.581,0.098,0.0,0.066,-0.712,6.39,0.0,0.0,0.069,1.838,-0.051,-1.081,-1.198,-1.645,0.0,2.913,11.527,3.237,1857.7,1859.4,12951.6,4219.3,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 -house029.xml,77.601,77.601,29.95,29.95,47.651,0.0,0.0,0.0,0.0,0.0,0.0,0.639,0.0,0.0,6.107,0.906,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,0.0,31.987,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,31.653,0.0,13.604,9.614,0.0,0.0,0.0,0.0,0.0,1604.9,3000.4,28.473,13.951,0.0,3.364,14.695,0.392,0.0,0.308,6.693,-6.461,0.0,0.0,6.932,0.0,-0.085,7.292,0.0,7.304,0.0,3.15,-8.377,-3.711,0.0,1.12,-0.859,0.009,0.0,0.053,0.373,5.722,0.0,0.0,-0.449,0.0,-0.08,-0.809,-1.067,-1.536,0.0,1.215,7.168,2.832,1610.9,1574.7,11033.0,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,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 -house030.xml,57.883,57.883,17.189,17.189,0.0,0.0,40.694,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.377,0.0,13.28,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.883,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,15.992,0.0,0.0,1.68,10.216,0.489,1.112,1.049,5.343,-4.368,0.0,0.0,0.0,3.578,-0.04,2.742,0.0,5.694,0.0,0.0,-7.809,-2.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,1066.0,992.8,6763.9,2581.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 -house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 -house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.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,1341.9,1264.5,7310.3,2807.9,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 -house033.xml,106.743,106.743,14.691,14.691,0.0,92.052,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.371,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,48.38,0.0,0.0,19.125,14.564,0.0,0.0,1.0,10.82,-7.637,0.0,0.0,14.706,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.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,0.0,924.8,0.0,3905.6,1188.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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 -house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.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,1759.0,1745.5,10287.1,3456.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 -house035.xml,63.505,63.505,17.521,17.521,45.985,0.0,0.0,0.0,0.0,0.0,0.0,0.809,0.0,0.0,1.742,0.119,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.522,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.706,0.0,2.673,3.92,3.822,0.0,0.0,102.0,0.0,1326.3,1899.4,39.1,9.67,0.367,6.149,10.862,0.0,0.0,0.538,5.863,-7.44,0.0,0.0,7.797,0.0,0.004,13.61,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.579,-1.589,0.0,0.0,-0.082,-1.219,7.322,0.0,0.0,-4.457,0.0,0.009,-2.738,-0.728,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 -house036.xml,82.314,82.314,26.075,26.075,56.239,0.0,0.0,0.0,0.0,0.0,0.0,0.964,0.0,0.0,5.964,1.051,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.77,0.0,17.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.868,0.0,15.005,8.219,5.837,0.0,0.0,102.0,126.0,1461.8,3231.3,31.799,17.329,5.544,2.267,3.993,0.0,0.0,1.83,6.573,-7.755,0.0,0.0,21.29,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.427,-3.43,1.567,0.119,-0.032,0.0,0.0,-0.224,-0.58,6.698,0.0,0.0,2.216,0.0,-0.0,-0.749,-0.419,-0.061,0.0,0.0,4.352,2.019,1341.9,1264.5,6447.0,2476.3,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 -house037.xml,87.934,87.934,21.779,21.779,0.0,66.155,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,49.998,0.0,16.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,37.091,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,29.538,0.0,0.0,16.714,11.33,0.0,0.0,1.563,7.276,-10.49,0.0,0.0,6.59,0.0,-0.309,14.696,0.0,0.461,0.0,0.0,-6.818,-3.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,1341.9,1264.5,8324.2,3197.3,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 -house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 -house039.xml,98.796,98.796,24.025,24.025,74.77,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,5.136,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.084,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,49.765,0.0,0.0,14.276,5.416,0.0,0.0,2.519,15.643,-13.75,0.0,0.0,13.85,0.0,-0.039,13.263,0.0,0.557,0.0,0.0,-4.135,-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,2176.1,2226.5,17536.3,5211.3,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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 -house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 -house041.xml,259.077,259.077,47.133,47.133,211.944,0.0,0.0,0.0,0.0,0.0,0.0,4.164,0.0,0.0,2.576,0.254,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,0.0,185.392,0.0,26.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,174.689,0.0,4.652,15.632,5.039,0.0,0.0,105.0,0.0,3249.4,4561.5,77.749,23.467,0.0,11.26,44.834,3.482,34.914,3.052,41.616,-22.892,0.0,0.0,4.341,17.423,-0.477,64.05,0.0,2.763,0.0,0.0,-20.286,-10.995,0.0,0.097,-2.224,-0.127,1.602,-0.212,-4.015,11.033,0.0,0.0,-0.321,-5.328,-0.475,-3.481,-1.022,-0.258,0.0,0.0,6.561,2.948,1857.7,1859.4,14896.4,4852.9,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 -house042.xml,229.67,229.67,40.068,40.068,189.602,0.0,0.0,0.0,0.0,0.0,0.0,3.871,0.0,0.0,1.81,0.074,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,0.0,165.165,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.395,0.0,2.999,15.632,3.226,0.0,0.0,0.0,0.0,2758.3,3100.3,88.214,19.624,0.0,9.205,40.053,4.031,43.891,2.672,34.445,-21.633,0.0,0.0,2.453,14.538,-0.385,56.223,0.0,1.75,0.0,0.0,-19.152,-7.587,0.0,0.2,-1.588,-0.07,2.68,-0.16,-3.134,7.067,0.0,0.0,-0.272,-5.113,-0.382,-2.85,-0.642,-0.145,0.0,0.0,5.557,1.952,1857.7,1859.4,14896.3,4852.9,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 -house043.xml,158.13,158.13,30.051,30.051,128.078,0.0,0.0,0.0,0.0,0.0,0.0,2.456,0.0,0.0,2.028,0.119,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,0.0,108.178,0.0,19.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,103.04,0.0,3.036,13.084,2.207,0.0,0.0,0.0,0.0,1988.8,2798.1,54.664,13.818,0.0,3.172,23.263,2.301,33.889,5.621,23.662,-11.489,0.0,0.0,0.55,9.952,-0.267,28.928,0.0,1.576,0.0,0.0,-14.359,-5.16,0.0,0.032,-0.925,-0.1,1.55,-0.379,-2.383,5.793,0.0,0.0,-0.07,-3.676,-0.267,-1.616,-0.538,-0.147,0.0,0.0,4.463,1.402,1610.9,1574.7,12168.1,4288.2,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 -house044.xml,225.894,225.894,43.51,43.51,182.384,0.0,0.0,0.0,0.0,0.0,0.0,4.68,0.0,0.0,2.094,0.198,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,0.0,159.817,0.0,22.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.487,0.0,3.747,13.084,4.452,0.0,0.0,0.0,0.0,3093.4,3553.3,80.982,18.914,4.373,6.905,36.478,9.231,19.305,2.751,19.057,-13.33,0.0,0.0,12.909,15.111,-0.46,61.886,0.0,1.435,0.0,0.0,-18.031,-10.257,0.237,0.441,-1.46,-0.13,1.17,-0.123,-1.231,6.794,0.0,0.0,-1.164,-4.927,-0.458,-2.728,-0.484,-0.102,0.0,0.0,5.295,2.697,1610.9,1574.7,12168.1,4288.2,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 -house045.xml,152.693,152.693,35.232,35.232,117.461,0.0,0.0,0.0,0.0,0.0,0.0,2.782,0.0,0.0,2.392,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,0.0,95.008,0.0,22.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,88.27,0.0,4.026,13.084,4.363,0.0,0.0,0.0,0.0,2317.8,3011.2,47.289,12.909,3.57,3.077,15.169,2.298,32.784,1.143,19.974,-13.617,1.045,-0.407,0.086,12.672,-0.187,20.635,0.0,10.931,0.0,0.0,-14.663,-7.028,-0.017,0.001,-1.114,-0.131,0.881,-0.09,-2.086,7.133,-0.068,0.396,-0.013,-4.082,-0.186,-1.184,-0.915,-1.259,0.0,0.0,4.825,2.036,1610.9,1574.7,12168.1,4288.2,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 -house046.xml,25.037,25.037,25.037,25.037,0.0,0.0,0.0,0.0,0.0,0.0,5.364,0.446,0.267,0.009,3.738,1.038,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,0.0,13.922,0.276,12.84,4.305,0.617,0.0,0.0,0.0,0.0,3842.0,2404.7,16.167,13.004,0.0,2.525,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.275,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.814,4.589,0.545,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,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 -house047.xml,20.762,20.762,14.475,14.475,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.596,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,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,0.0,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.4,968.8,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.729,-0.554,0.0,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.101,0.032,0.0,0.0,-0.093,0.798,0.0,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.276,0.409,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,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 -house048.xml,91.642,91.642,39.796,39.796,51.846,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,12.899,3.824,0.0,0.0,0.0,3.691,0.085,0.498,3.017,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,0.0,35.87,0.0,12.637,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.021,0.0,51.358,7.253,2.688,0.0,0.0,0.0,0.0,1535.9,5475.4,42.021,33.069,1.024,2.643,12.009,0.0,0.0,0.815,4.922,-2.545,0.0,0.0,0.058,2.032,-0.525,6.797,0.0,4.194,0.0,6.419,-7.415,-1.512,1.323,1.018,9.256,0.0,0.0,0.549,2.757,4.297,0.0,0.0,0.072,10.121,-0.513,0.526,-0.449,1.931,0.0,6.917,11.576,2.179,130.3,817.7,11617.6,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,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 -house049.xml,32.038,32.038,28.541,28.541,3.497,0.0,0.0,0.0,0.0,0.0,5.888,0.036,0.0,0.0,5.819,0.147,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.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.239,0.0,33.85,4.262,1.306,0.0,0.0,0.0,90.0,4432.3,2181.9,12.361,17.634,0.0,1.38,4.471,0.0,0.0,0.0,3.895,-7.574,0.0,0.0,0.0,1.446,-0.075,2.582,0.0,1.809,0.0,0.0,-2.437,-0.44,0.0,1.489,6.503,0.0,0.0,0.0,3.26,15.042,0.0,0.0,0.0,2.984,-0.076,-0.307,-3.541,0.516,0.0,0.0,7.53,1.034,728.6,567.4,7487.2,928.5,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,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 -house050.xml,51.837,51.837,21.855,21.855,29.983,0.0,0.0,0.0,0.0,0.0,0.0,0.275,0.0,0.0,1.904,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,0.0,16.067,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.694,0.0,5.132,8.572,0.0,0.0,0.0,0.0,0.0,1156.7,2604.3,11.114,15.388,0.0,4.133,6.508,0.0,0.0,2.031,5.644,-4.221,0.0,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.921,-10.283,-1.232,0.0,-0.288,-0.312,0.0,0.0,-0.391,-0.567,4.041,0.0,0.0,-0.956,0.0,-0.123,-0.557,-1.219,-0.76,0.0,0.568,5.253,0.551,1689.0,437.0,10674.9,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,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 +HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: 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: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),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 Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),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) +base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,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,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,22.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-portable.xml,34.583,34.583,33.262,33.262,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.604,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,1.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,1.18,0.0,30.514,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.1,9.476,14.236,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.307,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.344,9.575,1.88,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier-ief-whole-home.xml,34.611,34.611,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.655,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,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15,0.0,30.49,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2767.0,9.495,14.236,0.0,1.77,1.652,0.0,0.0,0.392,5.039,-4.911,0.0,0.0,0.0,1.312,-0.373,1.058,0.077,0.399,0.0,0.032,-4.78,-0.772,0.0,0.548,-0.009,0.0,0.0,0.206,1.933,17.103,0.0,0.0,0.0,1.819,-0.368,-0.332,-1.9,-0.091,0.0,0.344,9.532,1.875,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier-multiple.xml,34.574,34.574,33.184,33.184,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.813,1.88,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.541,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,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.452,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.3,9.552,14.236,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.035,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.344,9.512,1.873,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier.xml,34.548,34.548,33.243,33.243,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.818,1.882,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.593,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.174,0.0,30.467,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.0,9.548,14.236,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.344,9.498,1.87,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.167,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,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,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,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,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,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,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,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,0.0,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 +base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,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,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,0.0,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 +base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,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,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,67.293,67.293,40.782,40.782,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.921,0.983,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,0.0,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.831,0.0,16.409,9.18,0.614,0.0,0.0,0.0,0.0,2378.3,3719.8,26.547,20.758,4.552,1.164,5.544,0.518,7.651,0.635,15.399,-16.987,0.0,0.0,0.0,8.521,-0.082,7.083,0.0,0.73,0.0,3.11,-10.232,-3.183,0.005,0.021,-0.566,-0.053,2.687,-0.029,-3.027,17.676,0.0,0.0,0.0,-6.349,-0.075,-1.69,-4.153,-0.166,0.0,0.937,8.933,2.568,1354.8,997.6,11399.6,2521.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38184.0,7494.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18712.0,182.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier.xml,37.385,37.385,33.168,33.168,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.236,1.963,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,0.0,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.893,0.0,31.745,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3190.7,13.54,17.969,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.366,9.113,1.789,1354.8,997.6,9989.0,2461.3,0.0,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,22162.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,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,0.0,22.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,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.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,30483.0,4824.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.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,0.0,22.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,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.482,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,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,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,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,0.0,60.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,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.626,36.626,24.815,24.815,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.087,0.0,0.0,1.608,0.207,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,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,0.0,3.054,9.538,0.73,0.0,0.0,0.0,0.0,1572.5,2015.2,7.667,5.819,0.0,2.94,3.649,0.0,0.0,0.582,1.416,-1.582,0.0,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-4.25,-1.186,0.0,-0.922,-0.231,0.0,0.0,-0.054,-0.234,1.305,0.0,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.559,3.423,0.841,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-multiple.xml,31.845,31.845,25.255,25.255,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,2.093,0.314,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,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,0.0,4.965,9.538,0.61,0.0,0.0,0.0,0.0,1562.3,2239.8,9.397,10.552,0.0,-0.004,3.294,0.0,0.0,1.383,4.001,-4.202,0.0,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-6.296,-1.142,0.0,0.0,-0.445,0.0,0.0,-0.418,-0.571,3.958,0.0,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.481,5.704,0.884,1354.8,997.6,11399.5,3156.5,0.0,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,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.799,49.799,24.82,24.82,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,1.466,0.173,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,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,0.0,2.504,9.538,0.818,0.0,0.0,0.0,0.0,1579.9,2256.3,11.078,8.452,0.0,5.364,4.204,0.0,0.0,0.788,1.403,-1.699,0.0,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-4.485,-1.249,0.0,-1.186,-0.054,0.0,0.0,-0.054,-0.122,1.188,0.0,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.528,3.187,0.778,1354.8,997.6,11399.5,3156.5,0.0,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,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.041,26.041,24.679,24.679,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.632,0.213,9.742,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,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,0.0,3.156,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2015.1,3.416,5.821,0.0,0.353,3.152,0.0,0.0,0.376,1.484,-1.49,0.0,0.0,0.375,0.0,-0.006,1.698,0.0,0.0,0.0,0.387,-4.015,-1.12,0.0,-0.831,-0.466,0.0,0.0,-0.076,-0.345,1.397,0.0,0.0,-0.847,0.0,-0.002,-0.394,-0.388,0.0,0.0,0.576,3.657,0.907,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.343,26.343,25.227,25.227,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.109,0.333,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,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,0.0,5.133,9.538,0.587,0.0,0.0,0.0,0.0,1559.4,1834.6,3.707,4.327,0.0,-0.003,3.197,0.0,0.0,0.368,1.519,-1.394,0.0,0.0,-0.002,0.0,-0.063,1.76,0.0,0.0,0.0,0.321,-3.692,-1.021,0.0,-0.001,-0.556,0.0,0.0,-0.044,-0.506,1.493,0.0,0.0,-0.0,0.0,-0.059,-0.532,-0.512,0.0,0.0,0.913,3.98,1.006,1354.8,997.6,11399.5,3156.5,0.0,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,6278.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.841,26.841,26.284,26.284,0.557,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.967,0.547,9.684,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.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,0.514,0.0,8.85,9.538,0.575,0.0,0.0,0.0,0.0,1703.9,1962.7,3.256,6.985,0.0,-0.013,2.505,0.0,0.0,0.42,4.041,-2.559,0.0,0.0,-0.009,0.0,-0.344,0.994,0.0,0.68,0.0,0.0,-4.559,-0.773,0.0,-0.008,-1.074,0.0,0.0,-0.048,-1.702,5.598,0.0,0.0,-0.004,0.0,-0.334,-0.402,-1.335,-0.391,0.0,0.0,7.407,1.254,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 +base-bldgtype-multifamily-residents-1.xml,19.898,19.898,18.595,18.595,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.363,0.394,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,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,0.0,6.696,4.213,0.585,0.0,0.0,0.0,0.0,1104.0,1602.9,3.916,6.507,0.0,-0.014,2.619,0.0,0.0,0.418,4.236,-3.104,0.0,0.0,-0.012,0.0,-0.305,1.3,0.0,0.75,0.0,0.0,-3.826,-0.937,0.0,-0.01,-0.765,0.0,0.0,-0.014,-1.207,5.053,0.0,0.0,-0.007,0.0,-0.297,-0.396,-1.194,-0.272,0.0,0.0,4.803,1.089,817.2,530.6,4779.7,1341.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.394,27.394,26.696,26.696,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.0,3.07,0.825,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1670.4,2088.4,3.455,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.149,28.149,27.404,27.404,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,3.656,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1695.4,2322.2,3.602,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.038,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,8647.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.679,27.679,27.017,27.017,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.346,0.825,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.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.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1680.5,2160.3,3.454,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,32.821,32.821,32.278,32.278,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,8.52,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1940.2,3671.7,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.766,27.766,27.223,27.223,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,3.465,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1688.5,2269.4,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1509.2,1333.8,3.459,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.356,23.356,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1522.4,1334.7,3.605,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.749,22.749,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1534.7,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.28,23.28,22.878,22.878,0.402,0.0,0.0,0.0,0.0,0.0,0.129,0.064,0.0,0.0,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.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1648.9,1334.7,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.303,23.303,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1536.8,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1528.0,1334.7,3.537,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.649,26.649,26.649,26.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.054,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1670.9,2071.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.327,27.327,27.327,27.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.637,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1702.6,2322.2,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922,26.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1681.0,2152.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.969,27.969,27.969,27.969,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.818,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.9,1820.0,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,1354.8,997.6,11399.6,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,3156.5,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.708,32.708,27.342,27.342,5.366,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.574,0.439,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,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,0.0,7.061,9.538,0.588,0.0,0.0,0.0,0.0,1711.5,2147.3,4.167,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,4.308,-3.183,0.0,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-5.414,-0.952,0.0,-0.009,-0.693,0.0,0.0,-0.005,-1.118,4.974,0.0,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,6.564,1.074,1354.8,997.6,11399.5,3156.5,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-mechvent.xml,31.03,31.03,27.217,27.217,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,2.492,0.416,9.705,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,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,0.0,6.838,9.538,0.598,0.0,0.0,0.0,0.0,1638.9,2132.2,5.993,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,4.232,-3.684,0.0,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-5.86,-1.052,0.0,-0.008,-0.511,0.0,0.0,-0.01,-0.941,4.473,0.0,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,6.129,0.974,1354.8,997.6,11399.5,3156.5,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-pv.xml,26.899,2.451,26.223,1.775,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.901,30.901,17.531,17.531,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,1052.2,1525.8,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-water-heater.xml,29.805,29.805,16.435,16.435,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,999.5,1473.1,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.347,37.347,37.347,37.347,0.0,0.0,0.0,0.0,0.0,0.0,5.339,0.369,0.0,0.0,2.587,1.083,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.882,0.0,13.353,9.232,0.614,2.924,0.0,0.0,0.0,3216.9,2129.8,20.987,15.084,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.099,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.826,8.485,2.01,1354.8,997.6,11413.0,2618.9,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.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,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,0.0,18.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.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,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,0.0,24.587,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1066.9,770.9,9019.2,2069.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,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,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.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,388.3,286.5,3205.6,735.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.67,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,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,0.0,23.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,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,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,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.89,0.0,13.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,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-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,1075.0,777.3,9103.8,2089.0,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.106,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.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.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,472.0,347.5,3998.4,917.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,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,0.0,22.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,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,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,0.0,23.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,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,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,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,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,0.0,22.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,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,17.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,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,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,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,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,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,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,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,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,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,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,0.0,25.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,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7646.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,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,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,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,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,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,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,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,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 +base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.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,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 +base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,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,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-floortypes.xml,67.648,67.648,29.356,29.356,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.632,0.0,0.0,3.58,0.646,9.367,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,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.866,0.0,10.726,9.342,0.621,0.0,0.0,0.0,0.0,1766.6,3491.4,29.153,20.79,0.0,3.477,3.648,0.0,0.0,0.67,9.92,-12.906,0.0,0.0,29.048,0.0,-0.198,2.052,0.0,0.787,0.0,7.954,-7.487,-1.578,0.0,0.424,-0.063,0.0,0.0,0.096,0.383,10.935,0.0,0.0,-7.934,0.0,-0.193,-0.259,-1.855,-0.085,0.0,2.655,5.717,1.069,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,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,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,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,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,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,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,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,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,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,22.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,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,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,22.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,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,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,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-split-level.xml,40.753,40.753,29.446,29.446,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.84,0.724,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,0.0,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,11.955,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2605.0,13.185,12.044,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.304,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.076,6.354,1.189,1354.8,997.6,11399.6,3013.0,0.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,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 +base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,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,22.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,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,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,0.0,40.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,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.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,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,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,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,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,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,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,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,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-ambient.xml,48.007,48.007,30.285,30.285,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.292,0.0,0.0,4.61,0.898,9.354,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,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.601,0.0,15.077,9.342,0.606,0.0,0.0,0.0,2.0,1740.7,3397.3,20.514,21.089,0.0,3.835,3.846,0.0,0.0,0.76,10.831,-11.429,0.0,0.0,10.226,0.0,-0.403,2.065,0.0,0.789,0.0,3.979,-6.811,-1.44,0.0,-0.046,-0.527,0.0,0.0,0.028,-0.75,12.412,0.0,0.0,-3.67,0.0,-0.396,-0.402,-2.391,-0.154,0.0,3.577,6.38,1.207,1354.8,997.6,11399.5,2808.9,0.0,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,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,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,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 +base-foundation-belly-wing-no-skirt.xml,49.694,49.694,29.445,29.445,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,3.895,0.731,9.354,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,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.964,0.0,12.009,9.342,0.607,0.0,0.0,0.0,0.0,1753.6,3211.6,24.176,17.286,0.0,3.981,5.371,0.0,0.0,0.753,8.835,-11.05,0.0,0.0,10.267,0.0,-0.35,2.069,0.0,0.794,0.0,6.238,-6.883,-1.459,0.0,0.302,-0.601,0.0,0.0,0.038,-0.188,9.522,0.0,0.0,-3.443,0.0,-0.343,-0.395,-2.184,-0.144,0.0,2.215,6.308,1.188,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-belly-wing-skirt.xml,49.322,49.322,29.453,29.453,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.328,0.0,0.0,3.906,0.734,9.354,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,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.608,0.0,12.062,9.342,0.607,0.0,0.0,0.0,0.0,1752.3,3180.5,24.023,17.245,0.0,3.987,5.379,0.0,0.0,0.753,8.843,-11.04,0.0,0.0,9.969,0.0,-0.345,2.068,0.0,0.793,0.0,6.125,-6.873,-1.457,0.0,0.296,-0.61,0.0,0.0,0.036,-0.211,9.532,0.0,0.0,-3.365,0.0,-0.338,-0.399,-2.199,-0.146,0.0,2.221,6.318,1.191,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-complex.xml,78.103,78.103,37.261,37.261,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.674,0.0,0.0,5.116,1.028,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.25,0.0,17.361,9.233,0.617,0.0,0.0,0.0,2.0,2171.5,3845.1,33.417,21.451,0.0,3.431,3.657,0.52,19.54,0.65,10.564,-12.717,0.0,0.0,0.0,8.705,-0.111,6.102,0.0,0.739,0.0,8.38,-9.124,-2.557,0.0,0.048,-0.359,-0.044,3.767,-0.003,-1.508,11.564,0.0,0.0,0.0,-4.519,-0.103,-1.227,-3.259,-0.137,0.0,3.71,7.657,1.952,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,56.087,56.087,36.482,36.482,19.605,0.0,0.0,0.0,0.0,0.0,0.0,0.323,0.0,0.0,4.774,0.947,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,19.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,18.357,0.0,15.998,9.233,0.612,0.0,0.0,0.0,0.0,2130.6,3496.4,22.309,19.66,0.0,3.624,3.695,0.52,8.197,0.641,10.668,-12.534,0.0,0.0,0.0,4.773,-0.061,4.839,0.0,0.733,0.0,4.319,-8.893,-2.498,0.0,-0.098,-0.497,-0.057,2.177,-0.036,-2.054,11.749,0.0,0.0,0.0,-3.7,-0.055,-1.187,-3.277,-0.169,0.0,3.465,7.883,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,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,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,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,0.0,18.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,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 +base-foundation-multiple.xml,42.738,42.738,29.706,29.706,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.218,0.812,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,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,0.0,13.443,9.285,0.693,0.0,0.0,0.0,0.0,1723.6,2714.9,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,10.857,-11.246,0.0,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-4.636,-1.429,0.0,-0.098,-0.674,0.0,0.0,-0.018,-1.077,12.595,0.0,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.65,4.23,1.218,1354.8,997.6,11399.4,2706.9,0.0,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,14275.0,222.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-slab.xml,39.954,39.954,29.299,29.299,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.9,0.74,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,0.0,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.972,0.0,12.215,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2611.5,12.703,12.011,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.078,6.379,1.193,1354.8,997.6,11399.5,2808.9,0.0,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,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-above-grade.xml,43.94,43.94,29.852,29.852,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.308,0.833,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,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,0.0,13.834,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.0,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,10.912,-11.281,0.0,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.069,12.56,0.0,0.0,-0.506,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.93,4.211,1.213,1354.8,997.6,11399.5,2706.9,0.0,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,14270.0,226.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-assembly-r.xml,41.196,41.196,29.243,29.243,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.197,0.0,0.0,3.847,0.722,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,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,0.0,11.864,9.285,0.71,0.0,0.0,0.0,0.0,1718.3,2855.2,14.652,12.883,0.0,3.994,3.856,0.0,0.0,0.759,10.855,-11.125,0.0,0.0,4.456,0.0,-0.343,2.583,0.0,0.0,0.0,1.82,-4.614,-1.421,0.0,-0.074,-0.626,0.0,0.0,0.009,-1.062,12.715,0.0,0.0,-2.011,0.0,-0.339,-0.564,-2.512,0.0,0.0,1.12,4.251,1.226,1354.8,997.6,11399.5,2706.9,0.0,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,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-wall-insulation.xml,48.948,48.948,28.952,28.952,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.558,0.653,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,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,0.0,10.743,9.285,0.64,0.0,0.0,0.0,0.0,1726.7,2483.3,16.597,11.56,0.0,3.723,3.619,0.0,0.0,0.633,9.712,-12.351,0.0,0.0,14.373,0.0,-0.047,2.46,0.0,0.0,0.0,2.599,-4.778,-1.481,0.0,0.063,-0.441,0.0,0.0,-0.015,-0.972,11.49,0.0,0.0,-2.769,0.0,-0.045,-0.521,-2.405,0.0,0.0,1.302,4.088,1.166,1354.8,997.6,11399.5,2706.9,0.0,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,15218.0,128.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement.xml,42.817,42.817,29.736,29.736,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,4.234,0.816,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,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,0.0,13.513,9.285,0.703,0.0,0.0,0.0,0.0,1723.8,2921.5,15.45,14.318,0.0,3.994,3.853,0.0,0.0,0.749,10.805,-11.235,0.0,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-4.634,-1.429,0.0,-0.077,-0.629,0.0,0.0,-0.0,-1.111,12.605,0.0,0.0,-0.673,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.724,4.231,1.218,1354.8,997.6,11399.5,2706.9,0.0,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,14277.0,222.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,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,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,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,2808.9,0.0,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,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,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,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,2808.9,0.0,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,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-walkout-basement.xml,64.814,64.814,36.328,36.328,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,4.532,0.884,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,0.0,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.677,0.0,14.89,9.233,0.615,0.0,0.0,0.0,0.0,2125.9,3513.1,26.787,19.805,0.0,3.523,3.688,0.52,7.364,0.646,11.292,-12.794,0.0,0.0,0.0,10.155,-0.066,6.639,0.0,0.728,0.0,6.073,-8.935,-2.506,0.0,-0.099,-0.515,-0.06,1.48,-0.031,-2.074,12.046,0.0,0.0,0.0,-3.677,-0.061,-1.529,-3.357,-0.16,0.0,3.264,7.844,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,0.0,15.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.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,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,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.645,42.645,42.645,42.645,0.0,0.0,0.0,0.0,0.0,0.0,9.823,1.762,0.591,0.052,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,0.0,23.588,0.643,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7296.6,1637.3,25.567,0.0,0.0,3.452,3.637,0.512,7.485,0.629,10.516,-12.551,0.0,0.0,0.0,8.112,-0.066,4.805,0.0,0.728,0.0,7.372,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.145,46.145,46.145,46.145,0.0,0.0,0.0,0.0,0.0,0.0,9.718,1.011,0.443,0.024,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.466,13.102,9.233,0.614,0.0,0.0,0.0,0.0,6954.5,3209.9,24.358,15.771,0.0,3.499,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.018,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,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,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,0.0,21.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.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,0.0,25971.0,25971.0,11194.0,51.62,90.68,11194.0,4365.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.698,44.698,44.698,44.698,0.0,0.0,0.0,0.0,0.0,0.0,9.125,0.912,0.046,0.006,3.198,0.971,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.362,0.052,11.97,9.233,0.614,0.0,0.0,0.0,0.0,6628.4,2912.2,22.625,13.15,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.864,-8.907,-2.499,0.0,0.037,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.05,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65908.0,65908.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,24186.0,24186.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.554,41.554,41.554,41.554,0.0,0.0,0.0,0.0,0.0,0.0,7.131,0.629,0.416,0.017,2.294,0.626,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.433,13.325,9.233,0.614,0.0,0.0,0.0,0.0,6922.4,2762.7,24.33,16.718,0.0,3.453,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.249,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.431,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33416.0,33416.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.544,40.544,40.544,40.544,0.0,0.0,0.0,0.0,0.0,0.0,6.849,0.507,0.049,0.005,2.124,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.035,0.054,12.091,9.233,0.614,0.0,0.0,0.0,0.0,6732.2,2521.0,23.383,13.585,0.0,3.588,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.557,-8.907,-2.499,0.0,0.034,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.172,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65567.0,65567.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.171,51.171,37.619,37.619,13.551,0.0,0.0,0.0,0.0,0.0,4.154,0.37,0.0,0.138,2.31,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.722,11.262,14.452,9.233,0.615,0.0,0.0,2.0,0.0,3194.1,2672.7,23.547,17.679,0.0,3.375,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.35,-8.918,-2.502,0.0,-0.058,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.697,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,23640.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.458,54.458,37.825,37.825,16.632,0.0,0.0,0.0,0.0,0.0,4.006,0.353,0.0,0.501,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,28.514,13.807,14.556,9.233,0.614,0.0,0.0,2.0,0.0,3328.2,2622.0,30.614,17.514,0.0,3.251,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.289,-0.061,4.804,0.0,0.728,0.0,12.284,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.063,-0.165,0.0,3.704,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,32235.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,26367.0,26367.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.158,41.158,41.158,41.158,0.0,0.0,0.0,0.0,0.0,0.0,7.314,0.748,0.123,0.008,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.792,0.131,14.556,9.233,0.614,0.0,0.0,0.0,0.0,7031.0,2622.0,24.672,17.514,0.0,3.37,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.48,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.703,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.898,40.898,40.898,40.898,0.0,0.0,0.0,0.0,0.0,0.0,7.281,0.641,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.771,0.057,13.49,9.233,0.614,0.0,0.0,0.0,0.0,6896.7,2561.9,23.811,16.273,0.0,3.447,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.401,-8.907,-2.499,0.0,-0.02,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.608,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,50423.0,50423.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-elec-only.xml,48.203,48.203,48.203,48.203,0.0,0.0,0.0,0.0,0.0,0.0,17.594,0.191,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.2,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.331,55.331,36.429,36.429,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2096.7,3330.0,16.459,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-gas-only.xml,49.354,49.354,30.642,30.642,18.712,0.0,0.0,0.0,0.0,0.0,0.0,0.224,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,18.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2057.9,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20155.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,0.0,17.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.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20283.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.538,48.538,48.538,48.538,0.0,0.0,0.0,0.0,0.0,0.0,9.911,1.779,0.593,0.052,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.645,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7326.8,3330.1,25.567,17.819,0.0,3.446,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.439,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,19922.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-evap-cooler-furnace-gas.xml,56.319,56.319,32.044,32.044,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,0.0,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,1915.1,25.1,11.075,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,13458.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-elec-only.xml,53.605,53.605,53.605,53.605,0.0,0.0,0.0,0.0,0.0,0.0,22.563,0.625,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,0.0,22.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8622.9,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.875,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2124.3,2947.8,24.237,18.493,0.0,3.51,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.863,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20155.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20283.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.324,34.324,34.324,34.324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.874,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.707,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2888.0,0.0,17.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.164,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.697,36.697,36.697,36.697,0.0,0.0,0.0,0.0,0.0,0.0,5.486,0.794,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,0.0,21.07,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3421.0,1637.3,23.54,0.0,0.0,3.55,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.785,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.97,39.97,39.97,39.97,0.0,0.0,0.0,0.0,0.0,0.0,5.504,0.688,0.0,0.0,2.527,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.125,0.0,13.273,9.233,0.614,0.0,0.0,0.0,0.0,3365.5,2553.9,23.007,15.726,0.0,3.551,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.677,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.382,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.557,39.557,39.557,39.557,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.364,0.0,0.0,2.47,1.04,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.784,0.0,12.822,9.233,0.614,0.0,0.0,0.0,0.0,3219.5,2594.7,21.329,15.036,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.298,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.912,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.557,39.557,39.557,39.557,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.364,0.0,0.0,2.47,1.04,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.784,0.0,12.822,9.233,0.614,0.0,0.0,0.0,0.0,3219.5,2594.7,21.329,15.036,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.298,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.912,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,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,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,19866.0,19866.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.91,38.91,38.91,38.91,0.0,0.0,0.0,0.0,0.0,0.0,5.84,0.317,0.073,0.002,2.16,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,0.0,19.98,0.075,12.245,9.233,0.614,0.0,0.0,0.0,0.0,4268.2,2191.0,19.501,13.372,0.0,3.593,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.501,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.402,38.402,38.402,38.402,0.0,0.0,0.0,0.0,0.0,0.0,5.406,0.268,0.0,0.0,2.213,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.045,0.0,11.734,9.233,0.614,0.0,0.0,0.0,0.0,3640.7,2214.0,19.188,12.558,0.0,3.624,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.54,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.818,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,41843.0,41843.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.75,37.75,37.75,37.75,0.0,0.0,0.0,0.0,0.0,0.0,5.078,0.102,0.042,0.0,2.06,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.042,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3682.6,2120.6,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.614,35.614,0.0,12.321,0.0,0.0,0.0,0.0,3.012,0.092,0.0,0.0,2.043,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.658,7.393,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2846.2,2123.8,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,49.605,49.605,42.912,42.912,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.191,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2614.2,3427.5,16.894,14.883,0.0,2.873,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.449,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,0.0,31430.0,27561.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-stove-oil-only.xml,52.275,52.275,30.519,30.519,0.0,21.756,0.0,0.0,0.0,0.0,0.0,0.1,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,21.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.5,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize.xml,59.984,59.984,36.217,36.217,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.324,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2126.9,3189.8,24.296,18.003,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.91,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,19922.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,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,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,24.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,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,19.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.93,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.276,11.122,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.391,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.179,15.2,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.043,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.535,15.233,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.757,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,26.265,15.615,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,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,0.0,47.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,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,71259.0,33168.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,28612.0,4972.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34496.0,10856.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32660.0,9020.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,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,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,0.0,14.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.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-fixed-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,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,0.0,26.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,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,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,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,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,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,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-borefield-configuration.xml,39.611,39.611,39.611,39.611,0.0,0.0,0.0,0.0,0.0,0.0,5.26,0.363,0.0,0.0,2.512,1.034,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.551,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3220.4,2615.4,20.982,14.735,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.059,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-count.xml,39.586,39.586,39.586,39.586,0.0,0.0,0.0,0.0,0.0,0.0,5.255,0.363,0.0,0.0,2.496,1.032,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.68,9.233,0.614,0.0,0.0,0.0,0.0,3217.0,2594.6,20.961,14.715,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.767,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-diameter.xml,39.582,39.582,39.582,39.582,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.363,0.0,0.0,2.49,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3216.5,2593.6,20.904,14.714,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.766,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-length.xml,39.52,39.52,39.52,39.52,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.36,0.0,0.0,2.457,1.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,0.0,19.535,0.0,12.674,9.233,0.614,0.0,0.0,0.0,0.0,3204.8,2574.2,20.845,14.69,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.042,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.761,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-spacing.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.361,0.0,0.0,2.468,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.539,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3209.0,2580.0,20.864,14.698,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.047,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-ground-diffusivity.xml,39.58,39.58,39.58,39.58,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.363,0.0,0.0,2.489,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3216.2,2591.5,20.899,14.711,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.766,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-grout-conductivity.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.363,0.0,0.0,2.487,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3216.7,2587.7,20.894,14.706,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-loop-flow.xml,39.582,39.582,39.582,39.582,0.0,0.0,0.0,0.0,0.0,0.0,5.259,0.363,0.0,0.0,2.488,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3212.8,2589.5,20.884,14.709,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-conductivity.xml,39.56,39.56,39.56,39.56,0.0,0.0,0.0,0.0,0.0,0.0,5.25,0.362,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.8,2584.5,20.88,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.051,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-diameter.xml,39.563,39.563,39.563,39.563,0.0,0.0,0.0,0.0,0.0,0.0,5.248,0.362,0.0,0.0,2.481,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3212.1,2581.8,20.927,14.699,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.528,39.528,39.528,39.528,0.0,0.0,0.0,0.0,0.0,0.0,5.239,0.361,0.0,0.0,2.461,1.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,0.0,19.537,0.0,12.674,9.233,0.614,0.0,0.0,0.0,0.0,3207.1,2575.5,20.852,14.692,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.044,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.762,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.834,33.834,33.834,33.834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.571,0.777,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.556,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2618.9,0.0,14.783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.993,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.574,36.574,36.574,36.574,0.0,0.0,0.0,0.0,0.0,0.0,5.394,0.763,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,0.0,20.341,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3367.4,1637.3,22.277,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.035,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.558,39.558,39.558,39.558,0.0,0.0,0.0,0.0,0.0,0.0,5.249,0.362,0.0,0.0,2.477,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.4,2584.7,20.879,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.051,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.378,41.378,41.378,41.378,0.0,0.0,0.0,0.0,0.0,0.0,6.664,0.38,0.0,0.0,2.932,0.962,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.427,0.0,13.138,9.233,0.614,0.0,0.0,0.0,0.0,3445.1,2732.5,21.808,15.713,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.959,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.237,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,0.0,12.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,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,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,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,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,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,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,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.378,66.378,51.93,51.93,7.162,3.603,3.683,0.0,0.0,0.0,13.664,0.862,0.199,0.008,6.203,0.554,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.718,0.207,18.969,9.233,0.615,0.0,0.0,0.0,4.0,6442.4,4057.4,37.83,22.72,0.0,3.417,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.316,-8.919,-2.502,0.0,-0.122,-0.445,-0.049,2.738,-0.021,-1.886,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.244,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.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,1354.8,997.6,8540.6,2104.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 +base-hvac-portable-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,0.0,3.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.01,-0.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,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,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,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,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,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,0.0,0.0,0.0,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,56.19,56.19,35.529,35.529,20.661,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,3.959,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,20.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,19.378,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2961.2,20.444,15.145,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.888,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,28898.0,18434.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,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,0.0,15.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,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,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,0.0,22.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,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-kwh-per-year.xml,60.469,60.469,39.553,39.553,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.535,0.889,9.163,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.996,9.233,0.613,0.0,0.0,0.0,0.0,2416.3,3795.3,22.788,18.414,0.0,3.575,3.655,0.514,7.569,0.633,10.56,-12.521,0.0,0.0,0.0,8.359,-0.067,4.811,0.0,0.729,0.0,4.568,-8.891,-4.249,0.0,-0.085,-0.489,-0.055,2.612,-0.033,-2.015,11.745,0.0,0.0,0.0,-6.471,-0.063,-1.192,-3.199,-0.169,0.0,3.277,7.886,3.428,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,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,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,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,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 +base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,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,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,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,2719.3,0.0,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,15107.0,1151.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 +base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,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.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,1354.8,997.6,10580.5,2607.1,0.0,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,13718.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 +base-location-dallas-tx.xml,34.353,34.353,32.588,32.588,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.767,1.868,6.814,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,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,0.0,30.193,6.675,0.573,0.0,0.0,0.0,0.0,2014.4,2771.1,9.706,14.235,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.343,9.5,1.888,1354.8,997.6,9989.0,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-location-duluth-mn.xml,70.96,70.96,29.786,29.786,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,2.265,0.329,11.623,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,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,0.0,5.222,11.597,0.833,0.0,0.0,0.0,0.0,1760.4,2414.3,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,19.994,-13.274,0.0,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-6.293,-1.93,0.0,-0.435,-0.782,0.0,0.0,-0.099,-1.383,7.876,0.0,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.334,2.573,0.717,1354.8,997.6,12167.9,2889.4,0.0,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,11642.0,149.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 +base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,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,0.0,42.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,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 +base-location-honolulu-hi.xml,36.199,36.199,36.199,36.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.218,3.035,4.816,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,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,2132.0,2154.5,0.0,13.168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,13.134,2.647,1354.8,997.6,8540.5,2104.4,0.0,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,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 +base-location-miami-fl.xml,35.353,35.353,35.353,35.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.444,2.83,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,0.0,0.0,45.97,4.712,0.551,0.0,0.0,0.0,0.0,2104.8,2424.8,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,0.0,0.0,0.0,1.006,0.575,0.0,0.0,0.304,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,13.135,2.647,1354.8,997.6,8625.1,2125.3,0.0,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,13318.0,-219.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 +base-location-phoenix-az.xml,38.434,38.434,38.433,38.433,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.029,3.092,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.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,0.0,51.765,4.955,0.556,0.0,0.0,0.0,0.0,2368.2,3386.4,0.593,17.634,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,11.511,2.368,1354.8,997.6,8429.2,2077.0,0.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,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 +base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,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,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,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,1354.8,997.6,11239.5,2769.4,0.0,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,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 +base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,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,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,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,0.0,24.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,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.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.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,0.0,0.0,11.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.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,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,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,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,63.835,44.385,31.488,12.038,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,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.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,3.08,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-emissions.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,16.505,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.981,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 +base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,24.753,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-round-trip-efficiency.xml,60.69,33.803,37.859,10.972,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.909,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,6.706,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-scheduled.xml,60.483,33.596,37.652,10.766,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,6.873,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery-scheduled.xml,77.483,42.407,37.652,2.576,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,24.473,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery.xml,76.584,41.509,36.754,1.678,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.804,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,90.778,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,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,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,1.915,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,33.64,33.64,28.659,28.659,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.082,0.0,0.0,3.199,0.556,7.442,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,9.408,7.426,0.561,0.0,0.0,0.5,0.5,9398.1,10416.5,41.812,21.425,0.0,2.585,2.431,0.339,4.203,0.328,6.833,-12.363,0.0,0.0,0.0,3.542,-0.105,3.354,0.0,0.382,0.0,1.039,-6.567,-1.596,0.0,-0.232,-0.587,-0.07,2.391,-0.062,-2.309,11.863,0.0,0.0,0.0,-7.603,-0.059,-1.378,-4.919,-0.21,0.0,2.269,8.448,2.023,1141.2,883.5,9401.7,2157.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps.xml,42.676,42.676,34.392,34.392,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.137,0.0,0.0,3.211,0.559,9.199,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.756,0.0,9.457,9.21,0.671,0.0,0.0,0.0,0.5,9394.7,10419.5,31.982,21.427,0.0,2.889,2.782,0.39,5.331,0.415,7.871,-12.359,0.0,0.0,0.0,5.381,-0.059,3.834,0.0,0.578,0.0,1.776,-8.861,-2.486,0.0,-0.236,-0.59,-0.07,2.395,-0.063,-2.32,11.863,0.0,0.0,0.0,-7.535,-0.058,-1.38,-4.931,-0.211,0.0,2.279,8.448,2.023,1354.7,998.0,11490.9,2636.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,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,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,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,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,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,0.0,22.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,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,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,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,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,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,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,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,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +house001.xml,86.453,86.453,46.944,46.944,39.508,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.684,4.394,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,0.0,22.462,0.0,17.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.215,0.0,49.863,10.416,2.681,0.0,0.0,0.0,0.0,1853.4,6417.7,37.576,40.427,0.492,1.982,7.189,0.419,0.0,0.959,7.577,-4.942,0.0,0.0,0.438,1.255,-0.262,4.293,0.0,5.152,0.0,3.214,-6.762,-2.935,0.562,1.981,3.785,0.305,0.0,0.258,0.298,11.575,0.0,0.0,0.573,6.821,-0.248,-0.42,-1.413,-0.757,0.0,10.696,11.588,4.446,2104.5,2144.0,14468.8,4385.1,0.0,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,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 +house002.xml,67.263,67.263,39.818,39.818,27.444,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.726,3.409,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,0.0,13.958,0.0,13.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.316,0.0,39.308,7.526,2.891,0.0,0.0,0.0,0.0,1554.0,4934.4,23.891,28.399,0.0,2.53,5.051,0.0,0.0,0.85,5.996,-4.053,0.0,0.0,0.0,1.759,-0.146,1.573,0.0,3.789,0.0,1.372,-5.071,-2.493,0.0,3.082,2.762,0.0,0.0,0.396,-0.488,8.601,0.0,0.0,0.0,8.468,-0.14,-0.182,-1.052,-0.638,0.0,5.863,8.93,3.888,1610.9,1574.7,9989.4,3520.4,0.0,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,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 +house003.xml,68.642,68.642,40.063,40.063,28.579,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.737,3.543,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,0.0,15.333,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.0,40.757,7.526,2.691,0.0,0.0,0.0,0.0,1632.4,5147.9,26.295,31.384,0.648,2.781,4.656,0.0,0.0,0.985,6.674,-3.929,0.0,0.0,0.0,1.074,-0.164,1.988,0.0,3.937,0.0,1.615,-5.293,-2.701,0.794,3.047,2.594,0.0,0.0,0.624,-0.264,9.905,0.0,0.0,0.0,6.53,-0.157,-0.218,-1.094,-0.633,0.0,6.453,9.189,4.174,1610.9,1574.7,9989.3,3520.4,0.0,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,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 +house004.xml,136.271,136.271,75.306,75.306,60.965,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,28.978,9.455,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,0.0,44.816,0.0,16.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.241,0.0,107.036,8.985,3.511,0.0,0.0,0.0,101.0,3061.1,7371.4,54.694,50.188,0.128,5.535,11.395,0.0,0.0,1.249,14.009,-5.986,0.0,0.0,0.0,3.226,-0.721,4.938,0.0,6.279,0.0,7.107,-7.297,-3.933,0.199,6.756,11.661,0.0,0.0,0.524,5.468,17.456,0.0,0.0,0.0,18.954,-0.708,1.03,0.0,1.86,0.0,21.407,15.06,7.63,1857.7,1859.3,12228.9,3983.9,0.0,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,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 +house005.xml,95.118,95.118,53.277,53.277,41.841,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.27,5.149,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,0.0,26.64,0.0,15.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,21.604,0.0,59.527,8.985,2.731,0.0,0.0,0.0,0.0,2076.0,7519.1,45.933,50.952,0.0,3.02,8.096,0.267,0.0,1.336,10.048,-6.655,0.0,0.0,0.37,1.253,-0.336,5.037,0.0,5.077,0.0,4.386,-6.862,-3.637,0.0,2.987,4.342,0.212,0.0,0.297,0.319,15.402,0.0,0.0,0.447,7.536,-0.319,-0.49,-1.768,-0.737,0.0,14.474,11.523,5.518,1857.7,1859.4,12229.0,3983.9,0.0,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,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 +house006.xml,139.365,139.365,31.78,31.78,107.585,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.951,0.34,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,0.0,81.738,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,78.691,0.0,7.8,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2441.9,40.506,14.727,0.0,4.261,22.283,1.991,37.119,1.868,17.963,-9.449,0.0,0.0,0.0,9.284,-0.313,9.523,0.0,4.368,0.0,0.0,-14.567,-6.452,0.0,0.174,-0.793,-0.044,2.801,-0.086,-0.887,4.262,0.0,0.0,0.0,-3.89,-0.313,-0.514,-0.614,-0.075,0.0,0.0,5.649,2.235,1610.9,1574.7,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 +house007.xml,138.83,138.83,33.914,33.914,104.916,0.0,0.0,0.0,0.0,0.0,0.0,1.632,0.0,0.0,2.54,0.396,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,0.0,75.248,0.0,23.282,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,70.851,0.0,5.753,15.632,3.269,0.0,0.0,0.0,0.0,2192.0,2562.1,39.678,13.27,0.0,4.719,23.705,4.446,10.133,1.504,19.077,-9.362,0.0,0.0,0.077,11.566,-0.343,6.119,0.0,20.834,0.0,2.867,-17.238,-7.765,0.0,0.197,-0.722,-0.06,0.577,-0.049,-0.553,4.531,0.0,0.0,-0.009,-4.0,-0.339,-0.191,-0.585,-1.888,0.0,0.104,6.303,2.533,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 +house008.xml,183.501,183.501,39.139,39.139,144.362,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.556,0.53,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,0.0,110.924,0.0,26.378,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,104.521,0.0,9.981,18.129,3.214,0.0,0.0,0.0,0.0,2473.2,3287.8,54.741,19.298,0.0,7.23,27.419,4.689,24.238,1.181,22.401,-7.862,0.0,0.0,1.235,17.867,-0.356,18.326,0.0,6.386,0.0,7.825,-18.694,-8.197,0.0,0.294,-1.11,-0.063,1.637,-0.086,-1.372,5.318,0.0,0.0,-0.1,-2.732,-0.356,-0.983,-0.682,-0.282,0.0,0.528,7.259,2.809,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 +house009.xml,154.293,154.293,33.983,33.983,120.31,0.0,0.0,0.0,0.0,0.0,0.0,2.035,0.0,0.0,2.375,0.286,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,0.0,90.634,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,85.401,0.0,5.187,15.632,3.276,0.0,0.0,0.0,0.0,2227.1,2605.9,44.161,13.902,0.0,5.098,28.389,4.31,13.07,2.257,19.625,-8.244,0.0,0.0,0.266,15.661,-0.329,8.731,0.0,21.443,0.0,0.0,-17.529,-7.88,0.0,0.238,-0.711,-0.038,0.753,-0.078,-0.78,4.49,0.0,0.0,-0.028,-4.065,-0.325,-0.258,-0.521,-1.794,0.0,0.0,5.992,2.391,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 +house010.xml,153.796,153.796,37.549,37.549,116.246,0.0,0.0,0.0,0.0,0.0,0.0,1.86,0.0,0.0,2.896,0.273,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,0.0,82.81,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,78.033,0.0,7.28,18.129,3.214,0.0,0.0,0.0,0.0,2409.0,2810.7,45.27,15.353,0.875,4.93,25.457,4.901,9.774,1.256,23.582,-9.227,0.0,0.0,0.906,11.41,-0.365,19.566,0.0,6.402,0.0,4.869,-18.715,-8.186,0.023,0.211,-0.764,-0.099,0.558,-0.073,-1.356,5.066,0.0,0.0,-0.046,-4.161,-0.362,-1.021,-0.677,-0.269,0.0,0.334,7.219,2.8,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 +house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,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,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,0.0,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,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 +house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,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,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,0.0,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,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 +house013.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 +house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,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,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,3131.8,0.0,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,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 +house015.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 +house016.xml,61.263,61.263,39.85,39.85,0.0,0.0,21.413,0.0,0.0,0.0,7.562,0.538,0.161,0.004,3.068,1.038,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.225,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.35,0.164,12.001,10.478,0.0,0.0,0.0,1.0,16.0,7459.2,3559.3,42.956,19.008,0.0,4.428,10.851,0.619,5.712,0.298,7.395,-8.024,0.0,0.0,0.0,6.777,-0.02,5.735,0.0,3.86,0.0,0.0,-8.634,-4.768,0.0,-0.362,-0.889,-0.023,2.899,-0.047,-0.596,12.366,0.0,0.0,0.0,-8.869,-0.022,-1.375,-1.189,-1.027,0.0,0.0,7.78,3.838,1759.0,1745.5,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 +house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,0.0,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 +house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,0.0,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,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2606.0,1095.0,711.0,800.0 +house019.xml,129.831,129.831,51.94,51.94,77.891,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.257,3.783,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.116,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.065,0.0,44.56,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6497.7,84.656,46.058,0.0,11.387,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.955,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.944,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,0.0,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 +house020.xml,116.979,116.979,56.877,56.877,0.0,0.0,60.102,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.245,2.923,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.965,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.971,0.0,34.513,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6618.4,31.034,32.534,0.91,11.02,10.576,1.133,9.807,0.632,14.612,-15.405,0.0,0.0,0.0,7.524,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.24,0.116,0.176,0.053,6.39,0.012,-1.763,21.501,0.0,0.0,0.0,-6.709,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,0.0,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 +house021.xml,156.416,156.416,48.605,48.605,107.811,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.488,1.582,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.77,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,18.993,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4771.0,81.115,23.848,0.0,8.272,27.058,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.315,26.613,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.008,-0.864,0.005,2.201,-0.093,-1.709,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.322,8.889,3.787,1759.0,1745.5,13752.0,4620.1,0.0,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 +house022.xml,137.518,137.518,48.884,48.884,0.0,88.635,0.0,0.0,0.0,0.0,0.0,2.204,0.0,0.0,8.878,0.897,12.47,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,88.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.755,0.0,19.669,10.989,1.479,0.0,0.0,184.0,126.0,2989.1,5375.4,90.672,27.64,3.697,3.766,20.67,0.0,0.0,1.489,16.102,-13.284,0.0,0.0,14.728,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.522,0.0,0.0,-0.127,-0.987,12.096,0.0,0.0,1.908,0.0,-0.281,-2.742,-0.645,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,0.0,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 +house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 +house024.xml,129.181,129.181,44.059,44.059,0.0,85.122,0.0,0.0,0.0,0.0,0.0,2.117,0.0,0.0,5.375,0.691,16.753,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.176,0.0,16.013,14.653,2.088,0.0,0.0,0.0,0.0,2750.5,3528.1,72.024,17.577,0.0,7.189,30.113,0.0,0.0,0.682,6.988,-7.991,0.0,0.0,5.221,0.0,-0.109,25.401,0.0,1.837,0.0,11.726,-8.633,-2.537,0.0,0.564,1.148,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.499,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.853,5.531,1.379,2176.1,2226.5,14983.5,4452.7,0.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,21856.0,1377.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7041.0,2605.0,3636.0,800.0 +house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,0.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,32212.0,8765.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 +house026.xml,57.14,57.14,24.857,24.857,32.282,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,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,0.0,18.136,0.0,14.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,13.896,0.0,0.0,8.607,2.082,0.0,0.0,0.0,0.0,1554.0,1299.3,17.371,0.0,0.0,1.761,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.103,0.0,-0.058,2.488,0.0,3.127,0.0,0.0,-6.707,-3.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,1294.8,1282.2,8578.8,3023.3,0.0,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 +house027.xml,72.753,72.753,31.736,31.736,41.016,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,7.874,1.017,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,0.0,20.065,0.0,17.882,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.901,0.0,23.04,8.564,5.232,0.0,0.0,0.0,0.0,1580.0,3622.8,24.052,22.72,0.716,1.776,7.887,0.452,0.0,0.591,5.247,-4.028,0.0,0.0,0.376,3.336,-0.14,1.745,0.0,10.425,0.0,2.046,-8.79,-2.845,0.489,1.124,0.653,0.056,0.0,-0.113,-0.286,5.628,0.0,0.0,0.105,3.836,-0.14,-0.365,-0.966,-3.474,0.0,2.595,10.728,3.102,1610.9,1574.7,10579.5,3728.4,0.0,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 +house028.xml,67.831,67.831,29.68,29.68,38.15,0.0,0.0,0.0,0.0,0.0,0.0,0.259,0.0,0.0,7.107,1.515,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,0.0,13.643,0.0,18.121,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.812,0.0,22.735,10.226,3.62,0.0,0.0,0.0,0.0,1517.3,3323.9,20.023,21.223,0.769,1.663,7.049,0.35,0.0,0.432,5.505,-3.79,0.0,0.0,0.236,2.464,-0.05,4.039,0.0,4.464,0.0,1.543,-9.08,-2.901,0.607,1.232,-0.581,0.098,0.0,0.066,-0.712,6.39,0.0,0.0,0.069,1.838,-0.051,-1.081,-1.198,-1.645,0.0,2.913,11.527,3.237,1857.7,1859.4,12951.6,4219.3,0.0,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 +house029.xml,77.601,77.601,29.95,29.95,47.651,0.0,0.0,0.0,0.0,0.0,0.0,0.639,0.0,0.0,6.107,0.906,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,0.0,31.987,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,31.653,0.0,13.604,9.614,0.0,0.0,0.0,0.0,0.0,1604.9,3000.4,28.473,13.951,0.0,3.364,14.695,0.392,0.0,0.308,6.693,-6.461,0.0,0.0,6.932,0.0,-0.085,7.292,0.0,7.304,0.0,3.15,-8.377,-3.711,0.0,1.12,-0.859,0.009,0.0,0.053,0.373,5.722,0.0,0.0,-0.449,0.0,-0.08,-0.809,-1.067,-1.536,0.0,1.215,7.168,2.832,1610.9,1574.7,11033.0,3888.2,0.0,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,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 +house030.xml,57.883,57.883,17.189,17.189,0.0,0.0,40.694,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.377,0.0,13.28,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.883,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,15.992,0.0,0.0,1.68,10.216,0.489,1.112,1.049,5.343,-4.368,0.0,0.0,0.0,3.578,-0.04,2.742,0.0,5.694,0.0,0.0,-7.809,-2.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,1066.0,992.8,6763.9,2581.0,0.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 +house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 +house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.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,1341.9,1264.5,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 +house033.xml,106.743,106.743,14.691,14.691,0.0,92.052,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.371,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,48.38,0.0,0.0,19.125,14.564,0.0,0.0,1.0,10.82,-7.637,0.0,0.0,14.706,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.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,0.0,924.8,0.0,3905.6,1188.1,0.0,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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 +house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.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,1759.0,1745.5,10287.1,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 +house035.xml,63.505,63.505,17.521,17.521,45.985,0.0,0.0,0.0,0.0,0.0,0.0,0.809,0.0,0.0,1.742,0.119,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.522,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.706,0.0,2.673,3.92,3.822,0.0,0.0,102.0,0.0,1326.3,1899.4,39.1,9.67,0.367,6.149,10.862,0.0,0.0,0.538,5.863,-7.44,0.0,0.0,7.797,0.0,0.004,13.61,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.579,-1.589,0.0,0.0,-0.082,-1.219,7.322,0.0,0.0,-4.457,0.0,0.009,-2.738,-0.728,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,0.0,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 +house036.xml,82.314,82.314,26.075,26.075,56.239,0.0,0.0,0.0,0.0,0.0,0.0,0.964,0.0,0.0,5.964,1.051,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.77,0.0,17.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.868,0.0,15.005,8.219,5.837,0.0,0.0,102.0,126.0,1461.8,3231.3,31.799,17.329,5.544,2.267,3.993,0.0,0.0,1.83,6.573,-7.755,0.0,0.0,21.29,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.427,-3.43,1.567,0.119,-0.032,0.0,0.0,-0.224,-0.58,6.698,0.0,0.0,2.216,0.0,-0.0,-0.749,-0.419,-0.061,0.0,0.0,4.352,2.019,1341.9,1264.5,6447.0,2476.3,0.0,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 +house037.xml,87.934,87.934,21.779,21.779,0.0,66.155,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,49.998,0.0,16.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,37.091,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,29.538,0.0,0.0,16.714,11.33,0.0,0.0,1.563,7.276,-10.49,0.0,0.0,6.59,0.0,-0.309,14.696,0.0,0.461,0.0,0.0,-6.818,-3.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,1341.9,1264.5,8324.2,3197.3,0.0,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 +house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 +house039.xml,98.796,98.796,24.025,24.025,74.77,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,5.136,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.084,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,49.765,0.0,0.0,14.276,5.416,0.0,0.0,2.519,15.643,-13.75,0.0,0.0,13.85,0.0,-0.039,13.263,0.0,0.557,0.0,0.0,-4.135,-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,2176.1,2226.5,17536.3,5211.3,0.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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 +house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 +house041.xml,259.077,259.077,47.133,47.133,211.944,0.0,0.0,0.0,0.0,0.0,0.0,4.164,0.0,0.0,2.576,0.254,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,0.0,185.392,0.0,26.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,174.689,0.0,4.652,15.632,5.039,0.0,0.0,105.0,0.0,3249.4,4561.5,77.749,23.467,0.0,11.26,44.834,3.482,34.914,3.052,41.616,-22.892,0.0,0.0,4.341,17.423,-0.477,64.05,0.0,2.763,0.0,0.0,-20.286,-10.995,0.0,0.097,-2.224,-0.127,1.602,-0.212,-4.015,11.033,0.0,0.0,-0.321,-5.328,-0.475,-3.481,-1.022,-0.258,0.0,0.0,6.561,2.948,1857.7,1859.4,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 +house042.xml,229.67,229.67,40.068,40.068,189.602,0.0,0.0,0.0,0.0,0.0,0.0,3.871,0.0,0.0,1.81,0.074,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,0.0,165.165,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.395,0.0,2.999,15.632,3.226,0.0,0.0,0.0,0.0,2758.3,3100.3,88.214,19.624,0.0,9.205,40.053,4.031,43.891,2.672,34.445,-21.633,0.0,0.0,2.453,14.538,-0.385,56.223,0.0,1.75,0.0,0.0,-19.152,-7.587,0.0,0.2,-1.588,-0.07,2.68,-0.16,-3.134,7.067,0.0,0.0,-0.272,-5.113,-0.382,-2.85,-0.642,-0.145,0.0,0.0,5.557,1.952,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 +house043.xml,158.13,158.13,30.051,30.051,128.078,0.0,0.0,0.0,0.0,0.0,0.0,2.456,0.0,0.0,2.028,0.119,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,0.0,108.178,0.0,19.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,103.04,0.0,3.036,13.084,2.207,0.0,0.0,0.0,0.0,1988.8,2798.1,54.664,13.818,0.0,3.172,23.263,2.301,33.889,5.621,23.662,-11.489,0.0,0.0,0.55,9.952,-0.267,28.928,0.0,1.576,0.0,0.0,-14.359,-5.16,0.0,0.032,-0.925,-0.1,1.55,-0.379,-2.383,5.793,0.0,0.0,-0.07,-3.676,-0.267,-1.616,-0.538,-0.147,0.0,0.0,4.463,1.402,1610.9,1574.7,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 +house044.xml,225.894,225.894,43.51,43.51,182.384,0.0,0.0,0.0,0.0,0.0,0.0,4.68,0.0,0.0,2.094,0.198,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,0.0,159.817,0.0,22.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.487,0.0,3.747,13.084,4.452,0.0,0.0,0.0,0.0,3093.4,3553.3,80.982,18.914,4.373,6.905,36.478,9.231,19.305,2.751,19.057,-13.33,0.0,0.0,12.909,15.111,-0.46,61.886,0.0,1.435,0.0,0.0,-18.031,-10.257,0.237,0.441,-1.46,-0.13,1.17,-0.123,-1.231,6.794,0.0,0.0,-1.164,-4.927,-0.458,-2.728,-0.484,-0.102,0.0,0.0,5.295,2.697,1610.9,1574.7,12168.1,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 +house045.xml,152.693,152.693,35.232,35.232,117.461,0.0,0.0,0.0,0.0,0.0,0.0,2.782,0.0,0.0,2.392,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,0.0,95.008,0.0,22.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,88.27,0.0,4.026,13.084,4.363,0.0,0.0,0.0,0.0,2317.8,3011.2,47.289,12.909,3.57,3.077,15.169,2.298,32.784,1.143,19.974,-13.617,1.045,-0.407,0.086,12.672,-0.187,20.635,0.0,10.931,0.0,0.0,-14.663,-7.028,-0.017,0.001,-1.114,-0.131,0.881,-0.09,-2.086,7.133,-0.068,0.396,-0.013,-4.082,-0.186,-1.184,-0.915,-1.259,0.0,0.0,4.825,2.036,1610.9,1574.7,12168.1,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 +house046.xml,25.037,25.037,25.037,25.037,0.0,0.0,0.0,0.0,0.0,0.0,5.364,0.446,0.267,0.009,3.738,1.038,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,0.0,13.922,0.276,12.84,4.305,0.617,0.0,0.0,0.0,0.0,3842.0,2404.7,16.167,13.004,0.0,2.525,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.275,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.814,4.589,0.545,596.8,442.2,5543.5,2208.6,0.0,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,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 +house047.xml,20.762,20.762,14.475,14.475,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.596,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,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,0.0,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.4,968.8,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.729,-0.554,0.0,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.101,0.032,0.0,0.0,-0.093,0.798,0.0,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.276,0.409,251.7,442.2,5772.6,1524.2,0.0,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,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 +house048.xml,91.642,91.642,39.796,39.796,51.846,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,12.899,3.824,0.0,0.0,0.0,3.691,0.085,0.498,3.017,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,0.0,35.87,0.0,12.637,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.021,0.0,51.358,7.253,2.688,0.0,0.0,0.0,0.0,1535.9,5475.4,42.021,33.069,1.024,2.643,12.009,0.0,0.0,0.815,4.922,-2.545,0.0,0.0,0.058,2.032,-0.525,6.797,0.0,4.194,0.0,6.419,-7.415,-1.512,1.323,1.018,9.256,0.0,0.0,0.549,2.757,4.297,0.0,0.0,0.072,10.121,-0.513,0.526,-0.449,1.931,0.0,6.917,11.576,2.179,130.3,817.7,11617.6,3495.1,0.0,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,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 +house049.xml,32.038,32.038,28.541,28.541,3.497,0.0,0.0,0.0,0.0,0.0,5.888,0.036,0.0,0.0,5.819,0.147,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.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.239,0.0,33.85,4.262,1.306,0.0,0.0,0.0,90.0,4432.3,2181.9,12.361,17.634,0.0,1.38,4.471,0.0,0.0,0.0,3.895,-7.574,0.0,0.0,0.0,1.446,-0.075,2.582,0.0,1.809,0.0,0.0,-2.437,-0.44,0.0,1.489,6.503,0.0,0.0,0.0,3.26,15.042,0.0,0.0,0.0,2.984,-0.076,-0.307,-3.541,0.516,0.0,0.0,7.53,1.034,728.6,567.4,7487.2,928.5,0.0,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,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 +house050.xml,51.837,51.837,21.855,21.855,29.983,0.0,0.0,0.0,0.0,0.0,0.0,0.275,0.0,0.0,1.904,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,0.0,16.067,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.694,0.0,5.132,8.572,0.0,0.0,0.0,0.0,0.0,1156.7,2604.3,11.114,15.388,0.0,4.133,6.508,0.0,0.0,2.031,5.644,-4.221,0.0,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.921,-10.283,-1.232,0.0,-0.288,-0.312,0.0,0.0,-0.391,-0.567,4.041,0.0,0.0,-0.956,0.0,-0.123,-0.557,-1.219,-0.76,0.0,0.568,5.253,0.551,1689.0,437.0,10674.9,2994.2,0.0,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,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 From 59e7479de8f4995db6029b5f1b3acb9676cffc35 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 14 Jul 2023 15:58:13 +0000 Subject: [PATCH 069/217] Latest results. --- workflow/tests/base_results/results.csv | 989 ++++++++++++------------ 1 file changed, 495 insertions(+), 494 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index c2d604b9ed..529e0c8870 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -1,494 +1,495 @@ -HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: 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: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),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 Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),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) -base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,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,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,22.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-portable.xml,34.583,34.583,33.262,33.262,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.604,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,1.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,1.18,0.0,30.514,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.1,9.476,14.236,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.307,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.344,9.575,1.88,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-ief-whole-home.xml,34.611,34.611,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.655,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,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15,0.0,30.49,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2767.0,9.495,14.236,0.0,1.77,1.652,0.0,0.0,0.392,5.039,-4.911,0.0,0.0,0.0,1.312,-0.373,1.058,0.077,0.399,0.0,0.032,-4.78,-0.772,0.0,0.548,-0.009,0.0,0.0,0.206,1.933,17.103,0.0,0.0,0.0,1.819,-0.368,-0.332,-1.9,-0.091,0.0,0.344,9.532,1.875,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-multiple.xml,34.574,34.574,33.184,33.184,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.813,1.88,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.541,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,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.452,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.3,9.552,14.236,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.035,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.344,9.512,1.873,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier.xml,34.548,34.548,33.243,33.243,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.818,1.882,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.593,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.174,0.0,30.467,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.0,9.548,14.236,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.344,9.498,1.87,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.167,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,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,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,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,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,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,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,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,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,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 -base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,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,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,67.293,67.293,40.782,40.782,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.921,0.983,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,0.0,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.831,0.0,16.409,9.18,0.614,0.0,0.0,0.0,0.0,2378.3,3719.8,26.547,20.758,4.552,1.164,5.544,0.518,7.651,0.635,15.399,-16.987,0.0,0.0,0.0,8.521,-0.082,7.083,0.0,0.73,0.0,3.11,-10.232,-3.183,0.005,0.021,-0.566,-0.053,2.687,-0.029,-3.027,17.676,0.0,0.0,0.0,-6.349,-0.075,-1.69,-4.153,-0.166,0.0,0.937,8.933,2.568,1354.8,997.6,11399.6,2521.8,36000.0,24000.0,0.0,6.8,91.76,38184.0,7494.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18712.0,182.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,37.385,37.385,33.168,33.168,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.236,1.963,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,0.0,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.893,0.0,31.745,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3190.7,13.54,17.969,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.366,9.113,1.789,1354.8,997.6,9989.0,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,22162.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,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,0.0,22.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,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.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,30483.0,4824.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.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,0.0,22.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,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,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,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,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,0.0,60.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,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.626,36.626,24.815,24.815,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.087,0.0,0.0,1.608,0.207,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,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,0.0,3.054,9.538,0.73,0.0,0.0,0.0,0.0,1572.5,2015.2,7.667,5.819,0.0,2.94,3.649,0.0,0.0,0.582,1.416,-1.582,0.0,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-4.25,-1.186,0.0,-0.922,-0.231,0.0,0.0,-0.054,-0.234,1.305,0.0,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.559,3.423,0.841,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-multiple.xml,31.845,31.845,25.255,25.255,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,2.093,0.314,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,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,0.0,4.965,9.538,0.61,0.0,0.0,0.0,0.0,1562.3,2239.8,9.397,10.552,0.0,-0.004,3.294,0.0,0.0,1.383,4.001,-4.202,0.0,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-6.296,-1.142,0.0,0.0,-0.445,0.0,0.0,-0.418,-0.571,3.958,0.0,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.481,5.704,0.884,1354.8,997.6,11399.5,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,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.799,49.799,24.82,24.82,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,1.466,0.173,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,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,0.0,2.504,9.538,0.818,0.0,0.0,0.0,0.0,1579.9,2256.3,11.078,8.452,0.0,5.364,4.204,0.0,0.0,0.788,1.403,-1.699,0.0,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-4.485,-1.249,0.0,-1.186,-0.054,0.0,0.0,-0.054,-0.122,1.188,0.0,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.528,3.187,0.778,1354.8,997.6,11399.5,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,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.041,26.041,24.679,24.679,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.632,0.213,9.742,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,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,0.0,3.156,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2015.1,3.416,5.821,0.0,0.353,3.152,0.0,0.0,0.376,1.484,-1.49,0.0,0.0,0.375,0.0,-0.006,1.698,0.0,0.0,0.0,0.387,-4.015,-1.12,0.0,-0.831,-0.466,0.0,0.0,-0.076,-0.345,1.397,0.0,0.0,-0.847,0.0,-0.002,-0.394,-0.388,0.0,0.0,0.576,3.657,0.907,1354.8,997.6,11399.5,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.343,26.343,25.227,25.227,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.109,0.333,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,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,0.0,5.133,9.538,0.587,0.0,0.0,0.0,0.0,1559.4,1834.6,3.707,4.327,0.0,-0.003,3.197,0.0,0.0,0.368,1.519,-1.394,0.0,0.0,-0.002,0.0,-0.063,1.76,0.0,0.0,0.0,0.321,-3.692,-1.021,0.0,-0.001,-0.556,0.0,0.0,-0.044,-0.506,1.493,0.0,0.0,-0.0,0.0,-0.059,-0.532,-0.512,0.0,0.0,0.913,3.98,1.006,1354.8,997.6,11399.5,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,6278.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.841,26.841,26.284,26.284,0.557,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.967,0.547,9.684,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.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,0.514,0.0,8.85,9.538,0.575,0.0,0.0,0.0,0.0,1703.9,1962.7,3.256,6.985,0.0,-0.013,2.505,0.0,0.0,0.42,4.041,-2.559,0.0,0.0,-0.009,0.0,-0.344,0.994,0.0,0.68,0.0,0.0,-4.559,-0.773,0.0,-0.008,-1.074,0.0,0.0,-0.048,-1.702,5.598,0.0,0.0,-0.004,0.0,-0.334,-0.402,-1.335,-0.391,0.0,0.0,7.407,1.254,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 -base-bldgtype-multifamily-residents-1.xml,19.898,19.898,18.595,18.595,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.363,0.394,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,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,0.0,6.696,4.213,0.585,0.0,0.0,0.0,0.0,1104.0,1602.9,3.916,6.507,0.0,-0.014,2.619,0.0,0.0,0.418,4.236,-3.104,0.0,0.0,-0.012,0.0,-0.305,1.3,0.0,0.75,0.0,0.0,-3.826,-0.937,0.0,-0.01,-0.765,0.0,0.0,-0.014,-1.207,5.053,0.0,0.0,-0.007,0.0,-0.297,-0.396,-1.194,-0.272,0.0,0.0,4.803,1.089,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.394,27.394,26.696,26.696,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.0,3.07,0.825,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1670.4,2088.4,3.455,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.149,28.149,27.404,27.404,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,3.656,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1695.4,2322.2,3.602,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.038,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,8647.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.679,27.679,27.017,27.017,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.346,0.825,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.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.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1680.5,2160.3,3.454,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,32.821,32.821,32.278,32.278,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,8.52,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1940.2,3671.7,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.766,27.766,27.223,27.223,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,3.465,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1688.5,2269.4,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1509.2,1333.8,3.459,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.356,23.356,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1522.4,1334.7,3.605,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.749,22.749,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1534.7,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.28,23.28,22.878,22.878,0.402,0.0,0.0,0.0,0.0,0.0,0.129,0.064,0.0,0.0,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.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1648.9,1334.7,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.303,23.303,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1536.8,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1528.0,1334.7,3.537,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.649,26.649,26.649,26.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.054,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1670.9,2071.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.327,27.327,27.327,27.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.637,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1702.6,2322.2,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922,26.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1681.0,2152.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.964,27.964,27.964,27.964,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.813,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.8,1818.6,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.708,32.708,27.342,27.342,5.366,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.574,0.439,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,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,0.0,7.061,9.538,0.588,0.0,0.0,0.0,0.0,1711.5,2147.3,4.167,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,4.308,-3.183,0.0,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-5.414,-0.952,0.0,-0.009,-0.693,0.0,0.0,-0.005,-1.118,4.974,0.0,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,6.564,1.074,1354.8,997.6,11399.5,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent.xml,31.03,31.03,27.217,27.217,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,2.492,0.416,9.705,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,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,0.0,6.838,9.538,0.598,0.0,0.0,0.0,0.0,1638.9,2132.2,5.993,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,4.232,-3.684,0.0,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-5.86,-1.052,0.0,-0.008,-0.511,0.0,0.0,-0.01,-0.941,4.473,0.0,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,6.129,0.974,1354.8,997.6,11399.5,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-pv.xml,26.899,2.451,26.223,1.775,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.901,30.901,17.531,17.531,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,1052.2,1525.8,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater.xml,29.805,29.805,16.435,16.435,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,999.5,1473.1,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.33,37.33,37.33,37.33,0.0,0.0,0.0,0.0,0.0,0.0,5.334,0.368,0.0,0.0,2.577,1.082,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.879,0.0,13.352,9.232,0.614,2.924,0.0,0.0,0.0,3214.6,2123.0,20.972,15.079,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.095,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.824,8.485,2.01,1354.8,997.6,11413.1,2618.9,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.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,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,0.0,18.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.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,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,0.0,24.587,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1066.9,770.9,9019.2,2069.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,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,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.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,388.3,286.5,3205.6,735.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.67,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,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,0.0,23.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,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,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,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.89,0.0,13.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,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-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,1075.0,777.3,9103.8,2089.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.106,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.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.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,472.0,347.5,3998.4,917.5,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,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,0.0,22.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,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,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,0.0,23.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,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,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,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,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,0.0,22.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,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,17.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,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,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,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,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,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,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,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,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,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,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,0.0,25.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,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,48000.0,36000.0,0.0,6.8,91.76,43789.0,7646.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,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,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,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,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,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,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,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,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 -base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.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,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 -base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,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,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,67.648,67.648,29.356,29.356,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.632,0.0,0.0,3.58,0.646,9.367,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,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.866,0.0,10.726,9.342,0.621,0.0,0.0,0.0,0.0,1766.6,3491.4,29.153,20.79,0.0,3.477,3.648,0.0,0.0,0.67,9.92,-12.906,0.0,0.0,29.048,0.0,-0.198,2.052,0.0,0.787,0.0,7.954,-7.487,-1.578,0.0,0.424,-0.063,0.0,0.0,0.096,0.383,10.935,0.0,0.0,-7.934,0.0,-0.193,-0.259,-1.855,-0.085,0.0,2.655,5.717,1.069,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,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,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,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,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,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,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,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,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,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,22.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,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,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,22.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,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,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,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,40.753,40.753,29.446,29.446,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.84,0.724,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,0.0,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,11.955,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2605.0,13.185,12.044,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.304,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.076,6.354,1.189,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,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 -base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,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,22.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,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,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,0.0,40.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,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.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,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,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,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,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,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,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,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,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-ambient.xml,48.007,48.007,30.285,30.285,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.292,0.0,0.0,4.61,0.898,9.354,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,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.601,0.0,15.077,9.342,0.606,0.0,0.0,0.0,2.0,1740.7,3397.3,20.514,21.089,0.0,3.835,3.846,0.0,0.0,0.76,10.831,-11.429,0.0,0.0,10.226,0.0,-0.403,2.065,0.0,0.789,0.0,3.979,-6.811,-1.44,0.0,-0.046,-0.527,0.0,0.0,0.028,-0.75,12.412,0.0,0.0,-3.67,0.0,-0.396,-0.402,-2.391,-0.154,0.0,3.577,6.38,1.207,1354.8,997.6,11399.5,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,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,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,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 -base-foundation-belly-wing-no-skirt.xml,49.694,49.694,29.445,29.445,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,3.895,0.731,9.354,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,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.964,0.0,12.009,9.342,0.607,0.0,0.0,0.0,0.0,1753.6,3211.6,24.176,17.286,0.0,3.981,5.371,0.0,0.0,0.753,8.835,-11.05,0.0,0.0,10.267,0.0,-0.35,2.069,0.0,0.794,0.0,6.238,-6.883,-1.459,0.0,0.302,-0.601,0.0,0.0,0.038,-0.188,9.522,0.0,0.0,-3.443,0.0,-0.343,-0.395,-2.184,-0.144,0.0,2.215,6.308,1.188,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-belly-wing-skirt.xml,49.322,49.322,29.453,29.453,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.328,0.0,0.0,3.906,0.734,9.354,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,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.608,0.0,12.062,9.342,0.607,0.0,0.0,0.0,0.0,1752.3,3180.5,24.023,17.245,0.0,3.987,5.379,0.0,0.0,0.753,8.843,-11.04,0.0,0.0,9.969,0.0,-0.345,2.068,0.0,0.793,0.0,6.125,-6.873,-1.457,0.0,0.296,-0.61,0.0,0.0,0.036,-0.211,9.532,0.0,0.0,-3.365,0.0,-0.338,-0.399,-2.199,-0.146,0.0,2.221,6.318,1.191,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-complex.xml,78.103,78.103,37.261,37.261,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.674,0.0,0.0,5.116,1.028,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.25,0.0,17.361,9.233,0.617,0.0,0.0,0.0,2.0,2171.5,3845.1,33.417,21.451,0.0,3.431,3.657,0.52,19.54,0.65,10.564,-12.717,0.0,0.0,0.0,8.705,-0.111,6.102,0.0,0.739,0.0,8.38,-9.124,-2.557,0.0,0.048,-0.359,-0.044,3.767,-0.003,-1.508,11.564,0.0,0.0,0.0,-4.519,-0.103,-1.227,-3.259,-0.137,0.0,3.71,7.657,1.952,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,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,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,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,0.0,18.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,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 -base-foundation-multiple.xml,42.738,42.738,29.706,29.706,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.218,0.812,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,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,0.0,13.443,9.285,0.693,0.0,0.0,0.0,0.0,1723.6,2714.9,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,10.857,-11.246,0.0,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-4.636,-1.429,0.0,-0.098,-0.674,0.0,0.0,-0.018,-1.077,12.595,0.0,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.65,4.23,1.218,1354.8,997.6,11399.4,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,14275.0,222.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-slab.xml,39.954,39.954,29.299,29.299,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.9,0.74,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,0.0,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.972,0.0,12.215,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2611.5,12.703,12.011,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.078,6.379,1.193,1354.8,997.6,11399.5,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,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-above-grade.xml,43.94,43.94,29.852,29.852,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.308,0.833,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,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,0.0,13.834,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.0,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,10.912,-11.281,0.0,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.069,12.56,0.0,0.0,-0.506,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.93,4.211,1.213,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,14270.0,226.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-assembly-r.xml,41.196,41.196,29.243,29.243,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.197,0.0,0.0,3.847,0.722,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,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,0.0,11.864,9.285,0.71,0.0,0.0,0.0,0.0,1718.3,2855.2,14.652,12.883,0.0,3.994,3.856,0.0,0.0,0.759,10.855,-11.125,0.0,0.0,4.456,0.0,-0.343,2.583,0.0,0.0,0.0,1.82,-4.614,-1.421,0.0,-0.074,-0.626,0.0,0.0,0.009,-1.062,12.715,0.0,0.0,-2.011,0.0,-0.339,-0.564,-2.512,0.0,0.0,1.12,4.251,1.226,1354.8,997.6,11399.5,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,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-wall-insulation.xml,48.948,48.948,28.952,28.952,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.558,0.653,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,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,0.0,10.743,9.285,0.64,0.0,0.0,0.0,0.0,1726.7,2483.3,16.597,11.56,0.0,3.723,3.619,0.0,0.0,0.633,9.712,-12.351,0.0,0.0,14.373,0.0,-0.047,2.46,0.0,0.0,0.0,2.599,-4.778,-1.481,0.0,0.063,-0.441,0.0,0.0,-0.015,-0.972,11.49,0.0,0.0,-2.769,0.0,-0.045,-0.521,-2.405,0.0,0.0,1.302,4.088,1.166,1354.8,997.6,11399.5,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,15218.0,128.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement.xml,42.817,42.817,29.736,29.736,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,4.234,0.816,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,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,0.0,13.513,9.285,0.703,0.0,0.0,0.0,0.0,1723.8,2921.5,15.45,14.318,0.0,3.994,3.853,0.0,0.0,0.749,10.805,-11.235,0.0,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-4.634,-1.429,0.0,-0.077,-0.629,0.0,0.0,-0.0,-1.111,12.605,0.0,0.0,-0.673,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.724,4.231,1.218,1354.8,997.6,11399.5,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,14277.0,222.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,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,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,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,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,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,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,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,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-walkout-basement.xml,64.814,64.814,36.328,36.328,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,4.532,0.884,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,0.0,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.677,0.0,14.89,9.233,0.615,0.0,0.0,0.0,0.0,2125.9,3513.1,26.787,19.805,0.0,3.523,3.688,0.52,7.364,0.646,11.292,-12.794,0.0,0.0,0.0,10.155,-0.066,6.639,0.0,0.728,0.0,6.073,-8.935,-2.506,0.0,-0.099,-0.515,-0.06,1.48,-0.031,-2.074,12.046,0.0,0.0,0.0,-3.677,-0.061,-1.529,-3.357,-0.16,0.0,3.264,7.844,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,0.0,15.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.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,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,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.645,42.645,42.645,42.645,0.0,0.0,0.0,0.0,0.0,0.0,9.823,1.762,0.591,0.052,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,0.0,23.588,0.643,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7296.6,1637.3,25.567,0.0,0.0,3.452,3.637,0.512,7.485,0.629,10.516,-12.551,0.0,0.0,0.0,8.112,-0.066,4.805,0.0,0.728,0.0,7.372,-8.907,-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,1354.8,997.6,11399.5,2615.8,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.145,46.145,46.145,46.145,0.0,0.0,0.0,0.0,0.0,0.0,9.718,1.011,0.443,0.024,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.466,13.102,9.233,0.614,0.0,0.0,0.0,0.0,6954.5,3209.9,24.358,15.771,0.0,3.499,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.018,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,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,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,0.0,21.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.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,25971.0,25971.0,11194.0,51.62,90.68,11194.0,4365.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.698,44.698,44.698,44.698,0.0,0.0,0.0,0.0,0.0,0.0,9.125,0.912,0.046,0.006,3.198,0.971,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.362,0.052,11.97,9.233,0.614,0.0,0.0,0.0,0.0,6628.4,2912.2,22.625,13.15,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.864,-8.907,-2.499,0.0,0.037,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.05,7.871,2.01,1354.8,997.6,11399.5,2615.8,65908.0,65908.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,24186.0,24186.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.554,41.554,41.554,41.554,0.0,0.0,0.0,0.0,0.0,0.0,7.131,0.629,0.416,0.017,2.294,0.626,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.433,13.325,9.233,0.614,0.0,0.0,0.0,0.0,6922.4,2762.7,24.33,16.718,0.0,3.453,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.249,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.431,7.871,2.01,1354.8,997.6,11399.5,2615.8,33416.0,33416.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.544,40.544,40.544,40.544,0.0,0.0,0.0,0.0,0.0,0.0,6.849,0.507,0.049,0.005,2.124,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.035,0.054,12.091,9.233,0.614,0.0,0.0,0.0,0.0,6732.2,2521.0,23.383,13.585,0.0,3.588,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.557,-8.907,-2.499,0.0,0.034,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.172,7.871,2.01,1354.8,997.6,11399.5,2615.8,65567.0,65567.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.171,51.171,37.619,37.619,13.551,0.0,0.0,0.0,0.0,0.0,4.154,0.37,0.0,0.138,2.31,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.722,11.262,14.452,9.233,0.615,0.0,0.0,2.0,0.0,3194.1,2672.7,23.547,17.679,0.0,3.375,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.35,-8.918,-2.502,0.0,-0.058,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.697,7.861,2.008,1354.8,997.6,11399.5,2615.8,33628.0,33628.0,23640.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.458,54.458,37.825,37.825,16.632,0.0,0.0,0.0,0.0,0.0,4.006,0.353,0.0,0.501,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,28.514,13.807,14.556,9.233,0.614,0.0,0.0,2.0,0.0,3328.2,2622.0,30.614,17.514,0.0,3.251,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.289,-0.061,4.804,0.0,0.728,0.0,12.284,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.063,-0.165,0.0,3.704,7.87,2.01,1354.8,997.6,11399.5,2615.8,33628.0,33628.0,32235.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,26367.0,26367.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.158,41.158,41.158,41.158,0.0,0.0,0.0,0.0,0.0,0.0,7.314,0.748,0.123,0.008,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.792,0.131,14.556,9.233,0.614,0.0,0.0,0.0,0.0,7031.0,2622.0,24.672,17.514,0.0,3.37,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.48,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.703,7.87,2.01,1354.8,997.6,11399.5,2615.8,33628.0,33628.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.898,40.898,40.898,40.898,0.0,0.0,0.0,0.0,0.0,0.0,7.281,0.641,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.771,0.057,13.49,9.233,0.614,0.0,0.0,0.0,0.0,6896.7,2561.9,23.811,16.273,0.0,3.447,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.401,-8.907,-2.499,0.0,-0.02,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.608,7.871,2.01,1354.8,997.6,11399.5,2615.8,50423.0,50423.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-elec-only.xml,48.203,48.203,48.203,48.203,0.0,0.0,0.0,0.0,0.0,0.0,17.594,0.191,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.2,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.331,55.331,36.429,36.429,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2096.7,3330.0,16.459,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,23640.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-only.xml,49.354,49.354,30.642,30.642,18.712,0.0,0.0,0.0,0.0,0.0,0.0,0.224,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,18.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2057.9,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20155.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,0.0,17.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.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,20283.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.538,48.538,48.538,48.538,0.0,0.0,0.0,0.0,0.0,0.0,9.911,1.779,0.593,0.052,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.645,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7326.8,3330.1,25.567,17.819,0.0,3.446,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.439,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,31147.0,19922.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.275,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.283,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.275,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.283,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.666,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,26139.0,26139.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.666,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-evap-cooler-furnace-gas.xml,56.319,56.319,32.044,32.044,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,0.0,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,1915.1,25.1,11.075,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,32235.0,13458.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-elec-only.xml,53.605,53.605,53.605,53.605,0.0,0.0,0.0,0.0,0.0,0.0,22.563,0.625,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,0.0,22.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8622.9,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.875,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2124.3,2947.8,24.237,18.493,0.0,3.51,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.863,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,32235.0,20155.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,32235.0,20283.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.248,34.248,34.248,34.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.895,0.867,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.692,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2851.9,0.0,17.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.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.15,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.793,36.793,36.793,36.793,0.0,0.0,0.0,0.0,0.0,0.0,5.562,0.814,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,0.0,21.117,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3411.0,1637.3,23.44,0.0,0.0,3.549,3.636,0.512,7.483,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.833,-8.907,-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,1354.8,997.6,11399.5,2615.8,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.933,39.933,39.933,39.933,0.0,0.0,0.0,0.0,0.0,0.0,5.492,0.686,0.0,0.0,2.507,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.116,0.0,13.27,9.233,0.614,0.0,0.0,0.0,0.0,3358.9,2541.2,22.968,15.706,0.0,3.552,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.667,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.379,7.871,2.01,1354.8,997.6,11399.5,2615.8,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,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,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-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,1354.8,997.6,11399.5,2615.8,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,19866.0,19866.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.91,38.91,38.91,38.91,0.0,0.0,0.0,0.0,0.0,0.0,5.84,0.317,0.073,0.002,2.16,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,0.0,19.98,0.075,12.245,9.233,0.614,0.0,0.0,0.0,0.0,4268.2,2191.0,19.501,13.372,0.0,3.593,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.501,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.402,38.402,38.402,38.402,0.0,0.0,0.0,0.0,0.0,0.0,5.406,0.268,0.0,0.0,2.213,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.045,0.0,11.734,9.233,0.614,0.0,0.0,0.0,0.0,3640.7,2214.0,19.188,12.558,0.0,3.624,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.54,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.818,7.871,2.01,1354.8,997.6,11399.5,2615.8,41843.0,41843.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.75,37.75,37.75,37.75,0.0,0.0,0.0,0.0,0.0,0.0,5.078,0.102,0.042,0.0,2.06,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.042,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3682.6,2120.6,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.614,35.614,0.0,12.321,0.0,0.0,0.0,0.0,3.012,0.092,0.0,0.0,2.043,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.658,7.393,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2846.2,2123.8,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,49.605,49.605,42.912,42.912,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.191,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2614.2,3427.5,16.894,14.883,0.0,2.873,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.449,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,31430.0,27561.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-stove-oil-only.xml,52.275,52.275,30.519,30.519,0.0,21.756,0.0,0.0,0.0,0.0,0.0,0.1,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,21.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.5,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize.xml,59.984,59.984,36.217,36.217,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.324,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2126.9,3189.8,24.296,18.003,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.91,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,32235.0,19922.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,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,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,24.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,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,19.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.929,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.276,11.121,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.39,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.179,15.199,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.042,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.535,15.232,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.756,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,26.265,15.613,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,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,0.0,47.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,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,71259.0,33168.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,28612.0,4972.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,34496.0,10856.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32660.0,9020.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,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,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,0.0,14.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.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fixed-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,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,0.0,26.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,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,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,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,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,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,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-borefield-configuration.xml,39.547,39.547,39.547,39.547,0.0,0.0,0.0,0.0,0.0,0.0,5.239,0.361,0.0,0.0,2.477,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.538,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3210.2,2594.4,20.925,14.708,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.046,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-count.xml,39.549,39.549,39.549,39.549,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.361,0.0,0.0,2.475,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3211.0,2581.1,20.927,14.697,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.047,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-diameter.xml,39.554,39.554,39.554,39.554,0.0,0.0,0.0,0.0,0.0,0.0,5.248,0.362,0.0,0.0,2.474,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.2,2583.0,20.879,14.701,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-length.xml,39.502,39.502,39.502,39.502,0.0,0.0,0.0,0.0,0.0,0.0,5.23,0.359,0.0,0.0,2.446,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.531,0.0,12.672,9.233,0.614,0.0,0.0,0.0,0.0,3202.1,2567.5,20.83,14.681,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.039,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-spacing.xml,39.494,39.494,39.494,39.494,0.0,0.0,0.0,0.0,0.0,0.0,5.227,0.359,0.0,0.0,2.441,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.53,0.0,12.672,9.233,0.614,0.0,0.0,0.0,0.0,3200.5,2567.2,20.821,14.681,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.037,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.759,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-ground-diffusivity.xml,39.564,39.564,39.564,39.564,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.362,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3214.1,2584.5,20.886,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-grout-conductivity.xml,39.552,39.552,39.552,39.552,0.0,0.0,0.0,0.0,0.0,0.0,5.249,0.362,0.0,0.0,2.471,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3212.6,2577.4,20.87,14.693,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-loop-flow.xml,39.565,39.565,39.565,39.565,0.0,0.0,0.0,0.0,0.0,0.0,5.254,0.363,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3210.4,2582.7,20.87,14.7,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-conductivity.xml,39.542,39.542,39.542,39.542,0.0,0.0,0.0,0.0,0.0,0.0,5.245,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.3,2577.1,20.864,14.693,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.762,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-diameter.xml,39.539,39.539,39.539,39.539,0.0,0.0,0.0,0.0,0.0,0.0,5.241,0.361,0.0,0.0,2.468,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.538,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3208.7,2572.8,20.907,14.686,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.046,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.511,39.511,39.511,39.511,0.0,0.0,0.0,0.0,0.0,0.0,5.234,0.36,0.0,0.0,2.45,1.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.533,0.0,12.673,9.233,0.614,0.0,0.0,0.0,0.0,3204.7,2568.5,20.838,14.682,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.041,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop.xml,39.08,39.08,39.08,39.08,0.0,0.0,0.0,0.0,0.0,0.0,5.08,0.34,0.0,0.0,2.219,1.001,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.439,0.0,12.644,9.233,0.614,0.0,0.0,0.0,0.0,3122.8,2459.5,20.484,14.586,0.0,3.61,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.944,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.732,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.794,33.794,33.794,33.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.534,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.0,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.643,36.643,36.643,36.643,0.0,0.0,0.0,0.0,0.0,0.0,5.449,0.777,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,0.0,20.372,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3362.4,1637.3,22.29,0.0,0.0,3.576,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.067,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.1,2577.8,20.865,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.358,41.358,41.358,41.358,0.0,0.0,0.0,0.0,0.0,0.0,6.658,0.379,0.0,0.0,2.92,0.961,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.424,0.0,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3442.3,2724.4,21.792,15.702,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.955,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.235,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-library-test-case.xml,39.021,39.021,39.021,39.021,0.0,0.0,0.0,0.0,0.0,0.0,5.056,0.337,0.0,0.0,2.19,0.998,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.426,0.0,12.642,9.233,0.614,0.0,0.0,0.0,0.0,3117.3,2452.1,20.464,14.58,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.931,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.73,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,0.0,12.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,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,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,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,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,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,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,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.293,66.293,51.861,51.861,7.155,3.599,3.679,0.0,0.0,0.0,13.641,0.858,0.197,0.008,6.164,0.552,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.667,0.205,18.96,9.233,0.615,0.0,0.0,0.0,3.0,6379.1,4054.4,37.469,22.828,0.0,3.418,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.265,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.235,7.859,2.007,1354.8,997.6,11399.5,2615.8,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.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,1354.8,997.6,8540.6,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 -base-hvac-portable-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,0.0,3.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.01,-0.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,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,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,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,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,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,0.0,0.0,0.0,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,56.19,56.19,35.529,35.529,20.661,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,3.959,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,20.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,19.378,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2961.2,20.444,15.145,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.888,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,28898.0,18434.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,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,0.0,15.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,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,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,0.0,22.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,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-kwh-per-year.xml,60.469,60.469,39.553,39.553,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.535,0.889,9.163,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.996,9.233,0.613,0.0,0.0,0.0,0.0,2416.3,3795.3,22.788,18.414,0.0,3.575,3.655,0.514,7.569,0.633,10.56,-12.521,0.0,0.0,0.0,8.359,-0.067,4.811,0.0,0.729,0.0,4.568,-8.891,-4.249,0.0,-0.085,-0.489,-0.055,2.612,-0.033,-2.015,11.745,0.0,0.0,0.0,-6.471,-0.063,-1.192,-3.199,-0.169,0.0,3.277,7.886,3.428,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,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,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,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,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 -base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,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,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,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,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,15107.0,1151.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 -base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,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.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,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,13718.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 -base-location-dallas-tx.xml,34.353,34.353,32.588,32.588,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.767,1.868,6.814,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,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,0.0,30.193,6.675,0.573,0.0,0.0,0.0,0.0,2014.4,2771.1,9.706,14.235,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.343,9.5,1.888,1354.8,997.6,9989.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-location-duluth-mn.xml,70.96,70.96,29.786,29.786,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,2.265,0.329,11.623,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,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,0.0,5.222,11.597,0.833,0.0,0.0,0.0,0.0,1760.4,2414.3,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,19.994,-13.274,0.0,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-6.293,-1.93,0.0,-0.435,-0.782,0.0,0.0,-0.099,-1.383,7.876,0.0,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.334,2.573,0.717,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,11642.0,149.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 -base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,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,0.0,42.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,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 -base-location-honolulu-hi.xml,36.199,36.199,36.199,36.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.218,3.035,4.816,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,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,2132.0,2154.5,0.0,13.168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,13.134,2.647,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,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 -base-location-miami-fl.xml,35.353,35.353,35.353,35.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.444,2.83,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,0.0,0.0,45.97,4.712,0.551,0.0,0.0,0.0,0.0,2104.8,2424.8,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,0.0,0.0,0.0,1.006,0.575,0.0,0.0,0.304,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,13.135,2.647,1354.8,997.6,8625.1,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,13318.0,-219.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 -base-location-phoenix-az.xml,38.434,38.434,38.433,38.433,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.029,3.092,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.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,0.0,51.765,4.955,0.556,0.0,0.0,0.0,0.0,2368.2,3386.4,0.593,17.634,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,11.511,2.368,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,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 -base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,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,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,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,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,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 -base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,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,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,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,0.0,24.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,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.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.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,0.0,0.0,11.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.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,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,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,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,63.835,44.385,31.488,12.038,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,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.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-emissions.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 -base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-round-trip-efficiency.xml,60.69,33.803,37.859,10.972,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.909,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-scheduled.xml,60.483,33.596,37.652,10.766,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery-scheduled.xml,77.483,42.407,37.652,2.576,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery.xml,76.584,41.509,36.754,1.678,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.804,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,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,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps-power-outage.xml,33.64,33.64,28.659,28.659,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.082,0.0,0.0,3.199,0.556,7.442,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,9.408,7.426,0.561,0.0,0.0,0.5,0.5,9398.1,10416.5,41.812,21.425,0.0,2.585,2.431,0.339,4.203,0.328,6.833,-12.363,0.0,0.0,0.0,3.542,-0.105,3.354,0.0,0.382,0.0,1.039,-6.567,-1.596,0.0,-0.232,-0.587,-0.07,2.391,-0.062,-2.309,11.863,0.0,0.0,0.0,-7.603,-0.059,-1.378,-4.919,-0.21,0.0,2.269,8.448,2.023,1141.2,883.5,9401.7,2157.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps.xml,42.676,42.676,34.392,34.392,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.137,0.0,0.0,3.211,0.559,9.199,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.756,0.0,9.457,9.21,0.671,0.0,0.0,0.0,0.5,9394.7,10419.5,31.982,21.427,0.0,2.889,2.782,0.39,5.331,0.415,7.871,-12.359,0.0,0.0,0.0,5.381,-0.059,3.834,0.0,0.578,0.0,1.776,-8.861,-2.486,0.0,-0.236,-0.59,-0.07,2.395,-0.063,-2.32,11.863,0.0,0.0,0.0,-7.535,-0.058,-1.38,-4.931,-0.211,0.0,2.279,8.448,2.023,1354.7,998.0,11490.9,2636.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,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,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,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,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,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,0.0,22.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,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,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,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,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,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,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,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,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -house001.xml,86.453,86.453,46.944,46.944,39.508,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.684,4.394,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,0.0,22.462,0.0,17.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.215,0.0,49.863,10.416,2.681,0.0,0.0,0.0,0.0,1853.4,6417.7,37.576,40.427,0.492,1.982,7.189,0.419,0.0,0.959,7.577,-4.942,0.0,0.0,0.438,1.255,-0.262,4.293,0.0,5.152,0.0,3.214,-6.762,-2.935,0.562,1.981,3.785,0.305,0.0,0.258,0.298,11.575,0.0,0.0,0.573,6.821,-0.248,-0.42,-1.413,-0.757,0.0,10.696,11.588,4.446,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,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 -house002.xml,67.263,67.263,39.818,39.818,27.444,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.726,3.409,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,0.0,13.958,0.0,13.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.316,0.0,39.308,7.526,2.891,0.0,0.0,0.0,0.0,1554.0,4934.4,23.891,28.399,0.0,2.53,5.051,0.0,0.0,0.85,5.996,-4.053,0.0,0.0,0.0,1.759,-0.146,1.573,0.0,3.789,0.0,1.372,-5.071,-2.493,0.0,3.082,2.762,0.0,0.0,0.396,-0.488,8.601,0.0,0.0,0.0,8.468,-0.14,-0.182,-1.052,-0.638,0.0,5.863,8.93,3.888,1610.9,1574.7,9989.4,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,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 -house003.xml,68.642,68.642,40.063,40.063,28.579,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.737,3.543,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,0.0,15.333,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.0,40.757,7.526,2.691,0.0,0.0,0.0,0.0,1632.4,5147.9,26.295,31.384,0.648,2.781,4.656,0.0,0.0,0.985,6.674,-3.929,0.0,0.0,0.0,1.074,-0.164,1.988,0.0,3.937,0.0,1.615,-5.293,-2.701,0.794,3.047,2.594,0.0,0.0,0.624,-0.264,9.905,0.0,0.0,0.0,6.53,-0.157,-0.218,-1.094,-0.633,0.0,6.453,9.189,4.174,1610.9,1574.7,9989.3,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,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 -house004.xml,136.271,136.271,75.306,75.306,60.965,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,28.978,9.455,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,0.0,44.816,0.0,16.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.241,0.0,107.036,8.985,3.511,0.0,0.0,0.0,101.0,3061.1,7371.4,54.694,50.188,0.128,5.535,11.395,0.0,0.0,1.249,14.009,-5.986,0.0,0.0,0.0,3.226,-0.721,4.938,0.0,6.279,0.0,7.107,-7.297,-3.933,0.199,6.756,11.661,0.0,0.0,0.524,5.468,17.456,0.0,0.0,0.0,18.954,-0.708,1.03,0.0,1.86,0.0,21.407,15.06,7.63,1857.7,1859.3,12228.9,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,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 -house005.xml,95.118,95.118,53.277,53.277,41.841,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.27,5.149,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,0.0,26.64,0.0,15.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,21.604,0.0,59.527,8.985,2.731,0.0,0.0,0.0,0.0,2076.0,7519.1,45.933,50.952,0.0,3.02,8.096,0.267,0.0,1.336,10.048,-6.655,0.0,0.0,0.37,1.253,-0.336,5.037,0.0,5.077,0.0,4.386,-6.862,-3.637,0.0,2.987,4.342,0.212,0.0,0.297,0.319,15.402,0.0,0.0,0.447,7.536,-0.319,-0.49,-1.768,-0.737,0.0,14.474,11.523,5.518,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,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 -house006.xml,139.365,139.365,31.78,31.78,107.585,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.951,0.34,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,0.0,81.738,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,78.691,0.0,7.8,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2441.9,40.506,14.727,0.0,4.261,22.283,1.991,37.119,1.868,17.963,-9.449,0.0,0.0,0.0,9.284,-0.313,9.523,0.0,4.368,0.0,0.0,-14.567,-6.452,0.0,0.174,-0.793,-0.044,2.801,-0.086,-0.887,4.262,0.0,0.0,0.0,-3.89,-0.313,-0.514,-0.614,-0.075,0.0,0.0,5.649,2.235,1610.9,1574.7,12168.1,4288.2,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 -house007.xml,138.83,138.83,33.914,33.914,104.916,0.0,0.0,0.0,0.0,0.0,0.0,1.632,0.0,0.0,2.54,0.396,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,0.0,75.248,0.0,23.282,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,70.851,0.0,5.753,15.632,3.269,0.0,0.0,0.0,0.0,2192.0,2562.1,39.678,13.27,0.0,4.719,23.705,4.446,10.133,1.504,19.077,-9.362,0.0,0.0,0.077,11.566,-0.343,6.119,0.0,20.834,0.0,2.867,-17.238,-7.765,0.0,0.197,-0.722,-0.06,0.577,-0.049,-0.553,4.531,0.0,0.0,-0.009,-4.0,-0.339,-0.191,-0.585,-1.888,0.0,0.104,6.303,2.533,1857.7,1859.4,14896.3,4852.9,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 -house008.xml,183.501,183.501,39.139,39.139,144.362,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.556,0.53,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,0.0,110.924,0.0,26.378,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,104.521,0.0,9.981,18.129,3.214,0.0,0.0,0.0,0.0,2473.2,3287.8,54.741,19.298,0.0,7.23,27.419,4.689,24.238,1.181,22.401,-7.862,0.0,0.0,1.235,17.867,-0.356,18.326,0.0,6.386,0.0,7.825,-18.694,-8.197,0.0,0.294,-1.11,-0.063,1.637,-0.086,-1.372,5.318,0.0,0.0,-0.1,-2.732,-0.356,-0.983,-0.682,-0.282,0.0,0.528,7.259,2.809,2104.5,2144.0,17624.6,5341.6,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 -house009.xml,154.293,154.293,33.983,33.983,120.31,0.0,0.0,0.0,0.0,0.0,0.0,2.035,0.0,0.0,2.375,0.286,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,0.0,90.634,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,85.401,0.0,5.187,15.632,3.276,0.0,0.0,0.0,0.0,2227.1,2605.9,44.161,13.902,0.0,5.098,28.389,4.31,13.07,2.257,19.625,-8.244,0.0,0.0,0.266,15.661,-0.329,8.731,0.0,21.443,0.0,0.0,-17.529,-7.88,0.0,0.238,-0.711,-0.038,0.753,-0.078,-0.78,4.49,0.0,0.0,-0.028,-4.065,-0.325,-0.258,-0.521,-1.794,0.0,0.0,5.992,2.391,1857.7,1859.4,14896.3,4852.9,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 -house010.xml,153.796,153.796,37.549,37.549,116.246,0.0,0.0,0.0,0.0,0.0,0.0,1.86,0.0,0.0,2.896,0.273,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,0.0,82.81,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,78.033,0.0,7.28,18.129,3.214,0.0,0.0,0.0,0.0,2409.0,2810.7,45.27,15.353,0.875,4.93,25.457,4.901,9.774,1.256,23.582,-9.227,0.0,0.0,0.906,11.41,-0.365,19.566,0.0,6.402,0.0,4.869,-18.715,-8.186,0.023,0.211,-0.764,-0.099,0.558,-0.073,-1.356,5.066,0.0,0.0,-0.046,-4.161,-0.362,-1.021,-0.677,-0.269,0.0,0.334,7.219,2.8,2104.5,2144.0,17624.6,5341.6,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 -house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,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,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,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,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 -house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,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,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,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,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 -house013.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,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,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,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,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 -house015.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house016.xml,61.263,61.263,39.85,39.85,0.0,0.0,21.413,0.0,0.0,0.0,7.562,0.538,0.161,0.004,3.068,1.038,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.225,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.35,0.164,12.001,10.478,0.0,0.0,0.0,1.0,16.0,7459.2,3559.3,42.956,19.008,0.0,4.428,10.851,0.619,5.712,0.298,7.395,-8.024,0.0,0.0,0.0,6.777,-0.02,5.735,0.0,3.86,0.0,0.0,-8.634,-4.768,0.0,-0.362,-0.889,-0.023,2.899,-0.047,-0.596,12.366,0.0,0.0,0.0,-8.869,-0.022,-1.375,-1.189,-1.027,0.0,0.0,7.78,3.838,1759.0,1745.5,13591.0,4566.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 -house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 -house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,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,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2606.0,1095.0,711.0,800.0 -house019.xml,129.831,129.831,51.94,51.94,77.891,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.257,3.783,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.116,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.065,0.0,44.56,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6497.7,84.656,46.058,0.0,11.387,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.955,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.944,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 -house020.xml,116.979,116.979,56.877,56.877,0.0,0.0,60.102,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.245,2.923,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.965,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.971,0.0,34.513,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6618.4,31.034,32.534,0.91,11.02,10.576,1.133,9.807,0.632,14.612,-15.405,0.0,0.0,0.0,7.524,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.24,0.116,0.176,0.053,6.39,0.012,-1.763,21.501,0.0,0.0,0.0,-6.709,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 -house021.xml,156.416,156.416,48.605,48.605,107.811,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.488,1.582,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.77,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,18.993,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4771.0,81.115,23.848,0.0,8.272,27.058,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.315,26.613,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.008,-0.864,0.005,2.201,-0.093,-1.709,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.322,8.889,3.787,1759.0,1745.5,13752.0,4620.1,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 -house022.xml,137.518,137.518,48.884,48.884,0.0,88.635,0.0,0.0,0.0,0.0,0.0,2.204,0.0,0.0,8.878,0.897,12.47,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,88.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.755,0.0,19.669,10.989,1.479,0.0,0.0,184.0,126.0,2989.1,5375.4,90.672,27.64,3.697,3.766,20.67,0.0,0.0,1.489,16.102,-13.284,0.0,0.0,14.728,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.522,0.0,0.0,-0.127,-0.987,12.096,0.0,0.0,1.908,0.0,-0.281,-2.742,-0.645,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 -house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 -house024.xml,129.181,129.181,44.059,44.059,0.0,85.122,0.0,0.0,0.0,0.0,0.0,2.117,0.0,0.0,5.375,0.691,16.753,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.176,0.0,16.013,14.653,2.088,0.0,0.0,0.0,0.0,2750.5,3528.1,72.024,17.577,0.0,7.189,30.113,0.0,0.0,0.682,6.988,-7.991,0.0,0.0,5.221,0.0,-0.109,25.401,0.0,1.837,0.0,11.726,-8.633,-2.537,0.0,0.564,1.148,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.499,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.853,5.531,1.379,2176.1,2226.5,14983.5,4452.7,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,21856.0,1377.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7041.0,2605.0,3636.0,800.0 -house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,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,32212.0,8765.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 -house026.xml,57.14,57.14,24.857,24.857,32.282,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,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,0.0,18.136,0.0,14.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,13.896,0.0,0.0,8.607,2.082,0.0,0.0,0.0,0.0,1554.0,1299.3,17.371,0.0,0.0,1.761,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.103,0.0,-0.058,2.488,0.0,3.127,0.0,0.0,-6.707,-3.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,1294.8,1282.2,8578.8,3023.3,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 -house027.xml,72.753,72.753,31.736,31.736,41.016,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,7.874,1.017,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,0.0,20.065,0.0,17.882,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.901,0.0,23.04,8.564,5.232,0.0,0.0,0.0,0.0,1580.0,3622.8,24.052,22.72,0.716,1.776,7.887,0.452,0.0,0.591,5.247,-4.028,0.0,0.0,0.376,3.336,-0.14,1.745,0.0,10.425,0.0,2.046,-8.79,-2.845,0.489,1.124,0.653,0.056,0.0,-0.113,-0.286,5.628,0.0,0.0,0.105,3.836,-0.14,-0.365,-0.966,-3.474,0.0,2.595,10.728,3.102,1610.9,1574.7,10579.5,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 -house028.xml,67.831,67.831,29.68,29.68,38.15,0.0,0.0,0.0,0.0,0.0,0.0,0.259,0.0,0.0,7.107,1.515,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,0.0,13.643,0.0,18.121,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.812,0.0,22.735,10.226,3.62,0.0,0.0,0.0,0.0,1517.3,3323.9,20.023,21.223,0.769,1.663,7.049,0.35,0.0,0.432,5.505,-3.79,0.0,0.0,0.236,2.464,-0.05,4.039,0.0,4.464,0.0,1.543,-9.08,-2.901,0.607,1.232,-0.581,0.098,0.0,0.066,-0.712,6.39,0.0,0.0,0.069,1.838,-0.051,-1.081,-1.198,-1.645,0.0,2.913,11.527,3.237,1857.7,1859.4,12951.6,4219.3,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 -house029.xml,77.601,77.601,29.95,29.95,47.651,0.0,0.0,0.0,0.0,0.0,0.0,0.639,0.0,0.0,6.107,0.906,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,0.0,31.987,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,31.653,0.0,13.604,9.614,0.0,0.0,0.0,0.0,0.0,1604.9,3000.4,28.473,13.951,0.0,3.364,14.695,0.392,0.0,0.308,6.693,-6.461,0.0,0.0,6.932,0.0,-0.085,7.292,0.0,7.304,0.0,3.15,-8.377,-3.711,0.0,1.12,-0.859,0.009,0.0,0.053,0.373,5.722,0.0,0.0,-0.449,0.0,-0.08,-0.809,-1.067,-1.536,0.0,1.215,7.168,2.832,1610.9,1574.7,11033.0,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,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 -house030.xml,57.883,57.883,17.189,17.189,0.0,0.0,40.694,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.377,0.0,13.28,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.883,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,15.992,0.0,0.0,1.68,10.216,0.489,1.112,1.049,5.343,-4.368,0.0,0.0,0.0,3.578,-0.04,2.742,0.0,5.694,0.0,0.0,-7.809,-2.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,1066.0,992.8,6763.9,2581.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 -house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 -house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.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,1341.9,1264.5,7310.3,2807.9,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 -house033.xml,106.743,106.743,14.691,14.691,0.0,92.052,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.371,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,48.38,0.0,0.0,19.125,14.564,0.0,0.0,1.0,10.82,-7.637,0.0,0.0,14.706,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.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,0.0,924.8,0.0,3905.6,1188.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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 -house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.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,1759.0,1745.5,10287.1,3456.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 -house035.xml,63.505,63.505,17.521,17.521,45.985,0.0,0.0,0.0,0.0,0.0,0.0,0.809,0.0,0.0,1.742,0.119,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.522,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.706,0.0,2.673,3.92,3.822,0.0,0.0,102.0,0.0,1326.3,1899.4,39.1,9.67,0.367,6.149,10.862,0.0,0.0,0.538,5.863,-7.44,0.0,0.0,7.797,0.0,0.004,13.61,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.579,-1.589,0.0,0.0,-0.082,-1.219,7.322,0.0,0.0,-4.457,0.0,0.009,-2.738,-0.728,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 -house036.xml,82.314,82.314,26.075,26.075,56.239,0.0,0.0,0.0,0.0,0.0,0.0,0.964,0.0,0.0,5.964,1.051,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.77,0.0,17.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.868,0.0,15.005,8.219,5.837,0.0,0.0,102.0,126.0,1461.8,3231.3,31.799,17.329,5.544,2.267,3.993,0.0,0.0,1.83,6.573,-7.755,0.0,0.0,21.29,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.427,-3.43,1.567,0.119,-0.032,0.0,0.0,-0.224,-0.58,6.698,0.0,0.0,2.216,0.0,-0.0,-0.749,-0.419,-0.061,0.0,0.0,4.352,2.019,1341.9,1264.5,6447.0,2476.3,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 -house037.xml,87.934,87.934,21.779,21.779,0.0,66.155,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,49.998,0.0,16.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,37.091,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,29.538,0.0,0.0,16.714,11.33,0.0,0.0,1.563,7.276,-10.49,0.0,0.0,6.59,0.0,-0.309,14.696,0.0,0.461,0.0,0.0,-6.818,-3.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,1341.9,1264.5,8324.2,3197.3,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 -house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 -house039.xml,98.796,98.796,24.025,24.025,74.77,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,5.136,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.084,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,49.765,0.0,0.0,14.276,5.416,0.0,0.0,2.519,15.643,-13.75,0.0,0.0,13.85,0.0,-0.039,13.263,0.0,0.557,0.0,0.0,-4.135,-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,2176.1,2226.5,17536.3,5211.3,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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 -house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 -house041.xml,259.077,259.077,47.133,47.133,211.944,0.0,0.0,0.0,0.0,0.0,0.0,4.164,0.0,0.0,2.576,0.254,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,0.0,185.392,0.0,26.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,174.689,0.0,4.652,15.632,5.039,0.0,0.0,105.0,0.0,3249.4,4561.5,77.749,23.467,0.0,11.26,44.834,3.482,34.914,3.052,41.616,-22.892,0.0,0.0,4.341,17.423,-0.477,64.05,0.0,2.763,0.0,0.0,-20.286,-10.995,0.0,0.097,-2.224,-0.127,1.602,-0.212,-4.015,11.033,0.0,0.0,-0.321,-5.328,-0.475,-3.481,-1.022,-0.258,0.0,0.0,6.561,2.948,1857.7,1859.4,14896.4,4852.9,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 -house042.xml,229.67,229.67,40.068,40.068,189.602,0.0,0.0,0.0,0.0,0.0,0.0,3.871,0.0,0.0,1.81,0.074,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,0.0,165.165,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.395,0.0,2.999,15.632,3.226,0.0,0.0,0.0,0.0,2758.3,3100.3,88.214,19.624,0.0,9.205,40.053,4.031,43.891,2.672,34.445,-21.633,0.0,0.0,2.453,14.538,-0.385,56.223,0.0,1.75,0.0,0.0,-19.152,-7.587,0.0,0.2,-1.588,-0.07,2.68,-0.16,-3.134,7.067,0.0,0.0,-0.272,-5.113,-0.382,-2.85,-0.642,-0.145,0.0,0.0,5.557,1.952,1857.7,1859.4,14896.3,4852.9,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 -house043.xml,158.13,158.13,30.051,30.051,128.078,0.0,0.0,0.0,0.0,0.0,0.0,2.456,0.0,0.0,2.028,0.119,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,0.0,108.178,0.0,19.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,103.04,0.0,3.036,13.084,2.207,0.0,0.0,0.0,0.0,1988.8,2798.1,54.664,13.818,0.0,3.172,23.263,2.301,33.889,5.621,23.662,-11.489,0.0,0.0,0.55,9.952,-0.267,28.928,0.0,1.576,0.0,0.0,-14.359,-5.16,0.0,0.032,-0.925,-0.1,1.55,-0.379,-2.383,5.793,0.0,0.0,-0.07,-3.676,-0.267,-1.616,-0.538,-0.147,0.0,0.0,4.463,1.402,1610.9,1574.7,12168.1,4288.2,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 -house044.xml,225.894,225.894,43.51,43.51,182.384,0.0,0.0,0.0,0.0,0.0,0.0,4.68,0.0,0.0,2.094,0.198,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,0.0,159.817,0.0,22.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.487,0.0,3.747,13.084,4.452,0.0,0.0,0.0,0.0,3093.4,3553.3,80.982,18.914,4.373,6.905,36.478,9.231,19.305,2.751,19.057,-13.33,0.0,0.0,12.909,15.111,-0.46,61.886,0.0,1.435,0.0,0.0,-18.031,-10.257,0.237,0.441,-1.46,-0.13,1.17,-0.123,-1.231,6.794,0.0,0.0,-1.164,-4.927,-0.458,-2.728,-0.484,-0.102,0.0,0.0,5.295,2.697,1610.9,1574.7,12168.1,4288.2,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 -house045.xml,152.693,152.693,35.232,35.232,117.461,0.0,0.0,0.0,0.0,0.0,0.0,2.782,0.0,0.0,2.392,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,0.0,95.008,0.0,22.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,88.27,0.0,4.026,13.084,4.363,0.0,0.0,0.0,0.0,2317.8,3011.2,47.289,12.909,3.57,3.077,15.169,2.298,32.784,1.143,19.974,-13.617,1.045,-0.407,0.086,12.672,-0.187,20.635,0.0,10.931,0.0,0.0,-14.663,-7.028,-0.017,0.001,-1.114,-0.131,0.881,-0.09,-2.086,7.133,-0.068,0.396,-0.013,-4.082,-0.186,-1.184,-0.915,-1.259,0.0,0.0,4.825,2.036,1610.9,1574.7,12168.1,4288.2,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 -house046.xml,25.037,25.037,25.037,25.037,0.0,0.0,0.0,0.0,0.0,0.0,5.364,0.446,0.267,0.009,3.738,1.038,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,0.0,13.922,0.276,12.84,4.305,0.617,0.0,0.0,0.0,0.0,3842.0,2404.7,16.167,13.004,0.0,2.525,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.275,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.814,4.589,0.545,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,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 -house047.xml,20.762,20.762,14.475,14.475,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.596,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,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,0.0,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.4,968.8,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.729,-0.554,0.0,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.101,0.032,0.0,0.0,-0.093,0.798,0.0,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.276,0.409,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,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 -house048.xml,91.642,91.642,39.796,39.796,51.846,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,12.899,3.824,0.0,0.0,0.0,3.691,0.085,0.498,3.017,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,0.0,35.87,0.0,12.637,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.021,0.0,51.358,7.253,2.688,0.0,0.0,0.0,0.0,1535.9,5475.4,42.021,33.069,1.024,2.643,12.009,0.0,0.0,0.815,4.922,-2.545,0.0,0.0,0.058,2.032,-0.525,6.797,0.0,4.194,0.0,6.419,-7.415,-1.512,1.323,1.018,9.256,0.0,0.0,0.549,2.757,4.297,0.0,0.0,0.072,10.121,-0.513,0.526,-0.449,1.931,0.0,6.917,11.576,2.179,130.3,817.7,11617.6,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,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 -house049.xml,32.038,32.038,28.541,28.541,3.497,0.0,0.0,0.0,0.0,0.0,5.888,0.036,0.0,0.0,5.819,0.147,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.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.239,0.0,33.85,4.262,1.306,0.0,0.0,0.0,90.0,4432.3,2181.9,12.361,17.634,0.0,1.38,4.471,0.0,0.0,0.0,3.895,-7.574,0.0,0.0,0.0,1.446,-0.075,2.582,0.0,1.809,0.0,0.0,-2.437,-0.44,0.0,1.489,6.503,0.0,0.0,0.0,3.26,15.042,0.0,0.0,0.0,2.984,-0.076,-0.307,-3.541,0.516,0.0,0.0,7.53,1.034,728.6,567.4,7487.2,928.5,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,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 -house050.xml,51.837,51.837,21.855,21.855,29.983,0.0,0.0,0.0,0.0,0.0,0.0,0.275,0.0,0.0,1.904,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,0.0,16.067,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.694,0.0,5.132,8.572,0.0,0.0,0.0,0.0,0.0,1156.7,2604.3,11.114,15.388,0.0,4.133,6.508,0.0,0.0,2.031,5.644,-4.221,0.0,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.921,-10.283,-1.232,0.0,-0.288,-0.312,0.0,0.0,-0.391,-0.567,4.041,0.0,0.0,-0.956,0.0,-0.123,-0.557,-1.219,-0.76,0.0,0.568,5.253,0.551,1689.0,437.0,10674.9,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,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 +HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: 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: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),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 Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),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) +base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,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,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,22.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-portable.xml,34.583,34.583,33.262,33.262,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.604,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,1.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,1.18,0.0,30.514,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.1,9.476,14.236,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.307,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.344,9.575,1.88,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier-ief-whole-home.xml,34.611,34.611,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.655,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,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15,0.0,30.49,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2767.0,9.495,14.236,0.0,1.77,1.652,0.0,0.0,0.392,5.039,-4.911,0.0,0.0,0.0,1.312,-0.373,1.058,0.077,0.399,0.0,0.032,-4.78,-0.772,0.0,0.548,-0.009,0.0,0.0,0.206,1.933,17.103,0.0,0.0,0.0,1.819,-0.368,-0.332,-1.9,-0.091,0.0,0.344,9.532,1.875,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier-multiple.xml,34.574,34.574,33.184,33.184,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.813,1.88,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.541,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,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.452,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.3,9.552,14.236,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.035,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.344,9.512,1.873,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier.xml,34.548,34.548,33.243,33.243,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.818,1.882,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.593,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.174,0.0,30.467,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.0,9.548,14.236,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.344,9.498,1.87,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.167,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,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,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,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,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,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,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,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,0.0,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 +base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,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,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,0.0,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 +base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,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,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,67.293,67.293,40.782,40.782,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.921,0.983,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,0.0,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.831,0.0,16.409,9.18,0.614,0.0,0.0,0.0,0.0,2378.3,3719.8,26.547,20.758,4.552,1.164,5.544,0.518,7.651,0.635,15.399,-16.987,0.0,0.0,0.0,8.521,-0.082,7.083,0.0,0.73,0.0,3.11,-10.232,-3.183,0.005,0.021,-0.566,-0.053,2.687,-0.029,-3.027,17.676,0.0,0.0,0.0,-6.349,-0.075,-1.69,-4.153,-0.166,0.0,0.937,8.933,2.568,1354.8,997.6,11399.6,2521.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38184.0,7494.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18712.0,182.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier.xml,37.385,37.385,33.168,33.168,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.236,1.963,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,0.0,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.893,0.0,31.745,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3190.7,13.54,17.969,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.366,9.113,1.789,1354.8,997.6,9989.0,2461.3,0.0,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,22162.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,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,0.0,22.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,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.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,30483.0,4824.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.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,0.0,22.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,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.482,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,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,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,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,0.0,60.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,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.626,36.626,24.815,24.815,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.087,0.0,0.0,1.608,0.207,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,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,0.0,3.054,9.538,0.73,0.0,0.0,0.0,0.0,1572.5,2015.2,7.667,5.819,0.0,2.94,3.649,0.0,0.0,0.582,1.416,-1.582,0.0,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-4.25,-1.186,0.0,-0.922,-0.231,0.0,0.0,-0.054,-0.234,1.305,0.0,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.559,3.423,0.841,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-multiple.xml,31.845,31.845,25.255,25.255,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,2.093,0.314,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,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,0.0,4.965,9.538,0.61,0.0,0.0,0.0,0.0,1562.3,2239.8,9.397,10.552,0.0,-0.004,3.294,0.0,0.0,1.383,4.001,-4.202,0.0,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-6.296,-1.142,0.0,0.0,-0.445,0.0,0.0,-0.418,-0.571,3.958,0.0,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.481,5.704,0.884,1354.8,997.6,11399.5,3156.5,0.0,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,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.799,49.799,24.82,24.82,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,1.466,0.173,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,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,0.0,2.504,9.538,0.818,0.0,0.0,0.0,0.0,1579.9,2256.3,11.078,8.452,0.0,5.364,4.204,0.0,0.0,0.788,1.403,-1.699,0.0,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-4.485,-1.249,0.0,-1.186,-0.054,0.0,0.0,-0.054,-0.122,1.188,0.0,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.528,3.187,0.778,1354.8,997.6,11399.5,3156.5,0.0,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,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.041,26.041,24.679,24.679,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.632,0.213,9.742,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,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,0.0,3.156,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2015.1,3.416,5.821,0.0,0.353,3.152,0.0,0.0,0.376,1.484,-1.49,0.0,0.0,0.375,0.0,-0.006,1.698,0.0,0.0,0.0,0.387,-4.015,-1.12,0.0,-0.831,-0.466,0.0,0.0,-0.076,-0.345,1.397,0.0,0.0,-0.847,0.0,-0.002,-0.394,-0.388,0.0,0.0,0.576,3.657,0.907,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.343,26.343,25.227,25.227,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.109,0.333,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,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,0.0,5.133,9.538,0.587,0.0,0.0,0.0,0.0,1559.4,1834.6,3.707,4.327,0.0,-0.003,3.197,0.0,0.0,0.368,1.519,-1.394,0.0,0.0,-0.002,0.0,-0.063,1.76,0.0,0.0,0.0,0.321,-3.692,-1.021,0.0,-0.001,-0.556,0.0,0.0,-0.044,-0.506,1.493,0.0,0.0,-0.0,0.0,-0.059,-0.532,-0.512,0.0,0.0,0.913,3.98,1.006,1354.8,997.6,11399.5,3156.5,0.0,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,6278.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.841,26.841,26.284,26.284,0.557,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.967,0.547,9.684,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.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,0.514,0.0,8.85,9.538,0.575,0.0,0.0,0.0,0.0,1703.9,1962.7,3.256,6.985,0.0,-0.013,2.505,0.0,0.0,0.42,4.041,-2.559,0.0,0.0,-0.009,0.0,-0.344,0.994,0.0,0.68,0.0,0.0,-4.559,-0.773,0.0,-0.008,-1.074,0.0,0.0,-0.048,-1.702,5.598,0.0,0.0,-0.004,0.0,-0.334,-0.402,-1.335,-0.391,0.0,0.0,7.407,1.254,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 +base-bldgtype-multifamily-residents-1.xml,19.898,19.898,18.595,18.595,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.363,0.394,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,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,0.0,6.696,4.213,0.585,0.0,0.0,0.0,0.0,1104.0,1602.9,3.916,6.507,0.0,-0.014,2.619,0.0,0.0,0.418,4.236,-3.104,0.0,0.0,-0.012,0.0,-0.305,1.3,0.0,0.75,0.0,0.0,-3.826,-0.937,0.0,-0.01,-0.765,0.0,0.0,-0.014,-1.207,5.053,0.0,0.0,-0.007,0.0,-0.297,-0.396,-1.194,-0.272,0.0,0.0,4.803,1.089,817.2,530.6,4779.7,1341.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.394,27.394,26.696,26.696,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.0,3.07,0.825,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1670.4,2088.4,3.455,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.149,28.149,27.404,27.404,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,3.656,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1695.4,2322.2,3.602,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.038,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,8647.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.679,27.679,27.017,27.017,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.346,0.825,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.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.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1680.5,2160.3,3.454,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,32.821,32.821,32.278,32.278,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,8.52,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1940.2,3671.7,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.766,27.766,27.223,27.223,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,3.465,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1688.5,2269.4,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1509.2,1333.8,3.459,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.356,23.356,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1522.4,1334.7,3.605,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.749,22.749,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1534.7,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.28,23.28,22.878,22.878,0.402,0.0,0.0,0.0,0.0,0.0,0.129,0.064,0.0,0.0,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.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1648.9,1334.7,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.303,23.303,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1536.8,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1528.0,1334.7,3.537,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.649,26.649,26.649,26.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.054,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1670.9,2071.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.327,27.327,27.327,27.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.637,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1702.6,2322.2,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922,26.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1681.0,2152.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.964,27.964,27.964,27.964,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.813,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.8,1818.6,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,1354.8,997.6,11399.6,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,3156.5,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.708,32.708,27.342,27.342,5.366,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.574,0.439,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,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,0.0,7.061,9.538,0.588,0.0,0.0,0.0,0.0,1711.5,2147.3,4.167,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,4.308,-3.183,0.0,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-5.414,-0.952,0.0,-0.009,-0.693,0.0,0.0,-0.005,-1.118,4.974,0.0,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,6.564,1.074,1354.8,997.6,11399.5,3156.5,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-mechvent.xml,31.03,31.03,27.217,27.217,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,2.492,0.416,9.705,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,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,0.0,6.838,9.538,0.598,0.0,0.0,0.0,0.0,1638.9,2132.2,5.993,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,4.232,-3.684,0.0,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-5.86,-1.052,0.0,-0.008,-0.511,0.0,0.0,-0.01,-0.941,4.473,0.0,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,6.129,0.974,1354.8,997.6,11399.5,3156.5,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-pv.xml,26.899,2.451,26.223,1.775,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.901,30.901,17.531,17.531,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,1052.2,1525.8,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-water-heater.xml,29.805,29.805,16.435,16.435,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,999.5,1473.1,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.33,37.33,37.33,37.33,0.0,0.0,0.0,0.0,0.0,0.0,5.334,0.368,0.0,0.0,2.577,1.082,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.879,0.0,13.352,9.232,0.614,2.924,0.0,0.0,0.0,3214.6,2123.0,20.972,15.079,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.095,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.824,8.485,2.01,1354.8,997.6,11413.1,2618.9,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.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,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,0.0,18.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.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,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,0.0,24.587,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1066.9,770.9,9019.2,2069.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,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,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.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,388.3,286.5,3205.6,735.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.67,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,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,0.0,23.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,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,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,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.89,0.0,13.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,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-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,1075.0,777.3,9103.8,2089.0,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.106,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.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.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,472.0,347.5,3998.4,917.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,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,0.0,22.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,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,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,0.0,23.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,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,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,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,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,0.0,22.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,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,17.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,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,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,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,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,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,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,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,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,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,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,0.0,25.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,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7646.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,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,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,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,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,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,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,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,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 +base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.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,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 +base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,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,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-floortypes.xml,67.648,67.648,29.356,29.356,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.632,0.0,0.0,3.58,0.646,9.367,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,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.866,0.0,10.726,9.342,0.621,0.0,0.0,0.0,0.0,1766.6,3491.4,29.153,20.79,0.0,3.477,3.648,0.0,0.0,0.67,9.92,-12.906,0.0,0.0,29.048,0.0,-0.198,2.052,0.0,0.787,0.0,7.954,-7.487,-1.578,0.0,0.424,-0.063,0.0,0.0,0.096,0.383,10.935,0.0,0.0,-7.934,0.0,-0.193,-0.259,-1.855,-0.085,0.0,2.655,5.717,1.069,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,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,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,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,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,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,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,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,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,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,22.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,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,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,22.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,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,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,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-split-level.xml,40.753,40.753,29.446,29.446,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.84,0.724,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,0.0,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,11.955,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2605.0,13.185,12.044,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.304,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.076,6.354,1.189,1354.8,997.6,11399.6,3013.0,0.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,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 +base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,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,22.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,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,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,0.0,40.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,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.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,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,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,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,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,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,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,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,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-ambient.xml,48.007,48.007,30.285,30.285,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.292,0.0,0.0,4.61,0.898,9.354,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,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.601,0.0,15.077,9.342,0.606,0.0,0.0,0.0,2.0,1740.7,3397.3,20.514,21.089,0.0,3.835,3.846,0.0,0.0,0.76,10.831,-11.429,0.0,0.0,10.226,0.0,-0.403,2.065,0.0,0.789,0.0,3.979,-6.811,-1.44,0.0,-0.046,-0.527,0.0,0.0,0.028,-0.75,12.412,0.0,0.0,-3.67,0.0,-0.396,-0.402,-2.391,-0.154,0.0,3.577,6.38,1.207,1354.8,997.6,11399.5,2808.9,0.0,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,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,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,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 +base-foundation-belly-wing-no-skirt.xml,49.694,49.694,29.445,29.445,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,3.895,0.731,9.354,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,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.964,0.0,12.009,9.342,0.607,0.0,0.0,0.0,0.0,1753.6,3211.6,24.176,17.286,0.0,3.981,5.371,0.0,0.0,0.753,8.835,-11.05,0.0,0.0,10.267,0.0,-0.35,2.069,0.0,0.794,0.0,6.238,-6.883,-1.459,0.0,0.302,-0.601,0.0,0.0,0.038,-0.188,9.522,0.0,0.0,-3.443,0.0,-0.343,-0.395,-2.184,-0.144,0.0,2.215,6.308,1.188,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-belly-wing-skirt.xml,49.322,49.322,29.453,29.453,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.328,0.0,0.0,3.906,0.734,9.354,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,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.608,0.0,12.062,9.342,0.607,0.0,0.0,0.0,0.0,1752.3,3180.5,24.023,17.245,0.0,3.987,5.379,0.0,0.0,0.753,8.843,-11.04,0.0,0.0,9.969,0.0,-0.345,2.068,0.0,0.793,0.0,6.125,-6.873,-1.457,0.0,0.296,-0.61,0.0,0.0,0.036,-0.211,9.532,0.0,0.0,-3.365,0.0,-0.338,-0.399,-2.199,-0.146,0.0,2.221,6.318,1.191,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-complex.xml,78.103,78.103,37.261,37.261,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.674,0.0,0.0,5.116,1.028,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.25,0.0,17.361,9.233,0.617,0.0,0.0,0.0,2.0,2171.5,3845.1,33.417,21.451,0.0,3.431,3.657,0.52,19.54,0.65,10.564,-12.717,0.0,0.0,0.0,8.705,-0.111,6.102,0.0,0.739,0.0,8.38,-9.124,-2.557,0.0,0.048,-0.359,-0.044,3.767,-0.003,-1.508,11.564,0.0,0.0,0.0,-4.519,-0.103,-1.227,-3.259,-0.137,0.0,3.71,7.657,1.952,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,56.087,56.087,36.482,36.482,19.605,0.0,0.0,0.0,0.0,0.0,0.0,0.323,0.0,0.0,4.774,0.947,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,19.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,18.357,0.0,15.998,9.233,0.612,0.0,0.0,0.0,0.0,2130.6,3496.4,22.309,19.66,0.0,3.624,3.695,0.52,8.197,0.641,10.668,-12.534,0.0,0.0,0.0,4.773,-0.061,4.839,0.0,0.733,0.0,4.319,-8.893,-2.498,0.0,-0.098,-0.497,-0.057,2.177,-0.036,-2.054,11.749,0.0,0.0,0.0,-3.7,-0.055,-1.187,-3.277,-0.169,0.0,3.465,7.883,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,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,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,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,0.0,18.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,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 +base-foundation-multiple.xml,42.738,42.738,29.706,29.706,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.218,0.812,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,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,0.0,13.443,9.285,0.693,0.0,0.0,0.0,0.0,1723.6,2714.9,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,10.857,-11.246,0.0,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-4.636,-1.429,0.0,-0.098,-0.674,0.0,0.0,-0.018,-1.077,12.595,0.0,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.65,4.23,1.218,1354.8,997.6,11399.4,2706.9,0.0,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,14275.0,222.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-slab.xml,39.954,39.954,29.299,29.299,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.9,0.74,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,0.0,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.972,0.0,12.215,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2611.5,12.703,12.011,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.078,6.379,1.193,1354.8,997.6,11399.5,2808.9,0.0,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,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-above-grade.xml,43.94,43.94,29.852,29.852,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.308,0.833,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,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,0.0,13.834,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.0,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,10.912,-11.281,0.0,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.069,12.56,0.0,0.0,-0.506,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.93,4.211,1.213,1354.8,997.6,11399.5,2706.9,0.0,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,14270.0,226.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-assembly-r.xml,41.196,41.196,29.243,29.243,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.197,0.0,0.0,3.847,0.722,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,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,0.0,11.864,9.285,0.71,0.0,0.0,0.0,0.0,1718.3,2855.2,14.652,12.883,0.0,3.994,3.856,0.0,0.0,0.759,10.855,-11.125,0.0,0.0,4.456,0.0,-0.343,2.583,0.0,0.0,0.0,1.82,-4.614,-1.421,0.0,-0.074,-0.626,0.0,0.0,0.009,-1.062,12.715,0.0,0.0,-2.011,0.0,-0.339,-0.564,-2.512,0.0,0.0,1.12,4.251,1.226,1354.8,997.6,11399.5,2706.9,0.0,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,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-wall-insulation.xml,48.948,48.948,28.952,28.952,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.558,0.653,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,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,0.0,10.743,9.285,0.64,0.0,0.0,0.0,0.0,1726.7,2483.3,16.597,11.56,0.0,3.723,3.619,0.0,0.0,0.633,9.712,-12.351,0.0,0.0,14.373,0.0,-0.047,2.46,0.0,0.0,0.0,2.599,-4.778,-1.481,0.0,0.063,-0.441,0.0,0.0,-0.015,-0.972,11.49,0.0,0.0,-2.769,0.0,-0.045,-0.521,-2.405,0.0,0.0,1.302,4.088,1.166,1354.8,997.6,11399.5,2706.9,0.0,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,15218.0,128.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement.xml,42.817,42.817,29.736,29.736,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,4.234,0.816,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,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,0.0,13.513,9.285,0.703,0.0,0.0,0.0,0.0,1723.8,2921.5,15.45,14.318,0.0,3.994,3.853,0.0,0.0,0.749,10.805,-11.235,0.0,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-4.634,-1.429,0.0,-0.077,-0.629,0.0,0.0,-0.0,-1.111,12.605,0.0,0.0,-0.673,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.724,4.231,1.218,1354.8,997.6,11399.5,2706.9,0.0,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,14277.0,222.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,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,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,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,2808.9,0.0,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,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,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,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,2808.9,0.0,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,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-walkout-basement.xml,64.814,64.814,36.328,36.328,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,4.532,0.884,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,0.0,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.677,0.0,14.89,9.233,0.615,0.0,0.0,0.0,0.0,2125.9,3513.1,26.787,19.805,0.0,3.523,3.688,0.52,7.364,0.646,11.292,-12.794,0.0,0.0,0.0,10.155,-0.066,6.639,0.0,0.728,0.0,6.073,-8.935,-2.506,0.0,-0.099,-0.515,-0.06,1.48,-0.031,-2.074,12.046,0.0,0.0,0.0,-3.677,-0.061,-1.529,-3.357,-0.16,0.0,3.264,7.844,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,0.0,15.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.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,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,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.645,42.645,42.645,42.645,0.0,0.0,0.0,0.0,0.0,0.0,9.823,1.762,0.591,0.052,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,0.0,23.588,0.643,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7296.6,1637.3,25.567,0.0,0.0,3.452,3.637,0.512,7.485,0.629,10.516,-12.551,0.0,0.0,0.0,8.112,-0.066,4.805,0.0,0.728,0.0,7.372,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.145,46.145,46.145,46.145,0.0,0.0,0.0,0.0,0.0,0.0,9.718,1.011,0.443,0.024,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.466,13.102,9.233,0.614,0.0,0.0,0.0,0.0,6954.5,3209.9,24.358,15.771,0.0,3.499,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.018,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,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,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,0.0,21.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.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,0.0,25971.0,25971.0,11194.0,51.62,90.68,11194.0,4365.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.698,44.698,44.698,44.698,0.0,0.0,0.0,0.0,0.0,0.0,9.125,0.912,0.046,0.006,3.198,0.971,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.362,0.052,11.97,9.233,0.614,0.0,0.0,0.0,0.0,6628.4,2912.2,22.625,13.15,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.864,-8.907,-2.499,0.0,0.037,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.05,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65908.0,65908.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,24186.0,24186.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.554,41.554,41.554,41.554,0.0,0.0,0.0,0.0,0.0,0.0,7.131,0.629,0.416,0.017,2.294,0.626,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.433,13.325,9.233,0.614,0.0,0.0,0.0,0.0,6922.4,2762.7,24.33,16.718,0.0,3.453,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.249,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.431,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33416.0,33416.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.544,40.544,40.544,40.544,0.0,0.0,0.0,0.0,0.0,0.0,6.849,0.507,0.049,0.005,2.124,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.035,0.054,12.091,9.233,0.614,0.0,0.0,0.0,0.0,6732.2,2521.0,23.383,13.585,0.0,3.588,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.557,-8.907,-2.499,0.0,0.034,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.172,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65567.0,65567.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.171,51.171,37.619,37.619,13.551,0.0,0.0,0.0,0.0,0.0,4.154,0.37,0.0,0.138,2.31,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.722,11.262,14.452,9.233,0.615,0.0,0.0,2.0,0.0,3194.1,2672.7,23.547,17.679,0.0,3.375,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.35,-8.918,-2.502,0.0,-0.058,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.697,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,23640.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.458,54.458,37.825,37.825,16.632,0.0,0.0,0.0,0.0,0.0,4.006,0.353,0.0,0.501,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,28.514,13.807,14.556,9.233,0.614,0.0,0.0,2.0,0.0,3328.2,2622.0,30.614,17.514,0.0,3.251,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.289,-0.061,4.804,0.0,0.728,0.0,12.284,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.063,-0.165,0.0,3.704,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,32235.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,26367.0,26367.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.158,41.158,41.158,41.158,0.0,0.0,0.0,0.0,0.0,0.0,7.314,0.748,0.123,0.008,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.792,0.131,14.556,9.233,0.614,0.0,0.0,0.0,0.0,7031.0,2622.0,24.672,17.514,0.0,3.37,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.48,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.703,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.898,40.898,40.898,40.898,0.0,0.0,0.0,0.0,0.0,0.0,7.281,0.641,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.771,0.057,13.49,9.233,0.614,0.0,0.0,0.0,0.0,6896.7,2561.9,23.811,16.273,0.0,3.447,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.401,-8.907,-2.499,0.0,-0.02,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.608,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,50423.0,50423.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-elec-only.xml,48.203,48.203,48.203,48.203,0.0,0.0,0.0,0.0,0.0,0.0,17.594,0.191,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.2,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.331,55.331,36.429,36.429,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2096.7,3330.0,16.459,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-gas-only.xml,49.354,49.354,30.642,30.642,18.712,0.0,0.0,0.0,0.0,0.0,0.0,0.224,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,18.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2057.9,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20155.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,0.0,17.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.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20283.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.538,48.538,48.538,48.538,0.0,0.0,0.0,0.0,0.0,0.0,9.911,1.779,0.593,0.052,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.645,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7326.8,3330.1,25.567,17.819,0.0,3.446,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.439,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,19922.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-evap-cooler-furnace-gas.xml,56.319,56.319,32.044,32.044,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,0.0,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,1915.1,25.1,11.075,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,13458.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-elec-only.xml,53.605,53.605,53.605,53.605,0.0,0.0,0.0,0.0,0.0,0.0,22.563,0.625,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,0.0,22.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8622.9,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.875,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2124.3,2947.8,24.237,18.493,0.0,3.51,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.863,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20155.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20283.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.248,34.248,34.248,34.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.895,0.867,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.692,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2851.9,0.0,17.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.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.15,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.793,36.793,36.793,36.793,0.0,0.0,0.0,0.0,0.0,0.0,5.562,0.814,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,0.0,21.117,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3411.0,1637.3,23.44,0.0,0.0,3.549,3.636,0.512,7.483,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.833,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.933,39.933,39.933,39.933,0.0,0.0,0.0,0.0,0.0,0.0,5.492,0.686,0.0,0.0,2.507,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.116,0.0,13.27,9.233,0.614,0.0,0.0,0.0,0.0,3358.9,2541.2,22.968,15.706,0.0,3.552,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.667,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.379,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,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,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,19866.0,19866.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.91,38.91,38.91,38.91,0.0,0.0,0.0,0.0,0.0,0.0,5.84,0.317,0.073,0.002,2.16,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,0.0,19.98,0.075,12.245,9.233,0.614,0.0,0.0,0.0,0.0,4268.2,2191.0,19.501,13.372,0.0,3.593,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.501,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.402,38.402,38.402,38.402,0.0,0.0,0.0,0.0,0.0,0.0,5.406,0.268,0.0,0.0,2.213,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.045,0.0,11.734,9.233,0.614,0.0,0.0,0.0,0.0,3640.7,2214.0,19.188,12.558,0.0,3.624,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.54,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.818,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,41843.0,41843.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.75,37.75,37.75,37.75,0.0,0.0,0.0,0.0,0.0,0.0,5.078,0.102,0.042,0.0,2.06,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.042,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3682.6,2120.6,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.614,35.614,0.0,12.321,0.0,0.0,0.0,0.0,3.012,0.092,0.0,0.0,2.043,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.658,7.393,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2846.2,2123.8,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,49.605,49.605,42.912,42.912,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.191,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2614.2,3427.5,16.894,14.883,0.0,2.873,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.449,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,0.0,31430.0,27561.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-stove-oil-only.xml,52.275,52.275,30.519,30.519,0.0,21.756,0.0,0.0,0.0,0.0,0.0,0.1,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,21.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.5,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize.xml,59.984,59.984,36.217,36.217,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.324,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2126.9,3189.8,24.296,18.003,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.91,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,19922.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,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,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,24.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,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,19.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.93,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.276,11.122,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.391,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.179,15.2,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.043,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.535,15.233,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.757,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,26.265,15.615,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,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,0.0,47.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,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,71259.0,33168.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,28612.0,4972.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34496.0,10856.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32660.0,9020.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,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,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,0.0,14.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.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-fixed-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,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,0.0,26.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,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,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,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,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,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,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-borefield-configuration.xml,39.547,39.547,39.547,39.547,0.0,0.0,0.0,0.0,0.0,0.0,5.239,0.361,0.0,0.0,2.477,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.538,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3210.2,2594.4,20.925,14.708,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.046,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-count.xml,39.549,39.549,39.549,39.549,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.361,0.0,0.0,2.475,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3211.0,2581.1,20.927,14.697,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.047,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-diameter.xml,39.554,39.554,39.554,39.554,0.0,0.0,0.0,0.0,0.0,0.0,5.248,0.362,0.0,0.0,2.474,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.2,2583.0,20.879,14.701,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-length.xml,39.502,39.502,39.502,39.502,0.0,0.0,0.0,0.0,0.0,0.0,5.23,0.359,0.0,0.0,2.446,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.531,0.0,12.672,9.233,0.614,0.0,0.0,0.0,0.0,3202.1,2567.5,20.83,14.681,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.039,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-spacing.xml,39.494,39.494,39.494,39.494,0.0,0.0,0.0,0.0,0.0,0.0,5.227,0.359,0.0,0.0,2.441,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.53,0.0,12.672,9.233,0.614,0.0,0.0,0.0,0.0,3200.5,2567.2,20.821,14.681,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.037,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.759,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-ground-diffusivity.xml,39.564,39.564,39.564,39.564,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.362,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3214.1,2584.5,20.886,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-grout-conductivity.xml,39.552,39.552,39.552,39.552,0.0,0.0,0.0,0.0,0.0,0.0,5.249,0.362,0.0,0.0,2.471,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3212.6,2577.4,20.87,14.693,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-loop-flow.xml,39.565,39.565,39.565,39.565,0.0,0.0,0.0,0.0,0.0,0.0,5.254,0.363,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3210.4,2582.7,20.87,14.7,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-conductivity.xml,39.542,39.542,39.542,39.542,0.0,0.0,0.0,0.0,0.0,0.0,5.245,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.3,2577.1,20.864,14.693,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.762,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-diameter.xml,39.539,39.539,39.539,39.539,0.0,0.0,0.0,0.0,0.0,0.0,5.241,0.361,0.0,0.0,2.468,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.538,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3208.7,2572.8,20.907,14.686,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.046,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.511,39.511,39.511,39.511,0.0,0.0,0.0,0.0,0.0,0.0,5.234,0.36,0.0,0.0,2.45,1.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.533,0.0,12.673,9.233,0.614,0.0,0.0,0.0,0.0,3204.7,2568.5,20.838,14.682,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.041,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,39.08,39.08,39.08,39.08,0.0,0.0,0.0,0.0,0.0,0.0,5.08,0.34,0.0,0.0,2.219,1.001,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.439,0.0,12.644,9.233,0.614,0.0,0.0,0.0,0.0,3122.8,2459.5,20.484,14.586,0.0,3.61,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.944,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.732,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.794,33.794,33.794,33.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.534,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.0,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.643,36.643,36.643,36.643,0.0,0.0,0.0,0.0,0.0,0.0,5.449,0.777,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,0.0,20.372,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3362.4,1637.3,22.29,0.0,0.0,3.576,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.067,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.1,2577.8,20.865,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.358,41.358,41.358,41.358,0.0,0.0,0.0,0.0,0.0,0.0,6.658,0.379,0.0,0.0,2.92,0.961,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.424,0.0,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3442.3,2724.4,21.792,15.702,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.955,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.235,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-library-test-case.xml,39.021,39.021,39.021,39.021,0.0,0.0,0.0,0.0,0.0,0.0,5.056,0.337,0.0,0.0,2.19,0.998,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.426,0.0,12.642,9.233,0.614,0.0,0.0,0.0,0.0,3117.3,2452.1,20.464,14.58,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.931,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.73,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,0.0,12.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,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,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,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,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,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,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,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.293,66.293,51.861,51.861,7.155,3.599,3.679,0.0,0.0,0.0,13.641,0.858,0.197,0.008,6.164,0.552,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.667,0.205,18.96,9.233,0.615,0.0,0.0,0.0,3.0,6379.1,4054.4,37.469,22.828,0.0,3.418,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.265,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.235,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.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,1354.8,997.6,8540.6,2104.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 +base-hvac-portable-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,0.0,3.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.01,-0.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,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,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,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,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,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,0.0,0.0,0.0,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,56.19,56.19,35.529,35.529,20.661,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,3.959,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,20.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,19.378,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2961.2,20.444,15.145,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.888,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,28898.0,18434.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,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,0.0,15.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,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,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,0.0,22.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,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-kwh-per-year.xml,60.469,60.469,39.553,39.553,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.535,0.889,9.163,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.996,9.233,0.613,0.0,0.0,0.0,0.0,2416.3,3795.3,22.788,18.414,0.0,3.575,3.655,0.514,7.569,0.633,10.56,-12.521,0.0,0.0,0.0,8.359,-0.067,4.811,0.0,0.729,0.0,4.568,-8.891,-4.249,0.0,-0.085,-0.489,-0.055,2.612,-0.033,-2.015,11.745,0.0,0.0,0.0,-6.471,-0.063,-1.192,-3.199,-0.169,0.0,3.277,7.886,3.428,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,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,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,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,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 +base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,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,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,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,2719.3,0.0,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,15107.0,1151.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 +base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,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.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,1354.8,997.6,10580.5,2607.1,0.0,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,13718.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 +base-location-dallas-tx.xml,34.353,34.353,32.588,32.588,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.767,1.868,6.814,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,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,0.0,30.193,6.675,0.573,0.0,0.0,0.0,0.0,2014.4,2771.1,9.706,14.235,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.343,9.5,1.888,1354.8,997.6,9989.0,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-location-duluth-mn.xml,70.96,70.96,29.786,29.786,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,2.265,0.329,11.623,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,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,0.0,5.222,11.597,0.833,0.0,0.0,0.0,0.0,1760.4,2414.3,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,19.994,-13.274,0.0,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-6.293,-1.93,0.0,-0.435,-0.782,0.0,0.0,-0.099,-1.383,7.876,0.0,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.334,2.573,0.717,1354.8,997.6,12167.9,2889.4,0.0,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,11642.0,149.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 +base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,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,0.0,42.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,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 +base-location-honolulu-hi.xml,36.199,36.199,36.199,36.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.218,3.035,4.816,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,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,2132.0,2154.5,0.0,13.168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,13.134,2.647,1354.8,997.6,8540.5,2104.4,0.0,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,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 +base-location-miami-fl.xml,35.353,35.353,35.353,35.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.444,2.83,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,0.0,0.0,45.97,4.712,0.551,0.0,0.0,0.0,0.0,2104.8,2424.8,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,0.0,0.0,0.0,1.006,0.575,0.0,0.0,0.304,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,13.135,2.647,1354.8,997.6,8625.1,2125.3,0.0,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,13318.0,-219.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 +base-location-phoenix-az.xml,38.434,38.434,38.433,38.433,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.029,3.092,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.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,0.0,51.765,4.955,0.556,0.0,0.0,0.0,0.0,2368.2,3386.4,0.593,17.634,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,11.511,2.368,1354.8,997.6,8429.2,2077.0,0.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,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 +base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,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,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,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,1354.8,997.6,11239.5,2769.4,0.0,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,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 +base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,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,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,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,0.0,24.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,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.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.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,0.0,0.0,11.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.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,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,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,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,63.835,44.385,31.488,12.038,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,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.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,3.08,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-emissions.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,16.505,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.981,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 +base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,24.753,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-round-trip-efficiency.xml,60.69,33.803,37.859,10.972,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.909,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,6.706,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-scheduled.xml,60.483,33.596,37.652,10.766,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,6.873,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery-scheduled.xml,77.483,42.407,37.652,2.576,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,24.473,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery.xml,76.584,41.509,36.754,1.678,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.804,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,90.778,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,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,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,1.915,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,33.64,33.64,28.659,28.659,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.082,0.0,0.0,3.199,0.556,7.442,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,9.408,7.426,0.561,0.0,0.0,0.5,0.5,9398.1,10416.5,41.812,21.425,0.0,2.585,2.431,0.339,4.203,0.328,6.833,-12.363,0.0,0.0,0.0,3.542,-0.105,3.354,0.0,0.382,0.0,1.039,-6.567,-1.596,0.0,-0.232,-0.587,-0.07,2.391,-0.062,-2.309,11.863,0.0,0.0,0.0,-7.603,-0.059,-1.378,-4.919,-0.21,0.0,2.269,8.448,2.023,1141.2,883.5,9401.7,2157.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps.xml,42.676,42.676,34.392,34.392,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.137,0.0,0.0,3.211,0.559,9.199,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.756,0.0,9.457,9.21,0.671,0.0,0.0,0.0,0.5,9394.7,10419.5,31.982,21.427,0.0,2.889,2.782,0.39,5.331,0.415,7.871,-12.359,0.0,0.0,0.0,5.381,-0.059,3.834,0.0,0.578,0.0,1.776,-8.861,-2.486,0.0,-0.236,-0.59,-0.07,2.395,-0.063,-2.32,11.863,0.0,0.0,0.0,-7.535,-0.058,-1.38,-4.931,-0.211,0.0,2.279,8.448,2.023,1354.7,998.0,11490.9,2636.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,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,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,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,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,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,0.0,22.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,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,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,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,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,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,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,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,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +house001.xml,86.453,86.453,46.944,46.944,39.508,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.684,4.394,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,0.0,22.462,0.0,17.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.215,0.0,49.863,10.416,2.681,0.0,0.0,0.0,0.0,1853.4,6417.7,37.576,40.427,0.492,1.982,7.189,0.419,0.0,0.959,7.577,-4.942,0.0,0.0,0.438,1.255,-0.262,4.293,0.0,5.152,0.0,3.214,-6.762,-2.935,0.562,1.981,3.785,0.305,0.0,0.258,0.298,11.575,0.0,0.0,0.573,6.821,-0.248,-0.42,-1.413,-0.757,0.0,10.696,11.588,4.446,2104.5,2144.0,14468.8,4385.1,0.0,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,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 +house002.xml,67.263,67.263,39.818,39.818,27.444,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.726,3.409,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,0.0,13.958,0.0,13.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.316,0.0,39.308,7.526,2.891,0.0,0.0,0.0,0.0,1554.0,4934.4,23.891,28.399,0.0,2.53,5.051,0.0,0.0,0.85,5.996,-4.053,0.0,0.0,0.0,1.759,-0.146,1.573,0.0,3.789,0.0,1.372,-5.071,-2.493,0.0,3.082,2.762,0.0,0.0,0.396,-0.488,8.601,0.0,0.0,0.0,8.468,-0.14,-0.182,-1.052,-0.638,0.0,5.863,8.93,3.888,1610.9,1574.7,9989.4,3520.4,0.0,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,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 +house003.xml,68.642,68.642,40.063,40.063,28.579,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.737,3.543,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,0.0,15.333,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.0,40.757,7.526,2.691,0.0,0.0,0.0,0.0,1632.4,5147.9,26.295,31.384,0.648,2.781,4.656,0.0,0.0,0.985,6.674,-3.929,0.0,0.0,0.0,1.074,-0.164,1.988,0.0,3.937,0.0,1.615,-5.293,-2.701,0.794,3.047,2.594,0.0,0.0,0.624,-0.264,9.905,0.0,0.0,0.0,6.53,-0.157,-0.218,-1.094,-0.633,0.0,6.453,9.189,4.174,1610.9,1574.7,9989.3,3520.4,0.0,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,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 +house004.xml,136.271,136.271,75.306,75.306,60.965,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,28.978,9.455,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,0.0,44.816,0.0,16.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.241,0.0,107.036,8.985,3.511,0.0,0.0,0.0,101.0,3061.1,7371.4,54.694,50.188,0.128,5.535,11.395,0.0,0.0,1.249,14.009,-5.986,0.0,0.0,0.0,3.226,-0.721,4.938,0.0,6.279,0.0,7.107,-7.297,-3.933,0.199,6.756,11.661,0.0,0.0,0.524,5.468,17.456,0.0,0.0,0.0,18.954,-0.708,1.03,0.0,1.86,0.0,21.407,15.06,7.63,1857.7,1859.3,12228.9,3983.9,0.0,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,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 +house005.xml,95.118,95.118,53.277,53.277,41.841,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.27,5.149,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,0.0,26.64,0.0,15.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,21.604,0.0,59.527,8.985,2.731,0.0,0.0,0.0,0.0,2076.0,7519.1,45.933,50.952,0.0,3.02,8.096,0.267,0.0,1.336,10.048,-6.655,0.0,0.0,0.37,1.253,-0.336,5.037,0.0,5.077,0.0,4.386,-6.862,-3.637,0.0,2.987,4.342,0.212,0.0,0.297,0.319,15.402,0.0,0.0,0.447,7.536,-0.319,-0.49,-1.768,-0.737,0.0,14.474,11.523,5.518,1857.7,1859.4,12229.0,3983.9,0.0,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,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 +house006.xml,139.365,139.365,31.78,31.78,107.585,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.951,0.34,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,0.0,81.738,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,78.691,0.0,7.8,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2441.9,40.506,14.727,0.0,4.261,22.283,1.991,37.119,1.868,17.963,-9.449,0.0,0.0,0.0,9.284,-0.313,9.523,0.0,4.368,0.0,0.0,-14.567,-6.452,0.0,0.174,-0.793,-0.044,2.801,-0.086,-0.887,4.262,0.0,0.0,0.0,-3.89,-0.313,-0.514,-0.614,-0.075,0.0,0.0,5.649,2.235,1610.9,1574.7,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 +house007.xml,138.83,138.83,33.914,33.914,104.916,0.0,0.0,0.0,0.0,0.0,0.0,1.632,0.0,0.0,2.54,0.396,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,0.0,75.248,0.0,23.282,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,70.851,0.0,5.753,15.632,3.269,0.0,0.0,0.0,0.0,2192.0,2562.1,39.678,13.27,0.0,4.719,23.705,4.446,10.133,1.504,19.077,-9.362,0.0,0.0,0.077,11.566,-0.343,6.119,0.0,20.834,0.0,2.867,-17.238,-7.765,0.0,0.197,-0.722,-0.06,0.577,-0.049,-0.553,4.531,0.0,0.0,-0.009,-4.0,-0.339,-0.191,-0.585,-1.888,0.0,0.104,6.303,2.533,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 +house008.xml,183.501,183.501,39.139,39.139,144.362,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.556,0.53,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,0.0,110.924,0.0,26.378,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,104.521,0.0,9.981,18.129,3.214,0.0,0.0,0.0,0.0,2473.2,3287.8,54.741,19.298,0.0,7.23,27.419,4.689,24.238,1.181,22.401,-7.862,0.0,0.0,1.235,17.867,-0.356,18.326,0.0,6.386,0.0,7.825,-18.694,-8.197,0.0,0.294,-1.11,-0.063,1.637,-0.086,-1.372,5.318,0.0,0.0,-0.1,-2.732,-0.356,-0.983,-0.682,-0.282,0.0,0.528,7.259,2.809,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 +house009.xml,154.293,154.293,33.983,33.983,120.31,0.0,0.0,0.0,0.0,0.0,0.0,2.035,0.0,0.0,2.375,0.286,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,0.0,90.634,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,85.401,0.0,5.187,15.632,3.276,0.0,0.0,0.0,0.0,2227.1,2605.9,44.161,13.902,0.0,5.098,28.389,4.31,13.07,2.257,19.625,-8.244,0.0,0.0,0.266,15.661,-0.329,8.731,0.0,21.443,0.0,0.0,-17.529,-7.88,0.0,0.238,-0.711,-0.038,0.753,-0.078,-0.78,4.49,0.0,0.0,-0.028,-4.065,-0.325,-0.258,-0.521,-1.794,0.0,0.0,5.992,2.391,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 +house010.xml,153.796,153.796,37.549,37.549,116.246,0.0,0.0,0.0,0.0,0.0,0.0,1.86,0.0,0.0,2.896,0.273,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,0.0,82.81,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,78.033,0.0,7.28,18.129,3.214,0.0,0.0,0.0,0.0,2409.0,2810.7,45.27,15.353,0.875,4.93,25.457,4.901,9.774,1.256,23.582,-9.227,0.0,0.0,0.906,11.41,-0.365,19.566,0.0,6.402,0.0,4.869,-18.715,-8.186,0.023,0.211,-0.764,-0.099,0.558,-0.073,-1.356,5.066,0.0,0.0,-0.046,-4.161,-0.362,-1.021,-0.677,-0.269,0.0,0.334,7.219,2.8,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 +house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,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,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,0.0,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,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 +house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,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,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,0.0,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,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 +house013.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 +house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,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,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,3131.8,0.0,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,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 +house015.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 +house016.xml,61.263,61.263,39.85,39.85,0.0,0.0,21.413,0.0,0.0,0.0,7.562,0.538,0.161,0.004,3.068,1.038,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.225,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.35,0.164,12.001,10.478,0.0,0.0,0.0,1.0,16.0,7459.2,3559.3,42.956,19.008,0.0,4.428,10.851,0.619,5.712,0.298,7.395,-8.024,0.0,0.0,0.0,6.777,-0.02,5.735,0.0,3.86,0.0,0.0,-8.634,-4.768,0.0,-0.362,-0.889,-0.023,2.899,-0.047,-0.596,12.366,0.0,0.0,0.0,-8.869,-0.022,-1.375,-1.189,-1.027,0.0,0.0,7.78,3.838,1759.0,1745.5,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 +house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,0.0,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 +house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,0.0,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,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2606.0,1095.0,711.0,800.0 +house019.xml,129.831,129.831,51.94,51.94,77.891,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.257,3.783,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.116,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.065,0.0,44.56,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6497.7,84.656,46.058,0.0,11.387,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.955,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.944,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,0.0,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 +house020.xml,116.979,116.979,56.877,56.877,0.0,0.0,60.102,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.245,2.923,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.965,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.971,0.0,34.513,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6618.4,31.034,32.534,0.91,11.02,10.576,1.133,9.807,0.632,14.612,-15.405,0.0,0.0,0.0,7.524,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.24,0.116,0.176,0.053,6.39,0.012,-1.763,21.501,0.0,0.0,0.0,-6.709,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,0.0,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 +house021.xml,156.416,156.416,48.605,48.605,107.811,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.488,1.582,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.77,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,18.993,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4771.0,81.115,23.848,0.0,8.272,27.058,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.315,26.613,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.008,-0.864,0.005,2.201,-0.093,-1.709,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.322,8.889,3.787,1759.0,1745.5,13752.0,4620.1,0.0,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 +house022.xml,137.518,137.518,48.884,48.884,0.0,88.635,0.0,0.0,0.0,0.0,0.0,2.204,0.0,0.0,8.878,0.897,12.47,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,88.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.755,0.0,19.669,10.989,1.479,0.0,0.0,184.0,126.0,2989.1,5375.4,90.672,27.64,3.697,3.766,20.67,0.0,0.0,1.489,16.102,-13.284,0.0,0.0,14.728,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.522,0.0,0.0,-0.127,-0.987,12.096,0.0,0.0,1.908,0.0,-0.281,-2.742,-0.645,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,0.0,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 +house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 +house024.xml,129.181,129.181,44.059,44.059,0.0,85.122,0.0,0.0,0.0,0.0,0.0,2.117,0.0,0.0,5.375,0.691,16.753,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.176,0.0,16.013,14.653,2.088,0.0,0.0,0.0,0.0,2750.5,3528.1,72.024,17.577,0.0,7.189,30.113,0.0,0.0,0.682,6.988,-7.991,0.0,0.0,5.221,0.0,-0.109,25.401,0.0,1.837,0.0,11.726,-8.633,-2.537,0.0,0.564,1.148,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.499,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.853,5.531,1.379,2176.1,2226.5,14983.5,4452.7,0.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,21856.0,1377.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7041.0,2605.0,3636.0,800.0 +house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,0.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,32212.0,8765.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 +house026.xml,57.14,57.14,24.857,24.857,32.282,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,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,0.0,18.136,0.0,14.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,13.896,0.0,0.0,8.607,2.082,0.0,0.0,0.0,0.0,1554.0,1299.3,17.371,0.0,0.0,1.761,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.103,0.0,-0.058,2.488,0.0,3.127,0.0,0.0,-6.707,-3.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,1294.8,1282.2,8578.8,3023.3,0.0,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 +house027.xml,72.753,72.753,31.736,31.736,41.016,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,7.874,1.017,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,0.0,20.065,0.0,17.882,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.901,0.0,23.04,8.564,5.232,0.0,0.0,0.0,0.0,1580.0,3622.8,24.052,22.72,0.716,1.776,7.887,0.452,0.0,0.591,5.247,-4.028,0.0,0.0,0.376,3.336,-0.14,1.745,0.0,10.425,0.0,2.046,-8.79,-2.845,0.489,1.124,0.653,0.056,0.0,-0.113,-0.286,5.628,0.0,0.0,0.105,3.836,-0.14,-0.365,-0.966,-3.474,0.0,2.595,10.728,3.102,1610.9,1574.7,10579.5,3728.4,0.0,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 +house028.xml,67.831,67.831,29.68,29.68,38.15,0.0,0.0,0.0,0.0,0.0,0.0,0.259,0.0,0.0,7.107,1.515,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,0.0,13.643,0.0,18.121,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.812,0.0,22.735,10.226,3.62,0.0,0.0,0.0,0.0,1517.3,3323.9,20.023,21.223,0.769,1.663,7.049,0.35,0.0,0.432,5.505,-3.79,0.0,0.0,0.236,2.464,-0.05,4.039,0.0,4.464,0.0,1.543,-9.08,-2.901,0.607,1.232,-0.581,0.098,0.0,0.066,-0.712,6.39,0.0,0.0,0.069,1.838,-0.051,-1.081,-1.198,-1.645,0.0,2.913,11.527,3.237,1857.7,1859.4,12951.6,4219.3,0.0,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 +house029.xml,77.601,77.601,29.95,29.95,47.651,0.0,0.0,0.0,0.0,0.0,0.0,0.639,0.0,0.0,6.107,0.906,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,0.0,31.987,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,31.653,0.0,13.604,9.614,0.0,0.0,0.0,0.0,0.0,1604.9,3000.4,28.473,13.951,0.0,3.364,14.695,0.392,0.0,0.308,6.693,-6.461,0.0,0.0,6.932,0.0,-0.085,7.292,0.0,7.304,0.0,3.15,-8.377,-3.711,0.0,1.12,-0.859,0.009,0.0,0.053,0.373,5.722,0.0,0.0,-0.449,0.0,-0.08,-0.809,-1.067,-1.536,0.0,1.215,7.168,2.832,1610.9,1574.7,11033.0,3888.2,0.0,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,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 +house030.xml,57.883,57.883,17.189,17.189,0.0,0.0,40.694,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.377,0.0,13.28,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.883,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,15.992,0.0,0.0,1.68,10.216,0.489,1.112,1.049,5.343,-4.368,0.0,0.0,0.0,3.578,-0.04,2.742,0.0,5.694,0.0,0.0,-7.809,-2.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,1066.0,992.8,6763.9,2581.0,0.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 +house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 +house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.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,1341.9,1264.5,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 +house033.xml,106.743,106.743,14.691,14.691,0.0,92.052,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.371,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,48.38,0.0,0.0,19.125,14.564,0.0,0.0,1.0,10.82,-7.637,0.0,0.0,14.706,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.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,0.0,924.8,0.0,3905.6,1188.1,0.0,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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 +house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.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,1759.0,1745.5,10287.1,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 +house035.xml,63.505,63.505,17.521,17.521,45.985,0.0,0.0,0.0,0.0,0.0,0.0,0.809,0.0,0.0,1.742,0.119,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.522,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.706,0.0,2.673,3.92,3.822,0.0,0.0,102.0,0.0,1326.3,1899.4,39.1,9.67,0.367,6.149,10.862,0.0,0.0,0.538,5.863,-7.44,0.0,0.0,7.797,0.0,0.004,13.61,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.579,-1.589,0.0,0.0,-0.082,-1.219,7.322,0.0,0.0,-4.457,0.0,0.009,-2.738,-0.728,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,0.0,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 +house036.xml,82.314,82.314,26.075,26.075,56.239,0.0,0.0,0.0,0.0,0.0,0.0,0.964,0.0,0.0,5.964,1.051,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.77,0.0,17.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.868,0.0,15.005,8.219,5.837,0.0,0.0,102.0,126.0,1461.8,3231.3,31.799,17.329,5.544,2.267,3.993,0.0,0.0,1.83,6.573,-7.755,0.0,0.0,21.29,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.427,-3.43,1.567,0.119,-0.032,0.0,0.0,-0.224,-0.58,6.698,0.0,0.0,2.216,0.0,-0.0,-0.749,-0.419,-0.061,0.0,0.0,4.352,2.019,1341.9,1264.5,6447.0,2476.3,0.0,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 +house037.xml,87.934,87.934,21.779,21.779,0.0,66.155,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,49.998,0.0,16.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,37.091,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,29.538,0.0,0.0,16.714,11.33,0.0,0.0,1.563,7.276,-10.49,0.0,0.0,6.59,0.0,-0.309,14.696,0.0,0.461,0.0,0.0,-6.818,-3.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,1341.9,1264.5,8324.2,3197.3,0.0,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 +house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 +house039.xml,98.796,98.796,24.025,24.025,74.77,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,5.136,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.084,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,49.765,0.0,0.0,14.276,5.416,0.0,0.0,2.519,15.643,-13.75,0.0,0.0,13.85,0.0,-0.039,13.263,0.0,0.557,0.0,0.0,-4.135,-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,2176.1,2226.5,17536.3,5211.3,0.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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 +house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 +house041.xml,259.077,259.077,47.133,47.133,211.944,0.0,0.0,0.0,0.0,0.0,0.0,4.164,0.0,0.0,2.576,0.254,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,0.0,185.392,0.0,26.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,174.689,0.0,4.652,15.632,5.039,0.0,0.0,105.0,0.0,3249.4,4561.5,77.749,23.467,0.0,11.26,44.834,3.482,34.914,3.052,41.616,-22.892,0.0,0.0,4.341,17.423,-0.477,64.05,0.0,2.763,0.0,0.0,-20.286,-10.995,0.0,0.097,-2.224,-0.127,1.602,-0.212,-4.015,11.033,0.0,0.0,-0.321,-5.328,-0.475,-3.481,-1.022,-0.258,0.0,0.0,6.561,2.948,1857.7,1859.4,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 +house042.xml,229.67,229.67,40.068,40.068,189.602,0.0,0.0,0.0,0.0,0.0,0.0,3.871,0.0,0.0,1.81,0.074,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,0.0,165.165,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.395,0.0,2.999,15.632,3.226,0.0,0.0,0.0,0.0,2758.3,3100.3,88.214,19.624,0.0,9.205,40.053,4.031,43.891,2.672,34.445,-21.633,0.0,0.0,2.453,14.538,-0.385,56.223,0.0,1.75,0.0,0.0,-19.152,-7.587,0.0,0.2,-1.588,-0.07,2.68,-0.16,-3.134,7.067,0.0,0.0,-0.272,-5.113,-0.382,-2.85,-0.642,-0.145,0.0,0.0,5.557,1.952,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 +house043.xml,158.13,158.13,30.051,30.051,128.078,0.0,0.0,0.0,0.0,0.0,0.0,2.456,0.0,0.0,2.028,0.119,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,0.0,108.178,0.0,19.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,103.04,0.0,3.036,13.084,2.207,0.0,0.0,0.0,0.0,1988.8,2798.1,54.664,13.818,0.0,3.172,23.263,2.301,33.889,5.621,23.662,-11.489,0.0,0.0,0.55,9.952,-0.267,28.928,0.0,1.576,0.0,0.0,-14.359,-5.16,0.0,0.032,-0.925,-0.1,1.55,-0.379,-2.383,5.793,0.0,0.0,-0.07,-3.676,-0.267,-1.616,-0.538,-0.147,0.0,0.0,4.463,1.402,1610.9,1574.7,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 +house044.xml,225.894,225.894,43.51,43.51,182.384,0.0,0.0,0.0,0.0,0.0,0.0,4.68,0.0,0.0,2.094,0.198,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,0.0,159.817,0.0,22.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.487,0.0,3.747,13.084,4.452,0.0,0.0,0.0,0.0,3093.4,3553.3,80.982,18.914,4.373,6.905,36.478,9.231,19.305,2.751,19.057,-13.33,0.0,0.0,12.909,15.111,-0.46,61.886,0.0,1.435,0.0,0.0,-18.031,-10.257,0.237,0.441,-1.46,-0.13,1.17,-0.123,-1.231,6.794,0.0,0.0,-1.164,-4.927,-0.458,-2.728,-0.484,-0.102,0.0,0.0,5.295,2.697,1610.9,1574.7,12168.1,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 +house045.xml,152.693,152.693,35.232,35.232,117.461,0.0,0.0,0.0,0.0,0.0,0.0,2.782,0.0,0.0,2.392,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,0.0,95.008,0.0,22.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,88.27,0.0,4.026,13.084,4.363,0.0,0.0,0.0,0.0,2317.8,3011.2,47.289,12.909,3.57,3.077,15.169,2.298,32.784,1.143,19.974,-13.617,1.045,-0.407,0.086,12.672,-0.187,20.635,0.0,10.931,0.0,0.0,-14.663,-7.028,-0.017,0.001,-1.114,-0.131,0.881,-0.09,-2.086,7.133,-0.068,0.396,-0.013,-4.082,-0.186,-1.184,-0.915,-1.259,0.0,0.0,4.825,2.036,1610.9,1574.7,12168.1,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 +house046.xml,25.037,25.037,25.037,25.037,0.0,0.0,0.0,0.0,0.0,0.0,5.364,0.446,0.267,0.009,3.738,1.038,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,0.0,13.922,0.276,12.84,4.305,0.617,0.0,0.0,0.0,0.0,3842.0,2404.7,16.167,13.004,0.0,2.525,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.275,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.814,4.589,0.545,596.8,442.2,5543.5,2208.6,0.0,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,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 +house047.xml,20.762,20.762,14.475,14.475,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.596,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,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,0.0,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.4,968.8,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.729,-0.554,0.0,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.101,0.032,0.0,0.0,-0.093,0.798,0.0,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.276,0.409,251.7,442.2,5772.6,1524.2,0.0,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,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 +house048.xml,91.642,91.642,39.796,39.796,51.846,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,12.899,3.824,0.0,0.0,0.0,3.691,0.085,0.498,3.017,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,0.0,35.87,0.0,12.637,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.021,0.0,51.358,7.253,2.688,0.0,0.0,0.0,0.0,1535.9,5475.4,42.021,33.069,1.024,2.643,12.009,0.0,0.0,0.815,4.922,-2.545,0.0,0.0,0.058,2.032,-0.525,6.797,0.0,4.194,0.0,6.419,-7.415,-1.512,1.323,1.018,9.256,0.0,0.0,0.549,2.757,4.297,0.0,0.0,0.072,10.121,-0.513,0.526,-0.449,1.931,0.0,6.917,11.576,2.179,130.3,817.7,11617.6,3495.1,0.0,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,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 +house049.xml,32.038,32.038,28.541,28.541,3.497,0.0,0.0,0.0,0.0,0.0,5.888,0.036,0.0,0.0,5.819,0.147,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.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.239,0.0,33.85,4.262,1.306,0.0,0.0,0.0,90.0,4432.3,2181.9,12.361,17.634,0.0,1.38,4.471,0.0,0.0,0.0,3.895,-7.574,0.0,0.0,0.0,1.446,-0.075,2.582,0.0,1.809,0.0,0.0,-2.437,-0.44,0.0,1.489,6.503,0.0,0.0,0.0,3.26,15.042,0.0,0.0,0.0,2.984,-0.076,-0.307,-3.541,0.516,0.0,0.0,7.53,1.034,728.6,567.4,7487.2,928.5,0.0,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,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 +house050.xml,51.837,51.837,21.855,21.855,29.983,0.0,0.0,0.0,0.0,0.0,0.0,0.275,0.0,0.0,1.904,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,0.0,16.067,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.694,0.0,5.132,8.572,0.0,0.0,0.0,0.0,0.0,1156.7,2604.3,11.114,15.388,0.0,4.133,6.508,0.0,0.0,2.031,5.644,-4.221,0.0,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.921,-10.283,-1.232,0.0,-0.288,-0.312,0.0,0.0,-0.391,-0.567,4.041,0.0,0.0,-0.956,0.0,-0.123,-0.557,-1.219,-0.76,0.0,0.568,5.253,0.551,1689.0,437.0,10674.9,2994.2,0.0,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,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 From 69f37d35becb2ec422b13d5b7e081768018e11cb Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Tue, 18 Jul 2023 18:10:10 -0600 Subject: [PATCH 070/217] Further downselecting JSONs. --- .../g_functions/C_configurations_5m_v1.0.json | 68 - .../g_functions/L_configurations_5m_v1.0.json | 228 -- .../LopU_configurations_5m_v1.0.json | 2140 +++-------------- .../Open_configurations_5m_v1.0.json | 68 - .../g_functions/U_configurations_5m_v1.0.json | 66 - .../resources/g_functions/util.rb | 34 +- .../g_functions/zoned_rectangle_5m_v1.0.json | 56 - HPXMLtoOpenStudio/resources/hvac_sizing.rb | 2 +- 8 files changed, 288 insertions(+), 2374 deletions(-) diff --git a/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json index f0fe7ca38d..a97965ca65 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json @@ -426,73 +426,5 @@ 3.003 ] } - }, - "3_5": { - }, - "3_6": { - }, - "3_7": { - }, - "3_8": { - }, - "3_9": { - }, - "3_10": { - }, - "4_4": { - }, - "4_5": { - }, - "4_6": { - }, - "4_7": { - }, - "4_8": { - }, - "4_9": { - }, - "4_10": { - }, - "5_5": { - }, - "5_6": { - }, - "5_7": { - }, - "5_8": { - }, - "5_9": { - }, - "5_10": { - }, - "6_6": { - }, - "6_7": { - }, - "6_8": { - }, - "6_9": { - }, - "6_10": { - }, - "7_7": { - }, - "7_8": { - }, - "7_9": { - }, - "7_10": { - }, - "8_8": { - }, - "8_9": { - }, - "8_10": { - }, - "9_9": { - }, - "9_10": { - }, - "10_10": { } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json index e4acdcc16b..1e85d92446 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json @@ -4006,233 +4006,5 @@ 2.275, 3.003 ] - }, - "5_8": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351674541297003, - 3.1871584837082323, - 3.52146787571424, - 4.0246905282486605, - 4.609321065213261, - 5.531998325717638, - 6.787487949292699, - 8.0238487563053, - 9.989481499696176, - 11.319077591311201, - 12.317698404144412, - 13.77017438218582, - 14.803791011262735, - 17.168733422859315, - 19.199073920923865, - 19.757169900726925, - 20.25645054881176, - 20.741372528795203, - 21.11564089207752, - 21.435128698245556, - 21.709175878065935, - 21.937665539556512, - 22.107902023696294, - 22.301882492493917, - 22.434324955049416, - 22.49936240417745, - 22.604862805637637 - ], - "5._24._0.075": [ - 0.8740059532267963, - 1.1958031759615422, - 1.4813847491413066, - 1.8198213217004344, - 2.111467924224729, - 2.4511928331517994, - 2.788419736392088, - 3.0449985118194665, - 3.387906687674658, - 3.6165337930645074, - 3.800445433117961, - 4.099555699995679, - 4.341243678633967, - 5.030919890706527, - 5.853377116489864, - 6.136096755624598, - 6.419782777248726, - 6.728889830160859, - 6.996616985495829, - 7.247952071453654, - 7.485109367973971, - 7.701214729472868, - 7.87424080184473, - 8.08623429778054, - 8.241350171265692, - 8.321296817437085, - 8.456827488978547 - ], - "5._384._0.0875": [ - 3.4912645960444038, - 4.018532691427787, - 4.633801822953173, - 5.608490835920301, - 6.727535606463814, - 8.441487696995443, - 10.645969495095851, - 12.648417773367308, - 15.495663118678907, - 17.22777343043462, - 18.449413297036923, - 20.130151629098243, - 21.27338541215285, - 23.776620012231746, - 25.853227961925917, - 26.41664872815853, - 26.920352158473378, - 27.408927825468414, - 27.786187363981664, - 28.108150094367847, - 28.384645430187533, - 28.615504325614904, - 28.787563296034193, - 28.98391142581023, - 29.117931019932204, - 29.183680652861288, - 29.290194256413553 - ], - "5._48._0.075": [ - 1.5268463243731443, - 1.8679037053125465, - 2.1622431316564765, - 2.506080869002255, - 2.800134663979591, - 3.143293177931286, - 3.5121559747492124, - 3.858263995568376, - 4.443282480496937, - 4.876228885958847, - 5.228058654410402, - 5.794334496496818, - 6.244625194582702, - 7.48160043592223, - 8.851153891097995, - 9.291364488655264, - 9.713156371151566, - 10.149565617736481, - 10.50605834819742, - 10.822860306552041, - 11.104609965897009, - 11.346426896965015, - 11.530022717254981, - 11.742299534963758, - 11.889190688106654, - 11.962071979519212, - 12.081243603186358 - ], - "5._96._0.075": [ - 2.2092718103274063, - 2.5553235631964974, - 2.851914682493343, - 3.2002437486537096, - 3.5240368399445585, - 4.0018899198128, - 4.66000309376343, - 5.326149378688731, - 6.441169505011087, - 7.248012157890372, - 7.889843384642584, - 8.890265690745448, - 9.655071845999691, - 11.590783665680481, - 13.453650272958416, - 13.994870639325233, - 14.488443699399046, - 14.975542790043782, - 15.35615006871103, - 15.68327938298829, - 15.96540337978114, - 16.20141496534739, - 16.37750412410574, - 16.578093541273176, - 16.715189773758574, - 16.782620074382894, - 16.892150155562007 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json index bd83a6439c..1d562da84b 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json @@ -1277,8 +1277,8 @@ ] } }, - "3_6": { - "3": { + "4_4": { + "1": { "bore_locations": [ [ 0.0, @@ -1293,233 +1293,21 @@ 0.0 ], [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 25.0 + 15.0, + 0.0 ], [ - 0.0, + 15.0, 5.0 ], [ - 0.0, + 15.0, 10.0 ], [ 0.0, 15.0 ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83516636403249, - 3.1870790302308603, - 3.52110323294467, - 4.0272606825767205, - 4.632594093904775, - 5.644117747547356, - 7.086573106252476, - 8.501767051361133, - 10.647623960640018, - 12.014244333079917, - 13.00075525046395, - 14.38519206960164, - 15.340409912929541, - 17.461765862586756, - 19.239311809479954, - 19.723623192995195, - 20.15674745111677, - 20.577284005395544, - 20.902240513968025, - 21.179664671137026, - 21.41797114070974, - 21.61696776263659, - 21.765294415529393, - 21.934519151835357, - 22.050050407459302, - 22.106748111158083, - 22.198599228598425 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.4511928331339776, - 2.788419485206643, - 3.044983369409179, - 3.3876590434118263, - 3.6162413708106658, - 3.800882278563511, - 4.104482448644332, - 4.354564786512482, - 5.1001214814662585, - 6.038343389107608, - 6.364506765624053, - 6.690040468379364, - 7.04024677791614, - 7.337769493121808, - 7.610844488162148, - 7.861863789567409, - 8.084091949142115, - 8.256992112386138, - 8.46199456506864, - 8.606773687937611, - 8.679499726008759, - 8.799561413029197 - ], - "5._384._0.0875": [ - 3.4908936121199377, - 4.022424539131292, - 4.663536443113108, - 5.740399901736935, - 7.028231813658576, - 8.982120713256503, - 11.353720201632566, - 13.364160490281378, - 16.04908715803697, - 17.61328882916323, - 18.69531524091682, - 20.16518531856478, - 21.156131313683577, - 23.316285789652603, - 25.105930509878185, - 25.591598611852813, - 26.02658774023382, - 26.44912593996043, - 26.776106840254027, - 27.055309816052098, - 27.295460176648927, - 27.49626506349677, - 27.645973963474155, - 27.816963999038112, - 27.933662709918377, - 27.99088699062648, - 28.08348795972977 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564765, - 2.5060808689175356, - 2.8001344398525347, - 3.1432580675772903, - 3.5118213564664083, - 3.858730547510315, - 4.457693328675814, - 4.919022966389919, - 5.30643593578104, - 5.948070264236493, - 6.466864025589569, - 7.88363599511452, - 9.372348320880324, - 9.826134107844839, - 10.249474144712513, - 10.675850509835309, - 11.015470477271405, - 11.31106303503287, - 11.569175611468845, - 11.787291122783323, - 11.950942735420842, - 12.138249564943735, - 12.266662026307541, - 12.329951485035787, - 12.432812427812886 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.555323562842096, - 2.8519141715219485, - 3.2001897391514844, - 3.5237018182002977, - 4.0034572989200115, - 4.683699012112496, - 5.408958358973542, - 6.682074136726317, - 7.612557277089576, - 8.34258291384699, - 9.4496440089788, - 10.265920197582076, - 12.21921053220615, - 13.969251302932754, - 14.459329902784615, - 14.900818693831958, - 15.332233212930783, - 15.667036278656198, - 15.953446567869575, - 16.19975887210169, - 16.405491965102666, - 16.558816668723292, - 16.73348993732047, - 16.85273658734177, - 16.911300150959878, - 17.0062494743056 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 25.0 - ], [ 0.0, 5.0 @@ -1527,45 +1315,37 @@ [ 0.0, 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 ] ], "g": { "5._192._0.08": [ - 2.835165636239759, - 3.187022210169797, - 3.5206663081531597, - 4.025224283894344, - 4.622077772031539, - 5.587175138595497, - 6.909989498572901, - 8.182188320770596, - 10.102054411705197, - 11.326533300357722, - 12.212283813917772, - 13.458521557327469, - 14.32037175488087, - 16.241002171927374, - 17.856184122964102, - 18.296950909559296, - 18.691502153463155, - 19.074872424233195, - 19.371366132871266, - 19.62455307746462, - 19.842153743936443, - 20.023940231895985, - 20.15944769144576, - 20.31407619587312, - 20.419633034498688, - 20.471426339422703, - 20.55529997759825 + 2.835165636239734, + 3.187022207622659, + 3.520662700126178, + 4.024811706360364, + 4.618246492085718, + 5.577602357189488, + 6.930593362977536, + 8.27013730911453, + 10.305799407868758, + 11.592006196271335, + 12.513529975375201, + 13.79808800355458, + 14.678979018204332, + 16.62480215658412, + 18.2488264768942, + 18.690716626034398, + 19.085984722477804, + 19.46983352268822, + 19.76659712159539, + 20.019967202996902, + 20.237708518807462, + 20.41961226179577, + 20.555207696500926, + 20.709951202677345, + 20.81558646499876, + 20.867416249016795, + 20.951344739626176 ], "5._24._0.075": [ 0.8740059532267964, @@ -1573,115 +1353,115 @@ 1.4813847491413072, 1.8198213217004342, 2.1114679242247276, - 2.4511928331220942, - 2.788419317683001, - 3.044973112237475, - 3.387442971975651, - 3.615625694910013, - 3.7997707593049777, - 4.101648960845369, - 4.34836954604059, - 5.066118036485306, - 5.933521514355644, - 6.2291087469816935, - 6.5224140838669875, - 6.8368844710999905, - 7.103736932792778, - 7.348748218479838, - 7.574296932072467, - 7.77442839556125, - 7.930537826400502, - 8.116295945506439, - 8.247952338508437, - 8.314231046970024, - 8.423896238090979 + 2.451192833122094, + 2.7884193176830028, + 3.0449731122312995, + 3.3874426433772196, + 3.6156114031501847, + 3.7996703668647145, + 4.100882362106419, + 4.346224898925525, + 5.058431311244528, + 5.938205478332148, + 6.2454712872914175, + 6.553322425438452, + 6.885623183027443, + 7.168405190432672, + 7.427814593237117, + 7.66575546132917, + 7.875646469458194, + 8.038201801611946, + 8.229905687023377, + 8.364436565153676, + 8.43170041321568, + 8.542218918216287 ], "5._384._0.0875": [ - 3.490353090798699, - 4.01989472538979, - 4.650074683074909, - 5.672125359474291, - 6.851109527908576, - 8.605795148967628, - 10.726413387549108, - 12.527769778654351, - 14.941544308345266, - 16.35146455474905, - 17.32816812875873, - 18.657029011167825, - 19.553950365843278, - 21.512748567086167, - 23.13847206968575, - 23.579986475811147, - 23.97560570996832, - 24.360048690298953, - 24.657688897332072, - 24.911857324443865, - 25.130532160172837, - 25.31341974287475, - 25.449768224585068, - 25.60550761633395, - 25.711785578392167, - 25.76389192002599, - 25.848187015341434 + 3.490341452425285, + 4.019256693703507, + 4.645242475571041, + 5.663015696969794, + 6.870961396281224, + 8.722045952534526, + 10.968017694918828, + 12.850605315815251, + 15.333821659373363, + 16.76783249479386, + 17.755971993298417, + 19.095372128092308, + 19.99702132365333, + 21.961932120277055, + 23.590345099332236, + 24.032380773467327, + 24.428493817447, + 24.813430064076773, + 25.11149023696463, + 25.366028392849262, + 25.58505101682981, + 25.76825577351642, + 25.904849535939963, + 26.06088890444515, + 26.16737568079158, + 26.21958387181005, + 26.304039577016905 ], "5._48._0.075": [ 1.5268463243731403, 1.8679037053125447, 2.1622431316564747, - 2.506080868861052, - 2.8001342903818065, - 3.1432338677492435, - 3.511469488861613, - 3.8575646038809466, - 4.451038848086397, - 4.899145773043867, - 5.267882191665814, - 5.865545758718084, - 6.340141487782927, - 7.61724884488431, - 8.95284488200989, - 9.360857610428852, - 9.742383602138412, - 10.127555206657638, - 10.435186609953409, - 10.70349157744128, - 10.938321853770459, - 11.137200606447122, - 11.286654365773371, - 11.458045442468519, - 11.575696113672798, - 11.633712476115646, - 11.728024113960053 + 2.5060808688610523, + 2.800134290381807, + 3.1432338676191445, + 3.51146772321088, + 3.8574550748275773, + 4.448646633722987, + 4.892881358644619, + 5.259328855039348, + 5.860557995824219, + 6.346883434753211, + 7.687273576885126, + 9.101118153759293, + 9.529338705689813, + 9.927289641778144, + 10.326192135238777, + 10.642615140692383, + 10.916900159028845, + 11.15566961322875, + 11.356928805832112, + 11.507619363301462, + 11.67983744328869, + 11.797719211064464, + 11.855743645066019, + 11.949922092002977 ], "5._96._0.075": [ 2.209271810327404, - 2.5553235626058277, - 2.8519138306223537, - 3.2001519255910544, - 3.5233565084083582, - 4.00181125843581, - 4.672987175882655, - 5.3682469758532685, - 6.544602607778377, - 7.385263379073412, - 8.04019388525306, - 9.031168848487088, - 9.762167087463515, - 11.517742074213341, - 13.100100303440724, - 13.544657580295446, - 13.945906693404545, - 14.338593534708988, - 14.643844782270019, - 14.905192372169658, - 15.130207249306137, - 15.318339057420017, - 15.4586077895531, - 15.618511102003728, - 15.727695750445458, - 15.781314384988681, - 15.868216755236118 + 2.5553235626058273, + 2.8519138306223555, + 3.2001519249819794, + 3.523354932375397, + 4.001549412014162, + 4.669089316628495, + 5.359101946268944, + 6.552379489671893, + 7.429815477491777, + 8.121820314543074, + 9.173143912712952, + 9.946213029499233, + 11.781039134458084, + 13.403268695619028, + 13.854454372473098, + 14.260003929688882, + 14.655669234316463, + 14.962475413080817, + 15.224731293240202, + 15.450225154706388, + 15.638568709166531, + 15.778910465988814, + 15.938820677805234, + 16.047959625600665, + 16.1015379064994, + 16.188353466015815 ] }, "logtime": [ @@ -1713,10 +1493,8 @@ 2.275, 3.003 ] - } - }, - "3_7": { - "5": { + }, + "2": { "bore_locations": [ [ 0.0, @@ -1731,1505 +1509,171 @@ 0.0 ], [ - 10.0, - 5.0 - ], - [ - 0.0, - 30.0 + 15.0, + 0.0 ], [ - 0.0, + 15.0, 5.0 ], - [ - 0.0, - 10.0 - ], [ 0.0, 15.0 ], [ 0.0, - 20.0 + 5.0 ], [ 0.0, - 25.0 + 10.0 ] ], "g": { "5._192._0.08": [ - 2.8351663640325118, - 3.187079028147522, - 3.521099375312869, - 4.026628185639796, - 4.624121933500021, - 5.589257181505182, - 6.914536806279306, - 8.198262888562768, - 10.165724667933992, - 11.443435696474708, - 12.378511326324654, - 13.707539661916094, - 14.634655887743456, - 16.716709292758885, - 18.477940517387317, - 18.959535511622516, - 19.390518402212614, - 19.80920812106775, - 20.13279984576155, - 20.409098301906138, - 20.646417420962138, - 20.844555696571977, - 20.99223218322805, - 21.160674679044376, - 21.275669901026205, - 21.33210917521428, - 21.423556061535383 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.451192833133977, - 2.7884194852066426, - 3.044983369404198, - 3.3876587165849865, - 3.6162237361043794, - 3.8007379836159765, - 4.103129720794652, - 4.350102829372217, - 5.067928120419007, - 5.936077471900313, - 6.232835121445177, - 6.528263994452777, - 6.846458728182723, - 7.118094303455485, - 7.3691373778191585, - 7.601970037069404, - 7.81024240141826, - 7.973996458213108, - 8.170576214330374, - 8.311249417293881, - 8.382568722127301, - 8.501421332908262 - ], - "5._384._0.0875": [ - 3.4908888766086696, - 4.0214372858495055, - 4.652182322530747, - 5.674285684119839, - 6.855637238669818, - 8.629119583234898, - 10.812661795538952, - 12.70643432437585, - 15.2907750005773, - 16.819034441384648, - 17.883354114009517, - 19.336025584072246, - 20.318656801322135, - 22.46586188873393, - 24.24738709804333, - 24.73104604652916, - 25.164120466171532, - 25.584719310636363, - 25.9100853134493, - 26.1878801786096, - 26.42674861454247, - 26.626423100504812, - 26.775273825459685, - 26.945246437882762, - 27.061246701378952, - 27.118131538555865, - 27.210197174032988 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564765, - 2.5060808689175356, - 2.8001344398525343, - 3.1432580674775066, - 3.5118195257398965, - 3.858580828981761, - 4.45290162982718, - 4.90113258488081, - 5.269790745706036, - 5.867569878811222, - 6.342998928383726, - 7.630218370919072, - 8.99875736085706, - 9.42340565644545, - 9.823428024995106, - 10.230313584163639, - 10.55748853873308, - 10.844452946620997, - 11.096798341774953, - 11.311336588816863, - 11.473039104576452, - 11.658900755076706, - 11.786782136171931, - 11.849958455775068, - 11.952840272265341 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235628420947, - 2.851914171521947, - 3.200189738662114, - 3.523700194199995, - 4.00307240574259, - 4.6750093684963225, - 5.370264392484583, - 6.547772192570917, - 7.392978051062503, - 8.055375224431513, - 9.06650934699318, - 9.82044322122481, - 11.660295696221507, - 13.352079239020547, - 13.832184631905527, - 14.266794426624795, - 14.693142242641112, - 15.025019229620597, - 15.309476385248932, - 15.554486436630631, - 15.759353953110262, - 15.912131620872866, - 16.086251572449545, - 16.2051801755, - 16.263612598479668, - 16.35838426983123 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "3_8": { - }, - "3_9": { - }, - "3_10": { - }, - "4_4": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835165636239734, - 3.187022207622659, - 3.520662700126178, - 4.024811706360364, - 4.618246492085718, - 5.577602357189488, - 6.930593362977536, - 8.27013730911453, - 10.305799407868758, - 11.592006196271335, - 12.513529975375201, - 13.79808800355458, - 14.678979018204332, - 16.62480215658412, - 18.2488264768942, - 18.690716626034398, - 19.085984722477804, - 19.46983352268822, - 19.76659712159539, - 20.019967202996902, - 20.237708518807462, - 20.41961226179577, - 20.555207696500926, - 20.709951202677345, - 20.81558646499876, - 20.867416249016795, - 20.951344739626176 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961542, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247276, - 2.451192833122094, - 2.7884193176830028, - 3.0449731122312995, - 3.3874426433772196, - 3.6156114031501847, - 3.7996703668647145, - 4.100882362106419, - 4.346224898925525, - 5.058431311244528, - 5.938205478332148, - 6.2454712872914175, - 6.553322425438452, - 6.885623183027443, - 7.168405190432672, - 7.427814593237117, - 7.66575546132917, - 7.875646469458194, - 8.038201801611946, - 8.229905687023377, - 8.364436565153676, - 8.43170041321568, - 8.542218918216287 - ], - "5._384._0.0875": [ - 3.490341452425285, - 4.019256693703507, - 4.645242475571041, - 5.663015696969794, - 6.870961396281224, - 8.722045952534526, - 10.968017694918828, - 12.850605315815251, - 15.333821659373363, - 16.76783249479386, - 17.755971993298417, - 19.095372128092308, - 19.99702132365333, - 21.961932120277055, - 23.590345099332236, - 24.032380773467327, - 24.428493817447, - 24.813430064076773, - 25.11149023696463, - 25.366028392849262, - 25.58505101682981, - 25.76825577351642, - 25.904849535939963, - 26.06088890444515, - 26.16737568079158, - 26.21958387181005, - 26.304039577016905 - ], - "5._48._0.075": [ - 1.5268463243731403, - 1.8679037053125447, - 2.1622431316564747, - 2.5060808688610523, - 2.800134290381807, - 3.1432338676191445, - 3.51146772321088, - 3.8574550748275773, - 4.448646633722987, - 4.892881358644619, - 5.259328855039348, - 5.860557995824219, - 6.346883434753211, - 7.687273576885126, - 9.101118153759293, - 9.529338705689813, - 9.927289641778144, - 10.326192135238777, - 10.642615140692383, - 10.916900159028845, - 11.15566961322875, - 11.356928805832112, - 11.507619363301462, - 11.67983744328869, - 11.797719211064464, - 11.855743645066019, - 11.949922092002977 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235626058273, - 2.8519138306223555, - 3.2001519249819794, - 3.523354932375397, - 4.001549412014162, - 4.669089316628495, - 5.359101946268944, - 6.552379489671893, - 7.429815477491777, - 8.121820314543074, - 9.173143912712952, - 9.946213029499233, - 11.781039134458084, - 13.403268695619028, - 13.854454372473098, - 14.260003929688882, - 14.655669234316463, - 14.962475413080817, - 15.224731293240202, - 15.450225154706388, - 15.638568709166531, - 15.778910465988814, - 15.938820677805234, - 16.047959625600665, - 16.1015379064994, - 16.188353466015815 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351647264993423, - 3.186951185113044, - 3.520120762095406, - 4.022908840457471, - 4.613192189018059, - 5.553357119545568, - 6.836941764565307, - 8.072417777476293, - 9.917034103843235, - 11.073390796484931, - 11.900087116780503, - 13.051737859601054, - 13.84151299956939, - 15.58897243519494, - 17.050915239385326, - 17.44916920093101, - 17.805773444528953, - 18.152349245604196, - 18.42056433245828, - 18.649624669380906, - 18.846603680143236, - 19.011257479437973, - 19.134008158091746, - 19.27413530400662, - 19.369785226120584, - 19.41670551318206, - 19.49264845544399 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247267, - 2.451192833107242, - 2.7884191082784517, - 3.044960290773892, - 3.3871729161976023, - 3.6148602890949224, - 3.798427780692208, - 4.098671421766258, - 4.342760701025555, - 5.044196907034894, - 5.885761165493484, - 6.173109241648802, - 6.458187213329125, - 6.763304769544556, - 7.021219579646446, - 7.256751563518459, - 7.472114549141299, - 7.661736239898098, - 7.808486494653682, - 7.981608972488866, - 8.103176704421157, - 8.1639743328458, - 8.263914864157965 - ], - "5._384._0.0875": [ - 3.4896748046623505, - 4.0171018504542335, - 4.6391649603613345, - 5.633334582359261, - 6.777423354182605, - 8.48011743093466, - 10.508676150536084, - 12.196848641332405, - 14.418505687057298, - 15.700982948369044, - 16.585012703238007, - 17.784388376412807, - 18.59237334378901, - 20.356297930357258, - 21.820925841542255, - 22.218835703293472, - 22.575624522310008, - 22.922522909474765, - 23.191302577308537, - 23.42086333314305, - 23.61846985157123, - 23.783815779548103, - 23.907095834432504, - 24.04794453869986, - 24.14405292279984, - 24.19116378321505, - 24.267345824271224 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.506080868790454, - 2.8001341035433973, - 3.143203617967474, - 3.511029904247479, - 3.856152805478866, - 4.444974647594222, - 4.884466201927085, - 5.243246979981296, - 5.8227560139656775, - 6.283297777362145, - 7.524103840428952, - 8.807945512182934, - 9.194384924931446, - 9.553166658512048, - 9.912687850486941, - 10.197983773814087, - 10.445428388178932, - 10.661051157114642, - 10.843018763232672, - 10.979390883733371, - 11.135467248125636, - 11.242381692801242, - 11.295016290117196, - 11.380439148692652 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235623104933, - 2.8519134044978625, - 3.2001046586465205, - 3.522925086582346, - 3.9998856532802853, - 4.663987000362338, - 5.342182722576681, - 6.4831737142367984, - 7.300051390954155, - 7.935454728449091, - 8.891221455834549, - 9.589548472760537, - 11.240752602456341, - 12.699955368817093, - 13.106043498915271, - 13.471550686224996, - 13.828500722672317, - 14.10565082229637, - 14.342706531216326, - 14.546746378452665, - 14.717337608943652, - 14.844505073188188, - 14.989509482128286, - 15.088491705043397, - 15.137077502637203, - 15.215769375587161 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "4_5": { - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351663640324896, - 3.187079025855097, - 3.5210961280230464, - 4.026256801080415, - 4.620679596130408, - 5.581342227156848, - 6.943112631117537, - 8.3119061968232, - 10.437615443796641, - 11.805968769447427, - 12.795931741961128, - 14.185816514269026, - 15.144100752774316, - 17.26865417032703, - 19.045229973117674, - 19.528819270594727, - 19.96107115280859, - 20.380604312268346, - 20.70466083731581, - 20.98126901903915, - 21.218816320474723, - 21.417137287655024, - 21.564947879714698, - 21.73356300587548, - 21.848673489949775, - 21.905165277405725, - 21.996689417861297 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.451192833133975, - 2.7884194852066417, - 3.044983369398643, - 3.3876584208449128, - 3.6162108734136047, - 3.8006476284261015, - 4.102439785864223, - 4.3481743258226935, - 5.061270999247916, - 5.9447576180517485, - 6.255824443290809, - 6.569549262699487, - 6.910884687344959, - 7.203860980226212, - 7.474829914695701, - 7.725368144099679, - 7.948050522229073, - 8.121647028551868, - 8.327650099025401, - 8.473069945656743, - 8.546070023645806, - 8.666454143188732 - ], - "5._384._0.0875": [ - 3.4908783986811023, - 4.0208629086587555, - 4.647845957178613, - 5.667156867053966, - 6.883390991621373, - 8.779441562788344, - 11.137539539318718, - 13.153520996798933, - 15.848687597244828, - 17.416971545953995, - 18.50067665547721, - 19.971432282122446, - 20.962238600786442, - 23.11998407238362, - 24.906027031814602, - 25.39053284565908, - 25.824397830204305, - 26.2457760431702, - 26.571799833918924, - 26.85017140979974, - 27.089580764047856, - 27.28974768659247, - 27.43897869190371, - 27.609416113730724, - 27.725739368315388, - 27.782781485012812, - 27.875094586767542 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564765, - 2.506080868917536, - 2.8001344398525374, - 3.143258067360414, - 3.511817936630581, - 3.8584822442261126, - 4.450749723549048, - 4.8955487977683045, - 5.2624184546734085, - 5.865189593370569, - 6.354811377674212, - 7.721374527012855, - 9.197553106076711, - 9.651881985036304, - 10.076753245376496, - 10.50504496042398, - 10.846271743861031, - 11.143043320858995, - 11.401993276463116, - 11.620613290765638, - 11.78448197622543, - 11.971839724079764, - 12.100177919593024, - 12.163399901545597, - 12.266104330035484 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235628420974, - 2.85191417152195, - 3.2001897381139464, - 3.52369877575152, - 4.002836709034522, - 4.671507621026489, - 5.3623523958800625, - 6.5608116580657425, - 7.451349226135013, - 8.161408662969507, - 9.253641844400866, - 10.066866858982916, - 12.02528106121994, - 13.781310517260053, - 14.272509409273658, - 14.714493448326069, - 15.14603465003867, - 15.480665262111376, - 15.76675572180131, - 16.012645594548598, - 16.217916740710585, - 16.370845171140513, - 16.544997925700372, - 16.663859571792273, - 16.722227495861578, - 16.816856530786318 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351656362397586, - 3.1870222077625265, - 3.520662542462161, - 4.024725277625346, - 4.6164449457051955, - 5.559562301356887, - 6.854561927969589, - 8.120447900048557, - 10.055027159587599, - 11.293184233597465, - 12.188168530628072, - 13.44527637833843, - 14.31280639256918, - 16.240881996543386, - 17.858017819727984, - 18.2988286039526, - 18.69325791174862, - 19.07639207395043, - 19.37262662305555, - 19.625559559503333, - 19.842912486664606, - 20.024473426844295, - 20.159806725278344, - 20.314229974812832, - 20.419643910451875, - 20.471366570947602, - 20.55512695097287 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961542, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247276, - 2.451192833122094, - 2.7884193176830028, - 3.0449731122316335, - 3.3874426359626373, - 3.615609781338652, - 3.7996515176094663, - 4.100646660046628, - 4.345307621318644, - 5.048678100564503, - 5.895766901113474, - 6.187380376051302, - 6.4786400855583235, - 6.79296162577209, - 7.06110990306807, - 7.308183302247539, - 7.536108766536005, - 7.738506630386754, - 7.896321762757711, - 8.083851340310042, - 8.216459592889546, - 8.283096451816174, - 8.393124312240852 - ], - "5._384._0.0875": [ - 3.4903452786224256, - 4.019124865882309, - 4.642710893735971, - 5.64029173843186, - 6.795006074396598, - 8.544031062865198, - 10.684327333208312, - 12.50532190359343, - 14.938880153800072, - 16.35608654578909, - 17.33622230796111, - 18.66804850109008, - 19.56611746845016, - 21.525574457478477, - 23.150610404022757, - 23.59181021466942, - 23.98711759947602, - 24.371231143615073, - 24.668599501471192, - 24.92253152951065, - 25.14099835946385, - 25.32370979150895, - 25.4599275558376, - 25.61551875230526, - 25.7216968242016, - 25.773754741589535, - 25.857973142820374 - ], - "5._48._0.075": [ - 1.5268463243731403, - 1.8679037053125447, - 2.1622431316564747, - 2.5060808688610523, - 2.800134290381807, - 3.143233867629361, - 3.511467665393575, - 3.8574385634398944, - 4.447714789606452, - 4.888302448821012, - 5.248167997117308, - 5.830508297092652, - 6.295296586288774, - 7.56361887389745, - 8.90982360494905, - 9.322335114881888, - 9.708057004364308, - 10.09708949939826, - 10.407398184140611, - 10.677608220924602, - 10.913749061747826, - 11.113444149598129, - 11.263320515047692, - 11.434978919057615, - 11.552688041368015, - 11.610695030571737, - 11.704935810859379 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235626058277, - 2.851913830622356, - 3.200151925018721, - 3.5233548841477056, - 4.001500388394046, - 4.667227780746542, - 5.3473600962024905, - 6.496001656505285, - 7.327146079181405, - 7.981025431062503, - 8.977774653538907, - 9.716112080638158, - 11.490796485403289, - 13.084823547615835, - 13.531443597883513, - 13.93399452961531, - 14.327530265190676, - 14.633154342086335, - 14.89465024576998, - 15.1196599568755, - 15.307696682750466, - 15.447851464430137, - 15.607576325531452, - 15.716613494272394, - 15.770152218969342, - 15.85691750463027 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "4_6": { - "4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351663640325118, - 3.1870790259809763, - 3.5210959861223587, - 4.026178988521359, - 4.619049732684816, - 5.564386056821893, - 6.865229334071739, - 8.146934182345795, - 10.139826035463237, - 11.439632638907808, - 12.389991078308185, - 13.737513012184142, - 14.674635962011365, - 16.77062042438686, - 18.53628582338796, - 19.01824608680174, - 19.449291036641398, - 19.86784597612683, - 20.191212613537253, - 20.46726545426784, - 20.70432976501326, - 20.902228986375412, - 21.049718360720323, - 21.217939821363466, - 21.332779417447323, - 21.389140895462422, - 21.480461862379464 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.4511928331339767, - 2.7884194852066435, - 3.0449833693989405, - 3.3876584141717525, - 3.6162094137740954, - 3.8006306635346228, - 4.1022275270280115, - 4.34734641579633, - 5.052220559169416, - 5.902283292465463, - 6.195875587548563, - 6.490198662815166, - 6.809494939541353, - 7.08373433864319, - 7.33825328861699, - 7.574913729471517, - 7.786813574393382, - 7.9533373824498135, - 8.152862813036988, - 8.295172244350077, - 8.367119416715457, - 8.486620784644476 - ], - "5._384._0.0875": [ - 3.490881843490933, - 4.020744190378673, - 4.6455507369189, - 5.6456162497235844, - 6.805701852469171, - 8.579775438884196, - 10.7958753302268, - 12.721802949934933, - 15.34003917006757, - 16.881391897332673, - 17.95212124996099, - 19.410619017845786, - 20.395698431335255, - 22.545124100827895, - 24.326442077342126, - 24.80983613391418, - 25.24263553790218, - 25.66293250539065, - 25.98804746466618, - 26.265623063695553, - 26.504300662233362, - 26.70381615554619, - 26.852549978777425, - 27.02239302015432, - 27.1383065610374, - 27.19514929797835, - 27.287147913124493 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564765, - 2.5060808689175356, - 2.800134439852535, - 3.1432580673696107, - 3.5118178845942074, - 3.8584673823959803, - 4.449908650940928, - 4.891367829027392, - 5.252037626761025, - 5.8360702118053025, - 6.302926359252817, - 7.585418101497831, - 8.972076453933258, - 9.403988173666447, - 9.810804563325926, - 10.224067284658947, - 10.55573813852613, - 10.845996040424307, - 11.100663204079385, - 11.316692633979722, - 11.479200442668107, - 11.665619484440226, - 11.793666325374954, - 11.856856917236017, - 11.959662996987694 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.555323562842096, - 2.8519141715219485, - 3.200189738147014, - 3.523698732345956, - 4.002792577614734, - 4.669822998615447, - 5.351451583019225, - 6.504273254993608, - 7.34236886935079, - 8.00621496865868, - 9.02817982321098, - 9.794047336380968, - 11.664929431464587, - 13.376910168907761, - 13.860748265729352, - 14.297853859181243, - 14.725931072481712, - 15.058665870110621, - 15.343563798028175, - 15.58872793821681, - 15.793571618341714, - 15.94625844067304, - 16.120195575766346, - 16.238955766258172, - 16.297292041193245, - 16.391893056910394 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "4_7": { - }, - "4_8": { - }, - "4_9": { - }, - "4_10": { - }, - "5_5": { - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351663640325113, - 3.1870790259809727, - 3.521095986066066, - 4.026177643506365, - 4.61888550527475, - 5.560524909054289, - 6.846233842334554, - 8.112583382303718, - 10.093123447605226, - 11.390821763471273, - 12.341180847819523, - 13.689790154770082, - 14.627832321306306, - 16.725367492115954, - 18.491438715885913, - 18.973383778484628, - 19.404346540100725, - 19.822777232172758, - 20.146013799088156, - 20.421940179172047, - 20.65887943462162, - 20.856662370095307, - 21.00406069335515, - 21.172171718469528, - 21.286933687818888, - 21.343256805284355, - 21.4345164536736 + 2.8351647264993423, + 3.186951185113044, + 3.520120762095406, + 4.022908840457471, + 4.613192189018059, + 5.553357119545568, + 6.836941764565307, + 8.072417777476293, + 9.917034103843235, + 11.073390796484931, + 11.900087116780503, + 13.051737859601054, + 13.84151299956939, + 15.58897243519494, + 17.050915239385326, + 17.44916920093101, + 17.805773444528953, + 18.152349245604196, + 18.42056433245828, + 18.649624669380906, + 18.846603680143236, + 19.011257479437973, + 19.134008158091746, + 19.27413530400662, + 19.369785226120584, + 19.41670551318206, + 19.49264845544399 ], "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.451192833133975, - 2.7884194852066413, - 3.0449833693989414, - 3.3876584141713875, - 3.61620941246458, - 3.8006305788529957, - 4.10222123375797, - 4.347288432367357, - 5.050371575186146, - 5.891791206708273, - 6.181510390521909, - 6.4721326890698325, - 6.787981319660684, - 7.059922600798694, - 7.312933243777524, - 7.548732519484772, - 7.760272672725568, - 7.926745370701878, - 8.126411365877543, - 8.268882851776267, - 8.340915143893158, - 8.46053889796503 + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247267, + 2.451192833107242, + 2.7884191082784517, + 3.044960290773892, + 3.3871729161976023, + 3.6148602890949224, + 3.798427780692208, + 4.098671421766258, + 4.342760701025555, + 5.044196907034894, + 5.885761165493484, + 6.173109241648802, + 6.458187213329125, + 6.763304769544556, + 7.021219579646446, + 7.256751563518459, + 7.472114549141299, + 7.661736239898098, + 7.808486494653682, + 7.981608972488866, + 8.103176704421157, + 8.1639743328458, + 8.263914864157965 ], "5._384._0.0875": [ - 3.4908818412596445, - 4.020741025155857, - 4.645275889918925, - 5.640508586510151, - 6.786684372538143, - 8.54055920528448, - 10.746041309441212, - 12.670796140756103, - 15.291202850402206, - 16.833906921134826, - 17.90533837816917, - 19.36445366313152, - 20.3497450530167, - 22.499045351507238, - 24.27980546327062, - 24.762995235382103, - 25.195588225634555, - 25.615666267925814, - 25.940596272570925, - 26.218009385818206, - 26.456540238133748, - 26.65592801625773, - 26.804565583566333, - 26.974296493291742, - 27.090133464134905, - 27.146938961512667, - 27.238878671827738 + 3.4896748046623505, + 4.0171018504542335, + 4.6391649603613345, + 5.633334582359261, + 6.777423354182605, + 8.48011743093466, + 10.508676150536084, + 12.196848641332405, + 14.418505687057298, + 15.700982948369044, + 16.585012703238007, + 17.784388376412807, + 18.59237334378901, + 20.356297930357258, + 21.820925841542255, + 22.218835703293472, + 22.575624522310008, + 22.922522909474765, + 23.191302577308537, + 23.42086333314305, + 23.61846985157123, + 23.783815779548103, + 23.907095834432504, + 24.04794453869986, + 24.14405292279984, + 24.19116378321505, + 24.267345824271224 ], "5._48._0.075": [ 1.5268463243731418, - 1.8679037053125436, + 1.8679037053125456, 2.1622431316564765, - 2.506080868917536, - 2.800134439852537, - 3.143258067369609, - 3.5118178845822023, - 3.8584672962845494, - 4.449846990701017, - 4.890723878553551, - 5.249903512334961, - 5.828928711630364, - 6.29006602259276, - 7.556928395507179, - 8.935423056271237, - 9.36655014455558, - 9.773196249352429, - 10.186659162285936, - 10.518687918776314, - 10.809297924549707, - 11.064279126764733, - 11.280549840055432, - 11.443202921124502, - 11.629741001791093, - 11.757839513373316, - 11.821046768593177, - 11.923864650741955 + 2.506080868790454, + 2.8001341035433973, + 3.143203617967474, + 3.511029904247479, + 3.856152805478866, + 4.444974647594222, + 4.884466201927085, + 5.243246979981296, + 5.8227560139656775, + 6.283297777362145, + 7.524103840428952, + 8.807945512182934, + 9.194384924931446, + 9.553166658512048, + 9.912687850486941, + 10.197983773814087, + 10.445428388178932, + 10.661051157114642, + 10.843018763232672, + 10.979390883733371, + 11.135467248125636, + 11.242381692801242, + 11.295016290117196, + 11.380439148692652 ], "5._96._0.075": [ - 2.209271810327403, - 2.5553235628420974, - 2.851914171521948, - 3.2001897381470155, - 3.52369873233631, - 4.002792052103697, - 4.66964835021353, - 5.349199590220328, - 6.490211183379618, - 7.317357271409015, - 7.973790893008165, - 8.98789672166133, - 9.75059601525352, - 11.620131396920156, - 13.333710573384039, - 13.818022817252677, - 14.25546189999644, - 14.68378356346025, - 15.016643083308646, - 15.301595334547722, - 15.546765890616875, - 15.75158418018831, - 15.904235401879545, - 16.07811112617065, - 16.19681957765148, - 16.255127900435983, - 16.349680909095753 + 2.2092718103274045, + 2.5553235623104933, + 2.8519134044978625, + 3.2001046586465205, + 3.522925086582346, + 3.9998856532802853, + 4.663987000362338, + 5.342182722576681, + 6.4831737142367984, + 7.300051390954155, + 7.935454728449091, + 8.891221455834549, + 9.589548472760537, + 11.240752602456341, + 12.699955368817093, + 13.106043498915271, + 13.471550686224996, + 13.828500722672317, + 14.10565082229637, + 14.342706531216326, + 14.546746378452665, + 14.717337608943652, + 14.844505073188188, + 14.989509482128286, + 15.088491705043397, + 15.137077502637203, + 15.215769375587161 ] }, "logtime": [ @@ -3262,45 +1706,5 @@ 3.003 ] } - }, - "5_6": { - }, - "5_7": { - }, - "5_8": { - }, - "5_9": { - }, - "5_10": { - }, - "6_6": { - }, - "6_7": { - }, - "6_8": { - }, - "6_9": { - }, - "6_10": { - }, - "7_7": { - }, - "7_8": { - }, - "7_9": { - }, - "7_10": { - }, - "8_8": { - }, - "8_9": { - }, - "8_10": { - }, - "9_9": { - }, - "9_10": { - }, - "10_10": { } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json index 9b15b689d8..ad43563aa4 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json @@ -1,6 +1,4 @@ { - "10_10": { - }, "3_3": { "1": { "bore_locations": [ @@ -436,71 +434,5 @@ 3.003 ] } - }, - "3_5": { - }, - "3_6": { - }, - "3_7": { - }, - "3_8": { - }, - "3_9": { - }, - "4_10": { - }, - "4_4": { - }, - "7_7": { - }, - "7_8": { - }, - "6_6": { - }, - "6_7": { - }, - "6_8": { - }, - "6_9": { - }, - "7_10": { - }, - "8_9": { - }, - "9_10": { - }, - "5_5": { - }, - "5_6": { - }, - "5_7": { - }, - "5_8": { - }, - "5_9": { - }, - "6_10": { - }, - "3_10": { - }, - "4_5": { - }, - "4_6": { - }, - "4_7": { - }, - "4_8": { - }, - "4_9": { - }, - "5_10": { - }, - "9_9": { - }, - "7_9": { - }, - "8_10": { - }, - "8_8": { } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json index 9d2c3c1a31..328fb3ec6d 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json @@ -1,6 +1,4 @@ { - "10_10": { - }, "3_4": { "1": { "bore_locations": [ @@ -219,16 +217,6 @@ ] } }, - "3_5": { - }, - "3_6": { - }, - "3_7": { - }, - "3_8": { - }, - "3_9": { - }, "3_3": { "1": { "bore_locations": [ @@ -439,26 +427,6 @@ ] } }, - "6_6": { - }, - "6_7": { - }, - "6_8": { - }, - "6_9": { - }, - "7_10": { - }, - "4_10": { - }, - "8_8": { - }, - "8_9": { - }, - "9_10": { - }, - "3_10": { - }, "4_4": { "1": { "bore_locations": [ @@ -680,39 +648,5 @@ 3.003 ] } - }, - "4_5": { - }, - "4_6": { - }, - "4_7": { - }, - "4_8": { - }, - "4_9": { - }, - "5_10": { - }, - "7_7": { - }, - "7_8": { - }, - "7_9": { - }, - "8_10": { - }, - "9_9": { - }, - "5_5": { - }, - "5_6": { - }, - "5_7": { - }, - "5_8": { - }, - "5_9": { - }, - "6_10": { } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/util.rb b/HPXMLtoOpenStudio/resources/g_functions/util.rb index 969e759aa8..037de203b1 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/util.rb +++ b/HPXMLtoOpenStudio/resources/g_functions/util.rb @@ -9,27 +9,23 @@ def process_g_functions(filepath) Dir[File.join(filepath, '*.json')].each do |config_json| file = File.open(config_json) json = JSON.load(file) - # downselect the File for JSON files with 2 layers of keys - if config_json.include?('zoned_rectangle_5m_v1.0.json') || config_json.include?('C_configurations_5m_v1.0.json') || config_json.include?('LopU_configurations_5m_v1.0.json') || config_json.include?('Open_configurations_5m_v1.0.json') || config_json.include?('U_configurations_5m_v1.0.json') - json.keys.each do |n_m| - n, m = n_m.split('_') - if n_m != '5_8' && (n.to_i > 10 || m.to_i > 10) - json.delete(n_m) - else - json[n_m].keys.each do |sub_key| - if json[n_m][sub_key].key?('bore_locations') && json[n_m][sub_key]['bore_locations'].length > 10 - json[n_m].delete(sub_key) - end + + json.each do |key_1, value_1| + if value_1.key?("bore_locations") + bore_locations = json[key_1]['bore_locations'] + if config_json.include?('rectangle') + if key_1 != '5_8' && (bore_locations.length > 10) + json.delete(key_1) end + elsif (bore_locations.length > 10) + json.delete(key_1) end - end - else - # downselect the File for JSON files with 1 layer of keys - json.keys.each do |n_m| - # n, m = n_m.split('_') - bore_locations = json[n_m]['bore_locations'] - if n_m != '5_8' && (bore_locations && bore_locations.length > 10) - json.delete(n_m) + else + value_1.each_key do |key_2, value_2| + bore_locations = value_1[key_2]['bore_locations'] + if (bore_locations.length>10) + json.delete(key_1) + end end end end diff --git a/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json index 3f4ee8dd73..7a73a41bfd 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json @@ -1,58 +1,2 @@ { - "10_10": { - }, - "4_7": { - }, - "4_8": { - }, - "4_9": { - }, - "5_5": { - }, - "5_6": { - }, - "5_7": { - }, - "5_8": { - }, - "5_10": { - }, - "5_9": { - }, - "6_10": { - }, - "6_6": { - }, - "6_7": { - }, - "6_8": { - }, - "6_9": { - }, - "7_10": { - }, - "7_7": { - }, - "7_8": { - }, - "7_9": { - }, - "8_10": { - }, - "8_8": { - }, - "8_9": { - }, - "9_10": { - }, - "4_10": { - }, - "4_4": { - }, - "4_5": { - }, - "4_6": { - }, - "9_9": { - } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index bfb8a89ea8..8a519040c2 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -2744,7 +2744,7 @@ def self.get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb, if [HPXML::GeothermalLoopBorefieldConfigurationRectangle, HPXML::GeothermalLoopBorefieldConfigurationL].include?(bore_config) - bore_locations = values_1[:bore_locations] + bore_locations = values_1[:bore_locations] # select the most appropriate config here next if bore_locations.size != num_bore_holes logtime = values_1[:logtime].map { |v| Float(v) } From 2822a2cb327c24af39b2e7692d90bf94efeac9ba Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jul 2023 21:30:25 +0000 Subject: [PATCH 071/217] Latest results. --- workflow/tests/base_results/results.csv | 987 ++++++++++++------------ 1 file changed, 494 insertions(+), 493 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index ba5ed37682..b00fea451c 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -1,493 +1,494 @@ -HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: 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: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),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 Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),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) -base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,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,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,22.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-portable.xml,34.583,34.583,33.262,33.262,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.604,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,1.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,1.18,0.0,30.514,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.1,9.476,14.236,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.307,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.344,9.575,1.88,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-ief-whole-home.xml,34.611,34.611,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.655,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,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15,0.0,30.49,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2767.0,9.495,14.236,0.0,1.77,1.652,0.0,0.0,0.392,5.039,-4.911,0.0,0.0,0.0,1.312,-0.373,1.058,0.077,0.399,0.0,0.032,-4.78,-0.772,0.0,0.548,-0.009,0.0,0.0,0.206,1.933,17.103,0.0,0.0,0.0,1.819,-0.368,-0.332,-1.9,-0.091,0.0,0.344,9.532,1.875,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-multiple.xml,34.574,34.574,33.184,33.184,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.813,1.88,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.541,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,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.452,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.3,9.552,14.236,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.035,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.344,9.512,1.873,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier.xml,34.548,34.548,33.243,33.243,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.818,1.882,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.593,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.174,0.0,30.467,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.0,9.548,14.236,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.344,9.498,1.87,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.167,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,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,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,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,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,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,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,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,0.0,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,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,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,0.0,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 -base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,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,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,67.293,67.293,40.782,40.782,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.921,0.983,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,0.0,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.831,0.0,16.409,9.18,0.614,0.0,0.0,0.0,0.0,2378.3,3719.8,26.547,20.758,4.552,1.164,5.544,0.518,7.651,0.635,15.399,-16.987,0.0,0.0,0.0,8.521,-0.082,7.083,0.0,0.73,0.0,3.11,-10.232,-3.183,0.005,0.021,-0.566,-0.053,2.687,-0.029,-3.027,17.676,0.0,0.0,0.0,-6.349,-0.075,-1.69,-4.153,-0.166,0.0,0.937,8.933,2.568,1354.8,997.6,11399.6,2521.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38184.0,7494.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18712.0,182.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,37.385,37.385,33.168,33.168,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.236,1.963,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,0.0,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.893,0.0,31.745,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3190.7,13.54,17.969,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.366,9.113,1.789,1354.8,997.6,9989.0,2461.3,0.0,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,22162.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,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,0.0,22.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,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.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,30483.0,4824.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.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,0.0,22.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,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.482,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,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,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,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,0.0,60.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,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.626,36.626,24.815,24.815,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.087,0.0,0.0,1.608,0.207,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,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,0.0,3.054,9.538,0.73,0.0,0.0,0.0,0.0,1572.5,2015.2,7.667,5.819,0.0,2.94,3.649,0.0,0.0,0.582,1.416,-1.582,0.0,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-4.25,-1.186,0.0,-0.922,-0.231,0.0,0.0,-0.054,-0.234,1.305,0.0,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.559,3.423,0.841,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-multiple.xml,31.845,31.845,25.255,25.255,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,2.093,0.314,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,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,0.0,4.965,9.538,0.61,0.0,0.0,0.0,0.0,1562.3,2239.8,9.397,10.552,0.0,-0.004,3.294,0.0,0.0,1.383,4.001,-4.202,0.0,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-6.296,-1.142,0.0,0.0,-0.445,0.0,0.0,-0.418,-0.571,3.958,0.0,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.481,5.704,0.884,1354.8,997.6,11399.5,3156.5,0.0,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,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.799,49.799,24.82,24.82,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,1.466,0.173,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,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,0.0,2.504,9.538,0.818,0.0,0.0,0.0,0.0,1579.9,2256.3,11.078,8.452,0.0,5.364,4.204,0.0,0.0,0.788,1.403,-1.699,0.0,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-4.485,-1.249,0.0,-1.186,-0.054,0.0,0.0,-0.054,-0.122,1.188,0.0,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.528,3.187,0.778,1354.8,997.6,11399.5,3156.5,0.0,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,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.041,26.041,24.679,24.679,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.632,0.213,9.742,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,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,0.0,3.156,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2015.1,3.416,5.821,0.0,0.353,3.152,0.0,0.0,0.376,1.484,-1.49,0.0,0.0,0.375,0.0,-0.006,1.698,0.0,0.0,0.0,0.387,-4.015,-1.12,0.0,-0.831,-0.466,0.0,0.0,-0.076,-0.345,1.397,0.0,0.0,-0.847,0.0,-0.002,-0.394,-0.388,0.0,0.0,0.576,3.657,0.907,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.343,26.343,25.227,25.227,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.109,0.333,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,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,0.0,5.133,9.538,0.587,0.0,0.0,0.0,0.0,1559.4,1834.6,3.707,4.327,0.0,-0.003,3.197,0.0,0.0,0.368,1.519,-1.394,0.0,0.0,-0.002,0.0,-0.063,1.76,0.0,0.0,0.0,0.321,-3.692,-1.021,0.0,-0.001,-0.556,0.0,0.0,-0.044,-0.506,1.493,0.0,0.0,-0.0,0.0,-0.059,-0.532,-0.512,0.0,0.0,0.913,3.98,1.006,1354.8,997.6,11399.5,3156.5,0.0,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,6278.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.841,26.841,26.284,26.284,0.557,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.967,0.547,9.684,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.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,0.514,0.0,8.85,9.538,0.575,0.0,0.0,0.0,0.0,1703.9,1962.7,3.256,6.985,0.0,-0.013,2.505,0.0,0.0,0.42,4.041,-2.559,0.0,0.0,-0.009,0.0,-0.344,0.994,0.0,0.68,0.0,0.0,-4.559,-0.773,0.0,-0.008,-1.074,0.0,0.0,-0.048,-1.702,5.598,0.0,0.0,-0.004,0.0,-0.334,-0.402,-1.335,-0.391,0.0,0.0,7.407,1.254,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 -base-bldgtype-multifamily-residents-1.xml,19.898,19.898,18.595,18.595,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.363,0.394,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,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,0.0,6.696,4.213,0.585,0.0,0.0,0.0,0.0,1104.0,1602.9,3.916,6.507,0.0,-0.014,2.619,0.0,0.0,0.418,4.236,-3.104,0.0,0.0,-0.012,0.0,-0.305,1.3,0.0,0.75,0.0,0.0,-3.826,-0.937,0.0,-0.01,-0.765,0.0,0.0,-0.014,-1.207,5.053,0.0,0.0,-0.007,0.0,-0.297,-0.396,-1.194,-0.272,0.0,0.0,4.803,1.089,817.2,530.6,4779.7,1341.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.394,27.394,26.696,26.696,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.0,3.07,0.825,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1670.4,2088.4,3.455,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.149,28.149,27.404,27.404,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,3.656,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1695.4,2322.2,3.602,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.038,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,8647.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.679,27.679,27.017,27.017,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.346,0.825,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.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.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1680.5,2160.3,3.454,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,32.821,32.821,32.278,32.278,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,8.52,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1940.2,3671.7,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.766,27.766,27.223,27.223,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,3.465,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1688.5,2269.4,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1509.2,1333.8,3.459,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.356,23.356,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1522.4,1334.7,3.605,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.749,22.749,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1534.7,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.28,23.28,22.878,22.878,0.402,0.0,0.0,0.0,0.0,0.0,0.129,0.064,0.0,0.0,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.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1648.9,1334.7,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.303,23.303,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1536.8,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1528.0,1334.7,3.537,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.649,26.649,26.649,26.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.054,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1670.9,2071.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.327,27.327,27.327,27.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.637,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1702.6,2322.2,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922,26.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1681.0,2152.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.969,27.969,27.969,27.969,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.818,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.9,1820.0,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,1354.8,997.6,11399.6,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,3156.5,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.708,32.708,27.342,27.342,5.366,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.574,0.439,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,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,0.0,7.061,9.538,0.588,0.0,0.0,0.0,0.0,1711.5,2147.3,4.167,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,4.308,-3.183,0.0,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-5.414,-0.952,0.0,-0.009,-0.693,0.0,0.0,-0.005,-1.118,4.974,0.0,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,6.564,1.074,1354.8,997.6,11399.5,3156.5,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent.xml,31.03,31.03,27.217,27.217,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,2.492,0.416,9.705,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,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,0.0,6.838,9.538,0.598,0.0,0.0,0.0,0.0,1638.9,2132.2,5.993,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,4.232,-3.684,0.0,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-5.86,-1.052,0.0,-0.008,-0.511,0.0,0.0,-0.01,-0.941,4.473,0.0,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,6.129,0.974,1354.8,997.6,11399.5,3156.5,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-pv.xml,26.899,2.451,26.223,1.775,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.901,30.901,17.531,17.531,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,1052.2,1525.8,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater.xml,29.805,29.805,16.435,16.435,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,999.5,1473.1,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.347,37.347,37.347,37.347,0.0,0.0,0.0,0.0,0.0,0.0,5.339,0.369,0.0,0.0,2.587,1.083,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.882,0.0,13.353,9.232,0.614,2.924,0.0,0.0,0.0,3216.9,2129.8,20.987,15.084,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.099,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.826,8.485,2.01,1354.8,997.6,11413.0,2618.9,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.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,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,0.0,18.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.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,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,0.0,24.587,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1066.9,770.9,9019.2,2069.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,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,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.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,388.3,286.5,3205.6,735.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.67,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,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,0.0,23.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,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,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,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.89,0.0,13.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,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-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,1075.0,777.3,9103.8,2089.0,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.106,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.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.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,472.0,347.5,3998.4,917.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,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,0.0,22.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,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,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,0.0,23.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,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,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,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,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,0.0,22.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,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,17.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,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,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,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,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,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,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,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,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,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,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,0.0,25.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,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7646.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,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,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,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,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,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,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,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,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 -base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.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,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 -base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,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,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,67.648,67.648,29.356,29.356,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.632,0.0,0.0,3.58,0.646,9.367,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,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.866,0.0,10.726,9.342,0.621,0.0,0.0,0.0,0.0,1766.6,3491.4,29.153,20.79,0.0,3.477,3.648,0.0,0.0,0.67,9.92,-12.906,0.0,0.0,29.048,0.0,-0.198,2.052,0.0,0.787,0.0,7.954,-7.487,-1.578,0.0,0.424,-0.063,0.0,0.0,0.096,0.383,10.935,0.0,0.0,-7.934,0.0,-0.193,-0.259,-1.855,-0.085,0.0,2.655,5.717,1.069,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,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,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,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,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,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,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,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,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,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,22.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,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,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,22.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,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,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,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,40.753,40.753,29.446,29.446,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.84,0.724,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,0.0,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,11.955,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2605.0,13.185,12.044,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.304,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.076,6.354,1.189,1354.8,997.6,11399.6,3013.0,0.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,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 -base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,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,22.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,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,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,0.0,40.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,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.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,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,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,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,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,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,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,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,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-ambient.xml,48.007,48.007,30.285,30.285,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.292,0.0,0.0,4.61,0.898,9.354,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,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.601,0.0,15.077,9.342,0.606,0.0,0.0,0.0,2.0,1740.7,3397.3,20.514,21.089,0.0,3.835,3.846,0.0,0.0,0.76,10.831,-11.429,0.0,0.0,10.226,0.0,-0.403,2.065,0.0,0.789,0.0,3.979,-6.811,-1.44,0.0,-0.046,-0.527,0.0,0.0,0.028,-0.75,12.412,0.0,0.0,-3.67,0.0,-0.396,-0.402,-2.391,-0.154,0.0,3.577,6.38,1.207,1354.8,997.6,11399.5,2808.9,0.0,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,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,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,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 -base-foundation-belly-wing-no-skirt.xml,49.694,49.694,29.445,29.445,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,3.895,0.731,9.354,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,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.964,0.0,12.009,9.342,0.607,0.0,0.0,0.0,0.0,1753.6,3211.6,24.176,17.286,0.0,3.981,5.371,0.0,0.0,0.753,8.835,-11.05,0.0,0.0,10.267,0.0,-0.35,2.069,0.0,0.794,0.0,6.238,-6.883,-1.459,0.0,0.302,-0.601,0.0,0.0,0.038,-0.188,9.522,0.0,0.0,-3.443,0.0,-0.343,-0.395,-2.184,-0.144,0.0,2.215,6.308,1.188,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-belly-wing-skirt.xml,49.322,49.322,29.453,29.453,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.328,0.0,0.0,3.906,0.734,9.354,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,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.608,0.0,12.062,9.342,0.607,0.0,0.0,0.0,0.0,1752.3,3180.5,24.023,17.245,0.0,3.987,5.379,0.0,0.0,0.753,8.843,-11.04,0.0,0.0,9.969,0.0,-0.345,2.068,0.0,0.793,0.0,6.125,-6.873,-1.457,0.0,0.296,-0.61,0.0,0.0,0.036,-0.211,9.532,0.0,0.0,-3.365,0.0,-0.338,-0.399,-2.199,-0.146,0.0,2.221,6.318,1.191,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-complex.xml,78.103,78.103,37.261,37.261,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.674,0.0,0.0,5.116,1.028,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.25,0.0,17.361,9.233,0.617,0.0,0.0,0.0,2.0,2171.5,3845.1,33.417,21.451,0.0,3.431,3.657,0.52,19.54,0.65,10.564,-12.717,0.0,0.0,0.0,8.705,-0.111,6.102,0.0,0.739,0.0,8.38,-9.124,-2.557,0.0,0.048,-0.359,-0.044,3.767,-0.003,-1.508,11.564,0.0,0.0,0.0,-4.519,-0.103,-1.227,-3.259,-0.137,0.0,3.71,7.657,1.952,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation-full.xml,56.087,56.087,36.482,36.482,19.605,0.0,0.0,0.0,0.0,0.0,0.0,0.323,0.0,0.0,4.774,0.947,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,19.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,18.357,0.0,15.998,9.233,0.612,0.0,0.0,0.0,0.0,2130.6,3496.4,22.309,19.66,0.0,3.624,3.695,0.52,8.197,0.641,10.668,-12.534,0.0,0.0,0.0,4.773,-0.061,4.839,0.0,0.733,0.0,4.319,-8.893,-2.498,0.0,-0.098,-0.497,-0.057,2.177,-0.036,-2.054,11.749,0.0,0.0,0.0,-3.7,-0.055,-1.187,-3.277,-0.169,0.0,3.465,7.883,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,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,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,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,0.0,18.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,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 -base-foundation-multiple.xml,42.738,42.738,29.706,29.706,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.218,0.812,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,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,0.0,13.443,9.285,0.693,0.0,0.0,0.0,0.0,1723.6,2714.9,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,10.857,-11.246,0.0,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-4.636,-1.429,0.0,-0.098,-0.674,0.0,0.0,-0.018,-1.077,12.595,0.0,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.65,4.23,1.218,1354.8,997.6,11399.4,2706.9,0.0,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,14275.0,222.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-slab.xml,39.954,39.954,29.299,29.299,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.9,0.74,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,0.0,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.972,0.0,12.215,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2611.5,12.703,12.011,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.078,6.379,1.193,1354.8,997.6,11399.5,2808.9,0.0,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,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-above-grade.xml,43.94,43.94,29.852,29.852,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.308,0.833,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,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,0.0,13.834,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.0,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,10.912,-11.281,0.0,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.069,12.56,0.0,0.0,-0.506,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.93,4.211,1.213,1354.8,997.6,11399.5,2706.9,0.0,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,14270.0,226.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-assembly-r.xml,41.196,41.196,29.243,29.243,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.197,0.0,0.0,3.847,0.722,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,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,0.0,11.864,9.285,0.71,0.0,0.0,0.0,0.0,1718.3,2855.2,14.652,12.883,0.0,3.994,3.856,0.0,0.0,0.759,10.855,-11.125,0.0,0.0,4.456,0.0,-0.343,2.583,0.0,0.0,0.0,1.82,-4.614,-1.421,0.0,-0.074,-0.626,0.0,0.0,0.009,-1.062,12.715,0.0,0.0,-2.011,0.0,-0.339,-0.564,-2.512,0.0,0.0,1.12,4.251,1.226,1354.8,997.6,11399.5,2706.9,0.0,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,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-wall-insulation.xml,48.948,48.948,28.952,28.952,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.558,0.653,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,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,0.0,10.743,9.285,0.64,0.0,0.0,0.0,0.0,1726.7,2483.3,16.597,11.56,0.0,3.723,3.619,0.0,0.0,0.633,9.712,-12.351,0.0,0.0,14.373,0.0,-0.047,2.46,0.0,0.0,0.0,2.599,-4.778,-1.481,0.0,0.063,-0.441,0.0,0.0,-0.015,-0.972,11.49,0.0,0.0,-2.769,0.0,-0.045,-0.521,-2.405,0.0,0.0,1.302,4.088,1.166,1354.8,997.6,11399.5,2706.9,0.0,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,15218.0,128.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement.xml,42.817,42.817,29.736,29.736,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,4.234,0.816,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,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,0.0,13.513,9.285,0.703,0.0,0.0,0.0,0.0,1723.8,2921.5,15.45,14.318,0.0,3.994,3.853,0.0,0.0,0.749,10.805,-11.235,0.0,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-4.634,-1.429,0.0,-0.077,-0.629,0.0,0.0,-0.0,-1.111,12.605,0.0,0.0,-0.673,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.724,4.231,1.218,1354.8,997.6,11399.5,2706.9,0.0,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,14277.0,222.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,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,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,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,2808.9,0.0,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,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,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,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,2808.9,0.0,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,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-walkout-basement.xml,64.814,64.814,36.328,36.328,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,4.532,0.884,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,0.0,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.677,0.0,14.89,9.233,0.615,0.0,0.0,0.0,0.0,2125.9,3513.1,26.787,19.805,0.0,3.523,3.688,0.52,7.364,0.646,11.292,-12.794,0.0,0.0,0.0,10.155,-0.066,6.639,0.0,0.728,0.0,6.073,-8.935,-2.506,0.0,-0.099,-0.515,-0.06,1.48,-0.031,-2.074,12.046,0.0,0.0,0.0,-3.677,-0.061,-1.529,-3.357,-0.16,0.0,3.264,7.844,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,0.0,15.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.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,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,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.645,42.645,42.645,42.645,0.0,0.0,0.0,0.0,0.0,0.0,9.823,1.762,0.591,0.052,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,0.0,23.588,0.643,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7296.6,1637.3,25.567,0.0,0.0,3.452,3.637,0.512,7.485,0.629,10.516,-12.551,0.0,0.0,0.0,8.112,-0.066,4.805,0.0,0.728,0.0,7.372,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.145,46.145,46.145,46.145,0.0,0.0,0.0,0.0,0.0,0.0,9.718,1.011,0.443,0.024,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.466,13.102,9.233,0.614,0.0,0.0,0.0,0.0,6954.5,3209.9,24.358,15.771,0.0,3.499,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.018,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,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,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,0.0,21.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.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,0.0,25971.0,25971.0,11194.0,51.62,90.68,11194.0,4365.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.698,44.698,44.698,44.698,0.0,0.0,0.0,0.0,0.0,0.0,9.125,0.912,0.046,0.006,3.198,0.971,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.362,0.052,11.97,9.233,0.614,0.0,0.0,0.0,0.0,6628.4,2912.2,22.625,13.15,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.864,-8.907,-2.499,0.0,0.037,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.05,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65908.0,65908.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,24186.0,24186.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.554,41.554,41.554,41.554,0.0,0.0,0.0,0.0,0.0,0.0,7.131,0.629,0.416,0.017,2.294,0.626,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.433,13.325,9.233,0.614,0.0,0.0,0.0,0.0,6922.4,2762.7,24.33,16.718,0.0,3.453,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.249,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.431,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33416.0,33416.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.544,40.544,40.544,40.544,0.0,0.0,0.0,0.0,0.0,0.0,6.849,0.507,0.049,0.005,2.124,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.035,0.054,12.091,9.233,0.614,0.0,0.0,0.0,0.0,6732.2,2521.0,23.383,13.585,0.0,3.588,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.557,-8.907,-2.499,0.0,0.034,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.172,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65567.0,65567.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.171,51.171,37.619,37.619,13.551,0.0,0.0,0.0,0.0,0.0,4.154,0.37,0.0,0.138,2.31,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.722,11.262,14.452,9.233,0.615,0.0,0.0,2.0,0.0,3194.1,2672.7,23.547,17.679,0.0,3.375,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.35,-8.918,-2.502,0.0,-0.058,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.697,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,23640.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.458,54.458,37.825,37.825,16.632,0.0,0.0,0.0,0.0,0.0,4.006,0.353,0.0,0.501,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,28.514,13.807,14.556,9.233,0.614,0.0,0.0,2.0,0.0,3328.2,2622.0,30.614,17.514,0.0,3.251,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.289,-0.061,4.804,0.0,0.728,0.0,12.284,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.063,-0.165,0.0,3.704,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,32235.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,26367.0,26367.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.158,41.158,41.158,41.158,0.0,0.0,0.0,0.0,0.0,0.0,7.314,0.748,0.123,0.008,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.792,0.131,14.556,9.233,0.614,0.0,0.0,0.0,0.0,7031.0,2622.0,24.672,17.514,0.0,3.37,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.48,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.703,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.898,40.898,40.898,40.898,0.0,0.0,0.0,0.0,0.0,0.0,7.281,0.641,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.771,0.057,13.49,9.233,0.614,0.0,0.0,0.0,0.0,6896.7,2561.9,23.811,16.273,0.0,3.447,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.401,-8.907,-2.499,0.0,-0.02,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.608,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,50423.0,50423.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-elec-only.xml,48.203,48.203,48.203,48.203,0.0,0.0,0.0,0.0,0.0,0.0,17.594,0.191,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.2,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.331,55.331,36.429,36.429,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2096.7,3330.0,16.459,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-only.xml,49.354,49.354,30.642,30.642,18.712,0.0,0.0,0.0,0.0,0.0,0.0,0.224,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,18.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2057.9,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20155.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,0.0,17.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.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20283.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.538,48.538,48.538,48.538,0.0,0.0,0.0,0.0,0.0,0.0,9.911,1.779,0.593,0.052,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.645,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7326.8,3330.1,25.567,17.819,0.0,3.446,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.439,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,19922.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-evap-cooler-furnace-gas.xml,56.319,56.319,32.044,32.044,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,0.0,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,1915.1,25.1,11.075,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,13458.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-elec-only.xml,53.605,53.605,53.605,53.605,0.0,0.0,0.0,0.0,0.0,0.0,22.563,0.625,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,0.0,22.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8622.9,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.875,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2124.3,2947.8,24.237,18.493,0.0,3.51,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.863,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20155.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20283.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.324,34.324,34.324,34.324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.874,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.707,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2888.0,0.0,17.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.164,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.697,36.697,36.697,36.697,0.0,0.0,0.0,0.0,0.0,0.0,5.486,0.794,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,0.0,21.07,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3421.0,1637.3,23.54,0.0,0.0,3.55,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.785,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.97,39.97,39.97,39.97,0.0,0.0,0.0,0.0,0.0,0.0,5.504,0.688,0.0,0.0,2.527,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.125,0.0,13.273,9.233,0.614,0.0,0.0,0.0,0.0,3365.5,2553.9,23.007,15.726,0.0,3.551,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.677,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.382,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.557,39.557,39.557,39.557,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.364,0.0,0.0,2.47,1.04,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.784,0.0,12.822,9.233,0.614,0.0,0.0,0.0,0.0,3219.5,2594.7,21.329,15.036,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.298,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.912,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.557,39.557,39.557,39.557,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.364,0.0,0.0,2.47,1.04,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.784,0.0,12.822,9.233,0.614,0.0,0.0,0.0,0.0,3219.5,2594.7,21.329,15.036,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.298,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.912,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,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,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,19866.0,19866.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.91,38.91,38.91,38.91,0.0,0.0,0.0,0.0,0.0,0.0,5.84,0.317,0.073,0.002,2.16,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,0.0,19.98,0.075,12.245,9.233,0.614,0.0,0.0,0.0,0.0,4268.2,2191.0,19.501,13.372,0.0,3.593,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.501,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.402,38.402,38.402,38.402,0.0,0.0,0.0,0.0,0.0,0.0,5.406,0.268,0.0,0.0,2.213,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.045,0.0,11.734,9.233,0.614,0.0,0.0,0.0,0.0,3640.7,2214.0,19.188,12.558,0.0,3.624,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.54,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.818,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,41843.0,41843.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.75,37.75,37.75,37.75,0.0,0.0,0.0,0.0,0.0,0.0,5.078,0.102,0.042,0.0,2.06,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.042,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3682.6,2120.6,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.614,35.614,0.0,12.321,0.0,0.0,0.0,0.0,3.012,0.092,0.0,0.0,2.043,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.658,7.393,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2846.2,2123.8,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,49.605,49.605,42.912,42.912,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.191,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2614.2,3427.5,16.894,14.883,0.0,2.873,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.449,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,0.0,31430.0,27561.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-stove-oil-only.xml,52.275,52.275,30.519,30.519,0.0,21.756,0.0,0.0,0.0,0.0,0.0,0.1,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,21.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.5,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize.xml,59.984,59.984,36.217,36.217,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.324,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2126.9,3189.8,24.296,18.003,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.91,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,19922.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,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,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,24.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,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,19.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.93,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.276,11.122,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.391,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.179,15.2,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.043,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.535,15.233,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.757,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,26.265,15.615,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,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,0.0,47.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,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,71259.0,33168.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,28612.0,4972.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34496.0,10856.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32660.0,9020.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,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,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,0.0,14.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.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fixed-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,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,0.0,26.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,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,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,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,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,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,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-borefield-configuration.xml,39.611,39.611,39.611,39.611,0.0,0.0,0.0,0.0,0.0,0.0,5.26,0.363,0.0,0.0,2.512,1.034,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.551,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3220.4,2615.4,20.982,14.735,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.059,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-count.xml,39.586,39.586,39.586,39.586,0.0,0.0,0.0,0.0,0.0,0.0,5.255,0.363,0.0,0.0,2.496,1.032,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.68,9.233,0.614,0.0,0.0,0.0,0.0,3217.0,2594.6,20.961,14.715,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.767,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-diameter.xml,39.582,39.582,39.582,39.582,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.363,0.0,0.0,2.49,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3216.5,2593.6,20.904,14.714,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.766,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-length.xml,39.52,39.52,39.52,39.52,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.36,0.0,0.0,2.457,1.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,0.0,19.535,0.0,12.674,9.233,0.614,0.0,0.0,0.0,0.0,3204.8,2574.2,20.845,14.69,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.042,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.761,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-spacing.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.361,0.0,0.0,2.468,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.539,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3209.0,2580.0,20.864,14.698,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.047,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-ground-diffusivity.xml,39.58,39.58,39.58,39.58,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.363,0.0,0.0,2.489,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3216.2,2591.5,20.899,14.711,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.766,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-grout-conductivity.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.363,0.0,0.0,2.487,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3216.7,2587.7,20.894,14.706,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-loop-flow.xml,39.582,39.582,39.582,39.582,0.0,0.0,0.0,0.0,0.0,0.0,5.259,0.363,0.0,0.0,2.488,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3212.8,2589.5,20.884,14.709,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-conductivity.xml,39.56,39.56,39.56,39.56,0.0,0.0,0.0,0.0,0.0,0.0,5.25,0.362,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.8,2584.5,20.88,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.051,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-diameter.xml,39.563,39.563,39.563,39.563,0.0,0.0,0.0,0.0,0.0,0.0,5.248,0.362,0.0,0.0,2.481,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3212.1,2581.8,20.927,14.699,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.528,39.528,39.528,39.528,0.0,0.0,0.0,0.0,0.0,0.0,5.239,0.361,0.0,0.0,2.461,1.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,0.0,19.537,0.0,12.674,9.233,0.614,0.0,0.0,0.0,0.0,3207.1,2575.5,20.852,14.692,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.044,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.762,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.834,33.834,33.834,33.834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.571,0.777,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.556,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2618.9,0.0,14.783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.993,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.574,36.574,36.574,36.574,0.0,0.0,0.0,0.0,0.0,0.0,5.394,0.763,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,0.0,20.341,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3367.4,1637.3,22.277,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.035,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.558,39.558,39.558,39.558,0.0,0.0,0.0,0.0,0.0,0.0,5.249,0.362,0.0,0.0,2.477,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.4,2584.7,20.879,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.051,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.378,41.378,41.378,41.378,0.0,0.0,0.0,0.0,0.0,0.0,6.664,0.38,0.0,0.0,2.932,0.962,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.427,0.0,13.138,9.233,0.614,0.0,0.0,0.0,0.0,3445.1,2732.5,21.808,15.713,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.959,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.237,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,0.0,12.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,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,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,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,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,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,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,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.378,66.378,51.93,51.93,7.162,3.603,3.683,0.0,0.0,0.0,13.664,0.862,0.199,0.008,6.203,0.554,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.718,0.207,18.969,9.233,0.615,0.0,0.0,0.0,4.0,6442.4,4057.4,37.83,22.72,0.0,3.417,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.316,-8.919,-2.502,0.0,-0.122,-0.445,-0.049,2.738,-0.021,-1.886,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.244,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.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,1354.8,997.6,8540.6,2104.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 -base-hvac-portable-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,0.0,3.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.01,-0.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,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,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,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,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,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,0.0,0.0,0.0,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,56.19,56.19,35.529,35.529,20.661,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,3.959,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,20.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,19.378,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2961.2,20.444,15.145,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.888,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,28898.0,18434.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,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,0.0,15.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,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,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,0.0,22.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,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-kwh-per-year.xml,60.469,60.469,39.553,39.553,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.535,0.889,9.163,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.996,9.233,0.613,0.0,0.0,0.0,0.0,2416.3,3795.3,22.788,18.414,0.0,3.575,3.655,0.514,7.569,0.633,10.56,-12.521,0.0,0.0,0.0,8.359,-0.067,4.811,0.0,0.729,0.0,4.568,-8.891,-4.249,0.0,-0.085,-0.489,-0.055,2.612,-0.033,-2.015,11.745,0.0,0.0,0.0,-6.471,-0.063,-1.192,-3.199,-0.169,0.0,3.277,7.886,3.428,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,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,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,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,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 -base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,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,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,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,2719.3,0.0,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,15107.0,1151.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 -base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,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.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,1354.8,997.6,10580.5,2607.1,0.0,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,13718.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 -base-location-dallas-tx.xml,34.353,34.353,32.588,32.588,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.767,1.868,6.814,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,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,0.0,30.193,6.675,0.573,0.0,0.0,0.0,0.0,2014.4,2771.1,9.706,14.235,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.343,9.5,1.888,1354.8,997.6,9989.0,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-location-duluth-mn.xml,70.96,70.96,29.786,29.786,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,2.265,0.329,11.623,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,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,0.0,5.222,11.597,0.833,0.0,0.0,0.0,0.0,1760.4,2414.3,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,19.994,-13.274,0.0,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-6.293,-1.93,0.0,-0.435,-0.782,0.0,0.0,-0.099,-1.383,7.876,0.0,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.334,2.573,0.717,1354.8,997.6,12167.9,2889.4,0.0,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,11642.0,149.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 -base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,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,0.0,42.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,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 -base-location-honolulu-hi.xml,36.199,36.199,36.199,36.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.218,3.035,4.816,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,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,2132.0,2154.5,0.0,13.168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,13.134,2.647,1354.8,997.6,8540.5,2104.4,0.0,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,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 -base-location-miami-fl.xml,35.353,35.353,35.353,35.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.444,2.83,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,0.0,0.0,45.97,4.712,0.551,0.0,0.0,0.0,0.0,2104.8,2424.8,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,0.0,0.0,0.0,1.006,0.575,0.0,0.0,0.304,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,13.135,2.647,1354.8,997.6,8625.1,2125.3,0.0,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,13318.0,-219.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 -base-location-phoenix-az.xml,38.434,38.434,38.433,38.433,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.029,3.092,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.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,0.0,51.765,4.955,0.556,0.0,0.0,0.0,0.0,2368.2,3386.4,0.593,17.634,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,11.511,2.368,1354.8,997.6,8429.2,2077.0,0.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,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 -base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,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,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,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,1354.8,997.6,11239.5,2769.4,0.0,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,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 -base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,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,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,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,0.0,24.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,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.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.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,0.0,0.0,11.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.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,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,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,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,63.835,44.385,31.488,12.038,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,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.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,3.08,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-emissions.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,16.505,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.981,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 -base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,24.753,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-round-trip-efficiency.xml,60.69,33.803,37.859,10.972,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.909,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,6.706,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-scheduled.xml,60.483,33.596,37.652,10.766,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,6.873,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery-scheduled.xml,77.483,42.407,37.652,2.576,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,24.473,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery.xml,76.584,41.509,36.754,1.678,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.804,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,90.778,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,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,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,1.915,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps-power-outage.xml,33.64,33.64,28.659,28.659,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.082,0.0,0.0,3.199,0.556,7.442,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,9.408,7.426,0.561,0.0,0.0,0.5,0.5,9398.1,10416.5,41.812,21.425,0.0,2.585,2.431,0.339,4.203,0.328,6.833,-12.363,0.0,0.0,0.0,3.542,-0.105,3.354,0.0,0.382,0.0,1.039,-6.567,-1.596,0.0,-0.232,-0.587,-0.07,2.391,-0.062,-2.309,11.863,0.0,0.0,0.0,-7.603,-0.059,-1.378,-4.919,-0.21,0.0,2.269,8.448,2.023,1141.2,883.5,9401.7,2157.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps.xml,42.676,42.676,34.392,34.392,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.137,0.0,0.0,3.211,0.559,9.199,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.756,0.0,9.457,9.21,0.671,0.0,0.0,0.0,0.5,9394.7,10419.5,31.982,21.427,0.0,2.889,2.782,0.39,5.331,0.415,7.871,-12.359,0.0,0.0,0.0,5.381,-0.059,3.834,0.0,0.578,0.0,1.776,-8.861,-2.486,0.0,-0.236,-0.59,-0.07,2.395,-0.063,-2.32,11.863,0.0,0.0,0.0,-7.535,-0.058,-1.38,-4.931,-0.211,0.0,2.279,8.448,2.023,1354.7,998.0,11490.9,2636.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,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,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,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,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,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,0.0,22.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,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,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,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,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,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,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,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,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -house001.xml,86.453,86.453,46.944,46.944,39.508,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.684,4.394,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,0.0,22.462,0.0,17.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.215,0.0,49.863,10.416,2.681,0.0,0.0,0.0,0.0,1853.4,6417.7,37.576,40.427,0.492,1.982,7.189,0.419,0.0,0.959,7.577,-4.942,0.0,0.0,0.438,1.255,-0.262,4.293,0.0,5.152,0.0,3.214,-6.762,-2.935,0.562,1.981,3.785,0.305,0.0,0.258,0.298,11.575,0.0,0.0,0.573,6.821,-0.248,-0.42,-1.413,-0.757,0.0,10.696,11.588,4.446,2104.5,2144.0,14468.8,4385.1,0.0,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,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 -house002.xml,67.263,67.263,39.818,39.818,27.444,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.726,3.409,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,0.0,13.958,0.0,13.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.316,0.0,39.308,7.526,2.891,0.0,0.0,0.0,0.0,1554.0,4934.4,23.891,28.399,0.0,2.53,5.051,0.0,0.0,0.85,5.996,-4.053,0.0,0.0,0.0,1.759,-0.146,1.573,0.0,3.789,0.0,1.372,-5.071,-2.493,0.0,3.082,2.762,0.0,0.0,0.396,-0.488,8.601,0.0,0.0,0.0,8.468,-0.14,-0.182,-1.052,-0.638,0.0,5.863,8.93,3.888,1610.9,1574.7,9989.4,3520.4,0.0,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,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 -house003.xml,68.642,68.642,40.063,40.063,28.579,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.737,3.543,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,0.0,15.333,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.0,40.757,7.526,2.691,0.0,0.0,0.0,0.0,1632.4,5147.9,26.295,31.384,0.648,2.781,4.656,0.0,0.0,0.985,6.674,-3.929,0.0,0.0,0.0,1.074,-0.164,1.988,0.0,3.937,0.0,1.615,-5.293,-2.701,0.794,3.047,2.594,0.0,0.0,0.624,-0.264,9.905,0.0,0.0,0.0,6.53,-0.157,-0.218,-1.094,-0.633,0.0,6.453,9.189,4.174,1610.9,1574.7,9989.3,3520.4,0.0,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,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 -house004.xml,136.271,136.271,75.306,75.306,60.965,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,28.978,9.455,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,0.0,44.816,0.0,16.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.241,0.0,107.036,8.985,3.511,0.0,0.0,0.0,101.0,3061.1,7371.4,54.694,50.188,0.128,5.535,11.395,0.0,0.0,1.249,14.009,-5.986,0.0,0.0,0.0,3.226,-0.721,4.938,0.0,6.279,0.0,7.107,-7.297,-3.933,0.199,6.756,11.661,0.0,0.0,0.524,5.468,17.456,0.0,0.0,0.0,18.954,-0.708,1.03,0.0,1.86,0.0,21.407,15.06,7.63,1857.7,1859.3,12228.9,3983.9,0.0,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,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 -house005.xml,95.118,95.118,53.277,53.277,41.841,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.27,5.149,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,0.0,26.64,0.0,15.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,21.604,0.0,59.527,8.985,2.731,0.0,0.0,0.0,0.0,2076.0,7519.1,45.933,50.952,0.0,3.02,8.096,0.267,0.0,1.336,10.048,-6.655,0.0,0.0,0.37,1.253,-0.336,5.037,0.0,5.077,0.0,4.386,-6.862,-3.637,0.0,2.987,4.342,0.212,0.0,0.297,0.319,15.402,0.0,0.0,0.447,7.536,-0.319,-0.49,-1.768,-0.737,0.0,14.474,11.523,5.518,1857.7,1859.4,12229.0,3983.9,0.0,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,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 -house006.xml,139.365,139.365,31.78,31.78,107.585,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.951,0.34,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,0.0,81.738,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,78.691,0.0,7.8,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2441.9,40.506,14.727,0.0,4.261,22.283,1.991,37.119,1.868,17.963,-9.449,0.0,0.0,0.0,9.284,-0.313,9.523,0.0,4.368,0.0,0.0,-14.567,-6.452,0.0,0.174,-0.793,-0.044,2.801,-0.086,-0.887,4.262,0.0,0.0,0.0,-3.89,-0.313,-0.514,-0.614,-0.075,0.0,0.0,5.649,2.235,1610.9,1574.7,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 -house007.xml,138.83,138.83,33.914,33.914,104.916,0.0,0.0,0.0,0.0,0.0,0.0,1.632,0.0,0.0,2.54,0.396,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,0.0,75.248,0.0,23.282,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,70.851,0.0,5.753,15.632,3.269,0.0,0.0,0.0,0.0,2192.0,2562.1,39.678,13.27,0.0,4.719,23.705,4.446,10.133,1.504,19.077,-9.362,0.0,0.0,0.077,11.566,-0.343,6.119,0.0,20.834,0.0,2.867,-17.238,-7.765,0.0,0.197,-0.722,-0.06,0.577,-0.049,-0.553,4.531,0.0,0.0,-0.009,-4.0,-0.339,-0.191,-0.585,-1.888,0.0,0.104,6.303,2.533,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 -house008.xml,183.501,183.501,39.139,39.139,144.362,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.556,0.53,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,0.0,110.924,0.0,26.378,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,104.521,0.0,9.981,18.129,3.214,0.0,0.0,0.0,0.0,2473.2,3287.8,54.741,19.298,0.0,7.23,27.419,4.689,24.238,1.181,22.401,-7.862,0.0,0.0,1.235,17.867,-0.356,18.326,0.0,6.386,0.0,7.825,-18.694,-8.197,0.0,0.294,-1.11,-0.063,1.637,-0.086,-1.372,5.318,0.0,0.0,-0.1,-2.732,-0.356,-0.983,-0.682,-0.282,0.0,0.528,7.259,2.809,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 -house009.xml,154.293,154.293,33.983,33.983,120.31,0.0,0.0,0.0,0.0,0.0,0.0,2.035,0.0,0.0,2.375,0.286,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,0.0,90.634,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,85.401,0.0,5.187,15.632,3.276,0.0,0.0,0.0,0.0,2227.1,2605.9,44.161,13.902,0.0,5.098,28.389,4.31,13.07,2.257,19.625,-8.244,0.0,0.0,0.266,15.661,-0.329,8.731,0.0,21.443,0.0,0.0,-17.529,-7.88,0.0,0.238,-0.711,-0.038,0.753,-0.078,-0.78,4.49,0.0,0.0,-0.028,-4.065,-0.325,-0.258,-0.521,-1.794,0.0,0.0,5.992,2.391,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 -house010.xml,153.796,153.796,37.549,37.549,116.246,0.0,0.0,0.0,0.0,0.0,0.0,1.86,0.0,0.0,2.896,0.273,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,0.0,82.81,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,78.033,0.0,7.28,18.129,3.214,0.0,0.0,0.0,0.0,2409.0,2810.7,45.27,15.353,0.875,4.93,25.457,4.901,9.774,1.256,23.582,-9.227,0.0,0.0,0.906,11.41,-0.365,19.566,0.0,6.402,0.0,4.869,-18.715,-8.186,0.023,0.211,-0.764,-0.099,0.558,-0.073,-1.356,5.066,0.0,0.0,-0.046,-4.161,-0.362,-1.021,-0.677,-0.269,0.0,0.334,7.219,2.8,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 -house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,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,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,0.0,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,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 -house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,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,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,0.0,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,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 -house013.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,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,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,3131.8,0.0,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,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 -house015.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house016.xml,61.263,61.263,39.85,39.85,0.0,0.0,21.413,0.0,0.0,0.0,7.562,0.538,0.161,0.004,3.068,1.038,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.225,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.35,0.164,12.001,10.478,0.0,0.0,0.0,1.0,16.0,7459.2,3559.3,42.956,19.008,0.0,4.428,10.851,0.619,5.712,0.298,7.395,-8.024,0.0,0.0,0.0,6.777,-0.02,5.735,0.0,3.86,0.0,0.0,-8.634,-4.768,0.0,-0.362,-0.889,-0.023,2.899,-0.047,-0.596,12.366,0.0,0.0,0.0,-8.869,-0.022,-1.375,-1.189,-1.027,0.0,0.0,7.78,3.838,1759.0,1745.5,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 -house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,0.0,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 -house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,0.0,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,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2606.0,1095.0,711.0,800.0 -house019.xml,129.831,129.831,51.94,51.94,77.891,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.257,3.783,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.116,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.065,0.0,44.56,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6497.7,84.656,46.058,0.0,11.387,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.955,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.944,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,0.0,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 -house020.xml,116.979,116.979,56.877,56.877,0.0,0.0,60.102,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.245,2.923,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.965,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.971,0.0,34.513,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6618.4,31.034,32.534,0.91,11.02,10.576,1.133,9.807,0.632,14.612,-15.405,0.0,0.0,0.0,7.524,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.24,0.116,0.176,0.053,6.39,0.012,-1.763,21.501,0.0,0.0,0.0,-6.709,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,0.0,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 -house021.xml,156.416,156.416,48.605,48.605,107.811,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.488,1.582,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.77,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,18.993,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4771.0,81.115,23.848,0.0,8.272,27.058,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.315,26.613,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.008,-0.864,0.005,2.201,-0.093,-1.709,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.322,8.889,3.787,1759.0,1745.5,13752.0,4620.1,0.0,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 -house022.xml,137.518,137.518,48.884,48.884,0.0,88.635,0.0,0.0,0.0,0.0,0.0,2.204,0.0,0.0,8.878,0.897,12.47,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,88.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.755,0.0,19.669,10.989,1.479,0.0,0.0,184.0,126.0,2989.1,5375.4,90.672,27.64,3.697,3.766,20.67,0.0,0.0,1.489,16.102,-13.284,0.0,0.0,14.728,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.522,0.0,0.0,-0.127,-0.987,12.096,0.0,0.0,1.908,0.0,-0.281,-2.742,-0.645,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,0.0,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 -house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 -house024.xml,129.181,129.181,44.059,44.059,0.0,85.122,0.0,0.0,0.0,0.0,0.0,2.117,0.0,0.0,5.375,0.691,16.753,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.176,0.0,16.013,14.653,2.088,0.0,0.0,0.0,0.0,2750.5,3528.1,72.024,17.577,0.0,7.189,30.113,0.0,0.0,0.682,6.988,-7.991,0.0,0.0,5.221,0.0,-0.109,25.401,0.0,1.837,0.0,11.726,-8.633,-2.537,0.0,0.564,1.148,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.499,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.853,5.531,1.379,2176.1,2226.5,14983.5,4452.7,0.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,21856.0,1377.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7041.0,2605.0,3636.0,800.0 -house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,0.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,32212.0,8765.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 -house026.xml,57.14,57.14,24.857,24.857,32.282,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,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,0.0,18.136,0.0,14.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,13.896,0.0,0.0,8.607,2.082,0.0,0.0,0.0,0.0,1554.0,1299.3,17.371,0.0,0.0,1.761,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.103,0.0,-0.058,2.488,0.0,3.127,0.0,0.0,-6.707,-3.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,1294.8,1282.2,8578.8,3023.3,0.0,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 -house027.xml,72.753,72.753,31.736,31.736,41.016,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,7.874,1.017,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,0.0,20.065,0.0,17.882,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.901,0.0,23.04,8.564,5.232,0.0,0.0,0.0,0.0,1580.0,3622.8,24.052,22.72,0.716,1.776,7.887,0.452,0.0,0.591,5.247,-4.028,0.0,0.0,0.376,3.336,-0.14,1.745,0.0,10.425,0.0,2.046,-8.79,-2.845,0.489,1.124,0.653,0.056,0.0,-0.113,-0.286,5.628,0.0,0.0,0.105,3.836,-0.14,-0.365,-0.966,-3.474,0.0,2.595,10.728,3.102,1610.9,1574.7,10579.5,3728.4,0.0,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 -house028.xml,67.831,67.831,29.68,29.68,38.15,0.0,0.0,0.0,0.0,0.0,0.0,0.259,0.0,0.0,7.107,1.515,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,0.0,13.643,0.0,18.121,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.812,0.0,22.735,10.226,3.62,0.0,0.0,0.0,0.0,1517.3,3323.9,20.023,21.223,0.769,1.663,7.049,0.35,0.0,0.432,5.505,-3.79,0.0,0.0,0.236,2.464,-0.05,4.039,0.0,4.464,0.0,1.543,-9.08,-2.901,0.607,1.232,-0.581,0.098,0.0,0.066,-0.712,6.39,0.0,0.0,0.069,1.838,-0.051,-1.081,-1.198,-1.645,0.0,2.913,11.527,3.237,1857.7,1859.4,12951.6,4219.3,0.0,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 -house029.xml,77.601,77.601,29.95,29.95,47.651,0.0,0.0,0.0,0.0,0.0,0.0,0.639,0.0,0.0,6.107,0.906,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,0.0,31.987,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,31.653,0.0,13.604,9.614,0.0,0.0,0.0,0.0,0.0,1604.9,3000.4,28.473,13.951,0.0,3.364,14.695,0.392,0.0,0.308,6.693,-6.461,0.0,0.0,6.932,0.0,-0.085,7.292,0.0,7.304,0.0,3.15,-8.377,-3.711,0.0,1.12,-0.859,0.009,0.0,0.053,0.373,5.722,0.0,0.0,-0.449,0.0,-0.08,-0.809,-1.067,-1.536,0.0,1.215,7.168,2.832,1610.9,1574.7,11033.0,3888.2,0.0,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,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 -house030.xml,57.883,57.883,17.189,17.189,0.0,0.0,40.694,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.377,0.0,13.28,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.883,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,15.992,0.0,0.0,1.68,10.216,0.489,1.112,1.049,5.343,-4.368,0.0,0.0,0.0,3.578,-0.04,2.742,0.0,5.694,0.0,0.0,-7.809,-2.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,1066.0,992.8,6763.9,2581.0,0.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 -house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 -house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.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,1341.9,1264.5,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 -house033.xml,106.743,106.743,14.691,14.691,0.0,92.052,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.371,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,48.38,0.0,0.0,19.125,14.564,0.0,0.0,1.0,10.82,-7.637,0.0,0.0,14.706,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.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,0.0,924.8,0.0,3905.6,1188.1,0.0,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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 -house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.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,1759.0,1745.5,10287.1,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 -house035.xml,63.505,63.505,17.521,17.521,45.985,0.0,0.0,0.0,0.0,0.0,0.0,0.809,0.0,0.0,1.742,0.119,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.522,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.706,0.0,2.673,3.92,3.822,0.0,0.0,102.0,0.0,1326.3,1899.4,39.1,9.67,0.367,6.149,10.862,0.0,0.0,0.538,5.863,-7.44,0.0,0.0,7.797,0.0,0.004,13.61,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.579,-1.589,0.0,0.0,-0.082,-1.219,7.322,0.0,0.0,-4.457,0.0,0.009,-2.738,-0.728,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,0.0,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 -house036.xml,82.314,82.314,26.075,26.075,56.239,0.0,0.0,0.0,0.0,0.0,0.0,0.964,0.0,0.0,5.964,1.051,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.77,0.0,17.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.868,0.0,15.005,8.219,5.837,0.0,0.0,102.0,126.0,1461.8,3231.3,31.799,17.329,5.544,2.267,3.993,0.0,0.0,1.83,6.573,-7.755,0.0,0.0,21.29,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.427,-3.43,1.567,0.119,-0.032,0.0,0.0,-0.224,-0.58,6.698,0.0,0.0,2.216,0.0,-0.0,-0.749,-0.419,-0.061,0.0,0.0,4.352,2.019,1341.9,1264.5,6447.0,2476.3,0.0,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 -house037.xml,87.934,87.934,21.779,21.779,0.0,66.155,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,49.998,0.0,16.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,37.091,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,29.538,0.0,0.0,16.714,11.33,0.0,0.0,1.563,7.276,-10.49,0.0,0.0,6.59,0.0,-0.309,14.696,0.0,0.461,0.0,0.0,-6.818,-3.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,1341.9,1264.5,8324.2,3197.3,0.0,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 -house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 -house039.xml,98.796,98.796,24.025,24.025,74.77,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,5.136,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.084,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,49.765,0.0,0.0,14.276,5.416,0.0,0.0,2.519,15.643,-13.75,0.0,0.0,13.85,0.0,-0.039,13.263,0.0,0.557,0.0,0.0,-4.135,-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,2176.1,2226.5,17536.3,5211.3,0.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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 -house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 -house041.xml,259.077,259.077,47.133,47.133,211.944,0.0,0.0,0.0,0.0,0.0,0.0,4.164,0.0,0.0,2.576,0.254,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,0.0,185.392,0.0,26.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,174.689,0.0,4.652,15.632,5.039,0.0,0.0,105.0,0.0,3249.4,4561.5,77.749,23.467,0.0,11.26,44.834,3.482,34.914,3.052,41.616,-22.892,0.0,0.0,4.341,17.423,-0.477,64.05,0.0,2.763,0.0,0.0,-20.286,-10.995,0.0,0.097,-2.224,-0.127,1.602,-0.212,-4.015,11.033,0.0,0.0,-0.321,-5.328,-0.475,-3.481,-1.022,-0.258,0.0,0.0,6.561,2.948,1857.7,1859.4,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 -house042.xml,229.67,229.67,40.068,40.068,189.602,0.0,0.0,0.0,0.0,0.0,0.0,3.871,0.0,0.0,1.81,0.074,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,0.0,165.165,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.395,0.0,2.999,15.632,3.226,0.0,0.0,0.0,0.0,2758.3,3100.3,88.214,19.624,0.0,9.205,40.053,4.031,43.891,2.672,34.445,-21.633,0.0,0.0,2.453,14.538,-0.385,56.223,0.0,1.75,0.0,0.0,-19.152,-7.587,0.0,0.2,-1.588,-0.07,2.68,-0.16,-3.134,7.067,0.0,0.0,-0.272,-5.113,-0.382,-2.85,-0.642,-0.145,0.0,0.0,5.557,1.952,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 -house043.xml,158.13,158.13,30.051,30.051,128.078,0.0,0.0,0.0,0.0,0.0,0.0,2.456,0.0,0.0,2.028,0.119,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,0.0,108.178,0.0,19.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,103.04,0.0,3.036,13.084,2.207,0.0,0.0,0.0,0.0,1988.8,2798.1,54.664,13.818,0.0,3.172,23.263,2.301,33.889,5.621,23.662,-11.489,0.0,0.0,0.55,9.952,-0.267,28.928,0.0,1.576,0.0,0.0,-14.359,-5.16,0.0,0.032,-0.925,-0.1,1.55,-0.379,-2.383,5.793,0.0,0.0,-0.07,-3.676,-0.267,-1.616,-0.538,-0.147,0.0,0.0,4.463,1.402,1610.9,1574.7,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 -house044.xml,225.894,225.894,43.51,43.51,182.384,0.0,0.0,0.0,0.0,0.0,0.0,4.68,0.0,0.0,2.094,0.198,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,0.0,159.817,0.0,22.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.487,0.0,3.747,13.084,4.452,0.0,0.0,0.0,0.0,3093.4,3553.3,80.982,18.914,4.373,6.905,36.478,9.231,19.305,2.751,19.057,-13.33,0.0,0.0,12.909,15.111,-0.46,61.886,0.0,1.435,0.0,0.0,-18.031,-10.257,0.237,0.441,-1.46,-0.13,1.17,-0.123,-1.231,6.794,0.0,0.0,-1.164,-4.927,-0.458,-2.728,-0.484,-0.102,0.0,0.0,5.295,2.697,1610.9,1574.7,12168.1,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 -house045.xml,152.693,152.693,35.232,35.232,117.461,0.0,0.0,0.0,0.0,0.0,0.0,2.782,0.0,0.0,2.392,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,0.0,95.008,0.0,22.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,88.27,0.0,4.026,13.084,4.363,0.0,0.0,0.0,0.0,2317.8,3011.2,47.289,12.909,3.57,3.077,15.169,2.298,32.784,1.143,19.974,-13.617,1.045,-0.407,0.086,12.672,-0.187,20.635,0.0,10.931,0.0,0.0,-14.663,-7.028,-0.017,0.001,-1.114,-0.131,0.881,-0.09,-2.086,7.133,-0.068,0.396,-0.013,-4.082,-0.186,-1.184,-0.915,-1.259,0.0,0.0,4.825,2.036,1610.9,1574.7,12168.1,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 -house046.xml,25.037,25.037,25.037,25.037,0.0,0.0,0.0,0.0,0.0,0.0,5.364,0.446,0.267,0.009,3.738,1.038,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,0.0,13.922,0.276,12.84,4.305,0.617,0.0,0.0,0.0,0.0,3842.0,2404.7,16.167,13.004,0.0,2.525,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.275,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.814,4.589,0.545,596.8,442.2,5543.5,2208.6,0.0,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,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 -house047.xml,20.762,20.762,14.475,14.475,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.596,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,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,0.0,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.4,968.8,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.729,-0.554,0.0,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.101,0.032,0.0,0.0,-0.093,0.798,0.0,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.276,0.409,251.7,442.2,5772.6,1524.2,0.0,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,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 -house048.xml,91.642,91.642,39.796,39.796,51.846,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,12.899,3.824,0.0,0.0,0.0,3.691,0.085,0.498,3.017,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,0.0,35.87,0.0,12.637,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.021,0.0,51.358,7.253,2.688,0.0,0.0,0.0,0.0,1535.9,5475.4,42.021,33.069,1.024,2.643,12.009,0.0,0.0,0.815,4.922,-2.545,0.0,0.0,0.058,2.032,-0.525,6.797,0.0,4.194,0.0,6.419,-7.415,-1.512,1.323,1.018,9.256,0.0,0.0,0.549,2.757,4.297,0.0,0.0,0.072,10.121,-0.513,0.526,-0.449,1.931,0.0,6.917,11.576,2.179,130.3,817.7,11617.6,3495.1,0.0,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,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 -house049.xml,32.038,32.038,28.541,28.541,3.497,0.0,0.0,0.0,0.0,0.0,5.888,0.036,0.0,0.0,5.819,0.147,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.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.239,0.0,33.85,4.262,1.306,0.0,0.0,0.0,90.0,4432.3,2181.9,12.361,17.634,0.0,1.38,4.471,0.0,0.0,0.0,3.895,-7.574,0.0,0.0,0.0,1.446,-0.075,2.582,0.0,1.809,0.0,0.0,-2.437,-0.44,0.0,1.489,6.503,0.0,0.0,0.0,3.26,15.042,0.0,0.0,0.0,2.984,-0.076,-0.307,-3.541,0.516,0.0,0.0,7.53,1.034,728.6,567.4,7487.2,928.5,0.0,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,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 -house050.xml,51.837,51.837,21.855,21.855,29.983,0.0,0.0,0.0,0.0,0.0,0.0,0.275,0.0,0.0,1.904,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,0.0,16.067,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.694,0.0,5.132,8.572,0.0,0.0,0.0,0.0,0.0,1156.7,2604.3,11.114,15.388,0.0,4.133,6.508,0.0,0.0,2.031,5.644,-4.221,0.0,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.921,-10.283,-1.232,0.0,-0.288,-0.312,0.0,0.0,-0.391,-0.567,4.041,0.0,0.0,-0.956,0.0,-0.123,-0.557,-1.219,-0.76,0.0,0.568,5.253,0.551,1689.0,437.0,10674.9,2994.2,0.0,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,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 +HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: 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: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),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) +base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,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,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,22.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-portable.xml,34.583,34.583,33.262,33.262,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.604,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,1.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,1.18,0.0,30.514,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.1,2769.1,9.476,14.236,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.307,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.344,9.575,1.88,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier-ief-whole-home.xml,34.611,34.611,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.655,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,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15,0.0,30.49,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2767.0,2767.0,9.495,14.236,0.0,1.77,1.652,0.0,0.0,0.392,5.039,-4.911,0.0,0.0,0.0,1.312,-0.373,1.058,0.077,0.399,0.0,0.032,-4.78,-0.772,0.0,0.548,-0.009,0.0,0.0,0.206,1.933,17.103,0.0,0.0,0.0,1.819,-0.368,-0.332,-1.9,-0.091,0.0,0.344,9.532,1.875,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier-multiple.xml,34.574,34.574,33.184,33.184,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.813,1.88,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.541,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,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.452,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.3,2769.3,9.552,14.236,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.035,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.344,9.512,1.873,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier.xml,34.548,34.548,33.243,33.243,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.818,1.882,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.593,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.174,0.0,30.467,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.0,2769.0,9.548,14.236,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.344,9.498,1.87,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.167,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,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,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,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,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,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,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,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,0.0,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 +base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,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,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,0.0,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 +base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,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,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,63.998,63.998,40.48,40.48,23.519,0.0,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,4.716,0.934,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,0.0,23.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.0,0.0,22.009,0.0,15.57,9.18,0.614,0.0,0.0,0.0,0.0,2372.9,3431.1,3431.1,22.556,17.978,4.552,1.164,5.544,0.518,7.652,0.634,15.396,-16.987,0.0,0.0,0.0,8.521,-0.079,7.082,0.0,0.73,0.0,0.283,-10.23,-3.183,0.006,0.021,-0.566,-0.053,2.688,-0.03,-3.03,17.676,0.0,0.0,0.0,-6.349,-0.073,-1.691,-4.146,-0.166,0.0,0.089,8.934,2.568,1354.8,997.6,11399.6,2521.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31467.0,777.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier.xml,37.385,37.385,33.168,33.168,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.236,1.963,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,0.0,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.893,0.0,31.745,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3190.7,3190.7,13.54,17.969,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.366,9.113,1.789,1354.8,997.6,9989.0,2461.3,0.0,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,22162.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,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,0.0,22.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,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.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,30483.0,4824.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.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,0.0,22.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,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.482,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,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,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,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,0.0,60.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,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.626,36.626,24.815,24.815,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.087,0.0,0.0,1.608,0.207,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,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,0.0,3.054,9.538,0.73,0.0,0.0,0.0,0.0,1572.5,2015.2,2015.2,7.667,5.819,0.0,2.94,3.649,0.0,0.0,0.582,1.416,-1.582,0.0,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-4.25,-1.186,0.0,-0.922,-0.231,0.0,0.0,-0.054,-0.234,1.305,0.0,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.559,3.423,0.841,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-multiple.xml,31.845,31.845,25.255,25.255,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,2.093,0.314,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,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,0.0,4.965,9.538,0.61,0.0,0.0,0.0,0.0,1562.3,2239.8,2239.8,9.397,10.552,0.0,-0.004,3.294,0.0,0.0,1.383,4.001,-4.202,0.0,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-6.296,-1.142,0.0,0.0,-0.445,0.0,0.0,-0.418,-0.571,3.958,0.0,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.481,5.704,0.884,1354.8,997.6,11399.5,3156.5,0.0,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,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.799,49.799,24.82,24.82,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,1.466,0.173,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,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,0.0,2.504,9.538,0.818,0.0,0.0,0.0,0.0,1579.9,2256.3,2256.3,11.078,8.452,0.0,5.364,4.204,0.0,0.0,0.788,1.403,-1.699,0.0,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-4.485,-1.249,0.0,-1.186,-0.054,0.0,0.0,-0.054,-0.122,1.188,0.0,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.528,3.187,0.778,1354.8,997.6,11399.5,3156.5,0.0,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,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.041,26.041,24.679,24.679,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.632,0.213,9.742,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,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,0.0,3.156,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2015.1,2015.1,3.416,5.821,0.0,0.353,3.152,0.0,0.0,0.376,1.484,-1.49,0.0,0.0,0.375,0.0,-0.006,1.698,0.0,0.0,0.0,0.387,-4.015,-1.12,0.0,-0.831,-0.466,0.0,0.0,-0.076,-0.345,1.397,0.0,0.0,-0.847,0.0,-0.002,-0.394,-0.388,0.0,0.0,0.576,3.657,0.907,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.343,26.343,25.227,25.227,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.109,0.333,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,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,0.0,5.133,9.538,0.587,0.0,0.0,0.0,0.0,1559.4,1834.6,1834.6,3.707,4.327,0.0,-0.003,3.197,0.0,0.0,0.368,1.519,-1.394,0.0,0.0,-0.002,0.0,-0.063,1.76,0.0,0.0,0.0,0.321,-3.692,-1.021,0.0,-0.001,-0.556,0.0,0.0,-0.044,-0.506,1.493,0.0,0.0,-0.0,0.0,-0.059,-0.532,-0.512,0.0,0.0,0.913,3.98,1.006,1354.8,997.6,11399.5,3156.5,0.0,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,6278.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.841,26.841,26.284,26.284,0.557,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.967,0.547,9.684,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.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,0.514,0.0,8.85,9.538,0.575,0.0,0.0,0.0,0.0,1703.9,1962.7,1962.7,3.256,6.985,0.0,-0.013,2.505,0.0,0.0,0.42,4.041,-2.559,0.0,0.0,-0.009,0.0,-0.344,0.994,0.0,0.68,0.0,0.0,-4.559,-0.773,0.0,-0.008,-1.074,0.0,0.0,-0.048,-1.702,5.598,0.0,0.0,-0.004,0.0,-0.334,-0.402,-1.335,-0.391,0.0,0.0,7.407,1.254,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 +base-bldgtype-multifamily-residents-1.xml,19.898,19.898,18.595,18.595,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.363,0.394,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,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,0.0,6.696,4.213,0.585,0.0,0.0,0.0,0.0,1104.0,1602.9,1602.9,3.916,6.507,0.0,-0.014,2.619,0.0,0.0,0.418,4.236,-3.104,0.0,0.0,-0.012,0.0,-0.305,1.3,0.0,0.75,0.0,0.0,-3.826,-0.937,0.0,-0.01,-0.765,0.0,0.0,-0.014,-1.207,5.053,0.0,0.0,-0.007,0.0,-0.297,-0.396,-1.194,-0.272,0.0,0.0,4.803,1.089,817.2,530.6,4779.7,1341.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.394,27.394,26.696,26.696,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.0,3.07,0.825,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1670.4,2088.4,2088.4,3.455,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.149,28.149,27.404,27.404,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,3.656,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1695.4,2322.2,2322.2,3.602,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.038,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,8647.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.679,27.679,27.017,27.017,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.346,0.825,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.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.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1680.5,2160.3,2160.3,3.454,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,32.821,32.821,32.278,32.278,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,8.52,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1940.2,3671.7,3671.7,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.766,27.766,27.223,27.223,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,3.465,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1688.5,2269.4,2269.4,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1509.2,1333.8,1509.2,3.459,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.356,23.356,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1522.4,1334.7,1522.4,3.605,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.749,22.749,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1534.7,1333.8,1534.7,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.28,23.28,22.878,22.878,0.402,0.0,0.0,0.0,0.0,0.0,0.129,0.064,0.0,0.0,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.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1648.9,1334.7,1648.9,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.303,23.303,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1536.8,1333.8,1536.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1528.0,1334.7,1528.0,3.537,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.649,26.649,26.649,26.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.054,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1670.9,2071.3,2071.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.327,27.327,27.327,27.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.637,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1702.6,2322.2,2322.2,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922,26.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1681.0,2152.3,2152.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.969,27.969,27.969,27.969,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.818,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.9,1820.0,1820.0,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,1354.8,997.6,11399.6,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,3156.5,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.708,32.708,27.342,27.342,5.366,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.574,0.439,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,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,0.0,7.061,9.538,0.588,0.0,0.0,0.0,0.0,1711.5,2147.3,2147.3,4.167,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,4.308,-3.183,0.0,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-5.414,-0.952,0.0,-0.009,-0.693,0.0,0.0,-0.005,-1.118,4.974,0.0,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,6.564,1.074,1354.8,997.6,11399.5,3156.5,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-mechvent.xml,31.03,31.03,27.217,27.217,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,2.492,0.416,9.705,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,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,0.0,6.838,9.538,0.598,0.0,0.0,0.0,0.0,1638.9,2132.2,2132.2,5.993,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,4.232,-3.684,0.0,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-5.86,-1.052,0.0,-0.008,-0.511,0.0,0.0,-0.01,-0.941,4.473,0.0,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,6.129,0.974,1354.8,997.6,11399.5,3156.5,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-pv.xml,26.899,2.451,26.223,1.775,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.901,30.901,17.531,17.531,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,1052.2,1525.8,1525.8,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-water-heater.xml,29.805,29.805,16.435,16.435,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,999.5,1473.1,1473.1,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,1375.7,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,1377.1,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.347,37.347,37.347,37.347,0.0,0.0,0.0,0.0,0.0,0.0,5.339,0.369,0.0,0.0,2.587,1.083,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.882,0.0,13.353,9.232,0.614,2.924,0.0,0.0,0.0,3216.9,2129.8,3216.9,20.987,15.084,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.099,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.826,8.485,2.01,1354.8,997.6,11413.0,2618.9,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.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,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,3185.6,0.0,18.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.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,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,0.0,24.587,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,1375.7,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1066.9,770.9,9019.2,2069.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,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,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,1376.8,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.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,388.3,286.5,3205.6,735.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.67,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,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,0.0,23.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,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,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,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.89,0.0,13.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,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,1376.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-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,1075.0,777.3,9103.8,2089.0,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.106,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.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,2111.8,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.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,472.0,347.5,3998.4,917.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,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,0.0,22.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,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,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,0.0,23.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,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,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,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,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,0.0,22.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,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,17.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,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,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,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,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,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,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,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,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,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,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,0.0,25.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,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7646.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,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,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,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,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,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,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,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,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 +base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.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,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 +base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,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,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-floortypes.xml,67.648,67.648,29.356,29.356,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.632,0.0,0.0,3.58,0.646,9.367,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,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.866,0.0,10.726,9.342,0.621,0.0,0.0,0.0,0.0,1766.6,3491.4,3491.4,29.153,20.79,0.0,3.477,3.648,0.0,0.0,0.67,9.92,-12.906,0.0,0.0,29.048,0.0,-0.198,2.052,0.0,0.787,0.0,7.954,-7.487,-1.578,0.0,0.424,-0.063,0.0,0.0,0.096,0.383,10.935,0.0,0.0,-7.934,0.0,-0.193,-0.259,-1.855,-0.085,0.0,2.655,5.717,1.069,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,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,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,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,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,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,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,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,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,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,22.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,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,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,22.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,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,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,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-split-level.xml,40.753,40.753,29.446,29.446,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.84,0.724,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,0.0,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,11.955,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2605.0,2605.0,13.185,12.044,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.304,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.076,6.354,1.189,1354.8,997.6,11399.6,3013.0,0.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,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 +base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,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,22.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,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,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,0.0,40.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,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.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,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,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,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,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,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,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,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,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-ambient.xml,48.007,48.007,30.285,30.285,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.292,0.0,0.0,4.61,0.898,9.354,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,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.601,0.0,15.077,9.342,0.606,0.0,0.0,0.0,2.0,1740.7,3397.3,3397.3,20.514,21.089,0.0,3.835,3.846,0.0,0.0,0.76,10.831,-11.429,0.0,0.0,10.226,0.0,-0.403,2.065,0.0,0.789,0.0,3.979,-6.811,-1.44,0.0,-0.046,-0.527,0.0,0.0,0.028,-0.75,12.412,0.0,0.0,-3.67,0.0,-0.396,-0.402,-2.391,-0.154,0.0,3.577,6.38,1.207,1354.8,997.6,11399.5,2808.9,0.0,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,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,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,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 +base-foundation-belly-wing-no-skirt.xml,49.694,49.694,29.445,29.445,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,3.895,0.731,9.354,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,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.964,0.0,12.009,9.342,0.607,0.0,0.0,0.0,0.0,1753.6,3211.6,3211.6,24.176,17.286,0.0,3.981,5.371,0.0,0.0,0.753,8.835,-11.05,0.0,0.0,10.267,0.0,-0.35,2.069,0.0,0.794,0.0,6.238,-6.883,-1.459,0.0,0.302,-0.601,0.0,0.0,0.038,-0.188,9.522,0.0,0.0,-3.443,0.0,-0.343,-0.395,-2.184,-0.144,0.0,2.215,6.308,1.188,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-belly-wing-skirt.xml,49.322,49.322,29.453,29.453,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.328,0.0,0.0,3.906,0.734,9.354,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,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.608,0.0,12.062,9.342,0.607,0.0,0.0,0.0,0.0,1752.3,3180.5,3180.5,24.023,17.245,0.0,3.987,5.379,0.0,0.0,0.753,8.843,-11.04,0.0,0.0,9.969,0.0,-0.345,2.068,0.0,0.793,0.0,6.125,-6.873,-1.457,0.0,0.296,-0.61,0.0,0.0,0.036,-0.211,9.532,0.0,0.0,-3.365,0.0,-0.338,-0.399,-2.199,-0.146,0.0,2.221,6.318,1.191,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-complex.xml,78.103,78.103,37.261,37.261,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.674,0.0,0.0,5.116,1.028,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.25,0.0,17.361,9.233,0.617,0.0,0.0,0.0,2.0,2171.5,3845.1,3845.1,33.417,21.451,0.0,3.431,3.657,0.52,19.54,0.65,10.564,-12.717,0.0,0.0,0.0,8.705,-0.111,6.102,0.0,0.739,0.0,8.38,-9.124,-2.557,0.0,0.048,-0.359,-0.044,3.767,-0.003,-1.508,11.564,0.0,0.0,0.0,-4.519,-0.103,-1.227,-3.259,-0.137,0.0,3.71,7.657,1.952,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,56.087,56.087,36.482,36.482,19.605,0.0,0.0,0.0,0.0,0.0,0.0,0.323,0.0,0.0,4.774,0.947,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,19.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,18.357,0.0,15.998,9.233,0.612,0.0,0.0,0.0,0.0,2130.6,3496.4,3496.4,22.309,19.66,0.0,3.624,3.695,0.52,8.197,0.641,10.668,-12.534,0.0,0.0,0.0,4.773,-0.061,4.839,0.0,0.733,0.0,4.319,-8.893,-2.498,0.0,-0.098,-0.497,-0.057,2.177,-0.036,-2.054,11.749,0.0,0.0,0.0,-3.7,-0.055,-1.187,-3.277,-0.169,0.0,3.465,7.883,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,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,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,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,0.0,18.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,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 +base-foundation-multiple.xml,42.738,42.738,29.706,29.706,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.218,0.812,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,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,0.0,13.443,9.285,0.693,0.0,0.0,0.0,0.0,1723.6,2714.9,2714.9,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,10.857,-11.246,0.0,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-4.636,-1.429,0.0,-0.098,-0.674,0.0,0.0,-0.018,-1.077,12.595,0.0,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.65,4.23,1.218,1354.8,997.6,11399.4,2706.9,0.0,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,14275.0,222.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-slab.xml,39.954,39.954,29.299,29.299,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.9,0.74,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,0.0,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.972,0.0,12.215,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2611.5,2611.5,12.703,12.011,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.078,6.379,1.193,1354.8,997.6,11399.5,2808.9,0.0,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,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-above-grade.xml,43.94,43.94,29.852,29.852,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.308,0.833,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,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,0.0,13.834,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.0,2759.0,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,10.912,-11.281,0.0,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.069,12.56,0.0,0.0,-0.506,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.93,4.211,1.213,1354.8,997.6,11399.5,2706.9,0.0,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,14270.0,226.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-assembly-r.xml,41.196,41.196,29.243,29.243,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.197,0.0,0.0,3.847,0.722,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,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,0.0,11.864,9.285,0.71,0.0,0.0,0.0,0.0,1718.3,2855.2,2855.2,14.652,12.883,0.0,3.994,3.856,0.0,0.0,0.759,10.855,-11.125,0.0,0.0,4.456,0.0,-0.343,2.583,0.0,0.0,0.0,1.82,-4.614,-1.421,0.0,-0.074,-0.626,0.0,0.0,0.009,-1.062,12.715,0.0,0.0,-2.011,0.0,-0.339,-0.564,-2.512,0.0,0.0,1.12,4.251,1.226,1354.8,997.6,11399.5,2706.9,0.0,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,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-wall-insulation.xml,48.948,48.948,28.952,28.952,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.558,0.653,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,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,0.0,10.743,9.285,0.64,0.0,0.0,0.0,0.0,1726.7,2483.3,2483.3,16.597,11.56,0.0,3.723,3.619,0.0,0.0,0.633,9.712,-12.351,0.0,0.0,14.373,0.0,-0.047,2.46,0.0,0.0,0.0,2.599,-4.778,-1.481,0.0,0.063,-0.441,0.0,0.0,-0.015,-0.972,11.49,0.0,0.0,-2.769,0.0,-0.045,-0.521,-2.405,0.0,0.0,1.302,4.088,1.166,1354.8,997.6,11399.5,2706.9,0.0,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,15218.0,128.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement.xml,42.817,42.817,29.736,29.736,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,4.234,0.816,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,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,0.0,13.513,9.285,0.703,0.0,0.0,0.0,0.0,1723.8,2921.5,2921.5,15.45,14.318,0.0,3.994,3.853,0.0,0.0,0.749,10.805,-11.235,0.0,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-4.634,-1.429,0.0,-0.077,-0.629,0.0,0.0,-0.0,-1.111,12.605,0.0,0.0,-0.673,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.724,4.231,1.218,1354.8,997.6,11399.5,2706.9,0.0,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,14277.0,222.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,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,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,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,2808.9,0.0,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,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,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,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,2808.9,0.0,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,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-walkout-basement.xml,64.814,64.814,36.328,36.328,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,4.532,0.884,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,0.0,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.677,0.0,14.89,9.233,0.615,0.0,0.0,0.0,0.0,2125.9,3513.1,3513.1,26.787,19.805,0.0,3.523,3.688,0.52,7.364,0.646,11.292,-12.794,0.0,0.0,0.0,10.155,-0.066,6.639,0.0,0.728,0.0,6.073,-8.935,-2.506,0.0,-0.099,-0.515,-0.06,1.48,-0.031,-2.074,12.046,0.0,0.0,0.0,-3.677,-0.061,-1.529,-3.357,-0.16,0.0,3.264,7.844,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,3123.7,0.0,15.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.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,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,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,7253.7,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,10081.5,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,6906.4,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,3384.0,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,3017.5,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,3017.5,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,3384.0,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,3385.8,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,7002.3,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.645,42.645,42.645,42.645,0.0,0.0,0.0,0.0,0.0,0.0,9.823,1.762,0.591,0.052,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,0.0,23.588,0.643,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7296.6,1637.3,7296.6,25.567,0.0,0.0,3.452,3.637,0.512,7.485,0.629,10.516,-12.551,0.0,0.0,0.0,8.112,-0.066,4.805,0.0,0.728,0.0,7.372,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,7104.3,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.145,46.145,46.145,46.145,0.0,0.0,0.0,0.0,0.0,0.0,9.718,1.011,0.443,0.024,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.466,13.102,9.233,0.614,0.0,0.0,0.0,0.0,6954.5,3209.9,6954.5,24.358,15.771,0.0,3.499,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.018,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,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,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,3650.5,0.0,21.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.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,0.0,25971.0,25971.0,11194.0,51.62,90.68,11194.0,4365.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.698,44.698,44.698,44.698,0.0,0.0,0.0,0.0,0.0,0.0,9.125,0.912,0.046,0.006,3.198,0.971,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.362,0.052,11.97,9.233,0.614,0.0,0.0,0.0,0.0,6628.4,2912.2,6628.4,22.625,13.15,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.864,-8.907,-2.499,0.0,0.037,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.05,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65908.0,65908.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,7064.5,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,24186.0,24186.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.554,41.554,41.554,41.554,0.0,0.0,0.0,0.0,0.0,0.0,7.131,0.629,0.416,0.017,2.294,0.626,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.433,13.325,9.233,0.614,0.0,0.0,0.0,0.0,6922.4,2762.7,6922.4,24.33,16.718,0.0,3.453,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.249,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.431,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33416.0,33416.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.544,40.544,40.544,40.544,0.0,0.0,0.0,0.0,0.0,0.0,6.849,0.507,0.049,0.005,2.124,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.035,0.054,12.091,9.233,0.614,0.0,0.0,0.0,0.0,6732.2,2521.0,6732.2,23.383,13.585,0.0,3.588,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.557,-8.907,-2.499,0.0,0.034,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.172,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65567.0,65567.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.171,51.171,37.619,37.619,13.551,0.0,0.0,0.0,0.0,0.0,4.154,0.37,0.0,0.138,2.31,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.722,11.262,14.452,9.233,0.615,0.0,0.0,2.0,0.0,3194.1,2672.7,3194.1,23.547,17.679,0.0,3.375,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.35,-8.918,-2.502,0.0,-0.058,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.697,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,23640.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.458,54.458,37.825,37.825,16.632,0.0,0.0,0.0,0.0,0.0,4.006,0.353,0.0,0.501,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,28.514,13.807,14.556,9.233,0.614,0.0,0.0,2.0,0.0,3328.2,2622.0,3328.2,30.614,17.514,0.0,3.251,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.289,-0.061,4.804,0.0,0.728,0.0,12.284,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.063,-0.165,0.0,3.704,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,32235.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,7149.0,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,26367.0,26367.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.158,41.158,41.158,41.158,0.0,0.0,0.0,0.0,0.0,0.0,7.314,0.748,0.123,0.008,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.792,0.131,14.556,9.233,0.614,0.0,0.0,0.0,0.0,7031.0,2622.0,7031.0,24.672,17.514,0.0,3.37,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.48,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.703,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.898,40.898,40.898,40.898,0.0,0.0,0.0,0.0,0.0,0.0,7.281,0.641,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.771,0.057,13.49,9.233,0.614,0.0,0.0,0.0,0.0,6896.7,2561.9,6896.7,23.811,16.273,0.0,3.447,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.401,-8.907,-2.499,0.0,-0.02,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.608,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,50423.0,50423.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-elec-only.xml,48.203,48.203,48.203,48.203,0.0,0.0,0.0,0.0,0.0,0.0,17.594,0.191,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.2,1637.3,5904.2,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.331,55.331,36.429,36.429,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2096.7,3330.0,3330.0,16.459,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-gas-only.xml,49.354,49.354,30.642,30.642,18.712,0.0,0.0,0.0,0.0,0.0,0.0,0.224,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,18.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2057.9,1637.3,2057.9,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20155.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,2618.4,0.0,17.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.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20283.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.538,48.538,48.538,48.538,0.0,0.0,0.0,0.0,0.0,0.0,9.911,1.779,0.593,0.052,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.645,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7326.8,3330.1,7326.8,25.567,17.819,0.0,3.446,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.439,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,19922.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,3475.0,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,3475.0,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,2581.3,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,2581.3,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,5930.0,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-evap-cooler-furnace-gas.xml,56.319,56.319,32.044,32.044,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,0.0,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,1915.1,2116.1,25.1,11.075,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,13458.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-elec-only.xml,53.605,53.605,53.605,53.605,0.0,0.0,0.0,0.0,0.0,0.0,22.563,0.625,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,0.0,22.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8622.9,1637.3,8622.9,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.875,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2124.3,2947.8,2947.8,24.237,18.493,0.0,3.51,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.863,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20155.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20283.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,2122.5,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.324,34.324,34.324,34.324,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.874,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.707,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2888.0,2888.0,0.0,17.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.164,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.697,36.697,36.697,36.697,0.0,0.0,0.0,0.0,0.0,0.0,5.486,0.794,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,0.0,21.07,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3421.0,1637.3,3421.0,23.54,0.0,0.0,3.55,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.785,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.97,39.97,39.97,39.97,0.0,0.0,0.0,0.0,0.0,0.0,5.504,0.688,0.0,0.0,2.527,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.125,0.0,13.273,9.233,0.614,0.0,0.0,0.0,0.0,3365.5,2553.9,3365.5,23.007,15.726,0.0,3.551,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.677,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.382,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.557,39.557,39.557,39.557,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.364,0.0,0.0,2.47,1.04,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.784,0.0,12.822,9.233,0.614,0.0,0.0,0.0,0.0,3219.5,2594.7,3219.5,21.329,15.036,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.298,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.912,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.557,39.557,39.557,39.557,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.364,0.0,0.0,2.47,1.04,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.784,0.0,12.822,9.233,0.614,0.0,0.0,0.0,0.0,3219.5,2594.7,3219.5,21.329,15.036,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.298,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.912,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,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,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,4263.6,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,4941.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,19866.0,19866.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.91,38.91,38.91,38.91,0.0,0.0,0.0,0.0,0.0,0.0,5.84,0.317,0.073,0.002,2.16,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,0.0,19.98,0.075,12.245,9.233,0.614,0.0,0.0,0.0,0.0,4268.2,2191.0,4268.2,19.501,13.372,0.0,3.593,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.501,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.402,38.402,38.402,38.402,0.0,0.0,0.0,0.0,0.0,0.0,5.406,0.268,0.0,0.0,2.213,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.045,0.0,11.734,9.233,0.614,0.0,0.0,0.0,0.0,3640.7,2214.0,3640.7,19.188,12.558,0.0,3.624,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.54,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.818,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,41843.0,41843.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.75,37.75,37.75,37.75,0.0,0.0,0.0,0.0,0.0,0.0,5.078,0.102,0.042,0.0,2.06,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.042,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3682.6,2120.6,3682.6,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.614,35.614,0.0,12.321,0.0,0.0,0.0,0.0,3.012,0.092,0.0,0.0,2.043,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.658,7.393,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2846.2,2123.8,2846.2,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,49.605,49.605,42.912,42.912,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.191,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2614.2,3427.5,3427.5,16.894,14.883,0.0,2.873,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.449,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,0.0,31430.0,27561.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-stove-oil-only.xml,52.275,52.275,30.519,30.519,0.0,21.756,0.0,0.0,0.0,0.0,0.0,0.1,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,21.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.5,1635.7,2037.5,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,6024.4,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize.xml,59.984,59.984,36.217,36.217,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.324,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2126.9,3189.8,3189.8,24.296,18.003,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.91,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,19922.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,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,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,2060.9,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,6044.7,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,24.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,2045.4,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,2045.4,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,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,19.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,2060.9,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,2041.8,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,2041.8,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,7284.9,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.93,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.276,11.122,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,3619.1,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.391,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.179,15.2,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,3465.8,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.043,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.535,15.233,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,2779.5,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.757,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,26.265,15.615,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,2778.7,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,2543.3,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,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,0.0,47.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,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,71259.0,33168.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,28612.0,4972.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-defaults.xml,55.153,55.153,40.631,40.631,14.522,0.0,0.0,0.0,0.0,0.0,4.468,0.378,0.0,0.0,5.344,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,14.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,18.196,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3050.3,3196.1,3196.1,18.212,11.065,0.0,3.733,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,1.597,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.058,-1.165,-3.053,-0.165,0.0,-0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,41910.0,24000.0,0.0,6.8,91.76,28212.0,4572.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34496.0,10856.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32660.0,9020.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,5930.0,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,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,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,2111.3,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,2021.1,0.0,14.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.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,2021.1,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,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,0.0,26.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,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,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,7929.1,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,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,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,8314.7,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,2071.2,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,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,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-borefield-configuration.xml,39.611,39.611,39.611,39.611,0.0,0.0,0.0,0.0,0.0,0.0,5.26,0.363,0.0,0.0,2.512,1.034,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.551,0.0,12.683,9.233,0.614,0.0,0.0,0.0,0.0,3220.4,2615.4,3220.4,20.982,14.735,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.059,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-count.xml,39.586,39.586,39.586,39.586,0.0,0.0,0.0,0.0,0.0,0.0,5.255,0.363,0.0,0.0,2.496,1.032,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.68,9.233,0.614,0.0,0.0,0.0,0.0,3217.0,2594.6,3217.0,20.961,14.715,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.767,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-diameter.xml,39.582,39.582,39.582,39.582,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.363,0.0,0.0,2.49,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3216.5,2593.6,3216.5,20.904,14.714,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.766,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-length.xml,39.52,39.52,39.52,39.52,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.36,0.0,0.0,2.457,1.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,0.0,19.535,0.0,12.674,9.233,0.614,0.0,0.0,0.0,0.0,3204.8,2574.2,3204.8,20.845,14.69,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.042,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.761,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-spacing.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.361,0.0,0.0,2.468,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.539,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3209.0,2580.0,3209.0,20.864,14.698,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.047,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-ground-diffusivity.xml,39.58,39.58,39.58,39.58,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.363,0.0,0.0,2.489,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3216.2,2591.5,3216.2,20.899,14.711,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.766,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-grout-conductivity.xml,39.579,39.579,39.579,39.579,0.0,0.0,0.0,0.0,0.0,0.0,5.257,0.363,0.0,0.0,2.487,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3216.7,2587.7,3216.7,20.894,14.706,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-loop-flow.xml,39.582,39.582,39.582,39.582,0.0,0.0,0.0,0.0,0.0,0.0,5.259,0.363,0.0,0.0,2.488,1.031,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3212.8,2589.5,3212.8,20.884,14.709,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.056,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-conductivity.xml,39.56,39.56,39.56,39.56,0.0,0.0,0.0,0.0,0.0,0.0,5.25,0.362,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.8,2584.5,3212.8,20.88,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.051,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-diameter.xml,39.563,39.563,39.563,39.563,0.0,0.0,0.0,0.0,0.0,0.0,5.248,0.362,0.0,0.0,2.481,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3212.1,2581.8,3212.1,20.927,14.699,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.528,39.528,39.528,39.528,0.0,0.0,0.0,0.0,0.0,0.0,5.239,0.361,0.0,0.0,2.461,1.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,0.0,19.537,0.0,12.674,9.233,0.614,0.0,0.0,0.0,0.0,3207.1,2575.5,3207.1,20.852,14.692,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.044,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.762,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.834,33.834,33.834,33.834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.571,0.777,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.556,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2618.9,2618.9,0.0,14.783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.993,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.574,36.574,36.574,36.574,0.0,0.0,0.0,0.0,0.0,0.0,5.394,0.763,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,0.0,20.341,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3367.4,1637.3,3367.4,22.277,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.035,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.558,39.558,39.558,39.558,0.0,0.0,0.0,0.0,0.0,0.0,5.249,0.362,0.0,0.0,2.477,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.4,2584.7,3212.4,20.879,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.051,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,7036.9,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,7011.6,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,7134.8,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,2097.0,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.378,41.378,41.378,41.378,0.0,0.0,0.0,0.0,0.0,0.0,6.664,0.38,0.0,0.0,2.932,0.962,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.427,0.0,13.138,9.233,0.614,0.0,0.0,0.0,0.0,3445.1,2732.5,3445.1,21.808,15.713,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.959,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.237,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,4380.1,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,2211.4,0.0,12.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,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,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,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,3769.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,3769.3,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,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,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,4370.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,44.912,44.912,35.83,35.83,9.082,0.0,0.0,0.0,0.0,0.0,3.036,0.054,0.0,0.274,1.999,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,9.082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.769,7.539,10.828,9.233,0.615,0.0,0.0,1.0,0.0,2913.9,2188.7,2913.9,17.284,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.111,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,24589.0,949.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,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,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,2829.9,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,2913.9,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.378,66.378,51.93,51.93,7.162,3.603,3.683,0.0,0.0,0.0,13.664,0.862,0.199,0.008,6.203,0.554,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.718,0.207,18.969,9.233,0.615,0.0,0.0,0.0,4.0,6442.4,4057.4,6442.4,37.83,22.72,0.0,3.417,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.316,-8.919,-2.502,0.0,-0.122,-0.445,-0.049,2.738,-0.021,-1.886,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.244,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.4,1280.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,1354.8,997.6,8540.6,2104.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 +base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,2126.3,0.0,3.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.01,-0.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,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,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-space-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,2021.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,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,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,2032.0,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,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,0.0,0.0,0.0,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,2032.0,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,56.19,56.19,35.529,35.529,20.661,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,3.959,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,20.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,19.378,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2961.2,2961.2,20.444,15.145,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.888,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,28898.0,18434.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,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,0.0,15.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,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,2089.4,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,6024.4,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,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,0.0,22.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,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-kwh-per-year.xml,60.469,60.469,39.553,39.553,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.535,0.889,9.163,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.996,9.233,0.613,0.0,0.0,0.0,0.0,2416.3,3795.3,3795.3,22.788,18.414,0.0,3.575,3.655,0.514,7.569,0.633,10.56,-12.521,0.0,0.0,0.0,8.359,-0.067,4.811,0.0,0.729,0.0,4.568,-8.891,-4.249,0.0,-0.085,-0.489,-0.055,2.612,-0.033,-2.015,11.745,0.0,0.0,0.0,-6.471,-0.063,-1.192,-3.199,-0.169,0.0,3.277,7.886,3.428,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,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,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,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,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 +base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,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,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,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,2719.3,0.0,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,15107.0,1151.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 +base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,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.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,1354.8,997.6,10580.5,2607.1,0.0,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,13718.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 +base-location-dallas-tx.xml,34.353,34.353,32.588,32.588,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.767,1.868,6.814,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,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,0.0,30.193,6.675,0.573,0.0,0.0,0.0,0.0,2014.4,2771.1,2771.1,9.706,14.235,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.343,9.5,1.888,1354.8,997.6,9989.0,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-location-duluth-mn.xml,70.96,70.96,29.786,29.786,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,2.265,0.329,11.623,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,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,0.0,5.222,11.597,0.833,0.0,0.0,0.0,0.0,1760.4,2414.3,2414.3,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,19.994,-13.274,0.0,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-6.293,-1.93,0.0,-0.435,-0.782,0.0,0.0,-0.099,-1.383,7.876,0.0,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.334,2.573,0.717,1354.8,997.6,12167.9,2889.4,0.0,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,11642.0,149.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 +base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,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,0.0,42.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,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 +base-location-honolulu-hi.xml,36.199,36.199,36.199,36.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.218,3.035,4.816,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,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,2132.0,2154.5,2342.0,0.0,13.168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,13.134,2.647,1354.8,997.6,8540.5,2104.4,0.0,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,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 +base-location-miami-fl.xml,35.353,35.353,35.353,35.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.444,2.83,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,0.0,0.0,45.97,4.712,0.551,0.0,0.0,0.0,0.0,2104.8,2424.8,2424.8,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,0.0,0.0,0.0,1.006,0.575,0.0,0.0,0.304,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,13.135,2.647,1354.8,997.6,8625.1,2125.3,0.0,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,13318.0,-219.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 +base-location-phoenix-az.xml,38.434,38.434,38.433,38.433,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.029,3.092,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.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,0.0,51.765,4.955,0.556,0.0,0.0,0.0,0.0,2368.2,3386.4,3386.4,0.593,17.634,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,11.511,2.368,1354.8,997.6,8429.2,2077.0,0.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,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 +base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,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,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,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,1354.8,997.6,11239.5,2769.4,0.0,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,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 +base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,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,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,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,0.0,24.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,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.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.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,0.0,0.0,11.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.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,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,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,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,63.835,44.385,31.488,12.038,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,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.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2793.8,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,3.08,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-emissions.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,16.505,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.981,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 +base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,24.753,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-round-trip-efficiency.xml,60.69,33.803,37.859,10.972,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.909,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,6.706,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-scheduled.xml,60.483,33.596,37.652,10.766,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,6.873,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery-scheduled.xml,77.483,42.407,37.652,2.576,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,24.473,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery.xml,76.584,41.509,36.754,1.678,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.804,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,90.778,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,556.25,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,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,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,3173.5,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,1.915,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,33.64,33.64,28.659,28.659,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.082,0.0,0.0,3.199,0.556,7.442,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,9.408,7.426,0.561,0.0,0.0,0.5,0.5,9398.1,10416.5,10416.5,41.812,21.425,0.0,2.585,2.431,0.339,4.203,0.328,6.833,-12.363,0.0,0.0,0.0,3.542,-0.105,3.354,0.0,0.382,0.0,1.039,-6.567,-1.596,0.0,-0.232,-0.587,-0.07,2.391,-0.062,-2.309,11.863,0.0,0.0,0.0,-7.603,-0.059,-1.378,-4.919,-0.21,0.0,2.269,8.448,2.023,1141.2,883.5,9401.7,2157.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps.xml,42.676,42.676,34.392,34.392,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.137,0.0,0.0,3.211,0.559,9.199,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.756,0.0,9.457,9.21,0.671,0.0,0.0,0.0,0.5,9394.7,10419.5,10419.5,31.982,21.427,0.0,2.889,2.782,0.39,5.331,0.415,7.871,-12.359,0.0,0.0,0.0,5.381,-0.059,3.834,0.0,0.578,0.0,1.776,-8.861,-2.486,0.0,-0.236,-0.59,-0.07,2.395,-0.063,-2.32,11.863,0.0,0.0,0.0,-7.535,-0.058,-1.38,-4.931,-0.211,0.0,2.279,8.448,2.023,1354.7,998.0,11490.9,2636.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,9102.0,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,6232.4,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,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,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,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,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,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,0.0,22.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,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,2116.04,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,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,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,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,9304.3,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,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,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,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,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +house001.xml,86.453,86.453,46.944,46.944,39.508,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.684,4.394,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,0.0,22.462,0.0,17.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.215,0.0,49.863,10.416,2.681,0.0,0.0,0.0,0.0,1853.4,6417.7,6417.7,37.576,40.427,0.492,1.982,7.189,0.419,0.0,0.959,7.577,-4.942,0.0,0.0,0.438,1.255,-0.262,4.293,0.0,5.152,0.0,3.214,-6.762,-2.935,0.562,1.981,3.785,0.305,0.0,0.258,0.298,11.575,0.0,0.0,0.573,6.821,-0.248,-0.42,-1.413,-0.757,0.0,10.696,11.588,4.446,2104.5,2144.0,14468.8,4385.1,0.0,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,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 +house002.xml,67.263,67.263,39.818,39.818,27.444,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.726,3.409,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,0.0,13.958,0.0,13.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.316,0.0,39.308,7.526,2.891,0.0,0.0,0.0,0.0,1554.0,4934.4,4934.4,23.891,28.399,0.0,2.53,5.051,0.0,0.0,0.85,5.996,-4.053,0.0,0.0,0.0,1.759,-0.146,1.573,0.0,3.789,0.0,1.372,-5.071,-2.493,0.0,3.082,2.762,0.0,0.0,0.396,-0.488,8.601,0.0,0.0,0.0,8.468,-0.14,-0.182,-1.052,-0.638,0.0,5.863,8.93,3.888,1610.9,1574.7,9989.4,3520.4,0.0,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,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 +house003.xml,68.642,68.642,40.063,40.063,28.579,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.737,3.543,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,0.0,15.333,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.0,40.757,7.526,2.691,0.0,0.0,0.0,0.0,1632.4,5147.9,5147.9,26.295,31.384,0.648,2.781,4.656,0.0,0.0,0.985,6.674,-3.929,0.0,0.0,0.0,1.074,-0.164,1.988,0.0,3.937,0.0,1.615,-5.293,-2.701,0.794,3.047,2.594,0.0,0.0,0.624,-0.264,9.905,0.0,0.0,0.0,6.53,-0.157,-0.218,-1.094,-0.633,0.0,6.453,9.189,4.174,1610.9,1574.7,9989.3,3520.4,0.0,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,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 +house004.xml,136.271,136.271,75.306,75.306,60.965,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,28.978,9.455,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,0.0,44.816,0.0,16.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.241,0.0,107.036,8.985,3.511,0.0,0.0,0.0,101.0,3061.1,7371.4,7371.4,54.694,50.188,0.128,5.535,11.395,0.0,0.0,1.249,14.009,-5.986,0.0,0.0,0.0,3.226,-0.721,4.938,0.0,6.279,0.0,7.107,-7.297,-3.933,0.199,6.756,11.661,0.0,0.0,0.524,5.468,17.456,0.0,0.0,0.0,18.954,-0.708,1.03,0.0,1.86,0.0,21.407,15.06,7.63,1857.7,1859.3,12228.9,3983.9,0.0,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,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 +house005.xml,95.118,95.118,53.277,53.277,41.841,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.27,5.149,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,0.0,26.64,0.0,15.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,21.604,0.0,59.527,8.985,2.731,0.0,0.0,0.0,0.0,2076.0,7519.1,7519.1,45.933,50.952,0.0,3.02,8.096,0.267,0.0,1.336,10.048,-6.655,0.0,0.0,0.37,1.253,-0.336,5.037,0.0,5.077,0.0,4.386,-6.862,-3.637,0.0,2.987,4.342,0.212,0.0,0.297,0.319,15.402,0.0,0.0,0.447,7.536,-0.319,-0.49,-1.768,-0.737,0.0,14.474,11.523,5.518,1857.7,1859.4,12229.0,3983.9,0.0,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,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 +house006.xml,139.365,139.365,31.78,31.78,107.585,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.951,0.34,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,0.0,81.738,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,78.691,0.0,7.8,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2441.9,2441.9,40.506,14.727,0.0,4.261,22.283,1.991,37.119,1.868,17.963,-9.449,0.0,0.0,0.0,9.284,-0.313,9.523,0.0,4.368,0.0,0.0,-14.567,-6.452,0.0,0.174,-0.793,-0.044,2.801,-0.086,-0.887,4.262,0.0,0.0,0.0,-3.89,-0.313,-0.514,-0.614,-0.075,0.0,0.0,5.649,2.235,1610.9,1574.7,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 +house007.xml,138.83,138.83,33.914,33.914,104.916,0.0,0.0,0.0,0.0,0.0,0.0,1.632,0.0,0.0,2.54,0.396,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,0.0,75.248,0.0,23.282,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,70.851,0.0,5.753,15.632,3.269,0.0,0.0,0.0,0.0,2192.0,2562.1,2562.1,39.678,13.27,0.0,4.719,23.705,4.446,10.133,1.504,19.077,-9.362,0.0,0.0,0.077,11.566,-0.343,6.119,0.0,20.834,0.0,2.867,-17.238,-7.765,0.0,0.197,-0.722,-0.06,0.577,-0.049,-0.553,4.531,0.0,0.0,-0.009,-4.0,-0.339,-0.191,-0.585,-1.888,0.0,0.104,6.303,2.533,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 +house008.xml,183.501,183.501,39.139,39.139,144.362,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.556,0.53,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,0.0,110.924,0.0,26.378,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,104.521,0.0,9.981,18.129,3.214,0.0,0.0,0.0,0.0,2473.2,3287.8,3287.8,54.741,19.298,0.0,7.23,27.419,4.689,24.238,1.181,22.401,-7.862,0.0,0.0,1.235,17.867,-0.356,18.326,0.0,6.386,0.0,7.825,-18.694,-8.197,0.0,0.294,-1.11,-0.063,1.637,-0.086,-1.372,5.318,0.0,0.0,-0.1,-2.732,-0.356,-0.983,-0.682,-0.282,0.0,0.528,7.259,2.809,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 +house009.xml,154.293,154.293,33.983,33.983,120.31,0.0,0.0,0.0,0.0,0.0,0.0,2.035,0.0,0.0,2.375,0.286,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,0.0,90.634,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,85.401,0.0,5.187,15.632,3.276,0.0,0.0,0.0,0.0,2227.1,2605.9,2605.9,44.161,13.902,0.0,5.098,28.389,4.31,13.07,2.257,19.625,-8.244,0.0,0.0,0.266,15.661,-0.329,8.731,0.0,21.443,0.0,0.0,-17.529,-7.88,0.0,0.238,-0.711,-0.038,0.753,-0.078,-0.78,4.49,0.0,0.0,-0.028,-4.065,-0.325,-0.258,-0.521,-1.794,0.0,0.0,5.992,2.391,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 +house010.xml,153.796,153.796,37.549,37.549,116.246,0.0,0.0,0.0,0.0,0.0,0.0,1.86,0.0,0.0,2.896,0.273,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,0.0,82.81,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,78.033,0.0,7.28,18.129,3.214,0.0,0.0,0.0,0.0,2409.0,2810.7,2810.7,45.27,15.353,0.875,4.93,25.457,4.901,9.774,1.256,23.582,-9.227,0.0,0.0,0.906,11.41,-0.365,19.566,0.0,6.402,0.0,4.869,-18.715,-8.186,0.023,0.211,-0.764,-0.099,0.558,-0.073,-1.356,5.066,0.0,0.0,-0.046,-4.161,-0.362,-1.021,-0.677,-0.269,0.0,0.334,7.219,2.8,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 +house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,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,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,4986.2,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,0.0,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,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 +house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,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,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,3031.7,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,0.0,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,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 +house013.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,2660.9,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 +house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,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,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,2913.6,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,3131.8,0.0,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,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 +house015.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,2660.9,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 +house016.xml,61.263,61.263,39.85,39.85,0.0,0.0,21.413,0.0,0.0,0.0,7.562,0.538,0.161,0.004,3.068,1.038,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.225,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.35,0.164,12.001,10.478,0.0,0.0,0.0,1.0,16.0,7459.2,3559.3,7459.2,42.956,19.008,0.0,4.428,10.851,0.619,5.712,0.298,7.395,-8.024,0.0,0.0,0.0,6.777,-0.02,5.735,0.0,3.86,0.0,0.0,-8.634,-4.768,0.0,-0.362,-0.889,-0.023,2.899,-0.047,-0.596,12.366,0.0,0.0,0.0,-8.869,-0.022,-1.375,-1.189,-1.027,0.0,0.0,7.78,3.838,1759.0,1745.5,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 +house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,0.0,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 +house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,4683.5,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,0.0,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,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2606.0,1095.0,711.0,800.0 +house019.xml,129.831,129.831,51.94,51.94,77.891,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.257,3.783,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.116,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.065,0.0,44.56,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6497.7,6497.7,84.656,46.058,0.0,11.387,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.955,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.944,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,0.0,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 +house020.xml,116.979,116.979,56.877,56.877,0.0,0.0,60.102,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.245,2.923,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.965,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.971,0.0,34.513,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6618.4,6618.4,31.034,32.534,0.91,11.02,10.576,1.133,9.807,0.632,14.612,-15.405,0.0,0.0,0.0,7.524,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.24,0.116,0.176,0.053,6.39,0.012,-1.763,21.501,0.0,0.0,0.0,-6.709,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,0.0,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 +house021.xml,156.416,156.416,48.605,48.605,107.811,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.488,1.582,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.77,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,18.993,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4771.0,4771.0,81.115,23.848,0.0,8.272,27.058,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.315,26.613,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.008,-0.864,0.005,2.201,-0.093,-1.709,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.322,8.889,3.787,1759.0,1745.5,13752.0,4620.1,0.0,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 +house022.xml,137.518,137.518,48.884,48.884,0.0,88.635,0.0,0.0,0.0,0.0,0.0,2.204,0.0,0.0,8.878,0.897,12.47,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,88.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.755,0.0,19.669,10.989,1.479,0.0,0.0,184.0,126.0,2989.1,5375.4,5375.4,90.672,27.64,3.697,3.766,20.67,0.0,0.0,1.489,16.102,-13.284,0.0,0.0,14.728,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.522,0.0,0.0,-0.127,-0.987,12.096,0.0,0.0,1.908,0.0,-0.281,-2.742,-0.645,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,0.0,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 +house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,4638.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 +house024.xml,129.181,129.181,44.059,44.059,0.0,85.122,0.0,0.0,0.0,0.0,0.0,2.117,0.0,0.0,5.375,0.691,16.753,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.176,0.0,16.013,14.653,2.088,0.0,0.0,0.0,0.0,2750.5,3528.1,3591.8,72.024,17.577,0.0,7.189,30.113,0.0,0.0,0.682,6.988,-7.991,0.0,0.0,5.221,0.0,-0.109,25.401,0.0,1.837,0.0,11.726,-8.633,-2.537,0.0,0.564,1.148,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.499,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.853,5.531,1.379,2176.1,2226.5,14983.5,4452.7,0.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,21856.0,1377.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7041.0,2605.0,3636.0,800.0 +house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,0.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,32212.0,8765.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 +house026.xml,57.14,57.14,24.857,24.857,32.282,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,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,0.0,18.136,0.0,14.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,13.896,0.0,0.0,8.607,2.082,0.0,0.0,0.0,0.0,1554.0,1299.3,1554.0,17.371,0.0,0.0,1.761,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.103,0.0,-0.058,2.488,0.0,3.127,0.0,0.0,-6.707,-3.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,1294.8,1282.2,8578.8,3023.3,0.0,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 +house027.xml,72.753,72.753,31.736,31.736,41.016,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,7.874,1.017,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,0.0,20.065,0.0,17.882,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.901,0.0,23.04,8.564,5.232,0.0,0.0,0.0,0.0,1580.0,3622.8,3622.8,24.052,22.72,0.716,1.776,7.887,0.452,0.0,0.591,5.247,-4.028,0.0,0.0,0.376,3.336,-0.14,1.745,0.0,10.425,0.0,2.046,-8.79,-2.845,0.489,1.124,0.653,0.056,0.0,-0.113,-0.286,5.628,0.0,0.0,0.105,3.836,-0.14,-0.365,-0.966,-3.474,0.0,2.595,10.728,3.102,1610.9,1574.7,10579.5,3728.4,0.0,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 +house028.xml,67.831,67.831,29.68,29.68,38.15,0.0,0.0,0.0,0.0,0.0,0.0,0.259,0.0,0.0,7.107,1.515,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,0.0,13.643,0.0,18.121,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.812,0.0,22.735,10.226,3.62,0.0,0.0,0.0,0.0,1517.3,3323.9,3323.9,20.023,21.223,0.769,1.663,7.049,0.35,0.0,0.432,5.505,-3.79,0.0,0.0,0.236,2.464,-0.05,4.039,0.0,4.464,0.0,1.543,-9.08,-2.901,0.607,1.232,-0.581,0.098,0.0,0.066,-0.712,6.39,0.0,0.0,0.069,1.838,-0.051,-1.081,-1.198,-1.645,0.0,2.913,11.527,3.237,1857.7,1859.4,12951.6,4219.3,0.0,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 +house029.xml,77.601,77.601,29.95,29.95,47.651,0.0,0.0,0.0,0.0,0.0,0.0,0.639,0.0,0.0,6.107,0.906,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,0.0,31.987,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,31.653,0.0,13.604,9.614,0.0,0.0,0.0,0.0,0.0,1604.9,3000.4,3000.4,28.473,13.951,0.0,3.364,14.695,0.392,0.0,0.308,6.693,-6.461,0.0,0.0,6.932,0.0,-0.085,7.292,0.0,7.304,0.0,3.15,-8.377,-3.711,0.0,1.12,-0.859,0.009,0.0,0.053,0.373,5.722,0.0,0.0,-0.449,0.0,-0.08,-0.809,-1.067,-1.536,0.0,1.215,7.168,2.832,1610.9,1574.7,11033.0,3888.2,0.0,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,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 +house030.xml,57.883,57.883,17.189,17.189,0.0,0.0,40.694,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.377,0.0,13.28,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.883,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,1133.7,15.992,0.0,0.0,1.68,10.216,0.489,1.112,1.049,5.343,-4.368,0.0,0.0,0.0,3.578,-0.04,2.742,0.0,5.694,0.0,0.0,-7.809,-2.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,1066.0,992.8,6763.9,2581.0,0.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 +house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,7846.0,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 +house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,1347.4,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.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,1341.9,1264.5,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 +house033.xml,106.743,106.743,14.691,14.691,0.0,92.052,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.371,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,1018.3,48.38,0.0,0.0,19.125,14.564,0.0,0.0,1.0,10.82,-7.637,0.0,0.0,14.706,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.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,0.0,924.8,0.0,3905.6,1188.1,0.0,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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 +house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,2949.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.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,1759.0,1745.5,10287.1,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 +house035.xml,63.505,63.505,17.521,17.521,45.985,0.0,0.0,0.0,0.0,0.0,0.0,0.809,0.0,0.0,1.742,0.119,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.522,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.706,0.0,2.673,3.92,3.822,0.0,0.0,102.0,0.0,1326.3,1899.4,1899.4,39.1,9.67,0.367,6.149,10.862,0.0,0.0,0.538,5.863,-7.44,0.0,0.0,7.797,0.0,0.004,13.61,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.579,-1.589,0.0,0.0,-0.082,-1.219,7.322,0.0,0.0,-4.457,0.0,0.009,-2.738,-0.728,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,0.0,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 +house036.xml,82.314,82.314,26.075,26.075,56.239,0.0,0.0,0.0,0.0,0.0,0.0,0.964,0.0,0.0,5.964,1.051,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.77,0.0,17.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.868,0.0,15.005,8.219,5.837,0.0,0.0,102.0,126.0,1461.8,3231.3,3231.3,31.799,17.329,5.544,2.267,3.993,0.0,0.0,1.83,6.573,-7.755,0.0,0.0,21.29,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.427,-3.43,1.567,0.119,-0.032,0.0,0.0,-0.224,-0.58,6.698,0.0,0.0,2.216,0.0,-0.0,-0.749,-0.419,-0.061,0.0,0.0,4.352,2.019,1341.9,1264.5,6447.0,2476.3,0.0,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 +house037.xml,87.934,87.934,21.779,21.779,0.0,66.155,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,49.998,0.0,16.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,37.091,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,1457.0,29.538,0.0,0.0,16.714,11.33,0.0,0.0,1.563,7.276,-10.49,0.0,0.0,6.59,0.0,-0.309,14.696,0.0,0.461,0.0,0.0,-6.818,-3.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,1341.9,1264.5,8324.2,3197.3,0.0,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 +house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,5656.5,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 +house039.xml,98.796,98.796,24.025,24.025,74.77,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,5.136,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.084,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,1709.2,49.765,0.0,0.0,14.276,5.416,0.0,0.0,2.519,15.643,-13.75,0.0,0.0,13.85,0.0,-0.039,13.263,0.0,0.557,0.0,0.0,-4.135,-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,2176.1,2226.5,17536.3,5211.3,0.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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 +house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,1751.1,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 +house041.xml,259.077,259.077,47.133,47.133,211.944,0.0,0.0,0.0,0.0,0.0,0.0,4.164,0.0,0.0,2.576,0.254,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,0.0,185.392,0.0,26.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,174.689,0.0,4.652,15.632,5.039,0.0,0.0,105.0,0.0,3249.4,4561.5,4561.5,77.749,23.467,0.0,11.26,44.834,3.482,34.914,3.052,41.616,-22.892,0.0,0.0,4.341,17.423,-0.477,64.05,0.0,2.763,0.0,0.0,-20.286,-10.995,0.0,0.097,-2.224,-0.127,1.602,-0.212,-4.015,11.033,0.0,0.0,-0.321,-5.328,-0.475,-3.481,-1.022,-0.258,0.0,0.0,6.561,2.948,1857.7,1859.4,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 +house042.xml,229.67,229.67,40.068,40.068,189.602,0.0,0.0,0.0,0.0,0.0,0.0,3.871,0.0,0.0,1.81,0.074,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,0.0,165.165,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.395,0.0,2.999,15.632,3.226,0.0,0.0,0.0,0.0,2758.3,3100.3,3100.3,88.214,19.624,0.0,9.205,40.053,4.031,43.891,2.672,34.445,-21.633,0.0,0.0,2.453,14.538,-0.385,56.223,0.0,1.75,0.0,0.0,-19.152,-7.587,0.0,0.2,-1.588,-0.07,2.68,-0.16,-3.134,7.067,0.0,0.0,-0.272,-5.113,-0.382,-2.85,-0.642,-0.145,0.0,0.0,5.557,1.952,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 +house043.xml,158.13,158.13,30.051,30.051,128.078,0.0,0.0,0.0,0.0,0.0,0.0,2.456,0.0,0.0,2.028,0.119,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,0.0,108.178,0.0,19.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,103.04,0.0,3.036,13.084,2.207,0.0,0.0,0.0,0.0,1988.8,2798.1,2798.1,54.664,13.818,0.0,3.172,23.263,2.301,33.889,5.621,23.662,-11.489,0.0,0.0,0.55,9.952,-0.267,28.928,0.0,1.576,0.0,0.0,-14.359,-5.16,0.0,0.032,-0.925,-0.1,1.55,-0.379,-2.383,5.793,0.0,0.0,-0.07,-3.676,-0.267,-1.616,-0.538,-0.147,0.0,0.0,4.463,1.402,1610.9,1574.7,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 +house044.xml,225.894,225.894,43.51,43.51,182.384,0.0,0.0,0.0,0.0,0.0,0.0,4.68,0.0,0.0,2.094,0.198,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,0.0,159.817,0.0,22.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.487,0.0,3.747,13.084,4.452,0.0,0.0,0.0,0.0,3093.4,3553.3,3553.3,80.982,18.914,4.373,6.905,36.478,9.231,19.305,2.751,19.057,-13.33,0.0,0.0,12.909,15.111,-0.46,61.886,0.0,1.435,0.0,0.0,-18.031,-10.257,0.237,0.441,-1.46,-0.13,1.17,-0.123,-1.231,6.794,0.0,0.0,-1.164,-4.927,-0.458,-2.728,-0.484,-0.102,0.0,0.0,5.295,2.697,1610.9,1574.7,12168.1,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 +house045.xml,152.693,152.693,35.232,35.232,117.461,0.0,0.0,0.0,0.0,0.0,0.0,2.782,0.0,0.0,2.392,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,0.0,95.008,0.0,22.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,88.27,0.0,4.026,13.084,4.363,0.0,0.0,0.0,0.0,2317.8,3011.2,3011.2,47.289,12.909,3.57,3.077,15.169,2.298,32.784,1.143,19.974,-13.617,1.045,-0.407,0.086,12.672,-0.187,20.635,0.0,10.931,0.0,0.0,-14.663,-7.028,-0.017,0.001,-1.114,-0.131,0.881,-0.09,-2.086,7.133,-0.068,0.396,-0.013,-4.082,-0.186,-1.184,-0.915,-1.259,0.0,0.0,4.825,2.036,1610.9,1574.7,12168.1,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 +house046.xml,25.037,25.037,25.037,25.037,0.0,0.0,0.0,0.0,0.0,0.0,5.364,0.446,0.267,0.009,3.738,1.038,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,0.0,13.922,0.276,12.84,4.305,0.617,0.0,0.0,0.0,0.0,3842.0,2404.7,3842.0,16.167,13.004,0.0,2.525,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.275,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.814,4.589,0.545,596.8,442.2,5543.5,2208.6,0.0,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,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 +house047.xml,20.762,20.762,14.475,14.475,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.596,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,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,0.0,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.4,968.8,968.8,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.729,-0.554,0.0,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.101,0.032,0.0,0.0,-0.093,0.798,0.0,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.276,0.409,251.7,442.2,5772.6,1524.2,0.0,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,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 +house048.xml,91.642,91.642,39.796,39.796,51.846,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,12.899,3.824,0.0,0.0,0.0,3.691,0.085,0.498,3.017,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,0.0,35.87,0.0,12.637,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.021,0.0,51.358,7.253,2.688,0.0,0.0,0.0,0.0,1535.9,5475.4,5475.4,42.021,33.069,1.024,2.643,12.009,0.0,0.0,0.815,4.922,-2.545,0.0,0.0,0.058,2.032,-0.525,6.797,0.0,4.194,0.0,6.419,-7.415,-1.512,1.323,1.018,9.256,0.0,0.0,0.549,2.757,4.297,0.0,0.0,0.072,10.121,-0.513,0.526,-0.449,1.931,0.0,6.917,11.576,2.179,130.3,817.7,11617.6,3495.1,0.0,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,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 +house049.xml,32.038,32.038,28.541,28.541,3.497,0.0,0.0,0.0,0.0,0.0,5.888,0.036,0.0,0.0,5.819,0.147,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.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.239,0.0,33.85,4.262,1.306,0.0,0.0,0.0,90.0,4432.3,2181.9,4432.3,12.361,17.634,0.0,1.38,4.471,0.0,0.0,0.0,3.895,-7.574,0.0,0.0,0.0,1.446,-0.075,2.582,0.0,1.809,0.0,0.0,-2.437,-0.44,0.0,1.489,6.503,0.0,0.0,0.0,3.26,15.042,0.0,0.0,0.0,2.984,-0.076,-0.307,-3.541,0.516,0.0,0.0,7.53,1.034,728.6,567.4,7487.2,928.5,0.0,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,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 +house050.xml,51.837,51.837,21.855,21.855,29.983,0.0,0.0,0.0,0.0,0.0,0.0,0.275,0.0,0.0,1.904,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,0.0,16.067,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.694,0.0,5.132,8.572,0.0,0.0,0.0,0.0,0.0,1156.7,2604.3,2604.3,11.114,15.388,0.0,4.133,6.508,0.0,0.0,2.031,5.644,-4.221,0.0,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.921,-10.283,-1.232,0.0,-0.288,-0.312,0.0,0.0,-0.391,-0.567,4.041,0.0,0.0,-0.956,0.0,-0.123,-0.557,-1.219,-0.76,0.0,0.568,5.253,0.551,1689.0,437.0,10674.9,2994.2,0.0,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,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 From 5b71f1412d78f6ded93a843890e32f29f374dd71 Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Tue, 25 Jul 2023 15:33:30 -0600 Subject: [PATCH 072/217] try2 --- HPXMLtoOpenStudio/resources/g_functions/util.rb | 9 ++++++++- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/HPXMLtoOpenStudio/resources/g_functions/util.rb b/HPXMLtoOpenStudio/resources/g_functions/util.rb index 037de203b1..7d858b9977 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/util.rb +++ b/HPXMLtoOpenStudio/resources/g_functions/util.rb @@ -19,9 +19,16 @@ def process_g_functions(filepath) end elsif (bore_locations.length > 10) json.delete(key_1) + elsif config_json.include?('LopU') + value_1.each do |key_2, value_2| + bore_locations = value_1[key_2]['bore_locations'] + if (bore_locations.length > 10) + json.delete(key_1) + end + end end else - value_1.each_key do |key_2, value_2| + value_1.each do |key_2, value_2| bore_locations = value_1[key_2]['bore_locations'] if (bore_locations.length>10) json.delete(key_1) diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 8a519040c2..981c015bfd 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -2738,7 +2738,7 @@ def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, fail "Could not find gfnc_coeff from '#{g_functions_filename}'." end - def self.get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb, n_x_m) + def self.get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb, n_x_m) # FIXME: Change all 'n_x_m' to 'm_x_n' g_functions_json.each do |key_1, values_1| next if !n_x_m.nil? && n_x_m != "#{key_1}" From e29ed39023d8cbfb0270e267a31cd74496953dbf Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 25 Jul 2023 21:36:51 +0000 Subject: [PATCH 073/217] Latest results. --- workflow/tests/base_results/results.csv | 991 ++++++++++++------------ 1 file changed, 496 insertions(+), 495 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 529e0c8870..f85f483f0e 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -1,495 +1,496 @@ -HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: 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: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),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 Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),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) -base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,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,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,22.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-portable.xml,34.583,34.583,33.262,33.262,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.604,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,1.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,1.18,0.0,30.514,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.1,9.476,14.236,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.307,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.344,9.575,1.88,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-ief-whole-home.xml,34.611,34.611,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.655,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,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15,0.0,30.49,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2767.0,9.495,14.236,0.0,1.77,1.652,0.0,0.0,0.392,5.039,-4.911,0.0,0.0,0.0,1.312,-0.373,1.058,0.077,0.399,0.0,0.032,-4.78,-0.772,0.0,0.548,-0.009,0.0,0.0,0.206,1.933,17.103,0.0,0.0,0.0,1.819,-0.368,-0.332,-1.9,-0.091,0.0,0.344,9.532,1.875,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-multiple.xml,34.574,34.574,33.184,33.184,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.813,1.88,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.541,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,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.452,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.3,9.552,14.236,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.035,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.344,9.512,1.873,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier.xml,34.548,34.548,33.243,33.243,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.818,1.882,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.593,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.174,0.0,30.467,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.0,9.548,14.236,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.344,9.498,1.87,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.167,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,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,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,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,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,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,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,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,0.0,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,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,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,0.0,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 -base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,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,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,67.293,67.293,40.782,40.782,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,4.921,0.983,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,0.0,26.511,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.831,0.0,16.409,9.18,0.614,0.0,0.0,0.0,0.0,2378.3,3719.8,26.547,20.758,4.552,1.164,5.544,0.518,7.651,0.635,15.399,-16.987,0.0,0.0,0.0,8.521,-0.082,7.083,0.0,0.73,0.0,3.11,-10.232,-3.183,0.005,0.021,-0.566,-0.053,2.687,-0.029,-3.027,17.676,0.0,0.0,0.0,-6.349,-0.075,-1.69,-4.153,-0.166,0.0,0.937,8.933,2.568,1354.8,997.6,11399.6,2521.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38184.0,7494.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18712.0,182.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,37.385,37.385,33.168,33.168,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.236,1.963,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,0.0,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.893,0.0,31.745,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3190.7,13.54,17.969,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.366,9.113,1.789,1354.8,997.6,9989.0,2461.3,0.0,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,22162.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,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,0.0,22.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,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.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,30483.0,4824.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.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,0.0,22.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,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.482,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,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,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,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,0.0,60.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,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.626,36.626,24.815,24.815,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.087,0.0,0.0,1.608,0.207,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,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,0.0,3.054,9.538,0.73,0.0,0.0,0.0,0.0,1572.5,2015.2,7.667,5.819,0.0,2.94,3.649,0.0,0.0,0.582,1.416,-1.582,0.0,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-4.25,-1.186,0.0,-0.922,-0.231,0.0,0.0,-0.054,-0.234,1.305,0.0,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.559,3.423,0.841,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-multiple.xml,31.845,31.845,25.255,25.255,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,2.093,0.314,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,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,0.0,4.965,9.538,0.61,0.0,0.0,0.0,0.0,1562.3,2239.8,9.397,10.552,0.0,-0.004,3.294,0.0,0.0,1.383,4.001,-4.202,0.0,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-6.296,-1.142,0.0,0.0,-0.445,0.0,0.0,-0.418,-0.571,3.958,0.0,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.481,5.704,0.884,1354.8,997.6,11399.5,3156.5,0.0,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,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.799,49.799,24.82,24.82,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,1.466,0.173,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,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,0.0,2.504,9.538,0.818,0.0,0.0,0.0,0.0,1579.9,2256.3,11.078,8.452,0.0,5.364,4.204,0.0,0.0,0.788,1.403,-1.699,0.0,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-4.485,-1.249,0.0,-1.186,-0.054,0.0,0.0,-0.054,-0.122,1.188,0.0,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.528,3.187,0.778,1354.8,997.6,11399.5,3156.5,0.0,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,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.041,26.041,24.679,24.679,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.632,0.213,9.742,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,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,0.0,3.156,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2015.1,3.416,5.821,0.0,0.353,3.152,0.0,0.0,0.376,1.484,-1.49,0.0,0.0,0.375,0.0,-0.006,1.698,0.0,0.0,0.0,0.387,-4.015,-1.12,0.0,-0.831,-0.466,0.0,0.0,-0.076,-0.345,1.397,0.0,0.0,-0.847,0.0,-0.002,-0.394,-0.388,0.0,0.0,0.576,3.657,0.907,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.343,26.343,25.227,25.227,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.109,0.333,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,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,0.0,5.133,9.538,0.587,0.0,0.0,0.0,0.0,1559.4,1834.6,3.707,4.327,0.0,-0.003,3.197,0.0,0.0,0.368,1.519,-1.394,0.0,0.0,-0.002,0.0,-0.063,1.76,0.0,0.0,0.0,0.321,-3.692,-1.021,0.0,-0.001,-0.556,0.0,0.0,-0.044,-0.506,1.493,0.0,0.0,-0.0,0.0,-0.059,-0.532,-0.512,0.0,0.0,0.913,3.98,1.006,1354.8,997.6,11399.5,3156.5,0.0,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,6278.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.841,26.841,26.284,26.284,0.557,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.967,0.547,9.684,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.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,0.514,0.0,8.85,9.538,0.575,0.0,0.0,0.0,0.0,1703.9,1962.7,3.256,6.985,0.0,-0.013,2.505,0.0,0.0,0.42,4.041,-2.559,0.0,0.0,-0.009,0.0,-0.344,0.994,0.0,0.68,0.0,0.0,-4.559,-0.773,0.0,-0.008,-1.074,0.0,0.0,-0.048,-1.702,5.598,0.0,0.0,-0.004,0.0,-0.334,-0.402,-1.335,-0.391,0.0,0.0,7.407,1.254,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 -base-bldgtype-multifamily-residents-1.xml,19.898,19.898,18.595,18.595,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.363,0.394,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,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,0.0,6.696,4.213,0.585,0.0,0.0,0.0,0.0,1104.0,1602.9,3.916,6.507,0.0,-0.014,2.619,0.0,0.0,0.418,4.236,-3.104,0.0,0.0,-0.012,0.0,-0.305,1.3,0.0,0.75,0.0,0.0,-3.826,-0.937,0.0,-0.01,-0.765,0.0,0.0,-0.014,-1.207,5.053,0.0,0.0,-0.007,0.0,-0.297,-0.396,-1.194,-0.272,0.0,0.0,4.803,1.089,817.2,530.6,4779.7,1341.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.394,27.394,26.696,26.696,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.0,3.07,0.825,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1670.4,2088.4,3.455,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.149,28.149,27.404,27.404,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,3.656,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1695.4,2322.2,3.602,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.038,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,8647.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.679,27.679,27.017,27.017,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.346,0.825,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.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.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1680.5,2160.3,3.454,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,32.821,32.821,32.278,32.278,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,8.52,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1940.2,3671.7,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.766,27.766,27.223,27.223,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,3.465,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1688.5,2269.4,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1509.2,1333.8,3.459,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.356,23.356,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1522.4,1334.7,3.605,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.749,22.749,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1534.7,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.28,23.28,22.878,22.878,0.402,0.0,0.0,0.0,0.0,0.0,0.129,0.064,0.0,0.0,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.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1648.9,1334.7,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.303,23.303,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1536.8,1333.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1528.0,1334.7,3.537,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.649,26.649,26.649,26.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.054,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1670.9,2071.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.327,27.327,27.327,27.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.637,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1702.6,2322.2,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922,26.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1681.0,2152.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.964,27.964,27.964,27.964,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.813,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.8,1818.6,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,1354.8,997.6,11399.6,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,3156.5,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.708,32.708,27.342,27.342,5.366,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.574,0.439,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,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,0.0,7.061,9.538,0.588,0.0,0.0,0.0,0.0,1711.5,2147.3,4.167,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,4.308,-3.183,0.0,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-5.414,-0.952,0.0,-0.009,-0.693,0.0,0.0,-0.005,-1.118,4.974,0.0,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,6.564,1.074,1354.8,997.6,11399.5,3156.5,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent.xml,31.03,31.03,27.217,27.217,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,2.492,0.416,9.705,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,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,0.0,6.838,9.538,0.598,0.0,0.0,0.0,0.0,1638.9,2132.2,5.993,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,4.232,-3.684,0.0,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-5.86,-1.052,0.0,-0.008,-0.511,0.0,0.0,-0.01,-0.941,4.473,0.0,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,6.129,0.974,1354.8,997.6,11399.5,3156.5,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-pv.xml,26.899,2.451,26.223,1.775,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.901,30.901,17.531,17.531,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,1052.2,1525.8,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater.xml,29.805,29.805,16.435,16.435,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,999.5,1473.1,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.33,37.33,37.33,37.33,0.0,0.0,0.0,0.0,0.0,0.0,5.334,0.368,0.0,0.0,2.577,1.082,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.879,0.0,13.352,9.232,0.614,2.924,0.0,0.0,0.0,3214.6,2123.0,20.972,15.079,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.095,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.824,8.485,2.01,1354.8,997.6,11413.1,2618.9,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.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,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,0.0,18.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.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,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,0.0,24.587,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1066.9,770.9,9019.2,2069.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,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,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.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,388.3,286.5,3205.6,735.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.67,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,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,0.0,23.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,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,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,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.89,0.0,13.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,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-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,1075.0,777.3,9103.8,2089.0,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.106,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.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.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,472.0,347.5,3998.4,917.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,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,0.0,22.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,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,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,0.0,23.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,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,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,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,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,0.0,22.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,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,17.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,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,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,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,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,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,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,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,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,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,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,0.0,25.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,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7646.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,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,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,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,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,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,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,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,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 -base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.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,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 -base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,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,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,67.648,67.648,29.356,29.356,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.632,0.0,0.0,3.58,0.646,9.367,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,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.866,0.0,10.726,9.342,0.621,0.0,0.0,0.0,0.0,1766.6,3491.4,29.153,20.79,0.0,3.477,3.648,0.0,0.0,0.67,9.92,-12.906,0.0,0.0,29.048,0.0,-0.198,2.052,0.0,0.787,0.0,7.954,-7.487,-1.578,0.0,0.424,-0.063,0.0,0.0,0.096,0.383,10.935,0.0,0.0,-7.934,0.0,-0.193,-0.259,-1.855,-0.085,0.0,2.655,5.717,1.069,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,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,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,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,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,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,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,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,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,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,22.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,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,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,22.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,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,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,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,40.753,40.753,29.446,29.446,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.84,0.724,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,0.0,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,11.955,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2605.0,13.185,12.044,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.304,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.076,6.354,1.189,1354.8,997.6,11399.6,3013.0,0.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,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 -base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,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,22.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,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,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,0.0,40.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,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.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,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,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,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,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,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,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,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,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-ambient.xml,48.007,48.007,30.285,30.285,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.292,0.0,0.0,4.61,0.898,9.354,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,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.601,0.0,15.077,9.342,0.606,0.0,0.0,0.0,2.0,1740.7,3397.3,20.514,21.089,0.0,3.835,3.846,0.0,0.0,0.76,10.831,-11.429,0.0,0.0,10.226,0.0,-0.403,2.065,0.0,0.789,0.0,3.979,-6.811,-1.44,0.0,-0.046,-0.527,0.0,0.0,0.028,-0.75,12.412,0.0,0.0,-3.67,0.0,-0.396,-0.402,-2.391,-0.154,0.0,3.577,6.38,1.207,1354.8,997.6,11399.5,2808.9,0.0,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,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,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,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 -base-foundation-belly-wing-no-skirt.xml,49.694,49.694,29.445,29.445,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,3.895,0.731,9.354,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,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.964,0.0,12.009,9.342,0.607,0.0,0.0,0.0,0.0,1753.6,3211.6,24.176,17.286,0.0,3.981,5.371,0.0,0.0,0.753,8.835,-11.05,0.0,0.0,10.267,0.0,-0.35,2.069,0.0,0.794,0.0,6.238,-6.883,-1.459,0.0,0.302,-0.601,0.0,0.0,0.038,-0.188,9.522,0.0,0.0,-3.443,0.0,-0.343,-0.395,-2.184,-0.144,0.0,2.215,6.308,1.188,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-belly-wing-skirt.xml,49.322,49.322,29.453,29.453,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.328,0.0,0.0,3.906,0.734,9.354,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,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.608,0.0,12.062,9.342,0.607,0.0,0.0,0.0,0.0,1752.3,3180.5,24.023,17.245,0.0,3.987,5.379,0.0,0.0,0.753,8.843,-11.04,0.0,0.0,9.969,0.0,-0.345,2.068,0.0,0.793,0.0,6.125,-6.873,-1.457,0.0,0.296,-0.61,0.0,0.0,0.036,-0.211,9.532,0.0,0.0,-3.365,0.0,-0.338,-0.399,-2.199,-0.146,0.0,2.221,6.318,1.191,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-complex.xml,78.103,78.103,37.261,37.261,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.674,0.0,0.0,5.116,1.028,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.25,0.0,17.361,9.233,0.617,0.0,0.0,0.0,2.0,2171.5,3845.1,33.417,21.451,0.0,3.431,3.657,0.52,19.54,0.65,10.564,-12.717,0.0,0.0,0.0,8.705,-0.111,6.102,0.0,0.739,0.0,8.38,-9.124,-2.557,0.0,0.048,-0.359,-0.044,3.767,-0.003,-1.508,11.564,0.0,0.0,0.0,-4.519,-0.103,-1.227,-3.259,-0.137,0.0,3.71,7.657,1.952,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation-full.xml,56.087,56.087,36.482,36.482,19.605,0.0,0.0,0.0,0.0,0.0,0.0,0.323,0.0,0.0,4.774,0.947,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,19.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,18.357,0.0,15.998,9.233,0.612,0.0,0.0,0.0,0.0,2130.6,3496.4,22.309,19.66,0.0,3.624,3.695,0.52,8.197,0.641,10.668,-12.534,0.0,0.0,0.0,4.773,-0.061,4.839,0.0,0.733,0.0,4.319,-8.893,-2.498,0.0,-0.098,-0.497,-0.057,2.177,-0.036,-2.054,11.749,0.0,0.0,0.0,-3.7,-0.055,-1.187,-3.277,-0.169,0.0,3.465,7.883,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,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,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,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,0.0,18.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,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 -base-foundation-multiple.xml,42.738,42.738,29.706,29.706,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.218,0.812,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,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,0.0,13.443,9.285,0.693,0.0,0.0,0.0,0.0,1723.6,2714.9,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,10.857,-11.246,0.0,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-4.636,-1.429,0.0,-0.098,-0.674,0.0,0.0,-0.018,-1.077,12.595,0.0,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.65,4.23,1.218,1354.8,997.6,11399.4,2706.9,0.0,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,14275.0,222.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-slab.xml,39.954,39.954,29.299,29.299,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.9,0.74,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,0.0,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.972,0.0,12.215,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2611.5,12.703,12.011,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.078,6.379,1.193,1354.8,997.6,11399.5,2808.9,0.0,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,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-above-grade.xml,43.94,43.94,29.852,29.852,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.308,0.833,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,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,0.0,13.834,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.0,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,10.912,-11.281,0.0,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.069,12.56,0.0,0.0,-0.506,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.93,4.211,1.213,1354.8,997.6,11399.5,2706.9,0.0,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,14270.0,226.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-assembly-r.xml,41.196,41.196,29.243,29.243,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.197,0.0,0.0,3.847,0.722,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,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,0.0,11.864,9.285,0.71,0.0,0.0,0.0,0.0,1718.3,2855.2,14.652,12.883,0.0,3.994,3.856,0.0,0.0,0.759,10.855,-11.125,0.0,0.0,4.456,0.0,-0.343,2.583,0.0,0.0,0.0,1.82,-4.614,-1.421,0.0,-0.074,-0.626,0.0,0.0,0.009,-1.062,12.715,0.0,0.0,-2.011,0.0,-0.339,-0.564,-2.512,0.0,0.0,1.12,4.251,1.226,1354.8,997.6,11399.5,2706.9,0.0,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,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-wall-insulation.xml,48.948,48.948,28.952,28.952,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.558,0.653,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,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,0.0,10.743,9.285,0.64,0.0,0.0,0.0,0.0,1726.7,2483.3,16.597,11.56,0.0,3.723,3.619,0.0,0.0,0.633,9.712,-12.351,0.0,0.0,14.373,0.0,-0.047,2.46,0.0,0.0,0.0,2.599,-4.778,-1.481,0.0,0.063,-0.441,0.0,0.0,-0.015,-0.972,11.49,0.0,0.0,-2.769,0.0,-0.045,-0.521,-2.405,0.0,0.0,1.302,4.088,1.166,1354.8,997.6,11399.5,2706.9,0.0,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,15218.0,128.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement.xml,42.817,42.817,29.736,29.736,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,4.234,0.816,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,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,0.0,13.513,9.285,0.703,0.0,0.0,0.0,0.0,1723.8,2921.5,15.45,14.318,0.0,3.994,3.853,0.0,0.0,0.749,10.805,-11.235,0.0,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-4.634,-1.429,0.0,-0.077,-0.629,0.0,0.0,-0.0,-1.111,12.605,0.0,0.0,-0.673,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.724,4.231,1.218,1354.8,997.6,11399.5,2706.9,0.0,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,14277.0,222.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,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,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,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,2808.9,0.0,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,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,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,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,2808.9,0.0,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,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-walkout-basement.xml,64.814,64.814,36.328,36.328,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,4.532,0.884,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,0.0,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.677,0.0,14.89,9.233,0.615,0.0,0.0,0.0,0.0,2125.9,3513.1,26.787,19.805,0.0,3.523,3.688,0.52,7.364,0.646,11.292,-12.794,0.0,0.0,0.0,10.155,-0.066,6.639,0.0,0.728,0.0,6.073,-8.935,-2.506,0.0,-0.099,-0.515,-0.06,1.48,-0.031,-2.074,12.046,0.0,0.0,0.0,-3.677,-0.061,-1.529,-3.357,-0.16,0.0,3.264,7.844,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,0.0,15.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.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,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,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.645,42.645,42.645,42.645,0.0,0.0,0.0,0.0,0.0,0.0,9.823,1.762,0.591,0.052,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,0.0,23.588,0.643,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7296.6,1637.3,25.567,0.0,0.0,3.452,3.637,0.512,7.485,0.629,10.516,-12.551,0.0,0.0,0.0,8.112,-0.066,4.805,0.0,0.728,0.0,7.372,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.145,46.145,46.145,46.145,0.0,0.0,0.0,0.0,0.0,0.0,9.718,1.011,0.443,0.024,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.466,13.102,9.233,0.614,0.0,0.0,0.0,0.0,6954.5,3209.9,24.358,15.771,0.0,3.499,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.018,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,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,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,0.0,21.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.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,0.0,25971.0,25971.0,11194.0,51.62,90.68,11194.0,4365.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.698,44.698,44.698,44.698,0.0,0.0,0.0,0.0,0.0,0.0,9.125,0.912,0.046,0.006,3.198,0.971,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.362,0.052,11.97,9.233,0.614,0.0,0.0,0.0,0.0,6628.4,2912.2,22.625,13.15,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.864,-8.907,-2.499,0.0,0.037,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.05,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65908.0,65908.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,24186.0,24186.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.554,41.554,41.554,41.554,0.0,0.0,0.0,0.0,0.0,0.0,7.131,0.629,0.416,0.017,2.294,0.626,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.433,13.325,9.233,0.614,0.0,0.0,0.0,0.0,6922.4,2762.7,24.33,16.718,0.0,3.453,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.249,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.431,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33416.0,33416.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.544,40.544,40.544,40.544,0.0,0.0,0.0,0.0,0.0,0.0,6.849,0.507,0.049,0.005,2.124,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.035,0.054,12.091,9.233,0.614,0.0,0.0,0.0,0.0,6732.2,2521.0,23.383,13.585,0.0,3.588,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.557,-8.907,-2.499,0.0,0.034,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.172,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65567.0,65567.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.171,51.171,37.619,37.619,13.551,0.0,0.0,0.0,0.0,0.0,4.154,0.37,0.0,0.138,2.31,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.722,11.262,14.452,9.233,0.615,0.0,0.0,2.0,0.0,3194.1,2672.7,23.547,17.679,0.0,3.375,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.35,-8.918,-2.502,0.0,-0.058,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.697,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,23640.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.458,54.458,37.825,37.825,16.632,0.0,0.0,0.0,0.0,0.0,4.006,0.353,0.0,0.501,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,28.514,13.807,14.556,9.233,0.614,0.0,0.0,2.0,0.0,3328.2,2622.0,30.614,17.514,0.0,3.251,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.289,-0.061,4.804,0.0,0.728,0.0,12.284,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.063,-0.165,0.0,3.704,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,32235.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,26367.0,26367.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.158,41.158,41.158,41.158,0.0,0.0,0.0,0.0,0.0,0.0,7.314,0.748,0.123,0.008,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.792,0.131,14.556,9.233,0.614,0.0,0.0,0.0,0.0,7031.0,2622.0,24.672,17.514,0.0,3.37,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.48,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.703,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.898,40.898,40.898,40.898,0.0,0.0,0.0,0.0,0.0,0.0,7.281,0.641,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.771,0.057,13.49,9.233,0.614,0.0,0.0,0.0,0.0,6896.7,2561.9,23.811,16.273,0.0,3.447,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.401,-8.907,-2.499,0.0,-0.02,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.608,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,50423.0,50423.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-elec-only.xml,48.203,48.203,48.203,48.203,0.0,0.0,0.0,0.0,0.0,0.0,17.594,0.191,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.2,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.331,55.331,36.429,36.429,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2096.7,3330.0,16.459,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-only.xml,49.354,49.354,30.642,30.642,18.712,0.0,0.0,0.0,0.0,0.0,0.0,0.224,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,18.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2057.9,1637.3,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20155.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,0.0,17.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.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20283.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.538,48.538,48.538,48.538,0.0,0.0,0.0,0.0,0.0,0.0,9.911,1.779,0.593,0.052,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.645,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7326.8,3330.1,25.567,17.819,0.0,3.446,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.439,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,19922.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-evap-cooler-furnace-gas.xml,56.319,56.319,32.044,32.044,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,0.0,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,1915.1,25.1,11.075,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,13458.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-elec-only.xml,53.605,53.605,53.605,53.605,0.0,0.0,0.0,0.0,0.0,0.0,22.563,0.625,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,0.0,22.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8622.9,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.875,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2124.3,2947.8,24.237,18.493,0.0,3.51,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.863,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20155.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20283.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.248,34.248,34.248,34.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.895,0.867,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.692,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2851.9,0.0,17.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.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.15,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.793,36.793,36.793,36.793,0.0,0.0,0.0,0.0,0.0,0.0,5.562,0.814,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,0.0,21.117,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3411.0,1637.3,23.44,0.0,0.0,3.549,3.636,0.512,7.483,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.833,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.933,39.933,39.933,39.933,0.0,0.0,0.0,0.0,0.0,0.0,5.492,0.686,0.0,0.0,2.507,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.116,0.0,13.27,9.233,0.614,0.0,0.0,0.0,0.0,3358.9,2541.2,22.968,15.706,0.0,3.552,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.667,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.379,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,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,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,19866.0,19866.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.91,38.91,38.91,38.91,0.0,0.0,0.0,0.0,0.0,0.0,5.84,0.317,0.073,0.002,2.16,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,0.0,19.98,0.075,12.245,9.233,0.614,0.0,0.0,0.0,0.0,4268.2,2191.0,19.501,13.372,0.0,3.593,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.501,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.402,38.402,38.402,38.402,0.0,0.0,0.0,0.0,0.0,0.0,5.406,0.268,0.0,0.0,2.213,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.045,0.0,11.734,9.233,0.614,0.0,0.0,0.0,0.0,3640.7,2214.0,19.188,12.558,0.0,3.624,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.54,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.818,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,41843.0,41843.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.75,37.75,37.75,37.75,0.0,0.0,0.0,0.0,0.0,0.0,5.078,0.102,0.042,0.0,2.06,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.042,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3682.6,2120.6,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.614,35.614,0.0,12.321,0.0,0.0,0.0,0.0,3.012,0.092,0.0,0.0,2.043,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.658,7.393,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2846.2,2123.8,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,49.605,49.605,42.912,42.912,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.191,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2614.2,3427.5,16.894,14.883,0.0,2.873,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.449,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,0.0,31430.0,27561.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-stove-oil-only.xml,52.275,52.275,30.519,30.519,0.0,21.756,0.0,0.0,0.0,0.0,0.0,0.1,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,21.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.5,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize.xml,59.984,59.984,36.217,36.217,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.324,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2126.9,3189.8,24.296,18.003,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.91,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,19922.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,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,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,24.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,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,19.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.93,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.276,11.122,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.391,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.179,15.2,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.043,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.535,15.233,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.757,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,26.265,15.615,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,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,0.0,47.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,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,71259.0,33168.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,28612.0,4972.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34496.0,10856.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32660.0,9020.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,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,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,0.0,14.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.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fixed-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,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,0.0,26.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,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,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,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,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,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,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-borefield-configuration.xml,39.547,39.547,39.547,39.547,0.0,0.0,0.0,0.0,0.0,0.0,5.239,0.361,0.0,0.0,2.477,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.538,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3210.2,2594.4,20.925,14.708,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.046,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-count.xml,39.549,39.549,39.549,39.549,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.361,0.0,0.0,2.475,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3211.0,2581.1,20.927,14.697,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.047,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-diameter.xml,39.554,39.554,39.554,39.554,0.0,0.0,0.0,0.0,0.0,0.0,5.248,0.362,0.0,0.0,2.474,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.2,2583.0,20.879,14.701,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-length.xml,39.502,39.502,39.502,39.502,0.0,0.0,0.0,0.0,0.0,0.0,5.23,0.359,0.0,0.0,2.446,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.531,0.0,12.672,9.233,0.614,0.0,0.0,0.0,0.0,3202.1,2567.5,20.83,14.681,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.039,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-spacing.xml,39.494,39.494,39.494,39.494,0.0,0.0,0.0,0.0,0.0,0.0,5.227,0.359,0.0,0.0,2.441,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.53,0.0,12.672,9.233,0.614,0.0,0.0,0.0,0.0,3200.5,2567.2,20.821,14.681,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.037,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.759,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-ground-diffusivity.xml,39.564,39.564,39.564,39.564,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.362,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3214.1,2584.5,20.886,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-grout-conductivity.xml,39.552,39.552,39.552,39.552,0.0,0.0,0.0,0.0,0.0,0.0,5.249,0.362,0.0,0.0,2.471,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3212.6,2577.4,20.87,14.693,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-loop-flow.xml,39.565,39.565,39.565,39.565,0.0,0.0,0.0,0.0,0.0,0.0,5.254,0.363,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3210.4,2582.7,20.87,14.7,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-conductivity.xml,39.542,39.542,39.542,39.542,0.0,0.0,0.0,0.0,0.0,0.0,5.245,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.3,2577.1,20.864,14.693,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.762,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-diameter.xml,39.539,39.539,39.539,39.539,0.0,0.0,0.0,0.0,0.0,0.0,5.241,0.361,0.0,0.0,2.468,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.538,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3208.7,2572.8,20.907,14.686,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.046,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.511,39.511,39.511,39.511,0.0,0.0,0.0,0.0,0.0,0.0,5.234,0.36,0.0,0.0,2.45,1.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.533,0.0,12.673,9.233,0.614,0.0,0.0,0.0,0.0,3204.7,2568.5,20.838,14.682,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.041,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop.xml,39.08,39.08,39.08,39.08,0.0,0.0,0.0,0.0,0.0,0.0,5.08,0.34,0.0,0.0,2.219,1.001,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.439,0.0,12.644,9.233,0.614,0.0,0.0,0.0,0.0,3122.8,2459.5,20.484,14.586,0.0,3.61,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.944,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.732,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.794,33.794,33.794,33.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.534,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.0,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.643,36.643,36.643,36.643,0.0,0.0,0.0,0.0,0.0,0.0,5.449,0.777,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,0.0,20.372,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3362.4,1637.3,22.29,0.0,0.0,3.576,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.067,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.1,2577.8,20.865,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.358,41.358,41.358,41.358,0.0,0.0,0.0,0.0,0.0,0.0,6.658,0.379,0.0,0.0,2.92,0.961,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.424,0.0,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3442.3,2724.4,21.792,15.702,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.955,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.235,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-library-test-case.xml,39.021,39.021,39.021,39.021,0.0,0.0,0.0,0.0,0.0,0.0,5.056,0.337,0.0,0.0,2.19,0.998,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.426,0.0,12.642,9.233,0.614,0.0,0.0,0.0,0.0,3117.3,2452.1,20.464,14.58,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.931,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.73,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,0.0,12.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,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,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,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,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,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,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,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.293,66.293,51.861,51.861,7.155,3.599,3.679,0.0,0.0,0.0,13.641,0.858,0.197,0.008,6.164,0.552,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.667,0.205,18.96,9.233,0.615,0.0,0.0,0.0,3.0,6379.1,4054.4,37.469,22.828,0.0,3.418,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.265,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.235,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.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,1354.8,997.6,8540.6,2104.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 -base-hvac-portable-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,0.0,3.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.01,-0.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,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,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,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,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,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,0.0,0.0,0.0,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,56.19,56.19,35.529,35.529,20.661,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,3.959,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,20.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,19.378,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2961.2,20.444,15.145,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.888,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,28898.0,18434.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,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,0.0,15.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,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,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,0.0,22.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,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-kwh-per-year.xml,60.469,60.469,39.553,39.553,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.535,0.889,9.163,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.996,9.233,0.613,0.0,0.0,0.0,0.0,2416.3,3795.3,22.788,18.414,0.0,3.575,3.655,0.514,7.569,0.633,10.56,-12.521,0.0,0.0,0.0,8.359,-0.067,4.811,0.0,0.729,0.0,4.568,-8.891,-4.249,0.0,-0.085,-0.489,-0.055,2.612,-0.033,-2.015,11.745,0.0,0.0,0.0,-6.471,-0.063,-1.192,-3.199,-0.169,0.0,3.277,7.886,3.428,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,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,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,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,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 -base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,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,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,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,2719.3,0.0,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,15107.0,1151.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 -base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,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.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,1354.8,997.6,10580.5,2607.1,0.0,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,13718.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 -base-location-dallas-tx.xml,34.353,34.353,32.588,32.588,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.767,1.868,6.814,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,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,0.0,30.193,6.675,0.573,0.0,0.0,0.0,0.0,2014.4,2771.1,9.706,14.235,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.343,9.5,1.888,1354.8,997.6,9989.0,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-location-duluth-mn.xml,70.96,70.96,29.786,29.786,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,2.265,0.329,11.623,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,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,0.0,5.222,11.597,0.833,0.0,0.0,0.0,0.0,1760.4,2414.3,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,19.994,-13.274,0.0,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-6.293,-1.93,0.0,-0.435,-0.782,0.0,0.0,-0.099,-1.383,7.876,0.0,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.334,2.573,0.717,1354.8,997.6,12167.9,2889.4,0.0,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,11642.0,149.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 -base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,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,0.0,42.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,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 -base-location-honolulu-hi.xml,36.199,36.199,36.199,36.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.218,3.035,4.816,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,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,2132.0,2154.5,0.0,13.168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,13.134,2.647,1354.8,997.6,8540.5,2104.4,0.0,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,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 -base-location-miami-fl.xml,35.353,35.353,35.353,35.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.444,2.83,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,0.0,0.0,45.97,4.712,0.551,0.0,0.0,0.0,0.0,2104.8,2424.8,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,0.0,0.0,0.0,1.006,0.575,0.0,0.0,0.304,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,13.135,2.647,1354.8,997.6,8625.1,2125.3,0.0,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,13318.0,-219.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 -base-location-phoenix-az.xml,38.434,38.434,38.433,38.433,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.029,3.092,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.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,0.0,51.765,4.955,0.556,0.0,0.0,0.0,0.0,2368.2,3386.4,0.593,17.634,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,11.511,2.368,1354.8,997.6,8429.2,2077.0,0.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,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 -base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,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,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,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,1354.8,997.6,11239.5,2769.4,0.0,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,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 -base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,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,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,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,0.0,24.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,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.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.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,0.0,0.0,11.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.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,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,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,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,63.835,44.385,31.488,12.038,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,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.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,3.08,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-emissions.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,16.505,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.981,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 -base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,24.753,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-round-trip-efficiency.xml,60.69,33.803,37.859,10.972,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.909,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,6.706,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-scheduled.xml,60.483,33.596,37.652,10.766,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,6.873,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery-scheduled.xml,77.483,42.407,37.652,2.576,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,24.473,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery.xml,76.584,41.509,36.754,1.678,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.804,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,90.778,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,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,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,1.915,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps-power-outage.xml,33.64,33.64,28.659,28.659,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.082,0.0,0.0,3.199,0.556,7.442,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,9.408,7.426,0.561,0.0,0.0,0.5,0.5,9398.1,10416.5,41.812,21.425,0.0,2.585,2.431,0.339,4.203,0.328,6.833,-12.363,0.0,0.0,0.0,3.542,-0.105,3.354,0.0,0.382,0.0,1.039,-6.567,-1.596,0.0,-0.232,-0.587,-0.07,2.391,-0.062,-2.309,11.863,0.0,0.0,0.0,-7.603,-0.059,-1.378,-4.919,-0.21,0.0,2.269,8.448,2.023,1141.2,883.5,9401.7,2157.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps.xml,42.676,42.676,34.392,34.392,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.137,0.0,0.0,3.211,0.559,9.199,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.756,0.0,9.457,9.21,0.671,0.0,0.0,0.0,0.5,9394.7,10419.5,31.982,21.427,0.0,2.889,2.782,0.39,5.331,0.415,7.871,-12.359,0.0,0.0,0.0,5.381,-0.059,3.834,0.0,0.578,0.0,1.776,-8.861,-2.486,0.0,-0.236,-0.59,-0.07,2.395,-0.063,-2.32,11.863,0.0,0.0,0.0,-7.535,-0.058,-1.38,-4.931,-0.211,0.0,2.279,8.448,2.023,1354.7,998.0,11490.9,2636.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,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,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,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,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,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,0.0,22.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,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,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,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,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,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,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,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,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -house001.xml,86.453,86.453,46.944,46.944,39.508,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.684,4.394,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,0.0,22.462,0.0,17.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.215,0.0,49.863,10.416,2.681,0.0,0.0,0.0,0.0,1853.4,6417.7,37.576,40.427,0.492,1.982,7.189,0.419,0.0,0.959,7.577,-4.942,0.0,0.0,0.438,1.255,-0.262,4.293,0.0,5.152,0.0,3.214,-6.762,-2.935,0.562,1.981,3.785,0.305,0.0,0.258,0.298,11.575,0.0,0.0,0.573,6.821,-0.248,-0.42,-1.413,-0.757,0.0,10.696,11.588,4.446,2104.5,2144.0,14468.8,4385.1,0.0,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,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 -house002.xml,67.263,67.263,39.818,39.818,27.444,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.726,3.409,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,0.0,13.958,0.0,13.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.316,0.0,39.308,7.526,2.891,0.0,0.0,0.0,0.0,1554.0,4934.4,23.891,28.399,0.0,2.53,5.051,0.0,0.0,0.85,5.996,-4.053,0.0,0.0,0.0,1.759,-0.146,1.573,0.0,3.789,0.0,1.372,-5.071,-2.493,0.0,3.082,2.762,0.0,0.0,0.396,-0.488,8.601,0.0,0.0,0.0,8.468,-0.14,-0.182,-1.052,-0.638,0.0,5.863,8.93,3.888,1610.9,1574.7,9989.4,3520.4,0.0,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,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 -house003.xml,68.642,68.642,40.063,40.063,28.579,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.737,3.543,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,0.0,15.333,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.0,40.757,7.526,2.691,0.0,0.0,0.0,0.0,1632.4,5147.9,26.295,31.384,0.648,2.781,4.656,0.0,0.0,0.985,6.674,-3.929,0.0,0.0,0.0,1.074,-0.164,1.988,0.0,3.937,0.0,1.615,-5.293,-2.701,0.794,3.047,2.594,0.0,0.0,0.624,-0.264,9.905,0.0,0.0,0.0,6.53,-0.157,-0.218,-1.094,-0.633,0.0,6.453,9.189,4.174,1610.9,1574.7,9989.3,3520.4,0.0,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,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 -house004.xml,136.271,136.271,75.306,75.306,60.965,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,28.978,9.455,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,0.0,44.816,0.0,16.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.241,0.0,107.036,8.985,3.511,0.0,0.0,0.0,101.0,3061.1,7371.4,54.694,50.188,0.128,5.535,11.395,0.0,0.0,1.249,14.009,-5.986,0.0,0.0,0.0,3.226,-0.721,4.938,0.0,6.279,0.0,7.107,-7.297,-3.933,0.199,6.756,11.661,0.0,0.0,0.524,5.468,17.456,0.0,0.0,0.0,18.954,-0.708,1.03,0.0,1.86,0.0,21.407,15.06,7.63,1857.7,1859.3,12228.9,3983.9,0.0,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,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 -house005.xml,95.118,95.118,53.277,53.277,41.841,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.27,5.149,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,0.0,26.64,0.0,15.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,21.604,0.0,59.527,8.985,2.731,0.0,0.0,0.0,0.0,2076.0,7519.1,45.933,50.952,0.0,3.02,8.096,0.267,0.0,1.336,10.048,-6.655,0.0,0.0,0.37,1.253,-0.336,5.037,0.0,5.077,0.0,4.386,-6.862,-3.637,0.0,2.987,4.342,0.212,0.0,0.297,0.319,15.402,0.0,0.0,0.447,7.536,-0.319,-0.49,-1.768,-0.737,0.0,14.474,11.523,5.518,1857.7,1859.4,12229.0,3983.9,0.0,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,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 -house006.xml,139.365,139.365,31.78,31.78,107.585,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.951,0.34,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,0.0,81.738,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,78.691,0.0,7.8,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2441.9,40.506,14.727,0.0,4.261,22.283,1.991,37.119,1.868,17.963,-9.449,0.0,0.0,0.0,9.284,-0.313,9.523,0.0,4.368,0.0,0.0,-14.567,-6.452,0.0,0.174,-0.793,-0.044,2.801,-0.086,-0.887,4.262,0.0,0.0,0.0,-3.89,-0.313,-0.514,-0.614,-0.075,0.0,0.0,5.649,2.235,1610.9,1574.7,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 -house007.xml,138.83,138.83,33.914,33.914,104.916,0.0,0.0,0.0,0.0,0.0,0.0,1.632,0.0,0.0,2.54,0.396,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,0.0,75.248,0.0,23.282,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,70.851,0.0,5.753,15.632,3.269,0.0,0.0,0.0,0.0,2192.0,2562.1,39.678,13.27,0.0,4.719,23.705,4.446,10.133,1.504,19.077,-9.362,0.0,0.0,0.077,11.566,-0.343,6.119,0.0,20.834,0.0,2.867,-17.238,-7.765,0.0,0.197,-0.722,-0.06,0.577,-0.049,-0.553,4.531,0.0,0.0,-0.009,-4.0,-0.339,-0.191,-0.585,-1.888,0.0,0.104,6.303,2.533,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 -house008.xml,183.501,183.501,39.139,39.139,144.362,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.556,0.53,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,0.0,110.924,0.0,26.378,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,104.521,0.0,9.981,18.129,3.214,0.0,0.0,0.0,0.0,2473.2,3287.8,54.741,19.298,0.0,7.23,27.419,4.689,24.238,1.181,22.401,-7.862,0.0,0.0,1.235,17.867,-0.356,18.326,0.0,6.386,0.0,7.825,-18.694,-8.197,0.0,0.294,-1.11,-0.063,1.637,-0.086,-1.372,5.318,0.0,0.0,-0.1,-2.732,-0.356,-0.983,-0.682,-0.282,0.0,0.528,7.259,2.809,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 -house009.xml,154.293,154.293,33.983,33.983,120.31,0.0,0.0,0.0,0.0,0.0,0.0,2.035,0.0,0.0,2.375,0.286,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,0.0,90.634,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,85.401,0.0,5.187,15.632,3.276,0.0,0.0,0.0,0.0,2227.1,2605.9,44.161,13.902,0.0,5.098,28.389,4.31,13.07,2.257,19.625,-8.244,0.0,0.0,0.266,15.661,-0.329,8.731,0.0,21.443,0.0,0.0,-17.529,-7.88,0.0,0.238,-0.711,-0.038,0.753,-0.078,-0.78,4.49,0.0,0.0,-0.028,-4.065,-0.325,-0.258,-0.521,-1.794,0.0,0.0,5.992,2.391,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 -house010.xml,153.796,153.796,37.549,37.549,116.246,0.0,0.0,0.0,0.0,0.0,0.0,1.86,0.0,0.0,2.896,0.273,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,0.0,82.81,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,78.033,0.0,7.28,18.129,3.214,0.0,0.0,0.0,0.0,2409.0,2810.7,45.27,15.353,0.875,4.93,25.457,4.901,9.774,1.256,23.582,-9.227,0.0,0.0,0.906,11.41,-0.365,19.566,0.0,6.402,0.0,4.869,-18.715,-8.186,0.023,0.211,-0.764,-0.099,0.558,-0.073,-1.356,5.066,0.0,0.0,-0.046,-4.161,-0.362,-1.021,-0.677,-0.269,0.0,0.334,7.219,2.8,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 -house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,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,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,0.0,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,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 -house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,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,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,0.0,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,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 -house013.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,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,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,3131.8,0.0,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,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 -house015.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house016.xml,61.263,61.263,39.85,39.85,0.0,0.0,21.413,0.0,0.0,0.0,7.562,0.538,0.161,0.004,3.068,1.038,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.225,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.35,0.164,12.001,10.478,0.0,0.0,0.0,1.0,16.0,7459.2,3559.3,42.956,19.008,0.0,4.428,10.851,0.619,5.712,0.298,7.395,-8.024,0.0,0.0,0.0,6.777,-0.02,5.735,0.0,3.86,0.0,0.0,-8.634,-4.768,0.0,-0.362,-0.889,-0.023,2.899,-0.047,-0.596,12.366,0.0,0.0,0.0,-8.869,-0.022,-1.375,-1.189,-1.027,0.0,0.0,7.78,3.838,1759.0,1745.5,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 -house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,0.0,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 -house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,0.0,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,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2606.0,1095.0,711.0,800.0 -house019.xml,129.831,129.831,51.94,51.94,77.891,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.257,3.783,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.116,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.065,0.0,44.56,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6497.7,84.656,46.058,0.0,11.387,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.955,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.944,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,0.0,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 -house020.xml,116.979,116.979,56.877,56.877,0.0,0.0,60.102,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.245,2.923,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.965,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.971,0.0,34.513,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6618.4,31.034,32.534,0.91,11.02,10.576,1.133,9.807,0.632,14.612,-15.405,0.0,0.0,0.0,7.524,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.24,0.116,0.176,0.053,6.39,0.012,-1.763,21.501,0.0,0.0,0.0,-6.709,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,0.0,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 -house021.xml,156.416,156.416,48.605,48.605,107.811,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.488,1.582,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.77,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,18.993,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4771.0,81.115,23.848,0.0,8.272,27.058,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.315,26.613,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.008,-0.864,0.005,2.201,-0.093,-1.709,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.322,8.889,3.787,1759.0,1745.5,13752.0,4620.1,0.0,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 -house022.xml,137.518,137.518,48.884,48.884,0.0,88.635,0.0,0.0,0.0,0.0,0.0,2.204,0.0,0.0,8.878,0.897,12.47,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,88.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.755,0.0,19.669,10.989,1.479,0.0,0.0,184.0,126.0,2989.1,5375.4,90.672,27.64,3.697,3.766,20.67,0.0,0.0,1.489,16.102,-13.284,0.0,0.0,14.728,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.522,0.0,0.0,-0.127,-0.987,12.096,0.0,0.0,1.908,0.0,-0.281,-2.742,-0.645,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,0.0,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 -house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 -house024.xml,129.181,129.181,44.059,44.059,0.0,85.122,0.0,0.0,0.0,0.0,0.0,2.117,0.0,0.0,5.375,0.691,16.753,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.176,0.0,16.013,14.653,2.088,0.0,0.0,0.0,0.0,2750.5,3528.1,72.024,17.577,0.0,7.189,30.113,0.0,0.0,0.682,6.988,-7.991,0.0,0.0,5.221,0.0,-0.109,25.401,0.0,1.837,0.0,11.726,-8.633,-2.537,0.0,0.564,1.148,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.499,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.853,5.531,1.379,2176.1,2226.5,14983.5,4452.7,0.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,21856.0,1377.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7041.0,2605.0,3636.0,800.0 -house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,0.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,32212.0,8765.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 -house026.xml,57.14,57.14,24.857,24.857,32.282,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,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,0.0,18.136,0.0,14.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,13.896,0.0,0.0,8.607,2.082,0.0,0.0,0.0,0.0,1554.0,1299.3,17.371,0.0,0.0,1.761,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.103,0.0,-0.058,2.488,0.0,3.127,0.0,0.0,-6.707,-3.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,1294.8,1282.2,8578.8,3023.3,0.0,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 -house027.xml,72.753,72.753,31.736,31.736,41.016,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,7.874,1.017,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,0.0,20.065,0.0,17.882,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.901,0.0,23.04,8.564,5.232,0.0,0.0,0.0,0.0,1580.0,3622.8,24.052,22.72,0.716,1.776,7.887,0.452,0.0,0.591,5.247,-4.028,0.0,0.0,0.376,3.336,-0.14,1.745,0.0,10.425,0.0,2.046,-8.79,-2.845,0.489,1.124,0.653,0.056,0.0,-0.113,-0.286,5.628,0.0,0.0,0.105,3.836,-0.14,-0.365,-0.966,-3.474,0.0,2.595,10.728,3.102,1610.9,1574.7,10579.5,3728.4,0.0,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 -house028.xml,67.831,67.831,29.68,29.68,38.15,0.0,0.0,0.0,0.0,0.0,0.0,0.259,0.0,0.0,7.107,1.515,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,0.0,13.643,0.0,18.121,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.812,0.0,22.735,10.226,3.62,0.0,0.0,0.0,0.0,1517.3,3323.9,20.023,21.223,0.769,1.663,7.049,0.35,0.0,0.432,5.505,-3.79,0.0,0.0,0.236,2.464,-0.05,4.039,0.0,4.464,0.0,1.543,-9.08,-2.901,0.607,1.232,-0.581,0.098,0.0,0.066,-0.712,6.39,0.0,0.0,0.069,1.838,-0.051,-1.081,-1.198,-1.645,0.0,2.913,11.527,3.237,1857.7,1859.4,12951.6,4219.3,0.0,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 -house029.xml,77.601,77.601,29.95,29.95,47.651,0.0,0.0,0.0,0.0,0.0,0.0,0.639,0.0,0.0,6.107,0.906,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,0.0,31.987,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,31.653,0.0,13.604,9.614,0.0,0.0,0.0,0.0,0.0,1604.9,3000.4,28.473,13.951,0.0,3.364,14.695,0.392,0.0,0.308,6.693,-6.461,0.0,0.0,6.932,0.0,-0.085,7.292,0.0,7.304,0.0,3.15,-8.377,-3.711,0.0,1.12,-0.859,0.009,0.0,0.053,0.373,5.722,0.0,0.0,-0.449,0.0,-0.08,-0.809,-1.067,-1.536,0.0,1.215,7.168,2.832,1610.9,1574.7,11033.0,3888.2,0.0,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,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 -house030.xml,57.883,57.883,17.189,17.189,0.0,0.0,40.694,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.377,0.0,13.28,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.883,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,15.992,0.0,0.0,1.68,10.216,0.489,1.112,1.049,5.343,-4.368,0.0,0.0,0.0,3.578,-0.04,2.742,0.0,5.694,0.0,0.0,-7.809,-2.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,1066.0,992.8,6763.9,2581.0,0.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 -house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 -house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.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,1341.9,1264.5,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 -house033.xml,106.743,106.743,14.691,14.691,0.0,92.052,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.371,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,48.38,0.0,0.0,19.125,14.564,0.0,0.0,1.0,10.82,-7.637,0.0,0.0,14.706,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.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,0.0,924.8,0.0,3905.6,1188.1,0.0,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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 -house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.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,1759.0,1745.5,10287.1,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 -house035.xml,63.505,63.505,17.521,17.521,45.985,0.0,0.0,0.0,0.0,0.0,0.0,0.809,0.0,0.0,1.742,0.119,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.522,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.706,0.0,2.673,3.92,3.822,0.0,0.0,102.0,0.0,1326.3,1899.4,39.1,9.67,0.367,6.149,10.862,0.0,0.0,0.538,5.863,-7.44,0.0,0.0,7.797,0.0,0.004,13.61,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.579,-1.589,0.0,0.0,-0.082,-1.219,7.322,0.0,0.0,-4.457,0.0,0.009,-2.738,-0.728,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,0.0,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 -house036.xml,82.314,82.314,26.075,26.075,56.239,0.0,0.0,0.0,0.0,0.0,0.0,0.964,0.0,0.0,5.964,1.051,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.77,0.0,17.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.868,0.0,15.005,8.219,5.837,0.0,0.0,102.0,126.0,1461.8,3231.3,31.799,17.329,5.544,2.267,3.993,0.0,0.0,1.83,6.573,-7.755,0.0,0.0,21.29,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.427,-3.43,1.567,0.119,-0.032,0.0,0.0,-0.224,-0.58,6.698,0.0,0.0,2.216,0.0,-0.0,-0.749,-0.419,-0.061,0.0,0.0,4.352,2.019,1341.9,1264.5,6447.0,2476.3,0.0,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 -house037.xml,87.934,87.934,21.779,21.779,0.0,66.155,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,49.998,0.0,16.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,37.091,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,29.538,0.0,0.0,16.714,11.33,0.0,0.0,1.563,7.276,-10.49,0.0,0.0,6.59,0.0,-0.309,14.696,0.0,0.461,0.0,0.0,-6.818,-3.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,1341.9,1264.5,8324.2,3197.3,0.0,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 -house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 -house039.xml,98.796,98.796,24.025,24.025,74.77,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,5.136,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.084,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,49.765,0.0,0.0,14.276,5.416,0.0,0.0,2.519,15.643,-13.75,0.0,0.0,13.85,0.0,-0.039,13.263,0.0,0.557,0.0,0.0,-4.135,-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,2176.1,2226.5,17536.3,5211.3,0.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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 -house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 -house041.xml,259.077,259.077,47.133,47.133,211.944,0.0,0.0,0.0,0.0,0.0,0.0,4.164,0.0,0.0,2.576,0.254,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,0.0,185.392,0.0,26.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,174.689,0.0,4.652,15.632,5.039,0.0,0.0,105.0,0.0,3249.4,4561.5,77.749,23.467,0.0,11.26,44.834,3.482,34.914,3.052,41.616,-22.892,0.0,0.0,4.341,17.423,-0.477,64.05,0.0,2.763,0.0,0.0,-20.286,-10.995,0.0,0.097,-2.224,-0.127,1.602,-0.212,-4.015,11.033,0.0,0.0,-0.321,-5.328,-0.475,-3.481,-1.022,-0.258,0.0,0.0,6.561,2.948,1857.7,1859.4,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 -house042.xml,229.67,229.67,40.068,40.068,189.602,0.0,0.0,0.0,0.0,0.0,0.0,3.871,0.0,0.0,1.81,0.074,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,0.0,165.165,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.395,0.0,2.999,15.632,3.226,0.0,0.0,0.0,0.0,2758.3,3100.3,88.214,19.624,0.0,9.205,40.053,4.031,43.891,2.672,34.445,-21.633,0.0,0.0,2.453,14.538,-0.385,56.223,0.0,1.75,0.0,0.0,-19.152,-7.587,0.0,0.2,-1.588,-0.07,2.68,-0.16,-3.134,7.067,0.0,0.0,-0.272,-5.113,-0.382,-2.85,-0.642,-0.145,0.0,0.0,5.557,1.952,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 -house043.xml,158.13,158.13,30.051,30.051,128.078,0.0,0.0,0.0,0.0,0.0,0.0,2.456,0.0,0.0,2.028,0.119,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,0.0,108.178,0.0,19.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,103.04,0.0,3.036,13.084,2.207,0.0,0.0,0.0,0.0,1988.8,2798.1,54.664,13.818,0.0,3.172,23.263,2.301,33.889,5.621,23.662,-11.489,0.0,0.0,0.55,9.952,-0.267,28.928,0.0,1.576,0.0,0.0,-14.359,-5.16,0.0,0.032,-0.925,-0.1,1.55,-0.379,-2.383,5.793,0.0,0.0,-0.07,-3.676,-0.267,-1.616,-0.538,-0.147,0.0,0.0,4.463,1.402,1610.9,1574.7,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 -house044.xml,225.894,225.894,43.51,43.51,182.384,0.0,0.0,0.0,0.0,0.0,0.0,4.68,0.0,0.0,2.094,0.198,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,0.0,159.817,0.0,22.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.487,0.0,3.747,13.084,4.452,0.0,0.0,0.0,0.0,3093.4,3553.3,80.982,18.914,4.373,6.905,36.478,9.231,19.305,2.751,19.057,-13.33,0.0,0.0,12.909,15.111,-0.46,61.886,0.0,1.435,0.0,0.0,-18.031,-10.257,0.237,0.441,-1.46,-0.13,1.17,-0.123,-1.231,6.794,0.0,0.0,-1.164,-4.927,-0.458,-2.728,-0.484,-0.102,0.0,0.0,5.295,2.697,1610.9,1574.7,12168.1,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 -house045.xml,152.693,152.693,35.232,35.232,117.461,0.0,0.0,0.0,0.0,0.0,0.0,2.782,0.0,0.0,2.392,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,0.0,95.008,0.0,22.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,88.27,0.0,4.026,13.084,4.363,0.0,0.0,0.0,0.0,2317.8,3011.2,47.289,12.909,3.57,3.077,15.169,2.298,32.784,1.143,19.974,-13.617,1.045,-0.407,0.086,12.672,-0.187,20.635,0.0,10.931,0.0,0.0,-14.663,-7.028,-0.017,0.001,-1.114,-0.131,0.881,-0.09,-2.086,7.133,-0.068,0.396,-0.013,-4.082,-0.186,-1.184,-0.915,-1.259,0.0,0.0,4.825,2.036,1610.9,1574.7,12168.1,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 -house046.xml,25.037,25.037,25.037,25.037,0.0,0.0,0.0,0.0,0.0,0.0,5.364,0.446,0.267,0.009,3.738,1.038,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,0.0,13.922,0.276,12.84,4.305,0.617,0.0,0.0,0.0,0.0,3842.0,2404.7,16.167,13.004,0.0,2.525,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.275,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.814,4.589,0.545,596.8,442.2,5543.5,2208.6,0.0,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,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 -house047.xml,20.762,20.762,14.475,14.475,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.596,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,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,0.0,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.4,968.8,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.729,-0.554,0.0,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.101,0.032,0.0,0.0,-0.093,0.798,0.0,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.276,0.409,251.7,442.2,5772.6,1524.2,0.0,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,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 -house048.xml,91.642,91.642,39.796,39.796,51.846,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,12.899,3.824,0.0,0.0,0.0,3.691,0.085,0.498,3.017,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,0.0,35.87,0.0,12.637,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.021,0.0,51.358,7.253,2.688,0.0,0.0,0.0,0.0,1535.9,5475.4,42.021,33.069,1.024,2.643,12.009,0.0,0.0,0.815,4.922,-2.545,0.0,0.0,0.058,2.032,-0.525,6.797,0.0,4.194,0.0,6.419,-7.415,-1.512,1.323,1.018,9.256,0.0,0.0,0.549,2.757,4.297,0.0,0.0,0.072,10.121,-0.513,0.526,-0.449,1.931,0.0,6.917,11.576,2.179,130.3,817.7,11617.6,3495.1,0.0,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,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 -house049.xml,32.038,32.038,28.541,28.541,3.497,0.0,0.0,0.0,0.0,0.0,5.888,0.036,0.0,0.0,5.819,0.147,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.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.239,0.0,33.85,4.262,1.306,0.0,0.0,0.0,90.0,4432.3,2181.9,12.361,17.634,0.0,1.38,4.471,0.0,0.0,0.0,3.895,-7.574,0.0,0.0,0.0,1.446,-0.075,2.582,0.0,1.809,0.0,0.0,-2.437,-0.44,0.0,1.489,6.503,0.0,0.0,0.0,3.26,15.042,0.0,0.0,0.0,2.984,-0.076,-0.307,-3.541,0.516,0.0,0.0,7.53,1.034,728.6,567.4,7487.2,928.5,0.0,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,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 -house050.xml,51.837,51.837,21.855,21.855,29.983,0.0,0.0,0.0,0.0,0.0,0.0,0.275,0.0,0.0,1.904,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,0.0,16.067,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.694,0.0,5.132,8.572,0.0,0.0,0.0,0.0,0.0,1156.7,2604.3,11.114,15.388,0.0,4.133,6.508,0.0,0.0,2.031,5.644,-4.221,0.0,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.921,-10.283,-1.232,0.0,-0.288,-0.312,0.0,0.0,-0.391,-0.567,4.041,0.0,0.0,-0.956,0.0,-0.123,-0.557,-1.219,-0.76,0.0,0.568,5.253,0.551,1689.0,437.0,10674.9,2994.2,0.0,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,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 +HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: 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: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),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) +base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,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,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,22.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-portable.xml,34.583,34.583,33.262,33.262,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.604,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,1.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,1.18,0.0,30.514,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.1,2769.1,9.476,14.236,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.307,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.344,9.575,1.88,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier-ief-whole-home.xml,34.611,34.611,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.655,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,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15,0.0,30.49,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2767.0,2767.0,9.495,14.236,0.0,1.77,1.652,0.0,0.0,0.392,5.039,-4.911,0.0,0.0,0.0,1.312,-0.373,1.058,0.077,0.399,0.0,0.032,-4.78,-0.772,0.0,0.548,-0.009,0.0,0.0,0.206,1.933,17.103,0.0,0.0,0.0,1.819,-0.368,-0.332,-1.9,-0.091,0.0,0.344,9.532,1.875,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier-multiple.xml,34.574,34.574,33.184,33.184,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.813,1.88,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.541,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,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.452,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.3,2769.3,9.552,14.236,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.035,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.344,9.512,1.873,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier.xml,34.548,34.548,33.243,33.243,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.818,1.882,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.593,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.174,0.0,30.467,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.0,2769.0,9.548,14.236,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.344,9.498,1.87,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.167,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,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,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,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,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,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,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,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,0.0,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 +base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,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,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,0.0,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 +base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,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,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,63.998,63.998,40.48,40.48,23.519,0.0,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,4.716,0.934,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,0.0,23.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.0,0.0,22.009,0.0,15.57,9.18,0.614,0.0,0.0,0.0,0.0,2372.9,3431.1,3431.1,22.556,17.978,4.552,1.164,5.544,0.518,7.652,0.634,15.396,-16.987,0.0,0.0,0.0,8.521,-0.079,7.082,0.0,0.73,0.0,0.283,-10.23,-3.183,0.006,0.021,-0.566,-0.053,2.688,-0.03,-3.03,17.676,0.0,0.0,0.0,-6.349,-0.073,-1.691,-4.146,-0.166,0.0,0.089,8.934,2.568,1354.8,997.6,11399.6,2521.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31467.0,777.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier.xml,37.385,37.385,33.168,33.168,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.236,1.963,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,0.0,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.893,0.0,31.745,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3190.7,3190.7,13.54,17.969,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.366,9.113,1.789,1354.8,997.6,9989.0,2461.3,0.0,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,22162.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,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,0.0,22.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,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.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,30483.0,4824.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.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,0.0,22.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,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.482,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,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,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,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,0.0,60.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,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.626,36.626,24.815,24.815,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.087,0.0,0.0,1.608,0.207,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,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,0.0,3.054,9.538,0.73,0.0,0.0,0.0,0.0,1572.5,2015.2,2015.2,7.667,5.819,0.0,2.94,3.649,0.0,0.0,0.582,1.416,-1.582,0.0,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-4.25,-1.186,0.0,-0.922,-0.231,0.0,0.0,-0.054,-0.234,1.305,0.0,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.559,3.423,0.841,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-multiple.xml,31.845,31.845,25.255,25.255,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,2.093,0.314,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,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,0.0,4.965,9.538,0.61,0.0,0.0,0.0,0.0,1562.3,2239.8,2239.8,9.397,10.552,0.0,-0.004,3.294,0.0,0.0,1.383,4.001,-4.202,0.0,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-6.296,-1.142,0.0,0.0,-0.445,0.0,0.0,-0.418,-0.571,3.958,0.0,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.481,5.704,0.884,1354.8,997.6,11399.5,3156.5,0.0,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,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.799,49.799,24.82,24.82,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,1.466,0.173,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,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,0.0,2.504,9.538,0.818,0.0,0.0,0.0,0.0,1579.9,2256.3,2256.3,11.078,8.452,0.0,5.364,4.204,0.0,0.0,0.788,1.403,-1.699,0.0,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-4.485,-1.249,0.0,-1.186,-0.054,0.0,0.0,-0.054,-0.122,1.188,0.0,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.528,3.187,0.778,1354.8,997.6,11399.5,3156.5,0.0,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,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.041,26.041,24.679,24.679,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.632,0.213,9.742,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,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,0.0,3.156,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2015.1,2015.1,3.416,5.821,0.0,0.353,3.152,0.0,0.0,0.376,1.484,-1.49,0.0,0.0,0.375,0.0,-0.006,1.698,0.0,0.0,0.0,0.387,-4.015,-1.12,0.0,-0.831,-0.466,0.0,0.0,-0.076,-0.345,1.397,0.0,0.0,-0.847,0.0,-0.002,-0.394,-0.388,0.0,0.0,0.576,3.657,0.907,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.343,26.343,25.227,25.227,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.109,0.333,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,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,0.0,5.133,9.538,0.587,0.0,0.0,0.0,0.0,1559.4,1834.6,1834.6,3.707,4.327,0.0,-0.003,3.197,0.0,0.0,0.368,1.519,-1.394,0.0,0.0,-0.002,0.0,-0.063,1.76,0.0,0.0,0.0,0.321,-3.692,-1.021,0.0,-0.001,-0.556,0.0,0.0,-0.044,-0.506,1.493,0.0,0.0,-0.0,0.0,-0.059,-0.532,-0.512,0.0,0.0,0.913,3.98,1.006,1354.8,997.6,11399.5,3156.5,0.0,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,6278.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.841,26.841,26.284,26.284,0.557,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.967,0.547,9.684,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.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,0.514,0.0,8.85,9.538,0.575,0.0,0.0,0.0,0.0,1703.9,1962.7,1962.7,3.256,6.985,0.0,-0.013,2.505,0.0,0.0,0.42,4.041,-2.559,0.0,0.0,-0.009,0.0,-0.344,0.994,0.0,0.68,0.0,0.0,-4.559,-0.773,0.0,-0.008,-1.074,0.0,0.0,-0.048,-1.702,5.598,0.0,0.0,-0.004,0.0,-0.334,-0.402,-1.335,-0.391,0.0,0.0,7.407,1.254,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 +base-bldgtype-multifamily-residents-1.xml,19.898,19.898,18.595,18.595,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.363,0.394,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,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,0.0,6.696,4.213,0.585,0.0,0.0,0.0,0.0,1104.0,1602.9,1602.9,3.916,6.507,0.0,-0.014,2.619,0.0,0.0,0.418,4.236,-3.104,0.0,0.0,-0.012,0.0,-0.305,1.3,0.0,0.75,0.0,0.0,-3.826,-0.937,0.0,-0.01,-0.765,0.0,0.0,-0.014,-1.207,5.053,0.0,0.0,-0.007,0.0,-0.297,-0.396,-1.194,-0.272,0.0,0.0,4.803,1.089,817.2,530.6,4779.7,1341.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.394,27.394,26.696,26.696,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.0,3.07,0.825,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1670.4,2088.4,2088.4,3.455,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.149,28.149,27.404,27.404,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,3.656,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1695.4,2322.2,2322.2,3.602,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.038,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,8647.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.679,27.679,27.017,27.017,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.346,0.825,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.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.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1680.5,2160.3,2160.3,3.454,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,32.821,32.821,32.278,32.278,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,8.52,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1940.2,3671.7,3671.7,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.766,27.766,27.223,27.223,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,3.465,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1688.5,2269.4,2269.4,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1509.2,1333.8,1509.2,3.459,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.356,23.356,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1522.4,1334.7,1522.4,3.605,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.749,22.749,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1534.7,1333.8,1534.7,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.28,23.28,22.878,22.878,0.402,0.0,0.0,0.0,0.0,0.0,0.129,0.064,0.0,0.0,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.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1648.9,1334.7,1648.9,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.303,23.303,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1536.8,1333.8,1536.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1528.0,1334.7,1528.0,3.537,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.649,26.649,26.649,26.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.054,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1670.9,2071.3,2071.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.327,27.327,27.327,27.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.637,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1702.6,2322.2,2322.2,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922,26.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1681.0,2152.3,2152.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.964,27.964,27.964,27.964,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.813,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.8,1818.6,1818.6,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,1354.8,997.6,11399.6,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,3156.5,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.708,32.708,27.342,27.342,5.366,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.574,0.439,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,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,0.0,7.061,9.538,0.588,0.0,0.0,0.0,0.0,1711.5,2147.3,2147.3,4.167,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,4.308,-3.183,0.0,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-5.414,-0.952,0.0,-0.009,-0.693,0.0,0.0,-0.005,-1.118,4.974,0.0,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,6.564,1.074,1354.8,997.6,11399.5,3156.5,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-mechvent.xml,31.03,31.03,27.217,27.217,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,2.492,0.416,9.705,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,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,0.0,6.838,9.538,0.598,0.0,0.0,0.0,0.0,1638.9,2132.2,2132.2,5.993,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,4.232,-3.684,0.0,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-5.86,-1.052,0.0,-0.008,-0.511,0.0,0.0,-0.01,-0.941,4.473,0.0,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,6.129,0.974,1354.8,997.6,11399.5,3156.5,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-pv.xml,26.899,2.451,26.223,1.775,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.901,30.901,17.531,17.531,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,1052.2,1525.8,1525.8,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-water-heater.xml,29.805,29.805,16.435,16.435,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,999.5,1473.1,1473.1,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,1375.7,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,1377.1,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.33,37.33,37.33,37.33,0.0,0.0,0.0,0.0,0.0,0.0,5.334,0.368,0.0,0.0,2.577,1.082,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.879,0.0,13.352,9.232,0.614,2.924,0.0,0.0,0.0,3214.6,2123.0,3214.6,20.972,15.079,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.095,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.824,8.485,2.01,1354.8,997.6,11413.1,2618.9,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.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,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,3185.6,0.0,18.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.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,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,0.0,24.587,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,1375.7,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1066.9,770.9,9019.2,2069.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,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,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,1376.8,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.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,388.3,286.5,3205.6,735.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.67,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,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,0.0,23.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,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,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,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.89,0.0,13.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,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,1376.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-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,1075.0,777.3,9103.8,2089.0,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.106,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.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,2111.8,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.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,472.0,347.5,3998.4,917.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,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,0.0,22.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,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,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,0.0,23.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,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,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,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,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,0.0,22.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,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,17.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,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,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,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,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,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,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,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,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,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,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,0.0,25.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,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7646.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,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,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,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,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,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,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,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,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 +base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.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,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 +base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,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,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-floortypes.xml,67.648,67.648,29.356,29.356,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.632,0.0,0.0,3.58,0.646,9.367,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,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.866,0.0,10.726,9.342,0.621,0.0,0.0,0.0,0.0,1766.6,3491.4,3491.4,29.153,20.79,0.0,3.477,3.648,0.0,0.0,0.67,9.92,-12.906,0.0,0.0,29.048,0.0,-0.198,2.052,0.0,0.787,0.0,7.954,-7.487,-1.578,0.0,0.424,-0.063,0.0,0.0,0.096,0.383,10.935,0.0,0.0,-7.934,0.0,-0.193,-0.259,-1.855,-0.085,0.0,2.655,5.717,1.069,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,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,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,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,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,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,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,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,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,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,22.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,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,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,22.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,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,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,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-split-level.xml,40.753,40.753,29.446,29.446,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.84,0.724,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,0.0,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,11.955,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2605.0,2605.0,13.185,12.044,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.304,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.076,6.354,1.189,1354.8,997.6,11399.6,3013.0,0.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,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 +base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,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,22.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,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,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,0.0,40.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,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.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,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,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,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,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,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,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,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,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-ambient.xml,48.007,48.007,30.285,30.285,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.292,0.0,0.0,4.61,0.898,9.354,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,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.601,0.0,15.077,9.342,0.606,0.0,0.0,0.0,2.0,1740.7,3397.3,3397.3,20.514,21.089,0.0,3.835,3.846,0.0,0.0,0.76,10.831,-11.429,0.0,0.0,10.226,0.0,-0.403,2.065,0.0,0.789,0.0,3.979,-6.811,-1.44,0.0,-0.046,-0.527,0.0,0.0,0.028,-0.75,12.412,0.0,0.0,-3.67,0.0,-0.396,-0.402,-2.391,-0.154,0.0,3.577,6.38,1.207,1354.8,997.6,11399.5,2808.9,0.0,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,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,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,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 +base-foundation-belly-wing-no-skirt.xml,49.694,49.694,29.445,29.445,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,3.895,0.731,9.354,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,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.964,0.0,12.009,9.342,0.607,0.0,0.0,0.0,0.0,1753.6,3211.6,3211.6,24.176,17.286,0.0,3.981,5.371,0.0,0.0,0.753,8.835,-11.05,0.0,0.0,10.267,0.0,-0.35,2.069,0.0,0.794,0.0,6.238,-6.883,-1.459,0.0,0.302,-0.601,0.0,0.0,0.038,-0.188,9.522,0.0,0.0,-3.443,0.0,-0.343,-0.395,-2.184,-0.144,0.0,2.215,6.308,1.188,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-belly-wing-skirt.xml,49.322,49.322,29.453,29.453,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.328,0.0,0.0,3.906,0.734,9.354,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,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.608,0.0,12.062,9.342,0.607,0.0,0.0,0.0,0.0,1752.3,3180.5,3180.5,24.023,17.245,0.0,3.987,5.379,0.0,0.0,0.753,8.843,-11.04,0.0,0.0,9.969,0.0,-0.345,2.068,0.0,0.793,0.0,6.125,-6.873,-1.457,0.0,0.296,-0.61,0.0,0.0,0.036,-0.211,9.532,0.0,0.0,-3.365,0.0,-0.338,-0.399,-2.199,-0.146,0.0,2.221,6.318,1.191,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-complex.xml,78.103,78.103,37.261,37.261,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.674,0.0,0.0,5.116,1.028,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.25,0.0,17.361,9.233,0.617,0.0,0.0,0.0,2.0,2171.5,3845.1,3845.1,33.417,21.451,0.0,3.431,3.657,0.52,19.54,0.65,10.564,-12.717,0.0,0.0,0.0,8.705,-0.111,6.102,0.0,0.739,0.0,8.38,-9.124,-2.557,0.0,0.048,-0.359,-0.044,3.767,-0.003,-1.508,11.564,0.0,0.0,0.0,-4.519,-0.103,-1.227,-3.259,-0.137,0.0,3.71,7.657,1.952,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,56.087,56.087,36.482,36.482,19.605,0.0,0.0,0.0,0.0,0.0,0.0,0.323,0.0,0.0,4.774,0.947,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,19.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,18.357,0.0,15.998,9.233,0.612,0.0,0.0,0.0,0.0,2130.6,3496.4,3496.4,22.309,19.66,0.0,3.624,3.695,0.52,8.197,0.641,10.668,-12.534,0.0,0.0,0.0,4.773,-0.061,4.839,0.0,0.733,0.0,4.319,-8.893,-2.498,0.0,-0.098,-0.497,-0.057,2.177,-0.036,-2.054,11.749,0.0,0.0,0.0,-3.7,-0.055,-1.187,-3.277,-0.169,0.0,3.465,7.883,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,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,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,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,0.0,18.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,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 +base-foundation-multiple.xml,42.738,42.738,29.706,29.706,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.218,0.812,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,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,0.0,13.443,9.285,0.693,0.0,0.0,0.0,0.0,1723.6,2714.9,2714.9,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,10.857,-11.246,0.0,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-4.636,-1.429,0.0,-0.098,-0.674,0.0,0.0,-0.018,-1.077,12.595,0.0,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.65,4.23,1.218,1354.8,997.6,11399.4,2706.9,0.0,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,14275.0,222.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-slab.xml,39.954,39.954,29.299,29.299,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.9,0.74,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,0.0,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.972,0.0,12.215,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2611.5,2611.5,12.703,12.011,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.078,6.379,1.193,1354.8,997.6,11399.5,2808.9,0.0,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,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-above-grade.xml,43.94,43.94,29.852,29.852,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.308,0.833,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,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,0.0,13.834,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.0,2759.0,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,10.912,-11.281,0.0,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.069,12.56,0.0,0.0,-0.506,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.93,4.211,1.213,1354.8,997.6,11399.5,2706.9,0.0,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,14270.0,226.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-assembly-r.xml,41.196,41.196,29.243,29.243,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.197,0.0,0.0,3.847,0.722,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,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,0.0,11.864,9.285,0.71,0.0,0.0,0.0,0.0,1718.3,2855.2,2855.2,14.652,12.883,0.0,3.994,3.856,0.0,0.0,0.759,10.855,-11.125,0.0,0.0,4.456,0.0,-0.343,2.583,0.0,0.0,0.0,1.82,-4.614,-1.421,0.0,-0.074,-0.626,0.0,0.0,0.009,-1.062,12.715,0.0,0.0,-2.011,0.0,-0.339,-0.564,-2.512,0.0,0.0,1.12,4.251,1.226,1354.8,997.6,11399.5,2706.9,0.0,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,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-wall-insulation.xml,48.948,48.948,28.952,28.952,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.558,0.653,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,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,0.0,10.743,9.285,0.64,0.0,0.0,0.0,0.0,1726.7,2483.3,2483.3,16.597,11.56,0.0,3.723,3.619,0.0,0.0,0.633,9.712,-12.351,0.0,0.0,14.373,0.0,-0.047,2.46,0.0,0.0,0.0,2.599,-4.778,-1.481,0.0,0.063,-0.441,0.0,0.0,-0.015,-0.972,11.49,0.0,0.0,-2.769,0.0,-0.045,-0.521,-2.405,0.0,0.0,1.302,4.088,1.166,1354.8,997.6,11399.5,2706.9,0.0,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,15218.0,128.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement.xml,42.817,42.817,29.736,29.736,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,4.234,0.816,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,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,0.0,13.513,9.285,0.703,0.0,0.0,0.0,0.0,1723.8,2921.5,2921.5,15.45,14.318,0.0,3.994,3.853,0.0,0.0,0.749,10.805,-11.235,0.0,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-4.634,-1.429,0.0,-0.077,-0.629,0.0,0.0,-0.0,-1.111,12.605,0.0,0.0,-0.673,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.724,4.231,1.218,1354.8,997.6,11399.5,2706.9,0.0,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,14277.0,222.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,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,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,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,2808.9,0.0,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,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,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,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,2808.9,0.0,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,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-walkout-basement.xml,64.814,64.814,36.328,36.328,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,4.532,0.884,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,0.0,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.677,0.0,14.89,9.233,0.615,0.0,0.0,0.0,0.0,2125.9,3513.1,3513.1,26.787,19.805,0.0,3.523,3.688,0.52,7.364,0.646,11.292,-12.794,0.0,0.0,0.0,10.155,-0.066,6.639,0.0,0.728,0.0,6.073,-8.935,-2.506,0.0,-0.099,-0.515,-0.06,1.48,-0.031,-2.074,12.046,0.0,0.0,0.0,-3.677,-0.061,-1.529,-3.357,-0.16,0.0,3.264,7.844,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,3123.7,0.0,15.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.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,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,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,7253.7,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,10081.5,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,6906.4,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,3384.0,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,3017.5,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,3017.5,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,3384.0,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,3385.8,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,7002.3,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.645,42.645,42.645,42.645,0.0,0.0,0.0,0.0,0.0,0.0,9.823,1.762,0.591,0.052,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,0.0,23.588,0.643,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7296.6,1637.3,7296.6,25.567,0.0,0.0,3.452,3.637,0.512,7.485,0.629,10.516,-12.551,0.0,0.0,0.0,8.112,-0.066,4.805,0.0,0.728,0.0,7.372,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,7104.3,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.145,46.145,46.145,46.145,0.0,0.0,0.0,0.0,0.0,0.0,9.718,1.011,0.443,0.024,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.466,13.102,9.233,0.614,0.0,0.0,0.0,0.0,6954.5,3209.9,6954.5,24.358,15.771,0.0,3.499,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.018,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,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,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,3650.5,0.0,21.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.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,0.0,25971.0,25971.0,11194.0,51.62,90.68,11194.0,4365.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.698,44.698,44.698,44.698,0.0,0.0,0.0,0.0,0.0,0.0,9.125,0.912,0.046,0.006,3.198,0.971,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.362,0.052,11.97,9.233,0.614,0.0,0.0,0.0,0.0,6628.4,2912.2,6628.4,22.625,13.15,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.864,-8.907,-2.499,0.0,0.037,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.05,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65908.0,65908.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,7064.5,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,24186.0,24186.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.554,41.554,41.554,41.554,0.0,0.0,0.0,0.0,0.0,0.0,7.131,0.629,0.416,0.017,2.294,0.626,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.433,13.325,9.233,0.614,0.0,0.0,0.0,0.0,6922.4,2762.7,6922.4,24.33,16.718,0.0,3.453,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.249,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.431,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33416.0,33416.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.544,40.544,40.544,40.544,0.0,0.0,0.0,0.0,0.0,0.0,6.849,0.507,0.049,0.005,2.124,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.035,0.054,12.091,9.233,0.614,0.0,0.0,0.0,0.0,6732.2,2521.0,6732.2,23.383,13.585,0.0,3.588,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.557,-8.907,-2.499,0.0,0.034,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.172,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65567.0,65567.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.171,51.171,37.619,37.619,13.551,0.0,0.0,0.0,0.0,0.0,4.154,0.37,0.0,0.138,2.31,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.722,11.262,14.452,9.233,0.615,0.0,0.0,2.0,0.0,3194.1,2672.7,3194.1,23.547,17.679,0.0,3.375,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.35,-8.918,-2.502,0.0,-0.058,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.697,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,23640.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.458,54.458,37.825,37.825,16.632,0.0,0.0,0.0,0.0,0.0,4.006,0.353,0.0,0.501,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,28.514,13.807,14.556,9.233,0.614,0.0,0.0,2.0,0.0,3328.2,2622.0,3328.2,30.614,17.514,0.0,3.251,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.289,-0.061,4.804,0.0,0.728,0.0,12.284,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.063,-0.165,0.0,3.704,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,32235.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,7149.0,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,26367.0,26367.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.158,41.158,41.158,41.158,0.0,0.0,0.0,0.0,0.0,0.0,7.314,0.748,0.123,0.008,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.792,0.131,14.556,9.233,0.614,0.0,0.0,0.0,0.0,7031.0,2622.0,7031.0,24.672,17.514,0.0,3.37,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.48,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.703,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.898,40.898,40.898,40.898,0.0,0.0,0.0,0.0,0.0,0.0,7.281,0.641,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.771,0.057,13.49,9.233,0.614,0.0,0.0,0.0,0.0,6896.7,2561.9,6896.7,23.811,16.273,0.0,3.447,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.401,-8.907,-2.499,0.0,-0.02,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.608,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,50423.0,50423.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-elec-only.xml,48.203,48.203,48.203,48.203,0.0,0.0,0.0,0.0,0.0,0.0,17.594,0.191,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.2,1637.3,5904.2,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.331,55.331,36.429,36.429,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2096.7,3330.0,3330.0,16.459,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-gas-only.xml,49.354,49.354,30.642,30.642,18.712,0.0,0.0,0.0,0.0,0.0,0.0,0.224,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,18.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2057.9,1637.3,2057.9,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20155.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,2618.4,0.0,17.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.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20283.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.538,48.538,48.538,48.538,0.0,0.0,0.0,0.0,0.0,0.0,9.911,1.779,0.593,0.052,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.645,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7326.8,3330.1,7326.8,25.567,17.819,0.0,3.446,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.439,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,19922.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,3475.0,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,3475.0,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,2581.3,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,2581.3,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,5930.0,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-evap-cooler-furnace-gas.xml,56.319,56.319,32.044,32.044,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,0.0,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,1915.1,2116.1,25.1,11.075,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,13458.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-elec-only.xml,53.605,53.605,53.605,53.605,0.0,0.0,0.0,0.0,0.0,0.0,22.563,0.625,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,0.0,22.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8622.9,1637.3,8622.9,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.875,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2124.3,2947.8,2947.8,24.237,18.493,0.0,3.51,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.863,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20155.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20283.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,2122.5,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.248,34.248,34.248,34.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.895,0.867,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.692,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2851.9,2851.9,0.0,17.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.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.15,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.793,36.793,36.793,36.793,0.0,0.0,0.0,0.0,0.0,0.0,5.562,0.814,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,0.0,21.117,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3411.0,1637.3,3411.0,23.44,0.0,0.0,3.549,3.636,0.512,7.483,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.833,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.933,39.933,39.933,39.933,0.0,0.0,0.0,0.0,0.0,0.0,5.492,0.686,0.0,0.0,2.507,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.116,0.0,13.27,9.233,0.614,0.0,0.0,0.0,0.0,3358.9,2541.2,3358.9,22.968,15.706,0.0,3.552,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.667,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.379,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,3215.8,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,3215.8,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,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,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,4263.6,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,4941.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,19866.0,19866.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.91,38.91,38.91,38.91,0.0,0.0,0.0,0.0,0.0,0.0,5.84,0.317,0.073,0.002,2.16,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,0.0,19.98,0.075,12.245,9.233,0.614,0.0,0.0,0.0,0.0,4268.2,2191.0,4268.2,19.501,13.372,0.0,3.593,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.501,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.402,38.402,38.402,38.402,0.0,0.0,0.0,0.0,0.0,0.0,5.406,0.268,0.0,0.0,2.213,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.045,0.0,11.734,9.233,0.614,0.0,0.0,0.0,0.0,3640.7,2214.0,3640.7,19.188,12.558,0.0,3.624,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.54,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.818,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,41843.0,41843.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.75,37.75,37.75,37.75,0.0,0.0,0.0,0.0,0.0,0.0,5.078,0.102,0.042,0.0,2.06,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.042,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3682.6,2120.6,3682.6,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.614,35.614,0.0,12.321,0.0,0.0,0.0,0.0,3.012,0.092,0.0,0.0,2.043,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.658,7.393,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2846.2,2123.8,2846.2,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,49.605,49.605,42.912,42.912,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.191,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2614.2,3427.5,3427.5,16.894,14.883,0.0,2.873,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.449,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,0.0,31430.0,27561.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-stove-oil-only.xml,52.275,52.275,30.519,30.519,0.0,21.756,0.0,0.0,0.0,0.0,0.0,0.1,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,21.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.5,1635.7,2037.5,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,6024.4,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize.xml,59.984,59.984,36.217,36.217,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.324,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2126.9,3189.8,3189.8,24.296,18.003,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.91,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,19922.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,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,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,2060.9,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,6044.7,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,24.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,2045.4,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,2045.4,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,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,19.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,2060.9,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,2041.8,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,2041.8,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,7284.9,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.93,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.276,11.122,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,3619.1,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.391,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.179,15.2,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,3465.8,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.043,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.535,15.233,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,2779.5,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.757,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,26.265,15.615,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,2778.7,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,2543.3,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,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,0.0,47.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,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,71259.0,33168.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,28612.0,4972.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-defaults.xml,55.153,55.153,40.631,40.631,14.522,0.0,0.0,0.0,0.0,0.0,4.468,0.378,0.0,0.0,5.344,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,14.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,18.196,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3050.3,3196.1,3196.1,18.212,11.065,0.0,3.733,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,1.597,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.058,-1.165,-3.053,-0.165,0.0,-0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,41910.0,24000.0,0.0,6.8,91.76,28212.0,4572.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34496.0,10856.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32660.0,9020.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,5930.0,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,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,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,2111.3,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,2021.1,0.0,14.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.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,2021.1,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,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,0.0,26.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,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,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,7929.1,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,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,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,8314.7,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,2071.2,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,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,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-borefield-configuration.xml,39.547,39.547,39.547,39.547,0.0,0.0,0.0,0.0,0.0,0.0,5.239,0.361,0.0,0.0,2.477,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.538,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3210.2,2594.4,3210.2,20.925,14.708,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.046,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-count.xml,39.549,39.549,39.549,39.549,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.361,0.0,0.0,2.475,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3211.0,2581.1,3211.0,20.927,14.697,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.047,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-diameter.xml,39.554,39.554,39.554,39.554,0.0,0.0,0.0,0.0,0.0,0.0,5.248,0.362,0.0,0.0,2.474,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.2,2583.0,3212.2,20.879,14.701,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-length.xml,39.502,39.502,39.502,39.502,0.0,0.0,0.0,0.0,0.0,0.0,5.23,0.359,0.0,0.0,2.446,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.531,0.0,12.672,9.233,0.614,0.0,0.0,0.0,0.0,3202.1,2567.5,3202.1,20.83,14.681,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.039,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-spacing.xml,39.494,39.494,39.494,39.494,0.0,0.0,0.0,0.0,0.0,0.0,5.227,0.359,0.0,0.0,2.441,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.53,0.0,12.672,9.233,0.614,0.0,0.0,0.0,0.0,3200.5,2567.2,3200.5,20.821,14.681,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.037,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.759,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-ground-diffusivity.xml,39.564,39.564,39.564,39.564,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.362,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3214.1,2584.5,3214.1,20.886,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-grout-conductivity.xml,39.552,39.552,39.552,39.552,0.0,0.0,0.0,0.0,0.0,0.0,5.249,0.362,0.0,0.0,2.471,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3212.6,2577.4,3212.6,20.87,14.693,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-loop-flow.xml,39.565,39.565,39.565,39.565,0.0,0.0,0.0,0.0,0.0,0.0,5.254,0.363,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3210.4,2582.7,3210.4,20.87,14.7,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-conductivity.xml,39.542,39.542,39.542,39.542,0.0,0.0,0.0,0.0,0.0,0.0,5.245,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.3,2577.1,3210.3,20.864,14.693,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.762,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-diameter.xml,39.539,39.539,39.539,39.539,0.0,0.0,0.0,0.0,0.0,0.0,5.241,0.361,0.0,0.0,2.468,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.538,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3208.7,2572.8,3208.7,20.907,14.686,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.046,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.511,39.511,39.511,39.511,0.0,0.0,0.0,0.0,0.0,0.0,5.234,0.36,0.0,0.0,2.45,1.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.533,0.0,12.673,9.233,0.614,0.0,0.0,0.0,0.0,3204.7,2568.5,3204.7,20.838,14.682,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.041,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,39.08,39.08,39.08,39.08,0.0,0.0,0.0,0.0,0.0,0.0,5.08,0.34,0.0,0.0,2.219,1.001,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.439,0.0,12.644,9.233,0.614,0.0,0.0,0.0,0.0,3122.8,2459.5,3122.8,20.484,14.586,0.0,3.61,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.944,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.732,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.794,33.794,33.794,33.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.534,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.0,2599.0,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.643,36.643,36.643,36.643,0.0,0.0,0.0,0.0,0.0,0.0,5.449,0.777,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,0.0,20.372,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3362.4,1637.3,3362.4,22.29,0.0,0.0,3.576,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.067,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.1,2577.8,3210.1,20.865,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,7036.9,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,7011.6,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,7134.8,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,2097.0,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.358,41.358,41.358,41.358,0.0,0.0,0.0,0.0,0.0,0.0,6.658,0.379,0.0,0.0,2.92,0.961,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.424,0.0,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3442.3,2724.4,3442.3,21.792,15.702,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.955,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.235,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,4380.1,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-library-test-case.xml,39.021,39.021,39.021,39.021,0.0,0.0,0.0,0.0,0.0,0.0,5.056,0.337,0.0,0.0,2.19,0.998,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.426,0.0,12.642,9.233,0.614,0.0,0.0,0.0,0.0,3117.3,2452.1,3117.3,20.464,14.58,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.931,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.73,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,2211.4,0.0,12.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,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,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,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,3769.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,3769.3,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,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,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,4370.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,44.912,44.912,35.83,35.83,9.082,0.0,0.0,0.0,0.0,0.0,3.036,0.054,0.0,0.274,1.999,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,9.082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.769,7.539,10.828,9.233,0.615,0.0,0.0,1.0,0.0,2913.9,2188.7,2913.9,17.284,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.111,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,24589.0,949.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,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,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,2829.9,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,2913.9,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.293,66.293,51.861,51.861,7.155,3.599,3.679,0.0,0.0,0.0,13.641,0.858,0.197,0.008,6.164,0.552,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.667,0.205,18.96,9.233,0.615,0.0,0.0,0.0,3.0,6379.1,4054.4,6379.1,37.469,22.828,0.0,3.418,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.265,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.235,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.4,1280.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,1354.8,997.6,8540.6,2104.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 +base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,2126.3,0.0,3.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.01,-0.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,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,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-space-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,2021.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,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,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,2032.0,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,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,0.0,0.0,0.0,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,2032.0,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,56.19,56.19,35.529,35.529,20.661,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,3.959,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,20.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,19.378,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2961.2,2961.2,20.444,15.145,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.888,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,28898.0,18434.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,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,0.0,15.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,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,2089.4,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,6024.4,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,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,0.0,22.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,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-kwh-per-year.xml,60.469,60.469,39.553,39.553,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.535,0.889,9.163,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.996,9.233,0.613,0.0,0.0,0.0,0.0,2416.3,3795.3,3795.3,22.788,18.414,0.0,3.575,3.655,0.514,7.569,0.633,10.56,-12.521,0.0,0.0,0.0,8.359,-0.067,4.811,0.0,0.729,0.0,4.568,-8.891,-4.249,0.0,-0.085,-0.489,-0.055,2.612,-0.033,-2.015,11.745,0.0,0.0,0.0,-6.471,-0.063,-1.192,-3.199,-0.169,0.0,3.277,7.886,3.428,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,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,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,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,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 +base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,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,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,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,2719.3,0.0,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,15107.0,1151.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 +base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,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.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,1354.8,997.6,10580.5,2607.1,0.0,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,13718.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 +base-location-dallas-tx.xml,34.353,34.353,32.588,32.588,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.767,1.868,6.814,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,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,0.0,30.193,6.675,0.573,0.0,0.0,0.0,0.0,2014.4,2771.1,2771.1,9.706,14.235,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.343,9.5,1.888,1354.8,997.6,9989.0,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-location-duluth-mn.xml,70.96,70.96,29.786,29.786,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,2.265,0.329,11.623,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,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,0.0,5.222,11.597,0.833,0.0,0.0,0.0,0.0,1760.4,2414.3,2414.3,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,19.994,-13.274,0.0,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-6.293,-1.93,0.0,-0.435,-0.782,0.0,0.0,-0.099,-1.383,7.876,0.0,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.334,2.573,0.717,1354.8,997.6,12167.9,2889.4,0.0,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,11642.0,149.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 +base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,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,0.0,42.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,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 +base-location-honolulu-hi.xml,36.199,36.199,36.199,36.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.218,3.035,4.816,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,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,2132.0,2154.5,2342.0,0.0,13.168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,13.134,2.647,1354.8,997.6,8540.5,2104.4,0.0,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,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 +base-location-miami-fl.xml,35.353,35.353,35.353,35.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.444,2.83,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,0.0,0.0,45.97,4.712,0.551,0.0,0.0,0.0,0.0,2104.8,2424.8,2424.8,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,0.0,0.0,0.0,1.006,0.575,0.0,0.0,0.304,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,13.135,2.647,1354.8,997.6,8625.1,2125.3,0.0,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,13318.0,-219.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 +base-location-phoenix-az.xml,38.434,38.434,38.433,38.433,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.029,3.092,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.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,0.0,51.765,4.955,0.556,0.0,0.0,0.0,0.0,2368.2,3386.4,3386.4,0.593,17.634,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,11.511,2.368,1354.8,997.6,8429.2,2077.0,0.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,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 +base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,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,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,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,1354.8,997.6,11239.5,2769.4,0.0,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,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 +base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,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,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,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,0.0,24.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,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.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.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,0.0,0.0,11.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.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,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,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,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,63.835,44.385,31.488,12.038,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,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.45,0.0,0.488,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2793.8,2793.8,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,3.08,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-emissions.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,16.505,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.981,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 +base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,24.753,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-round-trip-efficiency.xml,60.69,33.803,37.859,10.972,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.909,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,6.706,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-scheduled.xml,60.483,33.596,37.652,10.766,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,6.873,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery-scheduled.xml,77.483,42.407,37.652,2.576,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.703,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,24.473,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery.xml,76.584,41.509,36.754,1.678,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.804,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,90.778,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,556.25,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,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,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,70.077,49.826,40.027,19.776,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.251,0.0,0.376,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3061.0,3173.5,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,1.915,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,33.64,33.64,28.659,28.659,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.082,0.0,0.0,3.199,0.556,7.442,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,9.408,7.426,0.561,0.0,0.0,0.5,0.5,9398.1,10416.5,10416.5,41.812,21.425,0.0,2.585,2.431,0.339,4.203,0.328,6.833,-12.363,0.0,0.0,0.0,3.542,-0.105,3.354,0.0,0.382,0.0,1.039,-6.567,-1.596,0.0,-0.232,-0.587,-0.07,2.391,-0.062,-2.309,11.863,0.0,0.0,0.0,-7.603,-0.059,-1.378,-4.919,-0.21,0.0,2.269,8.448,2.023,1141.2,883.5,9401.7,2157.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps.xml,42.676,42.676,34.392,34.392,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.137,0.0,0.0,3.211,0.559,9.199,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.756,0.0,9.457,9.21,0.671,0.0,0.0,0.0,0.5,9394.7,10419.5,10419.5,31.982,21.427,0.0,2.889,2.782,0.39,5.331,0.415,7.871,-12.359,0.0,0.0,0.0,5.381,-0.059,3.834,0.0,0.578,0.0,1.776,-8.861,-2.486,0.0,-0.236,-0.59,-0.07,2.395,-0.063,-2.32,11.863,0.0,0.0,0.0,-7.535,-0.058,-1.38,-4.931,-0.211,0.0,2.279,8.448,2.023,1354.7,998.0,11490.9,2636.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,9102.0,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,6232.4,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,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,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,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,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,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,0.0,22.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,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,2116.04,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,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,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,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,9304.3,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,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,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,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,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +house001.xml,86.453,86.453,46.944,46.944,39.508,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.684,4.394,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,0.0,22.462,0.0,17.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.215,0.0,49.863,10.416,2.681,0.0,0.0,0.0,0.0,1853.4,6417.7,6417.7,37.576,40.427,0.492,1.982,7.189,0.419,0.0,0.959,7.577,-4.942,0.0,0.0,0.438,1.255,-0.262,4.293,0.0,5.152,0.0,3.214,-6.762,-2.935,0.562,1.981,3.785,0.305,0.0,0.258,0.298,11.575,0.0,0.0,0.573,6.821,-0.248,-0.42,-1.413,-0.757,0.0,10.696,11.588,4.446,2104.5,2144.0,14468.8,4385.1,0.0,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,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 +house002.xml,67.263,67.263,39.818,39.818,27.444,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.726,3.409,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,0.0,13.958,0.0,13.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.316,0.0,39.308,7.526,2.891,0.0,0.0,0.0,0.0,1554.0,4934.4,4934.4,23.891,28.399,0.0,2.53,5.051,0.0,0.0,0.85,5.996,-4.053,0.0,0.0,0.0,1.759,-0.146,1.573,0.0,3.789,0.0,1.372,-5.071,-2.493,0.0,3.082,2.762,0.0,0.0,0.396,-0.488,8.601,0.0,0.0,0.0,8.468,-0.14,-0.182,-1.052,-0.638,0.0,5.863,8.93,3.888,1610.9,1574.7,9989.4,3520.4,0.0,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,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 +house003.xml,68.642,68.642,40.063,40.063,28.579,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.737,3.543,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,0.0,15.333,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.0,40.757,7.526,2.691,0.0,0.0,0.0,0.0,1632.4,5147.9,5147.9,26.295,31.384,0.648,2.781,4.656,0.0,0.0,0.985,6.674,-3.929,0.0,0.0,0.0,1.074,-0.164,1.988,0.0,3.937,0.0,1.615,-5.293,-2.701,0.794,3.047,2.594,0.0,0.0,0.624,-0.264,9.905,0.0,0.0,0.0,6.53,-0.157,-0.218,-1.094,-0.633,0.0,6.453,9.189,4.174,1610.9,1574.7,9989.3,3520.4,0.0,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,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 +house004.xml,136.271,136.271,75.306,75.306,60.965,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,28.978,9.455,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,0.0,44.816,0.0,16.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.241,0.0,107.036,8.985,3.511,0.0,0.0,0.0,101.0,3061.1,7371.4,7371.4,54.694,50.188,0.128,5.535,11.395,0.0,0.0,1.249,14.009,-5.986,0.0,0.0,0.0,3.226,-0.721,4.938,0.0,6.279,0.0,7.107,-7.297,-3.933,0.199,6.756,11.661,0.0,0.0,0.524,5.468,17.456,0.0,0.0,0.0,18.954,-0.708,1.03,0.0,1.86,0.0,21.407,15.06,7.63,1857.7,1859.3,12228.9,3983.9,0.0,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,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 +house005.xml,95.118,95.118,53.277,53.277,41.841,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.27,5.149,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,0.0,26.64,0.0,15.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,21.604,0.0,59.527,8.985,2.731,0.0,0.0,0.0,0.0,2076.0,7519.1,7519.1,45.933,50.952,0.0,3.02,8.096,0.267,0.0,1.336,10.048,-6.655,0.0,0.0,0.37,1.253,-0.336,5.037,0.0,5.077,0.0,4.386,-6.862,-3.637,0.0,2.987,4.342,0.212,0.0,0.297,0.319,15.402,0.0,0.0,0.447,7.536,-0.319,-0.49,-1.768,-0.737,0.0,14.474,11.523,5.518,1857.7,1859.4,12229.0,3983.9,0.0,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,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 +house006.xml,139.365,139.365,31.78,31.78,107.585,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.951,0.34,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,0.0,81.738,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,78.691,0.0,7.8,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2441.9,2441.9,40.506,14.727,0.0,4.261,22.283,1.991,37.119,1.868,17.963,-9.449,0.0,0.0,0.0,9.284,-0.313,9.523,0.0,4.368,0.0,0.0,-14.567,-6.452,0.0,0.174,-0.793,-0.044,2.801,-0.086,-0.887,4.262,0.0,0.0,0.0,-3.89,-0.313,-0.514,-0.614,-0.075,0.0,0.0,5.649,2.235,1610.9,1574.7,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 +house007.xml,138.83,138.83,33.914,33.914,104.916,0.0,0.0,0.0,0.0,0.0,0.0,1.632,0.0,0.0,2.54,0.396,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,0.0,75.248,0.0,23.282,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,70.851,0.0,5.753,15.632,3.269,0.0,0.0,0.0,0.0,2192.0,2562.1,2562.1,39.678,13.27,0.0,4.719,23.705,4.446,10.133,1.504,19.077,-9.362,0.0,0.0,0.077,11.566,-0.343,6.119,0.0,20.834,0.0,2.867,-17.238,-7.765,0.0,0.197,-0.722,-0.06,0.577,-0.049,-0.553,4.531,0.0,0.0,-0.009,-4.0,-0.339,-0.191,-0.585,-1.888,0.0,0.104,6.303,2.533,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 +house008.xml,183.501,183.501,39.139,39.139,144.362,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.556,0.53,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,0.0,110.924,0.0,26.378,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,104.521,0.0,9.981,18.129,3.214,0.0,0.0,0.0,0.0,2473.2,3287.8,3287.8,54.741,19.298,0.0,7.23,27.419,4.689,24.238,1.181,22.401,-7.862,0.0,0.0,1.235,17.867,-0.356,18.326,0.0,6.386,0.0,7.825,-18.694,-8.197,0.0,0.294,-1.11,-0.063,1.637,-0.086,-1.372,5.318,0.0,0.0,-0.1,-2.732,-0.356,-0.983,-0.682,-0.282,0.0,0.528,7.259,2.809,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 +house009.xml,154.293,154.293,33.983,33.983,120.31,0.0,0.0,0.0,0.0,0.0,0.0,2.035,0.0,0.0,2.375,0.286,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,0.0,90.634,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,85.401,0.0,5.187,15.632,3.276,0.0,0.0,0.0,0.0,2227.1,2605.9,2605.9,44.161,13.902,0.0,5.098,28.389,4.31,13.07,2.257,19.625,-8.244,0.0,0.0,0.266,15.661,-0.329,8.731,0.0,21.443,0.0,0.0,-17.529,-7.88,0.0,0.238,-0.711,-0.038,0.753,-0.078,-0.78,4.49,0.0,0.0,-0.028,-4.065,-0.325,-0.258,-0.521,-1.794,0.0,0.0,5.992,2.391,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 +house010.xml,153.796,153.796,37.549,37.549,116.246,0.0,0.0,0.0,0.0,0.0,0.0,1.86,0.0,0.0,2.896,0.273,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,0.0,82.81,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,78.033,0.0,7.28,18.129,3.214,0.0,0.0,0.0,0.0,2409.0,2810.7,2810.7,45.27,15.353,0.875,4.93,25.457,4.901,9.774,1.256,23.582,-9.227,0.0,0.0,0.906,11.41,-0.365,19.566,0.0,6.402,0.0,4.869,-18.715,-8.186,0.023,0.211,-0.764,-0.099,0.558,-0.073,-1.356,5.066,0.0,0.0,-0.046,-4.161,-0.362,-1.021,-0.677,-0.269,0.0,0.334,7.219,2.8,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 +house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,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,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,4986.2,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,0.0,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,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 +house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,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,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,3031.7,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,0.0,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,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 +house013.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,2660.9,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 +house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,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,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,2913.6,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,3131.8,0.0,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,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 +house015.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,2660.9,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 +house016.xml,61.263,61.263,39.85,39.85,0.0,0.0,21.413,0.0,0.0,0.0,7.562,0.538,0.161,0.004,3.068,1.038,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.225,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.35,0.164,12.001,10.478,0.0,0.0,0.0,1.0,16.0,7459.2,3559.3,7459.2,42.956,19.008,0.0,4.428,10.851,0.619,5.712,0.298,7.395,-8.024,0.0,0.0,0.0,6.777,-0.02,5.735,0.0,3.86,0.0,0.0,-8.634,-4.768,0.0,-0.362,-0.889,-0.023,2.899,-0.047,-0.596,12.366,0.0,0.0,0.0,-8.869,-0.022,-1.375,-1.189,-1.027,0.0,0.0,7.78,3.838,1759.0,1745.5,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 +house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,0.0,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 +house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,4683.5,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,0.0,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,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2606.0,1095.0,711.0,800.0 +house019.xml,129.831,129.831,51.94,51.94,77.891,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.257,3.783,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.116,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.065,0.0,44.56,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6497.7,6497.7,84.656,46.058,0.0,11.387,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.955,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.944,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,0.0,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 +house020.xml,116.979,116.979,56.877,56.877,0.0,0.0,60.102,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.245,2.923,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.965,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.971,0.0,34.513,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6618.4,6618.4,31.034,32.534,0.91,11.02,10.576,1.133,9.807,0.632,14.612,-15.405,0.0,0.0,0.0,7.524,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.24,0.116,0.176,0.053,6.39,0.012,-1.763,21.501,0.0,0.0,0.0,-6.709,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,0.0,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 +house021.xml,156.416,156.416,48.605,48.605,107.811,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.488,1.582,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.77,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,18.993,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4771.0,4771.0,81.115,23.848,0.0,8.272,27.058,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.315,26.613,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.008,-0.864,0.005,2.201,-0.093,-1.709,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.322,8.889,3.787,1759.0,1745.5,13752.0,4620.1,0.0,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 +house022.xml,137.518,137.518,48.884,48.884,0.0,88.635,0.0,0.0,0.0,0.0,0.0,2.204,0.0,0.0,8.878,0.897,12.47,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,88.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.755,0.0,19.669,10.989,1.479,0.0,0.0,184.0,126.0,2989.1,5375.4,5375.4,90.672,27.64,3.697,3.766,20.67,0.0,0.0,1.489,16.102,-13.284,0.0,0.0,14.728,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.522,0.0,0.0,-0.127,-0.987,12.096,0.0,0.0,1.908,0.0,-0.281,-2.742,-0.645,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,0.0,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 +house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,4638.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 +house024.xml,129.181,129.181,44.059,44.059,0.0,85.122,0.0,0.0,0.0,0.0,0.0,2.117,0.0,0.0,5.375,0.691,16.753,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.176,0.0,16.013,14.653,2.088,0.0,0.0,0.0,0.0,2750.5,3528.1,3591.8,72.024,17.577,0.0,7.189,30.113,0.0,0.0,0.682,6.988,-7.991,0.0,0.0,5.221,0.0,-0.109,25.401,0.0,1.837,0.0,11.726,-8.633,-2.537,0.0,0.564,1.148,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.499,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.853,5.531,1.379,2176.1,2226.5,14983.5,4452.7,0.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,21856.0,1377.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7041.0,2605.0,3636.0,800.0 +house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,0.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,32212.0,8765.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 +house026.xml,57.14,57.14,24.857,24.857,32.282,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,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,0.0,18.136,0.0,14.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,13.896,0.0,0.0,8.607,2.082,0.0,0.0,0.0,0.0,1554.0,1299.3,1554.0,17.371,0.0,0.0,1.761,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.103,0.0,-0.058,2.488,0.0,3.127,0.0,0.0,-6.707,-3.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,1294.8,1282.2,8578.8,3023.3,0.0,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 +house027.xml,72.753,72.753,31.736,31.736,41.016,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,7.874,1.017,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,0.0,20.065,0.0,17.882,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.901,0.0,23.04,8.564,5.232,0.0,0.0,0.0,0.0,1580.0,3622.8,3622.8,24.052,22.72,0.716,1.776,7.887,0.452,0.0,0.591,5.247,-4.028,0.0,0.0,0.376,3.336,-0.14,1.745,0.0,10.425,0.0,2.046,-8.79,-2.845,0.489,1.124,0.653,0.056,0.0,-0.113,-0.286,5.628,0.0,0.0,0.105,3.836,-0.14,-0.365,-0.966,-3.474,0.0,2.595,10.728,3.102,1610.9,1574.7,10579.5,3728.4,0.0,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 +house028.xml,67.831,67.831,29.68,29.68,38.15,0.0,0.0,0.0,0.0,0.0,0.0,0.259,0.0,0.0,7.107,1.515,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,0.0,13.643,0.0,18.121,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.812,0.0,22.735,10.226,3.62,0.0,0.0,0.0,0.0,1517.3,3323.9,3323.9,20.023,21.223,0.769,1.663,7.049,0.35,0.0,0.432,5.505,-3.79,0.0,0.0,0.236,2.464,-0.05,4.039,0.0,4.464,0.0,1.543,-9.08,-2.901,0.607,1.232,-0.581,0.098,0.0,0.066,-0.712,6.39,0.0,0.0,0.069,1.838,-0.051,-1.081,-1.198,-1.645,0.0,2.913,11.527,3.237,1857.7,1859.4,12951.6,4219.3,0.0,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 +house029.xml,77.601,77.601,29.95,29.95,47.651,0.0,0.0,0.0,0.0,0.0,0.0,0.639,0.0,0.0,6.107,0.906,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,0.0,31.987,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,31.653,0.0,13.604,9.614,0.0,0.0,0.0,0.0,0.0,1604.9,3000.4,3000.4,28.473,13.951,0.0,3.364,14.695,0.392,0.0,0.308,6.693,-6.461,0.0,0.0,6.932,0.0,-0.085,7.292,0.0,7.304,0.0,3.15,-8.377,-3.711,0.0,1.12,-0.859,0.009,0.0,0.053,0.373,5.722,0.0,0.0,-0.449,0.0,-0.08,-0.809,-1.067,-1.536,0.0,1.215,7.168,2.832,1610.9,1574.7,11033.0,3888.2,0.0,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,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 +house030.xml,57.883,57.883,17.189,17.189,0.0,0.0,40.694,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.377,0.0,13.28,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.883,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,1133.7,15.992,0.0,0.0,1.68,10.216,0.489,1.112,1.049,5.343,-4.368,0.0,0.0,0.0,3.578,-0.04,2.742,0.0,5.694,0.0,0.0,-7.809,-2.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,1066.0,992.8,6763.9,2581.0,0.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 +house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,7846.0,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 +house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,1347.4,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.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,1341.9,1264.5,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 +house033.xml,106.743,106.743,14.691,14.691,0.0,92.052,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.371,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,1018.3,48.38,0.0,0.0,19.125,14.564,0.0,0.0,1.0,10.82,-7.637,0.0,0.0,14.706,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.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,0.0,924.8,0.0,3905.6,1188.1,0.0,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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 +house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,2949.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.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,1759.0,1745.5,10287.1,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 +house035.xml,63.505,63.505,17.521,17.521,45.985,0.0,0.0,0.0,0.0,0.0,0.0,0.809,0.0,0.0,1.742,0.119,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.522,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.706,0.0,2.673,3.92,3.822,0.0,0.0,102.0,0.0,1326.3,1899.4,1899.4,39.1,9.67,0.367,6.149,10.862,0.0,0.0,0.538,5.863,-7.44,0.0,0.0,7.797,0.0,0.004,13.61,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.579,-1.589,0.0,0.0,-0.082,-1.219,7.322,0.0,0.0,-4.457,0.0,0.009,-2.738,-0.728,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,0.0,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 +house036.xml,82.314,82.314,26.075,26.075,56.239,0.0,0.0,0.0,0.0,0.0,0.0,0.964,0.0,0.0,5.964,1.051,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.77,0.0,17.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.868,0.0,15.005,8.219,5.837,0.0,0.0,102.0,126.0,1461.8,3231.3,3231.3,31.799,17.329,5.544,2.267,3.993,0.0,0.0,1.83,6.573,-7.755,0.0,0.0,21.29,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.427,-3.43,1.567,0.119,-0.032,0.0,0.0,-0.224,-0.58,6.698,0.0,0.0,2.216,0.0,-0.0,-0.749,-0.419,-0.061,0.0,0.0,4.352,2.019,1341.9,1264.5,6447.0,2476.3,0.0,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 +house037.xml,87.934,87.934,21.779,21.779,0.0,66.155,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,49.998,0.0,16.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,37.091,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,1457.0,29.538,0.0,0.0,16.714,11.33,0.0,0.0,1.563,7.276,-10.49,0.0,0.0,6.59,0.0,-0.309,14.696,0.0,0.461,0.0,0.0,-6.818,-3.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,1341.9,1264.5,8324.2,3197.3,0.0,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 +house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,5656.5,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 +house039.xml,98.796,98.796,24.025,24.025,74.77,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,5.136,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.084,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,1709.2,49.765,0.0,0.0,14.276,5.416,0.0,0.0,2.519,15.643,-13.75,0.0,0.0,13.85,0.0,-0.039,13.263,0.0,0.557,0.0,0.0,-4.135,-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,2176.1,2226.5,17536.3,5211.3,0.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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 +house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,1751.1,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 +house041.xml,259.077,259.077,47.133,47.133,211.944,0.0,0.0,0.0,0.0,0.0,0.0,4.164,0.0,0.0,2.576,0.254,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,0.0,185.392,0.0,26.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,174.689,0.0,4.652,15.632,5.039,0.0,0.0,105.0,0.0,3249.4,4561.5,4561.5,77.749,23.467,0.0,11.26,44.834,3.482,34.914,3.052,41.616,-22.892,0.0,0.0,4.341,17.423,-0.477,64.05,0.0,2.763,0.0,0.0,-20.286,-10.995,0.0,0.097,-2.224,-0.127,1.602,-0.212,-4.015,11.033,0.0,0.0,-0.321,-5.328,-0.475,-3.481,-1.022,-0.258,0.0,0.0,6.561,2.948,1857.7,1859.4,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 +house042.xml,229.67,229.67,40.068,40.068,189.602,0.0,0.0,0.0,0.0,0.0,0.0,3.871,0.0,0.0,1.81,0.074,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,0.0,165.165,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.395,0.0,2.999,15.632,3.226,0.0,0.0,0.0,0.0,2758.3,3100.3,3100.3,88.214,19.624,0.0,9.205,40.053,4.031,43.891,2.672,34.445,-21.633,0.0,0.0,2.453,14.538,-0.385,56.223,0.0,1.75,0.0,0.0,-19.152,-7.587,0.0,0.2,-1.588,-0.07,2.68,-0.16,-3.134,7.067,0.0,0.0,-0.272,-5.113,-0.382,-2.85,-0.642,-0.145,0.0,0.0,5.557,1.952,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 +house043.xml,158.13,158.13,30.051,30.051,128.078,0.0,0.0,0.0,0.0,0.0,0.0,2.456,0.0,0.0,2.028,0.119,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,0.0,108.178,0.0,19.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,103.04,0.0,3.036,13.084,2.207,0.0,0.0,0.0,0.0,1988.8,2798.1,2798.1,54.664,13.818,0.0,3.172,23.263,2.301,33.889,5.621,23.662,-11.489,0.0,0.0,0.55,9.952,-0.267,28.928,0.0,1.576,0.0,0.0,-14.359,-5.16,0.0,0.032,-0.925,-0.1,1.55,-0.379,-2.383,5.793,0.0,0.0,-0.07,-3.676,-0.267,-1.616,-0.538,-0.147,0.0,0.0,4.463,1.402,1610.9,1574.7,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 +house044.xml,225.894,225.894,43.51,43.51,182.384,0.0,0.0,0.0,0.0,0.0,0.0,4.68,0.0,0.0,2.094,0.198,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,0.0,159.817,0.0,22.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.487,0.0,3.747,13.084,4.452,0.0,0.0,0.0,0.0,3093.4,3553.3,3553.3,80.982,18.914,4.373,6.905,36.478,9.231,19.305,2.751,19.057,-13.33,0.0,0.0,12.909,15.111,-0.46,61.886,0.0,1.435,0.0,0.0,-18.031,-10.257,0.237,0.441,-1.46,-0.13,1.17,-0.123,-1.231,6.794,0.0,0.0,-1.164,-4.927,-0.458,-2.728,-0.484,-0.102,0.0,0.0,5.295,2.697,1610.9,1574.7,12168.1,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 +house045.xml,152.693,152.693,35.232,35.232,117.461,0.0,0.0,0.0,0.0,0.0,0.0,2.782,0.0,0.0,2.392,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,0.0,95.008,0.0,22.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,88.27,0.0,4.026,13.084,4.363,0.0,0.0,0.0,0.0,2317.8,3011.2,3011.2,47.289,12.909,3.57,3.077,15.169,2.298,32.784,1.143,19.974,-13.617,1.045,-0.407,0.086,12.672,-0.187,20.635,0.0,10.931,0.0,0.0,-14.663,-7.028,-0.017,0.001,-1.114,-0.131,0.881,-0.09,-2.086,7.133,-0.068,0.396,-0.013,-4.082,-0.186,-1.184,-0.915,-1.259,0.0,0.0,4.825,2.036,1610.9,1574.7,12168.1,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 +house046.xml,25.037,25.037,25.037,25.037,0.0,0.0,0.0,0.0,0.0,0.0,5.364,0.446,0.267,0.009,3.738,1.038,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,0.0,13.922,0.276,12.84,4.305,0.617,0.0,0.0,0.0,0.0,3842.0,2404.7,3842.0,16.167,13.004,0.0,2.525,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.275,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.814,4.589,0.545,596.8,442.2,5543.5,2208.6,0.0,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,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 +house047.xml,20.762,20.762,14.475,14.475,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.596,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,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,0.0,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.4,968.8,968.8,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.729,-0.554,0.0,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.101,0.032,0.0,0.0,-0.093,0.798,0.0,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.276,0.409,251.7,442.2,5772.6,1524.2,0.0,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,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 +house048.xml,91.642,91.642,39.796,39.796,51.846,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,12.899,3.824,0.0,0.0,0.0,3.691,0.085,0.498,3.017,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,0.0,35.87,0.0,12.637,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.021,0.0,51.358,7.253,2.688,0.0,0.0,0.0,0.0,1535.9,5475.4,5475.4,42.021,33.069,1.024,2.643,12.009,0.0,0.0,0.815,4.922,-2.545,0.0,0.0,0.058,2.032,-0.525,6.797,0.0,4.194,0.0,6.419,-7.415,-1.512,1.323,1.018,9.256,0.0,0.0,0.549,2.757,4.297,0.0,0.0,0.072,10.121,-0.513,0.526,-0.449,1.931,0.0,6.917,11.576,2.179,130.3,817.7,11617.6,3495.1,0.0,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,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 +house049.xml,32.038,32.038,28.541,28.541,3.497,0.0,0.0,0.0,0.0,0.0,5.888,0.036,0.0,0.0,5.819,0.147,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.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.239,0.0,33.85,4.262,1.306,0.0,0.0,0.0,90.0,4432.3,2181.9,4432.3,12.361,17.634,0.0,1.38,4.471,0.0,0.0,0.0,3.895,-7.574,0.0,0.0,0.0,1.446,-0.075,2.582,0.0,1.809,0.0,0.0,-2.437,-0.44,0.0,1.489,6.503,0.0,0.0,0.0,3.26,15.042,0.0,0.0,0.0,2.984,-0.076,-0.307,-3.541,0.516,0.0,0.0,7.53,1.034,728.6,567.4,7487.2,928.5,0.0,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,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 +house050.xml,51.837,51.837,21.855,21.855,29.983,0.0,0.0,0.0,0.0,0.0,0.0,0.275,0.0,0.0,1.904,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,0.0,16.067,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.694,0.0,5.132,8.572,0.0,0.0,0.0,0.0,0.0,1156.7,2604.3,2604.3,11.114,15.388,0.0,4.133,6.508,0.0,0.0,2.031,5.644,-4.221,0.0,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.921,-10.283,-1.232,0.0,-0.288,-0.312,0.0,0.0,-0.391,-0.567,4.041,0.0,0.0,-0.956,0.0,-0.123,-0.557,-1.219,-0.76,0.0,0.568,5.253,0.551,1689.0,437.0,10674.9,2994.2,0.0,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,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 From 495a079201fdca931dd25aae9884846acb74ab02 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 25 Jul 2023 16:10:24 -0700 Subject: [PATCH 074/217] Refactor the download_g_functions method. --- .../g_functions/C_configurations_5m_v1.0.json | 428 -- .../g_functions/L_configurations_5m_v1.0.json | 4008 ----------------- .../LopU_configurations_5m_v1.0.json | 1292 ------ .../Open_configurations_5m_v1.0.json | 436 -- .../g_functions/U_configurations_5m_v1.0.json | 650 --- .../g_functions/rectangle_5m_v1.0.json | 2696 ----------- .../resources/g_functions/util.rb | 66 +- .../g_functions/zoned_rectangle_5m_v1.0.json | 250 + HPXMLtoOpenStudio/resources/hvac_sizing.rb | 12 +- 9 files changed, 295 insertions(+), 9543 deletions(-) diff --git a/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json index a97965ca65..7a73a41bfd 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json @@ -1,430 +1,2 @@ { - "3_3": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 5.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835163556833926, - 3.186859876491747, - 3.519434116875382, - 4.021964695453298, - 4.625373168858599, - 5.6312132037030205, - 7.017734131113874, - 8.301128331626508, - 10.117778789699049, - 11.210610651605974, - 11.97658350477523, - 13.028692005585272, - 13.742865870882119, - 15.311494952074165, - 16.61816940081541, - 16.973709806949675, - 17.29235193442953, - 17.602231685890917, - 17.842328567513636, - 18.047436530328454, - 18.223984896573953, - 18.371696735221363, - 18.48184538753946, - 18.607667583380575, - 18.69355241378807, - 18.73567064555173, - 18.803797793376233 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.111467924224727, - 2.4511928330881476, - 2.7884188390440285, - 3.0449438060593743, - 3.3868270121676414, - 3.6139397405790423, - 3.7971850654668233, - 4.09898609446547, - 4.348346130685021, - 5.0915638566345125, - 6.003348584673112, - 6.3086916925566205, - 6.606373821842277, - 6.918310269197572, - 7.176309365099969, - 7.407231942536658, - 7.614477838086075, - 7.793880568509996, - 7.9307745563154795, - 8.090147260210864, - 8.200733499237527, - 8.255609007591945, - 8.345178145421311 - ], - "5._384._0.0875": [ - 3.488828808642262, - 4.016644434684759, - 4.656097350048849, - 5.724643914605981, - 6.959907389349166, - 8.718829385823268, - 10.692998326451791, - 12.268677784338754, - 14.289104442978173, - 15.439317116143103, - 16.228160365480026, - 17.29573152921697, - 18.01381604634192, - 19.58236916077018, - 20.886702784603077, - 21.241361732916197, - 21.559695690469507, - 21.869461495310855, - 22.109738789160478, - 22.315010727642687, - 22.491842188196383, - 22.639906318278136, - 22.7503158438333, - 22.87650847004607, - 22.962608610868013, - 23.00480252216641, - 23.07299590032039 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125447, - 2.162243131656476, - 2.506080868699679, - 2.8001338633225847, - 3.143164725862182, - 3.5104718549266534, - 3.8548454175422537, - 4.451018321828258, - 4.911677689209101, - 5.297016704953428, - 5.926406904662141, - 6.42363687282888, - 7.719212181270854, - 8.980633064022445, - 9.346857075629215, - 9.682185873929486, - 10.014312896496607, - 10.275472721434394, - 10.500494849414343, - 10.695612308471507, - 10.859690701170845, - 10.982362439165625, - 11.12255814267523, - 11.218429945956188, - 11.265557218538143, - 11.341930946657229 - ], - "5._96._0.075": [ - 2.2092619209324713, - 2.5553055502990434, - 2.8518822508487425, - 3.1999858528748244, - 3.522272820624551, - 3.998433491444854, - 4.675890638522394, - 5.397602630870329, - 6.630658201542149, - 7.489891206956371, - 8.13793378006344, - 9.080671485080156, - 9.74838555993002, - 11.273174243711194, - 12.580380605681448, - 12.940043372325281, - 13.262876866410467, - 13.577523541572692, - 13.821599056356833, - 14.030346435181029, - 14.21009292948024, - 14.36049327970005, - 14.472700352633982, - 14.600821880462632, - 14.688349595590939, - 14.731324538344229, - 14.800941414503153 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "3_4": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351656362397346, - 3.1870222148932092, - 3.520674363862824, - 4.0264279051145735, - 4.637320591731866, - 5.681918628105053, - 7.195928057608826, - 8.667652969634457, - 10.835407948040462, - 12.17313876658168, - 13.120915089648694, - 14.431210692905513, - 15.324414951512091, - 17.287810340267846, - 18.921004062740323, - 19.36491546608122, - 19.762051084570377, - 20.147743937846332, - 20.44602162176634, - 20.70070964136171, - 20.919651129829095, - 21.102616404070183, - 21.23902136310015, - 21.394731378971578, - 21.50103309397409, - 21.553187409637513, - 21.637628767055283 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961542, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247276, - 2.4511928331220942, - 2.788419317683002, - 3.044973112248845, - 3.3874436711912677, - 3.615661212012368, - 3.800050369353508, - 4.104157202838955, - 4.356442100688683, - 5.12205707751613, - 6.104951371039292, - 6.446639974674841, - 6.785677489291673, - 7.14704327959393, - 7.450449873105475, - 7.725362085869953, - 7.974617851085698, - 8.192173659856739, - 8.359201726136602, - 8.554505711034817, - 8.690545155519857, - 8.758244872089577, - 8.869012063214859 - ], - "5._384._0.0875": [ - 3.49036660596901, - 4.021766894917606, - 4.670398135472843, - 5.785876730623253, - 7.138255086355541, - 9.165208843721057, - 11.541605088064465, - 13.48737679446265, - 16.016925846737212, - 17.466322475408763, - 18.46211624061257, - 19.809514025003885, - 20.71551095088742, - 22.689183383189555, - 24.325042046727248, - 24.769175716459035, - 25.16730866035988, - 25.554315529732776, - 25.854096076383122, - 26.110133317947074, - 26.330508557731115, - 26.51489398108105, - 26.652379210936964, - 26.809464413649252, - 26.91666630006337, - 26.96922193140444, - 27.05422647074861 - ], - "5._48._0.075": [ - 1.5268463243731403, - 1.8679037053125447, - 2.1622431316564747, - 2.5060808688610527, - 2.8001342903818083, - 3.1432338679800567, - 3.5114733483441682, - 3.857857357850316, - 4.459751399181277, - 4.9307123214898665, - 5.331458857871278, - 6.002224412369842, - 6.547004846721879, - 8.022439927539539, - 9.52315275020389, - 9.968067991414454, - 10.377948331831623, - 10.785910363406488, - 11.107625004661795, - 11.385384317551141, - 11.626367553184362, - 11.828974735668197, - 11.98043089448376, - 12.153298933490644, - 12.271491966315507, - 12.329622690516775, - 12.42391440421234 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235626058277, - 2.851913830622353, - 3.2001519267074148, - 3.523359938286808, - 4.002550681065331, - 4.688607687930474, - 5.435519397369628, - 6.769739711868012, - 7.743407290903215, - 8.498819340733247, - 9.625393320231394, - 10.439696691725631, - 12.336240074219331, - 13.984730545681584, - 14.440147371236215, - 14.848759407552242, - 15.246859877582578, - 15.555285881043151, - 15.818798499910438, - 16.04531949178444, - 16.234511881534374, - 16.375485158212747, - 16.536146203601948, - 16.645795872234547, - 16.699618718001776, - 16.78681672438809 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json index 1e85d92446..7a73a41bfd 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json @@ -1,4010 +1,2 @@ { - "3_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 5.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835159810088887, - 3.186553817896705, - 3.516527838262404, - 4.004329837473649, - 4.563116154725879, - 5.422730649791384, - 6.515803491910567, - 7.482956710803077, - 8.821023313877978, - 9.6182191663194, - 10.175664703095364, - 10.941363073004217, - 11.461472146417226, - 12.608257361815083, - 13.568342463717922, - 13.830179312701365, - 14.065319930740815, - 14.294348922588275, - 14.472150360525662, - 14.62411713920069, - 14.755089916843, - 14.86479421584671, - 14.946616058533072, - 15.040137216786091, - 15.103960182529738, - 15.135243749367413, - 15.185795927543893 - ], - "5._24._0.075": [ - 0.8740013793970969, - 1.1957934696806858, - 1.4813667488882372, - 1.819785366250676, - 2.111404434180714, - 2.4510705251726415, - 2.7881845096187328, - 3.044509593245944, - 3.3847903095492087, - 3.6083035325207624, - 3.7863073570514962, - 4.073420909415854, - 4.303528018870766, - 4.946650857734783, - 5.6693569965691, - 5.9013084226992705, - 6.123950179738185, - 6.354536856156806, - 6.543591291544423, - 6.712003311328731, - 6.862701672318173, - 6.993032655361014, - 7.092573856085612, - 7.208783610032469, - 7.289678619678314, - 7.329892641652891, - 7.395672028234926 - ], - "5._384._0.0875": [ - 3.485048260731776, - 3.9951071279520405, - 4.581851301847068, - 5.484808169649971, - 6.455104578968857, - 7.775372616018783, - 9.22199936245641, - 10.365908886904977, - 11.82883492358668, - 12.661581403425886, - 13.23319009931225, - 14.008316381993554, - 14.530522093813575, - 15.675495110327816, - 16.63142732476554, - 16.89179450610136, - 17.125793127388665, - 17.353729855179026, - 17.530765771001807, - 17.682044232641264, - 17.812464911292064, - 17.921742819595384, - 18.003230911309156, - 18.096394037225632, - 18.159940527464432, - 18.191068435625677, - 18.24133759731324 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125445, - 2.162243131656477, - 2.5060808684092084, - 2.800133094426295, - 3.1430374163007104, - 3.5082169030632127, - 3.8450275342479676, - 4.406534046169518, - 4.816288079387438, - 5.143866301845898, - 5.65606519988429, - 6.046495444259167, - 7.030090060237974, - 7.966007100338916, - 8.235929869051896, - 8.483170856797145, - 8.728158996337275, - 8.921112444405356, - 9.087562420507037, - 9.232205464733582, - 9.354129986505788, - 9.445427943510513, - 9.550041570574544, - 9.621668042054347, - 9.656881667288603, - 9.713926996862321 - ], - "5._96._0.075": [ - 2.2092619209324704, - 2.555305549083987, - 2.851880496820393, - 3.199784898670547, - 3.52007441535427, - 3.984136432946034, - 4.613165252686054, - 5.236232350959428, - 6.22360987846198, - 6.880193152459714, - 7.366198391381113, - 8.065015871363219, - 8.556594005322559, - 9.676987132273267, - 10.639766269340903, - 10.905167610733255, - 11.144072739107475, - 11.377399385181416, - 11.558888935284472, - 11.714267141061399, - 11.848328964404903, - 11.960713056407453, - 12.044610223908563, - 12.14053053593925, - 12.206065808619332, - 12.23822816706263, - 12.290272439934673 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 5.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351565340840654, - 3.186294678741936, - 3.5144109644730803, - 3.995439251104943, - 4.540054979569839, - 5.353103468826478, - 6.338557682853676, - 7.175644263582237, - 8.300018094772028, - 8.95825975403952, - 9.415339886150417, - 10.040686729759392, - 10.464389965358135, - 11.398422195838442, - 12.181295381120544, - 12.394954611632901, - 12.587053316477114, - 12.774322378435347, - 12.9198790390213, - 13.04432381553385, - 13.151666275296192, - 13.24164740649804, - 13.308770317159306, - 13.385528170620196, - 13.437906679454773, - 13.463572869649013, - 13.505022546131494 - ], - "5._24._0.075": [ - 0.874001379397096, - 1.1957934696806856, - 1.481366748888237, - 1.8197853662506764, - 2.1114044341807157, - 2.451070525119184, - 2.7881837559656337, - 3.044463314569365, - 3.3837752049736625, - 3.6052626282529983, - 3.7808850342249296, - 4.062850526656146, - 4.287173959398183, - 4.900757002121434, - 5.559857029797825, - 5.764587946944072, - 5.958448455056103, - 6.1566606616146045, - 6.317427227631378, - 6.4594026896501004, - 6.585572806050645, - 6.694097761730789, - 6.776645767697963, - 6.872735660118553, - 6.939435155205178, - 6.972521380956327, - 7.02653942906457 - ], - "5._384._0.0875": [ - 3.4823994761887773, - 3.9848262284880747, - 4.555179718646517, - 5.404715728587619, - 6.277318639068673, - 7.415941427751029, - 8.623924248681595, - 9.562805804136447, - 10.753149302763997, - 11.428110159901493, - 11.890961006550969, - 12.518785405045108, - 12.941903106666471, - 13.871456847280529, - 14.649379566430458, - 14.861481795023234, - 15.05227676777121, - 15.238263204563578, - 15.382850967157188, - 15.506425265511714, - 15.613023847945573, - 15.70238848204994, - 15.76903100298123, - 15.845242134255502, - 15.89721792111516, - 15.922670854730866, - 15.963754000577815 - ], - "5._48._0.075": [ - 1.5268359332879176, - 1.867883938514738, - 2.1622087383456443, - 2.506015109960689, - 2.8000188522237432, - 3.1427108866736058, - 3.5060986477767258, - 3.838544450552084, - 4.387051823461636, - 4.779681099553516, - 5.087048257250629, - 5.555234983642199, - 5.902478640976778, - 6.746305648050327, - 7.520034677798101, - 7.739757236794212, - 7.939975736139153, - 8.13764341906379, - 8.292951958392333, - 8.426822026199208, - 8.543135382483195, - 8.641236746959452, - 8.714776488918025, - 8.799196310069604, - 8.857085366459035, - 8.885567456031344, - 8.93174626548206 - ], - "5._96._0.075": [ - 2.2092619209324695, - 2.5553055480208147, - 2.8518789626125645, - 3.1996131291742733, - 3.5184210872676602, - 3.976538634666165, - 4.590026741342543, - 5.182023608336045, - 6.081979246107727, - 6.658142816068973, - 7.075882331699295, - 7.666879556882379, - 8.077358544183552, - 9.003240254562144, - 9.793289043391548, - 10.010580720922956, - 10.206299718151746, - 10.397526436776573, - 10.546421057404947, - 10.673923694180173, - 10.784036508256804, - 10.876432045080968, - 10.945427632519772, - 11.02437236750136, - 11.078310702275603, - 11.104773400439738, - 11.147566477076325 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351619940963437, - 3.1867265785500734, - 3.517939064186244, - 4.010138551230323, - 4.576291588076084, - 5.455044208906557, - 6.600975167484662, - 7.649772284219236, - 9.14934968837866, - 10.063857164096989, - 10.710146938865867, - 11.604140247325471, - 12.214402814710182, - 13.56347254307444, - 14.693817434625865, - 15.00208648237771, - 15.278653289269412, - 15.547835844558206, - 15.756579124539229, - 15.93494441325526, - 16.088544751837524, - 16.217104047249517, - 16.312972046145962, - 16.42249378959499, - 16.497241448969145, - 16.533890372501336, - 16.593147644087402 - ], - "5._24._0.075": [ - 0.8740059532267962, - 1.1958031759615424, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247276, - 2.4511928330626853, - 2.7884184798647675, - 3.0449213397455503, - 3.3862129873393996, - 3.611462070674867, - 3.7914510567110744, - 4.082678848046977, - 4.31684348037127, - 4.9772959513826285, - 5.738584084401636, - 5.989253979063876, - 6.23334177329425, - 6.489858040662278, - 6.703119888040274, - 6.895278018666497, - 7.068988968785528, - 7.220519810348074, - 7.336979263921885, - 7.473656308122835, - 7.569188413539111, - 7.61680335666292, - 7.694850505823601 - ], - "5._384._0.0875": [ - 3.4868221254020995, - 4.001784930550749, - 4.596673773043294, - 5.521665948466438, - 6.540439532142497, - 7.977512581636011, - 9.610904130639307, - 10.9333347273021, - 12.648054089886527, - 13.631008058550055, - 14.307291859475942, - 15.224995190752944, - 15.843459817922156, - 17.19766002629546, - 18.326147574478423, - 18.6332414737864, - 18.908992063919293, - 19.177410310732977, - 19.38569525993438, - 19.56364167675798, - 19.716962108500727, - 19.845358360487722, - 19.941096166408666, - 20.05051971773102, - 20.125166859502414, - 20.161741855562525, - 20.22083721520326 - ], - "5._48._0.075": [ - 1.5268463243731434, - 1.8679037053125458, - 2.1622431316564765, - 2.506080868578651, - 2.800133542870094, - 3.1431104909437595, - 3.5093422402107293, - 3.8488065872303174, - 4.417007137769795, - 4.833524538210346, - 5.168561858065412, - 5.698283073774795, - 6.108422194827479, - 7.16973404414734, - 8.217325109845467, - 8.525494050029078, - 8.809680065211936, - 9.092885964465491, - 9.316854548088468, - 9.510655082390995, - 9.679389102065697, - 9.821789543310542, - 9.928514440070055, - 10.050817206373901, - 10.134608666237124, - 10.175835404712222, - 10.242681818413955 - ], - "5._96._0.075": [ - 2.209261920932471, - 2.555305549792769, - 2.8518815196256133, - 3.1998994120329356, - 3.5211766712637163, - 3.9891348905024158, - 4.626334080989386, - 5.262063095260086, - 6.289867551825011, - 6.992805162264005, - 7.523625491011389, - 8.301141948345355, - 8.857142967903947, - 10.144929297532864, - 11.26645577577747, - 11.577167894037178, - 11.856964508026879, - 12.130317747234228, - 12.342847312936236, - 12.524813135310088, - 12.681713811351326, - 12.813146370843763, - 12.911244963986244, - 13.023325280110544, - 13.09990529951879, - 13.137501383651404, - 13.19837972697988 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351598100889333, - 3.186553818148467, - 3.5165275544690586, - 4.004177645649153, - 4.560394454126767, - 5.404528488427205, - 6.4653163271605445, - 7.404585892224184, - 8.713630746034905, - 9.499265828769046, - 10.050772272258875, - 10.81060963096323, - 11.327939670983994, - 12.470999774199317, - 13.429543110934176, - 13.691116415222478, - 13.926042423824137, - 14.154881488399482, - 14.332539416005197, - 14.484387322063652, - 14.615254941541213, - 14.724867276896992, - 14.806619383894027, - 14.900056480632026, - 14.963821589679382, - 14.995077134890897, - 15.045585208373184 - ], - "5._24._0.075": [ - 0.8740013793970969, - 1.1957934696806858, - 1.4813667488882372, - 1.819785366250676, - 2.111404434180714, - 2.451070525172642, - 2.7881845096187314, - 3.0445095932465436, - 3.384790296235433, - 3.608300621406263, - 3.786273721257274, - 4.07301640831534, - 4.302065179681548, - 4.935772034824665, - 5.638206968148548, - 5.863131365768318, - 6.079316125340249, - 6.30377249695898, - 6.4883945079474055, - 6.653403306693699, - 6.801559221982691, - 6.930117662415666, - 7.028593162702971, - 7.14390134679195, - 7.224391738886363, - 7.2644765822766555, - 7.330156502198911 - ], - "5._384._0.0875": [ - 3.485055176339726, - 3.9948779409843476, - 4.578180805322111, - 5.463181880462131, - 6.404471751073209, - 7.687504422577824, - 9.105446021739699, - 10.235251652057219, - 11.687801303678873, - 12.517170268501882, - 13.087167190880338, - 13.860738320190483, - 14.382188791054638, - 15.525936111919222, - 16.481052762689274, - 16.741212284529773, - 16.975012236622444, - 17.20274676321629, - 17.379613992616175, - 17.530745227021544, - 17.66103175266864, - 17.77019117769277, - 17.851589168090307, - 17.944645188758894, - 18.008118008718142, - 18.039210073885545, - 18.089422568697874 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125445, - 2.162243131656477, - 2.5060808684092075, - 2.800133094426294, - 3.143037416319103, - 3.5082167989791517, - 3.8449979972918684, - 4.405045143172387, - 4.810218367067714, - 5.13140424265868, - 5.630094799486316, - 6.008744769770279, - 6.96377483838737, - 7.880183754499313, - 8.146223448273616, - 8.390584335792338, - 8.633328634331779, - 8.824925283462456, - 8.990473257774013, - 9.134529390090313, - 9.256094738091658, - 9.34719690795095, - 9.451661694965424, - 9.523231617056346, - 9.558432117031195, - 9.615476530679963 - ], - "5._96._0.075": [ - 2.2092619209324704, - 2.555305549083986, - 2.8518804968203932, - 3.1997848987366826, - 3.5200743285659075, - 3.9840494720502555, - 4.610370935559913, - 5.223164440535002, - 6.182812654544711, - 6.819567758248685, - 7.292181190209109, - 7.9747459149291355, - 8.457294789286404, - 9.563952017788186, - 10.520943224372829, - 10.785451486715994, - 11.02375683154072, - 11.25665338358628, - 11.437898537738, - 11.593116330195803, - 11.72707190614617, - 11.839385472209404, - 11.923238750645988, - 12.019114387336861, - 12.084624468367993, - 12.11677662922516, - 12.16880739574567 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351635541037297, - 3.186849979510023, - 3.518947187268089, - 4.014292028071848, - 4.585693984965083, - 5.47662620581322, - 6.65252383238329, - 7.752302566384251, - 9.369687760612193, - 10.379876959713483, - 11.102615861697226, - 12.111419104447132, - 12.804768700638656, - 14.344764454967244, - 15.63853918222764, - 15.991628852186004, - 16.308165133612942, - 16.61607825040545, - 16.85462331913323, - 17.058409505600206, - 17.23376895988989, - 17.380433703881895, - 17.489785106660282, - 17.61465059133886, - 17.69987594451136, - 17.741673732606074, - 17.809295202974706 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.111467924224727, - 2.4511928330881463, - 2.788418838872571, - 3.04494338890382, - 3.3866968888717226, - 3.6129109162980844, - 3.794019913702326, - 4.087495314485644, - 4.323798689445163, - 4.992415353091028, - 5.770450347075793, - 6.029980354006727, - 6.284950578872866, - 6.555689070980721, - 6.783272504606113, - 6.990486322674785, - 7.179712465107697, - 7.346362483190661, - 7.475512469634818, - 7.6282903330976355, - 7.7359046761766255, - 7.7898277793711825, - 7.878657540979085 - ], - "5._384._0.0875": [ - 3.488090242741065, - 4.006562640195193, - 4.60723236457645, - 5.545948102354269, - 6.592153924974582, - 8.103802003990616, - 9.878074970451863, - 11.35124307566803, - 13.294081558009292, - 14.418478695359125, - 15.194816201875662, - 16.249993114896373, - 16.961811500838287, - 18.5193268308439, - 19.815465143210997, - 20.167929527103556, - 20.48415585252447, - 20.791767580202052, - 21.030250675169665, - 21.233957239087434, - 21.40936902954627, - 21.556186574615282, - 21.665651453469863, - 21.79072861511742, - 21.87606378193884, - 21.917885753753957, - 21.9854913646596 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125447, - 2.162243131656476, - 2.50608086869968, - 2.8001338631870927, - 3.143162687170529, - 3.5101461072902103, - 3.851507302333954, - 4.424494935538146, - 4.845640040874877, - 5.185333911685885, - 5.725076038864624, - 6.146257385216429, - 7.255415003269011, - 8.384583170407717, - 8.723638670921712, - 9.038763241579039, - 9.355055132144983, - 9.606600705756405, - 9.825219506898199, - 10.016163098004855, - 10.177674106850537, - 10.298925671761397, - 10.437998985474305, - 10.533399804001847, - 10.580393534633425, - 10.656683544738016 - ], - "5._96._0.075": [ - 2.2092619209324713, - 2.555305550299042, - 2.8518822502007706, - 3.1999812074434995, - 3.5219640505794545, - 3.992708163473018, - 4.635730507333138, - 5.279686565712511, - 6.3304273153770065, - 7.060808440787523, - 7.620464860508507, - 8.453419308198125, - 9.058631507594365, - 10.486053680311809, - 11.75115282217733, - 12.104190661029175, - 12.422525146114898, - 12.733857115503065, - 12.975953848100746, - 13.183319218679237, - 13.36206352483977, - 13.511720897506361, - 13.623415056183813, - 13.750958288341046, - 13.838116051517467, - 13.880922733835177, - 13.950287628918725 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351619940963793, - 3.1867265787598766, - 3.517938827823941, - 4.010011985064884, - 4.5739773106417, - 5.437822339492953, - 6.545092002654102, - 7.553221051849516, - 9.003343860312144, - 9.895835631208817, - 10.530206286769207, - 11.412004908900458, - 12.016353640827127, - 13.357460812438733, - 14.484648029499324, - 14.792415778035394, - 15.06859690120631, - 15.337456768724529, - 15.545968489710484, - 15.724147736351181, - 15.877587457301269, - 16.006008240009738, - 16.101771983474293, - 16.211168019203264, - 16.285829696281947, - 16.32243726603191, - 16.381629911143744 - ], - "5._24._0.075": [ - 0.8740059532267962, - 1.1958031759615424, - 1.4813847491413075, - 1.8198213217004346, - 2.1114679242247276, - 2.4511928330626853, - 2.7884184798647667, - 3.044921339746049, - 3.386212976218488, - 3.611459640524993, - 3.791422955323033, - 4.082338928094801, - 4.315596738504908, - 4.967209808569391, - 5.705018411233426, - 5.946080600381087, - 6.1806949483592994, - 6.427516201125567, - 6.633276029335952, - 6.819305409184126, - 6.98817118078535, - 7.136139921672738, - 7.250357372116546, - 7.385045152874297, - 7.479639891207736, - 7.52693886121219, - 7.6047125206766095 - ], - "5._384._0.0875": [ - 3.486827853668699, - 4.0015945570979445, - 4.593531379709532, - 5.500840072661439, - 6.484526342125646, - 7.866528502324645, - 9.449441829715646, - 10.74421352705269, - 12.437240427641948, - 13.412920626045588, - 14.085720036843934, - 15.000102531413289, - 15.61699255480704, - 16.968812473544713, - 18.095885325866256, - 18.40264023974615, - 18.678069136815523, - 18.946162608681455, - 19.154176981572345, - 19.3318875142385, - 19.484992453533845, - 19.6131977652149, - 19.708790150572465, - 19.818040238735623, - 19.892567943897237, - 19.929084838811917, - 19.98808843600117 - ], - "5._48._0.075": [ - 1.5268463243731434, - 1.8679037053125458, - 2.1622431316564765, - 2.50608086857865, - 2.8001335428700935, - 3.143110490959085, - 3.509342153515457, - 3.8487820134226576, - 4.415752879182001, - 4.828171133915402, - 5.157007744221532, - 5.672089446511082, - 6.067867329566422, - 7.0885368126822135, - 8.10262886356592, - 8.403445947230162, - 8.681935473725426, - 8.960555367197395, - 9.181675821104163, - 9.373550417604223, - 9.541014785108565, - 9.682632990789568, - 9.788932857974942, - 9.91091857517242, - 9.994593769790587, - 10.035795743265334, - 10.102647420012506 - ], - "5._96._0.075": [ - 2.209261920932471, - 2.555305549792769, - 2.851881519625615, - 3.199899412088046, - 3.5211765989687644, - 3.9890625780338977, - 4.623956644995129, - 5.250032184453519, - 6.246224197620236, - 6.922093841239779, - 7.432596076880929, - 8.18314583641468, - 8.722891639937862, - 9.98382672348065, - 11.093173116655235, - 11.401945286269772, - 11.68044551814865, - 11.952878676979147, - 12.16490061390705, - 12.346545044907298, - 12.5032471551335, - 12.634560806152546, - 12.732592762246725, - 12.84461418050184, - 12.92116759733883, - 12.95875578664787, - 13.019628147176219 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351647241103906, - 3.1869425304997328, - 3.51970333669905, - 4.017409381342081, - 4.592761141983563, - 5.492814504744574, - 6.689495588306474, - 7.8236525128326715, - 9.527525312022664, - 10.614603364274714, - 11.401982038305256, - 12.511925549354828, - 13.280918331600573, - 14.999846852017127, - 16.450230085945222, - 16.84660744374958, - 17.2017625307316, - 17.54711114586818, - 17.81443528245305, - 18.042770979470138, - 18.239120326806848, - 18.40322953076705, - 18.525569050833656, - 18.665201223233996, - 18.76051231737524, - 18.807269427324215, - 18.882957131489313 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247267, - 2.451192833107242, - 2.7884191081284255, - 3.0449599257755176, - 3.387059821766809, - 3.6139976649246206, - 3.7959470619006033, - 4.09111042131428, - 4.329021919919711, - 5.003771827000038, - 5.793598078690887, - 6.058987846887826, - 6.321187442146675, - 6.601566177332709, - 6.839219231921882, - 7.057429914366919, - 7.258473533262548, - 7.43713197332386, - 7.5767508041460765, - 7.743347488644804, - 7.861753363092563, - 7.921462645617128, - 8.020437964096304 - ], - "5._384._0.0875": [ - 3.489041936451172, - 4.01014984332906, - 4.615172066413848, - 5.564124448549441, - 6.629284244557979, - 8.191844278630679, - 10.072188129385793, - 11.670538312269553, - 13.817076524047918, - 15.073402620816044, - 15.944756726162234, - 17.131960879173562, - 17.934129706775984, - 19.689200170926988, - 21.148477098737533, - 21.545090505310306, - 21.900647913084416, - 22.246301873819924, - 22.51404530528171, - 22.74270245708443, - 22.93948480727029, - 23.10410212916965, - 23.226828055981198, - 23.36701770435847, - 23.462672886832742, - 23.5095633416657, - 23.585397452576547 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808687904523, - 2.8001341034248415, - 3.143201834369682, - 3.5107490375662254, - 3.8535335778335797, - 4.430120195636192, - 4.854747329748554, - 5.197911626569433, - 5.744865583427041, - 6.173591787333763, - 7.314996355605043, - 8.50396883318438, - 8.867593308757472, - 9.208173124541617, - 9.552610949607907, - 9.82829859058839, - 10.069146245335443, - 10.280358864879192, - 10.45957904566619, - 10.594447834183308, - 10.749391084662857, - 10.85587315294633, - 10.908405588879434, - 10.993817239597721 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.555323562310493, - 2.8519134039308645, - 3.200100594799831, - 3.522658579361698, - 3.995626535172526, - 4.643441155242728, - 5.294436652800354, - 6.3645711099416005, - 7.1170009436273265, - 7.700057616263231, - 8.580320198222447, - 9.229573083343842, - 10.792537341465938, - 12.207831461901034, - 12.60649463115101, - 12.966949536076955, - 13.320198130761362, - 13.59521676678403, - 13.830864477918645, - 14.033975422891942, - 14.203959900859317, - 14.330753464309911, - 14.475391667175074, - 14.574171669945711, - 14.62267704206443, - 14.701264511137577 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351635541037608, - 3.1868499796898493, - 3.5189469846624415, - 4.014183492659861, - 4.583708083053397, - 5.461715757777267, - 6.601623249728696, - 7.658584927950787, - 9.216613133727828, - 10.197383793482373, - 10.903262548575018, - 11.894051792753755, - 12.578381220493243, - 14.105975224106487, - 15.394881514482872, - 15.747228252624502, - 16.063219652495572, - 16.370698906675358, - 16.608948961682056, - 16.812506097301203, - 16.987674113764264, - 17.134177275237697, - 17.243408448711214, - 17.36812947732773, - 17.453257008203344, - 17.495008218336054, - 17.56255761015432 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.111467924224727, - 2.4511928330881463, - 2.788418838872571, - 3.044943388904247, - 3.386696879339401, - 3.612908833286856, - 3.7939958259040196, - 4.0872038732874625, - 4.322729396286495, - 4.983716791339078, - 5.740369049180017, - 5.990395033964955, - 6.235528344495617, - 6.495640318273675, - 6.714550360958844, - 6.914311374440025, - 7.0973542539053325, - 7.259239665407983, - 7.3852579206322275, - 7.5351290987870065, - 7.6413108865337716, - 7.6947328285506895, - 7.783103655228981 - ], - "5._384._0.0875": [ - 3.488095156501502, - 4.006399345464358, - 4.604535132364228, - 5.5278575486714745, - 6.541275284003912, - 7.994189724754988, - 9.706032011562456, - 11.141012660023293, - 13.051581036303604, - 14.164689560330734, - 14.935547656183253, - 15.98550333378015, - 16.694871535291153, - 18.248857801447702, - 19.543090637863447, - 19.895126302166243, - 20.210950770168594, - 20.518161337793057, - 20.75631158400182, - 20.959728645723647, - 21.13487563231254, - 21.28145802163463, - 21.390743634895472, - 21.515606343851896, - 21.60079378134247, - 21.64254392687713, - 21.710036249756072 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125447, - 2.162243131656476, - 2.50608086869968, - 2.800133863187093, - 3.143162687183668, - 3.510146032977504, - 3.851486234869099, - 4.423418808254974, - 4.841039169137343, - 5.175351784586534, - 5.702032657046611, - 6.109746622877348, - 7.176817558232127, - 8.265533199716703, - 8.594814502895684, - 8.902041395553331, - 9.21173151501808, - 9.459041687499841, - 9.674723445583117, - 9.8636880666599, - 10.023957625454718, - 10.144528104107826, - 10.283090712695762, - 10.378302067205007, - 10.425253947542222, - 10.501549128861813 - ], - "5._96._0.075": [ - 2.2092619209324713, - 2.5553055502990425, - 2.851882250200772, - 3.199981207490738, - 3.521963988610402, - 3.9926461588047273, - 4.633690222567384, - 5.269310577474503, - 6.29127521478352, - 6.994485603883118, - 7.532117737988499, - 8.333550322898612, - 8.918291861672152, - 10.308884719512793, - 11.555693075610362, - 11.905685145416689, - 12.221962792694049, - 12.531827448375841, - 12.773119438831772, - 12.979982591218523, - 13.158427246535258, - 13.307916541023099, - 13.419523920259403, - 13.54700142138784, - 13.634138120682078, - 13.67694316664571, - 13.746316629344221 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351656341162443, - 3.187014514762691, - 3.520291486773915, - 4.019835321192123, - 4.598266622698777, - 5.505454028836613, - 6.718183339942295, - 7.877803051640495, - 9.647148834303554, - 10.796037429825848, - 11.637646112585644, - 12.835795798992232, - 13.672995839009618, - 15.558519233043606, - 17.158644860019837, - 17.596820727154633, - 17.989314931310613, - 18.370894787652666, - 18.666061837171448, - 18.918155150709214, - 19.134800586637315, - 19.3157612855321, - 19.4506456344601, - 19.604529232070114, - 19.709576863723935, - 19.761124726874975, - 19.844614147264735 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961542, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247276, - 2.451192833122094, - 2.7884193175496454, - 3.0449727877886135, - 3.387342106905034, - 3.614842981656967, - 3.7974462545039946, - 4.093923804886469, - 4.333088516238414, - 5.012629847566414, - 5.811605131109765, - 6.081381061842051, - 6.348905713653719, - 6.636337726934179, - 6.8814169748294916, - 7.107876995589846, - 7.318020105585717, - 7.506216063853771, - 7.65441346118814, - 7.832750071040182, - 7.9606954898502496, - 8.02566686921245, - 8.134136526564006 - ], - "5._384._0.0875": [ - 3.4897825017823827, - 4.012942218550658, - 4.621359193258554, - 5.578322152906584, - 6.658103610011862, - 8.258476102148522, - 10.220317120650588, - 11.922102910445952, - 14.248765134856342, - 15.627151473698424, - 16.588190742617957, - 17.901678138130936, - 18.791085580337878, - 20.738014708322556, - 22.35620109623612, - 22.79584390797119, - 23.189688747167637, - 23.572339702985243, - 23.868493942991787, - 24.121369011731456, - 24.338869924443532, - 24.520725000126713, - 24.656290594204787, - 24.811103470252988, - 24.916745938877533, - 24.968543501521534, - 25.05235146125909 - ], - "5._48._0.075": [ - 1.5268463243731403, - 1.8679037053125447, - 2.1622431316564747, - 2.506080868861052, - 2.800134290276426, - 3.143232282208476, - 3.5112180010951595, - 3.8551100080648077, - 4.434500906992661, - 4.861845313703254, - 5.207719926782502, - 5.760292289421438, - 6.19480129242409, - 7.360177468903957, - 8.594267365829415, - 8.977436239435578, - 9.338848676074324, - 9.707011208121951, - 10.003620570805541, - 10.264179124952287, - 10.493728302429277, - 10.689245230255956, - 10.836815211720717, - 11.006734716444713, - 11.123785139215956, - 11.18163852672453, - 11.275872429399685 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.555323562605826, - 2.8519138301183578, - 3.200148312708099, - 3.5231179843459515, - 3.997713571197222, - 4.648946731972666, - 5.304778387572102, - 6.3875560662013235, - 7.153780774925822, - 7.751368037561406, - 8.661505749612454, - 9.339860773416898, - 10.998248277412017, - 12.529357348192274, - 12.964929601649578, - 13.359875109914372, - 13.747832568461765, - 14.050283254183977, - 14.309725536184782, - 14.533433972885382, - 14.720672244530821, - 14.860366248183073, - 15.019681090729964, - 15.128519842200282, - 15.181991724035061, - 15.268689322782881 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835164724110417, - 3.1869425306570798, - 3.5197031594129715, - 4.017314379991817, - 4.591021603689052, - 5.479729641024135, - 6.644309378444446, - 7.737970024348029, - 9.379993244536983, - 10.433420486716908, - 11.200425127235306, - 12.287589914945956, - 13.044739309289822, - 14.746864287817836, - 16.19057769487181, - 16.585952387863326, - 16.940398431603573, - 17.285204171607447, - 17.552177184662114, - 17.780249567982576, - 17.97638703214405, - 18.140322370839712, - 18.26253450503826, - 18.402014814708053, - 18.49722448937183, - 18.54393394869935, - 18.61954885642619 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247267, - 2.451192833107242, - 2.7884191081284264, - 3.0449599257758924, - 3.3870598134259553, - 3.6139958422729856, - 3.7959259844899678, - 4.090855355954206, - 4.328085902632857, - 4.99614454316554, - 5.767031415914315, - 6.0237554258262636, - 6.276742135957489, - 6.546823055703472, - 6.775729899547993, - 6.98611942839191, - 7.18040070054066, - 7.353622299934254, - 7.489517731956845, - 7.652497774439099, - 7.769031455414064, - 7.828059947783528, - 7.926378215590658 - ], - "5._384._0.0875": [ - 3.4890462383357663, - 4.010006885815276, - 4.612808844139491, - 5.548240506790002, - 6.584128859379111, - 8.09058484853538, - 9.904229934763753, - 11.457464651399238, - 13.562809669980599, - 14.80398140705099, - 15.667833682263575, - 16.847832039219643, - 17.646624098227893, - 19.396979858302497, - 20.853901338859608, - 21.25001621145673, - 21.605113826953453, - 21.950315168563716, - 22.21768555179701, - 22.44601932527093, - 22.64250590281244, - 22.806860239293698, - 22.92938559052063, - 23.069334725443337, - 23.164824226277748, - 23.211634194381308, - 23.287341556593137 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808687904523, - 2.8001341034248406, - 3.143201834381177, - 3.5107489725409935, - 3.8535151410695883, - 4.4291777964576315, - 4.850716379011286, - 5.189159426973418, - 5.72460050465167, - 6.141295114985283, - 7.243236222409192, - 8.389901558885215, - 8.742397860656046, - 9.073647118597224, - 9.409985313683212, - 9.68029774197312, - 9.917308444028043, - 10.125867245850877, - 10.303382760527716, - 10.43730039875768, - 10.59151829692153, - 10.697723425382671, - 10.750190081686736, - 10.835597135841203 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235623104933, - 2.8519134039308662, - 3.2001005948411696, - 3.5226585251201725, - 3.995572245846752, - 4.641652506578933, - 5.285325415238077, - 6.329876603947273, - 7.057147548559297, - 7.618802589602592, - 8.466546770316551, - 9.093260602497462, - 10.611940396190457, - 12.00266189142421, - 12.396947900034078, - 12.754349959152949, - 13.105350279279282, - 13.379090985028006, - 13.613920045875313, - 13.816523112824909, - 13.98620876452944, - 14.112840296675621, - 14.257349476900792, - 14.356078589484664, - 14.404572250382838, - 14.483158287276947 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_8": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351663621213494, - 3.187072102273767, - 3.5207620281608345, - 4.021776912541979, - 4.6026765586719245, - 5.515595575645822, - 6.741250252081341, - 7.921039735802117, - 9.74189947429131, - 10.940997138840235, - 11.828105424440531, - 13.102813881471942, - 14.001104222140892, - 16.040858692653764, - 17.78381332475367, - 18.26232241004958, - 18.690924568121353, - 19.10759768636661, - 19.429737462725274, - 19.70485814436133, - 19.94116532625416, - 20.138438771610367, - 20.285466256652946, - 20.453135684005062, - 20.56760509167091, - 20.623792069271538, - 20.714845712583763 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.4511928331339763, - 2.7884194850866217, - 3.044983077400209, - 3.3875679375341408, - 3.6155192777584717, - 3.798645797325077, - 4.096175541445473, - 4.336344367894214, - 5.019731887738204, - 5.8260694306377605, - 6.0993455378426304, - 6.371076816525352, - 6.664024651400274, - 6.914877999251872, - 7.147765976751554, - 7.365080789004719, - 7.560937023845368, - 7.71618195368774, - 7.904455502886891, - 8.040774908900945, - 8.110498196664352, - 8.227807535489346 - ], - "5._384._0.0875": [ - 3.4903751804371543, - 4.015177586943321, - 4.626316334139148, - 5.589718395441277, - 6.681276747564868, - 8.311582200944601, - 10.337947181524815, - 12.125498123987082, - 14.610573550783363, - 16.10115543220187, - 17.146384853528588, - 18.580182544652118, - 19.553613541784934, - 21.686716094508675, - 23.459793008436893, - 23.941425243130862, - 24.37259432412595, - 24.791282342403576, - 25.11506944330547, - 25.391492242611275, - 25.629115832623636, - 25.827695284644296, - 25.975715702224495, - 26.144705036338415, - 26.260031001154708, - 26.316588353639908, - 26.408137783001337 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564765, - 2.5060808689175347, - 2.800134439757692, - 3.143256640490362, - 3.5115931831066907, - 3.8563714283629027, - 4.438008951479986, - 4.867532874904468, - 5.215583404676812, - 5.772672806467625, - 6.211824635542272, - 7.396223003969731, - 8.665672930864051, - 9.064558064313061, - 9.443088561442016, - 9.831210348272133, - 10.145861941844775, - 10.423784772086048, - 10.669811370622284, - 10.880235183612871, - 11.03959465184352, - 11.223602488018676, - 11.35071782623683, - 11.413681017310957, - 11.516452952897687 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235628420934, - 2.851914171068351, - 3.2001864870656878, - 3.5234855192882657, - 3.9993837692469993, - 4.6533568846839355, - 5.313071368778007, - 6.406029974073025, - 7.183253245785634, - 7.792258156960444, - 8.725769530023753, - 9.427137287321417, - 11.164087846726044, - 12.797067867994578, - 13.266404352497574, - 13.69333242880602, - 14.113866861877344, - 14.442302650798624, - 14.72443716185926, - 14.967883085263539, - 15.17171086225482, - 15.323838559393772, - 15.497318881291175, - 15.615886496828852, - 15.674171649421092, - 15.768746727493152 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_8": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 35.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351656341162688, - 3.187014514902558, - 3.52029132918205, - 4.019750852814792, - 4.59671906444828, - 5.493795375644857, - 6.677773013554782, - 7.80028340298142, - 9.509270025813493, - 10.622755868377311, - 11.441851262384343, - 12.613701980692431, - 13.436675454364746, - 15.301239108689966, - 16.89283281328606, - 17.329724666914696, - 17.72133369942285, - 18.10225486482879, - 18.397013615778047, - 18.648810535730295, - 18.86522686258618, - 19.046005723801954, - 19.1807593497808, - 19.334489014106907, - 19.43943565290628, - 19.490936858801586, - 19.57435615239791 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961542, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247276, - 2.4511928331220942, - 2.7884193175496446, - 3.044972787788944, - 3.3873420994908936, - 3.6148413615105537, - 3.7974275186219506, - 4.0936970425653065, - 4.332256234003077, - 5.005838525360041, - 5.787891324965242, - 6.049862649022653, - 6.30899489941187, - 6.586878544944042, - 6.823640061919987, - 7.0424486694287065, - 7.245758186155466, - 7.428260828983332, - 7.572415599655878, - 7.746655549277552, - 7.8723733846825965, - 7.93650250906297, - 8.044118191543102 - ], - "5._384._0.0875": [ - 3.489786327302739, - 4.012815093557255, - 4.619256359453849, - 5.564164586364483, - 6.6177229227216845, - 8.166359770634953, - 10.0618492666004, - 11.714753610719608, - 13.993324257810821, - 15.353032417115449, - 16.30460116933125, - 17.608866586522343, - 18.49393131562233, - 20.434906393077974, - 22.050292729364497, - 22.48937537485782, - 22.882713476721904, - 23.264873590709865, - 23.56062691045814, - 23.813155932364168, - 24.030340752808428, - 24.21191468618051, - 24.347265845815002, - 24.501821105143996, - 24.607286182825405, - 24.658997666344757, - 24.742670308676313 - ], - "5._48._0.075": [ - 1.5268463243731403, - 1.8679037053125447, - 2.1622431316564747, - 2.5060808688610523, - 2.800134290276426, - 3.143232282218692, - 3.511217943293835, - 3.85509361794084, - 4.433662673623664, - 4.858258649864619, - 5.199928634369217, - 5.742229639220482, - 6.165966239648325, - 7.295311285704614, - 8.4880483423562, - 8.859568533166238, - 9.210899517706705, - 9.56999968927831, - 9.860395443458279, - 10.116385807694828, - 10.342686925283301, - 10.536062214803941, - 10.682411781643394, - 10.8513792263002, - 10.968053804316082, - 11.02581134242857, - 11.12002153436252 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235626058255, - 2.8519138301183564, - 3.200148312744838, - 3.5231179361303773, - 3.997665303859524, - 4.647355395013649, - 5.296664718684403, - 6.356574542303333, - 7.100033924305929, - 7.67782196205872, - 8.556777769307798, - 9.212518632559622, - 10.82339449233578, - 12.32563468021876, - 12.7557981924154, - 13.146889768232766, - 13.531965007610241, - 13.832760090176686, - 14.091139443124778, - 14.314190391531291, - 14.501047055620633, - 14.64053897145148, - 14.799701673722534, - 14.908486600320177, - 14.961949635632973, - 15.048656069603421 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_9": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 0.0, - 40.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 35.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835166362121371, - 3.1870721023996467, - 3.5207618863251002, - 4.02170087462969, - 4.601282817916865, - 5.505082573034636, - 6.704717379704928, - 7.85060989299981, - 9.614261909674306, - 10.777848147736364, - 11.641412962268987, - 12.88748751495244, - 13.769674474688928, - 15.78472026592574, - 17.517262787312823, - 17.994187037719634, - 18.421714068792646, - 18.837602286300164, - 19.159271643952945, - 19.43406047254468, - 19.670121033962634, - 19.867205726549333, - 20.014100444734638, - 20.181616128199728, - 20.29598680843991, - 20.35212910172427, - 20.44311692803543 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.4511928331339754, - 2.7884194850866204, - 3.044983077400507, - 3.387567930861378, - 3.6155178196183373, - 3.7986289347389706, - 4.0959714283112145, - 4.3355951216797886, - 5.013611356722251, - 5.804657896312386, - 6.070861986481936, - 6.334955370621566, - 6.619142720593268, - 6.862257170090246, - 7.087897183772772, - 7.298585811629542, - 7.488764991913078, - 7.639855513781372, - 7.8237583190536935, - 7.95758826571103, - 8.026333617570037, - 8.142603850908452 - ], - "5._384._0.0875": [ - 3.4903786245746553, - 4.015063137242643, - 4.624422203792356, - 5.576948284395749, - 6.644771518119655, - 8.227652735855717, - 10.190268594089307, - 11.927534242307571, - 14.359624278859046, - 15.82846991517414, - 16.86238213607518, - 18.28496494239438, - 19.253064490336243, - 21.378919280414966, - 23.148739352527084, - 23.62975169918626, - 24.060372016624545, - 24.478537821281076, - 24.80190307797188, - 25.077963642060336, - 25.31525717864904, - 25.51354323707528, - 25.66133994888567, - 25.830060141365113, - 25.945200921751553, - 26.00166853467933, - 26.093077162882803 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564765, - 2.506080868917535, - 2.8001344397576906, - 3.143256640499559, - 3.5115931310846906, - 3.8563566758908636, - 4.437254148587237, - 4.864302284678646, - 5.208562910826154, - 5.756381580353319, - 6.1857926005487744, - 7.337330238270234, - 8.567581722870012, - 8.954847786024212, - 9.323052309234136, - 9.701604720403258, - 10.009494717520367, - 10.282305041660479, - 10.524596033362078, - 10.732490097771077, - 10.89037421424799, - 11.073201284849146, - 11.199834342135524, - 11.262666802739936, - 11.36538800092124 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235628420947, - 2.8519141710683504, - 3.200186487098755, - 3.523485475893614, - 3.9993403213266188, - 4.651923652860672, - 5.305758331648472, - 6.378046160191411, - 7.134590785514151, - 7.725435284205993, - 8.629750656246474, - 9.309274653579335, - 10.997773089836935, - 12.59877061512886, - 13.061802525733123, - 13.484135840622404, - 13.901171107067803, - 14.227567121836408, - 14.508382687448611, - 14.751009036814555, - 14.954362194194278, - 15.106241390492103, - 15.279540941309058, - 15.39804872230359, - 15.456326565581994, - 15.550918954480004 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835163554103729, - 3.1868499795100256, - 3.5189471871417144, - 4.014291734689392, - 4.585729983426826, - 5.4783782331097886, - 6.664875308975525, - 7.78095954436287, - 9.422622271115944, - 10.444946568635388, - 11.174586733117547, - 12.190679309604377, - 12.887629509317616, - 14.432466371861755, - 15.72804732473775, - 16.081392778821243, - 16.398108012781965, - 16.706154923196785, - 16.94478515960347, - 17.148634374775696, - 17.324044660244187, - 17.470751596521854, - 17.580134119683894, - 17.70503746479188, - 17.790288291349594, - 17.832098064054087, - 17.899737843068284 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.111467924224727, - 2.4511928330881467, - 2.788418838872571, - 3.04494338890382, - 3.3866968888704605, - 3.612910916227809, - 3.7940199256554292, - 4.0874967512700415, - 4.323817801662154, - 4.993223862336138, - 5.776939636452273, - 6.0398329147115115, - 6.298516420435058, - 6.573466422852641, - 6.804579954700581, - 7.014876393828088, - 7.206675627757325, - 7.375307882595491, - 7.505754432240141, - 7.659723925184936, - 7.76791724765261, - 7.822040894389363, - 7.911051827069974 - ], - "5._384._0.0875": [ - 3.4880902775716516, - 4.0065619525134215, - 4.607298279466111, - 5.548353958156116, - 6.604415106939941, - 8.13860019568434, - 9.938536968136697, - 11.427377002248585, - 13.383231984894984, - 14.512099196220316, - 15.29057972183952, - 16.347765426714993, - 17.06050692000972, - 18.619290778574012, - 19.916053673254428, - 20.2686496512593, - 20.584999002677907, - 20.892732872471324, - 21.13131773958098, - 21.335112938000275, - 21.510606445342315, - 21.65749717959913, - 21.767018104919572, - 21.892162864981678, - 21.977544756334243, - 22.019389460008043, - 22.08703090750865 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125447, - 2.162243131656476, - 2.506080868699681, - 2.800133863187092, - 3.1431626871705314, - 3.5101461072512348, - 3.8515072619323156, - 4.424504911378015, - 4.845886343624489, - 5.186331552272661, - 5.729058529452128, - 6.1543553311536385, - 7.279215244517337, - 8.425007491615851, - 8.768101772829569, - 9.08648777576615, - 9.405485053350356, - 9.65874977692766, - 9.87854736747751, - 10.070275097983433, - 10.232270081471812, - 10.353782216544758, - 10.493043905742333, - 10.588509080770054, - 10.635513887026178, - 10.711792810255785 - ], - "5._96._0.075": [ - 2.2092619209324718, - 2.555305550299043, - 2.8518822502007706, - 3.1999812074434986, - 3.5219640505521346, - 3.9927079992711505, - 4.635768436942492, - 5.280652168885683, - 6.338984165530696, - 7.079120833009518, - 7.647405762106008, - 8.493199493397391, - 9.106886336359855, - 10.549497600871693, - 11.821945288975535, - 12.176179524294474, - 12.495306427173027, - 12.807191058501216, - 13.049579738950227, - 13.257119802438721, - 13.435959943893337, - 13.585663292927912, - 13.697375965540715, - 13.824926149001566, - 13.912078874142695, - 13.95487960916011, - 14.02423056578889 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.83516472411039, - 3.1869425304997336, - 3.519703336588499, - 4.017409124634149, - 4.592792127320395, - 5.494435370274548, - 6.702922623181757, - 7.859047111999608, - 9.601273766609378, - 10.709893884541724, - 11.510288742748434, - 12.634631898016757, - 13.410995173686615, - 15.140112325896753, - 16.59431376284061, - 16.991218622233816, - 17.346724733781354, - 17.692319667585423, - 17.959786862066252, - 18.188220856046517, - 18.384643002748486, - 18.54880887859812, - 18.671188673718667, - 18.810869505477182, - 18.906212251366096, - 18.952983693185324, - 19.0286924400906 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247267, - 2.451192833107243, - 2.788419108128426, - 3.044959925775519, - 3.387059821765704, - 3.613997664863135, - 3.7959470723593096, - 4.09111167742486, - 4.329038708345258, - 5.004506770243227, - 5.800396675051319, - 6.069930680934847, - 6.337044137013024, - 6.623399632901891, - 6.866397000242412, - 7.089548465426775, - 7.294940305254195, - 7.477122120182745, - 7.619155348518463, - 7.7880816786592515, - 7.907676077545279, - 7.967812952154061, - 8.067196242249718 - ], - "5._384._0.0875": [ - 3.489041966728529, - 4.0101492446674785, - 4.615228891631927, - 5.566384478985521, - 6.642584303912649, - 8.23605088452842, - 10.158307320185152, - 11.785471693976609, - 13.957916675535065, - 15.2235651708415, - 16.099466100365742, - 17.290954676319654, - 18.09508402875218, - 19.852744524299638, - 21.313164415062523, - 21.70999507573438, - 22.065750787889225, - 22.41159715450544, - 22.679499567017082, - 22.908294539148603, - 23.10520435766242, - 23.269936461997787, - 23.392750503414597, - 23.53304715405481, - 23.628776387136153, - 23.675702827788015, - 23.751593525065417 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808687904528, - 2.800134103424843, - 3.1432018343696826, - 3.510749037532128, - 3.8535335425120447, - 4.430128801236172, - 4.854966963284894, - 5.198834780785669, - 5.748826061535993, - 6.182200108369144, - 7.344326849292377, - 8.559766854482477, - 8.930536691975924, - 9.277137603746795, - 9.626775473927715, - 9.905883724809348, - 10.149145007609818, - 10.36200401620384, - 10.542263530840383, - 10.677700598499671, - 10.833061729053647, - 10.939691930072817, - 10.992253400925039, - 11.077649233553439 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.555323562310494, - 2.851913403930866, - 3.2001005947998324, - 3.522658579337796, - 3.9956263916358847, - 4.643473862001433, - 5.295314181512427, - 6.373564059926124, - 7.138360360544258, - 7.733580791206114, - 8.633729955517238, - 9.297305182392362, - 10.888688183108068, - 12.31939479443607, - 12.720736736508375, - 13.083024543099366, - 13.437593746774013, - 13.71333786799934, - 13.94943383896836, - 14.152804847143246, - 14.322925976753803, - 14.449783003015684, - 14.594457028247186, - 14.693237854773255, - 14.741735431737363, - 14.820299846760408 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4_6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835165634116244, - 3.1870145147626947, - 3.5202914866756445, - 4.019835092963688, - 4.598294182607634, - 5.506896106489162, - 6.73052318189818, - 7.912467871582121, - 9.72589580529215, - 10.902232580140291, - 11.76142065486081, - 12.9799690921601, - 13.828042683727714, - 15.729161808737246, - 17.335268784211628, - 17.774271586490865, - 18.167299156061734, - 18.549238157332137, - 18.844598738042702, - 19.096815892578494, - 19.313543986957356, - 19.494562987623265, - 19.629486165894264, - 19.783415524175574, - 19.888490968713953, - 19.940050441967127, - 20.023555387690887 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961542, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247276, - 2.4511928331220942, - 2.788419317549646, - 3.044972787788615, - 3.387342106904053, - 3.6148429816023104, - 3.7974462638006634, - 4.093924921592454, - 4.33310344191535, - 5.013283589828823, - 5.817782417116992, - 6.091545425842375, - 6.364002312388974, - 6.657722620844377, - 6.908716725258545, - 7.140907237709026, - 7.3563326758075025, - 7.549010897004276, - 7.700417847978584, - 7.882005131312982, - 8.011698348280834, - 8.07732390690613, - 8.186450552241064 - ], - "5._384._0.0875": [ - 3.48978252870838, - 4.01294168617726, - 4.621409737185993, - 5.580334801027355, - 6.670318980665449, - 8.302545592063366, - 10.31394184021751, - 12.053732907941635, - 14.417465391896503, - 15.80993111970759, - 16.77799713899045, - 18.09818832224131, - 18.99067491818022, - 20.94158614166768, - 22.561393965004953, - 23.001316849199963, - 23.395409373721648, - 23.77829362345485, - 24.074637879081667, - 24.327676476764193, - 24.54532876803464, - 24.72732070710507, - 24.86299155213012, - 25.01793307141577, - 25.123664603086283, - 25.175505367009382, - 25.259381035739203 - ], - "5._48._0.075": [ - 1.5268463243731403, - 1.8679037053125447, - 2.1622431316564747, - 2.506080868861052, - 2.800134290276426, - 3.143232282208475, - 3.511218001064851, - 3.8551099766652253, - 4.434508562320669, - 4.8620406770384585, - 5.208542456427525, - 5.763852818580707, - 6.202674770697162, - 7.388879023236523, - 8.653549099750002, - 9.045795218652303, - 9.415151038522362, - 9.790454546878507, - 10.091929979349173, - 10.356032511845594, - 10.588068848893775, - 10.785198413726444, - 10.933669029420406, - 11.10426766775149, - 11.221569889572363, - 11.279479298301718, - 11.37370478468064 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235626058273, - 2.851913830118357, - 3.200148312708098, - 3.523117984324703, - 3.997713443588236, - 4.648975825738677, - 5.305558567767291, - 6.395724376623285, - 7.174022364925206, - 7.7842960088155895, - 8.716676351312, - 9.412201143144728, - 11.107676164998207, - 12.661029243171718, - 13.100667060069881, - 13.498459445509948, - 13.888500148954629, - 14.192107875894575, - 14.452267138883512, - 14.676390877488986, - 14.863844300867298, - 15.003635090833797, - 15.162997827519565, - 15.271830446192585, - 15.32528603574343, - 15.411940391266077 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "4_7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 30.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 25.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351663621213476, - 3.1870721022737705, - 3.520762028072392, - 4.021776707106985, - 4.602701379425714, - 5.516895320729015, - 6.752416493474914, - 7.953137727203884, - 9.81883264878891, - 11.048318939018987, - 11.955935890018308, - 13.25556144765417, - 14.167705246850145, - 16.228183948976074, - 17.979371151576828, - 18.459035923476232, - 18.88837134802076, - 19.305527303837838, - 19.627914082259856, - 19.903183981117593, - 20.13958070089098, - 20.336909508975214, - 20.483970170129076, - 20.651676401188716, - 20.766165133520005, - 20.822358589612076, - 20.913418264771746 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.451192833133977, - 2.7884194850866217, - 3.0449830774002096, - 3.3875679375332597, - 3.615519277709283, - 3.7986458056921144, - 4.09617654659847, - 4.336357802956161, - 5.020320937756365, - 5.831647067747798, - 6.108571604976713, - 6.384898024172815, - 6.6838521863624285, - 6.940545133037418, - 7.179288122894562, - 7.402205253906631, - 7.603006146711512, - 7.761932827049879, - 7.9541073637389195, - 8.092636625248517, - 8.16322087404529, - 8.281438116593483 - ], - "5._384._0.0875": [ - 3.4903752046787764, - 4.015177107660148, - 4.626361860766751, - 5.591532601268441, - 6.692329186314433, - 8.352759110740948, - 10.430657256886867, - 12.261635160900303, - 14.792527011528106, - 16.301536654412992, - 17.35621270848946, - 18.79917973511907, - 19.776861265130105, - 21.91541315292656, - 23.690588904865486, - 24.1725551363065, - 24.604008758319218, - 25.022955541483253, - 25.346949118016603, - 25.623547825218424, - 25.861333956995235, - 26.06006072276188, - 26.208194543277866, - 26.37732333379044, - 26.492745806698906, - 26.549349850068555, - 26.640972162041617 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564765, - 2.5060808689175356, - 2.800134439757692, - 3.143256640490363, - 3.5115931830794134, - 3.856371400101421, - 4.438015845543513, - 4.867708801573733, - 5.216324289383681, - 5.775883677547704, - 6.218945420061054, - 7.422787553543587, - 8.723431483738334, - 9.132330349511395, - 9.519916256558748, - 9.916486305305636, - 10.237093174438648, - 10.519492789617704, - 10.768754770173295, - 10.981336755114539, - 11.141931285695081, - 11.326897525151242, - 11.454384108001973, - 11.517438552524153, - 11.620221865575353 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235628420947, - 2.85191417106835, - 3.2001864870656878, - 3.523485519269141, - 3.9993836543846673, - 4.653383089429759, - 5.313774307764784, - 6.413405840031446, - 7.201749149251708, - 7.822822269106146, - 8.778486940566422, - 9.497894825670153, - 11.276787922769273, - 12.937485317219407, - 13.412161639654101, - 13.842926754804644, - 14.26632351988241, - 14.596375369272456, - 14.87952041978683, - 15.123557174936245, - 15.327692912673553, - 15.479958916081756, - 15.653505414115946, - 15.772062907850747, - 15.830324368858253, - 15.924837218418915 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351656341162452, - 3.1870145147626974, - 3.52029148667567, - 4.019835093017707, - 4.5982936958752845, - 5.5069711231041305, - 6.732856648502025, - 7.921843283659013, - 9.751252336543244, - 10.937949457944962, - 11.803810763333674, - 13.030085671186802, - 13.882247595182367, - 15.789154273241033, - 17.397423190906295, - 17.836713667778135, - 18.22992056086585, - 18.611973711107705, - 18.907390194405757, - 19.159639444194557, - 19.37638567560696, - 19.55741533979612, - 19.692344607372505, - 19.846281147124184, - 19.951360171056265, - 20.002920665455477, - 20.086426165369282 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961542, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247276, - 2.451192833122094, - 2.788419317549644, - 3.044972787788615, - 3.387342106904055, - 3.6148429816023158, - 3.7974462638003725, - 4.093924920426126, - 4.333103496437159, - 5.013306910761229, - 5.818776402913868, - 6.093626438407932, - 6.367602838347201, - 6.663433786692135, - 6.9165238361402075, - 7.150815194090501, - 7.368218463676161, - 7.562596393540276, - 7.715228084652988, - 7.898056909693774, - 8.028413669395082, - 8.094286262487623, - 8.203659924602803 - ], - "5._384._0.0875": [ - 3.4897825285162716, - 4.012941689162447, - 4.621408914553352, - 5.5804680548945775, - 6.672609120789035, - 8.31509118799391, - 10.344732940730454, - 12.098911719604803, - 14.476641313448162, - 15.87436363801686, - 16.84503143949367, - 18.167681280211, - 19.06128493020748, - 21.01360346286259, - 22.633944058823158, - 23.073950798692806, - 23.46811627235861, - 23.85106778822409, - 24.14746670484337, - 24.40055223560015, - 24.618248421060102, - 24.800280536523264, - 24.935982465719608, - 25.090962451665916, - 25.196720717693957, - 25.24857444671522, - 25.332470394268455 - ], - "5._48._0.075": [ - 1.5268463243731403, - 1.8679037053125447, - 2.1622431316564747, - 2.5060808688610523, - 2.8001342902764255, - 3.143232282208476, - 3.5112180010648584, - 3.8551099766951262, - 4.434508445015713, - 4.862044168289376, - 5.2085862251099835, - 5.76427186474273, - 6.204030023936915, - 7.396608078479404, - 8.67243421921375, - 9.068108653611503, - 9.440488857096849, - 9.818513912853351, - 10.121840924076693, - 10.387285417655814, - 10.620257980195246, - 10.81799007145421, - 10.966794134425063, - 11.137640764253641, - 11.255032830215635, - 11.312961151069707, - 11.407180498632554 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235626058273, - 2.8519138301183564, - 3.2001483127080967, - 3.5231179843247027, - 3.9977134437346464, - 4.648975320207692, - 5.305585007380778, - 6.39703709911218, - 7.17876659781859, - 7.793226026447637, - 8.733528438854526, - 9.435430088140752, - 11.144967976432001, - 12.706719324002064, - 13.14787586741075, - 13.546721484584156, - 13.937525543460476, - 14.241551222490221, - 14.50196549559448, - 14.72623258973888, - 14.913756060151046, - 15.05357527196797, - 15.212946759671123, - 15.3217707932991, - 15.375217236739509, - 15.461850615114354 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "5_6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 0.0, - 25.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351663621213476, - 3.1870721022737705, - 3.520762028072415, - 4.02177670715311, - 4.602700935880571, - 5.5169614281183295, - 6.754855825756175, - 7.9645021066903565, - 9.854195714565249, - 11.10118115502487, - 12.02079017457652, - 13.33501175674585, - 14.255218116370674, - 16.327580693017115, - 18.083344353315496, - 18.56362520769094, - 18.993336351577927, - 19.41072371690533, - 19.73321459372418, - 20.0085375697826, - 20.244956310741, - 20.44229121767626, - 20.589351458110524, - 20.75705585476228, - 20.871539877317286, - 20.927729350399375, - 21.01878029962984 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.4511928331339767, - 2.78841948508662, - 3.0449830774002087, - 3.387567937533259, - 3.6155192777092866, - 3.7986458056918515, - 4.09617654554866, - 4.336357851959621, - 5.020341466937139, - 5.832650771275151, - 6.110827469116957, - 6.389042492581823, - 6.6908140178252875, - 6.9505065386722915, - 7.19243632727055, - 7.418520650316663, - 7.622186443220001, - 7.783277024147918, - 7.977759934980626, - 8.117592805144756, - 8.188682129256737, - 8.307429486277217 - ], - "5._384._0.0875": [ - 3.4903752045070484, - 4.01517711032482, - 4.6263611033013685, - 5.591651876749553, - 6.694719081848411, - 8.368450742711376, - 10.474682133299819, - 12.330889394576008, - 14.888519563366648, - 16.408157644645936, - 17.468228127586602, - 18.916370704866225, - 19.896420203285626, - 22.037916287175435, - 23.8141271476306, - 24.296236618781442, - 24.727807918401368, - 25.14685682358567, - 25.47093076905325, - 25.747597339655663, - 25.98544714069117, - 26.18423280389328, - 26.332412410977593, - 26.501598750598582, - 26.617061272271563, - 26.67368466152417, - 26.765337023877695 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564765, - 2.5060808689175356, - 2.8001344397576915, - 3.1432566404903644, - 3.511593183079418, - 3.856371400128268, - 4.4380157399092885, - 4.867711940849569, - 5.216364717136565, - 5.7762914554758265, - 6.220353271364668, - 7.432151663462933, - 8.749651704331555, - 9.164328082900065, - 9.557213922268762, - 9.958759768536368, - 10.282877875055014, - 10.567908594592975, - 10.81906136060472, - 11.032894679440224, - 11.194197906982616, - 11.379706010195362, - 11.5073980375971, - 11.570501022182581, - 11.673285059619554 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.555323562842096, - 2.85191417106835, - 3.200186487065689, - 3.5234855192691428, - 3.9993836545154893, - 4.653382627830734, - 5.313797205723791, - 6.4147270512273895, - 7.207138999640167, - 7.833733889835734, - 8.80089588588579, - 9.530363365014855, - 11.333631004403431, - 13.010527458583056, - 13.488289186954031, - 13.92125017587898, - 14.346267385680884, - 14.677219806295792, - 14.960918512159175, - 15.20526897204249, - 15.409558628634645, - 15.561886771503513, - 15.735450711687019, - 15.853988192816459, - 15.912229132312792, - 16.006695343389197 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json index 1d562da84b..507f550e9f 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json @@ -206,218 +206,6 @@ } }, "3_4": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835164726499315, - 3.1869511904253844, - 3.520129819831777, - 4.024256961679788, - 4.629858717255186, - 5.648051992538193, - 7.08547570178617, - 8.452315749499057, - 10.433448692094192, - 11.644470751378343, - 12.499298574531974, - 13.678710219767217, - 14.481733250158136, - 16.247551183295478, - 17.718230806950928, - 18.118256572514444, - 18.476444828956904, - 18.824545824258124, - 19.093993560187933, - 19.324118207719224, - 19.522063456725174, - 19.68757222773616, - 19.810975387432244, - 19.95188484610551, - 20.048074698996366, - 20.095257762736964, - 20.1716158070638 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247267, - 2.451192833107242, - 2.7884191082784517, - 3.044960290786688, - 3.387173702734947, - 3.614900226285844, - 3.7987419510265603, - 4.101475091242637, - 4.35167815109667, - 5.101635349720609, - 6.040855465868692, - 6.361709221219803, - 6.677622439243028, - 7.011983809339578, - 7.291041171739627, - 7.542739170676823, - 7.770121576039311, - 7.96804797895654, - 8.119729000978506, - 8.29691882694332, - 8.420244452163404, - 8.481574325287443, - 8.581867423562938 - ], - "5._384._0.0875": [ - 3.4896895110389377, - 4.019193933286457, - 4.661230290795835, - 5.745245803570798, - 7.027551856685918, - 8.905955441235022, - 11.070206812379547, - 12.825689606638033, - 15.097220897548903, - 16.39617074503923, - 17.288242105512616, - 18.49574172345241, - 19.307956504952568, - 21.07981946949136, - 22.550776145291668, - 22.950430542179113, - 23.308900480500842, - 23.657522066231788, - 23.927737142188516, - 24.15855023232541, - 24.357290456117752, - 24.52362950007569, - 24.647660988315558, - 24.78939444803149, - 24.886108814198227, - 24.933514220975347, - 25.010161614654855 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.506080868790454, - 2.8001341035433973, - 3.1432036182270733, - 3.5110342438515465, - 3.8564813903405875, - 4.454595052029148, - 4.918118600670651, - 5.308384713508876, - 5.953001712399312, - 6.469438265498537, - 7.844046133696996, - 9.218117427371904, - 9.622406933852037, - 9.994178106008798, - 10.36368562414281, - 10.654901329712077, - 10.90623858545078, - 11.124348955728625, - 11.307818890454374, - 11.445018857063635, - 11.601753264010817, - 11.708948220839979, - 11.761663583031304, - 11.84714285442662 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235623104937, - 2.851913404497863, - 3.200104659902106, - 3.5229289437109417, - 4.000714782099825, - 4.681054276345045, - 5.411125656814106, - 6.685475931250212, - 7.596532845655835, - 8.295465778809493, - 9.328498025684635, - 10.070012324731001, - 11.787302919098854, - 13.274902049366501, - 13.685525901098016, - 14.05421038583564, - 14.413596369121933, - 14.692285876859039, - 14.930479312943792, - 15.135401160272473, - 15.306688528208682, - 15.434358421957747, - 15.579946835626505, - 15.679317300339774, - 15.728085714005035, - 15.80705905351386 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, "2": { "bore_locations": [ [ @@ -626,1085 +414,5 @@ 3.003 ] } - }, - "3_5": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351663640324904, - 3.1870790324400735, - 3.521106948654561, - 4.027817004712404, - 4.639702914792701, - 5.689701897839143, - 7.230782415357917, - 8.75558382299333, - 11.04534208095427, - 12.480341222531724, - 13.504959222351479, - 14.929271926552433, - 15.90416568507156, - 18.052354448368966, - 19.84102393386483, - 20.327235221316858, - 20.761895731724405, - 21.183796554426188, - 21.50979223532669, - 21.788087698807278, - 22.02717090155069, - 22.22685011514924, - 22.37569660323061, - 22.54554863066446, - 22.66151184676179, - 22.71841874632137, - 22.810598479283108 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615424, - 1.4813847491413064, - 1.8198213217004344, - 2.111467924224728, - 2.4511928331339754, - 2.7884194852066426, - 3.0449833694144575, - 3.387659363565028, - 3.6162575473325336, - 3.8010097195037105, - 4.105632061379055, - 4.358290331495015, - 5.126739920153362, - 6.123511711967509, - 6.474167991903697, - 6.824559479788833, - 7.200859154778787, - 7.51918464818536, - 7.8095967640619985, - 8.074594572877569, - 8.307247584849724, - 8.486753152771184, - 8.697580121703579, - 8.845046400408721, - 8.918645101319749, - 9.039379340040094 - ], - "5._384._0.0875": [ - 3.4909018152157616, - 4.023297059681693, - 4.673051152210945, - 5.795451136308289, - 7.172990691082887, - 9.27752412726072, - 11.799413284844766, - 13.898070984778059, - 16.65542163277132, - 18.244596278442476, - 19.338696289586718, - 20.820234685526085, - 21.816848225257285, - 23.98610111341166, - 25.781787275544815, - 26.268999130971455, - 26.705469137801593, - 27.12951686995272, - 27.45775893894551, - 27.738063457318646, - 27.97921715827073, - 28.18090672411815, - 28.331287344632564, - 28.503073216115972, - 28.62031847221074, - 28.677808555516858, - 28.77082914464509 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125436, - 2.1622431316564765, - 2.506080868917536, - 2.800134439852536, - 3.1432580676862703, - 3.511823135144772, - 3.8588654894808214, - 4.4617389401300285, - 4.933850249217447, - 5.336702101199807, - 6.014768882401431, - 6.56981612520555, - 8.094628831272521, - 9.679052963838439, - 10.15497603436222, - 10.595511839800375, - 11.03584132783747, - 11.384157796199728, - 11.685603030677242, - 11.947529059178052, - 12.167948960854657, - 12.332828130807757, - 12.521023741928575, - 12.649751408274382, - 12.713101012338704, - 12.81593200056931 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235628420974, - 2.851914171521948, - 3.200189739673925, - 3.5237033987871773, - 4.0037986560526875, - 4.6909871677691255, - 5.4410229845215765, - 6.794282739628035, - 7.796138722634701, - 8.58200482025275, - 9.766864543211586, - 10.632303268710091, - 12.671167543550263, - 14.462326312183167, - 14.95921757641907, - 15.405288400514571, - 15.840049953956868, - 16.176793719534082, - 16.464510668512997, - 16.71171590552714, - 16.9180654486089, - 17.071794231061588, - 17.24689658823532, - 17.3664028454089, - 17.42507872180411, - 17.52018832485266 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835165636239735, - 3.1870222124846106, - 3.5206705943239536, - 4.025926919590956, - 4.6314813851815915, - 5.647608103249758, - 7.095010549843221, - 8.49874387545537, - 10.583925916535861, - 11.88496121503498, - 12.813050821314832, - 14.103307886213111, - 14.986830741348886, - 16.93714274612754, - 18.564767392055334, - 19.007681979280203, - 19.40398485786481, - 19.78891593966005, - 20.086599119614256, - 20.34078278794741, - 20.559270533789313, - 20.741835181134128, - 20.87793445962735, - 21.033275921601348, - 21.13932329047935, - 21.191354079605386, - 21.27560078129397 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961542, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247276, - 2.451192833122094, - 2.788419317683002, - 3.044973112243008, - 3.387443335114759, - 3.615645288876461, - 3.7999310832230444, - 4.1031517104865625, - 4.353324166142386, - 5.101672277675225, - 6.04429213301694, - 6.370223740032843, - 6.693775415382339, - 7.03944103230249, - 7.330725489055097, - 7.595856753169673, - 7.837464836137955, - 8.049490997916033, - 8.213121314804473, - 8.405525962499153, - 8.54027402895797, - 8.607567886188919, - 8.718041973504523 - ], - "5._384._0.0875": [ - 3.490358350826967, - 4.020991337431924, - 4.662672415770914, - 5.744820338581088, - 7.036835424820224, - 8.970879981106723, - 11.262539992919834, - 13.161918009757274, - 15.65519170743656, - 17.09242028149083, - 18.082377421761176, - 19.42410197524493, - 20.327301536975842, - 22.296280621945826, - 23.92882543342862, - 24.37208776527693, - 24.76938241540891, - 25.155531910712668, - 25.45459596488941, - 25.710007203575426, - 25.929812946366734, - 26.113696919837288, - 26.25080162287551, - 26.40743659061555, - 26.514329358432732, - 26.566734621647846, - 26.6515015938595 - ], - "5._48._0.075": [ - 1.5268463243731403, - 1.8679037053125447, - 2.1622431316564747, - 2.5060808688610527, - 2.800134290381807, - 3.143233867860115, - 3.511471522971886, - 3.85773094328742, - 4.45635937394046, - 4.91896788599688, - 5.308326522755804, - 5.953500182691239, - 6.473994624578587, - 7.881731189334298, - 9.327939811341983, - 9.76100225041961, - 10.161929304323298, - 10.562808261876501, - 10.880198348756178, - 11.155099045573097, - 11.394243278833923, - 11.595747631820618, - 11.7466156505331, - 11.919050266295013, - 12.037083025278562, - 12.095179432658108, - 12.189474660384846 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235626058277, - 2.851913830622354, - 3.200151926134801, - 3.5233583128290906, - 4.002238851000056, - 4.682631571885546, - 5.410982393352187, - 6.6900137440739496, - 7.61807222418404, - 8.339510183791871, - 9.420787147913943, - 10.207745392714164, - 12.05911815511066, - 13.687117151265026, - 14.139214155154402, - 14.545598903211589, - 14.942060670415813, - 15.24951583191688, - 15.512358878101542, - 15.73840357229015, - 15.927251078270425, - 16.06799001534853, - 16.228392560914656, - 16.337879397679057, - 16.39162908576207, - 16.47871880482759 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351647264993427, - 3.1869511878212227, - 3.5201249983906053, - 4.023470079702086, - 4.619524785372806, - 5.584545593963873, - 6.902998972422947, - 8.155904940893874, - 10.006528962240383, - 11.16170003625414, - 11.986974515245103, - 13.136623801624237, - 13.925333660666091, - 15.671735435511286, - 17.1340203549757, - 17.532518375469383, - 17.889415118045637, - 18.23632689494733, - 18.504843326064247, - 18.73417706088744, - 18.931410764343546, - 19.09629166601863, - 19.219216066324133, - 19.359548955270924, - 19.455341030942233, - 19.502330894291646, - 19.57838437472881 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247267, - 2.451192833107243, - 2.788419108278451, - 3.044960290780462, - 3.3871732942098673, - 3.614878191681364, - 3.798561923606987, - 4.099798817689642, - 4.346204423109484, - 5.0638487371527745, - 5.929805278718577, - 6.22322066037185, - 6.512793735041919, - 6.821078439869845, - 7.080477625470557, - 7.316596245578598, - 7.5319896110242, - 7.721355916594392, - 7.867814484475438, - 8.040562621314637, - 8.161904750914392, - 8.222608336043283, - 8.322439798383627 - ], - "5._384._0.0875": [ - 3.489683589771105, - 4.017967599197538, - 4.647442660449867, - 5.669373078133689, - 6.844173285124341, - 8.568315624757192, - 10.600325302446251, - 12.285956420132523, - 14.50391745257, - 15.785022788972071, - 16.66850472887037, - 17.867605872287033, - 18.675648388339898, - 20.440392189102354, - 21.906234553527053, - 22.30453566581824, - 22.661703721743674, - 23.008993916246247, - 23.278097402970836, - 23.5079397293719, - 23.70579759625243, - 23.87136028787809, - 23.994802872374056, - 24.13583986208106, - 24.232076226197314, - 24.27924916673364, - 24.35552928806487 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808687904528, - 2.800134103543397, - 3.1432036181023424, - 3.5110319556108176, - 3.856294585090341, - 4.448712071203283, - 4.896663484070969, - 5.265482167329142, - 5.862815261657757, - 6.335812501032133, - 7.595904693848572, - 8.883398496081888, - 9.26944545987664, - 9.627564185735551, - 9.986341976740128, - 10.271050934788345, - 10.51807909571091, - 10.733413583748808, - 10.91521048071942, - 11.051509376411044, - 11.207568046937224, - 11.314506489535042, - 11.367163181316018, - 11.452637549232263 - ], - "5._96._0.075": [ - 2.2092718103274036, - 2.555323562310494, - 2.851913404497863, - 3.200104659290397, - 3.5229269138451977, - 4.00023531180506, - 4.670461603314755, - 5.365717978056104, - 6.539952403820654, - 7.372629218740075, - 8.015251443192655, - 8.975750960964822, - 9.674681292633684, - 11.323447198341958, - 12.780484859565997, - 13.186189941782086, - 13.551532266121763, - 13.90844179346905, - 14.185650595153058, - 14.422812690740665, - 14.626992690023075, - 14.797737206217507, - 14.92503622603366, - 15.07021388451685, - 15.169324486840765, - 15.217975563750672, - 15.296774485018966 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "4_4": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835165636239734, - 3.187022207622659, - 3.520662700126178, - 4.024811706360364, - 4.618246492085718, - 5.577602357189488, - 6.930593362977536, - 8.27013730911453, - 10.305799407868758, - 11.592006196271335, - 12.513529975375201, - 13.79808800355458, - 14.678979018204332, - 16.62480215658412, - 18.2488264768942, - 18.690716626034398, - 19.085984722477804, - 19.46983352268822, - 19.76659712159539, - 20.019967202996902, - 20.237708518807462, - 20.41961226179577, - 20.555207696500926, - 20.709951202677345, - 20.81558646499876, - 20.867416249016795, - 20.951344739626176 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961542, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247276, - 2.451192833122094, - 2.7884193176830028, - 3.0449731122312995, - 3.3874426433772196, - 3.6156114031501847, - 3.7996703668647145, - 4.100882362106419, - 4.346224898925525, - 5.058431311244528, - 5.938205478332148, - 6.2454712872914175, - 6.553322425438452, - 6.885623183027443, - 7.168405190432672, - 7.427814593237117, - 7.66575546132917, - 7.875646469458194, - 8.038201801611946, - 8.229905687023377, - 8.364436565153676, - 8.43170041321568, - 8.542218918216287 - ], - "5._384._0.0875": [ - 3.490341452425285, - 4.019256693703507, - 4.645242475571041, - 5.663015696969794, - 6.870961396281224, - 8.722045952534526, - 10.968017694918828, - 12.850605315815251, - 15.333821659373363, - 16.76783249479386, - 17.755971993298417, - 19.095372128092308, - 19.99702132365333, - 21.961932120277055, - 23.590345099332236, - 24.032380773467327, - 24.428493817447, - 24.813430064076773, - 25.11149023696463, - 25.366028392849262, - 25.58505101682981, - 25.76825577351642, - 25.904849535939963, - 26.06088890444515, - 26.16737568079158, - 26.21958387181005, - 26.304039577016905 - ], - "5._48._0.075": [ - 1.5268463243731403, - 1.8679037053125447, - 2.1622431316564747, - 2.5060808688610523, - 2.800134290381807, - 3.1432338676191445, - 3.51146772321088, - 3.8574550748275773, - 4.448646633722987, - 4.892881358644619, - 5.259328855039348, - 5.860557995824219, - 6.346883434753211, - 7.687273576885126, - 9.101118153759293, - 9.529338705689813, - 9.927289641778144, - 10.326192135238777, - 10.642615140692383, - 10.916900159028845, - 11.15566961322875, - 11.356928805832112, - 11.507619363301462, - 11.67983744328869, - 11.797719211064464, - 11.855743645066019, - 11.949922092002977 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235626058273, - 2.8519138306223555, - 3.2001519249819794, - 3.523354932375397, - 4.001549412014162, - 4.669089316628495, - 5.359101946268944, - 6.552379489671893, - 7.429815477491777, - 8.121820314543074, - 9.173143912712952, - 9.946213029499233, - 11.781039134458084, - 13.403268695619028, - 13.854454372473098, - 14.260003929688882, - 14.655669234316463, - 14.962475413080817, - 15.224731293240202, - 15.450225154706388, - 15.638568709166531, - 15.778910465988814, - 15.938820677805234, - 16.047959625600665, - 16.1015379064994, - 16.188353466015815 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351647264993423, - 3.186951185113044, - 3.520120762095406, - 4.022908840457471, - 4.613192189018059, - 5.553357119545568, - 6.836941764565307, - 8.072417777476293, - 9.917034103843235, - 11.073390796484931, - 11.900087116780503, - 13.051737859601054, - 13.84151299956939, - 15.58897243519494, - 17.050915239385326, - 17.44916920093101, - 17.805773444528953, - 18.152349245604196, - 18.42056433245828, - 18.649624669380906, - 18.846603680143236, - 19.011257479437973, - 19.134008158091746, - 19.27413530400662, - 19.369785226120584, - 19.41670551318206, - 19.49264845544399 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615426, - 1.4813847491413072, - 1.8198213217004342, - 2.1114679242247267, - 2.451192833107242, - 2.7884191082784517, - 3.044960290773892, - 3.3871729161976023, - 3.6148602890949224, - 3.798427780692208, - 4.098671421766258, - 4.342760701025555, - 5.044196907034894, - 5.885761165493484, - 6.173109241648802, - 6.458187213329125, - 6.763304769544556, - 7.021219579646446, - 7.256751563518459, - 7.472114549141299, - 7.661736239898098, - 7.808486494653682, - 7.981608972488866, - 8.103176704421157, - 8.1639743328458, - 8.263914864157965 - ], - "5._384._0.0875": [ - 3.4896748046623505, - 4.0171018504542335, - 4.6391649603613345, - 5.633334582359261, - 6.777423354182605, - 8.48011743093466, - 10.508676150536084, - 12.196848641332405, - 14.418505687057298, - 15.700982948369044, - 16.585012703238007, - 17.784388376412807, - 18.59237334378901, - 20.356297930357258, - 21.820925841542255, - 22.218835703293472, - 22.575624522310008, - 22.922522909474765, - 23.191302577308537, - 23.42086333314305, - 23.61846985157123, - 23.783815779548103, - 23.907095834432504, - 24.04794453869986, - 24.14405292279984, - 24.19116378321505, - 24.267345824271224 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.506080868790454, - 2.8001341035433973, - 3.143203617967474, - 3.511029904247479, - 3.856152805478866, - 4.444974647594222, - 4.884466201927085, - 5.243246979981296, - 5.8227560139656775, - 6.283297777362145, - 7.524103840428952, - 8.807945512182934, - 9.194384924931446, - 9.553166658512048, - 9.912687850486941, - 10.197983773814087, - 10.445428388178932, - 10.661051157114642, - 10.843018763232672, - 10.979390883733371, - 11.135467248125636, - 11.242381692801242, - 11.295016290117196, - 11.380439148692652 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.5553235623104933, - 2.8519134044978625, - 3.2001046586465205, - 3.522925086582346, - 3.9998856532802853, - 4.663987000362338, - 5.342182722576681, - 6.4831737142367984, - 7.300051390954155, - 7.935454728449091, - 8.891221455834549, - 9.589548472760537, - 11.240752602456341, - 12.699955368817093, - 13.106043498915271, - 13.471550686224996, - 13.828500722672317, - 14.10565082229637, - 14.342706531216326, - 14.546746378452665, - 14.717337608943652, - 14.844505073188188, - 14.989509482128286, - 15.088491705043397, - 15.137077502637203, - 15.215769375587161 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json index ad43563aa4..7a73a41bfd 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json @@ -1,438 +1,2 @@ { - "3_3": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 10.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 10.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835172923739841, - 3.1876250174550504, - 3.5266762742768005, - 4.062573520333148, - 4.738748111382591, - 5.899230472048001, - 7.507146569270119, - 8.9887805639096, - 11.075021642471887, - 12.32543119965508, - 13.200153917342963, - 14.399404024928955, - 15.212247066977739, - 16.993642548532073, - 18.474243154489557, - 18.876740616001914, - 19.23725390288878, - 19.587693810843824, - 19.859069812721, - 20.09087299248157, - 20.29033701563567, - 20.457177964830557, - 20.58159140701033, - 20.723695185812733, - 20.820705076731922, - 20.868287158440452, - 20.945276166056832 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615428, - 1.481384749141307, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833240911, - 2.7884209935195257, - 3.0450771439551843, - 3.390053664197883, - 3.625097551783892, - 3.8196810869127296, - 4.149417820293751, - 4.428866511035236, - 5.282147815336435, - 6.337799706735208, - 6.690312410459378, - 7.032962569994954, - 7.390921014351625, - 7.686070670085695, - 7.949525709933702, - 8.185321736488111, - 8.388889855111131, - 8.543870120800028, - 8.723791926328296, - 8.848348061708858, - 8.910079460676386, - 9.01072789478447 - ], - "5._384._0.0875": [ - 3.4982581113162494, - 4.06512999294392, - 4.785673515255317, - 6.020960467502278, - 7.453715465747411, - 9.483922196132019, - 11.7506975693533, - 13.554037356141706, - 15.86079806366571, - 17.171938707660154, - 18.070390961707737, - 19.285131260472827, - 20.10163281612467, - 21.883024774974903, - 23.362625858633812, - 23.764754713612493, - 24.125588044401724, - 24.47662174823886, - 24.748825321642325, - 24.981365139913652, - 25.181653160603197, - 25.349334967787556, - 25.474376941071963, - 25.61728990580349, - 25.714808590647113, - 25.762604415182427, - 25.839868648003 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808694258587, - 2.800135785563308, - 3.143483000099373, - 3.5160979647842856, - 3.8785304918502423, - 4.537824916091951, - 5.064126234484706, - 5.509244802949968, - 6.239193858397087, - 6.815376669195569, - 8.308702765105174, - 9.750980846123925, - 10.167929617029431, - 10.548795317119502, - 10.925325370673912, - 11.220831819657937, - 11.475134296835684, - 11.695320633049596, - 11.880235770028115, - 12.018376464420529, - 12.176081131856115, - 12.283867438575376, - 12.33684462305628, - 12.42270852671529 - ], - "5._96._0.075": [ - 2.209271810327403, - 2.5553235649685013, - 2.8519172418862895, - 3.200546314114704, - 3.5278635615329472, - 4.032273186186682, - 4.79017412131366, - 5.622404082991505, - 7.057024475445821, - 8.05589545642321, - 8.808065780110283, - 9.90132526045556, - 10.674795465586877, - 12.439608731439382, - 13.948642344434687, - 14.363137292244204, - 14.734871788170292, - 15.096925834800645, - 15.377580363558257, - 15.617392285020719, - 15.823715932733156, - 15.99620505325167, - 16.12478148541285, - 16.27144867059056, - 16.371559599411892, - 16.420686739244598, - 16.500226266848518 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "3_4": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 15.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 15.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 15.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351729218286943, - 3.1876180928288775, - 3.526341223983386, - 4.058136460429089, - 4.723796571490863, - 5.882001293379037, - 7.567815808524175, - 9.205719752947793, - 11.614460804331705, - 13.098771059708497, - 14.149353882098195, - 15.600181350480975, - 16.58825991372467, - 18.756586493429555, - 20.557051768448197, - 21.046058035272516, - 21.483301357183464, - 21.907770151968396, - 22.235868704227247, - 22.515989963669288, - 22.75672264695844, - 22.957847700371698, - 23.10779055573236, - 23.278939033725102, - 23.395792268575804, - 23.453132102487334, - 23.545995917606437 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961543, - 1.4813847491413061, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833240912, - 2.788420993399505, - 3.045076851954058, - 3.3899630696528513, - 3.6244032864517, - 3.817675347036345, - 4.143341169059347, - 4.418256200344856, - 5.264549152497985, - 6.356693256737915, - 6.736213899951394, - 7.112488731615569, - 7.513052786788756, - 7.848935347194654, - 8.152826656325287, - 8.427935638442053, - 8.667657995867675, - 8.851421667018652, - 9.0658522449909, - 9.21495699756898, - 9.289092866864353, - 9.410292888034201 - ], - "5._384._0.0875": [ - 3.497752272301184, - 4.0595477291870266, - 4.768845444543897, - 6.007196057413258, - 7.513425415619092, - 9.769991925817497, - 12.411509024560182, - 14.57177014184268, - 17.376797996811998, - 18.982588199275245, - 20.08520024348314, - 21.576027159234805, - 22.577921475336638, - 24.758267440193467, - 26.563604656737198, - 27.053546205918725, - 27.492620943531588, - 27.919325066634627, - 28.24975820116258, - 28.531965805800176, - 28.77482685644166, - 28.97799869425728, - 29.129495282325408, - 29.302584340738044, - 29.4207187630176, - 29.478640641476183, - 29.572343507742822 - ], - "5._48._0.075": [ - 1.5268463243731425, - 1.8679037053125433, - 2.1622431316564765, - 2.5060808694258587, - 2.800135785468466, - 3.143481573173931, - 3.5158727005116153, - 3.8764149732552577, - 4.526419314930771, - 5.0455621857621376, - 5.489893874951987, - 6.235804220342747, - 6.841971449428507, - 8.481510305140135, - 10.143261278172627, - 10.634906554254599, - 11.087087111336059, - 11.536600513615973, - 11.890597962294285, - 12.195943348322809, - 12.46055632510651, - 12.682790353347995, - 12.848807809096153, - 13.038119522790163, - 13.167497525168343, - 13.231124630128225, - 13.334347980818151 - ], - "5._96._0.075": [ - 2.2092718103274014, - 2.5553235649685018, - 2.85191724143269, - 3.200543062810893, - 3.527649841190187, - 4.028832252092129, - 4.775220126986639, - 5.602269774542549, - 7.087170005954368, - 8.170888552088103, - 9.010894137306895, - 10.262154184817643, - 11.165444100361096, - 13.264570272043022, - 15.08392493735126, - 15.585852905533669, - 16.03573112323344, - 16.473712466474904, - 16.812742200533734, - 17.10229784107153, - 17.35105827444125, - 17.558717637610016, - 17.713426144082906, - 17.889685907654112, - 18.00998158617156, - 18.069037944354307, - 18.164745350416073 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json index 328fb3ec6d..7a73a41bfd 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json @@ -1,652 +1,2 @@ { - "3_4": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 10.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351656362397346, - 3.187022214893212, - 3.5206743638628253, - 4.026427905114574, - 4.637320591731864, - 5.681918628105052, - 7.195928057608821, - 8.667652969634455, - 10.835407948040471, - 12.173138766581673, - 13.120915089648696, - 14.431210692905506, - 15.32441495151209, - 17.287810340267843, - 18.92100406274033, - 19.36491546608123, - 19.762051084570384, - 20.14774393784635, - 20.446021621766313, - 20.70070964136172, - 20.919651129829102, - 21.10261640407018, - 21.239021363100157, - 21.394731378971578, - 21.501033093974097, - 21.55318740963753, - 21.637628767055283 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.4511928331220942, - 2.7884193176830023, - 3.0449731122488464, - 3.387443671191268, - 3.615661212012367, - 3.8000503693535084, - 4.104157202838956, - 4.3564421006886835, - 5.12205707751613, - 6.104951371039292, - 6.44663997467484, - 6.785677489291669, - 7.147043279593926, - 7.450449873105472, - 7.72536208586995, - 7.9746178510857, - 8.192173659856735, - 8.359201726136606, - 8.554505711034814, - 8.690545155519855, - 8.758244872089582, - 8.86901206321486 - ], - "5._384._0.0875": [ - 3.4903666059690193, - 4.021766894917602, - 4.670398135472845, - 5.7858767306232455, - 7.138255086355538, - 9.165208843721064, - 11.541605088064461, - 13.487376794462662, - 16.01692584673723, - 17.46632247540876, - 18.46211624061258, - 19.809514025003864, - 20.715510950887428, - 22.689183383189555, - 24.32504204672725, - 24.76917571645905, - 25.167308660359872, - 25.55431552973275, - 25.85409607638312, - 26.110133317947092, - 26.330508557731093, - 26.514893981081084, - 26.652379210936996, - 26.809464413649263, - 26.916666300063365, - 26.96922193140446, - 27.054226470748603 - ], - "5._48._0.075": [ - 1.526846324373141, - 1.8679037053125445, - 2.1622431316564743, - 2.506080868861053, - 2.8001342903818096, - 3.1432338679800567, - 3.511473348344167, - 3.857857357850316, - 4.459751399181277, - 4.930712321489866, - 5.331458857871278, - 6.002224412369841, - 6.547004846721877, - 8.022439927539539, - 9.523152750203892, - 9.968067991414452, - 10.377948331831622, - 10.785910363406488, - 11.107625004661793, - 11.385384317551138, - 11.626367553184364, - 11.828974735668204, - 11.980430894483764, - 12.15329893349065, - 12.271491966315514, - 12.32962269051676, - 12.423914404212331 - ], - "5._96._0.075": [ - 2.2092718103274023, - 2.5553235626058304, - 2.851913830622354, - 3.2001519267074148, - 3.5233599382868084, - 4.0025506810653315, - 4.688607687930476, - 5.435519397369632, - 6.769739711868008, - 7.7434072909032166, - 8.498819340733252, - 9.62539332023139, - 10.439696691725628, - 12.336240074219319, - 13.984730545681584, - 14.440147371236217, - 14.848759407552247, - 15.246859877582565, - 15.555285881043151, - 15.818798499910445, - 16.045319491784436, - 16.234511881534367, - 16.37548515821274, - 16.536146203601948, - 16.64579587223455, - 16.69961871800177, - 16.78681672438808 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "3_3": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 10.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 10.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351635568339257, - 3.18685987649175, - 3.5194341168753853, - 4.021964695453296, - 4.625373168858598, - 5.631213203703021, - 7.017734131113873, - 8.301128331626503, - 10.117778789699045, - 11.210610651605968, - 11.976583504775217, - 13.028692005585269, - 13.742865870882106, - 15.311494952074163, - 16.618169400815415, - 16.97370980694966, - 17.292351934429536, - 17.602231685890924, - 17.842328567513636, - 18.047436530328493, - 18.223984896573956, - 18.37169673522136, - 18.48184538753949, - 18.60766758338057, - 18.693552413788066, - 18.735670645551725, - 18.803797793376237 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004349, - 2.1114679242247276, - 2.4511928330881463, - 2.7884188390440285, - 3.0449438060593743, - 3.3868270121676423, - 3.6139397405790454, - 3.7971850654668238, - 4.098986094465467, - 4.3483461306850195, - 5.091563856634515, - 6.003348584673112, - 6.30869169255662, - 6.606373821842283, - 6.918310269197569, - 7.176309365099972, - 7.407231942536657, - 7.614477838086076, - 7.793880568509998, - 7.930774556315486, - 8.090147260210866, - 8.200733499237531, - 8.255609007591945, - 8.345178145421313 - ], - "5._384._0.0875": [ - 3.4888288086422636, - 4.016644434684756, - 4.656097350048851, - 5.724643914605977, - 6.959907389349164, - 8.718829385823275, - 10.692998326451791, - 12.268677784338763, - 14.289104442978177, - 15.439317116143096, - 16.228160365480026, - 17.295731529216958, - 18.01381604634192, - 19.582369160770195, - 20.886702784603084, - 21.241361732916218, - 21.559695690469532, - 21.869461495310855, - 22.109738789160463, - 22.315010727642687, - 22.4918421881964, - 22.639906318278147, - 22.75031584383327, - 22.876508470046037, - 22.962608610867996, - 23.004802522166397, - 23.072995900320393 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125447, - 2.162243131656477, - 2.506080868699679, - 2.800133863322582, - 3.14316472586218, - 3.5104718549266547, - 3.854845417542254, - 4.451018321828257, - 4.9116776892091, - 5.297016704953429, - 5.92640690466214, - 6.423636872828878, - 7.719212181270855, - 8.980633064022445, - 9.346857075629213, - 9.682185873929484, - 10.01431289649661, - 10.275472721434395, - 10.500494849414341, - 10.695612308471505, - 10.859690701170848, - 10.982362439165628, - 11.122558142675226, - 11.218429945956188, - 11.265557218538145, - 11.341930946657234 - ], - "5._96._0.075": [ - 2.2092619209324726, - 2.5553055502990443, - 2.8518822508487456, - 3.199985852874824, - 3.5222728206245484, - 3.9984334914448545, - 4.675890638522396, - 5.39760263087033, - 6.630658201542146, - 7.489891206956369, - 8.137933780063445, - 9.080671485080162, - 9.748385559930018, - 11.273174243711193, - 12.580380605681452, - 12.94004337232528, - 13.262876866410474, - 13.577523541572688, - 13.821599056356835, - 14.03034643518104, - 14.210092929480233, - 14.360493279700068, - 14.472700352633987, - 14.600821880462636, - 14.688349595590935, - 14.731324538344243, - 14.800941414503159 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - }, - "4_4": { - "1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 15.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 15.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 15.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351663640324887, - 3.1870790258551014, - 3.5210961279932578, - 4.026258003624487, - 4.620874215132077, - 5.586704760859376, - 6.975975240133478, - 8.385515378636665, - 10.572004132104373, - 11.970612978165319, - 12.977584396047362, - 14.385269064815402, - 15.352257347698204, - 17.488292201888967, - 19.26916115727457, - 19.75338533767014, - 20.18611186851185, - 20.606034675672227, - 20.930371875826708, - 21.20720898473744, - 21.444958809834272, - 21.643459009031766, - 21.791407096906152, - 21.960191851340355, - 22.075419755393312, - 22.131968272416074, - 22.22358119190958 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961543, - 1.4813847491413061, - 1.8198213217004344, - 2.1114679242247276, - 2.4511928331339754, - 2.788419485206642, - 3.044983369398642, - 3.387658420844403, - 3.61621087467806, - 3.800647721718858, - 4.102447078162199, - 4.3482454201841785, - 5.063761085434357, - 5.961844910337476, - 6.281053980373686, - 6.603822067448765, - 6.95537175531292, - 7.256945499031273, - 7.535358466093733, - 7.792070377777192, - 8.019450760285471, - 8.19605530658293, - 8.404727988051604, - 8.551378686479197, - 8.624779509112326, - 8.745473319995293 - ], - "5._384._0.0875": [ - 3.490878423401478, - 4.020865767973589, - 4.648176032065668, - 5.674399499861875, - 6.916132435192409, - 8.869255322450169, - 11.291850797714199, - 13.34706889292032, - 16.074575342864755, - 17.653878358549843, - 18.74281157645554, - 20.218463293681307, - 21.211546808244698, - 23.372625740632863, - 25.160615694186212, - 25.645589407971297, - 26.07990639815786, - 26.50174629776772, - 26.828160051242154, - 27.10687395162787, - 27.34659864893684, - 27.547046683084734, - 27.69649241841502, - 27.867186693474277, - 27.983687149119135, - 28.040815557314513, - 28.133264868112562 - ], - "5._48._0.075": [ - 1.5268463243731425, - 1.8679037053125433, - 2.1622431316564765, - 2.5060808689175333, - 2.8001344398525356, - 3.143258067360416, - 3.511817936616393, - 3.8584823063559384, - 4.450820115805174, - 4.896372927658499, - 5.265314109663766, - 5.875866438354276, - 6.375812833672173, - 7.781652584834328, - 9.298539449880645, - 9.762692744890986, - 10.195323728092962, - 10.629929896539666, - 10.975093504823272, - 11.274487256102537, - 11.535122656382152, - 11.754735236467663, - 11.919110587980263, - 12.106800684140174, - 12.235228520520732, - 12.298450749380303, - 12.401097139217644 - ], - "5._96._0.075": [ - 2.2092718103274023, - 2.555323562842096, - 2.85191417152195, - 3.2001897381139504, - 3.523698775742411, - 4.002837144576757, - 4.67171432905596, - 5.3653840526168555, - 6.583808098627554, - 7.498820819534223, - 8.230410547630026, - 9.35496261489984, - 10.189524424276817, - 12.186066303279896, - 13.960309446498885, - 14.454460899435773, - 14.898355927882445, - 15.331231711411391, - 15.666581859040832, - 15.953119427418569, - 16.199278410806752, - 16.40470718918719, - 16.557725016433995, - 16.731959681699756, - 16.850860777538816, - 16.9092413045836, - 17.00388218199376 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json index fff090ac67..2923bc62be 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json @@ -183,226 +183,6 @@ 3.003 ] }, - "1_10": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ], - [ - 45.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835166360210207, - 3.1870651786929143, - 3.520427929950079, - 4.017301317342929, - 4.585142113766801, - 5.4623796250288885, - 6.62221980966105, - 7.730322221711961, - 9.43953625932803, - 10.571534994880482, - 11.414461521178996, - 12.635301774010772, - 13.503064635042858, - 15.495135227849376, - 17.21699879408359, - 17.69207714160723, - 18.118234783128496, - 18.53299942736411, - 18.8538956770968, - 19.1280793057583, - 19.363640014158186, - 19.56031153726085, - 19.70690226945229, - 19.8740627369843, - 19.988195478156836, - 20.044224795315227, - 20.135037970932906 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961543, - 1.4813847491413061, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833133977, - 2.7884194849666013, - 3.044982785401776, - 3.387477454249017, - 3.614827690511279, - 3.7966442379512735, - 4.089928532251308, - 4.324675842586559, - 4.983928959629237, - 5.749434756791854, - 6.007014487342433, - 6.2626130739909005, - 6.5378535150994095, - 6.773547858469689, - 6.992597196274157, - 7.197461637207968, - 7.382762632174667, - 7.53033578910038, - 7.710552109020643, - 7.842260502791387, - 7.9101598514808344, - 8.025510318428223 - ], - "5._384._0.0875": [ - 3.489872133852398, - 4.009502505330716, - 4.605575714166591, - 5.529329512458617, - 6.56159646019319, - 8.092078738474697, - 9.995258349766244, - 11.688013242065825, - 14.07301374772262, - 15.522031009807536, - 16.545404580822446, - 17.95720110588117, - 18.919950067818064, - 21.037803275245434, - 22.8032230050432, - 23.28324659288996, - 23.712965732269726, - 24.13024662143236, - 24.45289187100183, - 24.72833120590432, - 24.96506439576562, - 25.16285925726164, - 25.310284097404306, - 25.478564151571582, - 25.59340346768926, - 25.64972482205221, - 25.74090308234414 - ], - "5._48._0.075": [ - 1.5268463243731425, - 1.8679037053125433, - 2.1622431316564765, - 2.506080868917534, - 2.800134439662848, - 3.1432552136203307, - 3.511368430330626, - 3.8542610011695033, - 4.425442106216059, - 4.841405042535955, - 5.1754114652799315, - 5.7056714731588825, - 6.1209456324399305, - 7.234831270646256, - 8.42854777654169, - 8.805613601201784, - 9.164899348652693, - 9.53521080886889, - 9.837222911311251, - 10.105549552083284, - 10.344500277283151, - 10.550069419598813, - 10.706550860897421, - 10.888184618120631, - 11.01427278852377, - 11.07692871811408, - 11.179505137942169 - ], - "5._96._0.075": [ - 2.2092718103274067, - 2.555323562842094, - 2.85191417061475, - 3.2001832360175304, - 3.5232722633093347, - 3.995932621056376, - 4.6357033745907295, - 5.27079761737959, - 6.308013058828539, - 7.0394898491202715, - 7.611171950056899, - 8.487202466105845, - 9.146859813162125, - 10.792740920077868, - 12.365333495983705, - 12.822546068453015, - 13.24055702893739, - 13.654180733260864, - 13.978474452516222, - 14.25785085509138, - 14.499494835470502, - 14.702196204418257, - 14.853676926783182, - 15.026601660387092, - 15.144906172769483, - 15.20310358950625, - 15.297593239290679 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, "1_2": { "bore_locations": [ [ @@ -591,2482 +371,6 @@ 3.003 ] }, - "1_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351510677223124, - 3.185839705255709, - 3.509771540026878, - 3.966330673031906, - 4.453898436646452, - 5.141063225581686, - 5.935299849182006, - 6.591064822401665, - 7.4573397084792585, - 7.960204506246263, - 8.308428386398862, - 8.784434241747197, - 9.106869195173443, - 9.819004468262776, - 10.417553200063558, - 10.581112939206577, - 10.728355197827176, - 10.872032730663653, - 10.983845567697387, - 11.079470322916373, - 11.162021309221977, - 11.23127300322087, - 11.282940091757375, - 11.342050731061262, - 11.382382337920458, - 11.402138935562201, - 11.434024927322461 - ], - "5._24._0.075": [ - 0.8740013793970963, - 1.1957934696806856, - 1.4813667488882378, - 1.819785366250676, - 2.1114044341807157, - 2.4510705250300893, - 2.788182499477228, - 3.0443852106901215, - 3.381782256847064, - 3.5979049641354917, - 3.7653169707122243, - 4.025976647688318, - 4.226681022892984, - 4.7519775047763355, - 5.289276786959019, - 5.452176058421596, - 5.605172805309302, - 5.760500989302295, - 5.885820943128873, - 5.9960544830599956, - 6.093756080482953, - 6.177649611559798, - 6.241387660406869, - 6.315575367344118, - 6.367049048904869, - 6.3925661935266564, - 6.434203924751947 - ], - "5._384._0.0875": [ - 3.4763066788959396, - 3.949772974187067, - 4.456260341450167, - 5.169408748681231, - 5.871115554030923, - 6.760870364124674, - 7.687802150819135, - 8.402209462252888, - 9.30497492062296, - 9.81638347479816, - 10.167150006594197, - 10.64346476548816, - 10.964771566054742, - 11.672408151280557, - 12.266242640000142, - 12.42833604434291, - 12.574279870681229, - 12.716647611846046, - 12.827426487106704, - 12.92212131446228, - 13.003853316799084, - 13.072405876226359, - 13.123529770395518, - 13.182008691940712, - 13.22188408446242, - 13.241405445087377, - 13.272897556367255 - ], - "5._48._0.075": [ - 1.5268359332879173, - 1.867883938514737, - 2.1622087383456456, - 2.5060151095371266, - 2.8000177309803878, - 3.1425235015701425, - 3.50253927551839, - 3.8221513912839025, - 4.3219203208202615, - 4.662094623549054, - 4.920779665355623, - 5.305197220055999, - 5.584574633595157, - 6.250240097046942, - 6.8508100598561175, - 7.02032416411666, - 7.174704624548563, - 7.3270420254642925, - 7.446781361568329, - 7.54998768102832, - 7.639728763200551, - 7.715491511685074, - 7.772309526957078, - 7.837607291416172, - 7.882394856115053, - 7.904425286274421, - 7.940124399290625 - ], - "5._96._0.075": [ - 2.2092619209324704, - 2.5553055462488583, - 2.8518764040875877, - 3.1993160118959567, - 3.514955741603026, - 3.9527389763946745, - 4.503681602688366, - 5.006861923779691, - 5.738944199243816, - 6.194547647991565, - 6.520747151603693, - 6.97831807732745, - 7.294240982610546, - 8.004586646061995, - 8.61032697321235, - 8.776955960336549, - 8.927246070742218, - 9.074228802677638, - 9.188836957686432, - 9.287022505975273, - 9.37190962826258, - 9.4432139118431, - 9.496477965097244, - 9.557471885031982, - 9.599147261960589, - 9.619587423820962, - 9.652619821039247 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351565293061927, - 3.186277369725293, - 3.5135763440050924, - 3.984482530615498, - 4.500328527187433, - 5.252929853813622, - 6.166049558164793, - 6.954818862458517, - 8.035329575127863, - 8.677316270389335, - 9.126260992463921, - 9.74365052040903, - 10.163560451553488, - 11.09224837617182, - 11.87253405098203, - 12.085668095178917, - 12.277305834288796, - 12.464136810401527, - 12.609345157930006, - 12.733492953922616, - 12.840568813105348, - 12.930315914522732, - 12.997261077795526, - 13.073806543685494, - 13.126038789048899, - 13.151633867822897, - 13.192971097467371 - ], - "5._24._0.075": [ - 0.8740013793970963, - 1.1957934696806856, - 1.4813667488882372, - 1.8197853662506762, - 2.1114044341807157, - 2.451070525119184, - 2.78818375566569, - 3.044462584972616, - 3.3835492733852717, - 3.6035402764592814, - 3.775936601553508, - 4.04783928375391, - 4.260199503376492, - 4.83026072820424, - 5.440316619613034, - 5.631817647925681, - 5.8144603766946545, - 6.002746075381008, - 6.15671652137846, - 6.293698523897438, - 6.416260465066006, - 6.522333986896158, - 6.603431531688164, - 6.698303675873532, - 6.764456015353557, - 6.797366566033298, - 6.851243600007028 - ], - "5._384._0.0875": [ - 3.4811393655885206, - 3.971010269644954, - 4.508976665415018, - 5.294251139816838, - 6.103114537954158, - 7.177936460766827, - 8.343480110490887, - 9.262841494572463, - 10.439178278648443, - 11.109549088367109, - 11.570154220595375, - 12.195693347635098, - 12.617618287524184, - 13.544949039519576, - 14.321132217443383, - 14.532760907779526, - 14.723102299691968, - 14.908625655760929, - 15.052829037332357, - 15.176068454958983, - 15.282364173235125, - 15.37146341955096, - 15.43790498694524, - 15.513878999541594, - 15.565692266203763, - 15.591066210539713, - 15.632024448327295 - ], - "5._48._0.075": [ - 1.5268359332879173, - 1.8678839385147374, - 2.1622087383456443, - 2.5060151099606895, - 2.8000188519866724, - 3.1427073206177853, - 3.5055373540001047, - 3.8333195360139745, - 4.357904355255417, - 4.7240568674260475, - 5.008175496203009, - 5.440407740861426, - 5.762629797534667, - 6.557057784804414, - 7.302738578001398, - 7.517295299755165, - 7.713813485892955, - 7.90866356380504, - 8.062297541151557, - 8.19505899526737, - 8.310650013821848, - 8.408302728791881, - 8.481590072964535, - 8.565802485788343, - 8.623600723744266, - 8.652055179321795, - 8.698212371267878 - ], - "5._96._0.075": [ - 2.2092619209324704, - 2.5553055480208138, - 2.851878961478617, - 3.199605002205937, - 3.5178882395629185, - 3.968046678185059, - 4.55014749155164, - 5.098742395066348, - 5.930851539740409, - 6.470185581628055, - 6.865730338663789, - 7.431794194211518, - 7.82918121122223, - 8.73596275485232, - 9.51800957209451, - 9.734023351563122, - 9.928834742576504, - 10.119361285092724, - 10.267811157313929, - 10.394989586500742, - 10.504853818991128, - 10.597056343718467, - 10.665915874567876, - 10.744705908389962, - 10.798543354928198, - 10.824959083605435, - 10.867680397495905 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351598062666232, - 3.186539970868435, - 3.5158597860966205, - 3.9954013132700497, - 4.528420506228125, - 5.3215759636561835, - 6.31279536227868, - 7.197643286509492, - 8.449802285616565, - 9.21208449967516, - 9.751349000396456, - 10.498844387141098, - 11.01019344790078, - 12.144898313237372, - 13.099625948047745, - 13.360473668577686, - 13.594785319219229, - 13.823057700360815, - 14.00027547815332, - 14.151752764767862, - 14.282290873883106, - 14.39161564155346, - 14.47315005172904, - 14.566327283043137, - 14.629913935163467, - 14.661082947670087, - 14.7114545821795 - ], - "5._24._0.075": [ - 0.8740013793970968, - 1.195793469680686, - 1.4813667488882376, - 1.8197853662506758, - 2.111404434180715, - 2.451070525172641, - 2.7881845093787754, - 3.0445090095690146, - 3.384609546576235, - 3.60692258803915, - 3.782313721304198, - 4.060991129105417, - 4.280408476405369, - 4.878001605922317, - 5.534874882442655, - 5.745943502422536, - 5.949666959848923, - 6.162379721752643, - 6.338479744874569, - 6.49689031949909, - 6.64004768398907, - 6.76506132893069, - 6.861365674024911, - 6.974792013370061, - 7.054411305581753, - 7.094208003200405, - 7.159645254280049 - ], - "5._384._0.0875": [ - 3.484045428228503, - 3.983803041186735, - 4.5409283279405095, - 5.371119867045962, - 6.250610707585901, - 7.460822088981469, - 8.822064064479669, - 9.923056162452188, - 11.35373942918458, - 12.175784657247368, - 12.742211991048363, - 13.512226599200405, - 14.031877063359648, - 15.172488335257922, - 16.125332896405297, - 16.38489296263954, - 16.618121258210458, - 16.84527448121368, - 17.021659665212646, - 17.17237123947259, - 17.30227791766592, - 17.41110415604465, - 17.492249758034, - 17.585007675061036, - 17.64827611166057, - 17.67926884036746, - 17.72932432908714 - ], - "5._48._0.075": [ - 1.5268463243731423, - 1.8679037053125438, - 2.1622431316564774, - 2.506080868409208, - 2.800133094236608, - 3.1430345625688068, - 3.5077674641030474, - 3.8408116625904216, - 4.381586671332468, - 4.765025811641742, - 5.0664282724592455, - 5.532471379825891, - 5.886390053018073, - 6.785527080084026, - 7.663765491037, - 7.921985185406946, - 8.160457294662926, - 8.39852958441645, - 8.587237147922867, - 8.750825350971988, - 8.893568538257197, - 9.014297504376565, - 9.104922018464343, - 9.208990335965863, - 9.280380743302517, - 9.315523178898712, - 9.372516058367696 - ], - "5._96._0.075": [ - 2.209261920932471, - 2.5553055490839878, - 2.8518804959132367, - 3.199778397146007, - 3.519648020844696, - 3.977249406611028, - 4.578267520113382, - 5.154848731697201, - 6.051483672644926, - 6.64903109207958, - 7.095749573899366, - 7.746739141717749, - 8.21143309928475, - 9.290062728168119, - 10.234593250466354, - 10.497074014542322, - 10.733965995209655, - 10.965795245194869, - 11.1463870323713, - 11.301144547056056, - 11.434763905850694, - 11.546829250128546, - 11.630513785636808, - 11.726204400187711, - 11.791598239536073, - 11.82369792476395, - 11.875650777827616 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_6": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835161990911118, - 3.1867150393227837, - 3.517382314078809, - 4.002692053524816, - 4.547247743896627, - 5.367980602934978, - 6.413570897056565, - 7.368631251473461, - 8.756431479101177, - 9.620653096642311, - 10.239410857054358, - 11.104845246864013, - 11.701048412476972, - 13.030666099915301, - 14.15275812389436, - 14.459600600779275, - 14.73502536672501, - 15.003207714105734, - 15.211206411368803, - 15.388959622334651, - 15.54202512808495, - 15.670121922445576, - 15.765641438969773, - 15.874746584972375, - 15.949209240564953, - 15.985720622448445, - 16.044762103825423 - ], - "5._24._0.075": [ - 0.8740059532267962, - 1.1958031759615424, - 1.4813847491413075, - 1.8198213217004349, - 2.111467924224728, - 2.451192833062686, - 2.7884184796647324, - 3.0449208530816416, - 3.386062186750797, - 3.610309594636148, - 3.788116506186535, - 4.0722835555242085, - 4.297458391423497, - 4.918397013470395, - 5.61584433170168, - 5.843837463130339, - 6.066165491561771, - 6.300813022308235, - 6.497258102773271, - 6.675709755400152, - 6.838541308355629, - 6.982014684034514, - 7.0933559921619755, - 7.2254301846344235, - 7.318753499591462, - 7.365610745077294, - 7.442978084331978 - ], - "5._384._0.0875": [ - 3.4859855003899294, - 3.9923526176916058, - 4.562366681191675, - 5.423179572495527, - 6.351897707188339, - 7.662034742866547, - 9.181066820380732, - 10.43987096909204, - 12.103673142668287, - 13.069209871928068, - 13.737033095912324, - 14.646499652878957, - 15.260947136768802, - 16.60872995583057, - 17.733078357411195, - 18.03913778800683, - 18.313907521596736, - 18.5813341907395, - 18.78879675179029, - 18.966027440371185, - 19.118697950718726, - 19.246521975063747, - 19.341825483318093, - 19.450734107695883, - 19.525027676769373, - 19.561430791160035, - 19.620254657474046 - ], - "5._48._0.075": [ - 1.5268463243731434, - 1.8679037053125456, - 2.162243131656478, - 2.5060808685786498, - 2.8001335427120204, - 3.1431081128315754, - 3.508967689277732, - 3.8452920087841305, - 4.396158399568936, - 4.790341907673497, - 5.1024668122352, - 5.589462598819013, - 5.963237889259346, - 6.930182846399339, - 7.9023401724775715, - 8.193762340376306, - 8.464899445380386, - 8.737487450753207, - 8.95476995829216, - 9.143990687370689, - 9.309650406466377, - 9.450109469695633, - 9.555748290333073, - 9.677192905925992, - 9.76062836275538, - 9.801755151911522, - 9.86854588921472 - ], - "5._96._0.075": [ - 2.2092619209324704, - 2.5553055497927706, - 2.8518815188696505, - 3.1998939940869224, - 3.5208213260912595, - 3.9833921153927623, - 4.597116326255696, - 5.192666633794937, - 6.133875980646579, - 6.772999136289317, - 7.25762498277739, - 7.974401186413238, - 8.493701931753968, - 9.71993303662497, - 10.812582732567138, - 11.11854192062693, - 11.395086505922585, - 11.666052948584051, - 11.877194636648637, - 12.058233088047688, - 12.214508475351074, - 12.345520563404403, - 12.443354501252804, - 12.555167327733807, - 12.631594925930047, - 12.669128294461094, - 12.729922063086406 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_7": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351635513735327, - 3.1868400887210777, - 3.518469948327196, - 4.007905391760889, - 4.560744629535112, - 5.401449083758796, - 6.486976321316337, - 7.494819690011772, - 8.990031148978208, - 9.939742486515406, - 10.62756995709885, - 11.598631317944045, - 12.272809342815531, - 13.785766062801317, - 15.068231886920891, - 15.419442920350987, - 15.734535049510566, - 16.041230270215344, - 16.27890182163994, - 16.481985532426044, - 16.65674348422391, - 16.802895065437415, - 16.911862557914205, - 17.036270572370665, - 17.12118489782945, - 17.16283345665093, - 17.230222114881137 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615424, - 1.4813847491413068, - 1.8198213217004349, - 2.1114679242247276, - 2.4511928330881467, - 2.788418838701112, - 3.044942971763282, - 3.386567629728472, - 3.6119230278460517, - 3.7911613045797923, - 4.078580049636962, - 4.307163752177449, - 4.941677435556674, - 5.663027618983758, - 5.901361759594423, - 6.135247696883413, - 6.383886230396662, - 6.59370507369637, - 6.785803776503792, - 6.962509782107197, - 7.119485626994295, - 7.242243538718094, - 7.389029028716575, - 7.493643635612574, - 7.5465023506515365, - 7.634332582782971 - ], - "5._384._0.0875": [ - 3.487372589585155, - 3.998469801266941, - 4.5777474410051315, - 5.460776223461212, - 6.425674739213298, - 7.811448320008934, - 9.457393874786662, - 10.851633705797674, - 12.726622455189958, - 13.826818124689655, - 14.591252079696888, - 15.634857218384486, - 16.341099374278958, - 17.89012008611717, - 19.18120760165275, - 19.532466736275204, - 19.84756093006916, - 20.15403736620567, - 20.391581915199563, - 20.59447307028286, - 20.76914405185987, - 20.915308582552065, - 21.024277607388683, - 21.148765882915125, - 21.233696595705158, - 21.275322017056848, - 21.342617449775894 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125447, - 2.162243131656477, - 2.506080868699679, - 2.8001338630516033, - 3.14316064878727, - 3.509825052299018, - 3.848493949538661, - 4.406595353628653, - 4.808512554916006, - 5.128385046179502, - 5.630621991594365, - 6.018944136982413, - 7.036679243449652, - 8.083085612065275, - 8.402118479140187, - 8.701041197701302, - 9.003679581690063, - 9.246361952110863, - 9.458765264812914, - 9.64545370153571, - 9.80423770945946, - 9.923954658858502, - 10.061818993725646, - 10.156722307309312, - 10.203578162091253, - 10.279798091320455 - ], - "5._96._0.075": [ - 2.2092619209324726, - 2.555305550299042, - 2.8518822495528053, - 3.199976563484331, - 3.5216594589333883, - 3.987783469991948, - 4.610630051411952, - 5.219885841408891, - 6.193697119043065, - 6.863688145465759, - 7.37701355174114, - 8.145097648783063, - 8.708507627471517, - 10.06015942648566, - 11.28655314742143, - 11.632954167739143, - 11.94671528792384, - 12.254687309217946, - 12.494851774934968, - 12.700949413835472, - 12.87886828832538, - 13.02799852954206, - 13.13937721517926, - 13.266623199224691, - 13.353625807082219, - 13.396374577666606, - 13.465670536191942 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_8": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351647217214677, - 3.186933876044517, - 3.519285736505398, - 4.011818497662372, - 4.570894108303604, - 5.426728791536699, - 6.54283296440728, - 7.591620694148268, - 9.17287427882817, - 10.194107684929786, - 10.941523251610322, - 12.00638612842619, - 12.751640249349293, - 14.436094492467918, - 15.871970204591033, - 16.265984796584448, - 16.619382638898305, - 16.963296056123465, - 17.22962699562798, - 17.457181743403964, - 17.652877641644146, - 17.81643860401857, - 17.938371584706154, - 18.07752195433133, - 18.172508033742663, - 18.21911029705349, - 18.294558020175877 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615428, - 1.481384749141307, - 1.8198213217004344, - 2.1114679242247276, - 2.4511928331072417, - 2.788419107978398, - 3.0449595607775213, - 3.38694671903478, - 3.6131332285032456, - 3.793445501332113, - 4.083306271732066, - 4.314453820052616, - 4.959227826323579, - 5.698797092038951, - 5.945050639137389, - 6.187843159811322, - 6.447351967369248, - 6.667688198809891, - 6.870670508507129, - 7.058642033713825, - 7.226812270639648, - 7.359240903062616, - 7.518811155763976, - 7.633534711150006, - 7.691889342711376, - 7.78953283313596 - ], - "5._384._0.0875": [ - 3.4884136311046037, - 4.003063355715507, - 4.589320170805375, - 5.489201774443061, - 6.481812737411748, - 7.926527425106713, - 9.675279758487836, - 11.185093060011493, - 13.249766296660328, - 14.475431511368184, - 15.331419463282488, - 16.503586351457493, - 17.298532622656356, - 19.042952677600642, - 20.49631606502745, - 20.891580909268864, - 21.245886489210218, - 21.59029727570618, - 21.85701793916289, - 22.084788611103733, - 22.28076589101648, - 22.444673214799938, - 22.566859934104503, - 22.706408405934326, - 22.801623258318443, - 22.84829984392765, - 22.923796795536 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808687904506, - 2.800134103306287, - 3.143200050783419, - 3.510468107010462, - 3.8508963316091953, - 4.414438740817388, - 4.822188729027952, - 5.147920809779815, - 5.6617412665866, - 6.061172234912023, - 7.118222625355691, - 8.223977400646614, - 8.565926354152591, - 8.888368587760395, - 9.216982914172783, - 9.482070651932084, - 9.715283521502554, - 9.92114303118358, - 10.096861017270282, - 10.229732025255013, - 10.383086671728998, - 10.488908728979549, - 10.541255081907316, - 10.626567721596818 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.555323562310493, - 2.851913403363865, - 3.200096530994641, - 3.522392018642154, - 3.991314729739165, - 4.621427261157848, - 5.2418623011263055, - 6.243476466214302, - 6.940573200551681, - 7.479616008236281, - 8.295144787010088, - 8.900299636780371, - 10.376719238156289, - 11.74301450802422, - 12.132732242709551, - 12.486853442375677, - 12.835330841652922, - 13.10754000849982, - 13.341321271536831, - 13.543201038346496, - 13.71239405971962, - 13.838714322240936, - 13.982915022417407, - 14.08146763778019, - 14.129887734480553, - 14.208373458997382 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "1_9": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 5.0, - 0.0 - ], - [ - 10.0, - 0.0 - ], - [ - 15.0, - 0.0 - ], - [ - 20.0, - 0.0 - ], - [ - 25.0, - 0.0 - ], - [ - 30.0, - 0.0 - ], - [ - 35.0, - 0.0 - ], - [ - 40.0, - 0.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351656319927545, - 3.1870068219033163, - 3.519920275456365, - 4.014863864275213, - 4.578804079347618, - 5.446497302574992, - 6.5867638892224605, - 7.668210630295387, - 9.31948595678537, - 10.400751592603127, - 11.199460533416461, - 12.347208567557189, - 13.156859528019162, - 15.000946441179334, - 16.583279549015096, - 17.01857367752908, - 17.4089778114082, - 17.788893833730206, - 18.0829461087665, - 18.334181903923373, - 18.55012717027752, - 18.730511529439973, - 18.864972877443385, - 19.018358910344357, - 19.12307397596743, - 19.174464676721957, - 19.2577123592597 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833122094, - 2.7884193174162886, - 3.04497246334593, - 3.3872415704645307, - 3.6140745702022876, - 3.7952224531880465, - 4.086984505796733, - 4.320130426044472, - 4.9729318086172745, - 5.726847809033363, - 5.979358867048692, - 6.229217031584646, - 6.497391994910775, - 6.72617189207539, - 6.937966719710192, - 7.135171064256747, - 7.3126583934509215, - 7.4532752755923175, - 7.623914203819442, - 7.747637887561994, - 7.810998147346106, - 7.9178111669112 - ], - "5._384._0.0875": [ - 3.489223759869314, - 4.006639482911057, - 4.598343276007638, - 5.511446901966879, - 6.525963758174213, - 8.017847288010064, - 9.850905469534082, - 11.459298557513014, - 13.693400435541571, - 15.035278395984449, - 15.977598076151251, - 17.272541012503424, - 18.153014168043356, - 20.087039880660246, - 21.698451737439473, - 22.13661438713422, - 22.529104227366194, - 22.91042431111111, - 23.205490461365894, - 23.457425178969224, - 23.674073103378994, - 23.85517602846363, - 23.99017047005815, - 24.144303566541343, - 24.249479358635817, - 24.30105041601473, - 24.384501702015786 - ], - "5._48._0.075": [ - 1.526846324373141, - 1.8679037053125445, - 2.1622431316564743, - 2.5060808688610527, - 2.800134290171044, - 3.1432306967978354, - 3.510968279902779, - 3.8527654002068767, - 4.420548459229536, - 4.832854404892467, - 5.163173093427485, - 5.686094377701076, - 6.094284879986048, - 7.18264666289096, - 8.336585270179654, - 8.697625890919033, - 9.039982296550278, - 9.390985403061684, - 9.675748443344334, - 9.927540494293723, - 10.150785408708634, - 10.342080301255882, - 10.487197918838648, - 10.655135183964207, - 10.77134700075032, - 10.82895715943251, - 10.923049524254044 - ], - "5._96._0.075": [ - 2.209271810327404, - 2.5553235626058286, - 2.851913829614357, - 3.200144700434344, - 3.5228810369142374, - 3.9938798036542758, - 4.629352674794193, - 5.257913589969824, - 6.279213384934956, - 6.9952773092555445, - 7.552289038871843, - 8.401007319695614, - 9.035923080498607, - 10.603863876776305, - 12.079333118352304, - 12.504253880805331, - 12.891518221104416, - 13.273615481615817, - 13.572592520008799, - 13.829730304265892, - 14.051931208170306, - 14.238218102995257, - 14.377356608283858, - 14.536178758759824, - 14.64477430111061, - 14.698160519875215, - 14.784765590895411 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_2": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351729237398393, - 3.187625001099388, - 3.526650044183149, - 4.058948328555595, - 4.695595826630846, - 5.645955947827803, - 6.75199902668803, - 7.654056125477437, - 8.8295373343034, - 9.505225082070822, - 9.970821690581543, - 10.604517453302051, - 11.032316935322866, - 11.972865896385606, - 12.759872798830232, - 12.974553793259052, - 13.167610267540615, - 13.355840260878113, - 13.502187407405124, - 13.627318928756589, - 13.735282746334141, - 13.825809741457272, - 13.893347166070974, - 13.970596790045226, - 14.023313509428306, - 14.049144330457892, - 14.090854715886588 - ], - "5._24._0.075": [ - 0.8740013793970963, - 1.1957934696806856, - 1.4813667488882372, - 1.8197853662506762, - 2.1114044341807157, - 2.4510705253864713, - 2.788187524831072, - 3.044696167323624, - 3.389301466509918, - 3.6238334445562486, - 3.8172234620513863, - 4.139359785435122, - 4.401879357678648, - 5.121352318381859, - 5.866280620300906, - 6.090065304640391, - 6.298807049848143, - 6.509232545774595, - 6.6778214753752865, - 6.825248855115401, - 6.955178640279667, - 7.066160722878991, - 7.150130631281159, - 7.247402603037865, - 7.314637831281445, - 7.347899492449007, - 7.402074061153792 - ], - "5._384._0.0875": [ - 3.498202657558257, - 4.059507710829742, - 4.728549908300283, - 5.718298478054254, - 6.695598384635395, - 7.918919559501185, - 9.175209287898596, - 10.134696989496492, - 11.3395882766406, - 12.019506670062515, - 12.48495026821673, - 13.115725677557018, - 13.540591400366639, - 14.474053667337763, - 15.255546352872228, - 15.468670821792806, - 15.660444883601343, - 15.847432011925115, - 15.992846228666961, - 16.117138946341278, - 16.22438283629357, - 16.31430880283502, - 16.381374505740233, - 16.45808138679694, - 16.51039562508549, - 16.536012812409567, - 16.577355525545745 - ], - "5._48._0.075": [ - 1.5268359332879173, - 1.8678839385147374, - 2.1622087383456443, - 2.506015111231376, - 2.800022215479672, - 3.143265912621415, - 3.5156496031342086, - 3.876810167448651, - 4.510598902563926, - 4.97292547403106, - 5.3314780742753, - 5.86690818888861, - 6.254410228495219, - 7.165237276197894, - 7.97067816717318, - 8.195759462193532, - 8.399726151723728, - 8.600223537255848, - 8.757233427901257, - 8.892268671966473, - 9.009391745097531, - 9.108052422862833, - 9.181950800737681, - 9.266735500969588, - 9.324840376214043, - 9.353415812152894, - 9.399728543565555 - ], - "5._96._0.075": [ - 2.209261920932471, - 2.555305553336681, - 2.8518866359196213, - 3.2004882339226746, - 3.5277476508021492, - 4.02978044724101, - 4.745286216946609, - 5.439130433328325, - 6.459200418166225, - 7.08807746324128, - 7.534287055485237, - 8.154677466719678, - 8.57963145524655, - 9.525731186489454, - 10.324498118789299, - 10.543323487480553, - 10.740258694731052, - 10.932543867544993, - 11.082214965494755, - 11.210350854440943, - 11.321010221886622, - 11.413873719757635, - 11.483221068226714, - 11.562584991721117, - 11.616811000251728, - 11.64341307682708, - 11.68642648116794 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_4": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835189313206151, - 3.1889552931299114, - 3.538903600312914, - 4.125245273292659, - 4.885340092341224, - 6.143016730599865, - 7.795423613565886, - 9.27950543596083, - 11.353436747367905, - 12.596840822504834, - 13.468067160431177, - 14.664470966131761, - 15.476574467940123, - 17.259801418963622, - 18.744684236603973, - 19.148663438954305, - 19.510655248879416, - 19.862646518364635, - 20.135320763803648, - 20.368260758547958, - 20.56874655291972, - 20.73647327867843, - 20.86155289126196, - 21.004430911305807, - 21.101968292861095, - 21.14980656381263, - 21.2272004431566 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615428, - 1.481384749141307, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833508249, - 2.7884247637014252, - 3.045310119636185, - 3.3955843569013524, - 3.6436674974056684, - 3.855925700780031, - 4.224811171067863, - 4.5397453647967625, - 5.475296090778514, - 6.570578898325478, - 6.92687615541592, - 7.270320655734392, - 7.627303621650882, - 7.920731222490932, - 8.182500131978642, - 8.41680285150039, - 8.619260142203307, - 8.773624250962664, - 8.953159155105311, - 9.077674641056438, - 9.139455677919402, - 9.240304416029538 - ], - "5._384._0.0875": [ - 3.513927363245156, - 4.138323236620862, - 4.946934659382122, - 6.276023786386213, - 7.745123433015339, - 9.775152078177463, - 12.027507501059624, - 13.821671148549264, - 16.122385823361906, - 17.4324968039469, - 18.331112481880304, - 19.547113368196523, - 20.364969660768274, - 22.15086918925759, - 23.635424304237905, - 24.039034587050264, - 24.401264702494476, - 24.753712834574596, - 25.027064089428094, - 25.260592821811322, - 25.461753936083383, - 25.63018173599274, - 25.755780013529776, - 25.899333215570362, - 25.997285001804187, - 26.04529040415504, - 26.122885369700576 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125456, - 2.1622431316564765, - 2.5060808706966746, - 2.800139149366015, - 3.1440381898974845, - 3.5256483410086874, - 3.916608969868303, - 4.6564326435683565, - 5.2408522575199115, - 5.722156280418049, - 6.488021692642983, - 7.078108817637764, - 8.576263856323838, - 10.010562551630642, - 10.425304910732308, - 10.804721194183715, - 11.180326309928033, - 11.475509468067585, - 11.729855694876939, - 11.950339156563452, - 12.135706243920572, - 12.274298805136475, - 12.43266659756452, - 12.540977602810342, - 12.594230671057593, - 12.680561756879944 - ], - "5._96._0.075": [ - 2.209271810327405, - 2.5553235702845147, - 2.851924915529097, - 3.201421474439214, - 3.5371855730616306, - 4.085002516161643, - 4.9363362454780155, - 5.844581988979856, - 7.333675535782044, - 8.340589006658128, - 9.091921499272008, - 10.179343803963988, - 10.948160171270874, - 12.705528852454755, - 14.213545899477472, - 14.628526877105443, - 15.001108095533844, - 15.364261803956104, - 15.645980395169984, - 15.886802623855722, - 16.09410089941256, - 16.267481710205853, - 16.396752054083837, - 16.544255556142314, - 16.644951440401478, - 16.694366889837227, - 16.774367453977067 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_5": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 5.0, - 15.0 - ], - [ - 5.0, - 20.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351925911221576, - 3.1892213571751724, - 3.541355680931138, - 4.138584767756017, - 4.9241374783226926, - 6.249826317837372, - 8.042260934494504, - 9.703216610321878, - 12.09809062521322, - 13.56908007334359, - 14.612006032564038, - 16.055720129237326, - 17.041446513509268, - 19.21235807125101, - 21.021394579795135, - 21.51348253987512, - 21.953838825026494, - 22.381596137133617, - 22.71246057740695, - 22.995009669704974, - 23.237929131473347, - 23.440952165864083, - 23.592323435875723, - 23.765132002398985, - 23.883117319556238, - 23.9410075258365, - 24.034741663406493 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.195803175961543, - 1.4813847491413061, - 1.8198213217004344, - 2.1114679242247276, - 2.451192833561717, - 2.788425517737825, - 3.045356714841056, - 3.3966911071229466, - 3.6474066614447547, - 3.8633595181679907, - 4.24146678775765, - 4.566884714356566, - 5.547880470514063, - 6.726814251230247, - 7.118959710629289, - 7.50128704873647, - 7.9035098800175545, - 8.238003360525568, - 8.5395714881233, - 8.812074243127194, - 9.049545264964225, - 9.231894169168777, - 9.445246167913844, - 9.59406803876897, - 9.66821594998837, - 9.789711570773129 - ], - "5._384._0.0875": [ - 3.517089669530491, - 4.154236578069029, - 4.991813562490588, - 6.397124777871605, - 7.993192537890449, - 10.273204407311878, - 12.894363852555866, - 15.03591773423202, - 17.826301894246654, - 19.428894473358316, - 20.531330089142955, - 22.024350568112386, - 23.028917741747733, - 25.218676239030803, - 27.034574164062334, - 27.527694270576607, - 27.969766769490864, - 28.399509205537253, - 28.732408761913508, - 29.016742293317094, - 29.261480255157917, - 29.466255352215995, - 29.61894760132361, - 29.793411897991778, - 29.91247707075819, - 29.970849669315502, - 30.06526432438584 - ], - "5._48._0.075": [ - 1.5268463243731425, - 1.8679037053125433, - 2.1622431316564765, - 2.5060808709508366, - 2.8001398221265577, - 3.1441492286179065, - 3.527561651194066, - 3.9244278621678506, - 4.685625175731641, - 5.295453920390567, - 5.803427043965115, - 6.6229181920128095, - 7.264275168426223, - 8.932368370759292, - 10.58456660789766, - 11.071975122419524, - 11.520931091653425, - 11.96807575491938, - 12.320962857674967, - 12.626044874588079, - 12.890997615805377, - 13.113976808931236, - 13.280824408999106, - 13.471430249883822, - 13.601864227263004, - 13.666054533956704, - 13.770242133670214 - ], - "5._96._0.075": [ - 2.2092718103274054, - 2.555323571347717, - 2.8519264502576633, - 3.20159650900156, - 3.539052908031279, - 4.096048940752249, - 4.975279344723372, - 5.929988032282506, - 7.533985925741476, - 8.64781926922027, - 9.494276092360495, - 10.740984617263898, - 11.637037095800018, - 13.720762587803135, - 15.536368860385512, - 16.03891768592228, - 16.490303967511636, - 16.930398915078918, - 17.271561697172185, - 17.563187144528, - 17.81397563275722, - 18.023509191350684, - 18.179684517471944, - 18.35771990199947, - 18.47926197550023, - 18.538934132395124, - 18.635627554320685 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "2_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351838500296616, - 3.1885118572313673, - 3.534817814223326, - 4.1030737424674095, - 4.821317420742483, - 5.969919191578708, - 7.41028413925126, - 8.648650678142598, - 10.318019242462421, - 11.295421939311396, - 11.97337743517005, - 12.898811056559623, - 13.524508345420257, - 14.897437624552998, - 16.042123430945267, - 16.35383097791215, - 16.633592896224254, - 16.90595883307184, - 17.117309952985618, - 17.297937101829362, - 17.45358097851654, - 17.58393310527604, - 17.6811611636915, - 17.79229429280022, - 17.868148885395772, - 17.905336255686425, - 17.965445068310917 - ], - "5._24._0.075": [ - 0.8740059532267962, - 1.1958031759615424, - 1.4813847491413075, - 1.8198213217004349, - 2.111467924224728, - 2.4511928334191357, - 2.788423506974107, - 3.0452324610064143, - 3.3937398837242934, - 3.637437610795647, - 3.843546410724326, - 4.197128320327028, - 4.494757418969375, - 5.356757547871304, - 6.322806150411278, - 6.626738081951607, - 6.915404542282874, - 7.21101958981349, - 7.450860982652266, - 7.66246734371669, - 7.850165882224263, - 8.011164200847652, - 8.133224321258036, - 8.274627098240014, - 8.37233003387617, - 8.420668855356707, - 8.49937572606141 - ], - "5._384._0.0875": [ - 3.508669460749622, - 4.111915670923915, - 4.873040032123389, - 6.080558225789574, - 7.357967553781383, - 9.04485058828995, - 10.84277364416776, - 12.241098615273712, - 14.011222366677718, - 15.01309719121016, - 15.699134890832847, - 16.62764066517033, - 17.252332732919882, - 18.619928993318393, - 19.76028670279949, - 20.070751033016197, - 20.34972432420409, - 20.621432400545174, - 20.832432856467467, - 21.012738747514504, - 21.168177723656544, - 21.298415605446706, - 21.395540979639048, - 21.50658808640696, - 21.58234324516048, - 21.619456039757466, - 21.679401052203215 - ], - "5._48._0.075": [ - 1.5268463243731434, - 1.8679037053125456, - 2.162243131656478, - 2.5060808702730704, - 2.8001380280984436, - 3.1438531258067117, - 3.5224600129449035, - 3.9035943923639613, - 4.608135080323152, - 5.1510836559379705, - 5.589462884077594, - 6.27130271990618, - 6.783963554912862, - 8.04316830464235, - 9.202414931053042, - 9.53127928011967, - 9.83044491677738, - 10.125260643940114, - 10.356342764412293, - 10.555043007864295, - 10.727181907122153, - 10.87191268601469, - 10.980113122105404, - 11.103877010708246, - 11.188516611811483, - 11.230104665601413, - 11.297459077760191 - ], - "5._96._0.075": [ - 2.2092619209324718, - 2.555305556880593, - 2.8518917514576345, - 3.201071628572207, - 3.5339683812307245, - 4.066374782143852, - 4.871306856588727, - 5.703345918840731, - 7.011014828442001, - 7.859290682278471, - 8.476335068125367, - 9.349652040268383, - 9.955723894960455, - 11.316721448596432, - 12.4702954875727, - 12.786558094229333, - 13.070633086294775, - 13.347621860741711, - 13.562753164373564, - 13.746815702553597, - 13.905500700816589, - 14.038445223288367, - 14.137675478115584, - 14.251099311683415, - 14.328597138129837, - 14.366636071121864, - 14.428211518355958 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, - "3_3": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 5.0 - ], - [ - 5.0, - 10.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 5.0 - ], - [ - 10.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.835194777381192, - 3.1894025608097913, - 3.5431730221711955, - 4.14995457114244, - 4.9602850236753655, - 6.347578461069761, - 8.219303063204094, - 9.914516638470111, - 12.278861307216795, - 13.689375428116989, - 14.674344858546927, - 16.022611202493785, - 16.935365383865182, - 18.932857449180446, - 20.590866358188737, - 21.041366524348163, - 21.444770448561922, - 21.836821848945775, - 22.14035060837515, - 22.399611200201736, - 22.622676684137772, - 22.809243153220393, - 22.948370714060438, - 23.107281147415655, - 23.21577422790068, - 23.26899392646864, - 23.35511895816213 - ], - "5._24._0.075": [ - 0.8740059532267964, - 1.1958031759615426, - 1.4813847491413075, - 1.8198213217004344, - 2.1114679242247276, - 2.4511928335973607, - 2.7884260204953697, - 3.04538794032085, - 3.397478847285279, - 3.65028236953504, - 3.8694446367968838, - 4.256269763172383, - 4.592145183247248, - 5.616342141065902, - 6.8505258017449835, - 7.255864594819363, - 7.646968809849212, - 8.053276846734915, - 8.386585501883108, - 8.683166345880695, - 8.947757383742928, - 9.175550285120444, - 9.348629321286626, - 9.549090750604586, - 9.687603583920982, - 9.75618204850785, - 9.867903170019959 - ], - "5._384._0.0875": [ - 3.519414642750923, - 4.167877970390456, - 5.033726376163877, - 6.505666850113914, - 8.171517377809307, - 10.490884518790367, - 13.057641798784514, - 15.091596800768148, - 17.68751684607798, - 19.161074457078783, - 20.170244304416116, - 21.533887452770426, - 22.450098703200283, - 24.44785294350101, - 26.106290008466924, - 26.556935572090406, - 26.961259778317036, - 27.354567382479086, - 27.659517769608016, - 27.920033833407945, - 28.144407005050972, - 28.332246401451023, - 28.47232450648087, - 28.632424722805496, - 28.741678395827968, - 28.795229262854185, - 28.881805767853283 - ], - "5._48._0.075": [ - 1.526846324373141, - 1.8679037053125445, - 2.1622431316564743, - 2.5060808711202784, - 2.8001402706862746, - 3.144224045078283, - 3.5289604520774644, - 3.9307999739317094, - 4.712428254185614, - 5.347418921621241, - 5.879965415980396, - 6.739706948129181, - 7.408865386614326, - 9.11626514200392, - 10.744546670597042, - 11.212791446300308, - 11.639773033803978, - 12.061220509658641, - 12.391458830061971, - 12.675406212948246, - 12.921007864313719, - 13.127088899769337, - 13.280972380875744, - 13.456545976421273, - 13.576513141553155, - 13.63547462786866, - 13.731049929860575 - ], - "5._96._0.075": [ - 2.2092718103274045, - 2.555323572056519, - 2.851927473662024, - 3.2017149990298575, - 3.5404146600729027, - 4.105317906966819, - 5.011588848511913, - 6.010214756195945, - 7.689683107068938, - 8.83802759134417, - 9.696161835980128, - 10.936159020578424, - 11.810006714617264, - 13.795953525503256, - 15.487658517857962, - 15.951619872839778, - 16.36743918194945, - 16.772210126218116, - 17.08580136939843, - 17.353701914617353, - 17.584116928288115, - 17.77669672785507, - 17.92024261930604, - 18.08396769607562, - 18.195727750777714, - 18.25057695718145, - 18.33939900223481 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - }, "5_8": { "bore_locations": [ [ diff --git a/HPXMLtoOpenStudio/resources/g_functions/util.rb b/HPXMLtoOpenStudio/resources/g_functions/util.rb index 306fe73192..eecb4ad730 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/util.rb +++ b/HPXMLtoOpenStudio/resources/g_functions/util.rb @@ -1,5 +1,19 @@ # frozen_string_literal: true +def add_n_x_m(json, json2, expected_num_boreholes, n_x_m, key2 = nil) + if key2.nil? + actual_num_boreholes = json[n_x_m]['bore_locations'].size + fail "#{expected_num_boreholes} vs #{actual_num_boreholes}" if expected_num_boreholes != actual_num_boreholes + + json2.update({ n_x_m => json[n_x_m] }) + else + actual_num_boreholes = json[n_x_m][key2]['bore_locations'].size + fail "#{expected_num_boreholes} vs #{actual_num_boreholes}" if expected_num_boreholes != actual_num_boreholes + + json2.update({ n_x_m => { key2 => json[n_x_m][key2] } }) + end +end + def process_g_functions(filepath) # Downselect jsons found at https://gdr.openei.org/files/1325/g-function_library_1.0.zip require 'json' @@ -8,38 +22,38 @@ def process_g_functions(filepath) g_functions_path = File.dirname(filepath) Dir[File.join(filepath, '*.json')].each do |config_json| file = File.open(config_json) + config_json = File.basename(config_json) + puts "Processing #{config_json}..." json = JSON.load(file) - json.each do |key_1, value_1| - if value_1.key?('bore_locations') - bore_locations = json[key_1]['bore_locations'] - if config_json.include?('rectangle') - if key_1 != '5_8' && (bore_locations.length > 10) - json.delete(key_1) - end - elsif (bore_locations.length > 10) - json.delete(key_1) - elsif config_json.include?('LopU') - value_1.each do |key_2, value_2| - bore_locations = value_1[key_2]['bore_locations'] - if (bore_locations.length > 10) - json.delete(key_1) - end - end - end - else - value_1.each do |key_2, value_2| - bore_locations = value_1[key_2]['bore_locations'] - if (bore_locations.length > 10) - json.delete(key_1) - end - end - end + json2 = {} + case config_json + when 'rectangle_5m_v1.0.json' + add_n_x_m(json, json2, 1, '1_1') + add_n_x_m(json, json2, 2, '1_2') + # ... + add_n_x_m(json, json2, 40, '5_8') # test case + when 'L_configurations_5m_v1.0.json' + # ... + when 'C_configurations_5m_v1.0.json' + # ... + when 'LopU_configurations_5m_v1.0.json' + add_n_x_m(json, json2, 6, '3_3', '1') + add_n_x_m(json, json2, 7, '3_4', '2') + # ... + when 'Open_configurations_5m_v1.0.json' + # ... + when 'U_configurations_5m_v1.0.json' + # ... + when 'zoned_rectangle_5m_v1.0.json' + add_n_x_m(json, json2, 17, '5_5', '1_1') + else + fail "Unrecognized config_json: #{config_json}" end configpath = File.join(g_functions_path, File.basename(config_json)) File.open(configpath, 'w') do |f| - json = JSON.pretty_generate(json) + json = JSON.pretty_generate(json2) f.write(json) end end diff --git a/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json index 7a73a41bfd..8928216e8a 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json @@ -1,2 +1,252 @@ { + "5_5": { + "1_1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 20.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 20.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 20.0 + ], + [ + 20.0, + 0.0 + ], + [ + 20.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 20.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 20.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 20.0, + 15.0 + ], + [ + 10.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351690633539097, + 3.187297729317165, + 3.5231036913448337, + 4.03829515196311, + 4.668769284467644, + 5.777440926784886, + 7.516980560016233, + 9.408208653929846, + 12.541448581917443, + 14.646742465310703, + 16.198463432247014, + 18.401364382030078, + 19.931126947261973, + 23.3189624425537, + 26.133972642596465, + 26.897088922535158, + 27.575829825847972, + 28.232069929758374, + 28.736322872950243, + 29.166145539318638, + 29.533983455420717, + 29.840138163659294, + 30.06819405504583, + 30.32795615627281, + 30.50537347615724, + 30.592546488854328, + 30.734152414556835 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615428, + 1.481384749141308, + 1.8198213217004362, + 2.1114679242247285, + 2.4511928331780077, + 2.7884201061707126, + 3.0450217246869804, + 3.388565179481605, + 3.6192868993770895, + 3.8069539331658686, + 4.118538407429997, + 4.378744130427089, + 5.183253508727977, + 6.284020672155531, + 6.695014469215383, + 7.122157330148088, + 7.599498561101806, + 8.01923069211515, + 8.414766798479853, + 8.786413185216366, + 9.120942300420413, + 9.384027154875726, + 9.697662373564988, + 9.919793749932527, + 10.031619073169086, + 10.21632971726765 + ], + "5._384._0.0875": [ + 3.4934572709321556, + 4.035691721022439, + 4.706624305572615, + 5.8985057336757425, + 7.459178539186731, + 10.104211957553916, + 13.633796669906554, + 16.787891397377003, + 21.111139215244012, + 23.65703513151427, + 25.421283303472304, + 27.81192564136665, + 29.419825079624587, + 32.895639191448346, + 35.74827181162997, + 36.518970300658175, + 37.20697324196509, + 37.87338036975562, + 38.38719415998495, + 38.825625902051655, + 39.20189768001081, + 39.515924303129665, + 39.75002320078204, + 40.017209438135325, + 40.19967417152731, + 40.28923726732824, + 40.43446284012706 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125453, + 2.1622431316564774, + 2.506080869126845, + 2.800134993885049, + 3.143349426668005, + 3.513384089652635, + 3.865111868446782, + 4.483801482406906, + 4.974525454681382, + 5.399366104195478, + 6.135266526023098, + 6.762751058745606, + 8.628872573609703, + 10.78479744712892, + 11.471690880303774, + 12.119406999486857, + 12.777009627174387, + 13.302587787154682, + 13.760422830412521, + 14.15928564800977, + 14.494942818422327, + 14.745850943130364, + 15.031122437439242, + 15.226028694352411, + 15.322068749754699, + 15.478367110702123 + ], + "5._96._0.075": [ + 2.2092718103274023, + 2.5553235637176743, + 2.851915435389374, + 3.200333692339888, + 3.5252272673310836, + 4.012534865719168, + 4.720170488536042, + 5.5076987699385676, + 7.005583313020637, + 8.201820604148494, + 9.196497756966165, + 10.782952382200207, + 11.99995619143155, + 15.010254291210055, + 17.75981255164101, + 18.532566088636568, + 19.22529556804791, + 19.899642099253548, + 20.41971051192545, + 20.863231028104984, + 21.24256674314214, + 21.55775696138165, + 21.79212690758522, + 22.058095593622557, + 22.239531227056123, + 22.328716918121458, + 22.47371715520643 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 6da6855742..8c8c29a39a 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -2667,7 +2667,7 @@ def self.gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, bore_dia return nom_length_heat, nom_length_cool end - def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter, n_x_m = nil) + def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter) require 'json' g_functions_filename = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => 'rectangle_5m_v1.0.json', @@ -2708,7 +2708,7 @@ def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, rb = b_d_rb['rb'] b_h_rb = "#{b}._#{h}._#{rb}" - logtime, g = get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb, n_x_m) + logtime, g = get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb) logtimes << logtime gs << g end @@ -2737,13 +2737,11 @@ def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, fail "Could not find gfnc_coeff from '#{g_functions_filename}'." end - def self.get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb, n_x_m) # FIXME: Change all 'n_x_m' to 'm_x_n' - g_functions_json.each do |key_1, values_1| - next if !n_x_m.nil? && n_x_m != "#{key_1}" - + def self.get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb) + g_functions_json.each do |_key_1, values_1| if [HPXML::GeothermalLoopBorefieldConfigurationRectangle, HPXML::GeothermalLoopBorefieldConfigurationL].include?(bore_config) - bore_locations = values_1[:bore_locations] # select the most appropriate config here + bore_locations = values_1[:bore_locations] next if bore_locations.size != num_bore_holes logtime = values_1[:logtime].map { |v| Float(v) } From 1a4af66fd03cfb652ccbf50c1a72d37cd2e188ff Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 25 Jul 2023 16:10:37 -0700 Subject: [PATCH 075/217] Update the linear interpolation test. --- HPXMLtoOpenStudio/measure.xml | 24 ++++++++++++------------ HPXMLtoOpenStudio/tests/test_hvac.rb | 3 +-- 2 files changed, 13 insertions(+), 14 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 7f2d97a426..eaf54326a6 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 031a2179-aeb1-47fc-abae-93e2463954d1 - 2023-07-25T20:41:39Z + 231dcac6-9638-4768-948e-ed6a091d947b + 2023-07-25T23:09:40Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -220,49 +220,49 @@ g_functions/C_configurations_5m_v1.0.json json resource - E97DCCDD + 73BEBBA8
g_functions/L_configurations_5m_v1.0.json json resource - 1802DD9A + 73BEBBA8 g_functions/LopU_configurations_5m_v1.0.json json resource - 8A69A940 + 80874D4F g_functions/Open_configurations_5m_v1.0.json json resource - FF25A024 + 73BEBBA8 g_functions/U_configurations_5m_v1.0.json json resource - 3B7B517E + 73BEBBA8 g_functions/rectangle_5m_v1.0.json json resource - CC1D265E + E2CF1DF7 g_functions/util.rb rb resource - 42745A9D + 9ECA4592 g_functions/zoned_rectangle_5m_v1.0.json json resource - 73BEBBA8 + 5986E71A generator.rb @@ -328,7 +328,7 @@ hvac_sizing.rb rb resource - 2F7EBB1C + 2561256D lighting.rb @@ -568,7 +568,7 @@ test_hvac.rb rb test - 0BA5788E + 4C361C9C test_hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index 69c2c004eb..ed98ced425 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -746,8 +746,7 @@ def test_g_function_library_linear_interpolation_example bore_spacing = UnitConversions.convert(7.0, 'm', 'ft') bore_depth = UnitConversions.convert(150.0, 'm', 'ft') bore_diameter = UnitConversions.convert(UnitConversions.convert(80.0, 'mm', 'm'), 'm', 'in') * 2 - n_x_m = '5_8' - actual_lntts, actual_gfnc_coeff = HVACSizing.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter, n_x_m) + actual_lntts, actual_gfnc_coeff = HVACSizing.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter) expected_lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] expected_gfnc_coeff = [2.619, 2.967, 3.279, 3.700, 4.190, 5.107, 6.680, 8.537, 11.991, 14.633, 16.767, 20.083, 22.593, 28.734, 34.345, 35.927, 37.342, 38.715, 39.768, 40.664, 41.426, 42.056, 42.524, 43.054, 43.416, 43.594, 43.885] From 60a151706d4fecbce7d525a1d562a90c624c32bd Mon Sep 17 00:00:00 2001 From: prsh5175 Date: Wed, 26 Jul 2023 22:37:25 -0600 Subject: [PATCH 076/217] temporary commit for debugging --- .../g_functions/rectangle_5m_v1.0.json | 588 ++++++++++++++++++ .../resources/g_functions/util.rb | 33 +- 2 files changed, 614 insertions(+), 7 deletions(-) diff --git a/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json index 2923bc62be..528e87d3fa 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json @@ -371,6 +371,594 @@ 3.003 ] }, + "1_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351510677223124, + 3.185839705255709, + 3.509771540026878, + 3.966330673031906, + 4.453898436646452, + 5.141063225581686, + 5.935299849182006, + 6.591064822401665, + 7.4573397084792585, + 7.960204506246263, + 8.308428386398862, + 8.784434241747197, + 9.106869195173443, + 9.819004468262776, + 10.417553200063558, + 10.581112939206577, + 10.728355197827176, + 10.872032730663653, + 10.983845567697387, + 11.079470322916373, + 11.162021309221977, + 11.23127300322087, + 11.282940091757375, + 11.342050731061262, + 11.382382337920458, + 11.402138935562201, + 11.434024927322461 + ], + "5._24._0.075": [ + 0.8740013793970963, + 1.1957934696806856, + 1.4813667488882378, + 1.819785366250676, + 2.1114044341807157, + 2.4510705250300893, + 2.788182499477228, + 3.0443852106901215, + 3.381782256847064, + 3.5979049641354917, + 3.7653169707122243, + 4.025976647688318, + 4.226681022892984, + 4.7519775047763355, + 5.289276786959019, + 5.452176058421596, + 5.605172805309302, + 5.760500989302295, + 5.885820943128873, + 5.9960544830599956, + 6.093756080482953, + 6.177649611559798, + 6.241387660406869, + 6.315575367344118, + 6.367049048904869, + 6.3925661935266564, + 6.434203924751947 + ], + "5._384._0.0875": [ + 3.4763066788959396, + 3.949772974187067, + 4.456260341450167, + 5.169408748681231, + 5.871115554030923, + 6.760870364124674, + 7.687802150819135, + 8.402209462252888, + 9.30497492062296, + 9.81638347479816, + 10.167150006594197, + 10.64346476548816, + 10.964771566054742, + 11.672408151280557, + 12.266242640000142, + 12.42833604434291, + 12.574279870681229, + 12.716647611846046, + 12.827426487106704, + 12.92212131446228, + 13.003853316799084, + 13.072405876226359, + 13.123529770395518, + 13.182008691940712, + 13.22188408446242, + 13.241405445087377, + 13.272897556367255 + ], + "5._48._0.075": [ + 1.5268359332879173, + 1.867883938514737, + 2.1622087383456456, + 2.5060151095371266, + 2.8000177309803878, + 3.1425235015701425, + 3.50253927551839, + 3.8221513912839025, + 4.3219203208202615, + 4.662094623549054, + 4.920779665355623, + 5.305197220055999, + 5.584574633595157, + 6.250240097046942, + 6.8508100598561175, + 7.02032416411666, + 7.174704624548563, + 7.3270420254642925, + 7.446781361568329, + 7.54998768102832, + 7.639728763200551, + 7.715491511685074, + 7.772309526957078, + 7.837607291416172, + 7.882394856115053, + 7.904425286274421, + 7.940124399290625 + ], + "5._96._0.075": [ + 2.2092619209324704, + 2.5553055462488583, + 2.8518764040875877, + 3.1993160118959567, + 3.514955741603026, + 3.9527389763946745, + 4.503681602688366, + 5.006861923779691, + 5.738944199243816, + 6.194547647991565, + 6.520747151603693, + 6.97831807732745, + 7.294240982610546, + 8.004586646061995, + 8.61032697321235, + 8.776955960336549, + 8.927246070742218, + 9.074228802677638, + 9.188836957686432, + 9.287022505975273, + 9.37190962826258, + 9.4432139118431, + 9.496477965097244, + 9.557471885031982, + 9.599147261960589, + 9.619587423820962, + 9.652619821039247 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351565293061927, + 3.186277369725293, + 3.5135763440050924, + 3.984482530615498, + 4.500328527187433, + 5.252929853813622, + 6.166049558164793, + 6.954818862458517, + 8.035329575127863, + 8.677316270389335, + 9.126260992463921, + 9.74365052040903, + 10.163560451553488, + 11.09224837617182, + 11.87253405098203, + 12.085668095178917, + 12.277305834288796, + 12.464136810401527, + 12.609345157930006, + 12.733492953922616, + 12.840568813105348, + 12.930315914522732, + 12.997261077795526, + 13.073806543685494, + 13.126038789048899, + 13.151633867822897, + 13.192971097467371 + ], + "5._24._0.075": [ + 0.8740013793970963, + 1.1957934696806856, + 1.4813667488882372, + 1.8197853662506762, + 2.1114044341807157, + 2.451070525119184, + 2.78818375566569, + 3.044462584972616, + 3.3835492733852717, + 3.6035402764592814, + 3.775936601553508, + 4.04783928375391, + 4.260199503376492, + 4.83026072820424, + 5.440316619613034, + 5.631817647925681, + 5.8144603766946545, + 6.002746075381008, + 6.15671652137846, + 6.293698523897438, + 6.416260465066006, + 6.522333986896158, + 6.603431531688164, + 6.698303675873532, + 6.764456015353557, + 6.797366566033298, + 6.851243600007028 + ], + "5._384._0.0875": [ + 3.4811393655885206, + 3.971010269644954, + 4.508976665415018, + 5.294251139816838, + 6.103114537954158, + 7.177936460766827, + 8.343480110490887, + 9.262841494572463, + 10.439178278648443, + 11.109549088367109, + 11.570154220595375, + 12.195693347635098, + 12.617618287524184, + 13.544949039519576, + 14.321132217443383, + 14.532760907779526, + 14.723102299691968, + 14.908625655760929, + 15.052829037332357, + 15.176068454958983, + 15.282364173235125, + 15.37146341955096, + 15.43790498694524, + 15.513878999541594, + 15.565692266203763, + 15.591066210539713, + 15.632024448327295 + ], + "5._48._0.075": [ + 1.5268359332879173, + 1.8678839385147374, + 2.1622087383456443, + 2.5060151099606895, + 2.8000188519866724, + 3.1427073206177853, + 3.5055373540001047, + 3.8333195360139745, + 4.357904355255417, + 4.7240568674260475, + 5.008175496203009, + 5.440407740861426, + 5.762629797534667, + 6.557057784804414, + 7.302738578001398, + 7.517295299755165, + 7.713813485892955, + 7.90866356380504, + 8.062297541151557, + 8.19505899526737, + 8.310650013821848, + 8.408302728791881, + 8.481590072964535, + 8.565802485788343, + 8.623600723744266, + 8.652055179321795, + 8.698212371267878 + ], + "5._96._0.075": [ + 2.2092619209324704, + 2.5553055480208138, + 2.851878961478617, + 3.199605002205937, + 3.5178882395629185, + 3.968046678185059, + 4.55014749155164, + 5.098742395066348, + 5.930851539740409, + 6.470185581628055, + 6.865730338663789, + 7.431794194211518, + 7.82918121122223, + 8.73596275485232, + 9.51800957209451, + 9.734023351563122, + 9.928834742576504, + 10.119361285092724, + 10.267811157313929, + 10.394989586500742, + 10.504853818991128, + 10.597056343718467, + 10.665915874567876, + 10.744705908389962, + 10.798543354928198, + 10.824959083605435, + 10.867680397495905 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351598062666232, + 3.186539970868435, + 3.5158597860966205, + 3.9954013132700497, + 4.528420506228125, + 5.3215759636561835, + 6.31279536227868, + 7.197643286509492, + 8.449802285616565, + 9.21208449967516, + 9.751349000396456, + 10.498844387141098, + 11.01019344790078, + 12.144898313237372, + 13.099625948047745, + 13.360473668577686, + 13.594785319219229, + 13.823057700360815, + 14.00027547815332, + 14.151752764767862, + 14.282290873883106, + 14.39161564155346, + 14.47315005172904, + 14.566327283043137, + 14.629913935163467, + 14.661082947670087, + 14.7114545821795 + ], + "5._24._0.075": [ + 0.8740013793970968, + 1.195793469680686, + 1.4813667488882376, + 1.8197853662506758, + 2.111404434180715, + 2.451070525172641, + 2.7881845093787754, + 3.0445090095690146, + 3.384609546576235, + 3.60692258803915, + 3.782313721304198, + 4.060991129105417, + 4.280408476405369, + 4.878001605922317, + 5.534874882442655, + 5.745943502422536, + 5.949666959848923, + 6.162379721752643, + 6.338479744874569, + 6.49689031949909, + 6.64004768398907, + 6.76506132893069, + 6.861365674024911, + 6.974792013370061, + 7.054411305581753, + 7.094208003200405, + 7.159645254280049 + ], + "5._384._0.0875": [ + 3.484045428228503, + 3.983803041186735, + 4.5409283279405095, + 5.371119867045962, + 6.250610707585901, + 7.460822088981469, + 8.822064064479669, + 9.923056162452188, + 11.35373942918458, + 12.175784657247368, + 12.742211991048363, + 13.512226599200405, + 14.031877063359648, + 15.172488335257922, + 16.125332896405297, + 16.38489296263954, + 16.618121258210458, + 16.84527448121368, + 17.021659665212646, + 17.17237123947259, + 17.30227791766592, + 17.41110415604465, + 17.492249758034, + 17.585007675061036, + 17.64827611166057, + 17.67926884036746, + 17.72932432908714 + ], + "5._48._0.075": [ + 1.5268463243731423, + 1.8679037053125438, + 2.1622431316564774, + 2.506080868409208, + 2.800133094236608, + 3.1430345625688068, + 3.5077674641030474, + 3.8408116625904216, + 4.381586671332468, + 4.765025811641742, + 5.0664282724592455, + 5.532471379825891, + 5.886390053018073, + 6.785527080084026, + 7.663765491037, + 7.921985185406946, + 8.160457294662926, + 8.39852958441645, + 8.587237147922867, + 8.750825350971988, + 8.893568538257197, + 9.014297504376565, + 9.104922018464343, + 9.208990335965863, + 9.280380743302517, + 9.315523178898712, + 9.372516058367696 + ], + "5._96._0.075": [ + 2.209261920932471, + 2.5553055490839878, + 2.8518804959132367, + 3.199778397146007, + 3.519648020844696, + 3.977249406611028, + 4.578267520113382, + 5.154848731697201, + 6.051483672644926, + 6.64903109207958, + 7.095749573899366, + 7.746739141717749, + 8.21143309928475, + 9.290062728168119, + 10.234593250466354, + 10.497074014542322, + 10.733965995209655, + 10.965795245194869, + 11.1463870323713, + 11.301144547056056, + 11.434763905850694, + 11.546829250128546, + 11.630513785636808, + 11.726204400187711, + 11.791598239536073, + 11.82369792476395, + 11.875650777827616 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, "5_8": { "bore_locations": [ [ diff --git a/HPXMLtoOpenStudio/resources/g_functions/util.rb b/HPXMLtoOpenStudio/resources/g_functions/util.rb index eecb4ad730..2421165fc1 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/util.rb +++ b/HPXMLtoOpenStudio/resources/g_functions/util.rb @@ -5,7 +5,7 @@ def add_n_x_m(json, json2, expected_num_boreholes, n_x_m, key2 = nil) actual_num_boreholes = json[n_x_m]['bore_locations'].size fail "#{expected_num_boreholes} vs #{actual_num_boreholes}" if expected_num_boreholes != actual_num_boreholes - json2.update({ n_x_m => json[n_x_m] }) + json2.update({ n_x_m => json[n_x_m] }) # FIXME: Change all n_x_m to m_x_n else actual_num_boreholes = json[n_x_m][key2]['bore_locations'].size fail "#{expected_num_boreholes} vs #{actual_num_boreholes}" if expected_num_boreholes != actual_num_boreholes @@ -31,20 +31,39 @@ def process_g_functions(filepath) when 'rectangle_5m_v1.0.json' add_n_x_m(json, json2, 1, '1_1') add_n_x_m(json, json2, 2, '1_2') - # ... + add_n_x_m(json, json2, 3, '1_3') + add_n_x_m(json, json2, 4, '2_2') + add_n_x_m(json, json2, 5, '1_5') + add_n_x_m(json, json2, 6, '2_3') + add_n_x_m(json, json2, 7, '1_7') + add_n_x_m(json, json2, 8, '2_4') + add_n_x_m(json, json2, 9, '3_3') + add_n_x_m(json, json2, 10, '2_5') add_n_x_m(json, json2, 40, '5_8') # test case when 'L_configurations_5m_v1.0.json' - # ... + add_n_x_m(json, json2, 4, '2_3') + add_n_x_m(json, json2, 5, '3_3') + add_n_x_m(json, json2, 6, '3_4') + add_n_x_m(json, json2, 7, '4_4') + add_n_x_m(json, json2, 8, '4_5') + add_n_x_m(json, json2, 9, '5_5') + add_n_x_m(json, json2, 10, '5_6') when 'C_configurations_5m_v1.0.json' - # ... + add_n_x_m(json, json2, 7, '3_3') + add_n_x_m(json, json2, 9, '3_4') when 'LopU_configurations_5m_v1.0.json' add_n_x_m(json, json2, 6, '3_3', '1') add_n_x_m(json, json2, 7, '3_4', '2') - # ... + add_n_x_m(json, json2, 8, '3_4', '1') + add_n_x_m(json, json2, 9, '4_4', '1') + add_n_x_m(json, json2, 10, '3_5', '1') when 'Open_configurations_5m_v1.0.json' - # ... + add_n_x_m(json, json2, 8, '3_3') + add_n_x_m(json, json2, 10, '3_4') when 'U_configurations_5m_v1.0.json' - # ... + add_n_x_m(json, json2, 7, '3_3') + add_n_x_m(json, json2, 9, '3_4') + add_n_x_m(json, json2, 10, '4_4') when 'zoned_rectangle_5m_v1.0.json' add_n_x_m(json, json2, 17, '5_5', '1_1') else From 8ab56cd64e03e60b510f31c1bf0faf8029c9a04e Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 27 Jul 2023 08:52:36 -0700 Subject: [PATCH 077/217] Add key2 for C, Open, U. --- HPXMLtoOpenStudio/measure.xml | 78 +- .../g_functions/C_configurations_5m_v1.0.json | 428 +++++ .../g_functions/L_configurations_5m_v1.0.json | 1456 +++++++++++++++++ .../LopU_configurations_5m_v1.0.json | 710 ++++++-- .../Open_configurations_5m_v1.0.json | 436 +++++ .../g_functions/U_configurations_5m_v1.0.json | 650 ++++++++ .../g_functions/rectangle_5m_v1.0.json | 1326 +++++++++++++-- .../resources/g_functions/util.rb | 80 +- 8 files changed, 4849 insertions(+), 315 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index eaf54326a6..0ea32483b1 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 231dcac6-9638-4768-948e-ed6a091d947b - 2023-07-25T23:09:40Z + ec3f0f8f-2618-4b4e-8bb8-1bccfb249aa2 + 2023-07-27T15:51:57Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -220,43 +220,103 @@ g_functions/C_configurations_5m_v1.0.json json resource - 73BEBBA8 + E97DCCDD g_functions/L_configurations_5m_v1.0.json json resource - 73BEBBA8 + 6B2B3787 g_functions/LopU_configurations_5m_v1.0.json json resource - 80874D4F + F639FAC3 g_functions/Open_configurations_5m_v1.0.json json resource - 73BEBBA8 + FF25A024 g_functions/U_configurations_5m_v1.0.json json resource - 73BEBBA8 + B5BEF270 + + + g_functions/g-function_library_1.0/C_configurations_5m_v1.0.json + json + resource + E9E73997 + + + g_functions/g-function_library_1.0/L_configurations_5m_v1.0.json + json + resource + 1265E552 + + + g_functions/g-function_library_1.0/LibraryAccessExample.py + py + resource + C9FE5CC2 + + + g_functions/g-function_library_1.0/LopU_configurations_5m_v1.0.json + json + resource + 72B76187 + + + g_functions/g-function_library_1.0/Open_configurations_5m_v1.0.json + json + resource + BCB44A41 + + + g_functions/g-function_library_1.0/U_configurations_5m_v1.0.json + json + resource + 1620B431 + + + g_functions/g-function_library_1.0/ZRectsContained.xlsx + xlsx + resource + BA2559DF + + + g_functions/g-function_library_1.0/g-function_library_overview.pdf + pdf + resource + 638C9245 + + + g_functions/g-function_library_1.0/rectangle_5m_v1.0.json + json + resource + E90F30A5 + + + g_functions/g-function_library_1.0/zoned_rectangle_5m_v1.0.json + json + resource + 6A4C47AD g_functions/rectangle_5m_v1.0.json json resource - E2CF1DF7 + 25FFB6A8 g_functions/util.rb rb resource - 9ECA4592 + 3FCF56D1 g_functions/zoned_rectangle_5m_v1.0.json diff --git a/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json index 7a73a41bfd..a97965ca65 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json @@ -1,2 +1,430 @@ { + "3_3": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 5.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835163556833926, + 3.186859876491747, + 3.519434116875382, + 4.021964695453298, + 4.625373168858599, + 5.6312132037030205, + 7.017734131113874, + 8.301128331626508, + 10.117778789699049, + 11.210610651605974, + 11.97658350477523, + 13.028692005585272, + 13.742865870882119, + 15.311494952074165, + 16.61816940081541, + 16.973709806949675, + 17.29235193442953, + 17.602231685890917, + 17.842328567513636, + 18.047436530328454, + 18.223984896573953, + 18.371696735221363, + 18.48184538753946, + 18.607667583380575, + 18.69355241378807, + 18.73567064555173, + 18.803797793376233 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.111467924224727, + 2.4511928330881476, + 2.7884188390440285, + 3.0449438060593743, + 3.3868270121676414, + 3.6139397405790423, + 3.7971850654668233, + 4.09898609446547, + 4.348346130685021, + 5.0915638566345125, + 6.003348584673112, + 6.3086916925566205, + 6.606373821842277, + 6.918310269197572, + 7.176309365099969, + 7.407231942536658, + 7.614477838086075, + 7.793880568509996, + 7.9307745563154795, + 8.090147260210864, + 8.200733499237527, + 8.255609007591945, + 8.345178145421311 + ], + "5._384._0.0875": [ + 3.488828808642262, + 4.016644434684759, + 4.656097350048849, + 5.724643914605981, + 6.959907389349166, + 8.718829385823268, + 10.692998326451791, + 12.268677784338754, + 14.289104442978173, + 15.439317116143103, + 16.228160365480026, + 17.29573152921697, + 18.01381604634192, + 19.58236916077018, + 20.886702784603077, + 21.241361732916197, + 21.559695690469507, + 21.869461495310855, + 22.109738789160478, + 22.315010727642687, + 22.491842188196383, + 22.639906318278136, + 22.7503158438333, + 22.87650847004607, + 22.962608610868013, + 23.00480252216641, + 23.07299590032039 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656476, + 2.506080868699679, + 2.8001338633225847, + 3.143164725862182, + 3.5104718549266534, + 3.8548454175422537, + 4.451018321828258, + 4.911677689209101, + 5.297016704953428, + 5.926406904662141, + 6.42363687282888, + 7.719212181270854, + 8.980633064022445, + 9.346857075629215, + 9.682185873929486, + 10.014312896496607, + 10.275472721434394, + 10.500494849414343, + 10.695612308471507, + 10.859690701170845, + 10.982362439165625, + 11.12255814267523, + 11.218429945956188, + 11.265557218538143, + 11.341930946657229 + ], + "5._96._0.075": [ + 2.2092619209324713, + 2.5553055502990434, + 2.8518822508487425, + 3.1999858528748244, + 3.522272820624551, + 3.998433491444854, + 4.675890638522394, + 5.397602630870329, + 6.630658201542149, + 7.489891206956371, + 8.13793378006344, + 9.080671485080156, + 9.74838555993002, + 11.273174243711194, + 12.580380605681448, + 12.940043372325281, + 13.262876866410467, + 13.577523541572692, + 13.821599056356833, + 14.030346435181029, + 14.21009292948024, + 14.36049327970005, + 14.472700352633982, + 14.600821880462632, + 14.688349595590939, + 14.731324538344229, + 14.800941414503153 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351656362397346, + 3.1870222148932092, + 3.520674363862824, + 4.0264279051145735, + 4.637320591731866, + 5.681918628105053, + 7.195928057608826, + 8.667652969634457, + 10.835407948040462, + 12.17313876658168, + 13.120915089648694, + 14.431210692905513, + 15.324414951512091, + 17.287810340267846, + 18.921004062740323, + 19.36491546608122, + 19.762051084570377, + 20.147743937846332, + 20.44602162176634, + 20.70070964136171, + 20.919651129829095, + 21.102616404070183, + 21.23902136310015, + 21.394731378971578, + 21.50103309397409, + 21.553187409637513, + 21.637628767055283 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.4511928331220942, + 2.788419317683002, + 3.044973112248845, + 3.3874436711912677, + 3.615661212012368, + 3.800050369353508, + 4.104157202838955, + 4.356442100688683, + 5.12205707751613, + 6.104951371039292, + 6.446639974674841, + 6.785677489291673, + 7.14704327959393, + 7.450449873105475, + 7.725362085869953, + 7.974617851085698, + 8.192173659856739, + 8.359201726136602, + 8.554505711034817, + 8.690545155519857, + 8.758244872089577, + 8.869012063214859 + ], + "5._384._0.0875": [ + 3.49036660596901, + 4.021766894917606, + 4.670398135472843, + 5.785876730623253, + 7.138255086355541, + 9.165208843721057, + 11.541605088064465, + 13.48737679446265, + 16.016925846737212, + 17.466322475408763, + 18.46211624061257, + 19.809514025003885, + 20.71551095088742, + 22.689183383189555, + 24.325042046727248, + 24.769175716459035, + 25.16730866035988, + 25.554315529732776, + 25.854096076383122, + 26.110133317947074, + 26.330508557731115, + 26.51489398108105, + 26.652379210936964, + 26.809464413649252, + 26.91666630006337, + 26.96922193140444, + 27.05422647074861 + ], + "5._48._0.075": [ + 1.5268463243731403, + 1.8679037053125447, + 2.1622431316564747, + 2.5060808688610527, + 2.8001342903818083, + 3.1432338679800567, + 3.5114733483441682, + 3.857857357850316, + 4.459751399181277, + 4.9307123214898665, + 5.331458857871278, + 6.002224412369842, + 6.547004846721879, + 8.022439927539539, + 9.52315275020389, + 9.968067991414454, + 10.377948331831623, + 10.785910363406488, + 11.107625004661795, + 11.385384317551141, + 11.626367553184362, + 11.828974735668197, + 11.98043089448376, + 12.153298933490644, + 12.271491966315507, + 12.329622690516775, + 12.42391440421234 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235626058277, + 2.851913830622353, + 3.2001519267074148, + 3.523359938286808, + 4.002550681065331, + 4.688607687930474, + 5.435519397369628, + 6.769739711868012, + 7.743407290903215, + 8.498819340733247, + 9.625393320231394, + 10.439696691725631, + 12.336240074219331, + 13.984730545681584, + 14.440147371236215, + 14.848759407552242, + 15.246859877582578, + 15.555285881043151, + 15.818798499910438, + 16.04531949178444, + 16.234511881534374, + 16.375485158212747, + 16.536146203601948, + 16.645795872234547, + 16.699618718001776, + 16.78681672438809 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json index 7a73a41bfd..44a1e145dc 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json @@ -1,2 +1,1458 @@ { + "2_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 5.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351565340840654, + 3.186294678741936, + 3.5144109644730803, + 3.995439251104943, + 4.540054979569839, + 5.353103468826478, + 6.338557682853676, + 7.175644263582237, + 8.300018094772028, + 8.95825975403952, + 9.415339886150417, + 10.040686729759392, + 10.464389965358135, + 11.398422195838442, + 12.181295381120544, + 12.394954611632901, + 12.587053316477114, + 12.774322378435347, + 12.9198790390213, + 13.04432381553385, + 13.151666275296192, + 13.24164740649804, + 13.308770317159306, + 13.385528170620196, + 13.437906679454773, + 13.463572869649013, + 13.505022546131494 + ], + "5._24._0.075": [ + 0.874001379397096, + 1.1957934696806856, + 1.481366748888237, + 1.8197853662506764, + 2.1114044341807157, + 2.451070525119184, + 2.7881837559656337, + 3.044463314569365, + 3.3837752049736625, + 3.6052626282529983, + 3.7808850342249296, + 4.062850526656146, + 4.287173959398183, + 4.900757002121434, + 5.559857029797825, + 5.764587946944072, + 5.958448455056103, + 6.1566606616146045, + 6.317427227631378, + 6.4594026896501004, + 6.585572806050645, + 6.694097761730789, + 6.776645767697963, + 6.872735660118553, + 6.939435155205178, + 6.972521380956327, + 7.02653942906457 + ], + "5._384._0.0875": [ + 3.4823994761887773, + 3.9848262284880747, + 4.555179718646517, + 5.404715728587619, + 6.277318639068673, + 7.415941427751029, + 8.623924248681595, + 9.562805804136447, + 10.753149302763997, + 11.428110159901493, + 11.890961006550969, + 12.518785405045108, + 12.941903106666471, + 13.871456847280529, + 14.649379566430458, + 14.861481795023234, + 15.05227676777121, + 15.238263204563578, + 15.382850967157188, + 15.506425265511714, + 15.613023847945573, + 15.70238848204994, + 15.76903100298123, + 15.845242134255502, + 15.89721792111516, + 15.922670854730866, + 15.963754000577815 + ], + "5._48._0.075": [ + 1.5268359332879176, + 1.867883938514738, + 2.1622087383456443, + 2.506015109960689, + 2.8000188522237432, + 3.1427108866736058, + 3.5060986477767258, + 3.838544450552084, + 4.387051823461636, + 4.779681099553516, + 5.087048257250629, + 5.555234983642199, + 5.902478640976778, + 6.746305648050327, + 7.520034677798101, + 7.739757236794212, + 7.939975736139153, + 8.13764341906379, + 8.292951958392333, + 8.426822026199208, + 8.543135382483195, + 8.641236746959452, + 8.714776488918025, + 8.799196310069604, + 8.857085366459035, + 8.885567456031344, + 8.93174626548206 + ], + "5._96._0.075": [ + 2.2092619209324695, + 2.5553055480208147, + 2.8518789626125645, + 3.1996131291742733, + 3.5184210872676602, + 3.976538634666165, + 4.590026741342543, + 5.182023608336045, + 6.081979246107727, + 6.658142816068973, + 7.075882331699295, + 7.666879556882379, + 8.077358544183552, + 9.003240254562144, + 9.793289043391548, + 10.010580720922956, + 10.206299718151746, + 10.397526436776573, + 10.546421057404947, + 10.673923694180173, + 10.784036508256804, + 10.876432045080968, + 10.945427632519772, + 11.02437236750136, + 11.078310702275603, + 11.104773400439738, + 11.147566477076325 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 5.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835159810088887, + 3.186553817896705, + 3.516527838262404, + 4.004329837473649, + 4.563116154725879, + 5.422730649791384, + 6.515803491910567, + 7.482956710803077, + 8.821023313877978, + 9.6182191663194, + 10.175664703095364, + 10.941363073004217, + 11.461472146417226, + 12.608257361815083, + 13.568342463717922, + 13.830179312701365, + 14.065319930740815, + 14.294348922588275, + 14.472150360525662, + 14.62411713920069, + 14.755089916843, + 14.86479421584671, + 14.946616058533072, + 15.040137216786091, + 15.103960182529738, + 15.135243749367413, + 15.185795927543893 + ], + "5._24._0.075": [ + 0.8740013793970969, + 1.1957934696806858, + 1.4813667488882372, + 1.819785366250676, + 2.111404434180714, + 2.4510705251726415, + 2.7881845096187328, + 3.044509593245944, + 3.3847903095492087, + 3.6083035325207624, + 3.7863073570514962, + 4.073420909415854, + 4.303528018870766, + 4.946650857734783, + 5.6693569965691, + 5.9013084226992705, + 6.123950179738185, + 6.354536856156806, + 6.543591291544423, + 6.712003311328731, + 6.862701672318173, + 6.993032655361014, + 7.092573856085612, + 7.208783610032469, + 7.289678619678314, + 7.329892641652891, + 7.395672028234926 + ], + "5._384._0.0875": [ + 3.485048260731776, + 3.9951071279520405, + 4.581851301847068, + 5.484808169649971, + 6.455104578968857, + 7.775372616018783, + 9.22199936245641, + 10.365908886904977, + 11.82883492358668, + 12.661581403425886, + 13.23319009931225, + 14.008316381993554, + 14.530522093813575, + 15.675495110327816, + 16.63142732476554, + 16.89179450610136, + 17.125793127388665, + 17.353729855179026, + 17.530765771001807, + 17.682044232641264, + 17.812464911292064, + 17.921742819595384, + 18.003230911309156, + 18.096394037225632, + 18.159940527464432, + 18.191068435625677, + 18.24133759731324 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125445, + 2.162243131656477, + 2.5060808684092084, + 2.800133094426295, + 3.1430374163007104, + 3.5082169030632127, + 3.8450275342479676, + 4.406534046169518, + 4.816288079387438, + 5.143866301845898, + 5.65606519988429, + 6.046495444259167, + 7.030090060237974, + 7.966007100338916, + 8.235929869051896, + 8.483170856797145, + 8.728158996337275, + 8.921112444405356, + 9.087562420507037, + 9.232205464733582, + 9.354129986505788, + 9.445427943510513, + 9.550041570574544, + 9.621668042054347, + 9.656881667288603, + 9.713926996862321 + ], + "5._96._0.075": [ + 2.2092619209324704, + 2.555305549083987, + 2.851880496820393, + 3.199784898670547, + 3.52007441535427, + 3.984136432946034, + 4.613165252686054, + 5.236232350959428, + 6.22360987846198, + 6.880193152459714, + 7.366198391381113, + 8.065015871363219, + 8.556594005322559, + 9.676987132273267, + 10.639766269340903, + 10.905167610733255, + 11.144072739107475, + 11.377399385181416, + 11.558888935284472, + 11.714267141061399, + 11.848328964404903, + 11.960713056407453, + 12.044610223908563, + 12.14053053593925, + 12.206065808619332, + 12.23822816706263, + 12.290272439934673 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351619940963437, + 3.1867265785500734, + 3.517939064186244, + 4.010138551230323, + 4.576291588076084, + 5.455044208906557, + 6.600975167484662, + 7.649772284219236, + 9.14934968837866, + 10.063857164096989, + 10.710146938865867, + 11.604140247325471, + 12.214402814710182, + 13.56347254307444, + 14.693817434625865, + 15.00208648237771, + 15.278653289269412, + 15.547835844558206, + 15.756579124539229, + 15.93494441325526, + 16.088544751837524, + 16.217104047249517, + 16.312972046145962, + 16.42249378959499, + 16.497241448969145, + 16.533890372501336, + 16.593147644087402 + ], + "5._24._0.075": [ + 0.8740059532267962, + 1.1958031759615424, + 1.4813847491413075, + 1.8198213217004346, + 2.1114679242247276, + 2.4511928330626853, + 2.7884184798647675, + 3.0449213397455503, + 3.3862129873393996, + 3.611462070674867, + 3.7914510567110744, + 4.082678848046977, + 4.31684348037127, + 4.9772959513826285, + 5.738584084401636, + 5.989253979063876, + 6.23334177329425, + 6.489858040662278, + 6.703119888040274, + 6.895278018666497, + 7.068988968785528, + 7.220519810348074, + 7.336979263921885, + 7.473656308122835, + 7.569188413539111, + 7.61680335666292, + 7.694850505823601 + ], + "5._384._0.0875": [ + 3.4868221254020995, + 4.001784930550749, + 4.596673773043294, + 5.521665948466438, + 6.540439532142497, + 7.977512581636011, + 9.610904130639307, + 10.9333347273021, + 12.648054089886527, + 13.631008058550055, + 14.307291859475942, + 15.224995190752944, + 15.843459817922156, + 17.19766002629546, + 18.326147574478423, + 18.6332414737864, + 18.908992063919293, + 19.177410310732977, + 19.38569525993438, + 19.56364167675798, + 19.716962108500727, + 19.845358360487722, + 19.941096166408666, + 20.05051971773102, + 20.125166859502414, + 20.161741855562525, + 20.22083721520326 + ], + "5._48._0.075": [ + 1.5268463243731434, + 1.8679037053125458, + 2.1622431316564765, + 2.506080868578651, + 2.800133542870094, + 3.1431104909437595, + 3.5093422402107293, + 3.8488065872303174, + 4.417007137769795, + 4.833524538210346, + 5.168561858065412, + 5.698283073774795, + 6.108422194827479, + 7.16973404414734, + 8.217325109845467, + 8.525494050029078, + 8.809680065211936, + 9.092885964465491, + 9.316854548088468, + 9.510655082390995, + 9.679389102065697, + 9.821789543310542, + 9.928514440070055, + 10.050817206373901, + 10.134608666237124, + 10.175835404712222, + 10.242681818413955 + ], + "5._96._0.075": [ + 2.209261920932471, + 2.555305549792769, + 2.8518815196256133, + 3.1998994120329356, + 3.5211766712637163, + 3.9891348905024158, + 4.626334080989386, + 5.262063095260086, + 6.289867551825011, + 6.992805162264005, + 7.523625491011389, + 8.301141948345355, + 8.857142967903947, + 10.144929297532864, + 11.26645577577747, + 11.577167894037178, + 11.856964508026879, + 12.130317747234228, + 12.342847312936236, + 12.524813135310088, + 12.681713811351326, + 12.813146370843763, + 12.911244963986244, + 13.023325280110544, + 13.09990529951879, + 13.137501383651404, + 13.19837972697988 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835163554103729, + 3.1868499795100256, + 3.5189471871417144, + 4.014291734689392, + 4.585729983426826, + 5.4783782331097886, + 6.664875308975525, + 7.78095954436287, + 9.422622271115944, + 10.444946568635388, + 11.174586733117547, + 12.190679309604377, + 12.887629509317616, + 14.432466371861755, + 15.72804732473775, + 16.081392778821243, + 16.398108012781965, + 16.706154923196785, + 16.94478515960347, + 17.148634374775696, + 17.324044660244187, + 17.470751596521854, + 17.580134119683894, + 17.70503746479188, + 17.790288291349594, + 17.832098064054087, + 17.899737843068284 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.111467924224727, + 2.4511928330881467, + 2.788418838872571, + 3.04494338890382, + 3.3866968888704605, + 3.612910916227809, + 3.7940199256554292, + 4.0874967512700415, + 4.323817801662154, + 4.993223862336138, + 5.776939636452273, + 6.0398329147115115, + 6.298516420435058, + 6.573466422852641, + 6.804579954700581, + 7.014876393828088, + 7.206675627757325, + 7.375307882595491, + 7.505754432240141, + 7.659723925184936, + 7.76791724765261, + 7.822040894389363, + 7.911051827069974 + ], + "5._384._0.0875": [ + 3.4880902775716516, + 4.0065619525134215, + 4.607298279466111, + 5.548353958156116, + 6.604415106939941, + 8.13860019568434, + 9.938536968136697, + 11.427377002248585, + 13.383231984894984, + 14.512099196220316, + 15.29057972183952, + 16.347765426714993, + 17.06050692000972, + 18.619290778574012, + 19.916053673254428, + 20.2686496512593, + 20.584999002677907, + 20.892732872471324, + 21.13131773958098, + 21.335112938000275, + 21.510606445342315, + 21.65749717959913, + 21.767018104919572, + 21.892162864981678, + 21.977544756334243, + 22.019389460008043, + 22.08703090750865 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656476, + 2.506080868699681, + 2.800133863187092, + 3.1431626871705314, + 3.5101461072512348, + 3.8515072619323156, + 4.424504911378015, + 4.845886343624489, + 5.186331552272661, + 5.729058529452128, + 6.1543553311536385, + 7.279215244517337, + 8.425007491615851, + 8.768101772829569, + 9.08648777576615, + 9.405485053350356, + 9.65874977692766, + 9.87854736747751, + 10.070275097983433, + 10.232270081471812, + 10.353782216544758, + 10.493043905742333, + 10.588509080770054, + 10.635513887026178, + 10.711792810255785 + ], + "5._96._0.075": [ + 2.2092619209324718, + 2.555305550299043, + 2.8518822502007706, + 3.1999812074434986, + 3.5219640505521346, + 3.9927079992711505, + 4.635768436942492, + 5.280652168885683, + 6.338984165530696, + 7.079120833009518, + 7.647405762106008, + 8.493199493397391, + 9.106886336359855, + 10.549497600871693, + 11.821945288975535, + 12.176179524294474, + 12.495306427173027, + 12.807191058501216, + 13.049579738950227, + 13.257119802438721, + 13.435959943893337, + 13.585663292927912, + 13.697375965540715, + 13.824926149001566, + 13.912078874142695, + 13.95487960916011, + 14.02423056578889 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "4_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.83516472411039, + 3.1869425304997336, + 3.519703336588499, + 4.017409124634149, + 4.592792127320395, + 5.494435370274548, + 6.702922623181757, + 7.859047111999608, + 9.601273766609378, + 10.709893884541724, + 11.510288742748434, + 12.634631898016757, + 13.410995173686615, + 15.140112325896753, + 16.59431376284061, + 16.991218622233816, + 17.346724733781354, + 17.692319667585423, + 17.959786862066252, + 18.188220856046517, + 18.384643002748486, + 18.54880887859812, + 18.671188673718667, + 18.810869505477182, + 18.906212251366096, + 18.952983693185324, + 19.0286924400906 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247267, + 2.451192833107243, + 2.788419108128426, + 3.044959925775519, + 3.387059821765704, + 3.613997664863135, + 3.7959470723593096, + 4.09111167742486, + 4.329038708345258, + 5.004506770243227, + 5.800396675051319, + 6.069930680934847, + 6.337044137013024, + 6.623399632901891, + 6.866397000242412, + 7.089548465426775, + 7.294940305254195, + 7.477122120182745, + 7.619155348518463, + 7.7880816786592515, + 7.907676077545279, + 7.967812952154061, + 8.067196242249718 + ], + "5._384._0.0875": [ + 3.489041966728529, + 4.0101492446674785, + 4.615228891631927, + 5.566384478985521, + 6.642584303912649, + 8.23605088452842, + 10.158307320185152, + 11.785471693976609, + 13.957916675535065, + 15.2235651708415, + 16.099466100365742, + 17.290954676319654, + 18.09508402875218, + 19.852744524299638, + 21.313164415062523, + 21.70999507573438, + 22.065750787889225, + 22.41159715450544, + 22.679499567017082, + 22.908294539148603, + 23.10520435766242, + 23.269936461997787, + 23.392750503414597, + 23.53304715405481, + 23.628776387136153, + 23.675702827788015, + 23.751593525065417 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808687904528, + 2.800134103424843, + 3.1432018343696826, + 3.510749037532128, + 3.8535335425120447, + 4.430128801236172, + 4.854966963284894, + 5.198834780785669, + 5.748826061535993, + 6.182200108369144, + 7.344326849292377, + 8.559766854482477, + 8.930536691975924, + 9.277137603746795, + 9.626775473927715, + 9.905883724809348, + 10.149145007609818, + 10.36200401620384, + 10.542263530840383, + 10.677700598499671, + 10.833061729053647, + 10.939691930072817, + 10.992253400925039, + 11.077649233553439 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.555323562310494, + 2.851913403930866, + 3.2001005947998324, + 3.522658579337796, + 3.9956263916358847, + 4.643473862001433, + 5.295314181512427, + 6.373564059926124, + 7.138360360544258, + 7.733580791206114, + 8.633729955517238, + 9.297305182392362, + 10.888688183108068, + 12.31939479443607, + 12.720736736508375, + 13.083024543099366, + 13.437593746774013, + 13.71333786799934, + 13.94943383896836, + 14.152804847143246, + 14.322925976753803, + 14.449783003015684, + 14.594457028247186, + 14.693237854773255, + 14.741735431737363, + 14.820299846760408 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351656341162452, + 3.1870145147626974, + 3.52029148667567, + 4.019835093017707, + 4.5982936958752845, + 5.5069711231041305, + 6.732856648502025, + 7.921843283659013, + 9.751252336543244, + 10.937949457944962, + 11.803810763333674, + 13.030085671186802, + 13.882247595182367, + 15.789154273241033, + 17.397423190906295, + 17.836713667778135, + 18.22992056086585, + 18.611973711107705, + 18.907390194405757, + 19.159639444194557, + 19.37638567560696, + 19.55741533979612, + 19.692344607372505, + 19.846281147124184, + 19.951360171056265, + 20.002920665455477, + 20.086426165369282 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.451192833122094, + 2.788419317549644, + 3.044972787788615, + 3.387342106904055, + 3.6148429816023158, + 3.7974462638003725, + 4.093924920426126, + 4.333103496437159, + 5.013306910761229, + 5.818776402913868, + 6.093626438407932, + 6.367602838347201, + 6.663433786692135, + 6.9165238361402075, + 7.150815194090501, + 7.368218463676161, + 7.562596393540276, + 7.715228084652988, + 7.898056909693774, + 8.028413669395082, + 8.094286262487623, + 8.203659924602803 + ], + "5._384._0.0875": [ + 3.4897825285162716, + 4.012941689162447, + 4.621408914553352, + 5.5804680548945775, + 6.672609120789035, + 8.31509118799391, + 10.344732940730454, + 12.098911719604803, + 14.476641313448162, + 15.87436363801686, + 16.84503143949367, + 18.167681280211, + 19.06128493020748, + 21.01360346286259, + 22.633944058823158, + 23.073950798692806, + 23.46811627235861, + 23.85106778822409, + 24.14746670484337, + 24.40055223560015, + 24.618248421060102, + 24.800280536523264, + 24.935982465719608, + 25.090962451665916, + 25.196720717693957, + 25.24857444671522, + 25.332470394268455 + ], + "5._48._0.075": [ + 1.5268463243731403, + 1.8679037053125447, + 2.1622431316564747, + 2.5060808688610523, + 2.8001342902764255, + 3.143232282208476, + 3.5112180010648584, + 3.8551099766951262, + 4.434508445015713, + 4.862044168289376, + 5.2085862251099835, + 5.76427186474273, + 6.204030023936915, + 7.396608078479404, + 8.67243421921375, + 9.068108653611503, + 9.440488857096849, + 9.818513912853351, + 10.121840924076693, + 10.387285417655814, + 10.620257980195246, + 10.81799007145421, + 10.966794134425063, + 11.137640764253641, + 11.255032830215635, + 11.312961151069707, + 11.407180498632554 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235626058273, + 2.8519138301183564, + 3.2001483127080967, + 3.5231179843247027, + 3.9977134437346464, + 4.648975320207692, + 5.305585007380778, + 6.39703709911218, + 7.17876659781859, + 7.793226026447637, + 8.733528438854526, + 9.435430088140752, + 11.144967976432001, + 12.706719324002064, + 13.14787586741075, + 13.546721484584156, + 13.937525543460476, + 14.241551222490221, + 14.50196549559448, + 14.72623258973888, + 14.913756060151046, + 15.05357527196797, + 15.212946759671123, + 15.3217707932991, + 15.375217236739509, + 15.461850615114354 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "5_6": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 0.0, + 25.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351663621213476, + 3.1870721022737705, + 3.520762028072415, + 4.02177670715311, + 4.602700935880571, + 5.5169614281183295, + 6.754855825756175, + 7.9645021066903565, + 9.854195714565249, + 11.10118115502487, + 12.02079017457652, + 13.33501175674585, + 14.255218116370674, + 16.327580693017115, + 18.083344353315496, + 18.56362520769094, + 18.993336351577927, + 19.41072371690533, + 19.73321459372418, + 20.0085375697826, + 20.244956310741, + 20.44229121767626, + 20.589351458110524, + 20.75705585476228, + 20.871539877317286, + 20.927729350399375, + 21.01878029962984 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331339767, + 2.78841948508662, + 3.0449830774002087, + 3.387567937533259, + 3.6155192777092866, + 3.7986458056918515, + 4.09617654554866, + 4.336357851959621, + 5.020341466937139, + 5.832650771275151, + 6.110827469116957, + 6.389042492581823, + 6.6908140178252875, + 6.9505065386722915, + 7.19243632727055, + 7.418520650316663, + 7.622186443220001, + 7.783277024147918, + 7.977759934980626, + 8.117592805144756, + 8.188682129256737, + 8.307429486277217 + ], + "5._384._0.0875": [ + 3.4903752045070484, + 4.01517711032482, + 4.6263611033013685, + 5.591651876749553, + 6.694719081848411, + 8.368450742711376, + 10.474682133299819, + 12.330889394576008, + 14.888519563366648, + 16.408157644645936, + 17.468228127586602, + 18.916370704866225, + 19.896420203285626, + 22.037916287175435, + 23.8141271476306, + 24.296236618781442, + 24.727807918401368, + 25.14685682358567, + 25.47093076905325, + 25.747597339655663, + 25.98544714069117, + 26.18423280389328, + 26.332412410977593, + 26.501598750598582, + 26.617061272271563, + 26.67368466152417, + 26.765337023877695 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.5060808689175356, + 2.8001344397576915, + 3.1432566404903644, + 3.511593183079418, + 3.856371400128268, + 4.4380157399092885, + 4.867711940849569, + 5.216364717136565, + 5.7762914554758265, + 6.220353271364668, + 7.432151663462933, + 8.749651704331555, + 9.164328082900065, + 9.557213922268762, + 9.958759768536368, + 10.282877875055014, + 10.567908594592975, + 10.81906136060472, + 11.032894679440224, + 11.194197906982616, + 11.379706010195362, + 11.5073980375971, + 11.570501022182581, + 11.673285059619554 + ], + "5._96._0.075": [ + 2.2092718103274036, + 2.555323562842096, + 2.85191417106835, + 3.200186487065689, + 3.5234855192691428, + 3.9993836545154893, + 4.653382627830734, + 5.313797205723791, + 6.4147270512273895, + 7.207138999640167, + 7.833733889835734, + 8.80089588588579, + 9.530363365014855, + 11.333631004403431, + 13.010527458583056, + 13.488289186954031, + 13.92125017587898, + 14.346267385680884, + 14.677219806295792, + 14.960918512159175, + 15.20526897204249, + 15.409558628634645, + 15.561886771503513, + 15.735450711687019, + 15.853988192816459, + 15.912229132312792, + 16.006695343389197 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json index 507f550e9f..3b998c8f01 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json @@ -206,7 +206,7 @@ } }, "3_4": { - "2": { + "1": { "bore_locations": [ [ 0.0, @@ -224,6 +224,10 @@ 10.0, 5.0 ], + [ + 10.0, + 10.0 + ], [ 0.0, 15.0 @@ -239,149 +243,589 @@ ], "g": { "5._192._0.08": [ - 2.8351635568339573, - 3.1868598735748215, - 3.5194290681832854, - 4.021215776573264, - 4.616239622033629, - 5.580527594948293, - 6.886757925331612, - 8.102402891324095, - 9.848969549339516, - 10.914023333414947, - 11.665845238209974, - 12.70405152754737, - 13.411636254581845, - 14.971285177128056, - 16.273870495274725, - 16.628617526580097, - 16.94656632737682, - 17.255789079639893, - 17.4953605991317, - 17.700017921596878, - 17.8761581852407, - 18.02350888512317, - 18.13338184361064, - 18.258872539998166, - 18.34452835340044, - 18.38653511656617, - 18.454486098620468 + 2.835164726499315, + 3.1869511904253844, + 3.520129819831777, + 4.024256961679788, + 4.629858717255186, + 5.648051992538193, + 7.08547570178617, + 8.452315749499057, + 10.433448692094192, + 11.644470751378343, + 12.499298574531974, + 13.678710219767217, + 14.481733250158136, + 16.247551183295478, + 17.718230806950928, + 18.118256572514444, + 18.476444828956904, + 18.824545824258124, + 19.093993560187933, + 19.324118207719224, + 19.522063456725174, + 19.68757222773616, + 19.810975387432244, + 19.95188484610551, + 20.048074698996366, + 20.095257762736964, + 20.1716158070638 ], "5._24._0.075": [ 0.8740059532267965, - 1.1958031759615424, - 1.481384749141307, - 1.8198213217004346, - 2.111467924224727, - 2.4511928330881467, - 2.7884188390440294, - 3.0449438060522946, - 3.3868265705450313, - 3.6139171948981765, - 3.797008023792123, - 4.097421273811351, - 4.343420562160816, - 5.06067735236564, - 5.921512662885295, - 6.2096823959292475, - 6.491585746037957, - 6.788627405753115, - 7.035854456882252, - 7.2585781577537105, - 7.459736933149296, - 7.634937673400807, - 7.7693448917186, - 7.9266638395361575, - 8.036358297073287, - 8.090960297672977, - 8.180339759630305 + 1.1958031759615426, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247267, + 2.451192833107242, + 2.7884191082784517, + 3.044960290786688, + 3.387173702734947, + 3.614900226285844, + 3.7987419510265603, + 4.101475091242637, + 4.35167815109667, + 5.101635349720609, + 6.040855465868692, + 6.361709221219803, + 6.677622439243028, + 7.011983809339578, + 7.291041171739627, + 7.542739170676823, + 7.770121576039311, + 7.96804797895654, + 8.119729000978506, + 8.29691882694332, + 8.420244452163404, + 8.481574325287443, + 8.581867423562938 ], "5._384._0.0875": [ - 3.488823180241217, - 4.015491627743904, - 4.644049804566187, - 5.664887785374351, - 6.828078586331115, - 8.495972601782967, - 10.40061790092734, - 11.942248115479982, - 13.937715725979558, - 15.079771443806013, - 15.864687169096046, - 16.928355427067483, - 17.64445063363839, - 19.2094088997771, - 20.510983319015434, - 20.8648924298736, - 21.18250382474677, - 21.491528964823722, - 21.731188221946866, - 21.935920431091155, - 22.11226212755728, - 22.25989607984245, - 22.36997954530051, - 22.495787152267788, - 22.58162318422042, - 22.62368864843897, - 22.691678975213264 + 3.4896895110389377, + 4.019193933286457, + 4.661230290795835, + 5.745245803570798, + 7.027551856685918, + 8.905955441235022, + 11.070206812379547, + 12.825689606638033, + 15.097220897548903, + 16.39617074503923, + 17.288242105512616, + 18.49574172345241, + 19.307956504952568, + 21.07981946949136, + 22.550776145291668, + 22.950430542179113, + 23.308900480500842, + 23.657522066231788, + 23.927737142188516, + 24.15855023232541, + 24.357290456117752, + 24.52362950007569, + 24.647660988315558, + 24.78939444803149, + 24.886108814198227, + 24.933514220975347, + 25.010161614654855 ], "5._48._0.075": [ 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.506080868790454, + 2.8001341035433973, + 3.1432036182270733, + 3.5110342438515465, + 3.8564813903405875, + 4.454595052029148, + 4.918118600670651, + 5.308384713508876, + 5.953001712399312, + 6.469438265498537, + 7.844046133696996, + 9.218117427371904, + 9.622406933852037, + 9.994178106008798, + 10.36368562414281, + 10.654901329712077, + 10.90623858545078, + 11.124348955728625, + 11.307818890454374, + 11.445018857063635, + 11.601753264010817, + 11.708948220839979, + 11.761663583031304, + 11.84714285442662 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.5553235623104937, + 2.851913404497863, + 3.200104659902106, + 3.5229289437109417, + 4.000714782099825, + 4.681054276345045, + 5.411125656814106, + 6.685475931250212, + 7.596532845655835, + 8.295465778809493, + 9.328498025684635, + 10.070012324731001, + 11.787302919098854, + 13.274902049366501, + 13.685525901098016, + 14.05421038583564, + 14.413596369121933, + 14.692285876859039, + 14.930479312943792, + 15.135401160272473, + 15.306688528208682, + 15.434358421957747, + 15.579946835626505, + 15.679317300339774, + 15.728085714005035, + 15.80705905351386 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 15.0, + 5.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835165636239734, + 3.187022207622659, + 3.520662700126178, + 4.024811706360364, + 4.618246492085718, + 5.577602357189488, + 6.930593362977536, + 8.27013730911453, + 10.305799407868758, + 11.592006196271335, + 12.513529975375201, + 13.79808800355458, + 14.678979018204332, + 16.62480215658412, + 18.2488264768942, + 18.690716626034398, + 19.085984722477804, + 19.46983352268822, + 19.76659712159539, + 20.019967202996902, + 20.237708518807462, + 20.41961226179577, + 20.555207696500926, + 20.709951202677345, + 20.81558646499876, + 20.867416249016795, + 20.951344739626176 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961542, + 1.4813847491413072, + 1.8198213217004342, + 2.1114679242247276, + 2.451192833122094, + 2.7884193176830028, + 3.0449731122312995, + 3.3874426433772196, + 3.6156114031501847, + 3.7996703668647145, + 4.100882362106419, + 4.346224898925525, + 5.058431311244528, + 5.938205478332148, + 6.2454712872914175, + 6.553322425438452, + 6.885623183027443, + 7.168405190432672, + 7.427814593237117, + 7.66575546132917, + 7.875646469458194, + 8.038201801611946, + 8.229905687023377, + 8.364436565153676, + 8.43170041321568, + 8.542218918216287 + ], + "5._384._0.0875": [ + 3.490341452425285, + 4.019256693703507, + 4.645242475571041, + 5.663015696969794, + 6.870961396281224, + 8.722045952534526, + 10.968017694918828, + 12.850605315815251, + 15.333821659373363, + 16.76783249479386, + 17.755971993298417, + 19.095372128092308, + 19.99702132365333, + 21.961932120277055, + 23.590345099332236, + 24.032380773467327, + 24.428493817447, + 24.813430064076773, + 25.11149023696463, + 25.366028392849262, + 25.58505101682981, + 25.76825577351642, + 25.904849535939963, + 26.06088890444515, + 26.16737568079158, + 26.21958387181005, + 26.304039577016905 + ], + "5._48._0.075": [ + 1.5268463243731403, 1.8679037053125447, - 2.162243131656476, - 2.506080868699681, - 2.8001338633225847, - 3.1431647257211064, - 3.510469433833876, - 3.854662132773821, - 4.445721725047285, - 4.893415321844213, - 5.262063562931771, - 5.857431077176044, - 6.32570919204886, - 7.552126277602157, - 8.76742460372293, - 9.12457279066319, - 9.453324000199377, - 9.780401879257456, - 10.0385536408539, - 10.261605909086278, - 10.45546077978633, - 10.618775396056128, - 10.741029642541099, - 10.88089904623256, - 10.97663676170107, - 11.023727684922786, - 11.100081773956372 + 2.1622431316564747, + 2.5060808688610523, + 2.800134290381807, + 3.1432338676191445, + 3.51146772321088, + 3.8574550748275773, + 4.448646633722987, + 4.892881358644619, + 5.259328855039348, + 5.860557995824219, + 6.346883434753211, + 7.687273576885126, + 9.101118153759293, + 9.529338705689813, + 9.927289641778144, + 10.326192135238777, + 10.642615140692383, + 10.916900159028845, + 11.15566961322875, + 11.356928805832112, + 11.507619363301462, + 11.67983744328869, + 11.797719211064464, + 11.855743645066019, + 11.949922092002977 + ], + "5._96._0.075": [ + 2.209271810327404, + 2.5553235626058273, + 2.8519138306223555, + 3.2001519249819794, + 3.523354932375397, + 4.001549412014162, + 4.669089316628495, + 5.359101946268944, + 6.552379489671893, + 7.429815477491777, + 8.121820314543074, + 9.173143912712952, + 9.946213029499233, + 11.781039134458084, + 13.403268695619028, + 13.854454372473098, + 14.260003929688882, + 14.655669234316463, + 14.962475413080817, + 15.224731293240202, + 15.450225154706388, + 15.638568709166531, + 15.778910465988814, + 15.938820677805234, + 16.047959625600665, + 16.1015379064994, + 16.188353466015815 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_5": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351663640324904, + 3.1870790324400735, + 3.521106948654561, + 4.027817004712404, + 4.639702914792701, + 5.689701897839143, + 7.230782415357917, + 8.75558382299333, + 11.04534208095427, + 12.480341222531724, + 13.504959222351479, + 14.929271926552433, + 15.90416568507156, + 18.052354448368966, + 19.84102393386483, + 20.327235221316858, + 20.761895731724405, + 21.183796554426188, + 21.50979223532669, + 21.788087698807278, + 22.02717090155069, + 22.22685011514924, + 22.37569660323061, + 22.54554863066446, + 22.66151184676179, + 22.71841874632137, + 22.810598479283108 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615424, + 1.4813847491413064, + 1.8198213217004344, + 2.111467924224728, + 2.4511928331339754, + 2.7884194852066426, + 3.0449833694144575, + 3.387659363565028, + 3.6162575473325336, + 3.8010097195037105, + 4.105632061379055, + 4.358290331495015, + 5.126739920153362, + 6.123511711967509, + 6.474167991903697, + 6.824559479788833, + 7.200859154778787, + 7.51918464818536, + 7.8095967640619985, + 8.074594572877569, + 8.307247584849724, + 8.486753152771184, + 8.697580121703579, + 8.845046400408721, + 8.918645101319749, + 9.039379340040094 + ], + "5._384._0.0875": [ + 3.4909018152157616, + 4.023297059681693, + 4.673051152210945, + 5.795451136308289, + 7.172990691082887, + 9.27752412726072, + 11.799413284844766, + 13.898070984778059, + 16.65542163277132, + 18.244596278442476, + 19.338696289586718, + 20.820234685526085, + 21.816848225257285, + 23.98610111341166, + 25.781787275544815, + 26.268999130971455, + 26.705469137801593, + 27.12951686995272, + 27.45775893894551, + 27.738063457318646, + 27.97921715827073, + 28.18090672411815, + 28.331287344632564, + 28.503073216115972, + 28.62031847221074, + 28.677808555516858, + 28.77082914464509 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125436, + 2.1622431316564765, + 2.506080868917536, + 2.800134439852536, + 3.1432580676862703, + 3.511823135144772, + 3.8588654894808214, + 4.4617389401300285, + 4.933850249217447, + 5.336702101199807, + 6.014768882401431, + 6.56981612520555, + 8.094628831272521, + 9.679052963838439, + 10.15497603436222, + 10.595511839800375, + 11.03584132783747, + 11.384157796199728, + 11.685603030677242, + 11.947529059178052, + 12.167948960854657, + 12.332828130807757, + 12.521023741928575, + 12.649751408274382, + 12.713101012338704, + 12.81593200056931 ], "5._96._0.075": [ - 2.2092619209324718, - 2.555305550299043, - 2.8518822508487425, - 3.199985852185907, - 3.5222706691873875, - 3.9979722527360244, - 4.666548991876653, - 5.360575959217437, - 6.524154888194886, - 7.335118528132172, - 7.9509318116016505, - 8.854766208963815, - 9.50103701453585, - 10.99371369513925, - 12.287660294371463, - 12.645293059709312, - 12.966761598429807, - 13.280407476715753, - 13.523883308480196, - 13.732208640752027, - 13.911643648215778, - 14.061807567222088, - 14.17384824876507, - 14.301777590719725, - 14.389179865712343, - 14.43209691027277, - 14.501625885881069 + 2.209271810327403, + 2.5553235628420974, + 2.851914171521948, + 3.200189739673925, + 3.5237033987871773, + 4.0037986560526875, + 4.6909871677691255, + 5.4410229845215765, + 6.794282739628035, + 7.796138722634701, + 8.58200482025275, + 9.766864543211586, + 10.632303268710091, + 12.671167543550263, + 14.462326312183167, + 14.95921757641907, + 15.405288400514571, + 15.840049953956868, + 16.176793719534082, + 16.464510668512997, + 16.71171590552714, + 16.9180654486089, + 17.071794231061588, + 17.24689658823532, + 17.3664028454089, + 17.42507872180411, + 17.52018832485266 ] }, "logtime": [ diff --git a/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json index 7a73a41bfd..ad43563aa4 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json @@ -1,2 +1,438 @@ { + "3_3": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 10.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 10.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835172923739841, + 3.1876250174550504, + 3.5266762742768005, + 4.062573520333148, + 4.738748111382591, + 5.899230472048001, + 7.507146569270119, + 8.9887805639096, + 11.075021642471887, + 12.32543119965508, + 13.200153917342963, + 14.399404024928955, + 15.212247066977739, + 16.993642548532073, + 18.474243154489557, + 18.876740616001914, + 19.23725390288878, + 19.587693810843824, + 19.859069812721, + 20.09087299248157, + 20.29033701563567, + 20.457177964830557, + 20.58159140701033, + 20.723695185812733, + 20.820705076731922, + 20.868287158440452, + 20.945276166056832 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615428, + 1.481384749141307, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833240911, + 2.7884209935195257, + 3.0450771439551843, + 3.390053664197883, + 3.625097551783892, + 3.8196810869127296, + 4.149417820293751, + 4.428866511035236, + 5.282147815336435, + 6.337799706735208, + 6.690312410459378, + 7.032962569994954, + 7.390921014351625, + 7.686070670085695, + 7.949525709933702, + 8.185321736488111, + 8.388889855111131, + 8.543870120800028, + 8.723791926328296, + 8.848348061708858, + 8.910079460676386, + 9.01072789478447 + ], + "5._384._0.0875": [ + 3.4982581113162494, + 4.06512999294392, + 4.785673515255317, + 6.020960467502278, + 7.453715465747411, + 9.483922196132019, + 11.7506975693533, + 13.554037356141706, + 15.86079806366571, + 17.171938707660154, + 18.070390961707737, + 19.285131260472827, + 20.10163281612467, + 21.883024774974903, + 23.362625858633812, + 23.764754713612493, + 24.125588044401724, + 24.47662174823886, + 24.748825321642325, + 24.981365139913652, + 25.181653160603197, + 25.349334967787556, + 25.474376941071963, + 25.61728990580349, + 25.714808590647113, + 25.762604415182427, + 25.839868648003 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808694258587, + 2.800135785563308, + 3.143483000099373, + 3.5160979647842856, + 3.8785304918502423, + 4.537824916091951, + 5.064126234484706, + 5.509244802949968, + 6.239193858397087, + 6.815376669195569, + 8.308702765105174, + 9.750980846123925, + 10.167929617029431, + 10.548795317119502, + 10.925325370673912, + 11.220831819657937, + 11.475134296835684, + 11.695320633049596, + 11.880235770028115, + 12.018376464420529, + 12.176081131856115, + 12.283867438575376, + 12.33684462305628, + 12.42270852671529 + ], + "5._96._0.075": [ + 2.209271810327403, + 2.5553235649685013, + 2.8519172418862895, + 3.200546314114704, + 3.5278635615329472, + 4.032273186186682, + 4.79017412131366, + 5.622404082991505, + 7.057024475445821, + 8.05589545642321, + 8.808065780110283, + 9.90132526045556, + 10.674795465586877, + 12.439608731439382, + 13.948642344434687, + 14.363137292244204, + 14.734871788170292, + 15.096925834800645, + 15.377580363558257, + 15.617392285020719, + 15.823715932733156, + 15.99620505325167, + 16.12478148541285, + 16.27144867059056, + 16.371559599411892, + 16.420686739244598, + 16.500226266848518 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 15.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351729218286943, + 3.1876180928288775, + 3.526341223983386, + 4.058136460429089, + 4.723796571490863, + 5.882001293379037, + 7.567815808524175, + 9.205719752947793, + 11.614460804331705, + 13.098771059708497, + 14.149353882098195, + 15.600181350480975, + 16.58825991372467, + 18.756586493429555, + 20.557051768448197, + 21.046058035272516, + 21.483301357183464, + 21.907770151968396, + 22.235868704227247, + 22.515989963669288, + 22.75672264695844, + 22.957847700371698, + 23.10779055573236, + 23.278939033725102, + 23.395792268575804, + 23.453132102487334, + 23.545995917606437 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961543, + 1.4813847491413061, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833240912, + 2.788420993399505, + 3.045076851954058, + 3.3899630696528513, + 3.6244032864517, + 3.817675347036345, + 4.143341169059347, + 4.418256200344856, + 5.264549152497985, + 6.356693256737915, + 6.736213899951394, + 7.112488731615569, + 7.513052786788756, + 7.848935347194654, + 8.152826656325287, + 8.427935638442053, + 8.667657995867675, + 8.851421667018652, + 9.0658522449909, + 9.21495699756898, + 9.289092866864353, + 9.410292888034201 + ], + "5._384._0.0875": [ + 3.497752272301184, + 4.0595477291870266, + 4.768845444543897, + 6.007196057413258, + 7.513425415619092, + 9.769991925817497, + 12.411509024560182, + 14.57177014184268, + 17.376797996811998, + 18.982588199275245, + 20.08520024348314, + 21.576027159234805, + 22.577921475336638, + 24.758267440193467, + 26.563604656737198, + 27.053546205918725, + 27.492620943531588, + 27.919325066634627, + 28.24975820116258, + 28.531965805800176, + 28.77482685644166, + 28.97799869425728, + 29.129495282325408, + 29.302584340738044, + 29.4207187630176, + 29.478640641476183, + 29.572343507742822 + ], + "5._48._0.075": [ + 1.5268463243731425, + 1.8679037053125433, + 2.1622431316564765, + 2.5060808694258587, + 2.800135785468466, + 3.143481573173931, + 3.5158727005116153, + 3.8764149732552577, + 4.526419314930771, + 5.0455621857621376, + 5.489893874951987, + 6.235804220342747, + 6.841971449428507, + 8.481510305140135, + 10.143261278172627, + 10.634906554254599, + 11.087087111336059, + 11.536600513615973, + 11.890597962294285, + 12.195943348322809, + 12.46055632510651, + 12.682790353347995, + 12.848807809096153, + 13.038119522790163, + 13.167497525168343, + 13.231124630128225, + 13.334347980818151 + ], + "5._96._0.075": [ + 2.2092718103274014, + 2.5553235649685018, + 2.85191724143269, + 3.200543062810893, + 3.527649841190187, + 4.028832252092129, + 4.775220126986639, + 5.602269774542549, + 7.087170005954368, + 8.170888552088103, + 9.010894137306895, + 10.262154184817643, + 11.165444100361096, + 13.264570272043022, + 15.08392493735126, + 15.585852905533669, + 16.03573112323344, + 16.473712466474904, + 16.812742200533734, + 17.10229784107153, + 17.35105827444125, + 17.558717637610016, + 17.713426144082906, + 17.889685907654112, + 18.00998158617156, + 18.069037944354307, + 18.164745350416073 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json index 7a73a41bfd..3bf70b3f3e 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json @@ -1,2 +1,652 @@ { + "3_3": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351635568339257, + 3.18685987649175, + 3.5194341168753853, + 4.021964695453296, + 4.625373168858598, + 5.631213203703021, + 7.017734131113873, + 8.301128331626503, + 10.117778789699045, + 11.210610651605968, + 11.976583504775217, + 13.028692005585269, + 13.742865870882106, + 15.311494952074163, + 16.618169400815415, + 16.97370980694966, + 17.292351934429536, + 17.602231685890924, + 17.842328567513636, + 18.047436530328493, + 18.223984896573956, + 18.37169673522136, + 18.48184538753949, + 18.60766758338057, + 18.693552413788066, + 18.735670645551725, + 18.803797793376237 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004349, + 2.1114679242247276, + 2.4511928330881463, + 2.7884188390440285, + 3.0449438060593743, + 3.3868270121676423, + 3.6139397405790454, + 3.7971850654668238, + 4.098986094465467, + 4.3483461306850195, + 5.091563856634515, + 6.003348584673112, + 6.30869169255662, + 6.606373821842283, + 6.918310269197569, + 7.176309365099972, + 7.407231942536657, + 7.614477838086076, + 7.793880568509998, + 7.930774556315486, + 8.090147260210866, + 8.200733499237531, + 8.255609007591945, + 8.345178145421313 + ], + "5._384._0.0875": [ + 3.4888288086422636, + 4.016644434684756, + 4.656097350048851, + 5.724643914605977, + 6.959907389349164, + 8.718829385823275, + 10.692998326451791, + 12.268677784338763, + 14.289104442978177, + 15.439317116143096, + 16.228160365480026, + 17.295731529216958, + 18.01381604634192, + 19.582369160770195, + 20.886702784603084, + 21.241361732916218, + 21.559695690469532, + 21.869461495310855, + 22.109738789160463, + 22.315010727642687, + 22.4918421881964, + 22.639906318278147, + 22.75031584383327, + 22.876508470046037, + 22.962608610867996, + 23.004802522166397, + 23.072995900320393 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656477, + 2.506080868699679, + 2.800133863322582, + 3.14316472586218, + 3.5104718549266547, + 3.854845417542254, + 4.451018321828257, + 4.9116776892091, + 5.297016704953429, + 5.92640690466214, + 6.423636872828878, + 7.719212181270855, + 8.980633064022445, + 9.346857075629213, + 9.682185873929484, + 10.01431289649661, + 10.275472721434395, + 10.500494849414341, + 10.695612308471505, + 10.859690701170848, + 10.982362439165628, + 11.122558142675226, + 11.218429945956188, + 11.265557218538145, + 11.341930946657234 + ], + "5._96._0.075": [ + 2.2092619209324726, + 2.5553055502990443, + 2.8518822508487456, + 3.199985852874824, + 3.5222728206245484, + 3.9984334914448545, + 4.675890638522396, + 5.39760263087033, + 6.630658201542146, + 7.489891206956369, + 8.137933780063445, + 9.080671485080162, + 9.748385559930018, + 11.273174243711193, + 12.580380605681452, + 12.94004337232528, + 13.262876866410474, + 13.577523541572688, + 13.821599056356835, + 14.03034643518104, + 14.210092929480233, + 14.360493279700068, + 14.472700352633987, + 14.600821880462636, + 14.688349595590935, + 14.731324538344243, + 14.800941414503159 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "3_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 10.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 10.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351656362397346, + 3.187022214893212, + 3.5206743638628253, + 4.026427905114574, + 4.637320591731864, + 5.681918628105052, + 7.195928057608821, + 8.667652969634455, + 10.835407948040471, + 12.173138766581673, + 13.120915089648696, + 14.431210692905506, + 15.32441495151209, + 17.287810340267843, + 18.92100406274033, + 19.36491546608123, + 19.762051084570384, + 20.14774393784635, + 20.446021621766313, + 20.70070964136172, + 20.919651129829102, + 21.10261640407018, + 21.239021363100157, + 21.394731378971578, + 21.501033093974097, + 21.55318740963753, + 21.637628767055283 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.4511928331220942, + 2.7884193176830023, + 3.0449731122488464, + 3.387443671191268, + 3.615661212012367, + 3.8000503693535084, + 4.104157202838956, + 4.3564421006886835, + 5.12205707751613, + 6.104951371039292, + 6.44663997467484, + 6.785677489291669, + 7.147043279593926, + 7.450449873105472, + 7.72536208586995, + 7.9746178510857, + 8.192173659856735, + 8.359201726136606, + 8.554505711034814, + 8.690545155519855, + 8.758244872089582, + 8.86901206321486 + ], + "5._384._0.0875": [ + 3.4903666059690193, + 4.021766894917602, + 4.670398135472845, + 5.7858767306232455, + 7.138255086355538, + 9.165208843721064, + 11.541605088064461, + 13.487376794462662, + 16.01692584673723, + 17.46632247540876, + 18.46211624061258, + 19.809514025003864, + 20.715510950887428, + 22.689183383189555, + 24.32504204672725, + 24.76917571645905, + 25.167308660359872, + 25.55431552973275, + 25.85409607638312, + 26.110133317947092, + 26.330508557731093, + 26.514893981081084, + 26.652379210936996, + 26.809464413649263, + 26.916666300063365, + 26.96922193140446, + 27.054226470748603 + ], + "5._48._0.075": [ + 1.526846324373141, + 1.8679037053125445, + 2.1622431316564743, + 2.506080868861053, + 2.8001342903818096, + 3.1432338679800567, + 3.511473348344167, + 3.857857357850316, + 4.459751399181277, + 4.930712321489866, + 5.331458857871278, + 6.002224412369841, + 6.547004846721877, + 8.022439927539539, + 9.523152750203892, + 9.968067991414452, + 10.377948331831622, + 10.785910363406488, + 11.107625004661793, + 11.385384317551138, + 11.626367553184364, + 11.828974735668204, + 11.980430894483764, + 12.15329893349065, + 12.271491966315514, + 12.32962269051676, + 12.423914404212331 + ], + "5._96._0.075": [ + 2.2092718103274023, + 2.5553235626058304, + 2.851913830622354, + 3.2001519267074148, + 3.5233599382868084, + 4.0025506810653315, + 4.688607687930476, + 5.435519397369632, + 6.769739711868008, + 7.7434072909032166, + 8.498819340733252, + 9.62539332023139, + 10.439696691725628, + 12.336240074219319, + 13.984730545681584, + 14.440147371236217, + 14.848759407552247, + 15.246859877582565, + 15.555285881043151, + 15.818798499910445, + 16.045319491784436, + 16.234511881534367, + 16.37548515821274, + 16.536146203601948, + 16.64579587223455, + 16.69961871800177, + 16.78681672438808 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + }, + "4_4": { + "1": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 15.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 15.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 15.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351663640324887, + 3.1870790258551014, + 3.5210961279932578, + 4.026258003624487, + 4.620874215132077, + 5.586704760859376, + 6.975975240133478, + 8.385515378636665, + 10.572004132104373, + 11.970612978165319, + 12.977584396047362, + 14.385269064815402, + 15.352257347698204, + 17.488292201888967, + 19.26916115727457, + 19.75338533767014, + 20.18611186851185, + 20.606034675672227, + 20.930371875826708, + 21.20720898473744, + 21.444958809834272, + 21.643459009031766, + 21.791407096906152, + 21.960191851340355, + 22.075419755393312, + 22.131968272416074, + 22.22358119190958 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961543, + 1.4813847491413061, + 1.8198213217004344, + 2.1114679242247276, + 2.4511928331339754, + 2.788419485206642, + 3.044983369398642, + 3.387658420844403, + 3.61621087467806, + 3.800647721718858, + 4.102447078162199, + 4.3482454201841785, + 5.063761085434357, + 5.961844910337476, + 6.281053980373686, + 6.603822067448765, + 6.95537175531292, + 7.256945499031273, + 7.535358466093733, + 7.792070377777192, + 8.019450760285471, + 8.19605530658293, + 8.404727988051604, + 8.551378686479197, + 8.624779509112326, + 8.745473319995293 + ], + "5._384._0.0875": [ + 3.490878423401478, + 4.020865767973589, + 4.648176032065668, + 5.674399499861875, + 6.916132435192409, + 8.869255322450169, + 11.291850797714199, + 13.34706889292032, + 16.074575342864755, + 17.653878358549843, + 18.74281157645554, + 20.218463293681307, + 21.211546808244698, + 23.372625740632863, + 25.160615694186212, + 25.645589407971297, + 26.07990639815786, + 26.50174629776772, + 26.828160051242154, + 27.10687395162787, + 27.34659864893684, + 27.547046683084734, + 27.69649241841502, + 27.867186693474277, + 27.983687149119135, + 28.040815557314513, + 28.133264868112562 + ], + "5._48._0.075": [ + 1.5268463243731425, + 1.8679037053125433, + 2.1622431316564765, + 2.5060808689175333, + 2.8001344398525356, + 3.143258067360416, + 3.511817936616393, + 3.8584823063559384, + 4.450820115805174, + 4.896372927658499, + 5.265314109663766, + 5.875866438354276, + 6.375812833672173, + 7.781652584834328, + 9.298539449880645, + 9.762692744890986, + 10.195323728092962, + 10.629929896539666, + 10.975093504823272, + 11.274487256102537, + 11.535122656382152, + 11.754735236467663, + 11.919110587980263, + 12.106800684140174, + 12.235228520520732, + 12.298450749380303, + 12.401097139217644 + ], + "5._96._0.075": [ + 2.2092718103274023, + 2.555323562842096, + 2.85191417152195, + 3.2001897381139504, + 3.523698775742411, + 4.002837144576757, + 4.67171432905596, + 5.3653840526168555, + 6.583808098627554, + 7.498820819534223, + 8.230410547630026, + 9.35496261489984, + 10.189524424276817, + 12.186066303279896, + 13.960309446498885, + 14.454460899435773, + 14.898355927882445, + 15.331231711411391, + 15.666581859040832, + 15.953119427418569, + 16.199278410806752, + 16.40470718918719, + 16.557725016433995, + 16.731959681699756, + 16.850860777538816, + 16.9092413045836, + 17.00388218199376 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + } + } } \ No newline at end of file diff --git a/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json index 528e87d3fa..0c946ad00a 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json @@ -563,54 +563,54 @@ 3.003 ] }, - "1_4": { + "2_2": { "bore_locations": [ [ 0.0, 0.0 ], [ - 5.0, - 0.0 + 0.0, + 5.0 ], [ - 10.0, + 5.0, 0.0 ], [ - 15.0, - 0.0 + 5.0, + 5.0 ] ], "g": { "5._192._0.08": [ - 2.8351565293061927, - 3.186277369725293, - 3.5135763440050924, - 3.984482530615498, - 4.500328527187433, - 5.252929853813622, - 6.166049558164793, - 6.954818862458517, - 8.035329575127863, - 8.677316270389335, - 9.126260992463921, - 9.74365052040903, - 10.163560451553488, - 11.09224837617182, - 11.87253405098203, - 12.085668095178917, - 12.277305834288796, - 12.464136810401527, - 12.609345157930006, - 12.733492953922616, - 12.840568813105348, - 12.930315914522732, - 12.997261077795526, - 13.073806543685494, - 13.126038789048899, - 13.151633867822897, - 13.192971097467371 + 2.8351729237398393, + 3.187625001099388, + 3.526650044183149, + 4.058948328555595, + 4.695595826630846, + 5.645955947827803, + 6.75199902668803, + 7.654056125477437, + 8.8295373343034, + 9.505225082070822, + 9.970821690581543, + 10.604517453302051, + 11.032316935322866, + 11.972865896385606, + 12.759872798830232, + 12.974553793259052, + 13.167610267540615, + 13.355840260878113, + 13.502187407405124, + 13.627318928756589, + 13.735282746334141, + 13.825809741457272, + 13.893347166070974, + 13.970596790045226, + 14.023313509428306, + 14.049144330457892, + 14.090854715886588 ], "5._24._0.075": [ 0.8740013793970963, @@ -618,115 +618,115 @@ 1.4813667488882372, 1.8197853662506762, 2.1114044341807157, - 2.451070525119184, - 2.78818375566569, - 3.044462584972616, - 3.3835492733852717, - 3.6035402764592814, - 3.775936601553508, - 4.04783928375391, - 4.260199503376492, - 4.83026072820424, - 5.440316619613034, - 5.631817647925681, - 5.8144603766946545, - 6.002746075381008, - 6.15671652137846, - 6.293698523897438, - 6.416260465066006, - 6.522333986896158, - 6.603431531688164, - 6.698303675873532, - 6.764456015353557, - 6.797366566033298, - 6.851243600007028 + 2.4510705253864713, + 2.788187524831072, + 3.044696167323624, + 3.389301466509918, + 3.6238334445562486, + 3.8172234620513863, + 4.139359785435122, + 4.401879357678648, + 5.121352318381859, + 5.866280620300906, + 6.090065304640391, + 6.298807049848143, + 6.509232545774595, + 6.6778214753752865, + 6.825248855115401, + 6.955178640279667, + 7.066160722878991, + 7.150130631281159, + 7.247402603037865, + 7.314637831281445, + 7.347899492449007, + 7.402074061153792 ], "5._384._0.0875": [ - 3.4811393655885206, - 3.971010269644954, - 4.508976665415018, - 5.294251139816838, - 6.103114537954158, - 7.177936460766827, - 8.343480110490887, - 9.262841494572463, - 10.439178278648443, - 11.109549088367109, - 11.570154220595375, - 12.195693347635098, - 12.617618287524184, - 13.544949039519576, - 14.321132217443383, - 14.532760907779526, - 14.723102299691968, - 14.908625655760929, - 15.052829037332357, - 15.176068454958983, - 15.282364173235125, - 15.37146341955096, - 15.43790498694524, - 15.513878999541594, - 15.565692266203763, - 15.591066210539713, - 15.632024448327295 + 3.498202657558257, + 4.059507710829742, + 4.728549908300283, + 5.718298478054254, + 6.695598384635395, + 7.918919559501185, + 9.175209287898596, + 10.134696989496492, + 11.3395882766406, + 12.019506670062515, + 12.48495026821673, + 13.115725677557018, + 13.540591400366639, + 14.474053667337763, + 15.255546352872228, + 15.468670821792806, + 15.660444883601343, + 15.847432011925115, + 15.992846228666961, + 16.117138946341278, + 16.22438283629357, + 16.31430880283502, + 16.381374505740233, + 16.45808138679694, + 16.51039562508549, + 16.536012812409567, + 16.577355525545745 ], "5._48._0.075": [ 1.5268359332879173, 1.8678839385147374, 2.1622087383456443, - 2.5060151099606895, - 2.8000188519866724, - 3.1427073206177853, - 3.5055373540001047, - 3.8333195360139745, - 4.357904355255417, - 4.7240568674260475, - 5.008175496203009, - 5.440407740861426, - 5.762629797534667, - 6.557057784804414, - 7.302738578001398, - 7.517295299755165, - 7.713813485892955, - 7.90866356380504, - 8.062297541151557, - 8.19505899526737, - 8.310650013821848, - 8.408302728791881, - 8.481590072964535, - 8.565802485788343, - 8.623600723744266, - 8.652055179321795, - 8.698212371267878 + 2.506015111231376, + 2.800022215479672, + 3.143265912621415, + 3.5156496031342086, + 3.876810167448651, + 4.510598902563926, + 4.97292547403106, + 5.3314780742753, + 5.86690818888861, + 6.254410228495219, + 7.165237276197894, + 7.97067816717318, + 8.195759462193532, + 8.399726151723728, + 8.600223537255848, + 8.757233427901257, + 8.892268671966473, + 9.009391745097531, + 9.108052422862833, + 9.181950800737681, + 9.266735500969588, + 9.324840376214043, + 9.353415812152894, + 9.399728543565555 ], "5._96._0.075": [ - 2.2092619209324704, - 2.5553055480208138, - 2.851878961478617, - 3.199605002205937, - 3.5178882395629185, - 3.968046678185059, - 4.55014749155164, - 5.098742395066348, - 5.930851539740409, - 6.470185581628055, - 6.865730338663789, - 7.431794194211518, - 7.82918121122223, - 8.73596275485232, - 9.51800957209451, - 9.734023351563122, - 9.928834742576504, - 10.119361285092724, - 10.267811157313929, - 10.394989586500742, - 10.504853818991128, - 10.597056343718467, - 10.665915874567876, - 10.744705908389962, - 10.798543354928198, - 10.824959083605435, - 10.867680397495905 + 2.209261920932471, + 2.555305553336681, + 2.8518866359196213, + 3.2004882339226746, + 3.5277476508021492, + 4.02978044724101, + 4.745286216946609, + 5.439130433328325, + 6.459200418166225, + 7.08807746324128, + 7.534287055485237, + 8.154677466719678, + 8.57963145524655, + 9.525731186489454, + 10.324498118789299, + 10.543323487480553, + 10.740258694731052, + 10.932543867544993, + 11.082214965494755, + 11.210350854440943, + 11.321010221886622, + 11.413873719757635, + 11.483221068226714, + 11.562584991721117, + 11.616811000251728, + 11.64341307682708, + 11.68642648116794 ] }, "logtime": [ @@ -959,6 +959,1066 @@ 3.003 ] }, + "2_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351838500296616, + 3.1885118572313673, + 3.534817814223326, + 4.1030737424674095, + 4.821317420742483, + 5.969919191578708, + 7.41028413925126, + 8.648650678142598, + 10.318019242462421, + 11.295421939311396, + 11.97337743517005, + 12.898811056559623, + 13.524508345420257, + 14.897437624552998, + 16.042123430945267, + 16.35383097791215, + 16.633592896224254, + 16.90595883307184, + 17.117309952985618, + 17.297937101829362, + 17.45358097851654, + 17.58393310527604, + 17.6811611636915, + 17.79229429280022, + 17.868148885395772, + 17.905336255686425, + 17.965445068310917 + ], + "5._24._0.075": [ + 0.8740059532267962, + 1.1958031759615424, + 1.4813847491413075, + 1.8198213217004349, + 2.111467924224728, + 2.4511928334191357, + 2.788423506974107, + 3.0452324610064143, + 3.3937398837242934, + 3.637437610795647, + 3.843546410724326, + 4.197128320327028, + 4.494757418969375, + 5.356757547871304, + 6.322806150411278, + 6.626738081951607, + 6.915404542282874, + 7.21101958981349, + 7.450860982652266, + 7.66246734371669, + 7.850165882224263, + 8.011164200847652, + 8.133224321258036, + 8.274627098240014, + 8.37233003387617, + 8.420668855356707, + 8.49937572606141 + ], + "5._384._0.0875": [ + 3.508669460749622, + 4.111915670923915, + 4.873040032123389, + 6.080558225789574, + 7.357967553781383, + 9.04485058828995, + 10.84277364416776, + 12.241098615273712, + 14.011222366677718, + 15.01309719121016, + 15.699134890832847, + 16.62764066517033, + 17.252332732919882, + 18.619928993318393, + 19.76028670279949, + 20.070751033016197, + 20.34972432420409, + 20.621432400545174, + 20.832432856467467, + 21.012738747514504, + 21.168177723656544, + 21.298415605446706, + 21.395540979639048, + 21.50658808640696, + 21.58234324516048, + 21.619456039757466, + 21.679401052203215 + ], + "5._48._0.075": [ + 1.5268463243731434, + 1.8679037053125456, + 2.162243131656478, + 2.5060808702730704, + 2.8001380280984436, + 3.1438531258067117, + 3.5224600129449035, + 3.9035943923639613, + 4.608135080323152, + 5.1510836559379705, + 5.589462884077594, + 6.27130271990618, + 6.783963554912862, + 8.04316830464235, + 9.202414931053042, + 9.53127928011967, + 9.83044491677738, + 10.125260643940114, + 10.356342764412293, + 10.555043007864295, + 10.727181907122153, + 10.87191268601469, + 10.980113122105404, + 11.103877010708246, + 11.188516611811483, + 11.230104665601413, + 11.297459077760191 + ], + "5._96._0.075": [ + 2.2092619209324718, + 2.555305556880593, + 2.8518917514576345, + 3.201071628572207, + 3.5339683812307245, + 4.066374782143852, + 4.871306856588727, + 5.703345918840731, + 7.011014828442001, + 7.859290682278471, + 8.476335068125367, + 9.349652040268383, + 9.955723894960455, + 11.316721448596432, + 12.4702954875727, + 12.786558094229333, + 13.070633086294775, + 13.347621860741711, + 13.562753164373564, + 13.746815702553597, + 13.905500700816589, + 14.038445223288367, + 14.137675478115584, + 14.251099311683415, + 14.328597138129837, + 14.366636071121864, + 14.428211518355958 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "1_7": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 15.0, + 0.0 + ], + [ + 20.0, + 0.0 + ], + [ + 25.0, + 0.0 + ], + [ + 30.0, + 0.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351635513735327, + 3.1868400887210777, + 3.518469948327196, + 4.007905391760889, + 4.560744629535112, + 5.401449083758796, + 6.486976321316337, + 7.494819690011772, + 8.990031148978208, + 9.939742486515406, + 10.62756995709885, + 11.598631317944045, + 12.272809342815531, + 13.785766062801317, + 15.068231886920891, + 15.419442920350987, + 15.734535049510566, + 16.041230270215344, + 16.27890182163994, + 16.481985532426044, + 16.65674348422391, + 16.802895065437415, + 16.911862557914205, + 17.036270572370665, + 17.12118489782945, + 17.16283345665093, + 17.230222114881137 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.4813847491413068, + 1.8198213217004349, + 2.1114679242247276, + 2.4511928330881467, + 2.788418838701112, + 3.044942971763282, + 3.386567629728472, + 3.6119230278460517, + 3.7911613045797923, + 4.078580049636962, + 4.307163752177449, + 4.941677435556674, + 5.663027618983758, + 5.901361759594423, + 6.135247696883413, + 6.383886230396662, + 6.59370507369637, + 6.785803776503792, + 6.962509782107197, + 7.119485626994295, + 7.242243538718094, + 7.389029028716575, + 7.493643635612574, + 7.5465023506515365, + 7.634332582782971 + ], + "5._384._0.0875": [ + 3.487372589585155, + 3.998469801266941, + 4.5777474410051315, + 5.460776223461212, + 6.425674739213298, + 7.811448320008934, + 9.457393874786662, + 10.851633705797674, + 12.726622455189958, + 13.826818124689655, + 14.591252079696888, + 15.634857218384486, + 16.341099374278958, + 17.89012008611717, + 19.18120760165275, + 19.532466736275204, + 19.84756093006916, + 20.15403736620567, + 20.391581915199563, + 20.59447307028286, + 20.76914405185987, + 20.915308582552065, + 21.024277607388683, + 21.148765882915125, + 21.233696595705158, + 21.275322017056848, + 21.342617449775894 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656477, + 2.506080868699679, + 2.8001338630516033, + 3.14316064878727, + 3.509825052299018, + 3.848493949538661, + 4.406595353628653, + 4.808512554916006, + 5.128385046179502, + 5.630621991594365, + 6.018944136982413, + 7.036679243449652, + 8.083085612065275, + 8.402118479140187, + 8.701041197701302, + 9.003679581690063, + 9.246361952110863, + 9.458765264812914, + 9.64545370153571, + 9.80423770945946, + 9.923954658858502, + 10.061818993725646, + 10.156722307309312, + 10.203578162091253, + 10.279798091320455 + ], + "5._96._0.075": [ + 2.2092619209324726, + 2.555305550299042, + 2.8518822495528053, + 3.199976563484331, + 3.5216594589333883, + 3.987783469991948, + 4.610630051411952, + 5.219885841408891, + 6.193697119043065, + 6.863688145465759, + 7.37701355174114, + 8.145097648783063, + 8.708507627471517, + 10.06015942648566, + 11.28655314742143, + 11.632954167739143, + 11.94671528792384, + 12.254687309217946, + 12.494851774934968, + 12.700949413835472, + 12.87886828832538, + 13.02799852954206, + 13.13937721517926, + 13.266623199224691, + 13.353625807082219, + 13.396374577666606, + 13.465670536191942 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_4": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835189313206151, + 3.1889552931299114, + 3.538903600312914, + 4.125245273292659, + 4.885340092341224, + 6.143016730599865, + 7.795423613565886, + 9.27950543596083, + 11.353436747367905, + 12.596840822504834, + 13.468067160431177, + 14.664470966131761, + 15.476574467940123, + 17.259801418963622, + 18.744684236603973, + 19.148663438954305, + 19.510655248879416, + 19.862646518364635, + 20.135320763803648, + 20.368260758547958, + 20.56874655291972, + 20.73647327867843, + 20.86155289126196, + 21.004430911305807, + 21.101968292861095, + 21.14980656381263, + 21.2272004431566 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615428, + 1.481384749141307, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833508249, + 2.7884247637014252, + 3.045310119636185, + 3.3955843569013524, + 3.6436674974056684, + 3.855925700780031, + 4.224811171067863, + 4.5397453647967625, + 5.475296090778514, + 6.570578898325478, + 6.92687615541592, + 7.270320655734392, + 7.627303621650882, + 7.920731222490932, + 8.182500131978642, + 8.41680285150039, + 8.619260142203307, + 8.773624250962664, + 8.953159155105311, + 9.077674641056438, + 9.139455677919402, + 9.240304416029538 + ], + "5._384._0.0875": [ + 3.513927363245156, + 4.138323236620862, + 4.946934659382122, + 6.276023786386213, + 7.745123433015339, + 9.775152078177463, + 12.027507501059624, + 13.821671148549264, + 16.122385823361906, + 17.4324968039469, + 18.331112481880304, + 19.547113368196523, + 20.364969660768274, + 22.15086918925759, + 23.635424304237905, + 24.039034587050264, + 24.401264702494476, + 24.753712834574596, + 25.027064089428094, + 25.260592821811322, + 25.461753936083383, + 25.63018173599274, + 25.755780013529776, + 25.899333215570362, + 25.997285001804187, + 26.04529040415504, + 26.122885369700576 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125456, + 2.1622431316564765, + 2.5060808706966746, + 2.800139149366015, + 3.1440381898974845, + 3.5256483410086874, + 3.916608969868303, + 4.6564326435683565, + 5.2408522575199115, + 5.722156280418049, + 6.488021692642983, + 7.078108817637764, + 8.576263856323838, + 10.010562551630642, + 10.425304910732308, + 10.804721194183715, + 11.180326309928033, + 11.475509468067585, + 11.729855694876939, + 11.950339156563452, + 12.135706243920572, + 12.274298805136475, + 12.43266659756452, + 12.540977602810342, + 12.594230671057593, + 12.680561756879944 + ], + "5._96._0.075": [ + 2.209271810327405, + 2.5553235702845147, + 2.851924915529097, + 3.201421474439214, + 3.5371855730616306, + 4.085002516161643, + 4.9363362454780155, + 5.844581988979856, + 7.333675535782044, + 8.340589006658128, + 9.091921499272008, + 10.179343803963988, + 10.948160171270874, + 12.705528852454755, + 14.213545899477472, + 14.628526877105443, + 15.001108095533844, + 15.364261803956104, + 15.645980395169984, + 15.886802623855722, + 16.09410089941256, + 16.267481710205853, + 16.396752054083837, + 16.544255556142314, + 16.644951440401478, + 16.694366889837227, + 16.774367453977067 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "3_3": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 10.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.835194777381192, + 3.1894025608097913, + 3.5431730221711955, + 4.14995457114244, + 4.9602850236753655, + 6.347578461069761, + 8.219303063204094, + 9.914516638470111, + 12.278861307216795, + 13.689375428116989, + 14.674344858546927, + 16.022611202493785, + 16.935365383865182, + 18.932857449180446, + 20.590866358188737, + 21.041366524348163, + 21.444770448561922, + 21.836821848945775, + 22.14035060837515, + 22.399611200201736, + 22.622676684137772, + 22.809243153220393, + 22.948370714060438, + 23.107281147415655, + 23.21577422790068, + 23.26899392646864, + 23.35511895816213 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.1958031759615426, + 1.4813847491413075, + 1.8198213217004344, + 2.1114679242247276, + 2.4511928335973607, + 2.7884260204953697, + 3.04538794032085, + 3.397478847285279, + 3.65028236953504, + 3.8694446367968838, + 4.256269763172383, + 4.592145183247248, + 5.616342141065902, + 6.8505258017449835, + 7.255864594819363, + 7.646968809849212, + 8.053276846734915, + 8.386585501883108, + 8.683166345880695, + 8.947757383742928, + 9.175550285120444, + 9.348629321286626, + 9.549090750604586, + 9.687603583920982, + 9.75618204850785, + 9.867903170019959 + ], + "5._384._0.0875": [ + 3.519414642750923, + 4.167877970390456, + 5.033726376163877, + 6.505666850113914, + 8.171517377809307, + 10.490884518790367, + 13.057641798784514, + 15.091596800768148, + 17.68751684607798, + 19.161074457078783, + 20.170244304416116, + 21.533887452770426, + 22.450098703200283, + 24.44785294350101, + 26.106290008466924, + 26.556935572090406, + 26.961259778317036, + 27.354567382479086, + 27.659517769608016, + 27.920033833407945, + 28.144407005050972, + 28.332246401451023, + 28.47232450648087, + 28.632424722805496, + 28.741678395827968, + 28.795229262854185, + 28.881805767853283 + ], + "5._48._0.075": [ + 1.526846324373141, + 1.8679037053125445, + 2.1622431316564743, + 2.5060808711202784, + 2.8001402706862746, + 3.144224045078283, + 3.5289604520774644, + 3.9307999739317094, + 4.712428254185614, + 5.347418921621241, + 5.879965415980396, + 6.739706948129181, + 7.408865386614326, + 9.11626514200392, + 10.744546670597042, + 11.212791446300308, + 11.639773033803978, + 12.061220509658641, + 12.391458830061971, + 12.675406212948246, + 12.921007864313719, + 13.127088899769337, + 13.280972380875744, + 13.456545976421273, + 13.576513141553155, + 13.63547462786866, + 13.731049929860575 + ], + "5._96._0.075": [ + 2.2092718103274045, + 2.555323572056519, + 2.851927473662024, + 3.2017149990298575, + 3.5404146600729027, + 4.105317906966819, + 5.011588848511913, + 6.010214756195945, + 7.689683107068938, + 8.83802759134417, + 9.696161835980128, + 10.936159020578424, + 11.810006714617264, + 13.795953525503256, + 15.487658517857962, + 15.951619872839778, + 16.36743918194945, + 16.772210126218116, + 17.08580136939843, + 17.353701914617353, + 17.584116928288115, + 17.77669672785507, + 17.92024261930604, + 18.08396769607562, + 18.195727750777714, + 18.25057695718145, + 18.33939900223481 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, + "2_5": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 20.0 + ], + [ + 5.0, + 0.0 + ], + [ + 5.0, + 5.0 + ], + [ + 5.0, + 10.0 + ], + [ + 5.0, + 15.0 + ], + [ + 5.0, + 20.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351925911221576, + 3.1892213571751724, + 3.541355680931138, + 4.138584767756017, + 4.9241374783226926, + 6.249826317837372, + 8.042260934494504, + 9.703216610321878, + 12.09809062521322, + 13.56908007334359, + 14.612006032564038, + 16.055720129237326, + 17.041446513509268, + 19.21235807125101, + 21.021394579795135, + 21.51348253987512, + 21.953838825026494, + 22.381596137133617, + 22.71246057740695, + 22.995009669704974, + 23.237929131473347, + 23.440952165864083, + 23.592323435875723, + 23.765132002398985, + 23.883117319556238, + 23.9410075258365, + 24.034741663406493 + ], + "5._24._0.075": [ + 0.8740059532267964, + 1.195803175961543, + 1.4813847491413061, + 1.8198213217004344, + 2.1114679242247276, + 2.451192833561717, + 2.788425517737825, + 3.045356714841056, + 3.3966911071229466, + 3.6474066614447547, + 3.8633595181679907, + 4.24146678775765, + 4.566884714356566, + 5.547880470514063, + 6.726814251230247, + 7.118959710629289, + 7.50128704873647, + 7.9035098800175545, + 8.238003360525568, + 8.5395714881233, + 8.812074243127194, + 9.049545264964225, + 9.231894169168777, + 9.445246167913844, + 9.59406803876897, + 9.66821594998837, + 9.789711570773129 + ], + "5._384._0.0875": [ + 3.517089669530491, + 4.154236578069029, + 4.991813562490588, + 6.397124777871605, + 7.993192537890449, + 10.273204407311878, + 12.894363852555866, + 15.03591773423202, + 17.826301894246654, + 19.428894473358316, + 20.531330089142955, + 22.024350568112386, + 23.028917741747733, + 25.218676239030803, + 27.034574164062334, + 27.527694270576607, + 27.969766769490864, + 28.399509205537253, + 28.732408761913508, + 29.016742293317094, + 29.261480255157917, + 29.466255352215995, + 29.61894760132361, + 29.793411897991778, + 29.91247707075819, + 29.970849669315502, + 30.06526432438584 + ], + "5._48._0.075": [ + 1.5268463243731425, + 1.8679037053125433, + 2.1622431316564765, + 2.5060808709508366, + 2.8001398221265577, + 3.1441492286179065, + 3.527561651194066, + 3.9244278621678506, + 4.685625175731641, + 5.295453920390567, + 5.803427043965115, + 6.6229181920128095, + 7.264275168426223, + 8.932368370759292, + 10.58456660789766, + 11.071975122419524, + 11.520931091653425, + 11.96807575491938, + 12.320962857674967, + 12.626044874588079, + 12.890997615805377, + 13.113976808931236, + 13.280824408999106, + 13.471430249883822, + 13.601864227263004, + 13.666054533956704, + 13.770242133670214 + ], + "5._96._0.075": [ + 2.2092718103274054, + 2.555323571347717, + 2.8519264502576633, + 3.20159650900156, + 3.539052908031279, + 4.096048940752249, + 4.975279344723372, + 5.929988032282506, + 7.533985925741476, + 8.64781926922027, + 9.494276092360495, + 10.740984617263898, + 11.637037095800018, + 13.720762587803135, + 15.536368860385512, + 16.03891768592228, + 16.490303967511636, + 16.930398915078918, + 17.271561697172185, + 17.563187144528, + 17.81397563275722, + 18.023509191350684, + 18.179684517471944, + 18.35771990199947, + 18.47926197550023, + 18.538934132395124, + 18.635627554320685 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, "5_8": { "bore_locations": [ [ diff --git a/HPXMLtoOpenStudio/resources/g_functions/util.rb b/HPXMLtoOpenStudio/resources/g_functions/util.rb index 2421165fc1..6b6e2d7460 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/util.rb +++ b/HPXMLtoOpenStudio/resources/g_functions/util.rb @@ -1,16 +1,16 @@ # frozen_string_literal: true -def add_n_x_m(json, json2, expected_num_boreholes, n_x_m, key2 = nil) +def add_m_n(json, json2, expected_num_boreholes, m_n, key2 = nil) if key2.nil? - actual_num_boreholes = json[n_x_m]['bore_locations'].size + actual_num_boreholes = json[m_n]['bore_locations'].size fail "#{expected_num_boreholes} vs #{actual_num_boreholes}" if expected_num_boreholes != actual_num_boreholes - json2.update({ n_x_m => json[n_x_m] }) # FIXME: Change all n_x_m to m_x_n + json2.update({ m_n => json[m_n] }) else - actual_num_boreholes = json[n_x_m][key2]['bore_locations'].size + actual_num_boreholes = json[m_n][key2]['bore_locations'].size fail "#{expected_num_boreholes} vs #{actual_num_boreholes}" if expected_num_boreholes != actual_num_boreholes - json2.update({ n_x_m => { key2 => json[n_x_m][key2] } }) + json2.update({ m_n => { key2 => json[m_n][key2] } }) end end @@ -29,43 +29,43 @@ def process_g_functions(filepath) json2 = {} case config_json when 'rectangle_5m_v1.0.json' - add_n_x_m(json, json2, 1, '1_1') - add_n_x_m(json, json2, 2, '1_2') - add_n_x_m(json, json2, 3, '1_3') - add_n_x_m(json, json2, 4, '2_2') - add_n_x_m(json, json2, 5, '1_5') - add_n_x_m(json, json2, 6, '2_3') - add_n_x_m(json, json2, 7, '1_7') - add_n_x_m(json, json2, 8, '2_4') - add_n_x_m(json, json2, 9, '3_3') - add_n_x_m(json, json2, 10, '2_5') - add_n_x_m(json, json2, 40, '5_8') # test case + add_m_n(json, json2, 1, '1_1') + add_m_n(json, json2, 2, '1_2') + add_m_n(json, json2, 3, '1_3') + add_m_n(json, json2, 4, '2_2') + add_m_n(json, json2, 5, '1_5') + add_m_n(json, json2, 6, '2_3') + add_m_n(json, json2, 7, '1_7') + add_m_n(json, json2, 8, '2_4') + add_m_n(json, json2, 9, '3_3') + add_m_n(json, json2, 10, '2_5') + add_m_n(json, json2, 40, '5_8') # test case when 'L_configurations_5m_v1.0.json' - add_n_x_m(json, json2, 4, '2_3') - add_n_x_m(json, json2, 5, '3_3') - add_n_x_m(json, json2, 6, '3_4') - add_n_x_m(json, json2, 7, '4_4') - add_n_x_m(json, json2, 8, '4_5') - add_n_x_m(json, json2, 9, '5_5') - add_n_x_m(json, json2, 10, '5_6') - when 'C_configurations_5m_v1.0.json' - add_n_x_m(json, json2, 7, '3_3') - add_n_x_m(json, json2, 9, '3_4') + add_m_n(json, json2, 4, '2_3') + add_m_n(json, json2, 5, '3_3') + add_m_n(json, json2, 6, '3_4') + add_m_n(json, json2, 7, '4_4') + add_m_n(json, json2, 8, '4_5') + add_m_n(json, json2, 9, '5_5') + add_m_n(json, json2, 10, '5_6') + when 'C_configurations_5m_v1.0.json' # has key2 + add_m_n(json, json2, 7, '3_3', '1') + add_m_n(json, json2, 9, '3_4', '1') when 'LopU_configurations_5m_v1.0.json' - add_n_x_m(json, json2, 6, '3_3', '1') - add_n_x_m(json, json2, 7, '3_4', '2') - add_n_x_m(json, json2, 8, '3_4', '1') - add_n_x_m(json, json2, 9, '4_4', '1') - add_n_x_m(json, json2, 10, '3_5', '1') - when 'Open_configurations_5m_v1.0.json' - add_n_x_m(json, json2, 8, '3_3') - add_n_x_m(json, json2, 10, '3_4') - when 'U_configurations_5m_v1.0.json' - add_n_x_m(json, json2, 7, '3_3') - add_n_x_m(json, json2, 9, '3_4') - add_n_x_m(json, json2, 10, '4_4') + add_m_n(json, json2, 6, '3_3', '1') + add_m_n(json, json2, 7, '3_4', '2') + add_m_n(json, json2, 8, '3_4', '1') + add_m_n(json, json2, 9, '4_4', '1') + add_m_n(json, json2, 10, '3_5', '1') + when 'Open_configurations_5m_v1.0.json' # has key2 + add_m_n(json, json2, 8, '3_3', '1') + add_m_n(json, json2, 10, '3_4', '1') + when 'U_configurations_5m_v1.0.json' # has key2 + add_m_n(json, json2, 7, '3_3', '1') + add_m_n(json, json2, 9, '3_4', '1') + add_m_n(json, json2, 10, '4_4', '1') when 'zoned_rectangle_5m_v1.0.json' - add_n_x_m(json, json2, 17, '5_5', '1_1') + add_m_n(json, json2, 17, '5_5', '1_1') else fail "Unrecognized config_json: #{config_json}" end @@ -77,7 +77,7 @@ def process_g_functions(filepath) end end - FileUtils.rm_rf(filepath) + # FileUtils.rm_rf(filepath) num_configs_actual = Dir[File.join(g_functions_path, '*.json')].count From 495c2ca2e714aed32e00f8003a59521465baaf7a Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 27 Jul 2023 09:04:47 -0700 Subject: [PATCH 078/217] Zoned rectangle has no valid m_n. --- HPXMLtoOpenStudio/measure.xml | 60 +---- .../resources/g_functions/util.rb | 35 +-- .../g_functions/zoned_rectangle_5m_v1.0.json | 252 ------------------ 3 files changed, 21 insertions(+), 326 deletions(-) delete mode 100644 HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 0ea32483b1..a3660554d9 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - ec3f0f8f-2618-4b4e-8bb8-1bccfb249aa2 - 2023-07-27T15:51:57Z + 08c41780-1126-4ef6-87f5-2220a3cf608e + 2023-07-27T16:04:23Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -246,60 +246,12 @@ resource B5BEF270 - - g_functions/g-function_library_1.0/C_configurations_5m_v1.0.json - json - resource - E9E73997 - - - g_functions/g-function_library_1.0/L_configurations_5m_v1.0.json - json - resource - 1265E552 - - - g_functions/g-function_library_1.0/LibraryAccessExample.py - py - resource - C9FE5CC2 - - - g_functions/g-function_library_1.0/LopU_configurations_5m_v1.0.json - json - resource - 72B76187 - - - g_functions/g-function_library_1.0/Open_configurations_5m_v1.0.json - json - resource - BCB44A41 - - - g_functions/g-function_library_1.0/U_configurations_5m_v1.0.json - json - resource - 1620B431 - - - g_functions/g-function_library_1.0/ZRectsContained.xlsx - xlsx - resource - BA2559DF - g_functions/g-function_library_1.0/g-function_library_overview.pdf pdf resource 638C9245 - - g_functions/g-function_library_1.0/rectangle_5m_v1.0.json - json - resource - E90F30A5 - g_functions/g-function_library_1.0/zoned_rectangle_5m_v1.0.json json @@ -316,13 +268,7 @@ g_functions/util.rb rb resource - 3FCF56D1 - - - g_functions/zoned_rectangle_5m_v1.0.json - json - resource - 5986E71A + 110EEDB8 generator.rb diff --git a/HPXMLtoOpenStudio/resources/g_functions/util.rb b/HPXMLtoOpenStudio/resources/g_functions/util.rb index 6b6e2d7460..18eeb89043 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/util.rb +++ b/HPXMLtoOpenStudio/resources/g_functions/util.rb @@ -1,19 +1,5 @@ # frozen_string_literal: true -def add_m_n(json, json2, expected_num_boreholes, m_n, key2 = nil) - if key2.nil? - actual_num_boreholes = json[m_n]['bore_locations'].size - fail "#{expected_num_boreholes} vs #{actual_num_boreholes}" if expected_num_boreholes != actual_num_boreholes - - json2.update({ m_n => json[m_n] }) - else - actual_num_boreholes = json[m_n][key2]['bore_locations'].size - fail "#{expected_num_boreholes} vs #{actual_num_boreholes}" if expected_num_boreholes != actual_num_boreholes - - json2.update({ m_n => { key2 => json[m_n][key2] } }) - end -end - def process_g_functions(filepath) # Downselect jsons found at https://gdr.openei.org/files/1325/g-function_library_1.0.zip require 'json' @@ -64,11 +50,12 @@ def process_g_functions(filepath) add_m_n(json, json2, 7, '3_3', '1') add_m_n(json, json2, 9, '3_4', '1') add_m_n(json, json2, 10, '4_4', '1') - when 'zoned_rectangle_5m_v1.0.json' - add_m_n(json, json2, 17, '5_5', '1_1') + when 'zoned_rectangle_5m_v1.0.json' # FIXME: are there any m_n for which num_boreholes<=10? + # add_m_n(json, json2, 17, '5_5', '1_1') else fail "Unrecognized config_json: #{config_json}" end + next if json2.empty? configpath = File.join(g_functions_path, File.basename(config_json)) File.open(configpath, 'w') do |f| @@ -77,9 +64,23 @@ def process_g_functions(filepath) end end - # FileUtils.rm_rf(filepath) + FileUtils.rm_rf(filepath) num_configs_actual = Dir[File.join(g_functions_path, '*.json')].count return num_configs_actual end + +def add_m_n(json, json2, expected_num_boreholes, m_n, key2 = nil) + if key2.nil? + actual_num_boreholes = json[m_n]['bore_locations'].size + fail "#{expected_num_boreholes} vs #{actual_num_boreholes}" if expected_num_boreholes != actual_num_boreholes + + json2.update({ m_n => json[m_n] }) + else + actual_num_boreholes = json[m_n][key2]['bore_locations'].size + fail "#{expected_num_boreholes} vs #{actual_num_boreholes}" if expected_num_boreholes != actual_num_boreholes + + json2.update({ m_n => { key2 => json[m_n][key2] } }) + end +end diff --git a/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json deleted file mode 100644 index 8928216e8a..0000000000 --- a/HPXMLtoOpenStudio/resources/g_functions/zoned_rectangle_5m_v1.0.json +++ /dev/null @@ -1,252 +0,0 @@ -{ - "5_5": { - "1_1": { - "bore_locations": [ - [ - 0.0, - 0.0 - ], - [ - 0.0, - 20.0 - ], - [ - 5.0, - 0.0 - ], - [ - 5.0, - 20.0 - ], - [ - 10.0, - 0.0 - ], - [ - 10.0, - 20.0 - ], - [ - 15.0, - 0.0 - ], - [ - 15.0, - 20.0 - ], - [ - 20.0, - 0.0 - ], - [ - 20.0, - 20.0 - ], - [ - 0.0, - 5.0 - ], - [ - 20.0, - 5.0 - ], - [ - 0.0, - 10.0 - ], - [ - 20.0, - 10.0 - ], - [ - 0.0, - 15.0 - ], - [ - 20.0, - 15.0 - ], - [ - 10.0, - 10.0 - ] - ], - "g": { - "5._192._0.08": [ - 2.8351690633539097, - 3.187297729317165, - 3.5231036913448337, - 4.03829515196311, - 4.668769284467644, - 5.777440926784886, - 7.516980560016233, - 9.408208653929846, - 12.541448581917443, - 14.646742465310703, - 16.198463432247014, - 18.401364382030078, - 19.931126947261973, - 23.3189624425537, - 26.133972642596465, - 26.897088922535158, - 27.575829825847972, - 28.232069929758374, - 28.736322872950243, - 29.166145539318638, - 29.533983455420717, - 29.840138163659294, - 30.06819405504583, - 30.32795615627281, - 30.50537347615724, - 30.592546488854328, - 30.734152414556835 - ], - "5._24._0.075": [ - 0.8740059532267965, - 1.1958031759615428, - 1.481384749141308, - 1.8198213217004362, - 2.1114679242247285, - 2.4511928331780077, - 2.7884201061707126, - 3.0450217246869804, - 3.388565179481605, - 3.6192868993770895, - 3.8069539331658686, - 4.118538407429997, - 4.378744130427089, - 5.183253508727977, - 6.284020672155531, - 6.695014469215383, - 7.122157330148088, - 7.599498561101806, - 8.01923069211515, - 8.414766798479853, - 8.786413185216366, - 9.120942300420413, - 9.384027154875726, - 9.697662373564988, - 9.919793749932527, - 10.031619073169086, - 10.21632971726765 - ], - "5._384._0.0875": [ - 3.4934572709321556, - 4.035691721022439, - 4.706624305572615, - 5.8985057336757425, - 7.459178539186731, - 10.104211957553916, - 13.633796669906554, - 16.787891397377003, - 21.111139215244012, - 23.65703513151427, - 25.421283303472304, - 27.81192564136665, - 29.419825079624587, - 32.895639191448346, - 35.74827181162997, - 36.518970300658175, - 37.20697324196509, - 37.87338036975562, - 38.38719415998495, - 38.825625902051655, - 39.20189768001081, - 39.515924303129665, - 39.75002320078204, - 40.017209438135325, - 40.19967417152731, - 40.28923726732824, - 40.43446284012706 - ], - "5._48._0.075": [ - 1.5268463243731418, - 1.8679037053125453, - 2.1622431316564774, - 2.506080869126845, - 2.800134993885049, - 3.143349426668005, - 3.513384089652635, - 3.865111868446782, - 4.483801482406906, - 4.974525454681382, - 5.399366104195478, - 6.135266526023098, - 6.762751058745606, - 8.628872573609703, - 10.78479744712892, - 11.471690880303774, - 12.119406999486857, - 12.777009627174387, - 13.302587787154682, - 13.760422830412521, - 14.15928564800977, - 14.494942818422327, - 14.745850943130364, - 15.031122437439242, - 15.226028694352411, - 15.322068749754699, - 15.478367110702123 - ], - "5._96._0.075": [ - 2.2092718103274023, - 2.5553235637176743, - 2.851915435389374, - 3.200333692339888, - 3.5252272673310836, - 4.012534865719168, - 4.720170488536042, - 5.5076987699385676, - 7.005583313020637, - 8.201820604148494, - 9.196497756966165, - 10.782952382200207, - 11.99995619143155, - 15.010254291210055, - 17.75981255164101, - 18.532566088636568, - 19.22529556804791, - 19.899642099253548, - 20.41971051192545, - 20.863231028104984, - 21.24256674314214, - 21.55775696138165, - 21.79212690758522, - 22.058095593622557, - 22.239531227056123, - 22.328716918121458, - 22.47371715520643 - ] - }, - "logtime": [ - -8.5, - -7.8, - -7.2, - -6.5, - -5.9, - -5.2, - -4.5, - -3.963, - -3.27, - -2.864, - -2.577, - -2.171, - -1.884, - -1.191, - -0.497, - -0.274, - -0.051, - 0.196, - 0.419, - 0.642, - 0.873, - 1.112, - 1.335, - 1.679, - 2.028, - 2.275, - 3.003 - ] - } - } -} \ No newline at end of file From 08f95692bfbaed893333b0ec384d73df4bd94b12 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 27 Jul 2023 09:13:09 -0700 Subject: [PATCH 079/217] Allow C config with 7 or 9 boreholes. --- BuildResidentialHPXML/measure.rb | 2 + BuildResidentialHPXML/measure.xml | 10 +- HPXMLtoOpenStudio/measure.xml | 10 +- .../hpxml_schematron/EPvalidator.xml | 2 +- HPXMLtoOpenStudio/resources/hvac.rb | 4 +- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 1 + docs/source/workflow_inputs.rst | 3 +- workflow/hpxml_inputs.json | 8 - .../base-hvac-library-test-case.xml | 568 ------------------ 9 files changed, 20 insertions(+), 588 deletions(-) delete mode 100644 workflow/sample_files/base-hvac-library-test-case.xml diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index e9fb77f223..f465cc46fa 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1418,7 +1418,9 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument geothermal_loop_borefield_configuration_choices = OpenStudio::StringVector.new geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationRectangle + # geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationZonedRectangle geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationC geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationL geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationU geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationLopsidedU diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index fb33ad6987..ee1be4598a 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 50220fc5-997c-44da-b55b-37309f46d545 - 2023-07-25T20:41:37Z + cc001732-b965-4815-ab79-90b489343e4f + 2023-07-27T16:11:46Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -2892,6 +2892,10 @@ Open Rectangle Open Rectangle + + C + C + L L @@ -6825,7 +6829,7 @@ measure.rb rb script - CDAA7E06 + 5AD047C0 geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index a3660554d9..4cd55ad75b 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 08c41780-1126-4ef6-87f5-2220a3cf608e - 2023-07-27T16:04:23Z + 6f6a21ae-8c5e-4e24-96c9-bb982a8d137d + 2023-07-27T16:11:48Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -316,7 +316,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 545983EA + 8A99C360 hpxml_schematron/iso-schematron.xsd @@ -328,13 +328,13 @@ hvac.rb rb resource - 64EB8CAB + ECB7056E hvac_sizing.rb rb resource - 2561256D + 172BF8D4 lighting.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 8a36985c13..3bd4e36a57 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1309,7 +1309,7 @@ Expected 0 or 1 element(s) for xpath: Pipe/ShankSpacing Expected Pipe/ShankSpacing to be greater than 0 Expected 0 or 2 element(s) for xpath: BoreholesOrTrenches/Count | extension/BorefieldConfiguration - Expected BorefieldConfiguration to be 'Rectangle' or 'Open Rectangle' or 'L' or 'U' or 'Lopsided U' + Expected BorefieldConfiguration to be 'Rectangle' or 'Open Rectangle' or 'L' or 'U' or 'Lopsided U' diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index 393e4ce3d0..92ab8ab28e 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -3399,10 +3399,10 @@ def self.set_gshp_assumptions(heat_pump, weather) end def self.valid_borefield_configs - valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 40], + valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], # HPXML::GeothermalLoopBorefieldConfigurationZonedRectangle => [], HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => [8, 10], - # HPXML::GeothermalLoopBorefieldConfigurationC => [], + HPXML::GeothermalLoopBorefieldConfigurationC => [7, 9], HPXML::GeothermalLoopBorefieldConfigurationL => [4, 5, 6, 7, 8, 9, 10], HPXML::GeothermalLoopBorefieldConfigurationU => [7, 9, 10], HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => [6, 7, 8, 9, 10] } diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 8c8c29a39a..9c1b664299 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -2672,6 +2672,7 @@ def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, g_functions_filename = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => 'rectangle_5m_v1.0.json', HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => 'Open_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationC => 'C_configurations_5m_v1.0.json', HPXML::GeothermalLoopBorefieldConfigurationL => 'L_configurations_5m_v1.0.json', HPXML::GeothermalLoopBorefieldConfigurationU => 'U_configurations_5m_v1.0.json', HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => 'LopU_configurations_5m_v1.0.json' }[bore_config] diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index b295832bba..65ebe96af0 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2074,6 +2074,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ .. [#] | If extension/BorefieldConfiguration provided, a valid BoreholesOrTrenches/Count must also be provided: | - **Rectangle**: 1, 2, 3, 4, 5, 6, 7, 8, 9, or 10 | - **Open Rectangle**: 8 or 10 + | - **C**: 7 or 9 | - **L**: 4, 5, 6, 7, 8, 9, or 10 | - **U**: 7, 9, or 10 | - **Lopsided U**: 6, 7, 8, 9, or 10 @@ -2086,7 +2087,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ | - **thermally enhanced**: 0.8 Btu/hr-ft-F .. [#] Pipe diameter must be either 3/4", 1", or 1-1/4" (i.e, 0.75, 1.0, or 1.25). .. [#] Sum of U-tube spacing and pipe outer diameter. - .. [#] extension/BorefieldConfiguration choices are "Rectangle", "Open Rectangle", "L", "U", or "Lopsided U". + .. [#] extension/BorefieldConfiguration choices are "Rectangle", "Open Rectangle", "C", "L", "U", or "Lopsided U". .. _hvac_control: diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index e3dbb2bc54..83817c3385 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2442,14 +2442,6 @@ "geothermal_loop_boreholes_or_trenches_count": 5, "geothermal_loop_borefield_configuration": "L" }, - "sample_files/base-hvac-library-test-case.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_borefield_configuration": "Rectangle", - "geothermal_loop_boreholes_or_trenches_count": 40, - "geothermal_loop_boreholes_or_trenches_length": 492.125, - "geothermal_loop_boreholes_or_trenches_spacing": 22.96588, - "geothermal_loop_boreholes_or_trenches_diameter": 6.2992126 - }, "sample_files/base-hvac-ground-to-air-heat-pump.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_type": "none", diff --git a/workflow/sample_files/base-hvac-library-test-case.xml b/workflow/sample_files/base-hvac-library-test-case.xml deleted file mode 100644 index 8778eac399..0000000000 --- a/workflow/sample_files/base-hvac-library-test-case.xml +++ /dev/null @@ -1,568 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - 40 - 492.125 - 22.96588 - 6.2992126 - - - Rectangle - - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file From b9ab339cfda1825b0245280c5a8968b2ee25d484 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 27 Jul 2023 09:16:34 -0700 Subject: [PATCH 080/217] Update a comment. [ci skip] --- tasks.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.rb b/tasks.rb index 9da2275c0e..30612c7077 100644 --- a/tasks.rb +++ b/tasks.rb @@ -2222,7 +2222,7 @@ def download_g_functions FileUtils.mkdir(g_functions_dir) if !File.exist?(g_functions_dir) filepath = File.join(g_functions_dir, 'g-function_library_1.0') - if !File.exist?(filepath) # To check: Is it OK to remove this 'if' statement (to auto-overwrite the 'g-function_library_1.0' folder with each download)? + if !File.exist?(filepath) # presence of 'g-function_library_1.0' folder will skip re-downloading require 'tempfile' tmpfile = Tempfile.new('functions') From 41c66345a36284badd157f450709246681bea8c7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 27 Jul 2023 17:03:19 +0000 Subject: [PATCH 081/217] Latest results. --- workflow/tests/base_results/results.csv | 3 +-- workflow/tests/base_results/results_bills.csv | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index f85f483f0e..01299b1950 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -291,7 +291,7 @@ base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0 base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-geothermal-loop-borefield-configuration.xml,39.547,39.547,39.547,39.547,0.0,0.0,0.0,0.0,0.0,0.0,5.239,0.361,0.0,0.0,2.477,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.538,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3210.2,2594.4,3210.2,20.925,14.708,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.046,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-count.xml,39.549,39.549,39.549,39.549,0.0,0.0,0.0,0.0,0.0,0.0,5.243,0.361,0.0,0.0,2.475,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3211.0,2581.1,3211.0,20.927,14.697,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.047,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop-boreholes-count.xml,39.547,39.547,39.547,39.547,0.0,0.0,0.0,0.0,0.0,0.0,5.242,0.361,0.0,0.0,2.473,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3211.1,2580.0,3211.1,20.928,14.696,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.047,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-geothermal-loop-boreholes-diameter.xml,39.554,39.554,39.554,39.554,0.0,0.0,0.0,0.0,0.0,0.0,5.248,0.362,0.0,0.0,2.474,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.2,2583.0,3212.2,20.879,14.701,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-geothermal-loop-boreholes-length.xml,39.502,39.502,39.502,39.502,0.0,0.0,0.0,0.0,0.0,0.0,5.23,0.359,0.0,0.0,2.446,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.531,0.0,12.672,9.233,0.614,0.0,0.0,0.0,0.0,3202.1,2567.5,3202.1,20.83,14.681,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.039,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-geothermal-loop-boreholes-spacing.xml,39.494,39.494,39.494,39.494,0.0,0.0,0.0,0.0,0.0,0.0,5.227,0.359,0.0,0.0,2.441,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.53,0.0,12.672,9.233,0.614,0.0,0.0,0.0,0.0,3200.5,2567.2,3200.5,20.821,14.681,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.037,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.759,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -315,7 +315,6 @@ base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.73 base-hvac-install-quality-ground-to-air-heat-pump.xml,41.358,41.358,41.358,41.358,0.0,0.0,0.0,0.0,0.0,0.0,6.658,0.379,0.0,0.0,2.92,0.961,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.424,0.0,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3442.3,2724.4,3442.3,21.792,15.702,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.955,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.235,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,4380.1,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-library-test-case.xml,39.021,39.021,39.021,39.021,0.0,0.0,0.0,0.0,0.0,0.0,5.056,0.337,0.0,0.0,2.19,0.998,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.426,0.0,12.642,9.233,0.614,0.0,0.0,0.0,0.0,3117.3,2452.1,3117.3,20.464,14.58,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.931,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.73,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,2211.4,0.0,12.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,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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 2de277aad3..204804ba85 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -291,7 +291,7 @@ base-hvac-furnace-propane-only.xml,1798.62,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,1525.16,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-geothermal-loop-borefield-configuration.xml,1460.96,144.0,1316.96,0.0,1460.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-count.xml,1461.01,144.0,1317.01,0.0,1461.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-count.xml,1460.95,144.0,1316.95,0.0,1460.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-geothermal-loop-boreholes-diameter.xml,1461.18,144.0,1317.18,0.0,1461.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-geothermal-loop-boreholes-length.xml,1459.45,144.0,1315.45,0.0,1459.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-geothermal-loop-boreholes-spacing.xml,1459.17,144.0,1315.17,0.0,1459.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -315,7 +315,6 @@ base-hvac-install-quality-furnace-gas-only.xml,1493.87,144.0,1028.54,0.0,1172.54 base-hvac-install-quality-ground-to-air-heat-pump.xml,1521.26,144.0,1377.26,0.0,1521.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1276.65,144.0,1132.65,0.0,1276.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1498.26,144.0,1354.26,0.0,1498.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-library-test-case.xml,1443.42,144.0,1299.42,0.0,1443.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1255.32,144.0,1111.32,0.0,1255.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ductless.xml,1250.66,144.0,1106.66,0.0,1250.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1232.78,144.0,1088.78,0.0,1232.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 73cac55ae75b388d14ba0c29aa3d71c5a1132543 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 27 Jul 2023 10:03:36 -0700 Subject: [PATCH 082/217] Update test and avoid overwriting json keys. --- HPXMLtoOpenStudio/measure.xml | 58 ++++- .../LopU_configurations_5m_v1.0.json | 208 ++++++++++++++++++ .../resources/g_functions/util.rb | 9 +- HPXMLtoOpenStudio/tests/test_hvac.rb | 4 +- 4 files changed, 270 insertions(+), 9 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 4cd55ad75b..fa0a78a3c4 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 6f6a21ae-8c5e-4e24-96c9-bb982a8d137d - 2023-07-27T16:11:48Z + e10efba3-5ea4-40bd-b378-20d5be3b93e9 + 2023-07-27T17:03:16Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -232,7 +232,7 @@ g_functions/LopU_configurations_5m_v1.0.json json resource - F639FAC3 + B13FA813
g_functions/Open_configurations_5m_v1.0.json @@ -246,12 +246,60 @@ resource B5BEF270 + + g_functions/g-function_library_1.0/C_configurations_5m_v1.0.json + json + resource + E9E73997 + + + g_functions/g-function_library_1.0/L_configurations_5m_v1.0.json + json + resource + 1265E552 + + + g_functions/g-function_library_1.0/LibraryAccessExample.py + py + resource + C9FE5CC2 + + + g_functions/g-function_library_1.0/LopU_configurations_5m_v1.0.json + json + resource + 72B76187 + + + g_functions/g-function_library_1.0/Open_configurations_5m_v1.0.json + json + resource + BCB44A41 + + + g_functions/g-function_library_1.0/U_configurations_5m_v1.0.json + json + resource + 1620B431 + + + g_functions/g-function_library_1.0/ZRectsContained.xlsx + xlsx + resource + BA2559DF + g_functions/g-function_library_1.0/g-function_library_overview.pdf pdf resource 638C9245 + + g_functions/g-function_library_1.0/rectangle_5m_v1.0.json + json + resource + E90F30A5 + g_functions/g-function_library_1.0/zoned_rectangle_5m_v1.0.json json @@ -268,7 +316,7 @@ g_functions/util.rb rb resource - 110EEDB8 + 3C8E730B generator.rb @@ -574,7 +622,7 @@ test_hvac.rb rb test - 4C361C9C + 499463AD test_hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json index 3b998c8f01..569b31f812 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json +++ b/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json @@ -206,6 +206,214 @@ } }, "3_4": { + "2": { + "bore_locations": [ + [ + 0.0, + 0.0 + ], + [ + 5.0, + 0.0 + ], + [ + 10.0, + 0.0 + ], + [ + 10.0, + 5.0 + ], + [ + 0.0, + 15.0 + ], + [ + 0.0, + 5.0 + ], + [ + 0.0, + 10.0 + ] + ], + "g": { + "5._192._0.08": [ + 2.8351635568339573, + 3.1868598735748215, + 3.5194290681832854, + 4.021215776573264, + 4.616239622033629, + 5.580527594948293, + 6.886757925331612, + 8.102402891324095, + 9.848969549339516, + 10.914023333414947, + 11.665845238209974, + 12.70405152754737, + 13.411636254581845, + 14.971285177128056, + 16.273870495274725, + 16.628617526580097, + 16.94656632737682, + 17.255789079639893, + 17.4953605991317, + 17.700017921596878, + 17.8761581852407, + 18.02350888512317, + 18.13338184361064, + 18.258872539998166, + 18.34452835340044, + 18.38653511656617, + 18.454486098620468 + ], + "5._24._0.075": [ + 0.8740059532267965, + 1.1958031759615424, + 1.481384749141307, + 1.8198213217004346, + 2.111467924224727, + 2.4511928330881467, + 2.7884188390440294, + 3.0449438060522946, + 3.3868265705450313, + 3.6139171948981765, + 3.797008023792123, + 4.097421273811351, + 4.343420562160816, + 5.06067735236564, + 5.921512662885295, + 6.2096823959292475, + 6.491585746037957, + 6.788627405753115, + 7.035854456882252, + 7.2585781577537105, + 7.459736933149296, + 7.634937673400807, + 7.7693448917186, + 7.9266638395361575, + 8.036358297073287, + 8.090960297672977, + 8.180339759630305 + ], + "5._384._0.0875": [ + 3.488823180241217, + 4.015491627743904, + 4.644049804566187, + 5.664887785374351, + 6.828078586331115, + 8.495972601782967, + 10.40061790092734, + 11.942248115479982, + 13.937715725979558, + 15.079771443806013, + 15.864687169096046, + 16.928355427067483, + 17.64445063363839, + 19.2094088997771, + 20.510983319015434, + 20.8648924298736, + 21.18250382474677, + 21.491528964823722, + 21.731188221946866, + 21.935920431091155, + 22.11226212755728, + 22.25989607984245, + 22.36997954530051, + 22.495787152267788, + 22.58162318422042, + 22.62368864843897, + 22.691678975213264 + ], + "5._48._0.075": [ + 1.5268463243731418, + 1.8679037053125447, + 2.162243131656476, + 2.506080868699681, + 2.8001338633225847, + 3.1431647257211064, + 3.510469433833876, + 3.854662132773821, + 4.445721725047285, + 4.893415321844213, + 5.262063562931771, + 5.857431077176044, + 6.32570919204886, + 7.552126277602157, + 8.76742460372293, + 9.12457279066319, + 9.453324000199377, + 9.780401879257456, + 10.0385536408539, + 10.261605909086278, + 10.45546077978633, + 10.618775396056128, + 10.741029642541099, + 10.88089904623256, + 10.97663676170107, + 11.023727684922786, + 11.100081773956372 + ], + "5._96._0.075": [ + 2.2092619209324718, + 2.555305550299043, + 2.8518822508487425, + 3.199985852185907, + 3.5222706691873875, + 3.9979722527360244, + 4.666548991876653, + 5.360575959217437, + 6.524154888194886, + 7.335118528132172, + 7.9509318116016505, + 8.854766208963815, + 9.50103701453585, + 10.99371369513925, + 12.287660294371463, + 12.645293059709312, + 12.966761598429807, + 13.280407476715753, + 13.523883308480196, + 13.732208640752027, + 13.911643648215778, + 14.061807567222088, + 14.17384824876507, + 14.301777590719725, + 14.389179865712343, + 14.43209691027277, + 14.501625885881069 + ] + }, + "logtime": [ + -8.5, + -7.8, + -7.2, + -6.5, + -5.9, + -5.2, + -4.5, + -3.963, + -3.27, + -2.864, + -2.577, + -2.171, + -1.884, + -1.191, + -0.497, + -0.274, + -0.051, + 0.196, + 0.419, + 0.642, + 0.873, + 1.112, + 1.335, + 1.679, + 2.028, + 2.275, + 3.003 + ] + }, "1": { "bore_locations": [ [ diff --git a/HPXMLtoOpenStudio/resources/g_functions/util.rb b/HPXMLtoOpenStudio/resources/g_functions/util.rb index 18eeb89043..0b9c9a1e33 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/util.rb +++ b/HPXMLtoOpenStudio/resources/g_functions/util.rb @@ -12,6 +12,7 @@ def process_g_functions(filepath) puts "Processing #{config_json}..." json = JSON.load(file) + # the idea here is load json2 up with the "most square" m_n for each config/boreholes combo json2 = {} case config_json when 'rectangle_5m_v1.0.json' @@ -50,7 +51,7 @@ def process_g_functions(filepath) add_m_n(json, json2, 7, '3_3', '1') add_m_n(json, json2, 9, '3_4', '1') add_m_n(json, json2, 10, '4_4', '1') - when 'zoned_rectangle_5m_v1.0.json' # FIXME: are there any m_n for which num_boreholes<=10? + when 'zoned_rectangle_5m_v1.0.json' # there are none for which num_boreholes less than or equal to 10 # add_m_n(json, json2, 17, '5_5', '1_1') else fail "Unrecognized config_json: #{config_json}" @@ -81,6 +82,10 @@ def add_m_n(json, json2, expected_num_boreholes, m_n, key2 = nil) actual_num_boreholes = json[m_n][key2]['bore_locations'].size fail "#{expected_num_boreholes} vs #{actual_num_boreholes}" if expected_num_boreholes != actual_num_boreholes - json2.update({ m_n => { key2 => json[m_n][key2] } }) + if !json2[m_n].nil? + json2[m_n].update({ key2 => json[m_n][key2] }) + else + json2.update({ m_n => { key2 => json[m_n][key2] } }) + end end end diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index ed98ced425..b64b6f73b8 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -730,9 +730,9 @@ def test_geothermal_loop # Check G-Functions # Expected values - # 3_5: 2: g: 5._384._0.0875 from "LopU_configurations_5m_v1.0.json" + # 4_4: 1: g: 5._384._0.0875 from "LopU_configurations_5m_v1.0.json" lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] - gfnc_coeff = [3.490358350826967, 4.020991337431924, 4.662672415770914, 5.744820338581088, 7.036835424820224, 8.970879981106723, 11.262539992919834, 13.161918009757274, 15.65519170743656, 17.09242028149083, 18.082377421761176, 19.42410197524493, 20.327301536975842, 22.296280621945826, 23.92882543342862, 24.37208776527693, 24.76938241540891, 25.155531910712668, 25.45459596488941, 25.710007203575426, 25.929812946366734, 26.113696919837288, 26.25080162287551, 26.40743659061555, 26.514329358432732, 26.566734621647846, 26.6515015938595] + gfnc_coeff = [3.490341452425285, 4.019256693703507, 4.645242475571041, 5.663015696969794, 6.870961396281224, 8.722045952534526, 10.968017694918828, 12.850605315815251, 15.333821659373363, 16.76783249479386, 17.755971993298417, 19.095372128092308, 19.99702132365333, 21.961932120277055, 23.590345099332236, 24.032380773467327, 24.428493817447, 24.813430064076773, 25.11149023696463, 25.366028392849262, 25.58505101682981, 25.76825577351642, 25.904849535939963, 26.06088890444515, 26.16737568079158, 26.21958387181005, 26.304039577016905] gFunctions = lntts.zip(gfnc_coeff) ghx.gFunctions.each_with_index do |gFunction, i| assert_in_epsilon(gFunction.lnValue, gFunctions[i][0], 0.01) From 7e42335631a00c785fb4308e8ed69acc818872fb Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 27 Jul 2023 10:32:29 -0700 Subject: [PATCH 083/217] Consolidate borehole and filename maps, and write new test. --- HPXMLtoOpenStudio/measure.xml | 64 ++-------------------- HPXMLtoOpenStudio/resources/hvac.rb | 13 ++--- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 14 ++--- HPXMLtoOpenStudio/tests/test_hvac.rb | 19 ++++++- 4 files changed, 34 insertions(+), 76 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index fa0a78a3c4..739b8d8509 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - e10efba3-5ea4-40bd-b378-20d5be3b93e9 - 2023-07-27T17:03:16Z + 011f8f1c-98f6-4ab6-80e8-2a466400b5ca + 2023-07-27T17:31:50Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -246,60 +246,6 @@ resource B5BEF270 - - g_functions/g-function_library_1.0/C_configurations_5m_v1.0.json - json - resource - E9E73997 - - - g_functions/g-function_library_1.0/L_configurations_5m_v1.0.json - json - resource - 1265E552 - - - g_functions/g-function_library_1.0/LibraryAccessExample.py - py - resource - C9FE5CC2 - - - g_functions/g-function_library_1.0/LopU_configurations_5m_v1.0.json - json - resource - 72B76187 - - - g_functions/g-function_library_1.0/Open_configurations_5m_v1.0.json - json - resource - BCB44A41 - - - g_functions/g-function_library_1.0/U_configurations_5m_v1.0.json - json - resource - 1620B431 - - - g_functions/g-function_library_1.0/ZRectsContained.xlsx - xlsx - resource - BA2559DF - - - g_functions/g-function_library_1.0/g-function_library_overview.pdf - pdf - resource - 638C9245 - - - g_functions/g-function_library_1.0/rectangle_5m_v1.0.json - json - resource - E90F30A5 - g_functions/g-function_library_1.0/zoned_rectangle_5m_v1.0.json json @@ -376,13 +322,13 @@ hvac.rb rb resource - ECB7056E + 3BE25C2E hvac_sizing.rb rb resource - 172BF8D4 + 71E6EFE7 lighting.rb @@ -622,7 +568,7 @@ test_hvac.rb rb test - 499463AD + 3A823877 test_hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index 92ab8ab28e..a61424848d 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -3399,13 +3399,12 @@ def self.set_gshp_assumptions(heat_pump, weather) end def self.valid_borefield_configs - valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], - # HPXML::GeothermalLoopBorefieldConfigurationZonedRectangle => [], - HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => [8, 10], - HPXML::GeothermalLoopBorefieldConfigurationC => [7, 9], - HPXML::GeothermalLoopBorefieldConfigurationL => [4, 5, 6, 7, 8, 9, 10], - HPXML::GeothermalLoopBorefieldConfigurationU => [7, 9, 10], - HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => [6, 7, 8, 9, 10] } + valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => { 'num_boreholes' => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 'filename' => 'rectangle_5m_v1.0.json' }, + HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => { 'num_boreholes' => [8, 10], 'filename' => 'Open_configurations_5m_v1.0.json' }, + HPXML::GeothermalLoopBorefieldConfigurationC => { 'num_boreholes' => [7, 9], 'filename' => 'C_configurations_5m_v1.0.json' }, + HPXML::GeothermalLoopBorefieldConfigurationL => { 'num_boreholes' => [4, 5, 6, 7, 8, 9, 10], 'filename' => 'L_configurations_5m_v1.0.json' }, + HPXML::GeothermalLoopBorefieldConfigurationU => { 'num_boreholes' => [7, 9, 10], 'filename' => 'U_configurations_5m_v1.0.json' }, + HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => { 'num_boreholes' => [6, 7, 8, 9, 10], 'filename' => 'LopU_configurations_5m_v1.0.json' } } return valid_configs end diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 9c1b664299..c7d1244489 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1936,12 +1936,13 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) end valid_configs = HVAC.valid_borefield_configs - valid_num_bores = valid_configs[bore_config] + valid_num_bores = valid_configs[bore_config]['num_boreholes'] unless valid_num_bores.include? num_bore_holes fail "Number of bore holes (#{num_bore_holes}) with borefield configuration '#{bore_config}' not supported." end - lntts, gfnc_coeff = gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter) + g_functions_filename = valid_configs[bore_config]['filename'] + lntts, gfnc_coeff = gshp_gfnc_coeff(bore_config, g_functions_filename, num_bore_holes, bore_spacing, bore_depth, bore_diameter) hvac_sizing_values.GSHP_Loop_flow = loop_flow hvac_sizing_values.GSHP_Bore_Depth = bore_depth @@ -2667,15 +2668,9 @@ def self.gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, bore_dia return nom_length_heat, nom_length_cool end - def self.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter) + def self.gshp_gfnc_coeff(bore_config, g_functions_filename, num_bore_holes, bore_spacing, bore_depth, bore_diameter) require 'json' - g_functions_filename = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => 'rectangle_5m_v1.0.json', - HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => 'Open_configurations_5m_v1.0.json', - HPXML::GeothermalLoopBorefieldConfigurationC => 'C_configurations_5m_v1.0.json', - HPXML::GeothermalLoopBorefieldConfigurationL => 'L_configurations_5m_v1.0.json', - HPXML::GeothermalLoopBorefieldConfigurationU => 'U_configurations_5m_v1.0.json', - HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => 'LopU_configurations_5m_v1.0.json' }[bore_config] g_functions_filepath = File.join(File.dirname(__FILE__), 'g_functions', g_functions_filename) g_functions_json = JSON.parse(File.read(g_functions_filepath), symbolize_names: true) @@ -2750,6 +2745,7 @@ def self.get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb) return logtime, g elsif [HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle, + HPXML::GeothermalLoopBorefieldConfigurationC, HPXML::GeothermalLoopBorefieldConfigurationLopsidedU, HPXML::GeothermalLoopBorefieldConfigurationU].include?(bore_config) values_1.each do |_key_2, values_2| diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index b64b6f73b8..a9c3c91132 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -746,7 +746,9 @@ def test_g_function_library_linear_interpolation_example bore_spacing = UnitConversions.convert(7.0, 'm', 'ft') bore_depth = UnitConversions.convert(150.0, 'm', 'ft') bore_diameter = UnitConversions.convert(UnitConversions.convert(80.0, 'mm', 'm'), 'm', 'in') * 2 - actual_lntts, actual_gfnc_coeff = HVACSizing.gshp_gfnc_coeff(bore_config, num_bore_holes, bore_spacing, bore_depth, bore_diameter) + valid_configs = HVAC.valid_borefield_configs + g_functions_filename = valid_configs[bore_config]['filename'] + actual_lntts, actual_gfnc_coeff = HVACSizing.gshp_gfnc_coeff(bore_config, g_functions_filename, num_bore_holes, bore_spacing, bore_depth, bore_diameter) expected_lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] expected_gfnc_coeff = [2.619, 2.967, 3.279, 3.700, 4.190, 5.107, 6.680, 8.537, 11.991, 14.633, 16.767, 20.083, 22.593, 28.734, 34.345, 35.927, 37.342, 38.715, 39.768, 40.664, 41.426, 42.056, 42.524, 43.054, 43.416, 43.594, 43.885] @@ -759,6 +761,21 @@ def test_g_function_library_linear_interpolation_example end end + def test_all_g_function_configs_exist + require 'json' + + valid_configs = HVAC.valid_borefield_configs + valid_configs.each do |bore_config, num_boreholes_and_filename| + valid_num_bores = num_boreholes_and_filename['num_boreholes'] + g_functions_filename = num_boreholes_and_filename['filename'] + g_functions_filepath = File.join(File.dirname(__FILE__), '../resources/g_functions', g_functions_filename) + g_functions_json = JSON.parse(File.read(g_functions_filepath), symbolize_names: true) + valid_num_bores.each do |num_bore_holes| + HVACSizing.get_g_functions(g_functions_json, bore_config, num_bore_holes, '5._192._0.08') # b_h_rb is arbitrary + end + end + end + def test_shared_chiller_baseboard args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-bldgtype-multifamily-shared-chiller-only-baseboard.xml')) From 6e5f9446a46c0e9c9dc3c495261154002cefb1f4 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 27 Jul 2023 11:15:05 -0700 Subject: [PATCH 084/217] Update the changelog. [ci skip] --- Changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Changelog.md b/Changelog.md index 066ead765d..0140c2c487 100644 --- a/Changelog.md +++ b/Changelog.md @@ -8,6 +8,7 @@ __New Features__ - Adds "Peak Electricity: Annual Total (W)" output. - Adds battery resilience hours output; allows requesting timeseries output. - ReportUtilityBills measure: Allows reporting monthly utility bills in addition to (or instead of) annual bills. +- Connect to the [G-Function Library](https://gdr.openei.org/submissions/1325) (in the Geothermal Data Repository) for using precalculated g-function values with GSHP modeling. __Bugfixes__ - Fixes lighting multipliers not being applied when kWh/yr inputs are used. From b6222b9a2fa772e79588aea94753ff4f033f8367 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 27 Jul 2023 11:45:38 -0700 Subject: [PATCH 085/217] Minor update in epvalidator. [ci skip] --- HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 3bd4e36a57..d67d0aa2af 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1309,7 +1309,7 @@ Expected 0 or 1 element(s) for xpath: Pipe/ShankSpacing Expected Pipe/ShankSpacing to be greater than 0 Expected 0 or 2 element(s) for xpath: BoreholesOrTrenches/Count | extension/BorefieldConfiguration - Expected BorefieldConfiguration to be 'Rectangle' or 'Open Rectangle' or 'L' or 'U' or 'Lopsided U' + Expected BorefieldConfiguration to be 'Rectangle' or 'Open Rectangle' or 'C' or 'L' or 'U' or 'Lopsided U' From 9372edb0d41303ec4392c7411440cbf5c58fc3e3 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 27 Jul 2023 19:52:48 +0000 Subject: [PATCH 086/217] Latest results. --- workflow/tests/base_results/results_bills.csv | 872 +++++++++--------- 1 file changed, 436 insertions(+), 436 deletions(-) diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index 204804ba85..1ca41f319b 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -1,448 +1,448 @@ HPXML,Bills: Total (USD),Bills: Electricity: Fixed (USD),Bills: Electricity: Energy (USD),Bills: Electricity: PV Credit (USD),Bills: Electricity: Total (USD),Bills: Natural Gas: Fixed (USD),Bills: Natural Gas: Energy (USD),Bills: Natural Gas: Total (USD),Bills: Fuel Oil: Fixed (USD),Bills: Fuel Oil: Energy (USD),Bills: Fuel Oil: Total (USD),Bills: Propane: Fixed (USD),Bills: Propane: Energy (USD),Bills: Propane: Total (USD),Bills: Wood Cord: Fixed (USD),Bills: Wood Cord: Energy (USD),Bills: Wood Cord: Total (USD),Bills: Wood Pellets: Fixed (USD),Bills: Wood Pellets: Energy (USD),Bills: Wood Pellets: Total (USD),Bills: Coal: Fixed (USD),Bills: Coal: Energy (USD),Bills: Coal: Total (USD),Tiered: Total (USD),Tiered: Electricity: Fixed (USD),Tiered: Electricity: Energy (USD),Tiered: Electricity: PV Credit (USD),Tiered: Electricity: Total (USD),Tiered: Natural Gas: Fixed (USD),Tiered: Natural Gas: Energy (USD),Tiered: Natural Gas: Total (USD),Tiered: Fuel Oil: Fixed (USD),Tiered: Fuel Oil: Energy (USD),Tiered: Fuel Oil: Total (USD),Tiered: Propane: Fixed (USD),Tiered: Propane: Energy (USD),Tiered: Propane: Total (USD),Tiered: Wood Cord: Fixed (USD),Tiered: Wood Cord: Energy (USD),Tiered: Wood Cord: Total (USD),Tiered: Wood Pellets: Fixed (USD),Tiered: Wood Pellets: Energy (USD),Tiered: Wood Pellets: Total (USD),Tiered: Coal: Fixed (USD),Tiered: Coal: Energy (USD),Tiered: Coal: Total (USD),TOU: Total (USD),TOU: Electricity: Fixed (USD),TOU: Electricity: Energy (USD),TOU: Electricity: PV Credit (USD),TOU: Electricity: Total (USD),TOU: Natural Gas: Fixed (USD),TOU: Natural Gas: Energy (USD),TOU: Natural Gas: Total (USD),TOU: Fuel Oil: Fixed (USD),TOU: Fuel Oil: Energy (USD),TOU: Fuel Oil: Total (USD),TOU: Propane: Fixed (USD),TOU: Propane: Energy (USD),TOU: Propane: Total (USD),TOU: Wood Cord: Fixed (USD),TOU: Wood Cord: Energy (USD),TOU: Wood Cord: Total (USD),TOU: Wood Pellets: Fixed (USD),TOU: Wood Pellets: Energy (USD),TOU: Wood Pellets: Total (USD),TOU: Coal: Fixed (USD),TOU: Coal: Energy (USD),TOU: Coal: Total (USD),Tiered and TOU: Total (USD),Tiered and TOU: Electricity: Fixed (USD),Tiered and TOU: Electricity: Energy (USD),Tiered and TOU: Electricity: PV Credit (USD),Tiered and TOU: Electricity: Total (USD),Tiered and TOU: Natural Gas: Fixed (USD),Tiered and TOU: Natural Gas: Energy (USD),Tiered and TOU: Natural Gas: Total (USD),Tiered and TOU: Fuel Oil: Fixed (USD),Tiered and TOU: Fuel Oil: Energy (USD),Tiered and TOU: Fuel Oil: Total (USD),Tiered and TOU: Propane: Fixed (USD),Tiered and TOU: Propane: Energy (USD),Tiered and TOU: Propane: Total (USD),Tiered and TOU: Wood Cord: Fixed (USD),Tiered and TOU: Wood Cord: Energy (USD),Tiered and TOU: Wood Cord: Total (USD),Tiered and TOU: Wood Pellets: Fixed (USD),Tiered and TOU: Wood Pellets: Energy (USD),Tiered and TOU: Wood Pellets: Total (USD),Tiered and TOU: Coal: Fixed (USD),Tiered and TOU: Coal: Energy (USD),Tiered and TOU: Coal: Total (USD),Real-Time Pricing: Total (USD),Real-Time Pricing: Electricity: Fixed (USD),Real-Time Pricing: Electricity: Energy (USD),Real-Time Pricing: Electricity: PV Credit (USD),Real-Time Pricing: Electricity: Total (USD),Real-Time Pricing: Natural Gas: Fixed (USD),Real-Time Pricing: Natural Gas: Energy (USD),Real-Time Pricing: Natural Gas: Total (USD),Real-Time Pricing: Fuel Oil: Fixed (USD),Real-Time Pricing: Fuel Oil: Energy (USD),Real-Time Pricing: Fuel Oil: Total (USD),Real-Time Pricing: Propane: Fixed (USD),Real-Time Pricing: Propane: Energy (USD),Real-Time Pricing: Propane: Total (USD),Real-Time Pricing: Wood Cord: Fixed (USD),Real-Time Pricing: Wood Cord: Energy (USD),Real-Time Pricing: Wood Cord: Total (USD),Real-Time Pricing: Wood Pellets: Fixed (USD),Real-Time Pricing: Wood Pellets: Energy (USD),Real-Time Pricing: Wood Pellets: Total (USD),Real-Time Pricing: Coal: Fixed (USD),Real-Time Pricing: Coal: Energy (USD),Real-Time Pricing: Coal: Total (USD),Simple: Total (USD),Simple: Electricity: Fixed (USD),Simple: Electricity: Energy (USD),Simple: Electricity: PV Credit (USD),Simple: Electricity: Total (USD),Simple: Natural Gas: Fixed (USD),Simple: Natural Gas: Energy (USD),Simple: Natural Gas: Total (USD),Simple: Fuel Oil: Fixed (USD),Simple: Fuel Oil: Energy (USD),Simple: Fuel Oil: Total (USD),Simple: Propane: Fixed (USD),Simple: Propane: Energy (USD),Simple: Propane: Total (USD),Simple: Wood Cord: Fixed (USD),Simple: Wood Cord: Energy (USD),Simple: Wood Cord: Total (USD),Simple: Wood Pellets: Fixed (USD),Simple: Wood Pellets: Energy (USD),Simple: Wood Pellets: Total (USD),Simple: Coal: Fixed (USD),Simple: Coal: Energy (USD),Simple: Coal: Total (USD),Detailed: Total (USD),Detailed: Electricity: Fixed (USD),Detailed: Electricity: Energy (USD),Detailed: Electricity: PV Credit (USD),Detailed: Electricity: Total (USD),Detailed: Natural Gas: Fixed (USD),Detailed: Natural Gas: Energy (USD),Detailed: Natural Gas: Total (USD),Detailed: Fuel Oil: Fixed (USD),Detailed: Fuel Oil: Energy (USD),Detailed: Fuel Oil: Total (USD),Detailed: Propane: Fixed (USD),Detailed: Propane: Energy (USD),Detailed: Propane: Total (USD),Detailed: Wood Cord: Fixed (USD),Detailed: Wood Cord: Energy (USD),Detailed: Wood Cord: Total (USD),Detailed: Wood Pellets: Fixed (USD),Detailed: Wood Pellets: Energy (USD),Detailed: Wood Pellets: Total (USD),Detailed: Coal: Fixed (USD),Detailed: Coal: Energy (USD),Detailed: Coal: 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: Energy (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: Energy (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Total (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Wholesale Excess Rate: Propane: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Propane: Energy (USD),Net Metering w/ Wholesale Excess Rate: Propane: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Wholesale Excess Rate: Coal: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Coal: Energy (USD),Net Metering w/ Wholesale Excess Rate: Coal: 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: Energy (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: Energy (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Total (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Retail Excess Rate: Propane: Fixed (USD),Net Metering w/ Retail Excess Rate: Propane: Energy (USD),Net Metering w/ Retail Excess Rate: Propane: Total (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Total (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Retail Excess Rate: Coal: Fixed (USD),Net Metering w/ Retail Excess Rate: Coal: Energy (USD),Net Metering w/ Retail Excess Rate: Coal: Total (USD),Feed-In Tariff: Total (USD),Feed-In Tariff: Electricity: Fixed (USD),Feed-In Tariff: Electricity: Energy (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: Energy (USD),Feed-In Tariff: Natural Gas: Total (USD),Feed-In Tariff: Fuel Oil: Fixed (USD),Feed-In Tariff: Fuel Oil: Energy (USD),Feed-In Tariff: Fuel Oil: Total (USD),Feed-In Tariff: Propane: Fixed (USD),Feed-In Tariff: Propane: Energy (USD),Feed-In Tariff: Propane: Total (USD),Feed-In Tariff: Wood Cord: Fixed (USD),Feed-In Tariff: Wood Cord: Energy (USD),Feed-In Tariff: Wood Cord: Total (USD),Feed-In Tariff: Wood Pellets: Fixed (USD),Feed-In Tariff: Wood Pellets: Energy (USD),Feed-In Tariff: Wood Pellets: Total (USD),Feed-In Tariff: Coal: Fixed (USD),Feed-In Tariff: Coal: Energy (USD),Feed-In Tariff: Coal: Total (USD) -base-appliances-coal.xml,1627.17,144.0,1107.24,0.0,1251.24,144.0,158.94,302.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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1371.09,144.0,1072.11,0.0,1216.11,144.0,10.98,154.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier-ief-whole-home.xml,1372.53,144.0,1073.74,0.0,1217.74,144.0,10.79,154.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier-multiple.xml,1369.15,144.0,1069.6,0.0,1213.6,144.0,11.55,155.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier.xml,1370.33,144.0,1071.48,0.0,1215.48,144.0,10.85,154.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-gas.xml,1589.07,144.0,1107.24,0.0,1251.24,144.0,193.83,337.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-modified.xml,1675.41,144.0,1229.92,0.0,1373.92,144.0,157.49,301.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-none.xml,1410.99,144.0,945.38,0.0,1089.38,144.0,177.61,321.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-oil-location-miami-fl.xml,1718.5,144.0,1457.23,0.0,1601.23,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1676.54,144.0,1107.24,0.0,1251.24,144.0,158.94,302.94,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1489.07,144.0,886.74,0.0,1030.74,144.0,171.14,315.14,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1684.5,144.0,1107.24,0.0,1251.24,144.0,158.94,302.94,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1627.17,144.0,1107.24,0.0,1251.24,144.0,158.94,302.94,0.0,0.0,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1668.28,144.0,1191.51,0.0,1335.51,144.0,188.77,332.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-conditioned.xml,1804.63,144.0,1348.0,0.0,1492.0,144.0,168.63,312.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1599.95,144.0,1169.15,0.0,1313.15,144.0,142.8,286.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-radiant-barrier.xml,1392.12,144.0,1069.08,0.0,1213.08,144.0,35.04,179.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-unvented-insulated-roof.xml,1622.21,144.0,1174.38,0.0,1318.38,144.0,159.83,303.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-vented.xml,1636.06,144.0,1185.75,0.0,1329.75,144.0,162.31,306.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-battery-scheduled.xml,1704.83,144.0,1253.13,0.0,1397.13,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-battery.xml,1648.84,144.0,1197.14,0.0,1341.14,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-2stories.xml,1562.05,144.0,1151.78,0.0,1295.78,144.0,122.27,266.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-atticroof-cathedral.xml,1964.16,144.0,1239.87,0.0,1383.87,144.0,436.29,580.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-infil-compartmentalization-test.xml,1376.56,144.0,996.97,0.0,1140.97,144.0,91.59,235.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached.xml,1376.56,144.0,996.97,0.0,1140.97,144.0,91.59,235.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,1199.03,144.0,826.35,0.0,970.35,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1176.26,144.0,841.01,0.0,985.01,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.63,144.0,826.53,0.0,970.53,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1119.59,144.0,821.82,0.0,965.82,144.0,9.77,153.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1136.08,144.0,840.08,0.0,984.08,144.0,8.0,152.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-infil-compartmentalization-test.xml,1167.28,144.0,875.29,0.0,1019.29,144.0,3.99,147.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-residents-1.xml,916.58,144.0,619.24,0.0,763.24,144.0,9.34,153.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,1182.01,144.0,889.0,0.0,1033.0,144.0,5.01,149.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,1205.91,144.0,912.56,0.0,1056.56,144.0,5.35,149.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,1192.45,144.0,899.7,0.0,1043.7,144.0,4.75,148.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,1366.77,144.0,1074.87,0.0,1218.87,144.0,3.9,147.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1198.43,144.0,906.53,0.0,1050.53,144.0,3.9,147.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1048.54,144.0,756.37,0.0,900.37,144.0,4.17,148.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,1049.52,144.0,757.07,0.0,901.07,144.0,4.45,148.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1049.51,144.0,757.54,0.0,901.54,144.0,3.97,147.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,1052.72,144.0,761.84,0.0,905.84,144.0,2.88,146.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1049.58,144.0,757.62,0.0,901.62,144.0,3.96,147.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,1048.57,144.0,757.32,0.0,901.32,144.0,3.25,147.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,1031.42,144.0,887.42,0.0,1031.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,1054.02,144.0,910.02,0.0,1054.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1040.54,144.0,896.54,0.0,1040.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1214.92,144.0,1070.92,0.0,1214.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1047.71,144.0,903.71,0.0,1047.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-generator.xml,1545.52,144.0,873.25,0.0,1017.25,144.0,4.85,148.85,0.0,0.0,0.0,0.0,379.42,379.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,1075.22,144.0,931.22,0.0,1075.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,950.2,144.0,553.02,0.0,697.02,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,930.16,144.0,546.72,0.0,690.72,144.0,95.44,239.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,1456.89,144.0,1023.58,0.0,1167.58,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.98,144.0,910.5,0.0,1054.5,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.69,144.0,906.36,0.0,1050.36,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.97,144.0,873.25,-814.13,203.12,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,967.67,144.0,583.81,0.0,727.81,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,931.17,144.0,547.31,0.0,691.31,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1166.1,144.0,873.25,0.0,1017.25,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1219.08,144.0,713.53,0.0,857.53,144.0,217.55,361.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-combi-tankless.xml,1227.99,144.0,713.85,0.0,857.85,144.0,226.14,370.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-2-speed.xml,1213.75,144.0,1069.75,0.0,1213.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-gshp.xml,1387.12,144.0,1243.12,0.0,1387.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-hpwh.xml,1472.89,144.0,988.81,0.0,1132.81,144.0,196.08,340.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1268.63,144.0,1124.63,0.0,1268.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1189.31,144.0,1045.31,0.0,1189.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater.xml,1269.29,144.0,1125.29,0.0,1269.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1574.23,144.0,1122.53,0.0,1266.53,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-detailed-setpoints.xml,1238.92,144.0,713.47,0.0,857.47,144.0,237.45,381.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1816.09,144.0,1220.28,0.0,1364.28,144.0,234.82,378.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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1519.05,144.0,1217.36,0.0,1361.36,144.0,13.69,157.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier-ief-whole-home.xml,1520.67,144.0,1219.21,0.0,1363.21,144.0,13.46,157.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1516.92,144.0,1214.51,0.0,1358.51,144.0,14.41,158.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier.xml,1518.17,144.0,1216.64,0.0,1360.64,144.0,13.53,157.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-gas.xml,1794.65,144.0,1220.28,0.0,1364.28,144.0,286.37,430.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-modified.xml,1876.16,144.0,1355.48,0.0,1499.48,144.0,232.68,376.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-none.xml,1592.3,144.0,1041.89,0.0,1185.89,144.0,262.41,406.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-oil-location-miami-fl.xml,2019.3,144.0,1711.68,0.0,1855.68,0.0,0.0,0.0,0.0,163.62,163.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-oil.xml,1913.29,144.0,1220.28,0.0,1364.28,144.0,234.82,378.82,0.0,170.19,170.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-propane-location-portland-or.xml,1528.54,144.0,888.48,0.0,1032.48,144.0,208.88,352.88,0.0,0.0,0.0,0.0,143.18,143.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-propane.xml,1875.18,144.0,1220.28,0.0,1364.28,144.0,234.82,378.82,0.0,0.0,0.0,0.0,132.08,132.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1816.09,144.0,1220.28,0.0,1364.28,144.0,234.82,378.82,0.0,0.0,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1880.04,144.0,1313.15,0.0,1457.15,144.0,278.89,422.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-conditioned.xml,2022.76,144.0,1485.62,0.0,1629.62,144.0,249.14,393.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-flat.xml,1787.49,144.0,1288.51,0.0,1432.51,144.0,210.98,354.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-radiant-barrier.xml,1545.61,144.0,1213.91,0.0,1357.91,144.0,43.7,187.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-unvented-insulated-roof.xml,1818.41,144.0,1294.27,0.0,1438.27,144.0,236.14,380.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-vented.xml,1834.62,144.0,1306.81,0.0,1450.81,144.0,239.81,383.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-battery-scheduled.xml,1910.91,144.0,1381.06,0.0,1525.06,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-battery.xml,1849.21,144.0,1319.36,0.0,1463.36,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached-2stories.xml,1738.01,144.0,1269.36,0.0,1413.36,144.0,180.65,324.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached-atticroof-cathedral.xml,2299.05,144.0,1366.45,0.0,1510.45,144.0,644.6,788.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached-infil-compartmentalization-test.xml,1522.06,144.0,1098.74,0.0,1242.74,144.0,135.32,279.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached.xml,1522.06,144.0,1098.74,0.0,1242.74,144.0,135.32,279.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,1323.83,144.0,910.72,0.0,1054.72,144.0,125.11,269.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1284.68,144.0,926.87,0.0,1070.87,144.0,69.81,213.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,1463.52,144.0,910.91,0.0,1054.91,144.0,264.61,408.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,1208.15,144.0,905.72,0.0,1049.72,144.0,14.43,158.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,1225.66,144.0,925.84,0.0,1069.84,144.0,11.82,155.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-infil-compartmentalization-test.xml,1258.54,144.0,964.64,0.0,1108.64,144.0,5.9,149.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-residents-1.xml,984.25,144.0,682.45,0.0,826.45,144.0,13.8,157.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,1275.16,144.0,979.76,0.0,1123.76,144.0,7.4,151.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,1301.63,144.0,1005.73,0.0,1149.73,144.0,7.9,151.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1286.56,144.0,991.55,0.0,1135.55,144.0,7.01,151.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,1478.36,144.0,1184.6,0.0,1328.6,144.0,5.76,149.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1292.84,144.0,999.08,0.0,1143.08,144.0,5.76,149.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,1127.74,144.0,833.58,0.0,977.58,144.0,6.16,150.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,1128.93,144.0,834.35,0.0,978.35,144.0,6.58,150.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1128.75,144.0,834.88,0.0,978.88,144.0,5.87,149.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,1131.88,144.0,839.62,0.0,983.62,144.0,4.26,148.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,1128.8,144.0,834.96,0.0,978.96,144.0,5.84,149.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,1127.44,144.0,834.64,0.0,978.64,144.0,4.8,148.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,1122.01,144.0,978.01,0.0,1122.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,1146.92,144.0,1002.92,0.0,1146.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1132.06,144.0,988.06,0.0,1132.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1324.25,144.0,1180.25,0.0,1324.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1139.97,144.0,995.97,0.0,1139.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-generator.xml,1642.11,144.0,962.4,0.0,1106.4,144.0,7.16,151.16,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1170.29,144.0,1026.29,0.0,1170.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1058.78,144.0,609.48,0.0,753.48,144.0,161.3,305.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-laundry-room.xml,1031.55,144.0,602.54,0.0,746.54,144.0,141.01,285.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-mechvent-multiple.xml,1630.77,144.0,1128.08,0.0,1272.08,144.0,214.69,358.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,1348.3,144.0,1003.45,0.0,1147.45,144.0,56.85,200.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-mechvent.xml,1327.28,144.0,998.89,0.0,1142.89,144.0,40.39,184.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-pv.xml,360.31,144.0,962.4,-897.25,209.15,144.0,7.16,151.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-water-heater-recirc.xml,1073.03,144.0,643.41,0.0,787.41,144.0,141.62,285.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-water-heater.xml,1032.81,144.0,603.19,0.0,747.19,144.0,141.62,285.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily.xml,1257.56,144.0,962.4,0.0,1106.4,144.0,7.16,151.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-combi-tankless-outside.xml,1395.79,144.0,786.38,0.0,930.38,144.0,321.41,465.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-combi-tankless.xml,1408.85,144.0,786.73,0.0,930.73,144.0,334.12,478.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-2-speed.xml,1322.95,144.0,1178.95,0.0,1322.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-gshp.xml,1514.03,144.0,1370.03,0.0,1514.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-hpwh.xml,1667.45,144.0,1089.75,0.0,1233.75,144.0,289.7,433.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-tankless.xml,1383.44,144.0,1239.44,0.0,1383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-var-speed.xml,1296.03,144.0,1152.03,0.0,1296.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater.xml,1384.17,144.0,1240.17,0.0,1384.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-dwhr.xml,1766.98,144.0,1237.13,0.0,1381.13,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-detailed-setpoints.xml,1425.13,144.0,786.31,0.0,930.31,144.0,350.82,494.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-indirect-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1250.17,144.0,713.53,0.0,857.53,144.0,248.64,392.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-standbyloss.xml,1241.58,144.0,713.42,0.0,857.42,144.0,240.16,384.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-with-solar-fraction.xml,1183.34,144.0,713.72,0.0,857.72,144.0,181.62,325.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect.xml,1239.94,144.0,713.48,0.0,857.48,144.0,238.46,382.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1639.53,144.0,1186.27,0.0,1330.27,144.0,165.26,309.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-gas.xml,1454.77,144.0,895.43,0.0,1039.43,144.0,271.34,415.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-hpwh.xml,1468.51,144.0,984.36,0.0,1128.36,144.0,196.15,340.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1238.54,144.0,713.54,0.0,857.54,144.0,237.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1636.59,144.0,1184.89,0.0,1328.89,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-multiple.xml,1238.92,144.0,778.47,0.0,922.47,144.0,172.45,316.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1268.92,144.0,817.45,0.0,961.45,144.0,163.47,307.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-demand.xml,1647.16,144.0,1195.46,0.0,1339.46,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-manual.xml,1632.95,144.0,1181.25,0.0,1325.25,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-nocontrol.xml,2145.0,144.0,1693.3,0.0,1837.3,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-temperature.xml,1981.48,144.0,1529.78,0.0,1673.78,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-timer.xml,2145.0,144.0,1693.3,0.0,1837.3,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-direct-evacuated-tube.xml,1454.01,144.0,1002.31,0.0,1146.31,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-direct-flat-plate.xml,1404.96,144.0,953.33,0.0,1097.33,144.0,163.63,307.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1455.94,144.0,1004.24,0.0,1148.24,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-fraction.xml,1451.24,144.0,997.59,0.0,1141.59,144.0,165.65,309.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-indirect-flat-plate.xml,1405.3,144.0,956.21,0.0,1100.21,144.0,161.09,305.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-thermosyphon-flat-plate.xml,1395.68,144.0,944.05,0.0,1088.05,144.0,163.63,307.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1582.54,144.0,897.21,0.0,1041.21,144.0,165.27,309.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,232.06,232.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-detailed-setpoints.xml,1648.43,144.0,1196.78,0.0,1340.78,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1651.08,144.0,1199.76,0.0,1343.76,144.0,163.32,307.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas-outside.xml,1468.19,144.0,890.11,0.0,1034.11,144.0,290.08,434.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1458.1,144.0,895.96,0.0,1039.96,144.0,274.14,418.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas-uef.xml,1458.1,144.0,895.96,0.0,1039.96,144.0,274.14,418.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas.xml,1461.41,144.0,897.21,0.0,1041.21,144.0,276.2,420.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1445.56,144.0,955.58,0.0,1099.58,144.0,201.98,345.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1440.05,144.0,949.81,0.0,1093.81,144.0,202.24,346.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-outside.xml,1572.0,144.0,1117.3,0.0,1261.3,144.0,166.7,310.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-uef.xml,1440.05,144.0,949.81,0.0,1093.81,144.0,202.24,346.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,1391.2,144.0,926.56,0.0,1070.56,144.0,176.64,320.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-with-solar.xml,1404.14,144.0,947.2,0.0,1091.2,144.0,168.94,312.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump.xml,1472.61,144.0,989.0,0.0,1133.0,144.0,195.61,339.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1643.65,144.0,1185.12,0.0,1329.12,144.0,170.53,314.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-model-type-stratified.xml,1635.5,144.0,1181.26,0.0,1325.26,144.0,166.24,310.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-oil.xml,1739.51,144.0,897.21,0.0,1041.21,144.0,165.27,309.27,0.0,389.03,389.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-wood.xml,1582.54,144.0,897.21,0.0,1041.21,144.0,165.27,309.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,232.06,232.06,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-detailed-setpoints.xml,1426.31,144.0,890.11,0.0,1034.11,144.0,248.2,392.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1658.99,144.0,1204.29,0.0,1348.29,144.0,166.7,310.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-electric-uef.xml,1655.44,144.0,1200.74,0.0,1344.74,144.0,166.7,310.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-electric.xml,1658.99,144.0,1204.29,0.0,1348.29,144.0,166.7,310.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas-uef.xml,1415.29,144.0,890.11,0.0,1034.11,144.0,237.18,381.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas-with-solar-fraction.xml,1373.39,144.0,890.11,0.0,1034.11,144.0,195.28,339.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas-with-solar.xml,1368.28,144.0,904.42,0.0,1048.42,144.0,175.86,319.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas.xml,1426.48,144.0,890.11,0.0,1034.11,144.0,248.37,392.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-propane.xml,1649.87,144.0,890.11,0.0,1034.11,144.0,166.7,310.7,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1832.39,144.0,1361.24,0.0,1505.24,144.0,183.15,327.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1976.86,144.0,1471.25,0.0,1615.25,144.0,217.61,361.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-1.xml,1483.82,144.0,1017.73,0.0,1161.73,144.0,178.09,322.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-2.xml,1567.5,144.0,1108.62,0.0,1252.62,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1729.09,144.0,1284.5,0.0,1428.5,144.0,156.59,300.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-5.xml,1808.87,144.0,1371.31,0.0,1515.31,144.0,149.56,293.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-ceilingtypes.xml,1778.25,144.0,1214.66,0.0,1358.66,144.0,275.59,419.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-floortypes.xml,1540.13,144.0,977.57,0.0,1121.57,144.0,274.56,418.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-garage.xml,1616.06,144.0,1152.66,0.0,1296.66,144.0,175.4,319.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-ach-house-pressure.xml,1648.72,144.0,1197.14,0.0,1341.14,144.0,163.58,307.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-cfm-house-pressure.xml,1648.72,144.0,1197.14,0.0,1341.14,144.0,163.58,307.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-cfm50.xml,1648.84,144.0,1197.14,0.0,1341.14,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-ela.xml,1704.0,144.0,1197.66,0.0,1341.66,144.0,218.34,362.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-flue.xml,1658.98,144.0,1197.12,0.0,1341.12,144.0,173.86,317.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-natural-ach.xml,1704.0,144.0,1197.66,0.0,1341.66,144.0,218.34,362.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-natural-cfm.xml,1704.0,144.0,1197.66,0.0,1341.66,144.0,218.34,362.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-orientations.xml,1649.83,144.0,1196.34,0.0,1340.34,144.0,165.49,309.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-overhangs.xml,1647.39,144.0,1192.41,0.0,1336.41,144.0,166.98,310.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-rooftypes.xml,1644.01,144.0,1191.68,0.0,1335.68,144.0,164.33,308.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1695.49,144.0,1233.73,0.0,1377.73,144.0,173.76,317.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-skylights-shading.xml,1672.7,144.0,1225.25,0.0,1369.25,144.0,159.45,303.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1672.11,144.0,1222.24,0.0,1366.24,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1672.92,144.0,1225.57,0.0,1369.57,144.0,159.35,303.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-split-level.xml,1349.64,144.0,980.57,0.0,1124.57,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1646.24,144.0,1195.61,0.0,1339.61,144.0,162.63,306.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1734.86,144.0,1158.33,0.0,1302.33,144.0,288.53,432.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-natural-ventilation-availability.xml,1616.71,144.0,1164.5,0.0,1308.5,144.0,164.21,308.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-none.xml,1599.11,144.0,1132.77,0.0,1276.77,144.0,178.34,322.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-physical-properties.xml,1707.89,144.0,1201.04,0.0,1345.04,144.0,218.85,362.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-shading-seasons.xml,1647.37,144.0,1197.54,0.0,1341.54,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1590.69,144.0,1118.71,0.0,1262.71,144.0,183.98,327.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-storms.xml,1640.51,144.0,1177.87,0.0,1321.87,144.0,174.64,318.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-ambient.xml,1423.58,144.0,1008.51,0.0,1152.51,144.0,127.07,271.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-basement-garage.xml,1521.03,144.0,1087.91,0.0,1231.91,144.0,145.12,289.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-belly-wing-no-skirt.xml,1413.73,144.0,980.54,0.0,1124.54,144.0,145.19,289.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-belly-wing-skirt.xml,1411.27,144.0,980.81,0.0,1124.81,144.0,142.46,286.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1821.66,144.0,1240.82,0.0,1384.82,144.0,292.84,436.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-basement-slab-insulation-full.xml,1643.45,144.0,1214.88,0.0,1358.88,144.0,140.57,284.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-basement-slab-insulation.xml,1646.2,144.0,1204.03,0.0,1348.03,144.0,154.17,298.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-basement-wall-insulation.xml,1627.83,144.0,1181.78,0.0,1325.78,144.0,158.05,302.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-crawlspace.xml,1384.2,144.0,963.85,0.0,1107.85,144.0,132.35,276.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-multiple.xml,1370.68,144.0,989.24,0.0,1133.24,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1340.08,144.0,975.68,0.0,1119.68,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1383.1,144.0,994.09,0.0,1138.09,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1347.53,144.0,973.83,0.0,1117.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1395.49,144.0,964.12,0.0,1108.12,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1372.03,144.0,990.24,0.0,1134.24,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1358.78,144.0,993.41,0.0,1137.41,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1371.34,144.0,991.63,0.0,1135.63,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1701.98,144.0,1209.74,0.0,1353.74,144.0,204.24,348.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,1670.47,144.0,1526.47,0.0,1670.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1303.23,144.0,1159.23,0.0,1303.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1670.47,144.0,1526.47,0.0,1670.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1547.29,144.0,1403.29,0.0,1547.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1668.66,144.0,1524.66,0.0,1668.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1672.47,144.0,1528.47,0.0,1672.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed.xml,1670.47,144.0,1526.47,0.0,1670.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-2-speed.xml,1519.16,144.0,1375.16,0.0,1519.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1680.7,144.0,1285.89,0.0,1429.89,144.0,106.81,250.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1674.99,144.0,1247.53,0.0,1391.53,144.0,139.46,283.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-temperature2.xml,1674.99,144.0,1247.53,0.0,1391.53,144.0,139.46,283.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1683.88,144.0,1289.04,0.0,1433.04,144.0,106.84,250.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1688.7,144.0,1294.63,0.0,1438.63,144.0,106.07,250.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed.xml,1510.26,144.0,1366.26,0.0,1510.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,1320.61,144.0,1176.61,0.0,1320.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,1564.11,144.0,1420.11,0.0,1564.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1739.17,144.0,1595.17,0.0,1739.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1680.66,144.0,1536.66,0.0,1680.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml,1729.62,144.0,1585.62,0.0,1729.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1632.49,144.0,1488.49,0.0,1632.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,1566.45,144.0,1422.45,0.0,1566.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1527.79,144.0,1383.79,0.0,1527.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,1494.14,144.0,1350.14,0.0,1494.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,1637.92,144.0,1252.76,0.0,1396.76,144.0,97.16,241.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,1666.86,144.0,1259.61,0.0,1403.61,144.0,119.25,263.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,1537.76,144.0,1393.76,0.0,1537.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,1514.58,144.0,1370.58,0.0,1514.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,1505.93,144.0,1361.93,0.0,1505.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-elec-only.xml,1749.18,144.0,1605.18,0.0,1749.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,1636.63,144.0,1213.11,0.0,1357.11,144.0,135.52,279.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-gas-only.xml,1442.55,144.0,1020.39,0.0,1164.39,144.0,134.16,278.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-central-ac-only-1-speed.xml,1346.5,144.0,1202.5,0.0,1346.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-central-ac-only-2-speed.xml,1290.52,144.0,1146.52,0.0,1290.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-central-ac-only-var-speed.xml,1268.22,144.0,1124.22,0.0,1268.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,1760.35,144.0,1616.35,0.0,1760.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,1764.11,144.0,1363.77,0.0,1507.77,144.0,112.34,256.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1749.22,144.0,1355.5,0.0,1499.5,144.0,105.72,249.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1749.22,144.0,1355.5,0.0,1499.5,144.0,105.72,249.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,1567.7,144.0,1196.15,0.0,1340.15,144.0,83.55,227.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,1567.7,144.0,1196.15,0.0,1340.15,144.0,83.55,227.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-elec-resistance-only.xml,1704.68,144.0,1560.68,0.0,1704.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-evap-cooler-furnace-gas.xml,1529.14,144.0,1067.09,0.0,1211.09,144.0,174.05,318.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-floor-furnace-propane-only.xml,1742.99,144.0,1012.95,0.0,1156.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,586.04,586.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-elec-only.xml,1929.1,144.0,1785.1,0.0,1929.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,1619.51,144.0,1161.37,0.0,1305.37,144.0,170.14,314.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1597.69,144.0,1139.69,0.0,1283.69,144.0,170.0,314.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1494.06,144.0,1033.73,0.0,1177.73,144.0,172.33,316.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1664.97,144.0,1202.92,0.0,1346.92,144.0,174.05,318.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1284.48,144.0,1140.48,0.0,1284.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1369.24,144.0,1225.24,0.0,1369.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1473.81,144.0,1329.81,0.0,1473.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1460.47,144.0,1316.47,0.0,1460.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1460.47,144.0,1316.47,0.0,1460.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,1265.67,144.0,1121.67,0.0,1265.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,1241.94,144.0,1097.94,0.0,1241.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,1362.58,144.0,1218.58,0.0,1362.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,1462.81,144.0,1318.81,0.0,1462.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,1439.72,144.0,1295.72,0.0,1439.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,1422.81,144.0,1278.81,0.0,1422.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,1401.09,144.0,1257.09,0.0,1401.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,1639.81,144.0,1185.98,0.0,1329.98,0.0,0.0,0.0,0.0,309.83,309.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ptac-with-heating.xml,1844.65,144.0,1700.65,0.0,1844.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ptac.xml,1289.24,144.0,1145.24,0.0,1289.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,1528.19,144.0,1384.19,0.0,1528.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,1532.66,144.0,1388.66,0.0,1532.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,1550.34,144.0,1406.34,0.0,1550.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-only.xml,1322.9,144.0,1178.9,0.0,1322.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-with-heating.xml,1879.23,144.0,1735.23,0.0,1879.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,1528.19,144.0,1384.19,0.0,1528.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,1532.66,144.0,1388.66,0.0,1532.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,1550.34,144.0,1406.34,0.0,1550.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-sizing-controls.xml,1764.99,144.0,1429.0,0.0,1573.0,144.0,47.99,191.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-stove-oil-only.xml,1707.39,144.0,1016.3,0.0,1160.3,0.0,0.0,0.0,0.0,547.09,547.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-wall-furnace-elec-only.xml,1715.84,144.0,1571.84,0.0,1715.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize.xml,1664.46,144.0,1206.05,0.0,1350.05,144.0,170.41,314.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-coal-only.xml,1456.33,144.0,1021.0,0.0,1165.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,291.33,291.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1771.72,144.0,1627.72,0.0,1771.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-gas-central-ac-1-speed.xml,1633.46,144.0,1204.14,0.0,1348.14,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-gas-only-pilot.xml,1481.48,144.0,1017.84,0.0,1161.84,144.0,175.64,319.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-gas-only.xml,1445.74,144.0,1017.84,0.0,1161.84,144.0,139.9,283.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1653.4,144.0,1021.0,0.0,1165.0,0.0,0.0,0.0,0.0,488.4,488.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-propane-only.xml,1684.23,144.0,1017.11,0.0,1161.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,523.12,523.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-wood-only.xml,1454.09,144.0,1017.11,0.0,1161.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,292.98,292.98,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-only-1-speed-seer2.xml,1339.68,144.0,1195.68,0.0,1339.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-only-1-speed.xml,1340.19,144.0,1196.19,0.0,1340.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-only-2-speed.xml,1285.57,144.0,1141.57,0.0,1285.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-only-var-speed.xml,1262.52,144.0,1118.52,0.0,1262.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1737.03,144.0,1593.03,0.0,1737.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-crankcase-heater-40w.xml,1644.1,144.0,1192.4,0.0,1336.4,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-outside.xml,1441.74,144.0,786.38,0.0,930.38,144.0,367.36,511.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-standbyloss.xml,1429.08,144.0,786.25,0.0,930.25,144.0,354.83,498.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-with-solar-fraction.xml,1342.92,144.0,786.59,0.0,930.59,144.0,268.33,412.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1426.64,144.0,786.32,0.0,930.32,144.0,352.32,496.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-jacket-electric.xml,1839.54,144.0,1307.37,0.0,1451.37,144.0,244.17,388.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-jacket-gas.xml,1675.73,144.0,986.84,0.0,1130.84,144.0,400.89,544.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-jacket-hpwh.xml,1662.66,144.0,1084.85,0.0,1228.85,144.0,289.81,433.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-jacket-indirect.xml,1424.54,144.0,786.38,0.0,930.38,144.0,350.16,494.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-low-flow-fixtures.xml,1835.7,144.0,1305.85,0.0,1449.85,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-multiple.xml,1400.72,144.0,857.94,0.0,1001.94,144.0,254.78,398.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-none.xml,1430.42,144.0,900.9,0.0,1044.9,144.0,241.52,385.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-demand.xml,1847.35,144.0,1317.5,0.0,1461.5,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-manual.xml,1831.69,144.0,1301.84,0.0,1445.84,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-nocontrol.xml,2396.02,144.0,1866.17,0.0,2010.17,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-temperature.xml,2215.8,144.0,1685.95,0.0,1829.95,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-timer.xml,2396.02,144.0,1866.17,0.0,2010.17,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-direct-evacuated-tube.xml,1634.48,144.0,1104.63,0.0,1248.63,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-direct-flat-plate.xml,1580.41,144.0,1050.65,0.0,1194.65,144.0,241.76,385.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-direct-ics.xml,1636.62,144.0,1106.77,0.0,1250.77,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-fraction.xml,1632.17,144.0,1099.43,0.0,1243.43,144.0,244.74,388.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1579.84,144.0,1053.83,0.0,1197.83,144.0,238.01,382.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-thermosyphon-flat-plate.xml,1570.19,144.0,1040.43,0.0,1184.43,144.0,241.76,385.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-coal.xml,1753.04,144.0,988.8,0.0,1132.8,144.0,244.18,388.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,232.06,232.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-detailed-setpoints.xml,1848.75,144.0,1318.96,0.0,1462.96,144.0,241.79,385.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-elec-uef.xml,1851.54,144.0,1322.24,0.0,1466.24,144.0,241.3,385.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-gas-outside.xml,1697.56,144.0,980.98,0.0,1124.98,144.0,428.58,572.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-gas-uef-fhr.xml,1680.46,144.0,987.43,0.0,1131.43,144.0,405.03,549.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-gas-uef.xml,1680.46,144.0,987.43,0.0,1131.43,144.0,405.03,549.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-gas.xml,1684.87,144.0,988.8,0.0,1132.8,144.0,408.07,552.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-detailed-schedules.xml,1639.54,144.0,1053.13,0.0,1197.13,144.0,298.41,442.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1633.58,144.0,1046.78,0.0,1190.78,144.0,298.8,442.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-outside.xml,1765.65,144.0,1231.36,0.0,1375.36,144.0,246.29,390.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1633.58,144.0,1046.78,0.0,1190.78,144.0,298.8,442.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,1570.13,144.0,1021.15,0.0,1165.15,144.0,260.98,404.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-with-solar.xml,1581.5,144.0,1043.9,0.0,1187.9,144.0,249.6,393.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump.xml,1666.96,144.0,1089.96,0.0,1233.96,144.0,289.0,433.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1846.05,144.0,1306.1,0.0,1450.1,144.0,251.95,395.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-model-type-stratified.xml,1835.46,144.0,1301.85,0.0,1445.85,144.0,245.61,389.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-oil.xml,2062.05,144.0,988.8,0.0,1132.8,144.0,244.18,388.18,0.0,541.07,541.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-wood.xml,1753.04,144.0,988.8,0.0,1132.8,144.0,244.18,388.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,232.06,232.06,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-detailed-setpoints.xml,1635.68,144.0,980.98,0.0,1124.98,144.0,366.7,510.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-electric-outside.xml,1861.52,144.0,1327.23,0.0,1471.23,144.0,246.29,390.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1857.61,144.0,1323.32,0.0,1467.32,144.0,246.29,390.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1861.52,144.0,1327.23,0.0,1471.23,144.0,246.29,390.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1619.4,144.0,980.98,0.0,1124.98,144.0,350.42,494.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-gas-with-solar-fraction.xml,1557.5,144.0,980.98,0.0,1124.98,144.0,288.52,432.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-gas-with-solar.xml,1544.57,144.0,996.75,0.0,1140.75,144.0,259.82,403.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-gas.xml,1635.93,144.0,980.98,0.0,1124.98,144.0,366.95,510.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-propane.xml,1824.45,144.0,980.98,0.0,1124.98,144.0,246.29,390.29,0.0,0.0,0.0,0.0,309.18,309.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-2stories-garage.xml,2058.81,144.0,1500.21,0.0,1644.21,144.0,270.6,414.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-2stories.xml,2230.95,144.0,1621.44,0.0,1765.44,144.0,321.51,465.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-beds-1.xml,1672.75,144.0,1121.63,0.0,1265.63,144.0,263.12,407.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-beds-2.xml,1762.25,144.0,1221.79,0.0,1365.79,144.0,252.46,396.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1934.98,144.0,1415.63,0.0,1559.63,144.0,231.35,375.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-beds-5.xml,2020.27,144.0,1511.3,0.0,1655.3,144.0,220.97,364.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-ceilingtypes.xml,2033.84,144.0,1338.67,0.0,1482.67,144.0,407.17,551.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-floortypes.xml,1771.01,144.0,1077.37,0.0,1221.37,144.0,405.64,549.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-garage.xml,1817.48,144.0,1270.33,0.0,1414.33,144.0,259.15,403.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1849.04,144.0,1319.36,0.0,1463.36,144.0,241.68,385.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-cfm-house-pressure.xml,1849.04,144.0,1319.36,0.0,1463.36,144.0,241.68,385.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-cfm50.xml,1849.21,144.0,1319.36,0.0,1463.36,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-ela.xml,1930.51,144.0,1319.93,0.0,1463.93,144.0,322.58,466.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-flue.xml,1864.21,144.0,1319.33,0.0,1463.33,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1930.51,144.0,1319.93,0.0,1463.93,144.0,322.58,466.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-natural-cfm.xml,1930.51,144.0,1319.93,0.0,1463.93,144.0,322.58,466.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-orientations.xml,1850.98,144.0,1318.48,0.0,1462.48,144.0,244.5,388.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-overhangs.xml,1848.85,144.0,1314.14,0.0,1458.14,144.0,246.71,390.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-rooftypes.xml,1844.12,144.0,1313.33,0.0,1457.33,144.0,242.79,386.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-skylights-physical-properties.xml,1904.39,144.0,1359.67,0.0,1503.67,144.0,256.72,400.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-skylights-shading.xml,1873.92,144.0,1350.34,0.0,1494.34,144.0,235.58,379.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-skylights-storms.xml,1874.16,144.0,1347.01,0.0,1491.01,144.0,239.15,383.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1874.12,144.0,1350.69,0.0,1494.69,144.0,235.43,379.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-split-level.xml,1488.46,144.0,1080.68,0.0,1224.68,144.0,119.78,263.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-thermal-mass.xml,1845.95,144.0,1317.67,0.0,1461.67,144.0,240.28,384.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-walltypes.xml,1990.86,144.0,1276.58,0.0,1420.58,144.0,426.28,570.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-natural-ventilation-availability.xml,1813.99,144.0,1283.38,0.0,1427.38,144.0,242.61,386.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-none.xml,1799.9,144.0,1248.41,0.0,1392.41,144.0,263.49,407.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-physical-properties.xml,1934.99,144.0,1323.65,0.0,1467.65,144.0,323.34,467.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-shading-seasons.xml,1846.89,144.0,1319.8,0.0,1463.8,144.0,239.09,383.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-shading.xml,1792.75,144.0,1232.92,0.0,1376.92,144.0,271.83,415.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-storms.xml,1844.13,144.0,1298.11,0.0,1442.11,144.0,258.02,402.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-ambient.xml,1587.2,144.0,1111.47,0.0,1255.47,144.0,187.73,331.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1701.38,144.0,1198.97,0.0,1342.97,144.0,214.41,358.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-belly-wing-no-skirt.xml,1583.15,144.0,1080.64,0.0,1224.64,144.0,214.51,358.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-belly-wing-skirt.xml,1579.42,144.0,1080.94,0.0,1224.94,144.0,210.48,354.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-complex.xml,2088.15,144.0,1367.49,0.0,1511.49,144.0,432.66,576.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-basement-slab-insulation-full.xml,1834.58,144.0,1338.9,0.0,1482.9,144.0,207.68,351.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-basement-slab-insulation.xml,1842.73,144.0,1326.95,0.0,1470.95,144.0,227.78,371.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-basement-wall-insulation.xml,1823.93,144.0,1302.43,0.0,1446.43,144.0,233.5,377.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-crawlspace.xml,1545.79,144.0,1062.24,0.0,1206.24,144.0,195.55,339.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-multiple.xml,1516.28,144.0,1090.23,0.0,1234.23,144.0,138.05,282.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-slab.xml,1476.16,144.0,1075.28,0.0,1219.28,144.0,112.88,256.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1532.82,144.0,1095.58,0.0,1239.58,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1487.86,144.0,1073.24,0.0,1217.24,144.0,126.62,270.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement-wall-insulation.xml,1562.38,144.0,1062.55,0.0,1206.55,144.0,211.83,355.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement.xml,1517.9,144.0,1091.33,0.0,1235.33,144.0,138.57,282.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unvented-crawlspace.xml,1497.14,144.0,1094.83,0.0,1238.83,144.0,114.31,258.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-vented-crawlspace.xml,1516.37,144.0,1092.87,0.0,1236.87,144.0,135.5,279.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-walkout-basement.xml,1923.01,144.0,1333.25,0.0,1477.25,144.0,301.76,445.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,1826.3,144.0,1682.3,0.0,1826.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1421.57,144.0,1277.57,0.0,1421.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1826.3,144.0,1682.3,0.0,1826.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1690.55,144.0,1546.55,0.0,1690.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1824.31,144.0,1680.31,0.0,1824.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1828.51,144.0,1684.51,0.0,1828.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed.xml,1826.3,144.0,1682.3,0.0,1826.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-2-speed.xml,1659.55,144.0,1515.55,0.0,1659.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1862.97,144.0,1417.17,0.0,1561.17,144.0,157.8,301.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1868.94,144.0,1374.89,0.0,1518.89,144.0,206.05,350.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,1868.94,144.0,1374.89,0.0,1518.89,144.0,206.05,350.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1866.48,144.0,1420.64,0.0,1564.64,144.0,157.84,301.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1871.5,144.0,1426.79,0.0,1570.79,144.0,156.71,300.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed.xml,1649.73,144.0,1505.73,0.0,1649.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1440.72,144.0,1296.72,0.0,1440.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,1709.08,144.0,1565.08,0.0,1709.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1902.02,144.0,1758.02,0.0,1902.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1837.53,144.0,1693.53,0.0,1837.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml,2006.49,144.0,1862.49,0.0,2006.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1784.45,144.0,1640.45,0.0,1784.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1711.66,144.0,1567.66,0.0,1711.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,1669.06,144.0,1525.06,0.0,1669.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,1631.98,144.0,1487.98,0.0,1631.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,1812.2,144.0,1380.65,0.0,1524.65,144.0,143.55,287.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,1852.39,144.0,1388.2,0.0,1532.2,144.0,176.19,320.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,1680.04,144.0,1536.04,0.0,1680.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,1654.5,144.0,1510.5,0.0,1654.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,1644.96,144.0,1500.96,0.0,1644.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-boiler-elec-only.xml,1913.05,144.0,1769.05,0.0,1913.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,1825.19,144.0,1336.96,0.0,1480.96,144.0,200.23,344.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-boiler-gas-only.xml,1610.78,144.0,1124.56,0.0,1268.56,144.0,198.22,342.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-central-ac-only-1-speed.xml,1469.27,144.0,1325.27,0.0,1469.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-central-ac-only-2-speed.xml,1407.57,144.0,1263.57,0.0,1407.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-central-ac-only-var-speed.xml,1382.99,144.0,1238.99,0.0,1382.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,1925.36,144.0,1781.36,0.0,1925.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,1956.98,144.0,1503.0,0.0,1647.0,144.0,165.98,309.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1938.08,144.0,1493.88,0.0,1637.88,144.0,156.2,300.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1938.08,144.0,1493.88,0.0,1637.88,144.0,156.2,300.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-backup-hardsized.xml,1729.72,144.0,1318.27,0.0,1462.27,144.0,123.45,267.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1729.72,144.0,1318.27,0.0,1462.27,144.0,123.45,267.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1864.01,144.0,1720.01,0.0,1864.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-evap-cooler-furnace-gas.xml,1721.18,144.0,1176.02,0.0,1320.02,144.0,257.16,401.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-floor-furnace-propane-only.xml,1854.32,144.0,1116.36,0.0,1260.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,593.96,593.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-furnace-elec-only.xml,2111.33,144.0,1967.33,0.0,2111.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1819.3,144.0,1279.93,0.0,1423.93,144.0,251.37,395.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1795.21,144.0,1256.04,0.0,1400.04,144.0,251.17,395.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-furnace-gas-only.xml,1681.87,144.0,1139.26,0.0,1283.26,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-furnace-gas-room-ac.xml,1870.89,144.0,1325.73,0.0,1469.73,144.0,257.16,401.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1400.91,144.0,1256.91,0.0,1400.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1494.32,144.0,1350.32,0.0,1494.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1609.57,144.0,1465.57,0.0,1609.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1594.86,144.0,1450.86,0.0,1594.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1594.86,144.0,1450.86,0.0,1594.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,1380.18,144.0,1236.18,0.0,1380.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,1354.02,144.0,1210.02,0.0,1354.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,1486.98,144.0,1342.98,0.0,1486.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,1597.45,144.0,1453.45,0.0,1597.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1572.0,144.0,1428.0,0.0,1572.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1553.36,144.0,1409.36,0.0,1553.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,1529.43,144.0,1385.43,0.0,1529.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,1881.97,144.0,1307.05,0.0,1451.05,0.0,0.0,0.0,0.0,430.92,430.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ptac-with-heating.xml,2018.27,144.0,1874.27,0.0,2018.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ptac.xml,1406.16,144.0,1262.16,0.0,1406.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-pthp-sizing-methodology-acca.xml,1669.5,144.0,1525.5,0.0,1669.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-pthp-sizing-methodology-hers.xml,1674.42,144.0,1530.42,0.0,1674.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-pthp-sizing-methodology-maxload.xml,1693.91,144.0,1549.91,0.0,1693.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-room-ac-only.xml,1443.25,144.0,1299.25,0.0,1443.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-room-ac-with-heating.xml,2056.38,144.0,1912.38,0.0,2056.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,1669.5,144.0,1525.5,0.0,1669.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,1674.42,144.0,1530.42,0.0,1674.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,1693.91,144.0,1549.91,0.0,1693.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-sizing-controls.xml,1933.78,144.0,1574.88,0.0,1718.88,144.0,70.9,214.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2024.96,144.0,1120.05,0.0,1264.05,0.0,0.0,0.0,0.0,760.91,760.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-wall-furnace-elec-only.xml,1876.31,144.0,1732.31,0.0,1876.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize.xml,1868.95,144.0,1329.18,0.0,1473.18,144.0,251.77,395.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-coal-only.xml,1560.56,144.0,1125.23,0.0,1269.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,291.33,291.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1937.89,144.0,1793.89,0.0,1937.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-gas-central-ac-1-speed.xml,1823.87,144.0,1327.07,0.0,1471.07,144.0,208.8,352.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-gas-only-pilot.xml,1669.25,144.0,1121.75,0.0,1265.75,144.0,259.5,403.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-gas-only.xml,1616.44,144.0,1121.75,0.0,1265.75,144.0,206.69,350.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-oil-only.xml,1948.51,144.0,1125.23,0.0,1269.23,0.0,0.0,0.0,0.0,679.28,679.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-propane-only.xml,1795.13,144.0,1120.94,0.0,1264.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,530.19,530.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-wood-only.xml,1557.92,144.0,1120.94,0.0,1264.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,292.98,292.98,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-central-ac-only-1-speed-seer2.xml,1461.74,144.0,1317.74,0.0,1461.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1462.31,144.0,1318.31,0.0,1462.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-central-ac-only-2-speed.xml,1402.11,144.0,1258.11,0.0,1402.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1376.7,144.0,1232.7,0.0,1376.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1899.66,144.0,1755.66,0.0,1899.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-crankcase-heater-40w.xml,1843.98,144.0,1314.13,0.0,1458.13,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1754.74,144.0,1389.81,0.0,1533.81,144.0,76.93,220.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1747.95,144.0,1355.73,0.0,1499.73,144.0,104.22,248.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1644.43,144.0,1249.33,0.0,1393.33,144.0,107.1,251.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1653.51,144.0,1260.92,0.0,1404.92,144.0,104.59,248.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1573.19,144.0,1204.46,0.0,1348.46,144.0,80.73,224.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2176.63,144.0,1550.68,0.0,1694.68,144.0,337.95,481.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-area-multipliers.xml,1639.89,144.0,1192.9,0.0,1336.9,144.0,158.99,302.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-buried.xml,1621.6,144.0,1184.86,0.0,1328.86,144.0,148.74,292.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-defaults.xml,1745.17,144.0,1353.05,0.0,1497.05,144.0,104.12,248.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-effective-rvalue.xml,1648.79,144.0,1197.12,0.0,1341.12,144.0,163.67,307.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-leakage-cfm50.xml,1641.72,144.0,1193.4,0.0,1337.4,144.0,160.32,304.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-leakage-percent.xml,1662.89,144.0,1203.75,0.0,1347.75,144.0,171.14,315.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-elec-resistance-only.xml,1704.68,144.0,1560.68,0.0,1704.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-evap-cooler-furnace-gas.xml,1517.24,144.0,1061.15,0.0,1205.15,144.0,168.09,312.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-evap-cooler-only-ducted.xml,1188.39,144.0,1044.39,0.0,1188.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-evap-cooler-only.xml,1185.61,144.0,1041.61,0.0,1185.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-fireplace-wood-only.xml,1485.17,144.0,1012.95,0.0,1156.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,328.22,328.22,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,1875.95,144.0,1012.95,0.0,1156.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,719.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1742.99,144.0,1012.95,0.0,1156.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,586.04,586.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-coal-only.xml,1525.16,144.0,1033.01,0.0,1177.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,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2040.6,144.0,1896.6,0.0,2040.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-elec-only.xml,1902.59,144.0,1758.59,0.0,1902.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-central-ac-2-speed.xml,1605.2,144.0,1153.5,0.0,1297.5,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-central-ac-var-speed.xml,1583.36,144.0,1131.67,0.0,1275.67,144.0,163.69,307.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,1364.02,144.0,1020.91,0.0,1164.91,144.0,55.11,199.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only-pilot.xml,1522.56,144.0,1033.01,0.0,1177.01,144.0,201.55,345.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only.xml,1487.42,144.0,1033.01,0.0,1177.01,144.0,166.41,310.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-room-ac.xml,1668.06,144.0,1211.97,0.0,1355.97,144.0,168.09,312.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-oil-only.xml,1760.65,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,583.64,583.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-propane-only.xml,1798.62,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,621.61,621.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-wood-only.xml,1525.16,144.0,1033.01,0.0,1177.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1933.35,144.0,1531.69,0.0,1675.69,144.0,113.66,257.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1936.13,144.0,1494.14,0.0,1638.14,144.0,153.99,297.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1823.1,144.0,1376.87,0.0,1520.87,144.0,158.23,302.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1832.17,144.0,1389.65,0.0,1533.65,144.0,154.52,298.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1734.7,144.0,1327.43,0.0,1471.43,144.0,119.27,263.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-area-fractions.xml,2496.29,144.0,1708.98,0.0,1852.98,144.0,499.31,643.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-area-multipliers.xml,1837.6,144.0,1314.69,0.0,1458.69,144.0,234.91,378.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-buried.xml,1813.57,144.0,1305.82,0.0,1449.82,144.0,219.75,363.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-defaults.xml,1933.02,144.0,1491.18,0.0,1635.18,144.0,153.84,297.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-effective-rvalue.xml,1849.14,144.0,1319.33,0.0,1463.33,144.0,241.81,385.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-leakage-cfm50.xml,1840.1,144.0,1315.23,0.0,1459.23,144.0,236.87,380.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-leakage-percent.xml,1867.49,144.0,1326.64,0.0,1470.64,144.0,252.85,396.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1864.01,144.0,1720.01,0.0,1864.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-evap-cooler-furnace-gas.xml,1705.82,144.0,1169.48,0.0,1313.48,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1295.01,144.0,1151.01,0.0,1295.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-evap-cooler-only.xml,1291.95,144.0,1147.95,0.0,1291.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-fireplace-wood-only.xml,1588.58,144.0,1116.36,0.0,1260.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,328.22,328.22,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-floor-furnace-propane-only-pilot-light.xml,1989.07,144.0,1116.36,0.0,1260.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,728.71,728.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-floor-furnace-propane-only.xml,1854.32,144.0,1116.36,0.0,1260.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,593.96,593.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-coal-only.xml,1630.62,144.0,1138.47,0.0,1282.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,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2234.22,144.0,2090.22,0.0,2234.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-elec-only.xml,2082.12,144.0,1938.12,0.0,2082.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-central-ac-2-speed.xml,1801.11,144.0,1271.26,0.0,1415.26,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-central-ac-var-speed.xml,1777.05,144.0,1247.2,0.0,1391.2,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,1494.56,144.0,1125.13,0.0,1269.13,144.0,81.43,225.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-only-pilot.xml,1724.25,144.0,1138.47,0.0,1282.47,144.0,297.78,441.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-only.xml,1672.34,144.0,1138.47,0.0,1282.47,144.0,245.87,389.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-room-ac.xml,1872.04,144.0,1335.7,0.0,1479.7,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2094.22,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,811.75,811.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-propane-only.xml,1912.48,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,630.01,630.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-wood-only.xml,1630.62,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-borefield-configuration.xml,1460.96,144.0,1316.96,0.0,1460.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-count.xml,1460.95,144.0,1316.95,0.0,1460.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-diameter.xml,1461.18,144.0,1317.18,0.0,1461.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-length.xml,1459.45,144.0,1315.45,0.0,1459.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-spacing.xml,1459.17,144.0,1315.17,0.0,1459.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-ground-diffusivity.xml,1461.51,144.0,1317.51,0.0,1461.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-grout-conductivity.xml,1461.1,144.0,1317.1,0.0,1461.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-loop-flow.xml,1461.54,144.0,1317.54,0.0,1461.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-conductivity.xml,1460.78,144.0,1316.78,0.0,1460.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-diameter.xml,1460.68,144.0,1316.68,0.0,1460.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-shank-spacing.xml,1459.75,144.0,1315.75,0.0,1459.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop.xml,1445.4,144.0,1301.4,0.0,1445.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1269.38,144.0,1125.38,0.0,1269.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1364.23,144.0,1220.23,0.0,1364.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1460.76,144.0,1316.76,0.0,1460.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1774.69,144.0,1630.69,0.0,1774.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1604.26,144.0,1460.26,0.0,1604.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1587.1,144.0,1443.1,0.0,1587.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1683.26,144.0,1222.93,0.0,1366.93,144.0,172.33,316.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1632.51,144.0,1172.18,0.0,1316.18,144.0,172.33,316.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1611.04,144.0,1150.71,0.0,1294.71,144.0,172.33,316.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1493.87,144.0,1028.54,0.0,1172.54,144.0,177.33,321.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1521.26,144.0,1377.26,0.0,1521.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1276.65,144.0,1132.65,0.0,1276.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1498.26,144.0,1354.26,0.0,1498.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,1255.32,144.0,1111.32,0.0,1255.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,1250.66,144.0,1106.66,0.0,1250.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1232.78,144.0,1088.78,0.0,1232.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1347.36,144.0,1203.36,0.0,1347.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted.xml,1425.35,144.0,1281.35,0.0,1425.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1411.48,144.0,1267.48,0.0,1411.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1546.3,144.0,1193.18,0.0,1337.18,144.0,65.12,209.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1540.19,144.0,1187.77,0.0,1331.77,144.0,64.42,208.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1639.43,144.0,1184.52,0.0,1328.52,0.0,0.0,0.0,0.0,310.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1397.25,144.0,1253.25,0.0,1397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless.xml,1397.25,144.0,1253.25,0.0,1397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-multiple.xml,2255.33,144.0,1727.0,0.0,1871.0,144.0,51.3,195.3,0.0,90.5,90.5,0.0,98.53,98.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-none.xml,1959.67,144.0,1815.67,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac-with-heating-electricity.xml,1852.42,144.0,1708.42,0.0,1852.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac-with-heating-natural-gas.xml,1592.0,144.0,1155.08,0.0,1299.08,144.0,148.92,292.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac.xml,1296.73,144.0,1152.73,0.0,1296.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-pthp-heating-capacity-17f.xml,1542.37,144.0,1398.37,0.0,1542.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-pthp.xml,1542.37,144.0,1398.37,0.0,1542.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only-33percent.xml,1219.49,144.0,1075.49,0.0,1219.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only-ceer.xml,1332.65,144.0,1188.65,0.0,1332.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only-detailed-setpoints.xml,1291.08,144.0,1147.08,0.0,1291.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.32,144.0,1188.32,0.0,1332.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-with-heating.xml,1889.01,144.0,1745.01,0.0,1889.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-with-reverse-cycle.xml,1542.37,144.0,1398.37,0.0,1542.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-seasons.xml,1646.17,144.0,1195.7,0.0,1339.7,144.0,162.47,306.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints-daily-schedules.xml,1624.03,144.0,1176.79,0.0,1320.79,144.0,159.24,303.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints-daily-setbacks.xml,1623.73,144.0,1181.79,0.0,1325.79,144.0,153.94,297.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints.xml,1477.87,144.0,1136.02,0.0,1280.02,144.0,53.85,197.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-space-heater-gas-only.xml,1418.86,144.0,1012.92,0.0,1156.92,144.0,117.94,261.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-stove-oil-only.xml,1707.32,144.0,1015.15,0.0,1159.15,0.0,0.0,0.0,0.0,548.17,548.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-stove-wood-pellets-only.xml,1486.14,144.0,1015.15,0.0,1159.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,326.99,326.99,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,1619.27,144.0,1183.13,0.0,1327.13,144.0,148.14,292.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-undersized.xml,1503.12,144.0,1103.54,0.0,1247.54,144.0,111.58,255.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-wall-furnace-elec-only.xml,1715.84,144.0,1571.84,0.0,1715.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-ceiling-fans.xml,1661.61,144.0,1210.06,0.0,1354.06,144.0,163.55,307.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-holiday.xml,1655.48,144.0,1203.78,0.0,1347.78,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-kwh-per-year.xml,1755.1,144.0,1317.13,0.0,1461.13,144.0,149.97,293.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-mixed.xml,1654.75,144.0,1203.05,0.0,1347.05,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-none-ceiling-fans.xml,1508.7,144.0,1037.09,0.0,1181.09,144.0,183.61,327.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-none.xml,1495.84,144.0,1024.08,0.0,1168.08,144.0,183.76,327.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-AMY-2012.xml,1682.17,144.0,1160.86,0.0,1304.86,144.0,233.31,377.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-baltimore-md.xml,1439.98,144.0,1050.43,0.0,1194.43,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-borefield-configuration.xml,1595.41,144.0,1451.41,0.0,1595.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-count.xml,1595.39,144.0,1451.39,0.0,1595.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-diameter.xml,1595.65,144.0,1451.65,0.0,1595.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-length.xml,1593.74,144.0,1449.74,0.0,1593.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-boreholes-spacing.xml,1593.44,144.0,1449.44,0.0,1593.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-ground-diffusivity.xml,1596.01,144.0,1452.01,0.0,1596.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-grout-conductivity.xml,1595.56,144.0,1451.56,0.0,1595.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-loop-flow.xml,1596.04,144.0,1452.04,0.0,1596.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-conductivity.xml,1595.21,144.0,1451.21,0.0,1595.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-diameter.xml,1595.1,144.0,1451.1,0.0,1595.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop-pipe-shank-spacing.xml,1594.07,144.0,1450.07,0.0,1594.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop.xml,1578.26,144.0,1434.26,0.0,1578.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1384.27,144.0,1240.27,0.0,1384.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1488.8,144.0,1344.8,0.0,1488.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump.xml,1595.19,144.0,1451.19,0.0,1595.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1941.16,144.0,1797.16,0.0,1941.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1753.34,144.0,1609.34,0.0,1753.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1734.42,144.0,1590.42,0.0,1734.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1890.39,144.0,1347.78,0.0,1491.78,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1834.46,144.0,1291.85,0.0,1435.85,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1810.78,144.0,1268.18,0.0,1412.18,144.0,254.6,398.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-only.xml,1683.54,144.0,1133.54,0.0,1277.54,144.0,262.0,406.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1661.86,144.0,1517.86,0.0,1661.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1392.28,144.0,1248.28,0.0,1392.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1636.52,144.0,1492.52,0.0,1636.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,1368.78,144.0,1224.78,0.0,1368.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,1363.63,144.0,1219.63,0.0,1363.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1343.93,144.0,1199.93,0.0,1343.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1470.2,144.0,1326.2,0.0,1470.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1556.16,144.0,1412.16,0.0,1556.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1540.87,144.0,1396.87,0.0,1540.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1699.19,144.0,1314.99,0.0,1458.99,144.0,96.2,240.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1692.21,144.0,1309.03,0.0,1453.03,144.0,95.18,239.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1881.87,144.0,1305.44,0.0,1449.44,0.0,0.0,0.0,0.0,432.43,432.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1525.19,144.0,1381.19,0.0,1525.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless.xml,1525.19,144.0,1381.19,0.0,1525.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-multiple.xml,2492.82,144.0,1903.3,0.0,2047.3,144.0,75.79,219.79,0.0,125.87,125.87,0.0,99.86,99.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-none.xml,2521.91,144.0,2377.91,0.0,2521.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ptac-with-heating-electricity.xml,2026.83,144.0,1882.83,0.0,2026.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ptac-with-heating-natural-gas.xml,1781.03,144.0,1273.0,0.0,1417.0,144.0,220.03,364.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ptac.xml,1414.41,144.0,1270.41,0.0,1414.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-pthp-heating-capacity-17f.xml,1685.12,144.0,1541.12,0.0,1685.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-pthp.xml,1685.12,144.0,1541.12,0.0,1685.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-only-33percent.xml,1329.29,144.0,1185.29,0.0,1329.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1454.0,144.0,1310.0,0.0,1454.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1408.18,144.0,1264.18,0.0,1408.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-only.xml,1453.64,144.0,1309.64,0.0,1453.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-with-heating.xml,2067.15,144.0,1923.15,0.0,2067.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-with-reverse-cycle.xml,1685.12,144.0,1541.12,0.0,1685.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-seasons.xml,1845.82,144.0,1317.77,0.0,1461.77,144.0,240.05,384.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-setpoints-daily-schedules.xml,1820.2,144.0,1296.93,0.0,1440.93,144.0,235.27,379.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-setpoints-daily-setbacks.xml,1817.87,144.0,1302.44,0.0,1446.44,144.0,227.43,371.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-setpoints.xml,1619.55,144.0,1251.99,0.0,1395.99,144.0,79.56,223.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-space-heater-gas-only.xml,1578.57,144.0,1116.33,0.0,1260.33,144.0,174.24,318.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-stove-oil-only.xml,2025.2,144.0,1118.79,0.0,1262.79,0.0,0.0,0.0,0.0,762.41,762.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-stove-wood-pellets-only.xml,1589.78,144.0,1118.79,0.0,1262.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,326.99,326.99,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,1810.78,144.0,1303.91,0.0,1447.91,144.0,218.87,362.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-undersized.xml,1669.06,144.0,1216.2,0.0,1360.2,144.0,164.86,308.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-wall-furnace-elec-only.xml,1876.31,144.0,1732.31,0.0,1876.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-ceiling-fans.xml,1863.24,144.0,1333.6,0.0,1477.6,144.0,241.64,385.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-holiday.xml,1856.52,144.0,1326.67,0.0,1470.67,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-kwh-per-year.xml,1961.17,144.0,1451.6,0.0,1595.6,144.0,221.57,365.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-mixed.xml,1855.72,144.0,1325.87,0.0,1469.87,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-none-ceiling-fans.xml,1702.23,144.0,1142.96,0.0,1286.96,144.0,271.27,415.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-none.xml,1688.12,144.0,1128.62,0.0,1272.62,144.0,271.5,415.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-AMY-2012.xml,1912.09,144.0,1279.38,0.0,1423.38,144.0,344.71,488.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-baltimore-md.xml,1592.96,144.0,1170.52,0.0,1314.52,144.0,134.44,278.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-location-capetown-zaf.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-dallas-tx.xml,1353.05,144.0,1050.38,0.0,1194.38,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.83,144.0,1043.28,0.0,1187.28,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1596.01,144.0,1016.95,0.0,1160.95,144.0,291.06,435.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-honolulu-hi.xml,3474.08,144.0,3330.08,0.0,3474.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1277.33,144.0,1133.33,0.0,1277.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1578.17,144.0,1290.16,0.0,1434.16,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1190.77,144.0,822.45,0.0,966.45,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1850.66,144.0,1258.54,0.0,1402.54,144.0,304.12,448.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-bath-kitchen-fans.xml,1664.05,144.0,1200.21,0.0,1344.21,144.0,175.84,319.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-airflow-fraction-zero.xml,1800.16,144.0,1255.13,0.0,1399.13,144.0,257.03,401.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-dallas-tx.xml,1498.98,144.0,1192.68,0.0,1336.68,144.0,18.3,162.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-duluth-mn.xml,1706.42,144.0,1107.87,0.0,1251.87,144.0,310.55,454.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-helena-mt.xml,1673.32,144.0,1029.37,0.0,1173.37,144.0,355.95,499.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-honolulu-hi.xml,4505.28,144.0,4361.28,0.0,4505.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-miami-fl.xml,1475.23,144.0,1331.23,0.0,1475.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-phoenix-az.xml,1631.1,144.0,1343.09,0.0,1487.09,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1210.09,144.0,824.06,0.0,968.06,144.0,98.03,242.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-balanced.xml,2124.34,144.0,1387.02,0.0,1531.02,144.0,449.32,593.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-bath-kitchen-fans.xml,1870.53,144.0,1322.74,0.0,1466.74,144.0,259.79,403.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-airflow-fraction-zero.xml,2051.02,144.0,1383.27,0.0,1527.27,144.0,379.75,523.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-mechvent-cfis-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-evap-cooler-only-ducted.xml,1281.24,144.0,1137.24,0.0,1281.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,1744.87,144.0,1210.36,0.0,1354.36,144.0,246.51,390.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-supplemental-fan-supply.xml,1761.08,144.0,1211.33,0.0,1355.33,144.0,261.75,405.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis.xml,1806.81,144.0,1252.9,0.0,1396.9,144.0,265.91,409.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-erv-atre-asre.xml,1746.69,144.0,1259.32,0.0,1403.32,144.0,199.37,343.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-erv.xml,1746.72,144.0,1259.32,0.0,1403.32,144.0,199.4,343.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-exhaust-rated-flow-rate.xml,1782.9,144.0,1225.02,0.0,1369.02,144.0,269.88,413.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1782.9,144.0,1225.02,0.0,1369.02,144.0,269.88,413.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1746.79,144.0,1259.43,0.0,1403.43,144.0,199.36,343.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-hrv.xml,1746.81,144.0,1259.43,0.0,1403.43,144.0,199.38,343.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-multiple.xml,1871.86,144.0,1274.34,0.0,1418.34,144.0,309.52,453.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-supply.xml,1774.58,144.0,1227.41,0.0,1371.41,144.0,259.17,403.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-whole-house-fan.xml,1595.78,144.0,1142.79,0.0,1286.79,144.0,164.99,308.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-additional-properties.xml,1648.84,144.0,1197.14,0.0,1341.14,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-evap-cooler-only-ducted.xml,1397.34,144.0,1253.34,0.0,1397.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,1986.14,144.0,1333.93,0.0,1477.93,144.0,364.21,508.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-supplemental-fan-supply.xml,2009.71,144.0,1334.99,0.0,1478.99,144.0,386.72,530.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis.xml,2061.67,144.0,1380.8,0.0,1524.8,144.0,392.87,536.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-erv-atre-asre.xml,1970.46,144.0,1387.89,0.0,1531.89,144.0,294.57,438.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-erv.xml,1970.5,144.0,1387.89,0.0,1531.89,144.0,294.61,438.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-exhaust-rated-flow-rate.xml,2036.81,144.0,1350.08,0.0,1494.08,144.0,398.73,542.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2036.81,144.0,1350.08,0.0,1494.08,144.0,398.73,542.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1970.55,144.0,1388.01,0.0,1532.01,144.0,294.54,438.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-hrv.xml,1970.59,144.0,1388.01,0.0,1532.01,144.0,294.58,438.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-multiple.xml,2149.74,144.0,1404.44,0.0,1548.44,144.0,457.3,601.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-supply.xml,2023.63,144.0,1352.71,0.0,1496.71,144.0,382.92,526.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-whole-house-fan.xml,1791.22,144.0,1259.46,0.0,1403.46,144.0,243.76,387.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1849.21,144.0,1319.36,0.0,1463.36,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv-detailed-only.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,688.56,108.0,1261.65,-988.78,380.86,144.0,163.7,307.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,607.26,108.0,783.24,-591.68,299.56,144.0,163.7,307.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,604.02,108.0,751.38,-563.06,296.32,144.0,163.7,307.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,567.68,108.0,707.18,-555.2,259.98,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv-mixed.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,753.5,144.0,1197.14,-895.34,445.8,144.0,163.7,307.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,688.56,108.0,1261.65,-988.78,380.86,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-bills-pv-detailed-only.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,766.71,108.0,1261.65,-988.78,380.86,144.0,241.85,385.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,685.41,108.0,783.24,-591.68,299.56,144.0,241.85,385.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,682.17,108.0,751.38,-563.06,296.32,144.0,241.85,385.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,645.83,108.0,707.18,-555.2,259.98,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-bills-pv-mixed.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,862.47,144.0,1319.36,-986.74,476.62,144.0,241.85,385.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,766.71,108.0,1261.65,-988.78,380.86,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-bills-pv.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629.51,465.0,1264.29,-1482.92,246.37,132.0,251.14,383.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,98.55,465.0,1264.29,-2013.87,-284.59,132.0,251.14,383.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,-324.27,210.0,1264.29,-2181.7,-707.41,132.0,251.14,383.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-misc-bills.xml,1803.43,144.0,1264.29,0.0,1408.29,144.0,251.14,395.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-defaults.xml,920.8,144.0,1048.47,-647.6,544.87,144.0,231.93,375.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-emissions.xml,779.45,144.0,1222.99,-895.24,471.75,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators-battery-scheduled.xml,1979.51,144.0,1253.13,0.0,1397.13,144.0,224.64,368.64,0.0,213.74,213.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators-battery.xml,1923.52,144.0,1197.14,0.0,1341.14,144.0,224.64,368.64,0.0,213.74,213.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1923.52,144.0,1197.14,0.0,1341.14,144.0,224.64,368.64,0.0,213.74,213.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1630.12,144.0,1194.48,0.0,1338.48,144.0,147.64,291.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-loads-large-uncommon.xml,3218.63,144.0,2277.73,0.0,2421.73,144.0,503.53,647.53,0.0,0.0,0.0,0.0,66.93,66.93,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2738.09,144.0,2159.54,0.0,2303.54,144.0,145.27,289.27,0.0,62.84,62.84,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1317.81,144.0,822.91,0.0,966.91,144.0,206.9,350.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,1148.64,144.0,854.3,0.0,998.3,144.0,6.34,150.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-neighbor-shading.xml,1660.76,144.0,1186.14,0.0,1330.14,144.0,186.62,330.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-shielding-of-home.xml,1649.98,144.0,1201.76,0.0,1345.76,144.0,160.22,304.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-usage-multiplier.xml,2605.29,144.0,1690.79,0.0,1834.79,144.0,492.06,636.06,0.0,0.0,0.0,0.0,60.24,60.24,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,779.45,144.0,1222.99,-895.24,471.75,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-garage.xml,748.55,144.0,1180.31,-895.23,429.07,144.0,175.48,319.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-round-trip-efficiency.xml,817.09,144.0,1260.64,-895.25,509.39,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-scheduled.xml,810.2,144.0,1253.13,-894.63,502.5,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery.xml,779.45,144.0,1222.99,-895.24,471.75,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators-battery-scheduled.xml,812.18,144.0,1253.13,-1167.33,229.8,144.0,224.64,368.64,0.0,213.74,213.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators-battery.xml,782.26,144.0,1223.82,-1167.94,199.88,144.0,224.64,368.64,0.0,213.74,213.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators.xml,755.48,144.0,1197.14,-1168.04,173.1,144.0,224.64,368.64,0.0,213.74,213.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,753.5,144.0,1197.14,-895.34,445.8,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-0-runperiod-1-month.xml,98.66,12.0,14.35,0.0,26.35,12.0,60.31,72.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-0.xml,778.4,144.0,241.7,0.0,385.7,144.0,248.7,392.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1-misc-loads-large-uncommon.xml,2467.6,144.0,1731.43,0.0,1875.43,144.0,298.84,442.84,0.0,0.0,0.0,0.0,69.87,69.87,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1-misc-loads-large-uncommon2.xml,2248.99,144.0,1650.65,0.0,1794.65,144.0,165.28,309.28,0.0,65.6,65.6,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1.xml,1411.62,144.0,944.7,0.0,1088.7,144.0,178.92,322.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-5.xml,1162.01,144.0,1332.86,-674.31,802.55,144.0,215.46,359.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1664.99,144.0,1205.26,0.0,1349.26,144.0,171.73,315.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-mixed-timesteps-power-outage.xml,1278.07,144.0,954.36,0.0,1098.36,144.0,35.71,179.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-mixed-timesteps.xml,1492.68,144.0,1145.29,0.0,1289.29,144.0,59.39,203.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,1658.69,144.0,1202.52,0.0,1346.52,144.0,168.17,312.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,1401.49,144.0,1007.48,0.0,1151.48,144.0,106.01,250.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,778.4,144.0,241.7,0.0,385.7,144.0,248.7,392.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,1511.38,144.0,1027.18,0.0,1171.18,144.0,196.2,340.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1657.06,144.0,1201.07,0.0,1345.07,144.0,167.99,311.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints-daily-schedules.xml,1624.03,144.0,1176.79,0.0,1320.79,144.0,159.24,303.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints-daily-setbacks.xml,1623.73,144.0,1181.79,0.0,1325.79,144.0,153.94,297.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints.xml,1477.87,144.0,1136.02,0.0,1280.02,144.0,53.85,197.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage-natvent-available.xml,1533.43,144.0,1081.55,0.0,1225.55,144.0,163.88,307.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage-natvent-unavailable.xml,1539.0,144.0,1087.35,0.0,1231.35,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage.xml,1536.04,144.0,1083.28,0.0,1227.28,144.0,164.76,308.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-vacancy-year-round.xml,778.4,144.0,241.7,0.0,385.7,144.0,248.7,392.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-vacancy.xml,1503.04,144.0,1020.12,0.0,1164.12,144.0,194.92,338.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple.xml,1651.01,144.0,1198.33,0.0,1342.33,144.0,164.68,308.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-calendar-year-custom.xml,1647.89,144.0,1196.15,0.0,1340.15,144.0,163.74,307.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1648.84,144.0,1197.14,0.0,1341.14,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-daylight-saving-disabled.xml,1648.21,144.0,1196.61,0.0,1340.61,144.0,163.6,307.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-runperiod-1-month.xml,167.65,12.0,97.13,0.0,109.13,12.0,46.52,58.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-temperature-capacitance-multiplier.xml,1645.31,144.0,1193.65,0.0,1337.65,144.0,163.66,307.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1664.97,144.0,1205.13,0.0,1349.13,144.0,171.84,315.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1664.17,144.0,1204.83,0.0,1348.83,144.0,171.34,315.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins.xml,1656.03,144.0,1200.87,0.0,1344.87,144.0,167.16,311.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-30-mins.xml,1653.1,144.0,1199.19,0.0,1343.19,144.0,165.91,309.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base.xml,1648.84,144.0,1197.14,0.0,1341.14,144.0,163.7,307.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-defaults.xml,1072.46,144.0,1155.51,-713.71,585.8,144.0,342.66,486.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-emissions.xml,891.06,144.0,1347.84,-986.63,505.21,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators-battery-scheduled.xml,2298.24,144.0,1381.06,0.0,1525.06,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators-battery.xml,2236.54,144.0,1319.36,0.0,1463.36,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators.xml,2236.54,144.0,1319.36,0.0,1463.36,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-ground-conductivity.xml,1822.54,144.0,1316.42,0.0,1460.42,144.0,218.12,362.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-loads-large-uncommon.xml,3692.47,144.0,2510.26,0.0,2654.26,144.0,743.94,887.94,0.0,0.0,0.0,0.0,67.83,67.83,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3052.47,144.0,2380.0,0.0,2524.0,144.0,214.63,358.63,0.0,87.4,87.4,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1500.61,144.0,906.92,0.0,1050.92,144.0,305.69,449.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-neighbor-shading-bldgtype-multifamily.xml,1238.88,144.0,941.51,0.0,1085.51,144.0,9.37,153.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-neighbor-shading.xml,1870.95,144.0,1307.23,0.0,1451.23,144.0,275.72,419.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-shielding-of-home.xml,1849.15,144.0,1324.44,0.0,1468.44,144.0,236.71,380.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-usage-multiplier.xml,3013.64,144.0,1863.4,0.0,2007.4,144.0,726.99,870.99,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,891.06,144.0,1347.84,-986.63,505.21,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-garage.xml,861.45,144.0,1300.8,-986.62,458.18,144.0,259.27,403.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-round-trip-efficiency.xml,932.54,144.0,1389.33,-986.64,546.69,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-scheduled.xml,924.95,144.0,1381.06,-985.96,539.1,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery.xml,891.06,144.0,1347.84,-986.63,505.21,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators-battery-scheduled.xml,1011.74,144.0,1381.06,-1286.5,238.56,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators-battery.xml,978.76,144.0,1348.76,-1287.18,205.58,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators.xml,949.25,144.0,1319.36,-1287.29,176.07,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv.xml,862.47,144.0,1319.36,-986.74,476.62,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-0-runperiod-1-month.xml,128.93,12.0,15.82,0.0,27.82,12.0,89.11,101.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-0.xml,921.81,144.0,266.37,0.0,410.37,144.0,367.44,511.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-1-misc-loads-large-uncommon.xml,2787.99,144.0,1908.19,0.0,2052.19,144.0,441.53,585.53,0.0,0.0,0.0,0.0,70.81,70.81,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-1-misc-loads-large-uncommon2.xml,2522.05,144.0,1819.16,0.0,1963.16,144.0,244.19,388.19,0.0,91.24,91.24,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-1.xml,1593.48,144.0,1041.14,0.0,1185.14,144.0,264.34,408.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-5.xml,1332.11,144.0,1468.92,-743.15,869.78,144.0,318.33,462.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1870.03,144.0,1328.3,0.0,1472.3,144.0,253.73,397.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,1392.56,144.0,1051.79,0.0,1195.79,144.0,52.77,196.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-mixed-timesteps.xml,1637.97,144.0,1262.22,0.0,1406.22,144.0,87.75,231.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,1861.75,144.0,1325.29,0.0,1469.29,144.0,248.46,392.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,1554.97,144.0,1110.34,0.0,1254.34,144.0,156.63,300.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-year-round.xml,921.81,144.0,266.37,0.0,410.37,144.0,367.44,511.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,1709.92,144.0,1132.04,0.0,1276.04,144.0,289.88,433.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1859.89,144.0,1323.69,0.0,1467.69,144.0,248.2,392.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-setpoints-daily-schedules.xml,1820.19,144.0,1296.92,0.0,1440.92,144.0,235.27,379.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-setpoints-daily-setbacks.xml,1817.86,144.0,1302.43,0.0,1446.43,144.0,227.43,371.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-setpoints.xml,1619.55,144.0,1251.99,0.0,1395.99,144.0,79.56,223.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-power-outage-natvent-available.xml,1722.08,144.0,1191.96,0.0,1335.96,144.0,242.12,386.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-power-outage-natvent-unavailable.xml,1728.15,144.0,1198.36,0.0,1342.36,144.0,241.79,385.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-power-outage.xml,1725.3,144.0,1193.87,0.0,1337.87,144.0,243.43,387.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-vacancy-year-round.xml,921.81,144.0,266.37,0.0,410.37,144.0,367.44,511.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-vacancy.xml,1700.25,144.0,1124.26,0.0,1268.26,144.0,287.99,431.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple.xml,1851.98,144.0,1320.67,0.0,1464.67,144.0,243.31,387.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-calendar-year-custom.xml,1848.18,144.0,1318.26,0.0,1462.26,144.0,241.92,385.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-daylight-saving-custom.xml,1849.22,144.0,1319.36,0.0,1463.36,144.0,241.86,385.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-daylight-saving-disabled.xml,1848.48,144.0,1318.77,0.0,1462.77,144.0,241.71,385.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-runperiod-1-month.xml,199.77,12.0,107.04,0.0,119.04,12.0,68.73,80.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-temperature-capacitance-multiplier.xml,1845.31,144.0,1315.51,0.0,1459.51,144.0,241.8,385.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1870.05,144.0,1328.16,0.0,1472.16,144.0,253.89,397.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1868.97,144.0,1327.83,0.0,1471.83,144.0,253.14,397.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins.xml,1858.43,144.0,1323.46,0.0,1467.46,144.0,246.97,390.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-30-mins.xml,1854.74,144.0,1321.61,0.0,1465.61,144.0,245.13,389.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base.xml,1849.21,144.0,1319.36,0.0,1463.36,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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 806ba6a9548f936714d8de16d29128e1245bc49f Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 1 Aug 2023 14:41:34 -0700 Subject: [PATCH 087/217] Update the frac_glycol assumed value to 0.2. --- HPXMLtoOpenStudio/measure.xml | 12 +++--------- HPXMLtoOpenStudio/resources/hvac.rb | 2 +- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index fca038b352..ae3eec7c8b 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 20b19cba-e48d-4d48-b631-1dcb83d87333 - 2023-07-27T18:48:22Z + c817be9a-23f0-4a79-b13d-ec0f384bfe37 + 2023-08-01T21:40:57Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -246,12 +246,6 @@ resource B5BEF270 - - g_functions/g-function_library_1.0/zoned_rectangle_5m_v1.0.json - json - resource - 6A4C47AD - g_functions/rectangle_5m_v1.0.json json @@ -322,7 +316,7 @@ hvac.rb rb resource - 3BE25C2E + 077A47CB hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index a61424848d..1510afe0f5 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -3363,7 +3363,7 @@ def self.set_gshp_assumptions(heat_pump, weather) hp_ap.design_chw = [85.0, weather.design.CoolingDrybulb - 15.0, weather.data.AnnualAvgDrybulb + 10.0].max # Temperature of water entering indoor coil,use 85F as lower bound hp_ap.design_delta_t = 10.0 hp_ap.fluid_type = Constants.FluidPropyleneGlycol - hp_ap.frac_glycol = 0.3 + hp_ap.frac_glycol = 0.2 # we've changed this from 0.3 to 0.2 if hp_ap.fluid_type == Constants.FluidWater hp_ap.design_hw = [45.0, weather.design.HeatingDrybulb + 35.0, weather.data.AnnualAvgDrybulb - 10.0].max # Temperature of fluid entering indoor coil, use 45F as lower bound for water else From 15f9bb02f8c32216935328ee6d09e77c847da82a Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 1 Aug 2023 14:51:13 -0700 Subject: [PATCH 088/217] Update the changelog. [ci skip] --- Changelog.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 55e52d20a7..360b79dc33 100644 --- a/Changelog.md +++ b/Changelog.md @@ -9,7 +9,11 @@ __New Features__ - Adds battery resilience hours output; allows requesting timeseries output. - ReportUtilityBills measure: Allows reporting monthly utility bills in addition to (or instead of) annual bills. - Update to 2022 EIA energy costs. -- Connect to the [G-Function Library](https://gdr.openei.org/submissions/1325) (in the Geothermal Data Repository) for using precalculated g-function values with GSHP modeling. +- Ground source heat pump enhancements: + - Connect to `HVACPlant/GeothermalLoop` and `BuildingSummary/Site/Soil` HPXML elements + - Allow optional inputs related to geothermal loop: loop flow, borehole count/length/spacing/diameter/configuration, grout conductivity, pipe conductivity/diameter/shank spacing. + - Allow optional ground diffusivity input for site soil. + - Connect to the [G-Function Library](https://gdr.openei.org/submissions/1325) (in the Geothermal Data Repository) for using precalculated g-function values with GSHP modeling. __Bugfixes__ - Fixes lighting multipliers not being applied when kWh/yr inputs are used. From ce6cefab8d1c428828952794bc7b3dd0f288bcbb Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 3 Aug 2023 12:36:38 -0700 Subject: [PATCH 089/217] Update depth max in hvac_sizing. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 6 ++++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index ae3eec7c8b..a2175b9374 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - c817be9a-23f0-4a79-b13d-ec0f384bfe37 - 2023-08-01T21:40:57Z + 7ca03aa0-f743-4da2-8678-5821880db7dd + 2023-08-03T19:36:16Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -322,7 +322,7 @@ hvac_sizing.rb rb resource - 71E6EFE7 + 0FEB5BF8 lighting.rb diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index c7d1244489..9afd295c1c 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1903,8 +1903,10 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) num_bore_holes = [1, (UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') + 0.5).floor].max end - min_bore_depth = UnitConversions.convert(24, 'm', 'ft') - max_bore_depth = UnitConversions.convert(384, 'm', 'ft') + min_bore_depth = UnitConversions.convert(24.0, 'm', 'ft') # based on g-function library + # In NY that's the depth that requires a mining permit, which has been a barrier for Dandelion Energy with installing GSHPs. + # Sounds like people are pushing ever deeper but for now we can apply this limit and add a note about where it came from. + max_bore_depth = UnitConversions.convert(152.0, 'm', 'ft') bore_depth = geothermal_loop.bore_length if bore_depth.nil? From ae8266b249bf5d3c8cdc35a5e2bfa21b056ef2b6 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 3 Aug 2023 12:36:44 -0700 Subject: [PATCH 090/217] Update the docs. --- docs/source/workflow_inputs.rst | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 7f4246257a..7f3bc11f0c 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2057,15 +2057,15 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ======================================== ================ =========== =============== ======== ============== =============================================== ``SystemIdentifier`` id Yes Unique identifier ``LoopConfiguration`` string See [#]_ Yes - ``LoopFlow`` double gal/min > 0 No autosized [#]_ + ``LoopFlow`` double gal/min > 0 No autosized [#]_ Water flow rate through the geothermal loop ``BoreholesOrTrenches/Count`` integer > 0 No [#]_ autosized [#]_ - ``BoreholesOrTrenches/Length`` double ft See [#]_ No autosized [#]_ - ``BoreholesOrTrenches/Spacing`` double ft > 0 No 16.4 + ``BoreholesOrTrenches/Length`` double ft See [#]_ No autosized [#]_ Length (i.e., average depth) of each borehole + ``BoreholesOrTrenches/Spacing`` double ft > 0 No 16.4 Distance between boreholes ``BoreholesOrTrenches/Diameter`` double in > 0 No 5.0 ``Grout/Type`` or ``Grout/Conductivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No standard Grout type or conductivity [#]_ ``Pipe/Conductivity`` double Btu/hr-ft-F > 0 No 0.23 ``Pipe/Diameter`` double in See [#]_ No 0.75 - ``Pipe/ShankSpacing`` double in > 0 No See [#]_ + ``Pipe/ShankSpacing`` double in > 0 No See [#]_ Center-to-center distance between two branches of a vertical U-tube ``extension/BorefieldConfiguration`` string See [#]_ No Rectangle ======================================== ================ =========== =============== ======== ============== =============================================== @@ -2079,7 +2079,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ | - **U**: 7, 9, or 10 | - **Lopsided U**: 6, 7, 8, 9, or 10 .. [#] BoreholesOrTrenches/Count autosized per TODO. - .. [#] BoreholesOrTrenches/Length must be between 79 ft and 1,259 ft. + .. [#] BoreholesOrTrenches/Length must be between 79 ft and 500 ft. .. [#] BoreholesOrTrenches/Length autosized per TODO. .. [#] Grout/Type choices are "standard" or "thermally enhanced". .. [#] | If Grout/Conductivity not provided, defaults based on Grout/Type: @@ -2089,6 +2089,13 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ .. [#] Sum of U-tube spacing and pipe outer diameter. .. [#] extension/BorefieldConfiguration choices are "Rectangle", "Open Rectangle", "C", "L", "U", or "Lopsided U". +.. note:: + + For a given combination of ``extension/BorefieldConfiguration``, ``BoreholesOrTrenches/Count``, ``BoreholesOrTrenches/Spacing``, ``BoreholesOrTrenches/Length``, and ``BoreholesOrTrenches/Diameter``, g-function values are determined using the `G-Function Library `_ (from the Geothermal Data Repository). + To permit interpolation, each borefield configuration in the library has g-function values corresponding to heights of 24, 48, 96, 192, and 384 m. + ``BoreholesOrTrenches/Length`` therefore has a minimum of 24 m (or 79 ft). + ``BoreholesOrTrenches/Length``, on the other hand, has a maximum of 500 ft; bore depths exceeding this value are unlikely to be used in residential applications. + .. _hvac_control: HPXML HVAC Control From 16061f2718cf1cb7ff9fa560139ffa9ead3dd706 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 3 Aug 2023 15:41:47 -0700 Subject: [PATCH 091/217] Remove trench kw from build measure arguments. --- BuildResidentialHPXML/measure.rb | 40 +++++++++++++++---------------- BuildResidentialHPXML/measure.xml | 30 +++++++++++------------ 2 files changed, 35 insertions(+), 35 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index f465cc46fa..934a65577d 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1363,27 +1363,27 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setUnits('gpm') args << arg - arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('geothermal_loop_boreholes_or_trenches_count', false) - arg.setDisplayName('Geothermal Loop: Boreholes or Trenches Count') - arg.setDescription("Number of boreholes or trenches. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default is used.") + arg = OpenStudio::Measure::OSArgument::makeIntegerArgument('geothermal_loop_boreholes_count', false) + arg.setDisplayName('Geothermal Loop: Boreholes Count') + arg.setDescription("Number of boreholes. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default is used.") arg.setUnits('#') args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_boreholes_or_trenches_length', false) - arg.setDisplayName('Geothermal Loop: Boreholes or Trenches Length') - arg.setDescription("Average length of each borehole (vertical) or trench (horizontal). Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default is used.") + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_boreholes_length', false) + arg.setDisplayName('Geothermal Loop: Boreholes Length') + arg.setDescription("Average length of each borehole (vertical). Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default is used.") arg.setUnits('ft') args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_boreholes_or_trenches_spacing', false) - arg.setDisplayName('Geothermal Loop: Boreholes or Trenches Spacing') - arg.setDescription("Distance between bores/trenches. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_boreholes_spacing', false) + arg.setDisplayName('Geothermal Loop: Boreholes Spacing') + arg.setDescription("Distance between bores. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") arg.setUnits('ft') args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_boreholes_or_trenches_diameter', false) - arg.setDisplayName('Geothermal Loop: Boreholes or Trenches Diameter') - arg.setDescription("Diameter of bores/trenches. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_boreholes_diameter', false) + arg.setDisplayName('Geothermal Loop: Boreholes Diameter') + arg.setDescription("Diameter of bores. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") arg.setUnits('in') args << arg @@ -5028,20 +5028,20 @@ def self.set_geothermal_loop(hpxml, args) loop_flow = args[:geothermal_loop_loop_flow].get end - if args[:geothermal_loop_boreholes_or_trenches_count].is_initialized - num_bore_holes = args[:geothermal_loop_boreholes_or_trenches_count].get + if args[:geothermal_loop_boreholes_count].is_initialized + num_bore_holes = args[:geothermal_loop_boreholes_count].get end - if args[:geothermal_loop_boreholes_or_trenches_length].is_initialized - bore_length = args[:geothermal_loop_boreholes_or_trenches_length].get + if args[:geothermal_loop_boreholes_length].is_initialized + bore_length = args[:geothermal_loop_boreholes_length].get end - if args[:geothermal_loop_boreholes_or_trenches_spacing].is_initialized - bore_spacing = args[:geothermal_loop_boreholes_or_trenches_spacing].get + if args[:geothermal_loop_boreholes_spacing].is_initialized + bore_spacing = args[:geothermal_loop_boreholes_spacing].get end - if args[:geothermal_loop_boreholes_or_trenches_diameter].is_initialized - bore_diameter = args[:geothermal_loop_boreholes_or_trenches_diameter].get + if args[:geothermal_loop_boreholes_diameter].is_initialized + bore_diameter = args[:geothermal_loop_boreholes_diameter].get end if args[:geothermal_loop_grout_conductivity].is_initialized diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 541571b40a..652f56f62a 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - f843e147-2f50-4b17-88d5-143a30c51bac - 2023-07-27T18:48:20Z + e3226445-93ae-4198-a8d0-e1470528815d + 2023-08-03T22:19:07Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -2791,36 +2791,36 @@ false - geothermal_loop_boreholes_or_trenches_count - Geothermal Loop: Boreholes or Trenches Count - Number of boreholes or trenches. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default is used. + geothermal_loop_boreholes_count + Geothermal Loop: Boreholes Count + Number of boreholes. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default is used. Integer # false false - geothermal_loop_boreholes_or_trenches_length - Geothermal Loop: Boreholes or Trenches Length - Average length of each borehole (vertical) or trench (horizontal). Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default is used. + geothermal_loop_boreholes_length + Geothermal Loop: Boreholes Length + Average length of each borehole (vertical). Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML autosized default is used. Double ft false false - geothermal_loop_boreholes_or_trenches_spacing - Geothermal Loop: Boreholes or Trenches Spacing - Distance between bores/trenches. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. + geothermal_loop_boreholes_spacing + Geothermal Loop: Boreholes Spacing + Distance between bores. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. Double ft false false - geothermal_loop_boreholes_or_trenches_diameter - Geothermal Loop: Boreholes or Trenches Diameter - Diameter of bores/trenches. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. + geothermal_loop_boreholes_diameter + Geothermal Loop: Boreholes Diameter + Diameter of bores. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. Double in false @@ -6829,7 +6829,7 @@ measure.rb rb script - 5AD047C0 + EEB9E29D geometry.rb From 35ef1e4f5fbe9483588f7b3db707fc828bbf847b Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 3 Aug 2023 15:42:09 -0700 Subject: [PATCH 092/217] Update comment in util rb. --- HPXMLtoOpenStudio/measure.xml | 8 ++++---- HPXMLtoOpenStudio/resources/g_functions/util.rb | 3 ++- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index a2175b9374..8a074b531e 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 7ca03aa0-f743-4da2-8678-5821880db7dd - 2023-08-03T19:36:16Z + 7c198576-2560-40af-ae0f-1014f5549aec + 2023-08-03T22:35:04Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -562,7 +562,7 @@ test_hvac.rb rb test - F360B73B + FCD1A041 test_hvac_sizing.rb @@ -610,7 +610,7 @@ test_validation.rb rb test - CD521C51 + B4026ADC test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/g_functions/util.rb b/HPXMLtoOpenStudio/resources/g_functions/util.rb index 0b9c9a1e33..015204a688 100644 --- a/HPXMLtoOpenStudio/resources/g_functions/util.rb +++ b/HPXMLtoOpenStudio/resources/g_functions/util.rb @@ -12,7 +12,8 @@ def process_g_functions(filepath) puts "Processing #{config_json}..." json = JSON.load(file) - # the idea here is load json2 up with the "most square" m_n for each config/boreholes combo + # It's possible that multiple m_n keys exist for a given config/borehole combo. + # So, we are choosing the "most square" m_n for each config/boreholes combo. json2 = {} case config_json when 'rectangle_5m_v1.0.json' From ee7020c07dec2f516d9cd84100abd1355a4b44e7 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 3 Aug 2023 15:42:21 -0700 Subject: [PATCH 093/217] Update tests and sample files. --- HPXMLtoOpenStudio/tests/test_hvac.rb | 4 ++-- HPXMLtoOpenStudio/tests/test_validation.rb | 2 +- workflow/hpxml_inputs.json | 18 +++++++++--------- .../sample_files/base-hvac-geothermal-loop.xml | 4 ++-- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index a98c9ee0fb..2962fae082 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -730,9 +730,9 @@ def test_geothermal_loop # Check G-Functions # Expected values - # 4_4: 1: g: 5._384._0.0875 from "LopU_configurations_5m_v1.0.json" + # 4_4: 1: g: 5._96._0.075 from "LopU_configurations_5m_v1.0.json" lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] - gfnc_coeff = [3.490341452425285, 4.019256693703507, 4.645242475571041, 5.663015696969794, 6.870961396281224, 8.722045952534526, 10.968017694918828, 12.850605315815251, 15.333821659373363, 16.76783249479386, 17.755971993298417, 19.095372128092308, 19.99702132365333, 21.961932120277055, 23.590345099332236, 24.032380773467327, 24.428493817447, 24.813430064076773, 25.11149023696463, 25.366028392849262, 25.58505101682981, 25.76825577351642, 25.904849535939963, 26.06088890444515, 26.16737568079158, 26.21958387181005, 26.304039577016905] + gfnc_coeff = [2.209271810327404, 2.5553235626058273, 2.8519138306223555, 3.2001519249819794, 3.523354932375397, 4.001549412014162, 4.669089316628495, 5.359101946268944, 6.552379489671893, 7.429815477491777, 8.121820314543074, 9.173143912712952, 9.946213029499233, 11.781039134458084, 13.403268695619028, 13.854454372473098, 14.260003929688882, 14.655669234316463, 14.962475413080817, 15.224731293240202, 15.450225154706388, 15.638568709166531, 15.778910465988814, 15.938820677805234, 16.047959625600665, 16.1015379064994, 16.188353466015815] gFunctions = lntts.zip(gfnc_coeff) ghx.gFunctions.each_with_index do |gFunction, i| assert_in_epsilon(gFunction.lnValue, gFunctions[i][0], 0.01) diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 8b7de0d611..95d2e920f1 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -839,7 +839,7 @@ def test_ruby_error_messages 'hvac-dse-multiple-attached-cooling' => ["Multiple cooling systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], 'hvac-gshp-invalid-num-bore-holes' => ["Number of bore holes (5) with borefield configuration 'Lopsided U' not supported"], - 'hvac-gshp-invalid-bore-depth' => ['Bore depth (1260.0) not between 78.74 and 1259.843 ft'], + 'hvac-gshp-invalid-bore-depth' => ['Bore depth (1260.0) not between 78.74 and 498.688 ft'], 'hvac-inconsistent-fan-powers' => ["Fan powers for heating system 'HeatingSystem1' and cooling system 'CoolingSystem1' are attached to a single distribution system and therefore must be the same."], 'hvac-invalid-distribution-system-type' => ["Incorrect HVAC distribution system type for HVAC type: 'Furnace'. Should be one of: ["], 'hvac-shared-boiler-multiple' => ['More than one shared heating system found.'], diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 83817c3385..54358c0f7a 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2387,10 +2387,10 @@ "sample_files/base-hvac-geothermal-loop.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "geothermal_loop_loop_flow": 10.0, - "geothermal_loop_boreholes_or_trenches_count": 9, - "geothermal_loop_boreholes_or_trenches_length": 1259.84, - "geothermal_loop_boreholes_or_trenches_spacing": 16.4042, - "geothermal_loop_boreholes_or_trenches_diameter": 6.8897638, + "geothermal_loop_boreholes_count": 9, + "geothermal_loop_boreholes_length": 314.961, + "geothermal_loop_boreholes_spacing": 16.4042, + "geothermal_loop_boreholes_diameter": 5.905512, "geothermal_loop_grout_conductivity": 0.5, "geothermal_loop_pipe_conductivity": 0.3, "geothermal_loop_pipe_diameter": "1\" pipe", @@ -2407,19 +2407,19 @@ }, "sample_files/base-hvac-geothermal-loop-boreholes-count.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_boreholes_or_trenches_count": 4 + "geothermal_loop_boreholes_count": 4 }, "sample_files/base-hvac-geothermal-loop-boreholes-length.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_boreholes_or_trenches_length": 350.0 + "geothermal_loop_boreholes_length": 350.0 }, "sample_files/base-hvac-geothermal-loop-boreholes-spacing.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_boreholes_or_trenches_spacing": 25.0 + "geothermal_loop_boreholes_spacing": 25.0 }, "sample_files/base-hvac-geothermal-loop-boreholes-diameter.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_boreholes_or_trenches_diameter": 6.0 + "geothermal_loop_boreholes_diameter": 6.0 }, "sample_files/base-hvac-geothermal-loop-grout-conductivity.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", @@ -2439,7 +2439,7 @@ }, "sample_files/base-hvac-geothermal-loop-borefield-configuration.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_boreholes_or_trenches_count": 5, + "geothermal_loop_boreholes_count": 5, "geothermal_loop_borefield_configuration": "L" }, "sample_files/base-hvac-ground-to-air-heat-pump.xml": { diff --git a/workflow/sample_files/base-hvac-geothermal-loop.xml b/workflow/sample_files/base-hvac-geothermal-loop.xml index 3c238c4871..ec367988b6 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop.xml @@ -357,9 +357,9 @@ 10.0 9 - 1259.84 + 314.961 16.4042 - 6.8897638 + 5.905512 0.5 From 2de40bbe7e5439812d85c811a3d740cf284dd020 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 3 Aug 2023 23:47:19 +0000 Subject: [PATCH 094/217] Latest results. --- workflow/tests/base_results/results.csv | 6 +++--- workflow/tests/base_results/results_bills.csv | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 01299b1950..80af5f4b2c 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -217,7 +217,7 @@ base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34. base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,2122.5,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.248,34.248,34.248,34.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.895,0.867,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.692,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2851.9,2851.9,0.0,17.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.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.15,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.793,36.793,36.793,36.793,0.0,0.0,0.0,0.0,0.0,0.0,5.562,0.814,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,0.0,21.117,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3411.0,1637.3,3411.0,23.44,0.0,0.0,3.549,3.636,0.512,7.483,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.833,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.702,36.702,36.702,36.702,0.0,0.0,0.0,0.0,0.0,0.0,5.49,0.795,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,0.0,21.069,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3406.5,1637.3,3406.5,23.397,0.0,0.0,3.55,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.784,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.933,39.933,39.933,39.933,0.0,0.0,0.0,0.0,0.0,0.0,5.492,0.686,0.0,0.0,2.507,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.116,0.0,13.27,9.233,0.614,0.0,0.0,0.0,0.0,3358.9,2541.2,3358.9,22.968,15.706,0.0,3.552,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.667,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.379,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,3215.8,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,3215.8,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -301,9 +301,9 @@ base-hvac-geothermal-loop-loop-flow.xml,39.565,39.565,39.565,39.565,0.0,0.0,0.0, base-hvac-geothermal-loop-pipe-conductivity.xml,39.542,39.542,39.542,39.542,0.0,0.0,0.0,0.0,0.0,0.0,5.245,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.3,2577.1,3210.3,20.864,14.693,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.762,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-geothermal-loop-pipe-diameter.xml,39.539,39.539,39.539,39.539,0.0,0.0,0.0,0.0,0.0,0.0,5.241,0.361,0.0,0.0,2.468,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.538,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3208.7,2572.8,3208.7,20.907,14.686,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.046,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.511,39.511,39.511,39.511,0.0,0.0,0.0,0.0,0.0,0.0,5.234,0.36,0.0,0.0,2.45,1.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.533,0.0,12.673,9.233,0.614,0.0,0.0,0.0,0.0,3204.7,2568.5,3204.7,20.838,14.682,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.041,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop.xml,39.08,39.08,39.08,39.08,0.0,0.0,0.0,0.0,0.0,0.0,5.08,0.34,0.0,0.0,2.219,1.001,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.439,0.0,12.644,9.233,0.614,0.0,0.0,0.0,0.0,3122.8,2459.5,3122.8,20.484,14.586,0.0,3.61,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.944,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.732,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,39.184,39.184,39.184,39.184,0.0,0.0,0.0,0.0,0.0,0.0,5.114,0.344,0.0,0.0,2.278,1.007,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.461,0.0,12.652,9.233,0.614,0.0,0.0,0.0,0.0,3142.6,2491.5,3142.6,20.581,14.608,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.966,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.74,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.794,33.794,33.794,33.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.534,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.0,2599.0,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.643,36.643,36.643,36.643,0.0,0.0,0.0,0.0,0.0,0.0,5.449,0.777,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,0.0,20.372,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3362.4,1637.3,3362.4,22.29,0.0,0.0,3.576,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.067,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.576,36.576,36.576,36.576,0.0,0.0,0.0,0.0,0.0,0.0,5.396,0.763,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,0.0,20.34,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3353.6,1637.3,3353.6,22.264,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.034,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.1,2577.8,3210.1,20.865,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,7036.9,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,7011.6,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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 1ca41f319b..bd00cccdbe 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -217,7 +217,7 @@ base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1795.21,144.0,1256.04,0. base-hvac-autosize-furnace-gas-only.xml,1681.87,144.0,1139.26,0.0,1283.26,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-furnace-gas-room-ac.xml,1870.89,144.0,1325.73,0.0,1469.73,144.0,257.16,401.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1400.91,144.0,1256.91,0.0,1400.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1494.32,144.0,1350.32,0.0,1494.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1490.99,144.0,1346.99,0.0,1490.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1609.57,144.0,1465.57,0.0,1609.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1594.86,144.0,1450.86,0.0,1594.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1594.86,144.0,1450.86,0.0,1594.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -301,9 +301,9 @@ base-hvac-geothermal-loop-loop-flow.xml,1596.04,144.0,1452.04,0.0,1596.04,0.0,0. base-hvac-geothermal-loop-pipe-conductivity.xml,1595.21,144.0,1451.21,0.0,1595.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-geothermal-loop-pipe-diameter.xml,1595.1,144.0,1451.1,0.0,1595.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-geothermal-loop-pipe-shank-spacing.xml,1594.07,144.0,1450.07,0.0,1594.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop.xml,1578.26,144.0,1434.26,0.0,1578.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop.xml,1582.07,144.0,1438.07,0.0,1582.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,1384.27,144.0,1240.27,0.0,1384.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1488.8,144.0,1344.8,0.0,1488.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1486.36,144.0,1342.36,0.0,1486.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump.xml,1595.19,144.0,1451.19,0.0,1595.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1941.16,144.0,1797.16,0.0,1941.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1753.34,144.0,1609.34,0.0,1753.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 3e60c224cac9b2f1d34cb76532a745b2aa787c5b Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 8 Aug 2023 10:56:07 -0700 Subject: [PATCH 095/217] Add test for invalid borefield config. --- HPXMLtoOpenStudio/measure.xml | 8 ++++---- HPXMLtoOpenStudio/tests/test_validation.rb | 12 ++++++++---- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 8a074b531e..2a65f0df64 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 7c198576-2560-40af-ae0f-1014f5549aec - 2023-08-03T22:35:04Z + 720645b1-f5d6-41f2-b3cf-a7778db0f41d + 2023-08-08T17:55:38Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -256,7 +256,7 @@ g_functions/util.rb rb resource - 3C8E730B + 2BEF07FA generator.rb @@ -610,7 +610,7 @@ test_validation.rb rb test - B4026ADC + C3E0E96C test_water_heater.rb diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 95d2e920f1..c632db1ed8 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -114,6 +114,7 @@ def test_schema_schematron_error_messages 'hvac-distribution-return-duct-leakage-missing' => ['Expected 1 element(s) for xpath: DuctLeakageMeasurement[DuctType="return"]/DuctLeakage[(Units="CFM25" or Units="CFM50" or Units="Percent") and TotalOrToOutside="to outside"] [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution[AirDistributionType[text()="regular velocity" or text()="gravity"]], id: "HVACDistribution1"]'], 'hvac-frac-load-served' => ['Expected sum(FractionHeatLoadServed) to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails]', 'Expected sum(FractionCoolLoadServed) to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails]'], + 'hvac-gshp-invalid-bore-config' => ["Expected BorefieldConfiguration to be 'Rectangle' or 'Open Rectangle' or 'C' or 'L' or 'U' or 'Lopsided U' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop, id: \"GeothermalLoop1\"]"], 'hvac-location-heating-system' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], 'hvac-location-cooling-system' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], 'hvac-location-heat-pump' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], @@ -372,6 +373,9 @@ def test_schema_schematron_error_messages hpxml.cooling_systems[0].primary_system = true hpxml.heat_pumps[-1].primary_heating_system = false hpxml.heat_pumps[-1].primary_cooling_system = false + elsif ['hvac-gshp-invalid-bore-config'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop.xml')) + hpxml.geothermal_loops[0].bore_config = 'Invalid' elsif ['hvac-location-heating-system'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-boiler-oil-only.xml')) hpxml.heating_systems[0].location = HPXML::LocationBasementUnconditioned @@ -838,8 +842,8 @@ def test_ruby_error_messages 'hvac-distribution-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-cooling' => ["Multiple cooling systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], - 'hvac-gshp-invalid-num-bore-holes' => ["Number of bore holes (5) with borefield configuration 'Lopsided U' not supported"], 'hvac-gshp-invalid-bore-depth' => ['Bore depth (1260.0) not between 78.74 and 498.688 ft'], + 'hvac-gshp-invalid-num-bore-holes' => ["Number of bore holes (5) with borefield configuration 'Lopsided U' not supported"], 'hvac-inconsistent-fan-powers' => ["Fan powers for heating system 'HeatingSystem1' and cooling system 'CoolingSystem1' are attached to a single distribution system and therefore must be the same."], 'hvac-invalid-distribution-system-type' => ["Incorrect HVAC distribution system type for HVAC type: 'Furnace'. Should be one of: ["], 'hvac-shared-boiler-multiple' => ['More than one shared heating system found.'], @@ -997,12 +1001,12 @@ def test_ruby_error_messages hpxml.heating_systems << hpxml.heating_systems[0].dup hpxml.heating_systems[1].id = "HeatingSystem#{hpxml.heating_systems.size}" hpxml.heating_systems[0].primary_system = false - elsif ['hvac-gshp-invalid-num-bore-holes'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop.xml')) - hpxml.geothermal_loops[0].num_bore_holes = 5 elsif ['hvac-gshp-invalid-bore-depth'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop.xml')) hpxml.geothermal_loops[0].bore_length = 1260 + elsif ['hvac-gshp-invalid-num-bore-holes'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop.xml')) + hpxml.geothermal_loops[0].num_bore_holes = 5 elsif ['hvac-inconsistent-fan-powers'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) hpxml.cooling_systems[0].fan_watts_per_cfm = 0.55 From 02c3a89d41071443f81bb666648d2051045e9ce3 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 8 Aug 2023 11:05:50 -0700 Subject: [PATCH 096/217] Reorganize new geothermal loop sample files. --- workflow/hpxml_inputs.json | 49 +- ...eothermal-loop-borefield-configuration.xml | 565 ------------------ ...e-hvac-geothermal-loop-boreholes-count.xml | 562 ----------------- ...vac-geothermal-loop-boreholes-diameter.xml | 562 ----------------- ...-hvac-geothermal-loop-boreholes-length.xml | 562 ----------------- ...hvac-geothermal-loop-boreholes-spacing.xml | 562 ----------------- ...vac-geothermal-loop-grout-conductivity.xml | 562 ----------------- .../base-hvac-geothermal-loop-loop-flow.xml | 560 ----------------- ...hvac-geothermal-loop-pipe-conductivity.xml | 562 ----------------- ...ase-hvac-geothermal-loop-pipe-diameter.xml | 562 ----------------- ...vac-geothermal-loop-pipe-shank-spacing.xml | 562 ----------------- ...y.xml => base-misc-ground-diffusivity.xml} | 0 12 files changed, 4 insertions(+), 5666 deletions(-) delete mode 100644 workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml delete mode 100644 workflow/sample_files/base-hvac-geothermal-loop-boreholes-count.xml delete mode 100644 workflow/sample_files/base-hvac-geothermal-loop-boreholes-diameter.xml delete mode 100644 workflow/sample_files/base-hvac-geothermal-loop-boreholes-length.xml delete mode 100644 workflow/sample_files/base-hvac-geothermal-loop-boreholes-spacing.xml delete mode 100644 workflow/sample_files/base-hvac-geothermal-loop-grout-conductivity.xml delete mode 100644 workflow/sample_files/base-hvac-geothermal-loop-loop-flow.xml delete mode 100644 workflow/sample_files/base-hvac-geothermal-loop-pipe-conductivity.xml delete mode 100644 workflow/sample_files/base-hvac-geothermal-loop-pipe-diameter.xml delete mode 100644 workflow/sample_files/base-hvac-geothermal-loop-pipe-shank-spacing.xml rename workflow/sample_files/{base-hvac-geothermal-loop-ground-diffusivity.xml => base-misc-ground-diffusivity.xml} (100%) diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 54358c0f7a..293b944a2a 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2397,51 +2397,6 @@ "geothermal_loop_pipe_shank_spacing": 2.5, "geothermal_loop_borefield_configuration": "Lopsided U" }, - "sample_files/base-hvac-geothermal-loop-ground-diffusivity.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_ground_diffusivity": 0.03 - }, - "sample_files/base-hvac-geothermal-loop-loop-flow.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_loop_flow": 10.0 - }, - "sample_files/base-hvac-geothermal-loop-boreholes-count.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_boreholes_count": 4 - }, - "sample_files/base-hvac-geothermal-loop-boreholes-length.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_boreholes_length": 350.0 - }, - "sample_files/base-hvac-geothermal-loop-boreholes-spacing.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_boreholes_spacing": 25.0 - }, - "sample_files/base-hvac-geothermal-loop-boreholes-diameter.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_boreholes_diameter": 6.0 - }, - "sample_files/base-hvac-geothermal-loop-grout-conductivity.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_grout_conductivity": 0.5 - }, - "sample_files/base-hvac-geothermal-loop-pipe-conductivity.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_pipe_conductivity": 0.3 - }, - "sample_files/base-hvac-geothermal-loop-pipe-diameter.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_pipe_diameter": "1\" pipe" - }, - "sample_files/base-hvac-geothermal-loop-pipe-shank-spacing.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_pipe_shank_spacing": 2.5 - }, - "sample_files/base-hvac-geothermal-loop-borefield-configuration.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_boreholes_count": 5, - "geothermal_loop_borefield_configuration": "L" - }, "sample_files/base-hvac-ground-to-air-heat-pump.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_type": "none", @@ -3145,6 +3100,10 @@ "parent_hpxml": "sample_files/base.xml", "site_ground_conductivity": 0.8 }, + "sample_files/base-misc-ground-diffusivity.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_ground_diffusivity": 0.03 + }, "sample_files/base-misc-loads-large-uncommon.xml": { "parent_hpxml": "sample_files/base-schedules-simple.xml", "extra_refrigerator_present": true, diff --git a/workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml b/workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml deleted file mode 100644 index 39cd72afe7..0000000000 --- a/workflow/sample_files/base-hvac-geothermal-loop-borefield-configuration.xml +++ /dev/null @@ -1,565 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - 5 - - - L - - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-count.xml b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-count.xml deleted file mode 100644 index 690ab4ee3a..0000000000 --- a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-count.xml +++ /dev/null @@ -1,562 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - 4 - - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-diameter.xml b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-diameter.xml deleted file mode 100644 index f7534f1170..0000000000 --- a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-diameter.xml +++ /dev/null @@ -1,562 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - 6.0 - - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-length.xml b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-length.xml deleted file mode 100644 index f564b311c4..0000000000 --- a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-length.xml +++ /dev/null @@ -1,562 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - 350.0 - - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-spacing.xml b/workflow/sample_files/base-hvac-geothermal-loop-boreholes-spacing.xml deleted file mode 100644 index 23d61450a0..0000000000 --- a/workflow/sample_files/base-hvac-geothermal-loop-boreholes-spacing.xml +++ /dev/null @@ -1,562 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - 25.0 - - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-grout-conductivity.xml b/workflow/sample_files/base-hvac-geothermal-loop-grout-conductivity.xml deleted file mode 100644 index 3dfd18fc7c..0000000000 --- a/workflow/sample_files/base-hvac-geothermal-loop-grout-conductivity.xml +++ /dev/null @@ -1,562 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - 0.5 - - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-loop-flow.xml b/workflow/sample_files/base-hvac-geothermal-loop-loop-flow.xml deleted file mode 100644 index 3dc8f3d1fd..0000000000 --- a/workflow/sample_files/base-hvac-geothermal-loop-loop-flow.xml +++ /dev/null @@ -1,560 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - 10.0 - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-pipe-conductivity.xml b/workflow/sample_files/base-hvac-geothermal-loop-pipe-conductivity.xml deleted file mode 100644 index d2c91d1d60..0000000000 --- a/workflow/sample_files/base-hvac-geothermal-loop-pipe-conductivity.xml +++ /dev/null @@ -1,562 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - 0.3 - - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-pipe-diameter.xml b/workflow/sample_files/base-hvac-geothermal-loop-pipe-diameter.xml deleted file mode 100644 index b10c733f0a..0000000000 --- a/workflow/sample_files/base-hvac-geothermal-loop-pipe-diameter.xml +++ /dev/null @@ -1,562 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - 1.0 - - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-pipe-shank-spacing.xml b/workflow/sample_files/base-hvac-geothermal-loop-pipe-shank-spacing.xml deleted file mode 100644 index bb94fea4c5..0000000000 --- a/workflow/sample_files/base-hvac-geothermal-loop-pipe-shank-spacing.xml +++ /dev/null @@ -1,562 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - 2.5 - - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-geothermal-loop-ground-diffusivity.xml b/workflow/sample_files/base-misc-ground-diffusivity.xml similarity index 100% rename from workflow/sample_files/base-hvac-geothermal-loop-ground-diffusivity.xml rename to workflow/sample_files/base-misc-ground-diffusivity.xml From 8c0fcf2c9c1f9e29a5cca8884532a77b65867272 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 8 Aug 2023 18:55:15 +0000 Subject: [PATCH 097/217] Latest results. --- workflow/tests/base_results/results.csv | 12 +----------- workflow/tests/base_results/results_bills.csv | 12 +----------- 2 files changed, 2 insertions(+), 22 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 80af5f4b2c..840ecaffc0 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -290,17 +290,6 @@ base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0 base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-borefield-configuration.xml,39.547,39.547,39.547,39.547,0.0,0.0,0.0,0.0,0.0,0.0,5.239,0.361,0.0,0.0,2.477,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.538,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3210.2,2594.4,3210.2,20.925,14.708,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.046,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.765,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-count.xml,39.547,39.547,39.547,39.547,0.0,0.0,0.0,0.0,0.0,0.0,5.242,0.361,0.0,0.0,2.473,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3211.1,2580.0,3211.1,20.928,14.696,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.047,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-diameter.xml,39.554,39.554,39.554,39.554,0.0,0.0,0.0,0.0,0.0,0.0,5.248,0.362,0.0,0.0,2.474,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.2,2583.0,3212.2,20.879,14.701,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-length.xml,39.502,39.502,39.502,39.502,0.0,0.0,0.0,0.0,0.0,0.0,5.23,0.359,0.0,0.0,2.446,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.531,0.0,12.672,9.233,0.614,0.0,0.0,0.0,0.0,3202.1,2567.5,3202.1,20.83,14.681,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.039,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-boreholes-spacing.xml,39.494,39.494,39.494,39.494,0.0,0.0,0.0,0.0,0.0,0.0,5.227,0.359,0.0,0.0,2.441,1.026,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.53,0.0,12.672,9.233,0.614,0.0,0.0,0.0,0.0,3200.5,2567.2,3200.5,20.821,14.681,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.037,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.759,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-ground-diffusivity.xml,39.564,39.564,39.564,39.564,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.362,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3214.1,2584.5,3214.1,20.886,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-grout-conductivity.xml,39.552,39.552,39.552,39.552,0.0,0.0,0.0,0.0,0.0,0.0,5.249,0.362,0.0,0.0,2.471,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3212.6,2577.4,3212.6,20.87,14.693,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.05,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-loop-flow.xml,39.565,39.565,39.565,39.565,0.0,0.0,0.0,0.0,0.0,0.0,5.254,0.363,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3210.4,2582.7,3210.4,20.87,14.7,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-conductivity.xml,39.542,39.542,39.542,39.542,0.0,0.0,0.0,0.0,0.0,0.0,5.245,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.3,2577.1,3210.3,20.864,14.693,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.762,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-diameter.xml,39.539,39.539,39.539,39.539,0.0,0.0,0.0,0.0,0.0,0.0,5.241,0.361,0.0,0.0,2.468,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.538,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3208.7,2572.8,3208.7,20.907,14.686,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.046,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop-pipe-shank-spacing.xml,39.511,39.511,39.511,39.511,0.0,0.0,0.0,0.0,0.0,0.0,5.234,0.36,0.0,0.0,2.45,1.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.533,0.0,12.673,9.233,0.614,0.0,0.0,0.0,0.0,3204.7,2568.5,3204.7,20.838,14.682,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.041,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.76,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-geothermal-loop.xml,39.184,39.184,39.184,39.184,0.0,0.0,0.0,0.0,0.0,0.0,5.114,0.344,0.0,0.0,2.278,1.007,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.461,0.0,12.652,9.233,0.614,0.0,0.0,0.0,0.0,3142.6,2491.5,3142.6,20.581,14.608,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.966,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.74,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.794,33.794,33.794,33.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.534,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.0,2599.0,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-heating-only.xml,36.576,36.576,36.576,36.576,0.0,0.0,0.0,0.0,0.0,0.0,5.396,0.763,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,0.0,20.34,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3353.6,1637.3,3353.6,22.264,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.034,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -394,6 +383,7 @@ base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8. base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-ground-diffusivity.xml,39.564,39.564,39.564,39.564,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.362,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3214.1,2584.5,3214.1,20.886,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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 bd00cccdbe..47b5d5209f 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -290,17 +290,6 @@ base-hvac-furnace-oil-only.xml,2094.22,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1912.48,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,630.01,630.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-wood-only.xml,1630.62,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-borefield-configuration.xml,1595.41,144.0,1451.41,0.0,1595.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-count.xml,1595.39,144.0,1451.39,0.0,1595.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-diameter.xml,1595.65,144.0,1451.65,0.0,1595.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-length.xml,1593.74,144.0,1449.74,0.0,1593.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-boreholes-spacing.xml,1593.44,144.0,1449.44,0.0,1593.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-ground-diffusivity.xml,1596.01,144.0,1452.01,0.0,1596.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-grout-conductivity.xml,1595.56,144.0,1451.56,0.0,1595.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-loop-flow.xml,1596.04,144.0,1452.04,0.0,1596.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-conductivity.xml,1595.21,144.0,1451.21,0.0,1595.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-diameter.xml,1595.1,144.0,1451.1,0.0,1595.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop-pipe-shank-spacing.xml,1594.07,144.0,1450.07,0.0,1594.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-geothermal-loop.xml,1582.07,144.0,1438.07,0.0,1582.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,1384.27,144.0,1240.27,0.0,1384.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-heating-only.xml,1486.36,144.0,1342.36,0.0,1486.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -394,6 +383,7 @@ base-misc-generators-battery-scheduled.xml,2298.24,144.0,1381.06,0.0,1525.06,144 base-misc-generators-battery.xml,2236.54,144.0,1319.36,0.0,1463.36,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-generators.xml,2236.54,144.0,1319.36,0.0,1463.36,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-ground-conductivity.xml,1822.54,144.0,1316.42,0.0,1460.42,144.0,218.12,362.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-ground-diffusivity.xml,1596.01,144.0,1452.01,0.0,1596.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-loads-large-uncommon.xml,3692.47,144.0,2510.26,0.0,2654.26,144.0,743.94,887.94,0.0,0.0,0.0,0.0,67.83,67.83,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3052.47,144.0,2380.0,0.0,2524.0,144.0,214.63,358.63,0.0,87.4,87.4,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1500.61,144.0,906.92,0.0,1050.92,144.0,305.69,449.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 25bc8717517830188e7b6872ba58caa4fd8ecd2d Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 8 Aug 2023 15:48:26 -0700 Subject: [PATCH 098/217] Add build arguments for soil and moisture type. --- BuildResidentialHPXML/measure.rb | 28 +++++++++++++++++ BuildResidentialHPXML/measure.xml | 50 +++++++++++++++++++++++++++++-- 2 files changed, 75 insertions(+), 3 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 934a65577d..0ec5765b88 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -141,6 +141,26 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setUnits('ft^2/hr') args << arg + site_soil_type_choices = OpenStudio::StringVector.new + site_soil_type_choices << HPXML::SiteSoilSoilTypeUnknown + site_soil_type_choices << HPXML::SiteSoilSoilTypeSand + site_soil_type_choices << HPXML::SiteSoilSoilTypeClay + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('site_soil_type', site_soil_type_choices, false) + arg.setDisplayName('Site: Soil Type') + arg.setDescription('TODO. If not provided, the OS-HPXML default is used.') + args << arg + + site_moisture_type_choices = OpenStudio::StringVector.new + site_moisture_type_choices << HPXML::SiteSoilMoistureTypeMixed + site_moisture_type_choices << HPXML::SiteSoilMoistureTypeWet + site_moisture_type_choices << HPXML::SiteSoilMoistureTypeDry + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('site_moisture_type', site_moisture_type_choices, false) + arg.setDisplayName('Site: Soil Moisture Type') + arg.setDescription('TODO. If not provided, the OS-HPXML default is used.') + args << arg + arg = OpenStudio::Measure::OSArgument.makeStringArgument('site_zip_code', false) arg.setDisplayName('Site: Zip Code') arg.setDescription('Zip code of the home address.') @@ -3953,6 +3973,14 @@ def self.set_site(hpxml, args) hpxml.site.ground_diffusivity = args[:site_ground_diffusivity].get end + if args[:site_soil_type].is_initialized + hpxml.site.soil_type = args[:site_soil_type].get + end + + if args[:site_moisture_type].is_initialized + hpxml.site.moisture_type = args[:site_moisture_type].get + end + if args[:site_type].is_initialized hpxml.site.site_type = args[:site_type].get end diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 652f56f62a..a75c4bbcd8 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - e3226445-93ae-4198-a8d0-e1470528815d - 2023-08-03T22:19:07Z + a49c6ceb-8008-4909-b49f-7d624af2641b + 2023-08-08T22:09:37Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -203,6 +203,50 @@ false false + + site_soil_type + Site: Soil Type + TODO. If not provided, the OS-HPXML default is used. + Choice + false + false + + + unknown + unknown + + + sand + sand + + + clay + clay + + + + + site_moisture_type + Site: Soil Moisture Type + TODO. If not provided, the OS-HPXML default is used. + Choice + false + false + + + mixed + mixed + + + wet + wet + + + dry + dry + + + site_zip_code Site: Zip Code @@ -6829,7 +6873,7 @@ measure.rb rb script - EEB9E29D + C697C547
geometry.rb From 298749113db585027c1a07c04ba0ab9e70412817 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 8 Aug 2023 15:48:44 -0700 Subject: [PATCH 099/217] Update defaulting to use soil and moisture type. --- HPXMLtoOpenStudio/measure.xml | 8 +- HPXMLtoOpenStudio/resources/hpxml.rb | 14 +++- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 80 ++++++++++++++++++- 3 files changed, 92 insertions(+), 10 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 2a65f0df64..78eb34dd56 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 720645b1-f5d6-41f2-b3cf-a7778db0f41d - 2023-08-08T17:55:38Z + 8c847522-f7b4-477e-96ce-24a60eab3a1d + 2023-08-08T22:46:10Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -280,13 +280,13 @@ hpxml.rb rb resource - FC2CB4FC + A587601B hpxml_defaults.rb rb resource - 0DC4F49E + F4F86A7B hpxml_schema/HPXML.xsd diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 4825c661b0..cfa9508950 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -311,6 +311,12 @@ class HPXML < Object SidingTypeSyntheticStucco = 'synthetic stucco' SidingTypeVinyl = 'vinyl siding' SidingTypeWood = 'wood siding' + SiteSoilMoistureTypeMixed = 'mixed' + SiteSoilMoistureTypeWet = 'wet' + SiteSoilMoistureTypeDry = 'dry' + SiteSoilSoilTypeUnknown = 'unknown' + SiteSoilSoilTypeSand = 'sand' + SiteSoilSoilTypeClay = 'clay' SiteTypeUrban = 'urban' SiteTypeSuburban = 'suburban' SiteTypeRural = 'rural' @@ -1459,7 +1465,7 @@ def from_oga(unavailable_period) class Site < BaseElement ATTRS = [:site_type, :surroundings, :vertical_surroundings, :shielding_of_home, :orientation_of_front_of_home, :azimuth_of_front_of_home, :fuels, - :ground_conductivity, :ground_diffusivity] + :soil_type, :moisture_type, :ground_conductivity, :ground_diffusivity] attr_accessor(*ATTRS) def check_for_errors @@ -1483,8 +1489,10 @@ def to_oga(doc) XMLHelper.add_element(fuel_types_available, 'Fuel', fuel, :string) end end - if (not @ground_conductivity.nil?) || (not @ground_diffusivity.nil?) + if (not @soil_type.nil?) || (not @moisture_type.nil?) || (not @ground_conductivity.nil?) || (not @ground_diffusivity.nil?) soil = XMLHelper.add_element(site, 'Soil') + XMLHelper.add_element(soil, 'SoilType', @soil_type, :string, @soil_type_isdefaulted) unless @soil_type.nil? + XMLHelper.add_element(soil, 'MoistureType', @moisture_type, :string, @moisture_type_isdefaulted) unless @moisture_type.nil? XMLHelper.add_element(soil, 'Conductivity', @ground_conductivity, :float, @ground_conductivity_isdefaulted) unless @ground_conductivity.nil? if not @ground_diffusivity.nil? extension = XMLHelper.create_elements_as_needed(soil, ['extension']) @@ -1511,6 +1519,8 @@ def from_oga(hpxml) @orientation_of_front_of_home = XMLHelper.get_value(site, 'OrientationOfFrontOfHome', :string) @azimuth_of_front_of_home = XMLHelper.get_value(site, 'AzimuthOfFrontOfHome', :integer) @fuels = XMLHelper.get_values(site, 'FuelTypesAvailable/Fuel', :string) + @soil_type = XMLHelper.get_value(site, 'Soil/SoilType', :string) + @moisture_type = XMLHelper.get_value(site, 'Soil/MoistureType', :string) @ground_conductivity = XMLHelper.get_value(site, 'Soil/Conductivity', :float) @ground_diffusivity = XMLHelper.get_value(site, 'Soil/extension/Diffusivity', :float) end diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index f23ee7edf1..54eb87d352 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -483,12 +483,84 @@ def self.apply_site(hpxml) hpxml.site.shielding_of_home_isdefaulted = true end - if hpxml.site.ground_conductivity.nil? - hpxml.site.ground_conductivity = 1.0 # Btu/hr-ft-F - hpxml.site.ground_conductivity_isdefaulted = true + if hpxml.site.soil_type.nil? && hpxml.site.ground_conductivity.nil? && hpxml.site.ground_diffusivity.nil? + hpxml.site.soil_type = HPXML::SiteSoilSoilTypeUnknown + hpxml.site.soil_type_isdefaulted = true end - if hpxml.site.ground_diffusivity.nil? + if hpxml.site.moisture_type.nil? && hpxml.site.ground_conductivity.nil? && hpxml.site.ground_diffusivity.nil? + hpxml.site.moisture_type = HPXML::SiteSoilMoistureTypeMixed + hpxml.site.moisture_type_isdefaulted = true + end + + if hpxml.site.ground_conductivity.nil? && hpxml.site.ground_diffusivity.nil? + if hpxml.site.soil_type == HPXML::SiteSoilSoilTypeUnknown + hpxml.site.ground_conductivity = 1.0 # Btu/hr-ft-F + hpxml.site.ground_conductivity_isdefaulted = true + + hpxml.site.ground_diffusivity = 0.0208 # ft^2/hr + hpxml.site.ground_diffusivity_isdefaulted = true + elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeSand + if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed + conductivity = UnitConversions.convert(0.8657, 'w/(m*k)', 'btu/(hr*ft*r)') + density = UnitConversions.convert(1601.8, 'kg/m^3', 'lbm/ft^3') + specific_heat = UnitConversions.convert(1.046 * 1000.0, 'j/(kg*k)', 'btu/(lbm*r)') + + hpxml.site.ground_conductivity = conductivity # Btu/hr-ft-F + hpxml.site.ground_conductivity_isdefaulted = true + + hpxml.site.ground_diffusivity = conductivity / (density * specific_heat) # ft^2/hr + hpxml.site.ground_diffusivity_isdefaulted = true + elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeWet + fail 'Defaulting ground conductivity and diffusivity for wet sand is currently not supported.' + elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry + conductivity = UnitConversions.convert(0.3445, 'w/(m*k)', 'btu/(hr*ft*r)') + density = UnitConversions.convert(1441.6, 'kg/m^3', 'lbm/ft^3') + specific_heat = UnitConversions.convert(0.836 * 1000.0, 'j/(kg*k)', 'btu/(lbm*r)') + + hpxml.site.ground_conductivity = conductivity # Btu/hr-ft-F + hpxml.site.ground_conductivity_isdefaulted = true + + hpxml.site.ground_diffusivity = conductivity / (density * specific_heat) # ft^2/hr + hpxml.site.ground_diffusivity_isdefaulted = true + end + elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeClay + if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed + conductivity = UnitConversions.convert(1.2982, 'w/(m*k)', 'btu/(hr*ft*r)') + density = UnitConversions.convert(2098.4, 'kg/m^3', 'lbm/ft^3') + specific_heat = UnitConversions.convert(0.962 * 1000.0, 'j/(kg*k)', 'btu/(lbm*r)') + + hpxml.site.ground_conductivity = conductivity # Btu/hr-ft-F + hpxml.site.ground_conductivity_isdefaulted = true + + hpxml.site.ground_diffusivity = conductivity / (density * specific_heat) # ft^2/hr + hpxml.site.ground_diffusivity_isdefaulted = true + elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeWet + conductivity = UnitConversions.convert(2.4234, 'w/(m*k)', 'btu/(hr*ft*r)') + density = UnitConversions.convert(3203.6, 'kg/m^3', 'lbm/ft^3') + specific_heat = UnitConversions.convert(0.836 * 1000.0, 'j/(kg*k)', 'btu/(lbm*r)') + + hpxml.site.ground_conductivity = conductivity # Btu/hr-ft-F + hpxml.site.ground_conductivity_isdefaulted = true + + hpxml.site.ground_diffusivity = conductivity / (density * specific_heat) # ft^2/hr + hpxml.site.ground_diffusivity_isdefaulted = true + elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry + conductivity = UnitConversions.convert(0.8957, 'w/(m*k)', 'btu/(hr*ft*r)') + density = UnitConversions.convert(1601.8, 'kg/m^3', 'lbm/ft^3') + specific_heat = UnitConversions.convert(1.046 * 1000.0, 'j/(kg*k)', 'btu/(lbm*r)') + + hpxml.site.ground_conductivity = conductivity # Btu/hr-ft-F + hpxml.site.ground_conductivity_isdefaulted = true + + hpxml.site.ground_diffusivity = conductivity / (density * specific_heat) # ft^2/hr + hpxml.site.ground_diffusivity_isdefaulted = true + end + end + elsif hpxml.site.ground_conductivity.nil? + hpxml.site.ground_conductivity = 1.0 # Btu/hr-ft-F + hpxml.site.ground_conductivity_isdefaulted = true + elsif hpxml.site.ground_diffusivity.nil? hpxml.site.ground_diffusivity = 0.0208 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true end From fd1c8e28cb85504cbd8926feb1ae5d365a556951 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 8 Aug 2023 15:48:59 -0700 Subject: [PATCH 100/217] Update sample files for combos of soil and moisture types. --- workflow/hpxml_inputs.json | 25 + ...-misc-soil-type-clay-moisture-type-dry.xml | 563 ++++++++++++++++++ ...isc-soil-type-clay-moisture-type-mixed.xml | 563 ++++++++++++++++++ ...-misc-soil-type-clay-moisture-type-wet.xml | 563 ++++++++++++++++++ ...-misc-soil-type-sand-moisture-type-dry.xml | 563 ++++++++++++++++++ ...isc-soil-type-sand-moisture-type-mixed.xml | 563 ++++++++++++++++++ 6 files changed, 2840 insertions(+) create mode 100644 workflow/sample_files/base-misc-soil-type-clay-moisture-type-dry.xml create mode 100644 workflow/sample_files/base-misc-soil-type-clay-moisture-type-mixed.xml create mode 100644 workflow/sample_files/base-misc-soil-type-clay-moisture-type-wet.xml create mode 100644 workflow/sample_files/base-misc-soil-type-sand-moisture-type-dry.xml create mode 100644 workflow/sample_files/base-misc-soil-type-sand-moisture-type-mixed.xml diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 293b944a2a..4952eb693b 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -3104,6 +3104,31 @@ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "site_ground_diffusivity": 0.03 }, + "sample_files/base-misc-soil-type-sand-moisture-type-mixed.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "sand", + "site_moisture_type": "mixed" + }, + "sample_files/base-misc-soil-type-sand-moisture-type-dry.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "sand", + "site_moisture_type": "dry" + }, + "sample_files/base-misc-soil-type-clay-moisture-type-mixed.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "clay", + "site_moisture_type": "mixed" + }, + "sample_files/base-misc-soil-type-clay-moisture-type-wet.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "clay", + "site_moisture_type": "wet" + }, + "sample_files/base-misc-soil-type-clay-moisture-type-dry.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "clay", + "site_moisture_type": "dry" + }, "sample_files/base-misc-loads-large-uncommon.xml": { "parent_hpxml": "sample_files/base-schedules-simple.xml", "extra_refrigerator_present": true, diff --git a/workflow/sample_files/base-misc-soil-type-clay-moisture-type-dry.xml b/workflow/sample_files/base-misc-soil-type-clay-moisture-type-dry.xml new file mode 100644 index 0000000000..7e5e4c6a67 --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-clay-moisture-type-dry.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + clay + dry + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-clay-moisture-type-mixed.xml b/workflow/sample_files/base-misc-soil-type-clay-moisture-type-mixed.xml new file mode 100644 index 0000000000..6743ca1b63 --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-clay-moisture-type-mixed.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + clay + mixed + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-clay-moisture-type-wet.xml b/workflow/sample_files/base-misc-soil-type-clay-moisture-type-wet.xml new file mode 100644 index 0000000000..2c09c0fdd9 --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-clay-moisture-type-wet.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + clay + wet + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-sand-moisture-type-dry.xml b/workflow/sample_files/base-misc-soil-type-sand-moisture-type-dry.xml new file mode 100644 index 0000000000..05e10c4a08 --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-sand-moisture-type-dry.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + sand + dry + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-sand-moisture-type-mixed.xml b/workflow/sample_files/base-misc-soil-type-sand-moisture-type-mixed.xml new file mode 100644 index 0000000000..a761089ccf --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-sand-moisture-type-mixed.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + sand + mixed + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file From 7353f725b919c7913108b715016951afa94d3f23 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 8 Aug 2023 15:49:05 -0700 Subject: [PATCH 101/217] Update the docs. --- docs/source/workflow_inputs.rst | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 7f3bc11f0c..ef6b700c94 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -546,15 +546,25 @@ Site information is entered in ``/HPXML/Building/BuildingDetails/BuildingSummary Soil information is entered in ``Soil``. - ================================ ======== =========== =========== ======== ======== ============================================================ - Element Type Units Constraints Required Default Notes - ================================ ======== =========== =========== ======== ======== ============================================================ - ``Conductivity`` double Btu/hr-ft-F > 0 No 1.0 Thermal conductivity of the ground soil [#]_ - ``extension/Diffusivity`` double ft2/hr > 0 No 0.0208 Diffusivity of the ground soil [#]_ - ================================ ======== =========== =========== ======== ======== ============================================================ - + ================================================================== ================ =========== =============== ======== ======== ============================================================ + Element Type Units Constraints Required Default Notes + ================================================================== ================ =========== =============== ======== ======== ============================================================ + ``SoilType`` or ``Conductivity`` or ``extension/Diffusivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No unknown Soil type or themal conductivity [#]_ or diffusivity [#]_ [#]_ + ``MoistureType`` or ``Conductivity`` or ``extension/Diffusivity`` string or double ft2/hr See [#]_ or > 0 No mixed Moisture type or conductivity or diffusivity [#]_ + ================================================================== ================ =========== =============== ======== ======== ============================================================ + + .. [#] SoilType choices are "unknown", "sand", or "clay". .. [#] Conductivity used for foundation heat transfer and ground source heat pumps. .. [#] Diffusivity used for ground source heat pumps. + .. [#] MoistureType choices are "mixed", "wet", or "dry". + .. [#] | If Conductivity and extension/Diffusivity not provided, defaults based on SoilType/MoistureType: + | - **unknown**, **mixed/wet/dry**: 1.0 Btu/hr-ft-F and 0.0208 ft2/hr + | - **sand**, **mixed**: 0.5 Btu/hr-ft-F and 0.02 ft2/hr + | - **sand**, **wet**: Not supported + | - **sand**, **dry**: 0.199 Btu/hr-ft-F and 0.0111 ft2/hr + | - **clay**, **mixed**: 0.75 Btu/hr-ft-F and 0.0249 ft2/hr + | - **clay**, **wet**: 1.4 Btu/hr-ft-F and 0.0351 ft2/hr + | - **clay**, **dry**: 0.5174 Btu/hr-ft-F and 0.0207 ft2/hr For each neighboring building defined, additional information is entered in a ``extension/Neighbors/NeighborBuilding``. From 7dff9235be18c9362881daaa4507ba077a27f2ff Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 8 Aug 2023 23:48:40 +0000 Subject: [PATCH 102/217] Latest results. --- workflow/tests/base_results/results.csv | 5 +++++ workflow/tests/base_results/results_bills.csv | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 840ecaffc0..5b926eeb7d 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -390,6 +390,11 @@ base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0, base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 +base-misc-soil-type-clay-moisture-type-dry.xml,38.242,38.242,38.242,38.242,0.0,0.0,0.0,0.0,0.0,0.0,4.025,0.321,0.0,0.0,2.455,1.003,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,0.0,14.955,0.0,12.585,9.233,0.612,0.0,0.0,0.0,0.0,3068.6,2594.5,3068.6,19.017,14.963,0.0,3.68,3.696,0.52,6.799,0.642,10.676,-12.503,0.0,0.0,0.0,4.316,-0.06,4.825,0.0,0.732,0.0,2.658,-8.868,-2.492,0.0,-0.018,-0.486,-0.055,1.805,-0.033,-2.017,11.78,0.0,0.0,0.0,-5.354,-0.055,-1.195,-3.117,-0.17,0.0,1.777,7.908,2.017,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,30314.0,7488.0,7508.0,0.0,575.0,6026.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-clay-moisture-type-mixed.xml,38.938,38.938,38.938,38.938,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.369,0.0,0.0,2.445,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,0.0,17.417,0.0,12.515,9.233,0.613,0.0,0.0,0.0,0.0,3153.5,2716.9,3153.5,20.09,14.776,0.0,3.635,3.663,0.516,7.212,0.634,10.584,-12.53,0.0,0.0,0.0,6.246,-0.062,4.812,0.0,0.73,0.0,3.035,-8.891,-2.496,0.0,0.001,-0.467,-0.052,2.32,-0.028,-1.956,11.753,0.0,0.0,0.0,-6.024,-0.058,-1.178,-3.079,-0.167,0.0,1.758,7.886,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,30791.0,7499.0,7508.0,0.0,575.0,6491.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-clay-moisture-type-wet.xml,40.835,40.835,40.835,40.835,0.0,0.0,0.0,0.0,0.0,0.0,6.257,0.49,0.0,0.0,2.571,1.076,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.484,0.0,13.125,9.233,0.615,0.0,0.0,0.0,0.0,3336.5,2731.3,3336.5,22.616,14.778,0.0,3.544,3.597,0.506,7.793,0.621,10.408,-12.573,0.0,0.0,0.0,11.302,-0.063,4.797,0.0,0.726,0.0,3.927,-8.928,-2.504,0.0,0.023,-0.443,-0.049,3.11,-0.02,-1.875,11.71,0.0,0.0,0.0,-6.363,-0.06,-1.151,-3.047,-0.162,0.0,1.799,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31533.0,7515.0,7508.0,0.0,575.0,7218.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-sand-moisture-type-dry.xml,37.124,37.124,37.124,37.124,0.0,0.0,0.0,0.0,0.0,0.0,2.881,0.201,0.0,0.0,2.57,1.036,9.159,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.645,0.0,13.361,9.233,0.609,0.0,0.0,0.0,0.0,2901.2,2538.6,2901.2,16.924,15.409,0.0,3.78,3.77,0.531,5.462,0.656,10.863,-12.451,0.0,0.0,0.0,1.639,-0.042,4.866,0.0,0.739,0.0,1.767,-8.8,-2.478,0.0,-0.08,-0.543,-0.063,0.63,-0.05,-2.211,11.832,0.0,0.0,0.0,-3.115,-0.036,-1.251,-3.26,-0.178,0.0,1.881,7.972,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29172.0,7471.0,7508.0,0.0,575.0,4900.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-sand-moisture-type-mixed.xml,38.089,38.089,38.089,38.089,0.0,0.0,0.0,0.0,0.0,0.0,3.919,0.271,0.0,0.0,2.457,1.004,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,0.0,14.48,0.0,12.605,9.233,0.612,0.0,0.0,0.0,0.0,3040.9,2722.5,3040.9,18.679,14.982,0.0,3.692,3.698,0.521,6.758,0.642,10.683,-12.494,0.0,0.0,0.0,4.168,-0.061,4.825,0.0,0.732,0.0,2.337,-8.865,-2.491,0.0,-0.022,-0.489,-0.055,1.758,-0.034,-2.023,11.789,0.0,0.0,0.0,-5.282,-0.056,-1.198,-3.121,-0.171,0.0,1.78,7.911,2.018,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,30279.0,7496.0,7508.0,0.0,575.0,5983.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,24.753,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.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 47b5d5209f..03f895525a 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -390,6 +390,11 @@ base-misc-loads-none.xml,1500.61,144.0,906.92,0.0,1050.92,144.0,305.69,449.69,0. base-misc-neighbor-shading-bldgtype-multifamily.xml,1238.88,144.0,941.51,0.0,1085.51,144.0,9.37,153.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-neighbor-shading.xml,1870.95,144.0,1307.23,0.0,1451.23,144.0,275.72,419.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-shielding-of-home.xml,1849.15,144.0,1324.44,0.0,1468.44,144.0,236.71,380.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-clay-moisture-type-dry.xml,1547.49,144.0,1403.49,0.0,1547.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-clay-moisture-type-mixed.xml,1573.02,144.0,1429.02,0.0,1573.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-clay-moisture-type-wet.xml,1642.66,144.0,1498.66,0.0,1642.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-sand-moisture-type-dry.xml,1506.47,144.0,1362.47,0.0,1506.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-sand-moisture-type-mixed.xml,1541.88,144.0,1397.88,0.0,1541.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.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-usage-multiplier.xml,3013.64,144.0,1863.4,0.0,2007.4,144.0,726.99,870.99,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,891.06,144.0,1347.84,-986.63,505.21,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-pv-battery-garage.xml,861.45,144.0,1300.8,-986.62,458.18,144.0,259.27,403.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 0d37c63629ae4839ba11bc8a177ada05dbf33482 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 9 Aug 2023 16:57:25 -0700 Subject: [PATCH 103/217] Fix footnotes in docs. --- docs/source/workflow_inputs.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index ef6b700c94..8a1270d221 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -549,7 +549,7 @@ Soil information is entered in ``Soil``. ================================================================== ================ =========== =============== ======== ======== ============================================================ Element Type Units Constraints Required Default Notes ================================================================== ================ =========== =============== ======== ======== ============================================================ - ``SoilType`` or ``Conductivity`` or ``extension/Diffusivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No unknown Soil type or themal conductivity [#]_ or diffusivity [#]_ [#]_ + ``SoilType`` or ``Conductivity`` or ``extension/Diffusivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No unknown Soil type or themal conductivity [#]_ or diffusivity [#]_ ``MoistureType`` or ``Conductivity`` or ``extension/Diffusivity`` string or double ft2/hr See [#]_ or > 0 No mixed Moisture type or conductivity or diffusivity [#]_ ================================================================== ================ =========== =============== ======== ======== ============================================================ @@ -566,6 +566,10 @@ Soil information is entered in ``Soil``. | - **clay**, **wet**: 1.4 Btu/hr-ft-F and 0.0351 ft2/hr | - **clay**, **dry**: 0.5174 Btu/hr-ft-F and 0.0207 ft2/hr +.. note:: + + Default Conductivity and extension/Diffusivity values based on SoilType/MoistureType provided by GLHEPro. + For each neighboring building defined, additional information is entered in a ``extension/Neighbors/NeighborBuilding``. ============================== ================= ================ =================== ======== ======== ============================================= From 9f9485c684a1f3c0783929edad62cbf13745c353 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 10 Aug 2023 09:57:19 -0700 Subject: [PATCH 104/217] Update build measure for additional soil types. --- BuildResidentialHPXML/measure.rb | 8 ++++++-- BuildResidentialHPXML/measure.xml | 30 +++++++++++++++++++----------- 2 files changed, 25 insertions(+), 13 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 0ec5765b88..7fe6127d76 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -142,9 +142,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument args << arg site_soil_type_choices = OpenStudio::StringVector.new - site_soil_type_choices << HPXML::SiteSoilSoilTypeUnknown site_soil_type_choices << HPXML::SiteSoilSoilTypeSand + site_soil_type_choices << HPXML::SiteSoilSoilTypeSilt site_soil_type_choices << HPXML::SiteSoilSoilTypeClay + site_soil_type_choices << HPXML::SiteSoilSoilTypeLoam + site_soil_type_choices << HPXML::SiteSoilSoilTypeGravel + # site_soil_type_choices << HPXML::SiteSoilSoilTypeOther + site_soil_type_choices << HPXML::SiteSoilSoilTypeUnknown arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('site_soil_type', site_soil_type_choices, false) arg.setDisplayName('Site: Soil Type') @@ -152,9 +156,9 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument args << arg site_moisture_type_choices = OpenStudio::StringVector.new - site_moisture_type_choices << HPXML::SiteSoilMoistureTypeMixed site_moisture_type_choices << HPXML::SiteSoilMoistureTypeWet site_moisture_type_choices << HPXML::SiteSoilMoistureTypeDry + # site_moisture_type_choices << HPXML::SiteSoilMoistureTypeMixed arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('site_moisture_type', site_moisture_type_choices, false) arg.setDisplayName('Site: Soil Moisture Type') diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index a75c4bbcd8..f9582222e8 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - a49c6ceb-8008-4909-b49f-7d624af2641b - 2023-08-08T22:09:37Z + 96bb242c-aea3-4b85-8fdf-59f9228c7e6a + 2023-08-10T16:51:42Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -211,18 +211,30 @@ false false - - unknown - unknown - sand sand + + silt + silt + clay clay + + loam + loam + + + gravel + gravel + + + unknown + unknown + @@ -233,10 +245,6 @@ false false - - mixed - mixed - wet wet @@ -6873,7 +6881,7 @@ measure.rb rb script - C697C547 + 99789077
geometry.rb From 4884771d072bb5e065957ae05f0a62eda8299d4f Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 10 Aug 2023 09:57:35 -0700 Subject: [PATCH 105/217] Update defaults based on a more comprehensive source. --- HPXMLtoOpenStudio/measure.xml | 10 +-- HPXMLtoOpenStudio/resources/hpxml.rb | 10 ++- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 78 +++++++++---------- .../resources/unit_conversions.rb | 1 + 4 files changed, 48 insertions(+), 51 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 78eb34dd56..89ad47f660 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 8c847522-f7b4-477e-96ce-24a60eab3a1d - 2023-08-08T22:46:10Z + 74747582-fec6-4f0f-8ed3-b8bfebe43e22 + 2023-08-10T16:51:44Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -280,13 +280,13 @@ hpxml.rb rb resource - A587601B + 56B12A59 hpxml_defaults.rb rb resource - F4F86A7B + CD0DB050 hpxml_schema/HPXML.xsd @@ -478,7 +478,7 @@ unit_conversions.rb rb resource - 6D8BA8E5 + 75E8F687 util.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index cfa9508950..dbab6a4a7d 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -311,12 +311,16 @@ class HPXML < Object SidingTypeSyntheticStucco = 'synthetic stucco' SidingTypeVinyl = 'vinyl siding' SidingTypeWood = 'wood siding' + SiteSoilMoistureTypeDry = 'dry' SiteSoilMoistureTypeMixed = 'mixed' SiteSoilMoistureTypeWet = 'wet' - SiteSoilMoistureTypeDry = 'dry' - SiteSoilSoilTypeUnknown = 'unknown' - SiteSoilSoilTypeSand = 'sand' SiteSoilSoilTypeClay = 'clay' + SiteSoilSoilTypeGravel = 'gravel' + SiteSoilSoilTypeLoam = 'loam' + SiteSoilSoilTypeOther = 'other' + SiteSoilSoilTypeSand = 'sand' + SiteSoilSoilTypeSilt = 'silt' + SiteSoilSoilTypeUnknown = 'unknown' SiteTypeUrban = 'urban' SiteTypeSuburban = 'suburban' SiteTypeRural = 'rural' diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 54eb87d352..c0a06077ee 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -489,73 +489,65 @@ def self.apply_site(hpxml) end if hpxml.site.moisture_type.nil? && hpxml.site.ground_conductivity.nil? && hpxml.site.ground_diffusivity.nil? - hpxml.site.moisture_type = HPXML::SiteSoilMoistureTypeMixed + hpxml.site.moisture_type = HPXML::SiteSoilMoistureTypeDry hpxml.site.moisture_type_isdefaulted = true end if hpxml.site.ground_conductivity.nil? && hpxml.site.ground_diffusivity.nil? - if hpxml.site.soil_type == HPXML::SiteSoilSoilTypeUnknown - hpxml.site.ground_conductivity = 1.0 # Btu/hr-ft-F - hpxml.site.ground_conductivity_isdefaulted = true - - hpxml.site.ground_diffusivity = 0.0208 # ft^2/hr - hpxml.site.ground_diffusivity_isdefaulted = true - elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeSand - if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed - conductivity = UnitConversions.convert(0.8657, 'w/(m*k)', 'btu/(hr*ft*r)') - density = UnitConversions.convert(1601.8, 'kg/m^3', 'lbm/ft^3') - specific_heat = UnitConversions.convert(1.046 * 1000.0, 'j/(kg*k)', 'btu/(lbm*r)') - - hpxml.site.ground_conductivity = conductivity # Btu/hr-ft-F + if hpxml.site.soil_type == HPXML::SiteSoilSoilTypeSand + if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry + hpxml.site.ground_conductivity = 0.231 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = conductivity / (density * specific_heat) # ft^2/hr + hpxml.site.ground_diffusivity = 0.009 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeWet - fail 'Defaulting ground conductivity and diffusivity for wet sand is currently not supported.' - elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry - conductivity = UnitConversions.convert(0.3445, 'w/(m*k)', 'btu/(hr*ft*r)') - density = UnitConversions.convert(1441.6, 'kg/m^3', 'lbm/ft^3') - specific_heat = UnitConversions.convert(0.836 * 1000.0, 'j/(kg*k)', 'btu/(lbm*r)') - - hpxml.site.ground_conductivity = conductivity # Btu/hr-ft-F + hpxml.site.ground_conductivity = 1.386 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = conductivity / (density * specific_heat) # ft^2/hr + hpxml.site.ground_diffusivity = 0.032 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true end - elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeClay - if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed - conductivity = UnitConversions.convert(1.2982, 'w/(m*k)', 'btu/(hr*ft*r)') - density = UnitConversions.convert(2098.4, 'kg/m^3', 'lbm/ft^3') - specific_heat = UnitConversions.convert(0.962 * 1000.0, 'j/(kg*k)', 'btu/(lbm*r)') - - hpxml.site.ground_conductivity = conductivity # Btu/hr-ft-F + elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeSilt || hpxml.site.soil_type == HPXML::SiteSoilSoilTypeClay + if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry + hpxml.site.ground_conductivity = 0.288 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = conductivity / (density * specific_heat) # ft^2/hr + hpxml.site.ground_diffusivity = 0.012 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeWet - conductivity = UnitConversions.convert(2.4234, 'w/(m*k)', 'btu/(hr*ft*r)') - density = UnitConversions.convert(3203.6, 'kg/m^3', 'lbm/ft^3') - specific_heat = UnitConversions.convert(0.836 * 1000.0, 'j/(kg*k)', 'btu/(lbm*r)') - - hpxml.site.ground_conductivity = conductivity # Btu/hr-ft-F + hpxml.site.ground_conductivity = 0.982 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = conductivity / (density * specific_heat) # ft^2/hr + hpxml.site.ground_diffusivity = 0.019 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true - elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry - conductivity = UnitConversions.convert(0.8957, 'w/(m*k)', 'btu/(hr*ft*r)') - density = UnitConversions.convert(1601.8, 'kg/m^3', 'lbm/ft^3') - specific_heat = UnitConversions.convert(1.046 * 1000.0, 'j/(kg*k)', 'btu/(lbm*r)') + end + elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeLoam + hpxml.site.ground_conductivity = 1.213 # Btu/hr-ft-F + hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_conductivity = conductivity # Btu/hr-ft-F + hpxml.site.ground_diffusivity = 0.035 # ft^2/hr + hpxml.site.ground_diffusivity_isdefaulted = true + elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeGravel + if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry + hpxml.site.ground_conductivity = 0.231 # Btu/hr-ft-F + hpxml.site.ground_conductivity_isdefaulted = true + + hpxml.site.ground_diffusivity = 0.009 # ft^2/hr + hpxml.site.ground_diffusivity_isdefaulted = true + elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeWet + hpxml.site.ground_conductivity = 1.039 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = conductivity / (density * specific_heat) # ft^2/hr + hpxml.site.ground_diffusivity = 0.029 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true end + elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeUnknown + hpxml.site.ground_conductivity = 1.0 # Btu/hr-ft-F + hpxml.site.ground_conductivity_isdefaulted = true + + hpxml.site.ground_diffusivity = 0.0208 # ft^2/hr + hpxml.site.ground_diffusivity_isdefaulted = true end elsif hpxml.site.ground_conductivity.nil? hpxml.site.ground_conductivity = 1.0 # Btu/hr-ft-F diff --git a/HPXMLtoOpenStudio/resources/unit_conversions.rb b/HPXMLtoOpenStudio/resources/unit_conversions.rb index 7c72624a58..17cb4db53e 100644 --- a/HPXMLtoOpenStudio/resources/unit_conversions.rb +++ b/HPXMLtoOpenStudio/resources/unit_conversions.rb @@ -69,6 +69,7 @@ class UnitConversions ['ft^2', 'in^2'] => 144.0, ['ft^2', 'm^2'] => 0.09290304, ['m^2', 'ft^2'] => 1.0 / 0.09290304, + ['m^2/s', 'ft^2/hr'] => 38750.1, # Volume ['ft^3', 'gal'] => 7.480519480579059, From da0c3b073a62ae5079f9f5860da00b469ddbcf09 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 10 Aug 2023 09:57:44 -0700 Subject: [PATCH 106/217] Update the docs and sample files. --- docs/source/workflow_inputs.rst | 29 +- workflow/hpxml_inputs.json | 20 - ...isc-soil-type-clay-moisture-type-mixed.xml | 563 ------------------ ...-misc-soil-type-clay-moisture-type-wet.xml | 563 ------------------ ...-misc-soil-type-sand-moisture-type-dry.xml | 563 ------------------ ...isc-soil-type-sand-moisture-type-mixed.xml | 563 ------------------ 6 files changed, 17 insertions(+), 2284 deletions(-) delete mode 100644 workflow/sample_files/base-misc-soil-type-clay-moisture-type-mixed.xml delete mode 100644 workflow/sample_files/base-misc-soil-type-clay-moisture-type-wet.xml delete mode 100644 workflow/sample_files/base-misc-soil-type-sand-moisture-type-dry.xml delete mode 100644 workflow/sample_files/base-misc-soil-type-sand-moisture-type-mixed.xml diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 8a1270d221..baef6aeb66 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -550,25 +550,30 @@ Soil information is entered in ``Soil``. Element Type Units Constraints Required Default Notes ================================================================== ================ =========== =============== ======== ======== ============================================================ ``SoilType`` or ``Conductivity`` or ``extension/Diffusivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No unknown Soil type or themal conductivity [#]_ or diffusivity [#]_ - ``MoistureType`` or ``Conductivity`` or ``extension/Diffusivity`` string or double ft2/hr See [#]_ or > 0 No mixed Moisture type or conductivity or diffusivity [#]_ + ``MoistureType`` or ``Conductivity`` or ``extension/Diffusivity`` string or double ft2/hr See [#]_ or > 0 No dry Moisture type or conductivity or diffusivity [#]_ ================================================================== ================ =========== =============== ======== ======== ============================================================ - .. [#] SoilType choices are "unknown", "sand", or "clay". + .. [#] SoilType choices are "sand", "silt", "clay", "loam", "gravel", or "unknown". .. [#] Conductivity used for foundation heat transfer and ground source heat pumps. .. [#] Diffusivity used for ground source heat pumps. - .. [#] MoistureType choices are "mixed", "wet", or "dry". - .. [#] | If Conductivity and extension/Diffusivity not provided, defaults based on SoilType/MoistureType: - | - **unknown**, **mixed/wet/dry**: 1.0 Btu/hr-ft-F and 0.0208 ft2/hr - | - **sand**, **mixed**: 0.5 Btu/hr-ft-F and 0.02 ft2/hr - | - **sand**, **wet**: Not supported - | - **sand**, **dry**: 0.199 Btu/hr-ft-F and 0.0111 ft2/hr - | - **clay**, **mixed**: 0.75 Btu/hr-ft-F and 0.0249 ft2/hr - | - **clay**, **wet**: 1.4 Btu/hr-ft-F and 0.0351 ft2/hr - | - **clay**, **dry**: 0.5174 Btu/hr-ft-F and 0.0207 ft2/hr + .. [#] MoistureType choices are "wet" or "dry". + .. [#] If Conductivity and extension/Diffusivity not provided, defaults based on SoilType/MoistureType as follows: + + ============ ============== ========================== ============= + SoilType MoistureType Conductivity [Btu/hr-ft-F] extension/Diffusivity [ft2/hr] + ============ ============== ========================== ============= + sand/gravel dry 0.231 0.009 + sand wet 1.386 0.032 + silt/clay dry 0.288 0.012 + silt/clay wet 0.982 0.019 + loam dry/wet 1.213 0.035 + gravel wet 1.039 0.029 + unknown dry/wet 1.0 0.0208 + ============ ============== ========================== ============= .. note:: - Default Conductivity and extension/Diffusivity values based on SoilType/MoistureType provided by GLHEPro. + Default Conductivity and extension/Diffusivity values based on SoilType/MoistureType provided by https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4813881/ (with the exception of "unknown"). For each neighboring building defined, additional information is entered in a ``extension/Neighbors/NeighborBuilding``. diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 4952eb693b..317a86025c 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -3104,26 +3104,6 @@ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "site_ground_diffusivity": 0.03 }, - "sample_files/base-misc-soil-type-sand-moisture-type-mixed.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "sand", - "site_moisture_type": "mixed" - }, - "sample_files/base-misc-soil-type-sand-moisture-type-dry.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "sand", - "site_moisture_type": "dry" - }, - "sample_files/base-misc-soil-type-clay-moisture-type-mixed.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "clay", - "site_moisture_type": "mixed" - }, - "sample_files/base-misc-soil-type-clay-moisture-type-wet.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "clay", - "site_moisture_type": "wet" - }, "sample_files/base-misc-soil-type-clay-moisture-type-dry.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "site_soil_type": "clay", diff --git a/workflow/sample_files/base-misc-soil-type-clay-moisture-type-mixed.xml b/workflow/sample_files/base-misc-soil-type-clay-moisture-type-mixed.xml deleted file mode 100644 index 6743ca1b63..0000000000 --- a/workflow/sample_files/base-misc-soil-type-clay-moisture-type-mixed.xml +++ /dev/null @@ -1,563 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - clay - mixed - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-clay-moisture-type-wet.xml b/workflow/sample_files/base-misc-soil-type-clay-moisture-type-wet.xml deleted file mode 100644 index 2c09c0fdd9..0000000000 --- a/workflow/sample_files/base-misc-soil-type-clay-moisture-type-wet.xml +++ /dev/null @@ -1,563 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - clay - wet - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-sand-moisture-type-dry.xml b/workflow/sample_files/base-misc-soil-type-sand-moisture-type-dry.xml deleted file mode 100644 index 05e10c4a08..0000000000 --- a/workflow/sample_files/base-misc-soil-type-sand-moisture-type-dry.xml +++ /dev/null @@ -1,563 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - sand - dry - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-sand-moisture-type-mixed.xml b/workflow/sample_files/base-misc-soil-type-sand-moisture-type-mixed.xml deleted file mode 100644 index a761089ccf..0000000000 --- a/workflow/sample_files/base-misc-soil-type-sand-moisture-type-mixed.xml +++ /dev/null @@ -1,563 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - sand - mixed - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file From da27f7f302fb6360c61dd553c71af85f777e82e7 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 10 Aug 2023 11:38:35 -0700 Subject: [PATCH 107/217] Try wet clay sample file instead. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- workflow/hpxml_inputs.json | 4 ++-- ...y.xml => base-misc-soil-type-clay-moisture-type-wet.xml} | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) rename workflow/sample_files/{base-misc-soil-type-clay-moisture-type-dry.xml => base-misc-soil-type-clay-moisture-type-wet.xml} (99%) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index e581fcd901..3521f36444 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 2237ee95-acca-40ca-95e0-49cdde920c18 - 2023-08-10T16:59:01Z + 862eebf5-14fc-4caa-a219-3f2972579097 + 2023-08-10T17:58:03Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -322,7 +322,7 @@ hvac_sizing.rb rb resource - 0FEB5BF8 + DE6E3D3C
lighting.rb diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 5a2c39ca72..7a90b0b078 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -3108,10 +3108,10 @@ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "site_ground_diffusivity": 0.03 }, - "sample_files/base-misc-soil-type-clay-moisture-type-dry.xml": { + "sample_files/base-misc-soil-type-clay-moisture-type-wet.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "site_soil_type": "clay", - "site_moisture_type": "dry" + "site_moisture_type": "wet" }, "sample_files/base-misc-loads-large-uncommon.xml": { "parent_hpxml": "sample_files/base-schedules-simple.xml", diff --git a/workflow/sample_files/base-misc-soil-type-clay-moisture-type-dry.xml b/workflow/sample_files/base-misc-soil-type-clay-moisture-type-wet.xml similarity index 99% rename from workflow/sample_files/base-misc-soil-type-clay-moisture-type-dry.xml rename to workflow/sample_files/base-misc-soil-type-clay-moisture-type-wet.xml index 7e5e4c6a67..2c09c0fdd9 100644 --- a/workflow/sample_files/base-misc-soil-type-clay-moisture-type-dry.xml +++ b/workflow/sample_files/base-misc-soil-type-clay-moisture-type-wet.xml @@ -42,7 +42,7 @@ clay - dry + wet From 4550f9caef7c2a1d3fb89c0980080bc45bb68e77 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 10 Aug 2023 19:40:42 +0000 Subject: [PATCH 108/217] Latest results. --- workflow/tests/base_results/results.csv | 6 +----- workflow/tests/base_results/results_bills.csv | 6 +----- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 5b926eeb7d..9ca9b33078 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -390,11 +390,7 @@ base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0, base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 -base-misc-soil-type-clay-moisture-type-dry.xml,38.242,38.242,38.242,38.242,0.0,0.0,0.0,0.0,0.0,0.0,4.025,0.321,0.0,0.0,2.455,1.003,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,0.0,14.955,0.0,12.585,9.233,0.612,0.0,0.0,0.0,0.0,3068.6,2594.5,3068.6,19.017,14.963,0.0,3.68,3.696,0.52,6.799,0.642,10.676,-12.503,0.0,0.0,0.0,4.316,-0.06,4.825,0.0,0.732,0.0,2.658,-8.868,-2.492,0.0,-0.018,-0.486,-0.055,1.805,-0.033,-2.017,11.78,0.0,0.0,0.0,-5.354,-0.055,-1.195,-3.117,-0.17,0.0,1.777,7.908,2.017,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,30314.0,7488.0,7508.0,0.0,575.0,6026.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-clay-moisture-type-mixed.xml,38.938,38.938,38.938,38.938,0.0,0.0,0.0,0.0,0.0,0.0,4.675,0.369,0.0,0.0,2.445,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,0.0,17.417,0.0,12.515,9.233,0.613,0.0,0.0,0.0,0.0,3153.5,2716.9,3153.5,20.09,14.776,0.0,3.635,3.663,0.516,7.212,0.634,10.584,-12.53,0.0,0.0,0.0,6.246,-0.062,4.812,0.0,0.73,0.0,3.035,-8.891,-2.496,0.0,0.001,-0.467,-0.052,2.32,-0.028,-1.956,11.753,0.0,0.0,0.0,-6.024,-0.058,-1.178,-3.079,-0.167,0.0,1.758,7.886,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,30791.0,7499.0,7508.0,0.0,575.0,6491.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-clay-moisture-type-wet.xml,40.835,40.835,40.835,40.835,0.0,0.0,0.0,0.0,0.0,0.0,6.257,0.49,0.0,0.0,2.571,1.076,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.484,0.0,13.125,9.233,0.615,0.0,0.0,0.0,0.0,3336.5,2731.3,3336.5,22.616,14.778,0.0,3.544,3.597,0.506,7.793,0.621,10.408,-12.573,0.0,0.0,0.0,11.302,-0.063,4.797,0.0,0.726,0.0,3.927,-8.928,-2.504,0.0,0.023,-0.443,-0.049,3.11,-0.02,-1.875,11.71,0.0,0.0,0.0,-6.363,-0.06,-1.151,-3.047,-0.162,0.0,1.799,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31533.0,7515.0,7508.0,0.0,575.0,7218.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-sand-moisture-type-dry.xml,37.124,37.124,37.124,37.124,0.0,0.0,0.0,0.0,0.0,0.0,2.881,0.201,0.0,0.0,2.57,1.036,9.159,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.645,0.0,13.361,9.233,0.609,0.0,0.0,0.0,0.0,2901.2,2538.6,2901.2,16.924,15.409,0.0,3.78,3.77,0.531,5.462,0.656,10.863,-12.451,0.0,0.0,0.0,1.639,-0.042,4.866,0.0,0.739,0.0,1.767,-8.8,-2.478,0.0,-0.08,-0.543,-0.063,0.63,-0.05,-2.211,11.832,0.0,0.0,0.0,-3.115,-0.036,-1.251,-3.26,-0.178,0.0,1.881,7.972,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29172.0,7471.0,7508.0,0.0,575.0,4900.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-sand-moisture-type-mixed.xml,38.089,38.089,38.089,38.089,0.0,0.0,0.0,0.0,0.0,0.0,3.919,0.271,0.0,0.0,2.457,1.004,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,0.0,14.48,0.0,12.605,9.233,0.612,0.0,0.0,0.0,0.0,3040.9,2722.5,3040.9,18.679,14.982,0.0,3.692,3.698,0.521,6.758,0.642,10.683,-12.494,0.0,0.0,0.0,4.168,-0.061,4.825,0.0,0.732,0.0,2.337,-8.865,-2.491,0.0,-0.022,-0.489,-0.055,1.758,-0.034,-2.023,11.789,0.0,0.0,0.0,-5.282,-0.056,-1.198,-3.121,-0.171,0.0,1.78,7.911,2.018,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,30279.0,7496.0,7508.0,0.0,575.0,5983.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-clay-moisture-type-wet.xml,39.485,39.485,39.485,39.485,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.358,0.0,0.0,2.461,1.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.658,9.233,0.614,0.0,0.0,0.0,0.0,3203.8,2576.3,3203.8,20.79,14.695,0.0,3.61,3.635,0.512,7.481,0.629,10.51,-12.551,0.0,0.0,0.0,8.129,-0.063,4.804,0.0,0.728,0.0,3.023,-8.907,-2.499,0.0,0.012,-0.456,-0.051,2.682,-0.024,-1.919,11.732,0.0,0.0,0.0,-6.303,-0.059,-1.166,-3.061,-0.165,0.0,1.761,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31125.0,7506.0,7508.0,0.0,575.0,6818.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,24.753,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.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 03f895525a..07e3c7f396 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -390,11 +390,7 @@ base-misc-loads-none.xml,1500.61,144.0,906.92,0.0,1050.92,144.0,305.69,449.69,0. base-misc-neighbor-shading-bldgtype-multifamily.xml,1238.88,144.0,941.51,0.0,1085.51,144.0,9.37,153.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-neighbor-shading.xml,1870.95,144.0,1307.23,0.0,1451.23,144.0,275.72,419.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-shielding-of-home.xml,1849.15,144.0,1324.44,0.0,1468.44,144.0,236.71,380.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-clay-moisture-type-dry.xml,1547.49,144.0,1403.49,0.0,1547.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-clay-moisture-type-mixed.xml,1573.02,144.0,1429.02,0.0,1573.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-clay-moisture-type-wet.xml,1642.66,144.0,1498.66,0.0,1642.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-sand-moisture-type-dry.xml,1506.47,144.0,1362.47,0.0,1506.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-sand-moisture-type-mixed.xml,1541.88,144.0,1397.88,0.0,1541.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.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-soil-type-clay-moisture-type-wet.xml,1593.1,144.0,1449.1,0.0,1593.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-usage-multiplier.xml,3013.64,144.0,1863.4,0.0,2007.4,144.0,726.99,870.99,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,891.06,144.0,1347.84,-986.63,505.21,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-pv-battery-garage.xml,861.45,144.0,1300.8,-986.62,458.18,144.0,259.27,403.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 26224203512b69edcbc9439d76fedfa56041810f Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 10 Aug 2023 15:38:31 -0700 Subject: [PATCH 109/217] Update argument descriptions in build measure. --- BuildResidentialHPXML/measure.rb | 4 ++-- BuildResidentialHPXML/measure.xml | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index ee1a5171e6..e8475efdc3 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -152,7 +152,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('site_soil_type', site_soil_type_choices, false) arg.setDisplayName('Site: Soil Type') - arg.setDescription('TODO. If not provided, the OS-HPXML default is used.') + arg.setDescription('Type of ground soil. If not provided, the OS-HPXML default is used.') args << arg site_moisture_type_choices = OpenStudio::StringVector.new @@ -162,7 +162,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('site_moisture_type', site_moisture_type_choices, false) arg.setDisplayName('Site: Soil Moisture Type') - arg.setDescription('TODO. If not provided, the OS-HPXML default is used.') + arg.setDescription('Moisture level of the ground soil. If not provided, the OS-HPXML default is used.') args << arg arg = OpenStudio::Measure::OSArgument.makeStringArgument('site_zip_code', false) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 99d9930935..63ac3f758b 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 46c9f0c7-5ece-4598-9b25-b48e939de8e5 - 2023-08-10T16:59:00Z + 09608d6e-c740-4002-9f52-52aa9f1eb225 + 2023-08-10T22:20:10Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -206,7 +206,7 @@ site_soil_type Site: Soil Type - TODO. If not provided, the OS-HPXML default is used. + Type of ground soil. If not provided, the OS-HPXML default is used. Choice false false @@ -240,7 +240,7 @@ site_moisture_type Site: Soil Moisture Type - TODO. If not provided, the OS-HPXML default is used. + Moisture level of the ground soil. If not provided, the OS-HPXML default is used. Choice false false @@ -6899,7 +6899,7 @@ measure.rb rb script - B6221CEB + 2E539E78 geometry.rb From 12639ffcdf2ee6988c35f8e092576c3a6be37e04 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 10 Aug 2023 15:38:59 -0700 Subject: [PATCH 110/217] Add tests for defaults. --- HPXMLtoOpenStudio/measure.xml | 8 ++-- HPXMLtoOpenStudio/tests/test_defaults.rb | 33 ++++++++++++-- workflow/hpxml_inputs.json | 55 ++++++++++++++++++++++++ 3 files changed, 89 insertions(+), 7 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 3521f36444..f89ecfb439 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 862eebf5-14fc-4caa-a219-3f2972579097 - 2023-08-10T17:58:03Z + 960d86f2-120f-4975-ba2f-ea655f4515a1 + 2023-08-10T22:38:10Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -322,7 +322,7 @@ hvac_sizing.rb rb resource - DE6E3D3C + 0FEB5BF8 lighting.rb @@ -538,7 +538,7 @@ test_defaults.rb rb test - 88FA435D + B878C00E test_enclosure.rb diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index b362aadc88..4ebfc0e749 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -323,18 +323,35 @@ def test_site hpxml.site.shielding_of_home = HPXML::ShieldingExposed hpxml.site.ground_conductivity = 0.8 hpxml.site.ground_diffusivity = 0.9 + hpxml.site.soil_type = HPXML::SiteSoilSoilTypeClay + hpxml.site.moisture_type = HPXML::SiteSoilMoistureTypeDry XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, HPXML::SiteTypeRural, HPXML::ShieldingExposed, 0.8, 0.9) + _test_default_site_values(hpxml_default, HPXML::SiteTypeRural, HPXML::ShieldingExposed, 0.8, 0.9, HPXML::SiteSoilSoilTypeClay, HPXML::SiteSoilMoistureTypeDry) # Test defaults hpxml.site.site_type = nil hpxml.site.shielding_of_home = nil hpxml.site.ground_conductivity = nil hpxml.site.ground_diffusivity = nil + hpxml.site.soil_type = nil + hpxml.site.moisture_type = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.0, 0.0208) + _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.0, 0.0208, HPXML::SiteSoilSoilTypeUnknown, HPXML::SiteSoilMoistureTypeDry) + + # Test defaults w/ gravel soil type + hpxml.site.soil_type = HPXML::SiteSoilSoilTypeGravel + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + hpxml_default = _test_measure() + _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 0.231, 0.009, HPXML::SiteSoilSoilTypeGravel, HPXML::SiteSoilMoistureTypeDry) + + # Test defaults w/ conductivity but no diffusivity + hpxml.site.ground_conductivity = 0.8 + hpxml.site.soil_type = nil + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + hpxml_default = _test_measure() + _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 0.8, 0.0208, nil, nil) end def test_neighbor_buildings @@ -3730,11 +3747,21 @@ def _test_default_bills_values(scenario, end end - def _test_default_site_values(hpxml, site_type, shielding_of_home, ground_conductivity, ground_diffusivity) + def _test_default_site_values(hpxml, site_type, shielding_of_home, ground_conductivity, ground_diffusivity, soil_type, moisture_type) assert_equal(site_type, hpxml.site.site_type) assert_equal(shielding_of_home, hpxml.site.shielding_of_home) assert_equal(ground_conductivity, hpxml.site.ground_conductivity) assert_equal(ground_diffusivity, hpxml.site.ground_diffusivity) + if soil_type.nil? + assert_nil(hpxml.site.soil_type) + else + assert_equal(soil_type, hpxml.site.soil_type) + end + if moisture_type.nil? + assert_nil(hpxml.site.moisture_type) + else + assert_equal(moisture_type, hpxml.site.moisture_type) + end end def _test_default_neighbor_building_values(hpxml, azimuths) diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 7a90b0b078..ce78035171 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -3108,11 +3108,66 @@ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "site_ground_diffusivity": 0.03 }, + "sample_files/base-misc-soil-type-sand-moisture-type-wet.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "sand", + "site_moisture_type": "wet" + }, + "sample_files/base-misc-soil-type-sand-moisture-type-dry.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "sand", + "site_moisture_type": "dry" + }, + "sample_files/base-misc-soil-type-silt-moisture-type-wet.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "silt", + "site_moisture_type": "wet" + }, + "sample_files/base-misc-soil-type-silt-moisture-type-dry.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "silt", + "site_moisture_type": "dry" + }, "sample_files/base-misc-soil-type-clay-moisture-type-wet.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "site_soil_type": "clay", "site_moisture_type": "wet" }, + "sample_files/base-misc-soil-type-clay-moisture-type-dry.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "clay", + "site_moisture_type": "dry" + }, + "sample_files/base-misc-soil-type-loam-moisture-type-wet.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "loam", + "site_moisture_type": "wet" + }, + "sample_files/base-misc-soil-type-loam-moisture-type-dry.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "loam", + "site_moisture_type": "dry" + }, + "sample_files/base-misc-soil-type-gravel-moisture-type-wet.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "gravel", + "site_moisture_type": "wet" + }, + "sample_files/base-misc-soil-type-gravel-moisture-type-dry.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "gravel", + "site_moisture_type": "dry" + }, + "sample_files/base-misc-soil-type-unknown-moisture-type-wet.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "unknown", + "site_moisture_type": "wet" + }, + "sample_files/base-misc-soil-type-unknown-moisture-type-dry.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "unknown", + "site_moisture_type": "dry" + }, "sample_files/base-misc-loads-large-uncommon.xml": { "parent_hpxml": "sample_files/base-schedules-simple.xml", "extra_refrigerator_present": true, From 49939722d728b079efefa871e3c9fde0079a95ea Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 10 Aug 2023 16:30:48 -0700 Subject: [PATCH 111/217] Updates for active length adjustments. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 7 ++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index f89ecfb439..93e6663610 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 960d86f2-120f-4975-ba2f-ea655f4515a1 - 2023-08-10T22:38:10Z + 5d1404e7-0235-43a6-927c-96285e8bc94f + 2023-08-10T23:28:35Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -322,7 +322,7 @@ hvac_sizing.rb rb resource - 0FEB5BF8 + 6D34EBAE lighting.rb diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 9afd295c1c..11795de3ac 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1915,17 +1915,18 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) bore_length = [bore_length_heat, bore_length_cool].max bore_depth = (bore_length / num_bore_holes).floor # ft + active_length = 5 # the active length starts about 5 ft below the surface for _i in 0..4 - if (bore_depth < min_bore_depth) && (num_bore_holes > 1) + if (bore_depth + active_length < min_bore_depth) && (num_bore_holes > 1) num_bore_holes -= 1 bore_depth = (bore_length / num_bore_holes).floor - elsif bore_depth > max_bore_depth + elsif bore_depth + active_length > max_bore_depth num_bore_holes += 1 bore_depth = (bore_length / num_bore_holes).floor end end - bore_depth = (bore_length / num_bore_holes).floor + 5 # FIXME: why add the 5? + bore_depth = (bore_length / num_bore_holes).floor + active_length end if (bore_depth < min_bore_depth) || (bore_depth > max_bore_depth) From 225de1f58e6ae3524c37261d6c438d4886e9b4c6 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 10 Aug 2023 16:31:01 -0700 Subject: [PATCH 112/217] Generate whole set of soil/moisture sample files for testing. --- ...-misc-soil-type-clay-moisture-type-dry.xml | 563 ++++++++++++++++++ ...isc-soil-type-gravel-moisture-type-dry.xml | 563 ++++++++++++++++++ ...isc-soil-type-gravel-moisture-type-wet.xml | 563 ++++++++++++++++++ ...-misc-soil-type-loam-moisture-type-dry.xml | 563 ++++++++++++++++++ ...-misc-soil-type-loam-moisture-type-wet.xml | 563 ++++++++++++++++++ ...-misc-soil-type-sand-moisture-type-dry.xml | 563 ++++++++++++++++++ ...-misc-soil-type-sand-moisture-type-wet.xml | 563 ++++++++++++++++++ ...-misc-soil-type-silt-moisture-type-dry.xml | 563 ++++++++++++++++++ ...-misc-soil-type-silt-moisture-type-wet.xml | 563 ++++++++++++++++++ ...sc-soil-type-unknown-moisture-type-dry.xml | 563 ++++++++++++++++++ ...sc-soil-type-unknown-moisture-type-wet.xml | 563 ++++++++++++++++++ 11 files changed, 6193 insertions(+) create mode 100644 workflow/sample_files/base-misc-soil-type-clay-moisture-type-dry.xml create mode 100644 workflow/sample_files/base-misc-soil-type-gravel-moisture-type-dry.xml create mode 100644 workflow/sample_files/base-misc-soil-type-gravel-moisture-type-wet.xml create mode 100644 workflow/sample_files/base-misc-soil-type-loam-moisture-type-dry.xml create mode 100644 workflow/sample_files/base-misc-soil-type-loam-moisture-type-wet.xml create mode 100644 workflow/sample_files/base-misc-soil-type-sand-moisture-type-dry.xml create mode 100644 workflow/sample_files/base-misc-soil-type-sand-moisture-type-wet.xml create mode 100644 workflow/sample_files/base-misc-soil-type-silt-moisture-type-dry.xml create mode 100644 workflow/sample_files/base-misc-soil-type-silt-moisture-type-wet.xml create mode 100644 workflow/sample_files/base-misc-soil-type-unknown-moisture-type-dry.xml create mode 100644 workflow/sample_files/base-misc-soil-type-unknown-moisture-type-wet.xml diff --git a/workflow/sample_files/base-misc-soil-type-clay-moisture-type-dry.xml b/workflow/sample_files/base-misc-soil-type-clay-moisture-type-dry.xml new file mode 100644 index 0000000000..7e5e4c6a67 --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-clay-moisture-type-dry.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + clay + dry + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-gravel-moisture-type-dry.xml b/workflow/sample_files/base-misc-soil-type-gravel-moisture-type-dry.xml new file mode 100644 index 0000000000..8dde8329d0 --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-gravel-moisture-type-dry.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + gravel + dry + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-gravel-moisture-type-wet.xml b/workflow/sample_files/base-misc-soil-type-gravel-moisture-type-wet.xml new file mode 100644 index 0000000000..27c3009c06 --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-gravel-moisture-type-wet.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + gravel + wet + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-loam-moisture-type-dry.xml b/workflow/sample_files/base-misc-soil-type-loam-moisture-type-dry.xml new file mode 100644 index 0000000000..b61a7c06a9 --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-loam-moisture-type-dry.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + loam + dry + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-loam-moisture-type-wet.xml b/workflow/sample_files/base-misc-soil-type-loam-moisture-type-wet.xml new file mode 100644 index 0000000000..ec542966e3 --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-loam-moisture-type-wet.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + loam + wet + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-sand-moisture-type-dry.xml b/workflow/sample_files/base-misc-soil-type-sand-moisture-type-dry.xml new file mode 100644 index 0000000000..05e10c4a08 --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-sand-moisture-type-dry.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + sand + dry + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-sand-moisture-type-wet.xml b/workflow/sample_files/base-misc-soil-type-sand-moisture-type-wet.xml new file mode 100644 index 0000000000..4726687d24 --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-sand-moisture-type-wet.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + sand + wet + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-silt-moisture-type-dry.xml b/workflow/sample_files/base-misc-soil-type-silt-moisture-type-dry.xml new file mode 100644 index 0000000000..33cd98ed72 --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-silt-moisture-type-dry.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + silt + dry + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-silt-moisture-type-wet.xml b/workflow/sample_files/base-misc-soil-type-silt-moisture-type-wet.xml new file mode 100644 index 0000000000..0ae94a11a7 --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-silt-moisture-type-wet.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + silt + wet + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-unknown-moisture-type-dry.xml b/workflow/sample_files/base-misc-soil-type-unknown-moisture-type-dry.xml new file mode 100644 index 0000000000..46a2706f6e --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-unknown-moisture-type-dry.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + unknown + dry + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-unknown-moisture-type-wet.xml b/workflow/sample_files/base-misc-soil-type-unknown-moisture-type-wet.xml new file mode 100644 index 0000000000..396b30e914 --- /dev/null +++ b/workflow/sample_files/base-misc-soil-type-unknown-moisture-type-wet.xml @@ -0,0 +1,563 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + unknown + wet + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 36000.0 + 36000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 36000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + + 30.0 + + + + + vertical + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file From 8fbb35ceb8d5757f668776309e591ab8899b31d6 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 11 Aug 2023 00:58:15 +0000 Subject: [PATCH 113/217] Latest results. --- workflow/tests/base_results/results.csv | 11 +++++++++++ workflow/tests/base_results/results_bills.csv | 11 +++++++++++ 2 files changed, 22 insertions(+) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 9ca9b33078..4f50f4f1c0 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -390,7 +390,18 @@ base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0, base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 +base-misc-soil-type-clay-moisture-type-dry.xml,37.429,37.429,37.429,37.429,0.0,0.0,0.0,0.0,0.0,0.0,3.228,0.224,0.0,0.0,2.518,1.022,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.934,0.0,13.054,9.233,0.61,0.0,0.0,0.0,0.0,2946.3,2595.5,2946.3,17.507,15.269,0.0,3.743,3.739,0.527,6.023,0.649,10.779,-12.459,0.0,0.0,0.0,2.396,-0.047,4.844,0.0,0.735,0.0,1.959,-8.813,-2.481,0.0,-0.06,-0.525,-0.06,1.045,-0.045,-2.151,11.824,0.0,0.0,0.0,-3.952,-0.041,-1.234,-3.2,-0.176,0.0,1.841,7.961,2.029,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29590.0,7481.0,7508.0,0.0,575.0,5309.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-soil-type-clay-moisture-type-wet.xml,39.485,39.485,39.485,39.485,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.358,0.0,0.0,2.461,1.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.658,9.233,0.614,0.0,0.0,0.0,0.0,3203.8,2576.3,3203.8,20.79,14.695,0.0,3.61,3.635,0.512,7.481,0.629,10.51,-12.551,0.0,0.0,0.0,8.129,-0.063,4.804,0.0,0.728,0.0,3.023,-8.907,-2.499,0.0,0.012,-0.456,-0.051,2.682,-0.024,-1.919,11.732,0.0,0.0,0.0,-6.303,-0.059,-1.166,-3.061,-0.165,0.0,1.761,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31125.0,7506.0,7508.0,0.0,575.0,6818.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-gravel-moisture-type-dry.xml,37.307,37.307,37.307,37.307,0.0,0.0,0.0,0.0,0.0,0.0,3.055,0.248,0.0,0.0,2.539,1.03,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,0.0,13.241,9.233,0.609,0.0,0.0,0.0,0.0,2935.4,2576.6,2935.4,17.385,15.348,0.0,3.755,3.756,0.529,5.692,0.653,10.826,-12.451,0.0,0.0,0.0,1.912,-0.043,4.856,0.0,0.737,0.0,2.08,-8.802,-2.478,0.0,-0.074,-0.537,-0.062,0.789,-0.048,-2.192,11.832,0.0,0.0,0.0,-3.436,-0.037,-1.245,-3.237,-0.178,0.0,1.864,7.971,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5059.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-gravel-moisture-type-wet.xml,39.799,39.799,39.799,39.799,0.0,0.0,0.0,0.0,0.0,0.0,5.415,0.425,0.0,0.0,2.484,1.034,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.251,0.0,12.713,9.233,0.614,0.0,0.0,0.0,0.0,3233.2,2584.3,3233.2,21.278,14.7,0.0,3.589,3.629,0.511,7.534,0.627,10.492,-12.551,0.0,0.0,0.0,8.575,-0.062,4.802,0.0,0.728,0.0,3.456,-8.907,-2.499,0.0,0.013,-0.454,-0.051,2.754,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.34,-0.058,-1.165,-3.058,-0.165,0.0,1.767,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31193.0,7508.0,7508.0,0.0,575.0,6884.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-loam-moisture-type-dry.xml,40.312,40.312,40.312,40.312,0.0,0.0,0.0,0.0,0.0,0.0,5.833,0.457,0.0,0.0,2.526,1.054,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,12.9,9.233,0.615,0.0,0.0,0.0,0.0,3285.5,2725.0,3285.5,21.947,14.712,0.0,3.566,3.613,0.508,7.674,0.624,10.447,-12.564,0.0,0.0,0.0,9.914,-0.061,4.799,0.0,0.727,0.0,3.69,-8.918,-2.502,0.0,0.019,-0.448,-0.05,2.945,-0.022,-1.895,11.719,0.0,0.0,0.0,-6.384,-0.058,-1.158,-3.052,-0.163,0.0,1.781,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31373.0,7512.0,7508.0,0.0,575.0,7061.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-loam-moisture-type-wet.xml,40.312,40.312,40.312,40.312,0.0,0.0,0.0,0.0,0.0,0.0,5.833,0.457,0.0,0.0,2.526,1.054,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,12.9,9.233,0.615,0.0,0.0,0.0,0.0,3285.5,2725.0,3285.5,21.947,14.712,0.0,3.566,3.613,0.508,7.674,0.624,10.447,-12.564,0.0,0.0,0.0,9.914,-0.061,4.799,0.0,0.727,0.0,3.69,-8.918,-2.502,0.0,0.019,-0.448,-0.05,2.945,-0.022,-1.895,11.719,0.0,0.0,0.0,-6.384,-0.058,-1.158,-3.052,-0.163,0.0,1.781,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31373.0,7512.0,7508.0,0.0,575.0,7061.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-sand-moisture-type-dry.xml,37.307,37.307,37.307,37.307,0.0,0.0,0.0,0.0,0.0,0.0,3.055,0.248,0.0,0.0,2.539,1.03,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,0.0,13.241,9.233,0.609,0.0,0.0,0.0,0.0,2935.4,2576.6,2935.4,17.385,15.348,0.0,3.755,3.756,0.529,5.692,0.653,10.826,-12.451,0.0,0.0,0.0,1.912,-0.043,4.856,0.0,0.737,0.0,2.08,-8.802,-2.478,0.0,-0.074,-0.537,-0.062,0.789,-0.048,-2.192,11.832,0.0,0.0,0.0,-3.436,-0.037,-1.245,-3.237,-0.178,0.0,1.864,7.971,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5059.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-sand-moisture-type-wet.xml,40.657,40.657,40.657,40.657,0.0,0.0,0.0,0.0,0.0,0.0,6.151,0.426,0.0,0.0,2.565,1.074,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,0.0,13.107,9.233,0.615,0.0,0.0,0.0,0.0,3312.4,2729.1,3312.4,22.331,14.763,0.0,3.558,3.598,0.506,7.785,0.621,10.411,-12.573,0.0,0.0,0.0,11.201,-0.063,4.797,0.0,0.726,0.0,3.53,-8.928,-2.504,0.0,0.022,-0.443,-0.049,3.099,-0.02,-1.875,11.71,0.0,0.0,0.0,-6.366,-0.06,-1.151,-3.047,-0.162,0.0,1.798,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31522.0,7515.0,7508.0,0.0,575.0,7207.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-silt-moisture-type-dry.xml,37.429,37.429,37.429,37.429,0.0,0.0,0.0,0.0,0.0,0.0,3.228,0.224,0.0,0.0,2.518,1.022,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.934,0.0,13.054,9.233,0.61,0.0,0.0,0.0,0.0,2946.3,2595.5,2946.3,17.507,15.269,0.0,3.743,3.739,0.527,6.023,0.649,10.779,-12.459,0.0,0.0,0.0,2.396,-0.047,4.844,0.0,0.735,0.0,1.959,-8.813,-2.481,0.0,-0.06,-0.525,-0.06,1.045,-0.045,-2.151,11.824,0.0,0.0,0.0,-3.952,-0.041,-1.234,-3.2,-0.176,0.0,1.841,7.961,2.029,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29590.0,7481.0,7508.0,0.0,575.0,5309.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-silt-moisture-type-wet.xml,39.485,39.485,39.485,39.485,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.358,0.0,0.0,2.461,1.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.658,9.233,0.614,0.0,0.0,0.0,0.0,3203.8,2576.3,3203.8,20.79,14.695,0.0,3.61,3.635,0.512,7.481,0.629,10.51,-12.551,0.0,0.0,0.0,8.129,-0.063,4.804,0.0,0.728,0.0,3.023,-8.907,-2.499,0.0,0.012,-0.456,-0.051,2.682,-0.024,-1.919,11.732,0.0,0.0,0.0,-6.303,-0.059,-1.166,-3.061,-0.165,0.0,1.761,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31125.0,7506.0,7508.0,0.0,575.0,6818.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-unknown-moisture-type-dry.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.1,2577.8,3210.1,20.865,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-unknown-moisture-type-wet.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.1,2577.8,3210.1,20.865,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,24.753,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.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 07e3c7f396..e1dc116592 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -390,7 +390,18 @@ base-misc-loads-none.xml,1500.61,144.0,906.92,0.0,1050.92,144.0,305.69,449.69,0. base-misc-neighbor-shading-bldgtype-multifamily.xml,1238.88,144.0,941.51,0.0,1085.51,144.0,9.37,153.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-neighbor-shading.xml,1870.95,144.0,1307.23,0.0,1451.23,144.0,275.72,419.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-shielding-of-home.xml,1849.15,144.0,1324.44,0.0,1468.44,144.0,236.71,380.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-clay-moisture-type-dry.xml,1517.67,144.0,1373.67,0.0,1517.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-soil-type-clay-moisture-type-wet.xml,1593.1,144.0,1449.1,0.0,1593.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-gravel-moisture-type-dry.xml,1513.19,144.0,1369.19,0.0,1513.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-gravel-moisture-type-wet.xml,1604.64,144.0,1460.64,0.0,1604.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-loam-moisture-type-dry.xml,1623.46,144.0,1479.46,0.0,1623.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-soil-type-loam-moisture-type-wet.xml,1623.46,144.0,1479.46,0.0,1623.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-soil-type-sand-moisture-type-dry.xml,1513.19,144.0,1369.19,0.0,1513.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-sand-moisture-type-wet.xml,1636.13,144.0,1492.13,0.0,1636.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-silt-moisture-type-dry.xml,1517.67,144.0,1373.67,0.0,1517.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-silt-moisture-type-wet.xml,1593.1,144.0,1449.1,0.0,1593.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-unknown-moisture-type-dry.xml,1595.19,144.0,1451.19,0.0,1595.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-unknown-moisture-type-wet.xml,1595.19,144.0,1451.19,0.0,1595.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-usage-multiplier.xml,3013.64,144.0,1863.4,0.0,2007.4,144.0,726.99,870.99,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,891.06,144.0,1347.84,-986.63,505.21,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-pv-battery-garage.xml,861.45,144.0,1300.8,-986.62,458.18,144.0,259.27,403.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 907dfec4dd431b50b9ae36c884c754338c64df76 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 17 Aug 2023 09:23:13 -0700 Subject: [PATCH 114/217] Allow mixed moisture type in build measure. --- BuildResidentialHPXML/measure.rb | 2 +- BuildResidentialHPXML/measure.xml | 652 +----------------------------- 2 files changed, 8 insertions(+), 646 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 1935b02489..e455375613 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -158,7 +158,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument site_moisture_type_choices = OpenStudio::StringVector.new site_moisture_type_choices << HPXML::SiteSoilMoistureTypeWet site_moisture_type_choices << HPXML::SiteSoilMoistureTypeDry - # site_moisture_type_choices << HPXML::SiteSoilMoistureTypeMixed + site_moisture_type_choices << HPXML::SiteSoilMoistureTypeMixed arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('site_moisture_type', site_moisture_type_choices, false) arg.setDisplayName('Site: Soil Moisture Type') diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 412385c71a..e639be5af3 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 5f46ce8e-3420-4057-9025-5d97e31224ea - 2023-08-16T19:52:31Z + 58079bd1-2c12-43f0-9f07-8f323a0b1a1a + 2023-08-17T16:22:44Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -253,6 +253,10 @@ dry dry + + mixed + mixed + @@ -6931,7 +6935,7 @@ measure.rb rb script - B37EFF7E + 24AD5F8B
geometry.rb @@ -6945,647 +6949,5 @@ test 4D646B5D - - extra_files/base-mf.osm - osm - test - 43C742D7 - - - extra_files/base-mf.xml - xml - test - 719386EA - - - extra_files/base-sfa.osm - osm - test - 3EDFF77E - - - extra_files/base-sfa.xml - xml - test - 15844D47 - - - extra_files/base-sfd.osm - osm - test - 0EDB7B89 - - - extra_files/base-sfd.xml - xml - test - FE3D9F28 - - - extra_files/extra-ashp-no-ducts.osm - osm - test - 1E5A4110 - - - extra_files/extra-ashp-no-ducts.xml - xml - test - 25A402A8 - - - extra_files/extra-auto-duct-locations.osm - osm - test - 5A934791 - - - extra_files/extra-auto-duct-locations.xml - xml - test - B1F3A9DC - - - extra_files/extra-auto.osm - osm - test - FE5602EB - - - extra_files/extra-auto.xml - xml - test - D0B6A33B - - - extra_files/extra-battery-attic.osm - osm - test - D51BE533 - - - extra_files/extra-battery-attic.xml - xml - test - 6F137499 - - - extra_files/extra-battery-crawlspace.osm - osm - test - 661D7D82 - - - extra_files/extra-battery-crawlspace.xml - xml - test - ECFD3417 - - - extra_files/extra-bills-fossil-fuel-rates.osm - osm - test - D0A3B97E - - - extra_files/extra-bills-fossil-fuel-rates.xml - xml - test - 1A8B031A - - - extra_files/extra-dhw-solar-latitude.osm - osm - test - A7C2B7BA - - - extra_files/extra-dhw-solar-latitude.xml - xml - test - E47F316F - - - extra_files/extra-ducts-attic.osm - osm - test - 220FC56C - - - extra_files/extra-ducts-attic.xml - xml - test - FE3D9F28 - - - extra_files/extra-ducts-crawlspace.osm - osm - test - 260BCFBA - - - extra_files/extra-ducts-crawlspace.xml - xml - test - 430A95DD - - - extra_files/extra-emissions-fossil-fuel-factors.osm - osm - test - 33A96DBA - - - extra_files/extra-emissions-fossil-fuel-factors.xml - xml - test - 8F5636CC - - - extra_files/extra-enclosure-atticroof-conditioned-eaves-gable.osm - osm - test - 2A261005 - - - extra_files/extra-enclosure-atticroof-conditioned-eaves-gable.xml - xml - test - 38EE4C4A - - - extra_files/extra-enclosure-atticroof-conditioned-eaves-hip.osm - osm - test - 59A8FD98 - - - extra_files/extra-enclosure-atticroof-conditioned-eaves-hip.xml - xml - test - 5E986A90 - - - extra_files/extra-enclosure-garage-atticroof-conditioned.osm - osm - test - B873462D - - - extra_files/extra-enclosure-garage-atticroof-conditioned.xml - xml - test - A030F529 - - - extra_files/extra-enclosure-garage-partially-protruded.osm - osm - test - 0731DCF4 - - - extra_files/extra-enclosure-garage-partially-protruded.xml - xml - test - 865956E0 - - - extra_files/extra-enclosure-windows-shading.osm - osm - test - ABA2497A - - - extra_files/extra-enclosure-windows-shading.xml - xml - test - D91EACCC - - - extra_files/extra-gas-hot-tub-heater-with-zero-kwh.osm - osm - test - 534EA5B4 - - - extra_files/extra-gas-hot-tub-heater-with-zero-kwh.xml - xml - test - 3191A21A - - - extra_files/extra-gas-pool-heater-with-zero-kwh.osm - osm - test - 30E10060 - - - extra_files/extra-gas-pool-heater-with-zero-kwh.xml - xml - test - 931A6FDB - - - extra_files/extra-iecc-zone-different-than-epw.osm - osm - test - 81D24049 - - - extra_files/extra-iecc-zone-different-than-epw.xml - xml - test - 07347C1B - - - extra_files/extra-mf-eaves.osm - osm - test - 4C9ACEAD - - - extra_files/extra-mf-eaves.xml - xml - test - 152EF3DC - - - extra_files/extra-no-rim-joists.osm - osm - test - EB05893C - - - extra_files/extra-no-rim-joists.xml - xml - test - B54B2849 - - - extra_files/extra-pv-roofpitch.osm - osm - test - 4073AE15 - - - extra_files/extra-pv-roofpitch.xml - xml - test - FE3D9F28 - - - extra_files/extra-seasons-building-america.osm - osm - test - ACB9D21D - - - extra_files/extra-seasons-building-america.xml - xml - test - C9400E71 - - - extra_files/extra-second-heating-system-boiler-to-heat-pump.osm - osm - test - 9ACA31BB - - - extra_files/extra-second-heating-system-boiler-to-heat-pump.xml - xml - test - A322C24A - - - extra_files/extra-second-heating-system-boiler-to-heating-system.osm - osm - test - A75DB09F - - - extra_files/extra-second-heating-system-boiler-to-heating-system.xml - xml - test - CEE89131 - - - extra_files/extra-second-heating-system-fireplace-to-heat-pump.osm - osm - test - C08D5F37 - - - extra_files/extra-second-heating-system-fireplace-to-heat-pump.xml - xml - test - D4E00BA9 - - - extra_files/extra-second-heating-system-fireplace-to-heating-system.osm - osm - test - F46F794B - - - extra_files/extra-second-heating-system-fireplace-to-heating-system.xml - xml - test - A1EEC11A - - - extra_files/extra-second-heating-system-portable-heater-to-heat-pump.osm - osm - test - B86804DD - - - extra_files/extra-second-heating-system-portable-heater-to-heat-pump.xml - xml - test - 54FC2482 - - - extra_files/extra-second-heating-system-portable-heater-to-heating-system.osm - osm - test - C0DF1D2D - - - extra_files/extra-second-heating-system-portable-heater-to-heating-system.xml - xml - test - B0A82DC2 - - - extra_files/extra-second-refrigerator.osm - osm - test - 099E9AD2 - - - extra_files/extra-second-refrigerator.xml - xml - test - FE3D9F28 - - - extra_files/extra-sfa-ambient.osm - osm - test - 5249563D - - - extra_files/extra-sfa-ambient.xml - xml - test - 28046C34 - - - extra_files/extra-sfa-atticroof-conditioned-eaves-gable.osm - osm - test - 0906C531 - - - extra_files/extra-sfa-atticroof-conditioned-eaves-gable.xml - xml - test - D5CB5CA3 - - - extra_files/extra-sfa-atticroof-conditioned-eaves-hip.osm - osm - test - E813C704 - - - extra_files/extra-sfa-atticroof-conditioned-eaves-hip.xml - xml - test - 7F3FA83C - - - extra_files/extra-sfa-atticroof-flat.osm - osm - test - 1357966B - - - extra_files/extra-sfa-atticroof-flat.xml - xml - test - 26DC7FE5 - - - extra_files/extra-sfa-conditioned-crawlspace.osm - osm - test - 16D4FC95 - - - extra_files/extra-sfa-conditioned-crawlspace.xml - xml - test - 0857C909 - - - extra_files/extra-sfa-exterior-corridor.osm - osm - test - D64B55B8 - - - extra_files/extra-sfa-exterior-corridor.xml - xml - test - 15844D47 - - - extra_files/extra-sfa-rear-units.osm - osm - test - 447EF571 - - - extra_files/extra-sfa-rear-units.xml - xml - test - 15844D47 - - - extra_files/extra-sfa-slab-middle.osm - osm - test - 71C2310B - - - extra_files/extra-sfa-slab-middle.xml - xml - test - 64326872 - - - extra_files/extra-sfa-slab-right.osm - osm - test - 8A025503 - - - extra_files/extra-sfa-slab-right.xml - xml - test - 64326872 - - - extra_files/extra-sfa-slab.osm - osm - test - A94189AF - - - extra_files/extra-sfa-slab.xml - xml - test - 4DAB400E - - - extra_files/extra-sfa-unconditioned-basement-middle.xml - xml - test - 93D236B9 - - - extra_files/extra-sfa-unconditioned-basement.osm - osm - test - 6321D9DB - - - extra_files/extra-sfa-unconditioned-basement.xml - xml - test - 0714A52B - - - extra_files/extra-sfa-unvented-crawlspace-middle.osm - osm - test - 839CB2FA - - - extra_files/extra-sfa-unvented-crawlspace-middle.xml - xml - test - D64DDBCE - - - extra_files/extra-sfa-unvented-crawlspace-right.osm - osm - test - CC3A69F1 - - - extra_files/extra-sfa-unvented-crawlspace-right.xml - xml - test - 0EED5DEB - - - extra_files/extra-sfa-unvented-crawlspace.osm - osm - test - 86D800FE - - - extra_files/extra-sfa-unvented-crawlspace.xml - xml - test - C8526CAB - - - extra_files/extra-sfa-vented-crawlspace-middle.osm - osm - test - 4F4267CF - - - extra_files/extra-sfa-vented-crawlspace-middle.xml - xml - test - 7F3DC4AA - - - extra_files/extra-sfa-vented-crawlspace-right.osm - osm - test - 55A1C4FD - - - extra_files/extra-sfa-vented-crawlspace-right.xml - xml - test - 7F3DC4AA - - - extra_files/extra-sfa-vented-crawlspace.osm - osm - test - D23B0D69 - - - extra_files/extra-sfa-vented-crawlspace.xml - xml - test - 1835989F - - - extra_files/extra-state-code-different-than-epw.osm - osm - test - 8CB7E82C - - - extra_files/extra-state-code-different-than-epw.xml - xml - test - A77F42FC - - - extra_files/extra-time-zone-different-than-epw.osm - osm - test - 17F90AC3 - - - extra_files/extra-time-zone-different-than-epw.xml - xml - test - F041D2D6 - - - extra_files/extra-water-heater-attic.osm - osm - test - 102E7196 - - - extra_files/extra-water-heater-attic.xml - xml - test - E3C7E737 - - - extra_files/extra-water-heater-crawlspace.osm - osm - test - F8DA3DDF - - - extra_files/extra-water-heater-crawlspace.xml - xml - test - 71B6C06D - From 94e68c4f709143652d247cd33f662d667a1a6bd1 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 17 Aug 2023 09:23:28 -0700 Subject: [PATCH 115/217] Update defaults for mixed moisture type. --- HPXMLtoOpenStudio/measure.xml | 6 ++--- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 24 ++++++++++++++++--- 2 files changed, 24 insertions(+), 6 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 2443b0f188..2ee145f5c5 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 6400e41d-9a36-4911-ae8c-34d55df1154a - 2023-08-16T19:52:34Z + cdf85748-86a1-4f88-b915-7fe3b1f21907 + 2023-08-17T16:22:46Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -286,7 +286,7 @@ hpxml_defaults.rb rb resource - 0137C57D + 4A2F708E hpxml_schema/HPXML.xsd diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index c61dc033e3..dc65603b4f 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -489,7 +489,7 @@ def self.apply_site(hpxml) end if hpxml.site.moisture_type.nil? && hpxml.site.ground_conductivity.nil? && hpxml.site.ground_diffusivity.nil? - hpxml.site.moisture_type = HPXML::SiteSoilMoistureTypeDry + hpxml.site.moisture_type = HPXML::SiteSoilMoistureTypeMixed hpxml.site.moisture_type_isdefaulted = true end @@ -507,6 +507,12 @@ def self.apply_site(hpxml) hpxml.site.ground_diffusivity = 0.032 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true + elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed + hpxml.site.ground_conductivity = 0.809 # Btu/hr-ft-F + hpxml.site.ground_conductivity_isdefaulted = true + + hpxml.site.ground_diffusivity = 0.021 # ft^2/hr + hpxml.site.ground_diffusivity_isdefaulted = true end elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeSilt || hpxml.site.soil_type == HPXML::SiteSoilSoilTypeClay if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry @@ -521,6 +527,12 @@ def self.apply_site(hpxml) hpxml.site.ground_diffusivity = 0.019 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true + elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed + hpxml.site.ground_conductivity = 0.635 # Btu/hr-ft-F + hpxml.site.ground_conductivity_isdefaulted = true + + hpxml.site.ground_diffusivity = 0.016 # ft^2/hr + hpxml.site.ground_diffusivity_isdefaulted = true end elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeLoam hpxml.site.ground_conductivity = 1.213 # Btu/hr-ft-F @@ -541,19 +553,25 @@ def self.apply_site(hpxml) hpxml.site.ground_diffusivity = 0.029 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true + elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed + hpxml.site.ground_conductivity = 0.635 # Btu/hr-ft-F + hpxml.site.ground_conductivity_isdefaulted = true + + hpxml.site.ground_diffusivity = 0.019 # ft^2/hr + hpxml.site.ground_diffusivity_isdefaulted = true end elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeUnknown hpxml.site.ground_conductivity = 1.0 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.0208 # ft^2/hr + hpxml.site.ground_diffusivity = 0.021 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true end elsif hpxml.site.ground_conductivity.nil? hpxml.site.ground_conductivity = 1.0 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true elsif hpxml.site.ground_diffusivity.nil? - hpxml.site.ground_diffusivity = 0.0208 # ft^2/hr + hpxml.site.ground_diffusivity = 0.021 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true end From dbc369f90678c643374ed0d82b08c4927a406576 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 17 Aug 2023 09:23:35 -0700 Subject: [PATCH 116/217] Update the docs. --- docs/source/workflow_inputs.rst | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 319829f84b..6835c5e8f9 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -550,25 +550,28 @@ Soil information is entered in ``Soil``. Element Type Units Constraints Required Default Notes ================================================================== ================ =========== =============== ======== ======== ============================================================ ``SoilType`` or ``Conductivity`` or ``extension/Diffusivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No unknown Soil type or themal conductivity [#]_ or diffusivity [#]_ - ``MoistureType`` or ``Conductivity`` or ``extension/Diffusivity`` string or double ft2/hr See [#]_ or > 0 No dry Moisture type or conductivity or diffusivity [#]_ + ``MoistureType`` or ``Conductivity`` or ``extension/Diffusivity`` string or double ft2/hr See [#]_ or > 0 No mixed Moisture type or conductivity or diffusivity [#]_ ================================================================== ================ =========== =============== ======== ======== ============================================================ .. [#] SoilType choices are "sand", "silt", "clay", "loam", "gravel", or "unknown". .. [#] Conductivity used for foundation heat transfer and ground source heat pumps. .. [#] Diffusivity used for ground source heat pumps. - .. [#] MoistureType choices are "wet" or "dry". - .. [#] If Conductivity and extension/Diffusivity not provided, defaults based on SoilType/MoistureType as follows: + .. [#] MoistureType choices are "dry", "wet", or "mixed". + .. [#] If Conductivity and extension/Diffusivity not provided, defaults based on SoilType and MoistureType as follows: ============ ============== ========================== ============= SoilType MoistureType Conductivity [Btu/hr-ft-F] extension/Diffusivity [ft2/hr] ============ ============== ========================== ============= sand/gravel dry 0.231 0.009 sand wet 1.386 0.032 + sand mixed 0.809 0.021 silt/clay dry 0.288 0.012 silt/clay wet 0.982 0.019 - loam dry/wet 1.213 0.035 + silt/clay mixed 0.635 0.016 + loam dry/wet/mixed 1.213 0.035 gravel wet 1.039 0.029 - unknown dry/wet 1.0 0.0208 + gravel mixed 0.635 0.019 + unknown dry/wet/mixed 1.000 0.021 ============ ============== ========================== ============= .. note:: From 0682f2d3bd9374e8cc2db95bfa6f756beaa07080 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 17 Aug 2023 10:14:48 -0700 Subject: [PATCH 117/217] Fix site defaults test. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/tests/test_defaults.rb | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 2ee145f5c5..dca086fd67 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - cdf85748-86a1-4f88-b915-7fe3b1f21907 - 2023-08-17T16:22:46Z + 32893ade-3f62-43f6-934b-3726af4fa6fb + 2023-08-17T17:14:23Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -538,7 +538,7 @@ test_defaults.rb rb test - B878C00E + 92FBE9AE test_enclosure.rb diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 4ebfc0e749..40331ccb04 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -338,20 +338,20 @@ def test_site hpxml.site.moisture_type = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.0, 0.0208, HPXML::SiteSoilSoilTypeUnknown, HPXML::SiteSoilMoistureTypeDry) + _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.0, 0.021, HPXML::SiteSoilSoilTypeUnknown, HPXML::SiteSoilMoistureTypeMixed) # Test defaults w/ gravel soil type hpxml.site.soil_type = HPXML::SiteSoilSoilTypeGravel XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 0.231, 0.009, HPXML::SiteSoilSoilTypeGravel, HPXML::SiteSoilMoistureTypeDry) + _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 0.635, 0.019, HPXML::SiteSoilSoilTypeGravel, HPXML::SiteSoilMoistureTypeMixed) # Test defaults w/ conductivity but no diffusivity hpxml.site.ground_conductivity = 0.8 hpxml.site.soil_type = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 0.8, 0.0208, nil, nil) + _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 0.8, 0.021, nil, nil) end def test_neighbor_buildings From 9afc67804899133c8931e39190e0fd36624baa34 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 17 Aug 2023 18:03:52 +0000 Subject: [PATCH 118/217] Latest results. --- workflow/tests/base_results/results.csv | 30 +++++++++---------- workflow/tests/base_results/results_bills.csv | 30 +++++++++---------- 2 files changed, 30 insertions(+), 30 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 4f50f4f1c0..b241f18c5a 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -48,7 +48,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.964,27.964,27.964,27.964,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.813,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.8,1818.6,1818.6,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.964,27.964,27.964,27.964,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.813,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.8,1818.7,1818.7,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,1354.8,997.6,11399.6,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,3156.5,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 @@ -61,7 +61,7 @@ base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0, base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,1375.7,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,1377.1,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.33,37.33,37.33,37.33,0.0,0.0,0.0,0.0,0.0,0.0,5.334,0.368,0.0,0.0,2.577,1.082,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.879,0.0,13.352,9.232,0.614,2.924,0.0,0.0,0.0,3214.6,2123.0,3214.6,20.972,15.079,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.095,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.824,8.485,2.01,1354.8,997.6,11413.1,2618.9,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.331,37.331,37.331,37.331,0.0,0.0,0.0,0.0,0.0,0.0,5.335,0.368,0.0,0.0,2.578,1.082,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.352,9.232,0.614,2.924,0.0,0.0,0.0,3214.8,2123.2,3214.8,20.973,15.079,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.096,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.824,8.485,2.01,1354.8,997.6,11413.1,2618.9,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -216,11 +216,11 @@ base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.87 base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20283.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,2122.5,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.248,34.248,34.248,34.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.895,0.867,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.692,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2851.9,2851.9,0.0,17.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.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.15,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.702,36.702,36.702,36.702,0.0,0.0,0.0,0.0,0.0,0.0,5.49,0.795,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,0.0,21.069,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3406.5,1637.3,3406.5,23.397,0.0,0.0,3.55,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.784,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.933,39.933,39.933,39.933,0.0,0.0,0.0,0.0,0.0,0.0,5.492,0.686,0.0,0.0,2.507,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.116,0.0,13.27,9.233,0.614,0.0,0.0,0.0,0.0,3358.9,2541.2,3358.9,22.968,15.706,0.0,3.552,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.667,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.379,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,3215.8,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,3215.8,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.249,34.249,34.249,34.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.896,0.867,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.692,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2852.3,2852.3,0.0,17.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.15,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.703,36.703,36.703,36.703,0.0,0.0,0.0,0.0,0.0,0.0,5.49,0.795,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,0.0,21.07,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3406.7,1637.3,3406.7,23.398,0.0,0.0,3.55,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.784,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.934,39.934,39.934,39.934,0.0,0.0,0.0,0.0,0.0,0.0,5.492,0.686,0.0,0.0,2.508,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.116,0.0,13.27,9.233,0.614,0.0,0.0,0.0,0.0,3359.1,2541.4,3359.1,22.968,15.707,0.0,3.552,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.668,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.379,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.039,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.9,2585.5,3215.9,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.039,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.9,2585.5,3215.9,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,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,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,4263.6,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -290,10 +290,10 @@ base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0 base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop.xml,39.184,39.184,39.184,39.184,0.0,0.0,0.0,0.0,0.0,0.0,5.114,0.344,0.0,0.0,2.278,1.007,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.461,0.0,12.652,9.233,0.614,0.0,0.0,0.0,0.0,3142.6,2491.5,3142.6,20.581,14.608,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.966,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.74,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.794,33.794,33.794,33.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.534,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.0,2599.0,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.576,36.576,36.576,36.576,0.0,0.0,0.0,0.0,0.0,0.0,5.396,0.763,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,0.0,20.34,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3353.6,1637.3,3353.6,22.264,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.034,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.1,2577.8,3210.1,20.865,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,39.184,39.184,39.184,39.184,0.0,0.0,0.0,0.0,0.0,0.0,5.114,0.344,0.0,0.0,2.278,1.007,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.461,0.0,12.652,9.233,0.614,0.0,0.0,0.0,0.0,3142.6,2491.6,3142.6,20.582,14.609,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.966,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.74,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.795,33.795,33.795,33.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.535,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.2,2599.2,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.577,36.577,36.577,36.577,0.0,0.0,0.0,0.0,0.0,0.0,5.396,0.763,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,0.0,20.34,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3353.8,1637.3,3353.8,22.264,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.034,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.542,39.542,39.542,39.542,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.2,2578.0,3210.2,20.866,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,7036.9,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,7011.6,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,7134.8,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -301,7 +301,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.72 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,2097.0,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.358,41.358,41.358,41.358,0.0,0.0,0.0,0.0,0.0,0.0,6.658,0.379,0.0,0.0,2.92,0.961,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.424,0.0,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3442.3,2724.4,3442.3,21.792,15.702,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.955,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.235,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.359,41.359,41.359,41.359,0.0,0.0,0.0,0.0,0.0,0.0,6.659,0.379,0.0,0.0,2.92,0.961,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.424,0.0,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3442.4,2724.6,3442.4,21.793,15.702,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.955,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.235,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,4380.1,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -315,7 +315,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668, base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,2913.9,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.293,66.293,51.861,51.861,7.155,3.599,3.679,0.0,0.0,0.0,13.641,0.858,0.197,0.008,6.164,0.552,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.667,0.205,18.96,9.233,0.615,0.0,0.0,0.0,3.0,6379.1,4054.4,6379.1,37.469,22.828,0.0,3.418,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.265,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.235,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.293,66.293,51.861,51.861,7.155,3.599,3.679,0.0,0.0,0.0,13.641,0.858,0.197,0.008,6.164,0.552,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.667,0.205,18.96,9.233,0.615,0.0,0.0,0.0,3.0,6378.9,4054.4,6378.9,37.471,22.827,0.0,3.418,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.265,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.235,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.4,1280.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,1354.8,997.6,8540.6,2104.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -400,8 +400,8 @@ base-misc-soil-type-sand-moisture-type-dry.xml,37.307,37.307,37.307,37.307,0.0,0 base-misc-soil-type-sand-moisture-type-wet.xml,40.657,40.657,40.657,40.657,0.0,0.0,0.0,0.0,0.0,0.0,6.151,0.426,0.0,0.0,2.565,1.074,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,0.0,13.107,9.233,0.615,0.0,0.0,0.0,0.0,3312.4,2729.1,3312.4,22.331,14.763,0.0,3.558,3.598,0.506,7.785,0.621,10.411,-12.573,0.0,0.0,0.0,11.201,-0.063,4.797,0.0,0.726,0.0,3.53,-8.928,-2.504,0.0,0.022,-0.443,-0.049,3.099,-0.02,-1.875,11.71,0.0,0.0,0.0,-6.366,-0.06,-1.151,-3.047,-0.162,0.0,1.798,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31522.0,7515.0,7508.0,0.0,575.0,7207.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-soil-type-silt-moisture-type-dry.xml,37.429,37.429,37.429,37.429,0.0,0.0,0.0,0.0,0.0,0.0,3.228,0.224,0.0,0.0,2.518,1.022,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.934,0.0,13.054,9.233,0.61,0.0,0.0,0.0,0.0,2946.3,2595.5,2946.3,17.507,15.269,0.0,3.743,3.739,0.527,6.023,0.649,10.779,-12.459,0.0,0.0,0.0,2.396,-0.047,4.844,0.0,0.735,0.0,1.959,-8.813,-2.481,0.0,-0.06,-0.525,-0.06,1.045,-0.045,-2.151,11.824,0.0,0.0,0.0,-3.952,-0.041,-1.234,-3.2,-0.176,0.0,1.841,7.961,2.029,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29590.0,7481.0,7508.0,0.0,575.0,5309.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-soil-type-silt-moisture-type-wet.xml,39.485,39.485,39.485,39.485,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.358,0.0,0.0,2.461,1.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.658,9.233,0.614,0.0,0.0,0.0,0.0,3203.8,2576.3,3203.8,20.79,14.695,0.0,3.61,3.635,0.512,7.481,0.629,10.51,-12.551,0.0,0.0,0.0,8.129,-0.063,4.804,0.0,0.728,0.0,3.023,-8.907,-2.499,0.0,0.012,-0.456,-0.051,2.682,-0.024,-1.919,11.732,0.0,0.0,0.0,-6.303,-0.059,-1.166,-3.061,-0.165,0.0,1.761,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31125.0,7506.0,7508.0,0.0,575.0,6818.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-unknown-moisture-type-dry.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.1,2577.8,3210.1,20.865,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-unknown-moisture-type-wet.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.1,2577.8,3210.1,20.865,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-unknown-moisture-type-dry.xml,39.542,39.542,39.542,39.542,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.2,2578.0,3210.2,20.866,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-unknown-moisture-type-wet.xml,39.542,39.542,39.542,39.542,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.2,2578.0,3210.2,20.866,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,24.753,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.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 e1dc116592..3874b2d863 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -48,7 +48,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1132.06,144.0,988.06, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1324.25,144.0,1180.25,0.0,1324.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1139.97,144.0,995.97,0.0,1139.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-generator.xml,1642.11,144.0,962.4,0.0,1106.4,144.0,7.16,151.16,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1170.29,144.0,1026.29,0.0,1170.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1170.3,144.0,1026.3,0.0,1170.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,1058.78,144.0,609.48,0.0,753.48,144.0,161.3,305.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-laundry-room.xml,1031.55,144.0,602.54,0.0,746.54,144.0,141.01,285.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,1630.77,144.0,1128.08,0.0,1272.08,144.0,214.69,358.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -61,7 +61,7 @@ base-bldgtype-multifamily.xml,1257.56,144.0,962.4,0.0,1106.4,144.0,7.16,151.16,0 base-dhw-combi-tankless-outside.xml,1395.79,144.0,786.38,0.0,930.38,144.0,321.41,465.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-combi-tankless.xml,1408.85,144.0,786.73,0.0,930.73,144.0,334.12,478.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-2-speed.xml,1322.95,144.0,1178.95,0.0,1322.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-gshp.xml,1514.03,144.0,1370.03,0.0,1514.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-gshp.xml,1514.05,144.0,1370.05,0.0,1514.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-hpwh.xml,1667.45,144.0,1089.75,0.0,1233.75,144.0,289.7,433.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-tankless.xml,1383.44,144.0,1239.44,0.0,1383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-var-speed.xml,1296.03,144.0,1152.03,0.0,1296.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -216,11 +216,11 @@ base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,1819.3,144.0,1279.93,0.0,1 base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1795.21,144.0,1256.04,0.0,1400.04,144.0,251.17,395.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-furnace-gas-only.xml,1681.87,144.0,1139.26,0.0,1283.26,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-furnace-gas-room-ac.xml,1870.89,144.0,1325.73,0.0,1469.73,144.0,257.16,401.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1400.91,144.0,1256.91,0.0,1400.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1490.99,144.0,1346.99,0.0,1490.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1609.57,144.0,1465.57,0.0,1609.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1594.86,144.0,1450.86,0.0,1594.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1594.86,144.0,1450.86,0.0,1594.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1400.95,144.0,1256.95,0.0,1400.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1491.0,144.0,1347.0,0.0,1491.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1609.59,144.0,1465.59,0.0,1609.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1594.89,144.0,1450.89,0.0,1594.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1594.89,144.0,1450.89,0.0,1594.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,1380.18,144.0,1236.18,0.0,1380.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,1354.02,144.0,1210.02,0.0,1354.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,1486.98,144.0,1342.98,0.0,1486.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -290,10 +290,10 @@ base-hvac-furnace-oil-only.xml,2094.22,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1912.48,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,630.01,630.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-wood-only.xml,1630.62,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop.xml,1582.07,144.0,1438.07,0.0,1582.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1384.27,144.0,1240.27,0.0,1384.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1486.36,144.0,1342.36,0.0,1486.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1595.19,144.0,1451.19,0.0,1595.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop.xml,1582.08,144.0,1438.08,0.0,1582.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1384.29,144.0,1240.29,0.0,1384.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1486.37,144.0,1342.37,0.0,1486.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump.xml,1595.21,144.0,1451.21,0.0,1595.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1941.16,144.0,1797.16,0.0,1941.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1753.34,144.0,1609.34,0.0,1753.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1734.42,144.0,1590.42,0.0,1734.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -301,7 +301,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1890.39,144.0,1347. base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1834.46,144.0,1291.85,0.0,1435.85,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1810.78,144.0,1268.18,0.0,1412.18,144.0,254.6,398.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-furnace-gas-only.xml,1683.54,144.0,1133.54,0.0,1277.54,144.0,262.0,406.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1661.86,144.0,1517.86,0.0,1661.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1661.89,144.0,1517.89,0.0,1661.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1392.28,144.0,1248.28,0.0,1392.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1636.52,144.0,1492.52,0.0,1636.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1368.78,144.0,1224.78,0.0,1368.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -315,7 +315,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1692.21,144.0,1309.03 base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1881.87,144.0,1305.44,0.0,1449.44,0.0,0.0,0.0,0.0,432.43,432.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1525.19,144.0,1381.19,0.0,1525.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ductless.xml,1525.19,144.0,1381.19,0.0,1525.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-multiple.xml,2492.82,144.0,1903.3,0.0,2047.3,144.0,75.79,219.79,0.0,125.87,125.87,0.0,99.86,99.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-multiple.xml,2492.83,144.0,1903.31,0.0,2047.31,144.0,75.79,219.79,0.0,125.87,125.87,0.0,99.86,99.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-none.xml,2521.91,144.0,2377.91,0.0,2521.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-electricity.xml,2026.83,144.0,1882.83,0.0,2026.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-natural-gas.xml,1781.03,144.0,1273.0,0.0,1417.0,144.0,220.03,364.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -400,8 +400,8 @@ base-misc-soil-type-sand-moisture-type-dry.xml,1513.19,144.0,1369.19,0.0,1513.19 base-misc-soil-type-sand-moisture-type-wet.xml,1636.13,144.0,1492.13,0.0,1636.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-soil-type-silt-moisture-type-dry.xml,1517.67,144.0,1373.67,0.0,1517.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-soil-type-silt-moisture-type-wet.xml,1593.1,144.0,1449.1,0.0,1593.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-unknown-moisture-type-dry.xml,1595.19,144.0,1451.19,0.0,1595.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-unknown-moisture-type-wet.xml,1595.19,144.0,1451.19,0.0,1595.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-unknown-moisture-type-dry.xml,1595.21,144.0,1451.21,0.0,1595.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-unknown-moisture-type-wet.xml,1595.21,144.0,1451.21,0.0,1595.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-usage-multiplier.xml,3013.64,144.0,1863.4,0.0,2007.4,144.0,726.99,870.99,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,891.06,144.0,1347.84,-986.63,505.21,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-pv-battery-garage.xml,861.45,144.0,1300.8,-986.62,458.18,144.0,259.27,403.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 9fae5e115054d4f5fe7723f3f2707ecbd19418e2 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 17 Aug 2023 12:22:29 -0700 Subject: [PATCH 119/217] Update epvalidator and add error message test. --- HPXMLtoOpenStudio/measure.xml | 8 ++++---- .../resources/hpxml_schematron/EPvalidator.xml | 4 ++++ HPXMLtoOpenStudio/tests/test_validation.rb | 8 ++++++++ 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index dca086fd67..0f4034f6ba 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 32893ade-3f62-43f6-934b-3726af4fa6fb - 2023-08-17T17:14:23Z + 84546480-9c30-4ad7-9406-64b40135ab4d + 2023-08-17T19:21:40Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -304,7 +304,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 2B79930F + 31763BD7 hpxml_schematron/iso-schematron.xsd @@ -610,7 +610,7 @@ test_validation.rb rb test - 072FE99F + B7B4A15F test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index d67d0aa2af..8345006629 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -306,6 +306,10 @@ [Soil] + Expected 0 or 1 element(s) for xpath: SoilType + Expected SoilType to be 'sand' or 'silt' or 'clay' or 'loam' or 'gravel' or 'unknown' + Expected 0 or 1 element(s) for xpath: MoistureType + Expected MoistureType to be 'dry' or 'wet' or 'mixed' Expected 0 or 1 element(s) for xpath: Conductivity Expected Conductivity to be greater than 0 Expected 0 or 1 element(s) for xpath: extension/Diffusivity diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index a12be45bb8..dd9404c95f 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -139,6 +139,7 @@ def test_schema_schematron_error_messages 'Expected DistanceToBottomOfInsulation to be greater than or equal to DistanceToTopOfInsulation [context: /HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall/Insulation/Layer[InstallationType="continuous - exterior" or InstallationType="continuous - interior"], id: "FoundationWall1Insulation"]', 'Expected DistanceToBottomOfInsulation to be less than or equal to ../../Height [context: /HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall/Insulation/Layer[InstallationType="continuous - exterior" or InstallationType="continuous - interior"], id: "FoundationWall1Insulation"]'], 'invalid-ground-conductivity' => ['Expected Conductivity to be greater than 0'], + 'invalid-ground-diffusivity' => ['Expected extension/Diffusivity to be greater than 0'], 'invalid-heat-pump-capacity-retention' => ['Expected Fraction to be less than 1', 'Expected Temperature to be less than or equal to 17'], 'invalid-heat-pump-capacity-retention2' => ['Expected Fraction to be greater than or equal to 0'], @@ -179,6 +180,7 @@ def test_schema_schematron_error_messages 'invalid-number-of-conditioned-floors' => ['Expected NumberofConditionedFloors to be greater than or equal to NumberofConditionedFloorsAboveGrade [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction]'], 'invalid-number-of-units-served' => ['Expected NumberofUnitsServed to be greater than 1 [context: /HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem[IsSharedSystem="true"], id: "WaterHeatingSystem1"]'], 'invalid-pilot-light-heating-system' => ['Expected 1 element(s) for xpath: ../../HeatingSystemFuel[text()!="electricity"]'], + 'invalid-soil-type' => ["Expected SoilType to be 'sand' or 'silt' or 'clay' or 'loam' or 'gravel' or 'unknown' [context: /HPXML/Building/BuildingDetails/BuildingSummary/Site/Soil]"], 'invalid-shared-vent-in-unit-flowrate' => ['Expected RatedFlowRate to be greater than extension/InUnitFlowRate [context: /HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan[UsedForWholeBuildingVentilation="true" and IsSharedSystem="true"], id: "VentilationFan1"]'], 'invalid-timestep' => ['Expected Timestep to be 60, 30, 20, 15, 12, 10, 6, 5, 4, 3, 2, or 1'], 'invalid-timezone-utcoffset-low' => ["Element 'UTCOffset': [facet 'minInclusive'] The value '-13.0' is less than the minimum value allowed ('-12')."], @@ -433,6 +435,9 @@ def test_schema_schematron_error_messages elsif ['invalid-ground-conductivity'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) hpxml.site.ground_conductivity = 0.0 + elsif ['invalid-ground-diffusivity'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml.site.ground_diffusivity = 0.0 elsif ['invalid-heat-pump-capacity-retention'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-air-to-air-heat-pump-1-speed.xml')) hpxml.heat_pumps[0].heating_capacity_17F = nil @@ -512,6 +517,9 @@ def test_schema_schematron_error_messages elsif ['invalid-pilot-light-heating-system'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-floor-furnace-propane-only-pilot-light.xml')) hpxml.heating_systems[0].heating_system_fuel = HPXML::FuelTypeElectricity + elsif ['invalid-soil-type'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) + hpxml.site.soil_type = HPXML::SiteSoilSoilTypeOther elsif ['invalid-shared-vent-in-unit-flowrate'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-multifamily-shared-mechvent.xml')) hpxml.ventilation_fans[0].rated_flow_rate = 80 From ffaeee86933ec52fb984d2bdcd6274ed398826c8 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 17 Aug 2023 12:24:38 -0700 Subject: [PATCH 120/217] Reduce the number of new sample files. --- workflow/hpxml_inputs.json | 55 -- ...-misc-soil-type-clay-moisture-type-dry.xml | 563 ------------------ ...-misc-soil-type-clay-moisture-type-wet.xml | 563 ------------------ ...isc-soil-type-gravel-moisture-type-dry.xml | 563 ------------------ ...isc-soil-type-gravel-moisture-type-wet.xml | 563 ------------------ ...-misc-soil-type-loam-moisture-type-dry.xml | 563 ------------------ ...-misc-soil-type-loam-moisture-type-wet.xml | 563 ------------------ ...-misc-soil-type-sand-moisture-type-wet.xml | 563 ------------------ ...-misc-soil-type-silt-moisture-type-dry.xml | 563 ------------------ ...-misc-soil-type-silt-moisture-type-wet.xml | 563 ------------------ ...sc-soil-type-unknown-moisture-type-dry.xml | 563 ------------------ ...sc-soil-type-unknown-moisture-type-wet.xml | 563 ------------------ 12 files changed, 6248 deletions(-) delete mode 100644 workflow/sample_files/base-misc-soil-type-clay-moisture-type-dry.xml delete mode 100644 workflow/sample_files/base-misc-soil-type-clay-moisture-type-wet.xml delete mode 100644 workflow/sample_files/base-misc-soil-type-gravel-moisture-type-dry.xml delete mode 100644 workflow/sample_files/base-misc-soil-type-gravel-moisture-type-wet.xml delete mode 100644 workflow/sample_files/base-misc-soil-type-loam-moisture-type-dry.xml delete mode 100644 workflow/sample_files/base-misc-soil-type-loam-moisture-type-wet.xml delete mode 100644 workflow/sample_files/base-misc-soil-type-sand-moisture-type-wet.xml delete mode 100644 workflow/sample_files/base-misc-soil-type-silt-moisture-type-dry.xml delete mode 100644 workflow/sample_files/base-misc-soil-type-silt-moisture-type-wet.xml delete mode 100644 workflow/sample_files/base-misc-soil-type-unknown-moisture-type-dry.xml delete mode 100644 workflow/sample_files/base-misc-soil-type-unknown-moisture-type-wet.xml diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index ce78035171..ef033ce816 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -3108,66 +3108,11 @@ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "site_ground_diffusivity": 0.03 }, - "sample_files/base-misc-soil-type-sand-moisture-type-wet.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "sand", - "site_moisture_type": "wet" - }, "sample_files/base-misc-soil-type-sand-moisture-type-dry.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "site_soil_type": "sand", "site_moisture_type": "dry" }, - "sample_files/base-misc-soil-type-silt-moisture-type-wet.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "silt", - "site_moisture_type": "wet" - }, - "sample_files/base-misc-soil-type-silt-moisture-type-dry.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "silt", - "site_moisture_type": "dry" - }, - "sample_files/base-misc-soil-type-clay-moisture-type-wet.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "clay", - "site_moisture_type": "wet" - }, - "sample_files/base-misc-soil-type-clay-moisture-type-dry.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "clay", - "site_moisture_type": "dry" - }, - "sample_files/base-misc-soil-type-loam-moisture-type-wet.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "loam", - "site_moisture_type": "wet" - }, - "sample_files/base-misc-soil-type-loam-moisture-type-dry.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "loam", - "site_moisture_type": "dry" - }, - "sample_files/base-misc-soil-type-gravel-moisture-type-wet.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "gravel", - "site_moisture_type": "wet" - }, - "sample_files/base-misc-soil-type-gravel-moisture-type-dry.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "gravel", - "site_moisture_type": "dry" - }, - "sample_files/base-misc-soil-type-unknown-moisture-type-wet.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "unknown", - "site_moisture_type": "wet" - }, - "sample_files/base-misc-soil-type-unknown-moisture-type-dry.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "unknown", - "site_moisture_type": "dry" - }, "sample_files/base-misc-loads-large-uncommon.xml": { "parent_hpxml": "sample_files/base-schedules-simple.xml", "extra_refrigerator_present": true, diff --git a/workflow/sample_files/base-misc-soil-type-clay-moisture-type-dry.xml b/workflow/sample_files/base-misc-soil-type-clay-moisture-type-dry.xml deleted file mode 100644 index 7e5e4c6a67..0000000000 --- a/workflow/sample_files/base-misc-soil-type-clay-moisture-type-dry.xml +++ /dev/null @@ -1,563 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - clay - dry - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-clay-moisture-type-wet.xml b/workflow/sample_files/base-misc-soil-type-clay-moisture-type-wet.xml deleted file mode 100644 index 2c09c0fdd9..0000000000 --- a/workflow/sample_files/base-misc-soil-type-clay-moisture-type-wet.xml +++ /dev/null @@ -1,563 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - clay - wet - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-gravel-moisture-type-dry.xml b/workflow/sample_files/base-misc-soil-type-gravel-moisture-type-dry.xml deleted file mode 100644 index 8dde8329d0..0000000000 --- a/workflow/sample_files/base-misc-soil-type-gravel-moisture-type-dry.xml +++ /dev/null @@ -1,563 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - gravel - dry - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-gravel-moisture-type-wet.xml b/workflow/sample_files/base-misc-soil-type-gravel-moisture-type-wet.xml deleted file mode 100644 index 27c3009c06..0000000000 --- a/workflow/sample_files/base-misc-soil-type-gravel-moisture-type-wet.xml +++ /dev/null @@ -1,563 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - gravel - wet - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-loam-moisture-type-dry.xml b/workflow/sample_files/base-misc-soil-type-loam-moisture-type-dry.xml deleted file mode 100644 index b61a7c06a9..0000000000 --- a/workflow/sample_files/base-misc-soil-type-loam-moisture-type-dry.xml +++ /dev/null @@ -1,563 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - loam - dry - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-loam-moisture-type-wet.xml b/workflow/sample_files/base-misc-soil-type-loam-moisture-type-wet.xml deleted file mode 100644 index ec542966e3..0000000000 --- a/workflow/sample_files/base-misc-soil-type-loam-moisture-type-wet.xml +++ /dev/null @@ -1,563 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - loam - wet - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-sand-moisture-type-wet.xml b/workflow/sample_files/base-misc-soil-type-sand-moisture-type-wet.xml deleted file mode 100644 index 4726687d24..0000000000 --- a/workflow/sample_files/base-misc-soil-type-sand-moisture-type-wet.xml +++ /dev/null @@ -1,563 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - sand - wet - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-silt-moisture-type-dry.xml b/workflow/sample_files/base-misc-soil-type-silt-moisture-type-dry.xml deleted file mode 100644 index 33cd98ed72..0000000000 --- a/workflow/sample_files/base-misc-soil-type-silt-moisture-type-dry.xml +++ /dev/null @@ -1,563 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - silt - dry - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-silt-moisture-type-wet.xml b/workflow/sample_files/base-misc-soil-type-silt-moisture-type-wet.xml deleted file mode 100644 index 0ae94a11a7..0000000000 --- a/workflow/sample_files/base-misc-soil-type-silt-moisture-type-wet.xml +++ /dev/null @@ -1,563 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - silt - wet - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-unknown-moisture-type-dry.xml b/workflow/sample_files/base-misc-soil-type-unknown-moisture-type-dry.xml deleted file mode 100644 index 46a2706f6e..0000000000 --- a/workflow/sample_files/base-misc-soil-type-unknown-moisture-type-dry.xml +++ /dev/null @@ -1,563 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - unknown - dry - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-misc-soil-type-unknown-moisture-type-wet.xml b/workflow/sample_files/base-misc-soil-type-unknown-moisture-type-wet.xml deleted file mode 100644 index 396b30e914..0000000000 --- a/workflow/sample_files/base-misc-soil-type-unknown-moisture-type-wet.xml +++ /dev/null @@ -1,563 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - unknown - wet - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file From 8be8ca48b420aa0f64da5f21aed64d463d0d6258 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 17 Aug 2023 20:59:37 +0000 Subject: [PATCH 121/217] Latest results. --- workflow/tests/base_results/results.csv | 11 ----------- workflow/tests/base_results/results_bills.csv | 11 ----------- 2 files changed, 22 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index b241f18c5a..363a46c990 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -390,18 +390,7 @@ base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0, base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 -base-misc-soil-type-clay-moisture-type-dry.xml,37.429,37.429,37.429,37.429,0.0,0.0,0.0,0.0,0.0,0.0,3.228,0.224,0.0,0.0,2.518,1.022,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.934,0.0,13.054,9.233,0.61,0.0,0.0,0.0,0.0,2946.3,2595.5,2946.3,17.507,15.269,0.0,3.743,3.739,0.527,6.023,0.649,10.779,-12.459,0.0,0.0,0.0,2.396,-0.047,4.844,0.0,0.735,0.0,1.959,-8.813,-2.481,0.0,-0.06,-0.525,-0.06,1.045,-0.045,-2.151,11.824,0.0,0.0,0.0,-3.952,-0.041,-1.234,-3.2,-0.176,0.0,1.841,7.961,2.029,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29590.0,7481.0,7508.0,0.0,575.0,5309.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-clay-moisture-type-wet.xml,39.485,39.485,39.485,39.485,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.358,0.0,0.0,2.461,1.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.658,9.233,0.614,0.0,0.0,0.0,0.0,3203.8,2576.3,3203.8,20.79,14.695,0.0,3.61,3.635,0.512,7.481,0.629,10.51,-12.551,0.0,0.0,0.0,8.129,-0.063,4.804,0.0,0.728,0.0,3.023,-8.907,-2.499,0.0,0.012,-0.456,-0.051,2.682,-0.024,-1.919,11.732,0.0,0.0,0.0,-6.303,-0.059,-1.166,-3.061,-0.165,0.0,1.761,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31125.0,7506.0,7508.0,0.0,575.0,6818.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-gravel-moisture-type-dry.xml,37.307,37.307,37.307,37.307,0.0,0.0,0.0,0.0,0.0,0.0,3.055,0.248,0.0,0.0,2.539,1.03,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,0.0,13.241,9.233,0.609,0.0,0.0,0.0,0.0,2935.4,2576.6,2935.4,17.385,15.348,0.0,3.755,3.756,0.529,5.692,0.653,10.826,-12.451,0.0,0.0,0.0,1.912,-0.043,4.856,0.0,0.737,0.0,2.08,-8.802,-2.478,0.0,-0.074,-0.537,-0.062,0.789,-0.048,-2.192,11.832,0.0,0.0,0.0,-3.436,-0.037,-1.245,-3.237,-0.178,0.0,1.864,7.971,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5059.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-gravel-moisture-type-wet.xml,39.799,39.799,39.799,39.799,0.0,0.0,0.0,0.0,0.0,0.0,5.415,0.425,0.0,0.0,2.484,1.034,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.251,0.0,12.713,9.233,0.614,0.0,0.0,0.0,0.0,3233.2,2584.3,3233.2,21.278,14.7,0.0,3.589,3.629,0.511,7.534,0.627,10.492,-12.551,0.0,0.0,0.0,8.575,-0.062,4.802,0.0,0.728,0.0,3.456,-8.907,-2.499,0.0,0.013,-0.454,-0.051,2.754,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.34,-0.058,-1.165,-3.058,-0.165,0.0,1.767,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31193.0,7508.0,7508.0,0.0,575.0,6884.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-loam-moisture-type-dry.xml,40.312,40.312,40.312,40.312,0.0,0.0,0.0,0.0,0.0,0.0,5.833,0.457,0.0,0.0,2.526,1.054,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,12.9,9.233,0.615,0.0,0.0,0.0,0.0,3285.5,2725.0,3285.5,21.947,14.712,0.0,3.566,3.613,0.508,7.674,0.624,10.447,-12.564,0.0,0.0,0.0,9.914,-0.061,4.799,0.0,0.727,0.0,3.69,-8.918,-2.502,0.0,0.019,-0.448,-0.05,2.945,-0.022,-1.895,11.719,0.0,0.0,0.0,-6.384,-0.058,-1.158,-3.052,-0.163,0.0,1.781,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31373.0,7512.0,7508.0,0.0,575.0,7061.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-loam-moisture-type-wet.xml,40.312,40.312,40.312,40.312,0.0,0.0,0.0,0.0,0.0,0.0,5.833,0.457,0.0,0.0,2.526,1.054,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,12.9,9.233,0.615,0.0,0.0,0.0,0.0,3285.5,2725.0,3285.5,21.947,14.712,0.0,3.566,3.613,0.508,7.674,0.624,10.447,-12.564,0.0,0.0,0.0,9.914,-0.061,4.799,0.0,0.727,0.0,3.69,-8.918,-2.502,0.0,0.019,-0.448,-0.05,2.945,-0.022,-1.895,11.719,0.0,0.0,0.0,-6.384,-0.058,-1.158,-3.052,-0.163,0.0,1.781,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31373.0,7512.0,7508.0,0.0,575.0,7061.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-soil-type-sand-moisture-type-dry.xml,37.307,37.307,37.307,37.307,0.0,0.0,0.0,0.0,0.0,0.0,3.055,0.248,0.0,0.0,2.539,1.03,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,0.0,13.241,9.233,0.609,0.0,0.0,0.0,0.0,2935.4,2576.6,2935.4,17.385,15.348,0.0,3.755,3.756,0.529,5.692,0.653,10.826,-12.451,0.0,0.0,0.0,1.912,-0.043,4.856,0.0,0.737,0.0,2.08,-8.802,-2.478,0.0,-0.074,-0.537,-0.062,0.789,-0.048,-2.192,11.832,0.0,0.0,0.0,-3.436,-0.037,-1.245,-3.237,-0.178,0.0,1.864,7.971,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5059.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-sand-moisture-type-wet.xml,40.657,40.657,40.657,40.657,0.0,0.0,0.0,0.0,0.0,0.0,6.151,0.426,0.0,0.0,2.565,1.074,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,0.0,13.107,9.233,0.615,0.0,0.0,0.0,0.0,3312.4,2729.1,3312.4,22.331,14.763,0.0,3.558,3.598,0.506,7.785,0.621,10.411,-12.573,0.0,0.0,0.0,11.201,-0.063,4.797,0.0,0.726,0.0,3.53,-8.928,-2.504,0.0,0.022,-0.443,-0.049,3.099,-0.02,-1.875,11.71,0.0,0.0,0.0,-6.366,-0.06,-1.151,-3.047,-0.162,0.0,1.798,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31522.0,7515.0,7508.0,0.0,575.0,7207.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-silt-moisture-type-dry.xml,37.429,37.429,37.429,37.429,0.0,0.0,0.0,0.0,0.0,0.0,3.228,0.224,0.0,0.0,2.518,1.022,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.934,0.0,13.054,9.233,0.61,0.0,0.0,0.0,0.0,2946.3,2595.5,2946.3,17.507,15.269,0.0,3.743,3.739,0.527,6.023,0.649,10.779,-12.459,0.0,0.0,0.0,2.396,-0.047,4.844,0.0,0.735,0.0,1.959,-8.813,-2.481,0.0,-0.06,-0.525,-0.06,1.045,-0.045,-2.151,11.824,0.0,0.0,0.0,-3.952,-0.041,-1.234,-3.2,-0.176,0.0,1.841,7.961,2.029,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29590.0,7481.0,7508.0,0.0,575.0,5309.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-silt-moisture-type-wet.xml,39.485,39.485,39.485,39.485,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.358,0.0,0.0,2.461,1.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.658,9.233,0.614,0.0,0.0,0.0,0.0,3203.8,2576.3,3203.8,20.79,14.695,0.0,3.61,3.635,0.512,7.481,0.629,10.51,-12.551,0.0,0.0,0.0,8.129,-0.063,4.804,0.0,0.728,0.0,3.023,-8.907,-2.499,0.0,0.012,-0.456,-0.051,2.682,-0.024,-1.919,11.732,0.0,0.0,0.0,-6.303,-0.059,-1.166,-3.061,-0.165,0.0,1.761,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31125.0,7506.0,7508.0,0.0,575.0,6818.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-unknown-moisture-type-dry.xml,39.542,39.542,39.542,39.542,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.2,2578.0,3210.2,20.866,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-soil-type-unknown-moisture-type-wet.xml,39.542,39.542,39.542,39.542,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.2,2578.0,3210.2,20.866,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,24.753,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.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 3874b2d863..09bb5d3de3 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -390,18 +390,7 @@ base-misc-loads-none.xml,1500.61,144.0,906.92,0.0,1050.92,144.0,305.69,449.69,0. base-misc-neighbor-shading-bldgtype-multifamily.xml,1238.88,144.0,941.51,0.0,1085.51,144.0,9.37,153.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-neighbor-shading.xml,1870.95,144.0,1307.23,0.0,1451.23,144.0,275.72,419.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-shielding-of-home.xml,1849.15,144.0,1324.44,0.0,1468.44,144.0,236.71,380.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-clay-moisture-type-dry.xml,1517.67,144.0,1373.67,0.0,1517.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-clay-moisture-type-wet.xml,1593.1,144.0,1449.1,0.0,1593.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-gravel-moisture-type-dry.xml,1513.19,144.0,1369.19,0.0,1513.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-gravel-moisture-type-wet.xml,1604.64,144.0,1460.64,0.0,1604.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-loam-moisture-type-dry.xml,1623.46,144.0,1479.46,0.0,1623.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-soil-type-loam-moisture-type-wet.xml,1623.46,144.0,1479.46,0.0,1623.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-soil-type-sand-moisture-type-dry.xml,1513.19,144.0,1369.19,0.0,1513.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-sand-moisture-type-wet.xml,1636.13,144.0,1492.13,0.0,1636.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-silt-moisture-type-dry.xml,1517.67,144.0,1373.67,0.0,1517.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-silt-moisture-type-wet.xml,1593.1,144.0,1449.1,0.0,1593.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-unknown-moisture-type-dry.xml,1595.21,144.0,1451.21,0.0,1595.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-unknown-moisture-type-wet.xml,1595.21,144.0,1451.21,0.0,1595.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-usage-multiplier.xml,3013.64,144.0,1863.4,0.0,2007.4,144.0,726.99,870.99,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,891.06,144.0,1347.84,-986.63,505.21,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-pv-battery-garage.xml,861.45,144.0,1300.8,-986.62,458.18,144.0,259.27,403.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 13e84e04e3510b77bb726feb1223734770104719 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 17 Aug 2023 14:50:03 -0700 Subject: [PATCH 122/217] Update the changelog. [ci skip] --- Changelog.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 14b85fe0d8..4344fa0bc1 100644 --- a/Changelog.md +++ b/Changelog.md @@ -13,8 +13,9 @@ __New Features__ - Allow duct area fractions (as an alternative to duct areas in ft^2). - Allow duct locations to be provided while defaulting duct areas (i.e., without providing duct area/fraction inputs). - Add generic "attic" and "crawlspace" location choices for supply/return ducts, water heater, and battery. + - Add soil and moisture type arguments for determining ground conductivity and diffusivity. - Ground source heat pump enhancements: - - Connect to `HVACPlant/GeothermalLoop` and `BuildingSummary/Site/Soil` HPXML elements + - Connect to `HVACPlant/GeothermalLoop` and `BuildingSummary/Site/Soil` HPXML elements. - Allow optional inputs related to geothermal loop: loop flow, borehole count/length/spacing/diameter/configuration, grout conductivity, pipe conductivity/diameter/shank spacing. - Allow optional ground diffusivity input for site soil. - Connect to the [G-Function Library](https://gdr.openei.org/submissions/1325) (in the Geothermal Data Repository) for using precalculated g-function values with GSHP modeling. From 3cc3b0f9d39d1ff642671810c50cb7fbb1b893c4 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 21 Aug 2023 10:29:18 -0700 Subject: [PATCH 123/217] Add sample files for a range of gshp sizes. --- workflow/hpxml_inputs.json | 24 + ...base-hvac-ground-to-air-heat-pump-1ton.xml | 554 ++++++++++++++++++ ...base-hvac-ground-to-air-heat-pump-2ton.xml | 554 ++++++++++++++++++ ...base-hvac-ground-to-air-heat-pump-4ton.xml | 554 ++++++++++++++++++ ...base-hvac-ground-to-air-heat-pump-5ton.xml | 554 ++++++++++++++++++ 5 files changed, 2240 insertions(+) create mode 100644 workflow/sample_files/base-hvac-ground-to-air-heat-pump-1ton.xml create mode 100644 workflow/sample_files/base-hvac-ground-to-air-heat-pump-2ton.xml create mode 100644 workflow/sample_files/base-hvac-ground-to-air-heat-pump-4ton.xml create mode 100644 workflow/sample_files/base-hvac-ground-to-air-heat-pump-5ton.xml diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 3a008ad3a3..22eb712a5d 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2407,6 +2407,30 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_backup_heating_capacity": 36000 }, + "sample_files/base-hvac-ground-to-air-heat-pump-1ton.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "heat_pump_heating_capacity": 12000, + "heat_pump_cooling_capacity": 12000, + "heat_pump_backup_heating_capacity": 12000 + }, + "sample_files/base-hvac-ground-to-air-heat-pump-2ton.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "heat_pump_heating_capacity": 24000, + "heat_pump_cooling_capacity": 24000, + "heat_pump_backup_heating_capacity": 24000 + }, + "sample_files/base-hvac-ground-to-air-heat-pump-4ton.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "heat_pump_heating_capacity": 48000, + "heat_pump_cooling_capacity": 48000, + "heat_pump_backup_heating_capacity": 48000 + }, + "sample_files/base-hvac-ground-to-air-heat-pump-5ton.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "heat_pump_heating_capacity": 60000, + "heat_pump_cooling_capacity": 60000, + "heat_pump_backup_heating_capacity": 60000 + }, "sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "heat_pump_heating_capacity": 0, diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-1ton.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-1ton.xml new file mode 100644 index 0000000000..43882ebbbe --- /dev/null +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-1ton.xml @@ -0,0 +1,554 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 12000.0 + 12000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 12000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-2ton.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-2ton.xml new file mode 100644 index 0000000000..8a6aea93b1 --- /dev/null +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-2ton.xml @@ -0,0 +1,554 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 24000.0 + 24000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 24000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-4ton.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-4ton.xml new file mode 100644 index 0000000000..2cd5b920fc --- /dev/null +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-4ton.xml @@ -0,0 +1,554 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 48000.0 + 48000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 48000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-5ton.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-5ton.xml new file mode 100644 index 0000000000..547e014a2d --- /dev/null +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-5ton.xml @@ -0,0 +1,554 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + 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 + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + + ground-to-air + electricity + 60000.0 + 60000.0 + 0.73 + integrated + electricity + + Percent + 1.0 + + 60000.0 + 1.0 + 1.0 + + EER + 16.6 + + + COP + 3.6 + + + 30.0 + + + + + + 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 + + + + + + + + + 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 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file From b97b603d06e1e04e3f581f411a7457472c71757d Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 21 Aug 2023 11:27:39 -0700 Subject: [PATCH 124/217] Refine conductivity and diffusivity defaults. --- HPXMLtoOpenStudio/measure.xml | 8 ++-- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 44 +++++++++---------- HPXMLtoOpenStudio/tests/test_defaults.rb | 6 +-- docs/source/workflow_inputs.rst | 20 ++++----- 4 files changed, 39 insertions(+), 39 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 89c25ddad5..94e25621ba 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - aac1335a-44ee-4427-821a-2a81781206da - 2023-08-21T16:34:19Z + d62df1ec-2e6a-46f2-9c4b-2ee9f2da2330 + 2023-08-21T18:23:24Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -286,7 +286,7 @@ hpxml_defaults.rb rb resource - 4A2F708E + 2EABA5BA
hpxml_schema/HPXML.xsd @@ -538,7 +538,7 @@ test_defaults.rb rb test - 92FBE9AE + 6BF0FB4F test_enclosure.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index dc65603b4f..9baa1852e7 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -496,82 +496,82 @@ def self.apply_site(hpxml) if hpxml.site.ground_conductivity.nil? && hpxml.site.ground_diffusivity.nil? if hpxml.site.soil_type == HPXML::SiteSoilSoilTypeSand if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry - hpxml.site.ground_conductivity = 0.231 # Btu/hr-ft-F + hpxml.site.ground_conductivity = 0.2311 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.009 # ft^2/hr + hpxml.site.ground_diffusivity = 0.0097 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeWet - hpxml.site.ground_conductivity = 1.386 # Btu/hr-ft-F + hpxml.site.ground_conductivity = 1.3865 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.032 # ft^2/hr + hpxml.site.ground_diffusivity = 0.0322 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed - hpxml.site.ground_conductivity = 0.809 # Btu/hr-ft-F + hpxml.site.ground_conductivity = ((0.2311 + 1.3865) / 2.0).round(4) # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.021 # ft^2/hr + hpxml.site.ground_diffusivity = ((0.0097 + 0.0322) / 2.0).round(4) # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true end elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeSilt || hpxml.site.soil_type == HPXML::SiteSoilSoilTypeClay if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry - hpxml.site.ground_conductivity = 0.288 # Btu/hr-ft-F + hpxml.site.ground_conductivity = 0.2889 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.012 # ft^2/hr + hpxml.site.ground_diffusivity = 0.0120 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeWet - hpxml.site.ground_conductivity = 0.982 # Btu/hr-ft-F + hpxml.site.ground_conductivity = 0.9821 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.019 # ft^2/hr + hpxml.site.ground_diffusivity = 0.0194 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed - hpxml.site.ground_conductivity = 0.635 # Btu/hr-ft-F + hpxml.site.ground_conductivity = ((0.2889 + 0.9821) / 2.0).round(4) # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.016 # ft^2/hr + hpxml.site.ground_diffusivity = ((0.0120 + 0.0194) / 2.0).round(4) # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true end elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeLoam - hpxml.site.ground_conductivity = 1.213 # Btu/hr-ft-F + hpxml.site.ground_conductivity = 1.2132 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.035 # ft^2/hr + hpxml.site.ground_diffusivity = 0.0353 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeGravel if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry - hpxml.site.ground_conductivity = 0.231 # Btu/hr-ft-F + hpxml.site.ground_conductivity = 0.2311 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.009 # ft^2/hr + hpxml.site.ground_diffusivity = 0.0097 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeWet - hpxml.site.ground_conductivity = 1.039 # Btu/hr-ft-F + hpxml.site.ground_conductivity = 1.0399 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.029 # ft^2/hr + hpxml.site.ground_diffusivity = 0.0291 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed - hpxml.site.ground_conductivity = 0.635 # Btu/hr-ft-F + hpxml.site.ground_conductivity = ((0.2311 + 1.0399) / 2.0).round(4) # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.019 # ft^2/hr + hpxml.site.ground_diffusivity = ((0.0097 + 0.0291) / 2.0).round(4) # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true end elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeUnknown hpxml.site.ground_conductivity = 1.0 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.021 # ft^2/hr + hpxml.site.ground_diffusivity = 0.0208 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true end elsif hpxml.site.ground_conductivity.nil? hpxml.site.ground_conductivity = 1.0 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true elsif hpxml.site.ground_diffusivity.nil? - hpxml.site.ground_diffusivity = 0.021 # ft^2/hr + hpxml.site.ground_diffusivity = 0.0208 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true end diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 40331ccb04..b4953cb44b 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -338,20 +338,20 @@ def test_site hpxml.site.moisture_type = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.0, 0.021, HPXML::SiteSoilSoilTypeUnknown, HPXML::SiteSoilMoistureTypeMixed) + _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.0, 0.0208, HPXML::SiteSoilSoilTypeUnknown, HPXML::SiteSoilMoistureTypeMixed) # Test defaults w/ gravel soil type hpxml.site.soil_type = HPXML::SiteSoilSoilTypeGravel XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 0.635, 0.019, HPXML::SiteSoilSoilTypeGravel, HPXML::SiteSoilMoistureTypeMixed) + _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 0.6355, 0.0194, HPXML::SiteSoilSoilTypeGravel, HPXML::SiteSoilMoistureTypeMixed) # Test defaults w/ conductivity but no diffusivity hpxml.site.ground_conductivity = 0.8 hpxml.site.soil_type = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 0.8, 0.021, nil, nil) + _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 0.8, 0.0208, nil, nil) end def test_neighbor_buildings diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 6835c5e8f9..336412e2aa 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -562,16 +562,16 @@ Soil information is entered in ``Soil``. ============ ============== ========================== ============= SoilType MoistureType Conductivity [Btu/hr-ft-F] extension/Diffusivity [ft2/hr] ============ ============== ========================== ============= - sand/gravel dry 0.231 0.009 - sand wet 1.386 0.032 - sand mixed 0.809 0.021 - silt/clay dry 0.288 0.012 - silt/clay wet 0.982 0.019 - silt/clay mixed 0.635 0.016 - loam dry/wet/mixed 1.213 0.035 - gravel wet 1.039 0.029 - gravel mixed 0.635 0.019 - unknown dry/wet/mixed 1.000 0.021 + unknown dry/wet/mixed 1.0000 0.0208 + sand/gravel dry 0.2311 0.0097 + sand wet 1.3865 0.0322 + sand mixed 0.8088 0.0210 + silt/clay dry 0.2889 0.0120 + silt/clay wet 0.9821 0.0194 + silt/clay mixed 0.6355 0.0157 + loam dry/wet/mixed 1.2132 0.0353 + gravel wet 1.0399 0.0291 + gravel mixed 0.6355 0.0194 ============ ============== ========================== ============= .. note:: From 04c71ce84131e4ef7b9f591abd84ba284d0cee17 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 21 Aug 2023 11:36:22 -0700 Subject: [PATCH 125/217] Skip unmet hours check for 1ton. --- workflow/tests/hpxml_translator_test.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/workflow/tests/hpxml_translator_test.rb b/workflow/tests/hpxml_translator_test.rb index ab29deb2c6..5138beb4c6 100644 --- a/workflow/tests/hpxml_translator_test.rb +++ b/workflow/tests/hpxml_translator_test.rb @@ -1208,7 +1208,10 @@ def _verify_outputs(rundir, hpxml_path, results, hpxml) if hpxml.total_fraction_cool_load_served == 0 assert_equal(0, unmet_hours_clg) else - assert_operator(unmet_hours_clg, :<, 350) + if hpxml_path.include? '1ton' + else + assert_operator(unmet_hours_clg, :<, 350) + end end end From dc14dd53968a659d426bc65bf166f9da0d0602dc Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 21 Aug 2023 11:43:06 -0700 Subject: [PATCH 126/217] Update new sample files. --- .../sample_files/base-hvac-ground-to-air-heat-pump-1ton.xml | 5 +++++ .../sample_files/base-hvac-ground-to-air-heat-pump-2ton.xml | 5 +++++ .../sample_files/base-hvac-ground-to-air-heat-pump-4ton.xml | 5 +++++ .../sample_files/base-hvac-ground-to-air-heat-pump-5ton.xml | 5 +++++ 4 files changed, 20 insertions(+) diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-1ton.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-1ton.xml index 43882ebbbe..21a0093b00 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-1ton.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-1ton.xml @@ -346,10 +346,15 @@ COP 3.6 + 30.0 + + + vertical + diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-2ton.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-2ton.xml index 8a6aea93b1..e94e47141b 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-2ton.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-2ton.xml @@ -346,10 +346,15 @@ COP 3.6 + 30.0 + + + vertical + diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-4ton.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-4ton.xml index 2cd5b920fc..7b7ecc6110 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-4ton.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-4ton.xml @@ -346,10 +346,15 @@ COP 3.6 + 30.0 + + + vertical + diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-5ton.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-5ton.xml index 547e014a2d..17ff7e345c 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-5ton.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-5ton.xml @@ -346,10 +346,15 @@ COP 3.6 + 30.0 + + + vertical + From 279a9deee31ea066882bdf36bea32e93ebea25d0 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 21 Aug 2023 19:40:04 +0000 Subject: [PATCH 127/217] Latest results. --- workflow/tests/base_results/results.csv | 4 ++++ workflow/tests/base_results/results_bills.csv | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 0b13101397..82b2ae416c 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -290,6 +290,10 @@ base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0 base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-1ton.xml,44.642,44.642,44.642,44.642,0.0,0.0,0.0,0.0,0.0,0.0,6.159,0.511,2.779,0.045,3.371,1.338,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,0.0,27.719,2.824,15.353,9.233,0.613,0.0,0.0,6.0,692.0,5871.5,2569.5,5871.5,24.291,11.612,0.0,3.298,3.637,0.512,7.506,0.629,10.509,-12.563,0.0,0.0,0.0,8.278,-0.06,4.804,0.0,0.728,0.0,11.479,-8.91,-2.5,0.0,-0.173,-0.49,-0.056,2.615,-0.033,-2.027,11.72,0.0,0.0,0.0,-6.452,-0.056,-1.189,-3.198,-0.172,0.0,5.109,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,12000.0,12000.0,12000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-2ton.xml,40.387,40.387,40.387,40.387,0.0,0.0,0.0,0.0,0.0,0.0,5.616,0.461,0.0,0.0,2.735,1.135,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.781,0.0,13.697,9.233,0.614,0.0,0.0,0.0,0.0,3345.6,2777.8,3345.6,23.985,17.223,0.0,3.527,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.062,4.804,0.0,0.728,0.0,5.353,-8.907,-2.499,0.0,-0.03,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.799,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,24000.0,24000.0,24000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-4ton.xml,39.449,39.449,39.449,39.449,0.0,0.0,0.0,0.0,0.0,0.0,5.24,0.4,0.0,0.0,2.386,0.983,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.006,0.0,12.205,9.233,0.614,0.0,0.0,0.0,0.0,3181.7,2509.0,3181.7,19.871,13.597,0.0,3.625,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.5,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.286,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48000.0,48000.0,48000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-5ton.xml,39.382,39.382,39.382,39.382,0.0,0.0,0.0,0.0,0.0,0.0,5.247,0.392,0.0,0.0,2.346,0.956,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.506,0.0,11.935,9.233,0.614,0.0,0.0,0.0,0.0,3157.7,2473.4,3157.7,19.14,13.036,0.0,3.643,3.633,0.511,7.497,0.628,10.503,-12.551,0.0,0.0,0.0,8.268,-0.062,4.804,0.0,0.728,0.0,1.984,-8.907,-2.499,0.0,0.038,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.058,-0.165,0.0,1.011,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,60000.0,60000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.834,33.834,33.834,33.834,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.571,0.777,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.556,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2618.9,2618.9,0.0,14.783,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.993,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-heating-only.xml,36.574,36.574,36.574,36.574,0.0,0.0,0.0,0.0,0.0,0.0,5.394,0.763,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,0.0,20.341,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3367.4,1637.3,3367.4,22.277,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,4.035,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump.xml,39.558,39.558,39.558,39.558,0.0,0.0,0.0,0.0,0.0,0.0,5.249,0.362,0.0,0.0,2.477,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.543,0.0,12.676,9.233,0.614,0.0,0.0,0.0,0.0,3212.4,2584.7,3212.4,20.879,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.051,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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 82ffa231c1..15243315e3 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -290,6 +290,10 @@ base-hvac-furnace-oil-only.xml,2094.22,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1912.48,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,630.01,630.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-wood-only.xml,1630.62,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-1ton.xml,1782.39,144.0,1638.39,0.0,1782.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-2ton.xml,1626.23,144.0,1482.23,0.0,1626.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-4ton.xml,1591.79,144.0,1447.79,0.0,1591.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-5ton.xml,1589.34,144.0,1445.34,0.0,1589.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,1385.73,144.0,1241.73,0.0,1385.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1486.27,144.0,1342.27,0.0,1486.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump.xml,1595.81,144.0,1451.81,0.0,1595.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From bb238b772f898841a3249e91b0f032237bf4aaf9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 21 Aug 2023 20:40:49 +0000 Subject: [PATCH 128/217] Latest results. --- workflow/tests/base_results/results.csv | 32 +++++++++++-------- workflow/tests/base_results/results_bills.csv | 32 +++++++++++-------- 2 files changed, 36 insertions(+), 28 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 363a46c990..129a3c3021 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -48,7 +48,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.964,27.964,27.964,27.964,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.813,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.8,1818.7,1818.7,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.964,27.964,27.964,27.964,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.813,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.8,1818.6,1818.6,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,1354.8,997.6,11399.6,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,3156.5,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 @@ -61,7 +61,7 @@ base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0, base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,1375.7,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,1377.1,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.331,37.331,37.331,37.331,0.0,0.0,0.0,0.0,0.0,0.0,5.335,0.368,0.0,0.0,2.578,1.082,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.352,9.232,0.614,2.924,0.0,0.0,0.0,3214.8,2123.2,3214.8,20.973,15.079,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.096,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.824,8.485,2.01,1354.8,997.6,11413.1,2618.9,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.33,37.33,37.33,37.33,0.0,0.0,0.0,0.0,0.0,0.0,5.334,0.368,0.0,0.0,2.577,1.082,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.879,0.0,13.352,9.232,0.614,2.924,0.0,0.0,0.0,3214.6,2123.0,3214.6,20.972,15.079,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.095,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.824,8.485,2.01,1354.8,997.6,11413.1,2618.9,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -216,11 +216,11 @@ base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.87 base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20283.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,2122.5,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.249,34.249,34.249,34.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.896,0.867,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.692,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2852.3,2852.3,0.0,17.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.15,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.703,36.703,36.703,36.703,0.0,0.0,0.0,0.0,0.0,0.0,5.49,0.795,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,0.0,21.07,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3406.7,1637.3,3406.7,23.398,0.0,0.0,3.55,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.784,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.934,39.934,39.934,39.934,0.0,0.0,0.0,0.0,0.0,0.0,5.492,0.686,0.0,0.0,2.508,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.116,0.0,13.27,9.233,0.614,0.0,0.0,0.0,0.0,3359.1,2541.4,3359.1,22.968,15.707,0.0,3.552,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.668,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.379,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.039,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.9,2585.5,3215.9,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.039,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.9,2585.5,3215.9,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.248,34.248,34.248,34.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.895,0.867,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.692,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2851.9,2851.9,0.0,17.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.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.15,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.702,36.702,36.702,36.702,0.0,0.0,0.0,0.0,0.0,0.0,5.49,0.795,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,0.0,21.069,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3406.5,1637.3,3406.5,23.397,0.0,0.0,3.55,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.784,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.933,39.933,39.933,39.933,0.0,0.0,0.0,0.0,0.0,0.0,5.492,0.686,0.0,0.0,2.507,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.116,0.0,13.27,9.233,0.614,0.0,0.0,0.0,0.0,3358.9,2541.2,3358.9,22.968,15.706,0.0,3.552,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.667,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.379,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,3215.8,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,3215.8,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,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,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,4263.6,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -290,10 +290,14 @@ base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0 base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop.xml,39.184,39.184,39.184,39.184,0.0,0.0,0.0,0.0,0.0,0.0,5.114,0.344,0.0,0.0,2.278,1.007,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.461,0.0,12.652,9.233,0.614,0.0,0.0,0.0,0.0,3142.6,2491.6,3142.6,20.582,14.609,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.966,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.74,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.795,33.795,33.795,33.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.535,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.2,2599.2,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.577,36.577,36.577,36.577,0.0,0.0,0.0,0.0,0.0,0.0,5.396,0.763,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,0.0,20.34,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3353.8,1637.3,3353.8,22.264,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.034,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.542,39.542,39.542,39.542,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.2,2578.0,3210.2,20.866,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,39.184,39.184,39.184,39.184,0.0,0.0,0.0,0.0,0.0,0.0,5.114,0.344,0.0,0.0,2.278,1.007,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.461,0.0,12.652,9.233,0.614,0.0,0.0,0.0,0.0,3142.6,2491.5,3142.6,20.581,14.608,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.966,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.74,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-1ton.xml,44.537,44.537,44.537,44.537,0.0,0.0,0.0,0.0,0.0,0.0,6.152,0.511,2.713,0.044,3.343,1.335,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,0.0,27.703,2.757,15.363,9.233,0.613,0.0,0.0,6.0,687.0,5873.3,2535.7,5873.3,24.291,11.623,0.0,3.299,3.637,0.512,7.506,0.629,10.509,-12.563,0.0,0.0,0.0,8.278,-0.06,4.804,0.0,0.728,0.0,11.462,-8.91,-2.5,0.0,-0.172,-0.489,-0.056,2.616,-0.033,-2.026,11.72,0.0,0.0,0.0,-6.45,-0.056,-1.189,-3.196,-0.172,0.0,5.111,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,12000.0,12000.0,12000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-2ton.xml,40.356,40.356,40.356,40.356,0.0,0.0,0.0,0.0,0.0,0.0,5.606,0.459,0.0,0.0,2.717,1.133,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.771,0.0,13.694,9.233,0.614,0.0,0.0,0.0,0.0,3340.4,2764.9,3340.4,23.945,17.198,0.0,3.528,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.062,4.804,0.0,0.728,0.0,5.344,-8.907,-2.499,0.0,-0.03,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.795,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,24000.0,24000.0,24000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-4ton.xml,39.436,39.436,39.436,39.436,0.0,0.0,0.0,0.0,0.0,0.0,5.236,0.399,0.0,0.0,2.378,0.982,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.005,0.0,12.205,9.233,0.614,0.0,0.0,0.0,0.0,3180.3,2504.4,3180.3,19.865,13.593,0.0,3.625,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.498,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.285,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48000.0,48000.0,48000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-5ton.xml,39.373,39.373,39.373,39.373,0.0,0.0,0.0,0.0,0.0,0.0,5.245,0.392,0.0,0.0,2.341,0.955,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.505,0.0,11.934,9.233,0.614,0.0,0.0,0.0,0.0,3156.6,2470.1,3156.6,19.136,13.033,0.0,3.643,3.633,0.511,7.497,0.628,10.503,-12.551,0.0,0.0,0.0,8.268,-0.062,4.804,0.0,0.728,0.0,1.983,-8.907,-2.499,0.0,0.038,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.058,-0.165,0.0,1.01,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,60000.0,60000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.794,33.794,33.794,33.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.534,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.0,2599.0,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.576,36.576,36.576,36.576,0.0,0.0,0.0,0.0,0.0,0.0,5.396,0.763,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,0.0,20.34,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3353.6,1637.3,3353.6,22.264,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.034,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.1,2577.8,3210.1,20.865,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,7036.9,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,7011.6,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,7134.8,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -301,7 +305,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.72 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,2097.0,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.359,41.359,41.359,41.359,0.0,0.0,0.0,0.0,0.0,0.0,6.659,0.379,0.0,0.0,2.92,0.961,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.424,0.0,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3442.4,2724.6,3442.4,21.793,15.702,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.955,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.235,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.358,41.358,41.358,41.358,0.0,0.0,0.0,0.0,0.0,0.0,6.658,0.379,0.0,0.0,2.92,0.961,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.424,0.0,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3442.3,2724.4,3442.3,21.792,15.702,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.955,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.235,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,4380.1,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -315,7 +319,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668, base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,2913.9,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.293,66.293,51.861,51.861,7.155,3.599,3.679,0.0,0.0,0.0,13.641,0.858,0.197,0.008,6.164,0.552,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.667,0.205,18.96,9.233,0.615,0.0,0.0,0.0,3.0,6378.9,4054.4,6378.9,37.471,22.827,0.0,3.418,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.265,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.235,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.293,66.293,51.861,51.861,7.155,3.599,3.679,0.0,0.0,0.0,13.641,0.858,0.197,0.008,6.164,0.552,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.667,0.205,18.96,9.233,0.615,0.0,0.0,0.0,3.0,6379.1,4054.4,6379.1,37.469,22.828,0.0,3.418,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.265,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.235,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.4,1280.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,1354.8,997.6,8540.6,2104.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -390,7 +394,7 @@ base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0, base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 -base-misc-soil-type-sand-moisture-type-dry.xml,37.307,37.307,37.307,37.307,0.0,0.0,0.0,0.0,0.0,0.0,3.055,0.248,0.0,0.0,2.539,1.03,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,0.0,13.241,9.233,0.609,0.0,0.0,0.0,0.0,2935.4,2576.6,2935.4,17.385,15.348,0.0,3.755,3.756,0.529,5.692,0.653,10.826,-12.451,0.0,0.0,0.0,1.912,-0.043,4.856,0.0,0.737,0.0,2.08,-8.802,-2.478,0.0,-0.074,-0.537,-0.062,0.789,-0.048,-2.192,11.832,0.0,0.0,0.0,-3.436,-0.037,-1.245,-3.237,-0.178,0.0,1.864,7.971,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5059.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-sand-moisture-type-dry.xml,37.313,37.313,37.313,37.313,0.0,0.0,0.0,0.0,0.0,0.0,3.056,0.248,0.0,0.0,2.542,1.03,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.365,0.0,13.241,9.233,0.609,0.0,0.0,0.0,0.0,2936.3,2578.1,2936.3,17.39,15.35,0.0,3.755,3.756,0.529,5.693,0.653,10.826,-12.451,0.0,0.0,0.0,1.912,-0.043,4.855,0.0,0.737,0.0,2.081,-8.802,-2.478,0.0,-0.074,-0.537,-0.062,0.79,-0.048,-2.192,11.832,0.0,0.0,0.0,-3.437,-0.037,-1.245,-3.237,-0.178,0.0,1.864,7.971,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,24.753,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.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 09bb5d3de3..159f10d690 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -48,7 +48,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1132.06,144.0,988.06, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1324.25,144.0,1180.25,0.0,1324.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1139.97,144.0,995.97,0.0,1139.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-generator.xml,1642.11,144.0,962.4,0.0,1106.4,144.0,7.16,151.16,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1170.3,144.0,1026.3,0.0,1170.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,1170.29,144.0,1026.29,0.0,1170.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1058.78,144.0,609.48,0.0,753.48,144.0,161.3,305.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-laundry-room.xml,1031.55,144.0,602.54,0.0,746.54,144.0,141.01,285.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,1630.77,144.0,1128.08,0.0,1272.08,144.0,214.69,358.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -61,7 +61,7 @@ base-bldgtype-multifamily.xml,1257.56,144.0,962.4,0.0,1106.4,144.0,7.16,151.16,0 base-dhw-combi-tankless-outside.xml,1395.79,144.0,786.38,0.0,930.38,144.0,321.41,465.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-combi-tankless.xml,1408.85,144.0,786.73,0.0,930.73,144.0,334.12,478.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-2-speed.xml,1322.95,144.0,1178.95,0.0,1322.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-gshp.xml,1514.05,144.0,1370.05,0.0,1514.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-gshp.xml,1514.03,144.0,1370.03,0.0,1514.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-hpwh.xml,1667.45,144.0,1089.75,0.0,1233.75,144.0,289.7,433.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-tankless.xml,1383.44,144.0,1239.44,0.0,1383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-var-speed.xml,1296.03,144.0,1152.03,0.0,1296.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -216,11 +216,11 @@ base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,1819.3,144.0,1279.93,0.0,1 base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1795.21,144.0,1256.04,0.0,1400.04,144.0,251.17,395.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-furnace-gas-only.xml,1681.87,144.0,1139.26,0.0,1283.26,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-furnace-gas-room-ac.xml,1870.89,144.0,1325.73,0.0,1469.73,144.0,257.16,401.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1400.95,144.0,1256.95,0.0,1400.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1491.0,144.0,1347.0,0.0,1491.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1609.59,144.0,1465.59,0.0,1609.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1594.89,144.0,1450.89,0.0,1594.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1594.89,144.0,1450.89,0.0,1594.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1400.91,144.0,1256.91,0.0,1400.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1490.99,144.0,1346.99,0.0,1490.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1609.57,144.0,1465.57,0.0,1609.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1594.86,144.0,1450.86,0.0,1594.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1594.86,144.0,1450.86,0.0,1594.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,1380.18,144.0,1236.18,0.0,1380.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,1354.02,144.0,1210.02,0.0,1354.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,1486.98,144.0,1342.98,0.0,1486.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -290,10 +290,14 @@ base-hvac-furnace-oil-only.xml,2094.22,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1912.48,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,630.01,630.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-wood-only.xml,1630.62,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop.xml,1582.08,144.0,1438.08,0.0,1582.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1384.29,144.0,1240.29,0.0,1384.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1486.37,144.0,1342.37,0.0,1486.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1595.21,144.0,1451.21,0.0,1595.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop.xml,1582.07,144.0,1438.07,0.0,1582.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-1ton.xml,1778.51,144.0,1634.51,0.0,1778.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-2ton.xml,1625.08,144.0,1481.08,0.0,1625.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-4ton.xml,1591.32,144.0,1447.32,0.0,1591.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-5ton.xml,1589.01,144.0,1445.01,0.0,1589.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1384.27,144.0,1240.27,0.0,1384.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1486.36,144.0,1342.36,0.0,1486.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump.xml,1595.19,144.0,1451.19,0.0,1595.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1941.16,144.0,1797.16,0.0,1941.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1753.34,144.0,1609.34,0.0,1753.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1734.42,144.0,1590.42,0.0,1734.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -301,7 +305,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1890.39,144.0,1347. base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1834.46,144.0,1291.85,0.0,1435.85,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1810.78,144.0,1268.18,0.0,1412.18,144.0,254.6,398.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-furnace-gas-only.xml,1683.54,144.0,1133.54,0.0,1277.54,144.0,262.0,406.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1661.89,144.0,1517.89,0.0,1661.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1661.86,144.0,1517.86,0.0,1661.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1392.28,144.0,1248.28,0.0,1392.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1636.52,144.0,1492.52,0.0,1636.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1368.78,144.0,1224.78,0.0,1368.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -315,7 +319,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1692.21,144.0,1309.03 base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1881.87,144.0,1305.44,0.0,1449.44,0.0,0.0,0.0,0.0,432.43,432.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1525.19,144.0,1381.19,0.0,1525.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ductless.xml,1525.19,144.0,1381.19,0.0,1525.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-multiple.xml,2492.83,144.0,1903.31,0.0,2047.31,144.0,75.79,219.79,0.0,125.87,125.87,0.0,99.86,99.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-multiple.xml,2492.82,144.0,1903.3,0.0,2047.3,144.0,75.79,219.79,0.0,125.87,125.87,0.0,99.86,99.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-none.xml,2521.91,144.0,2377.91,0.0,2521.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-electricity.xml,2026.83,144.0,1882.83,0.0,2026.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-natural-gas.xml,1781.03,144.0,1273.0,0.0,1417.0,144.0,220.03,364.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -390,7 +394,7 @@ base-misc-loads-none.xml,1500.61,144.0,906.92,0.0,1050.92,144.0,305.69,449.69,0. base-misc-neighbor-shading-bldgtype-multifamily.xml,1238.88,144.0,941.51,0.0,1085.51,144.0,9.37,153.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-neighbor-shading.xml,1870.95,144.0,1307.23,0.0,1451.23,144.0,275.72,419.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-shielding-of-home.xml,1849.15,144.0,1324.44,0.0,1468.44,144.0,236.71,380.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-sand-moisture-type-dry.xml,1513.19,144.0,1369.19,0.0,1513.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-sand-moisture-type-dry.xml,1513.4,144.0,1369.4,0.0,1513.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-usage-multiplier.xml,3013.64,144.0,1863.4,0.0,2007.4,144.0,726.99,870.99,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,891.06,144.0,1347.84,-986.63,505.21,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-pv-battery-garage.xml,861.45,144.0,1300.8,-986.62,458.18,144.0,259.27,403.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 600f955ba2da7ca3575d11506fd4472c201bea7d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 25 Aug 2023 00:54:08 +0000 Subject: [PATCH 129/217] Latest results. --- workflow/tests/base_results/results.csv | 38 +++++++++---------- workflow/tests/base_results/results_bills.csv | 38 +++++++++---------- 2 files changed, 38 insertions(+), 38 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 129a3c3021..bcc6844d20 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -48,7 +48,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.964,27.964,27.964,27.964,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.304,0.0,0.0,1.813,2.895,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1731.8,1818.6,1818.6,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,28.182,28.182,28.182,28.182,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.302,0.0,0.0,2.028,2.898,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1733.3,1866.6,1866.6,3.454,7.017,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,1354.8,997.6,11399.6,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,3156.5,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 @@ -61,7 +61,7 @@ base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0, base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,1375.7,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,1377.1,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.33,37.33,37.33,37.33,0.0,0.0,0.0,0.0,0.0,0.0,5.334,0.368,0.0,0.0,2.577,1.082,6.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.879,0.0,13.352,9.232,0.614,2.924,0.0,0.0,0.0,3214.6,2123.0,3214.6,20.972,15.079,0.0,3.604,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.095,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.824,8.485,2.01,1354.8,997.6,11413.1,2618.9,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.752,37.752,37.752,37.752,0.0,0.0,0.0,0.0,0.0,0.0,5.437,0.373,0.0,0.0,2.893,1.088,6.685,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.902,0.0,13.361,9.232,0.614,2.936,0.0,0.0,0.0,3249.1,2245.2,3249.1,21.06,15.111,0.0,3.603,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.118,-8.591,-2.499,0.0,0.011,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.831,8.489,2.01,1354.8,997.6,11411.1,2618.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -216,11 +216,11 @@ base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.87 base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20283.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,2122.5,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.248,34.248,34.248,34.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.895,0.867,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.692,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2851.9,2851.9,0.0,17.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.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.15,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.702,36.702,36.702,36.702,0.0,0.0,0.0,0.0,0.0,0.0,5.49,0.795,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,0.0,21.069,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3406.5,1637.3,3406.5,23.397,0.0,0.0,3.55,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.784,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.933,39.933,39.933,39.933,0.0,0.0,0.0,0.0,0.0,0.0,5.492,0.686,0.0,0.0,2.507,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.116,0.0,13.27,9.233,0.614,0.0,0.0,0.0,0.0,3358.9,2541.2,3358.9,22.968,15.706,0.0,3.552,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.667,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.379,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,3215.8,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.533,39.533,39.533,39.533,0.0,0.0,0.0,0.0,0.0,0.0,5.235,0.363,0.0,0.0,2.456,1.038,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.778,0.0,12.82,9.233,0.614,0.0,0.0,0.0,0.0,3215.8,2585.3,3215.8,21.307,15.023,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.293,-8.907,-2.499,0.0,0.007,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.91,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.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,0.0,3.107,0.86,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.678,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2915.2,2915.2,0.0,17.423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.061,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.137,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.827,36.827,36.827,36.827,0.0,0.0,0.0,0.0,0.0,0.0,5.603,0.807,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,0.0,21.107,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3448.9,1637.3,3448.9,23.551,0.0,0.0,3.549,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.822,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,40.39,40.39,40.39,40.39,0.0,0.0,0.0,0.0,0.0,0.0,5.608,0.696,0.0,0.0,2.831,0.814,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.153,0.0,13.28,9.233,0.614,0.0,0.0,0.0,0.0,3403.2,2649.8,3403.2,23.114,15.754,0.0,3.55,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.705,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.388,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.962,39.962,39.962,39.962,0.0,0.0,0.0,0.0,0.0,0.0,5.339,0.368,0.0,0.0,2.768,1.045,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.804,0.0,12.828,9.233,0.614,0.0,0.0,0.0,0.0,3252.5,2689.1,3252.5,21.428,15.063,0.0,3.597,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.319,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.918,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.962,39.962,39.962,39.962,0.0,0.0,0.0,0.0,0.0,0.0,5.339,0.368,0.0,0.0,2.768,1.045,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.804,0.0,12.828,9.233,0.614,0.0,0.0,0.0,0.0,3252.5,2689.1,3252.5,21.428,15.063,0.0,3.597,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.319,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.918,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,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,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,4263.6,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -290,14 +290,14 @@ base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0 base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop.xml,39.184,39.184,39.184,39.184,0.0,0.0,0.0,0.0,0.0,0.0,5.114,0.344,0.0,0.0,2.278,1.007,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.461,0.0,12.652,9.233,0.614,0.0,0.0,0.0,0.0,3142.6,2491.5,3142.6,20.581,14.608,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.966,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.74,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-1ton.xml,44.537,44.537,44.537,44.537,0.0,0.0,0.0,0.0,0.0,0.0,6.152,0.511,2.713,0.044,3.343,1.335,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,0.0,27.703,2.757,15.363,9.233,0.613,0.0,0.0,6.0,687.0,5873.3,2535.7,5873.3,24.291,11.623,0.0,3.299,3.637,0.512,7.506,0.629,10.509,-12.563,0.0,0.0,0.0,8.278,-0.06,4.804,0.0,0.728,0.0,11.462,-8.91,-2.5,0.0,-0.172,-0.489,-0.056,2.616,-0.033,-2.026,11.72,0.0,0.0,0.0,-6.45,-0.056,-1.189,-3.196,-0.172,0.0,5.111,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,12000.0,12000.0,12000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-2ton.xml,40.356,40.356,40.356,40.356,0.0,0.0,0.0,0.0,0.0,0.0,5.606,0.459,0.0,0.0,2.717,1.133,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.771,0.0,13.694,9.233,0.614,0.0,0.0,0.0,0.0,3340.4,2764.9,3340.4,23.945,17.198,0.0,3.528,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.062,4.804,0.0,0.728,0.0,5.344,-8.907,-2.499,0.0,-0.03,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.795,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,24000.0,24000.0,24000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-4ton.xml,39.436,39.436,39.436,39.436,0.0,0.0,0.0,0.0,0.0,0.0,5.236,0.399,0.0,0.0,2.378,0.982,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.005,0.0,12.205,9.233,0.614,0.0,0.0,0.0,0.0,3180.3,2504.4,3180.3,19.865,13.593,0.0,3.625,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.498,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.285,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48000.0,48000.0,48000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-5ton.xml,39.373,39.373,39.373,39.373,0.0,0.0,0.0,0.0,0.0,0.0,5.245,0.392,0.0,0.0,2.341,0.955,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.505,0.0,11.934,9.233,0.614,0.0,0.0,0.0,0.0,3156.6,2470.1,3156.6,19.136,13.033,0.0,3.643,3.633,0.511,7.497,0.628,10.503,-12.551,0.0,0.0,0.0,8.268,-0.062,4.804,0.0,0.728,0.0,1.983,-8.907,-2.499,0.0,0.038,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.058,-0.165,0.0,1.01,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,60000.0,60000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.794,33.794,33.794,33.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.534,0.774,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.663,0.0,0.0,0.0,0.0,2021.1,2599.0,2599.0,0.0,14.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.988,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.576,36.576,36.576,36.576,0.0,0.0,0.0,0.0,0.0,0.0,5.396,0.763,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,0.0,20.34,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3353.6,1637.3,3353.6,22.264,0.0,0.0,3.577,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.034,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.541,39.541,39.541,39.541,0.0,0.0,0.0,0.0,0.0,0.0,5.244,0.361,0.0,0.0,2.467,1.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,12.675,9.233,0.614,0.0,0.0,0.0,0.0,3210.1,2577.8,3210.1,20.865,14.695,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.048,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.763,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,39.476,39.476,39.476,39.476,0.0,0.0,0.0,0.0,0.0,0.0,5.177,0.344,0.0,0.0,2.506,1.007,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.461,0.0,12.652,9.233,0.614,0.0,0.0,0.0,0.0,3156.4,2554.7,3156.4,20.581,14.608,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.966,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.74,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-1ton.xml,45.619,45.619,45.619,45.619,0.0,0.0,0.0,0.0,0.0,0.0,6.272,0.514,3.1,0.051,3.889,1.354,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,0.0,27.791,3.151,15.293,9.233,0.613,0.0,0.0,9.0,726.0,5870.6,2635.7,5870.6,24.259,11.438,0.0,3.295,3.637,0.512,7.506,0.629,10.509,-12.563,0.0,0.0,0.0,8.277,-0.06,4.804,0.0,0.728,0.0,11.554,-8.91,-2.5,0.0,-0.175,-0.492,-0.056,2.609,-0.034,-2.035,11.72,0.0,0.0,0.0,-6.461,-0.056,-1.19,-3.209,-0.173,0.0,5.091,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,12000.0,12000.0,12000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-2ton.xml,40.892,40.892,40.892,40.892,0.0,0.0,0.0,0.0,0.0,0.0,5.744,0.469,0.0,0.0,3.094,1.144,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.83,0.0,13.711,9.233,0.614,0.0,0.0,0.0,0.0,3391.1,2908.8,3391.1,24.179,17.302,0.0,3.526,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.062,4.804,0.0,0.728,0.0,5.403,-8.907,-2.499,0.0,-0.03,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.062,-0.165,0.0,2.813,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,24000.0,24000.0,24000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-4ton.xml,39.814,39.814,39.814,39.814,0.0,0.0,0.0,0.0,0.0,0.0,5.325,0.403,0.0,0.0,2.66,0.986,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.016,0.0,12.208,9.233,0.614,0.0,0.0,0.0,0.0,3207.1,2588.5,3207.1,19.911,13.608,0.0,3.624,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.51,-8.907,-2.499,0.0,0.029,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.289,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48000.0,48000.0,48000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-5ton.xml,39.73,39.73,39.73,39.73,0.0,0.0,0.0,0.0,0.0,0.0,5.327,0.394,0.0,0.0,2.61,0.959,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.511,0.0,11.936,9.233,0.614,0.0,0.0,0.0,0.0,3179.6,2549.9,3179.6,19.164,13.043,0.0,3.643,3.633,0.511,7.497,0.628,10.503,-12.551,0.0,0.0,0.0,8.268,-0.062,4.804,0.0,0.728,0.0,1.99,-8.907,-2.499,0.0,0.038,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.058,-0.165,0.0,1.013,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,60000.0,60000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.0,34.0,34.0,34.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.744,0.77,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2657.7,2657.7,0.0,14.727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.983,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.687,36.687,36.687,36.687,0.0,0.0,0.0,0.0,0.0,0.0,5.498,0.772,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,0.0,20.365,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3388.5,1637.3,3388.5,22.37,0.0,0.0,3.576,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.06,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.961,39.961,39.961,39.961,0.0,0.0,0.0,0.0,0.0,0.0,5.345,0.366,0.0,0.0,2.774,1.035,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.562,0.0,12.682,9.233,0.614,0.0,0.0,0.0,0.0,3244.2,2678.5,3244.2,20.952,14.728,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.07,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,7036.9,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,7011.6,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,7134.8,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -305,7 +305,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.72 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,2097.0,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.358,41.358,41.358,41.358,0.0,0.0,0.0,0.0,0.0,0.0,6.658,0.379,0.0,0.0,2.92,0.961,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.424,0.0,13.136,9.233,0.614,0.0,0.0,0.0,0.0,3442.3,2724.4,3442.3,21.792,15.702,0.0,3.577,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.955,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.235,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.862,41.862,41.862,41.862,0.0,0.0,0.0,0.0,0.0,0.0,6.784,0.383,0.0,0.0,3.287,0.967,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.448,0.0,13.145,9.233,0.614,0.0,0.0,0.0,0.0,3481.0,2847.1,3481.0,21.884,15.744,0.0,3.576,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.98,-8.907,-2.499,0.0,-0.008,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.244,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,4380.1,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -319,7 +319,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668, base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,2913.9,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.293,66.293,51.861,51.861,7.155,3.599,3.679,0.0,0.0,0.0,13.641,0.858,0.197,0.008,6.164,0.552,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.667,0.205,18.96,9.233,0.615,0.0,0.0,0.0,3.0,6379.1,4054.4,6379.1,37.469,22.828,0.0,3.418,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.265,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.235,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.461,66.461,52.016,52.016,7.161,3.602,3.682,0.0,0.0,0.0,13.672,0.861,0.199,0.008,6.281,0.554,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.711,0.207,18.967,9.233,0.615,0.0,0.0,0.0,4.0,6431.3,4083.4,6431.3,37.751,22.729,0.0,3.417,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.309,-8.919,-2.502,0.0,-0.122,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.242,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.4,1280.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,1354.8,997.6,8540.6,2104.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -387,14 +387,14 @@ base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8. base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-ground-diffusivity.xml,39.564,39.564,39.564,39.564,0.0,0.0,0.0,0.0,0.0,0.0,5.252,0.362,0.0,0.0,2.478,1.03,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,0.0,12.677,9.233,0.614,0.0,0.0,0.0,0.0,3214.1,2584.5,3214.1,20.886,14.703,0.0,3.607,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.053,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.764,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-ground-diffusivity.xml,39.989,39.989,39.989,39.989,0.0,0.0,0.0,0.0,0.0,0.0,5.355,0.367,0.0,0.0,2.79,1.037,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,12.684,9.233,0.614,0.0,0.0,0.0,0.0,3249.2,2686.8,3249.2,20.977,14.737,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.076,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 -base-misc-soil-type-sand-moisture-type-dry.xml,37.313,37.313,37.313,37.313,0.0,0.0,0.0,0.0,0.0,0.0,3.056,0.248,0.0,0.0,2.542,1.03,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.365,0.0,13.241,9.233,0.609,0.0,0.0,0.0,0.0,2936.3,2578.1,2936.3,17.39,15.35,0.0,3.755,3.756,0.529,5.693,0.653,10.826,-12.451,0.0,0.0,0.0,1.912,-0.043,4.855,0.0,0.737,0.0,2.081,-8.802,-2.478,0.0,-0.074,-0.537,-0.062,0.79,-0.048,-2.192,11.832,0.0,0.0,0.0,-3.437,-0.037,-1.245,-3.237,-0.178,0.0,1.864,7.971,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-soil-type-sand-moisture-type-dry.xml,37.681,37.681,37.681,37.681,0.0,0.0,0.0,0.0,0.0,0.0,3.105,0.249,0.0,0.0,2.855,1.036,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.372,0.0,13.248,9.233,0.609,0.0,0.0,0.0,0.0,2956.2,2674.4,2956.2,17.435,15.377,0.0,3.755,3.756,0.529,5.693,0.653,10.826,-12.451,0.0,0.0,0.0,1.913,-0.043,4.855,0.0,0.737,0.0,2.088,-8.802,-2.478,0.0,-0.074,-0.537,-0.062,0.79,-0.048,-2.192,11.832,0.0,0.0,0.0,-3.437,-0.037,-1.245,-3.237,-0.178,0.0,1.87,7.971,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,24.753,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.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 159f10d690..ba0fcdb43a 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -48,7 +48,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1132.06,144.0,988.06, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1324.25,144.0,1180.25,0.0,1324.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1139.97,144.0,995.97,0.0,1139.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-generator.xml,1642.11,144.0,962.4,0.0,1106.4,144.0,7.16,151.16,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1170.29,144.0,1026.29,0.0,1170.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1178.29,144.0,1034.29,0.0,1178.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1058.78,144.0,609.48,0.0,753.48,144.0,161.3,305.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-laundry-room.xml,1031.55,144.0,602.54,0.0,746.54,144.0,141.01,285.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,1630.77,144.0,1128.08,0.0,1272.08,144.0,214.69,358.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -61,7 +61,7 @@ base-bldgtype-multifamily.xml,1257.56,144.0,962.4,0.0,1106.4,144.0,7.16,151.16,0 base-dhw-combi-tankless-outside.xml,1395.79,144.0,786.38,0.0,930.38,144.0,321.41,465.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-combi-tankless.xml,1408.85,144.0,786.73,0.0,930.73,144.0,334.12,478.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-2-speed.xml,1322.95,144.0,1178.95,0.0,1322.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-gshp.xml,1514.03,144.0,1370.03,0.0,1514.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-gshp.xml,1529.5,144.0,1385.5,0.0,1529.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-hpwh.xml,1667.45,144.0,1089.75,0.0,1233.75,144.0,289.7,433.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-tankless.xml,1383.44,144.0,1239.44,0.0,1383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-var-speed.xml,1296.03,144.0,1152.03,0.0,1296.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -216,11 +216,11 @@ base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,1819.3,144.0,1279.93,0.0,1 base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1795.21,144.0,1256.04,0.0,1400.04,144.0,251.17,395.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-furnace-gas-only.xml,1681.87,144.0,1139.26,0.0,1283.26,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-furnace-gas-room-ac.xml,1870.89,144.0,1325.73,0.0,1469.73,144.0,257.16,401.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1400.91,144.0,1256.91,0.0,1400.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1490.99,144.0,1346.99,0.0,1490.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1609.57,144.0,1465.57,0.0,1609.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1594.86,144.0,1450.86,0.0,1594.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1594.86,144.0,1450.86,0.0,1594.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1408.43,144.0,1264.43,0.0,1408.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1495.55,144.0,1351.55,0.0,1495.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1626.32,144.0,1482.32,0.0,1626.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1610.61,144.0,1466.61,0.0,1610.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1610.61,144.0,1466.61,0.0,1610.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,1380.18,144.0,1236.18,0.0,1380.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,1354.02,144.0,1210.02,0.0,1354.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,1486.98,144.0,1342.98,0.0,1486.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -290,14 +290,14 @@ base-hvac-furnace-oil-only.xml,2094.22,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1912.48,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,630.01,630.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-wood-only.xml,1630.62,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop.xml,1582.07,144.0,1438.07,0.0,1582.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-1ton.xml,1778.51,144.0,1634.51,0.0,1778.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-2ton.xml,1625.08,144.0,1481.08,0.0,1625.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-4ton.xml,1591.32,144.0,1447.32,0.0,1591.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-5ton.xml,1589.01,144.0,1445.01,0.0,1589.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1384.27,144.0,1240.27,0.0,1384.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1486.36,144.0,1342.36,0.0,1486.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1595.19,144.0,1451.19,0.0,1595.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop.xml,1592.79,144.0,1448.79,0.0,1592.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-1ton.xml,1818.24,144.0,1674.24,0.0,1818.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-2ton.xml,1644.77,144.0,1500.77,0.0,1644.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-4ton.xml,1605.19,144.0,1461.19,0.0,1605.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-5ton.xml,1602.12,144.0,1458.12,0.0,1602.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1391.81,144.0,1247.81,0.0,1391.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1490.44,144.0,1346.44,0.0,1490.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump.xml,1610.57,144.0,1466.57,0.0,1610.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1941.16,144.0,1797.16,0.0,1941.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1753.34,144.0,1609.34,0.0,1753.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1734.42,144.0,1590.42,0.0,1734.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -305,7 +305,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1890.39,144.0,1347. base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1834.46,144.0,1291.85,0.0,1435.85,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1810.78,144.0,1268.18,0.0,1412.18,144.0,254.6,398.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-furnace-gas-only.xml,1683.54,144.0,1133.54,0.0,1277.54,144.0,262.0,406.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1661.86,144.0,1517.86,0.0,1661.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1680.34,144.0,1536.34,0.0,1680.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1392.28,144.0,1248.28,0.0,1392.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1636.52,144.0,1492.52,0.0,1636.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1368.78,144.0,1224.78,0.0,1368.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -319,7 +319,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1692.21,144.0,1309.03 base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1881.87,144.0,1305.44,0.0,1449.44,0.0,0.0,0.0,0.0,432.43,432.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1525.19,144.0,1381.19,0.0,1525.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ductless.xml,1525.19,144.0,1381.19,0.0,1525.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-multiple.xml,2492.82,144.0,1903.3,0.0,2047.3,144.0,75.79,219.79,0.0,125.87,125.87,0.0,99.86,99.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-multiple.xml,2498.78,144.0,1908.99,0.0,2052.99,144.0,75.86,219.86,0.0,125.98,125.98,0.0,99.95,99.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-none.xml,2521.91,144.0,2377.91,0.0,2521.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-electricity.xml,2026.83,144.0,1882.83,0.0,2026.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-natural-gas.xml,1781.03,144.0,1273.0,0.0,1417.0,144.0,220.03,364.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -387,14 +387,14 @@ base-misc-generators-battery-scheduled.xml,2298.24,144.0,1381.06,0.0,1525.06,144 base-misc-generators-battery.xml,2236.54,144.0,1319.36,0.0,1463.36,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-generators.xml,2236.54,144.0,1319.36,0.0,1463.36,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-ground-conductivity.xml,1822.54,144.0,1316.42,0.0,1460.42,144.0,218.12,362.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-ground-diffusivity.xml,1596.01,144.0,1452.01,0.0,1596.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-ground-diffusivity.xml,1611.61,144.0,1467.61,0.0,1611.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-loads-large-uncommon.xml,3692.47,144.0,2510.26,0.0,2654.26,144.0,743.94,887.94,0.0,0.0,0.0,0.0,67.83,67.83,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3052.47,144.0,2380.0,0.0,2524.0,144.0,214.63,358.63,0.0,87.4,87.4,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1500.61,144.0,906.92,0.0,1050.92,144.0,305.69,449.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-neighbor-shading-bldgtype-multifamily.xml,1238.88,144.0,941.51,0.0,1085.51,144.0,9.37,153.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-neighbor-shading.xml,1870.95,144.0,1307.23,0.0,1451.23,144.0,275.72,419.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-shielding-of-home.xml,1849.15,144.0,1324.44,0.0,1468.44,144.0,236.71,380.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-sand-moisture-type-dry.xml,1513.4,144.0,1369.4,0.0,1513.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-soil-type-sand-moisture-type-dry.xml,1526.89,144.0,1382.89,0.0,1526.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-usage-multiplier.xml,3013.64,144.0,1863.4,0.0,2007.4,144.0,726.99,870.99,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,891.06,144.0,1347.84,-986.63,505.21,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-pv-battery-garage.xml,861.45,144.0,1300.8,-986.62,458.18,144.0,259.27,403.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From cd5eb1a81df9134281d97d589c53c01ab068d917 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 11 Sep 2023 16:05:57 -0700 Subject: [PATCH 130/217] Set g function ref ratio as radius over length. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/hvac.rb | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 90a88c0d34..89fa420476 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 972718e7-19fc-4b8f-adc9-246916d17229 - 2023-08-25T14:42:54Z + 9f0c57c4-a887-4b4a-bf50-90ba783b18d9 + 2023-09-11T23:05:26Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -322,7 +322,7 @@ hvac.rb rb resource - 63E26750 + B86B4518 hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index 3e27e48f55..b583dc5950 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -284,10 +284,10 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, ground_heat_exch_vert.setUTubeDistance(UnitConversions.convert(heat_pump.geothermal_loop.shank_spacing, 'in', 'm')) ground_heat_exch_vert.setPipeThickness(UnitConversions.convert((hp_ap.pipe_od - hp_ap.pipe_id) / 2.0, 'in', 'm')) ground_heat_exch_vert.setMaximumLengthofSimulation(1) - ground_heat_exch_vert.setGFunctionReferenceRatio(0.0005) ground_heat_exch_vert.setDesignFlowRate(UnitConversions.convert(hp_ap.GSHP_Loop_flow, 'gal/min', 'm^3/s')) ground_heat_exch_vert.setNumberofBoreHoles(hp_ap.GSHP_Bore_Holes.to_i) ground_heat_exch_vert.setBoreHoleLength(UnitConversions.convert(hp_ap.GSHP_Bore_Depth, 'ft', 'm')) + ground_heat_exch_vert.setGFunctionReferenceRatio(ground_heat_exch_vert.boreHoleRadius.get / ground_heat_exch_vert.boreHoleLength.get) # ensure this ratio is consistent with rb/H so that g values will be taken as-is ground_heat_exch_vert.removeAllGFunctions for i in 0..(hp_ap.GSHP_G_Functions[0].size - 1) ground_heat_exch_vert.addGFunction(hp_ap.GSHP_G_Functions[0][i], hp_ap.GSHP_G_Functions[1][i]) From b55a59cca06b37146ad035244ac77fcdc28e061d Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 11:14:07 -0700 Subject: [PATCH 131/217] Move borefield config arg to the top. --- BuildResidentialHPXML/measure.rb | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 118e71158d..db9e0b1ff0 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1381,6 +1381,20 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setUnits('W') args << arg + geothermal_loop_borefield_configuration_choices = OpenStudio::StringVector.new + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationRectangle + # geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationZonedRectangle + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationC + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationL + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationU + geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationLopsidedU + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_borefield_configuration', geothermal_loop_borefield_configuration_choices, false) + arg.setDisplayName('Geothermal Loop: Borefield Configuration') + arg.setDescription("Borefield configuration of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") + args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_loop_flow', false) arg.setDisplayName('Geothermal Loop: Loop Flow') arg.setDescription("Water flow rate through the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML autosized default is used.") @@ -1440,20 +1454,6 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setUnits('in') args << arg - geothermal_loop_borefield_configuration_choices = OpenStudio::StringVector.new - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationRectangle - # geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationZonedRectangle - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationC - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationL - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationU - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationLopsidedU - - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_borefield_configuration', geothermal_loop_borefield_configuration_choices, false) - arg.setDisplayName('Geothermal Loop: Borefield Configuration') - arg.setDescription("Borefield configuration of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") - args << arg - heating_system_2_type_choices = OpenStudio::StringVector.new heating_system_2_type_choices << 'none' heating_system_2_type_choices << HPXML::HVACTypeFurnace From 6cee7f513a74a19aa4004918a9132d1017e01d1b Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 11:14:23 -0700 Subject: [PATCH 132/217] Add a readme for g_functions files. --- HPXMLtoOpenStudio/resources/g_functions/README.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 HPXMLtoOpenStudio/resources/g_functions/README.md diff --git a/HPXMLtoOpenStudio/resources/g_functions/README.md b/HPXMLtoOpenStudio/resources/g_functions/README.md new file mode 100644 index 0000000000..ad523285f7 --- /dev/null +++ b/HPXMLtoOpenStudio/resources/g_functions/README.md @@ -0,0 +1,2 @@ +G-Function data obtained from G-Function Library for Modeling Vertical Bore Ground Heat Exchanger (https://gdr.openei.org/submissions/1325) +Specifically, the contents of https://gdr.openei.org/files/1325/g-function_library_1.0.zip From 9319b0dc35344b8d4429a99d8e76ad73184a3fab Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 11:24:51 -0700 Subject: [PATCH 133/217] Simplify soil type constants. --- BuildResidentialHPXML/measure.rb | 14 ++-- BuildResidentialHPXML/measure.xml | 74 +++++++++---------- HPXMLtoOpenStudio/measure.xml | 16 ++-- HPXMLtoOpenStudio/resources/hpxml.rb | 14 ++-- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 12 +-- HPXMLtoOpenStudio/tests/test_defaults.rb | 10 +-- 6 files changed, 73 insertions(+), 67 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index db9e0b1ff0..c1d82ead98 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -142,13 +142,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument args << arg site_soil_type_choices = OpenStudio::StringVector.new - site_soil_type_choices << HPXML::SiteSoilSoilTypeSand - site_soil_type_choices << HPXML::SiteSoilSoilTypeSilt - site_soil_type_choices << HPXML::SiteSoilSoilTypeClay - site_soil_type_choices << HPXML::SiteSoilSoilTypeLoam - site_soil_type_choices << HPXML::SiteSoilSoilTypeGravel - # site_soil_type_choices << HPXML::SiteSoilSoilTypeOther - site_soil_type_choices << HPXML::SiteSoilSoilTypeUnknown + site_soil_type_choices << HPXML::SiteSoilTypeSand + site_soil_type_choices << HPXML::SiteSoilTypeSilt + site_soil_type_choices << HPXML::SiteSoilTypeClay + site_soil_type_choices << HPXML::SiteSoilTypeLoam + site_soil_type_choices << HPXML::SiteSoilTypeGravel + # site_soil_type_choices << HPXML::SiteSoilTypeOther + site_soil_type_choices << HPXML::SiteSoilTypeUnknown arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('site_soil_type', site_soil_type_choices, false) arg.setDisplayName('Site: Soil Type') diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index b43059ee64..1794dcadbb 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 19d75d46-6047-42a3-9b1a-913168145f2a - 2023-08-24T22:11:38Z + d99aeec0-381b-45ac-9dc8-1ef9b33abeec + 2023-09-12T18:23:49Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -2837,6 +2837,40 @@ false false + + geothermal_loop_borefield_configuration + Geothermal Loop: Borefield Configuration + Borefield configuration of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. + Choice + false + false + + + Rectangle + Rectangle + + + Open Rectangle + Open Rectangle + + + C + C + + + L + L + + + U + U + + + Lopsided U + Lopsided U + + + geothermal_loop_loop_flow Geothermal Loop: Loop Flow @@ -2932,40 +2966,6 @@ false false - - geothermal_loop_borefield_configuration - Geothermal Loop: Borefield Configuration - Borefield configuration of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. - Choice - false - false - - - Rectangle - Rectangle - - - Open Rectangle - Open Rectangle - - - C - C - - - L - L - - - U - U - - - Lopsided U - Lopsided U - - - heating_system_2_type Heating System 2: Type @@ -6935,7 +6935,7 @@ measure.rb rb script - 49E90B84 + 6C893F36 geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 89fa420476..d8e7ff537b 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 9f0c57c4-a887-4b4a-bf50-90ba783b18d9 - 2023-09-11T23:05:26Z + c3ca8871-e045-47ba-822b-445359b069dc + 2023-09-12T18:23:52Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -246,6 +246,12 @@ resource FF25A024 + + g_functions/README.md + md + resource + 3A6546AB + g_functions/U_configurations_5m_v1.0.json json @@ -286,13 +292,13 @@ hpxml.rb rb resource - 277212B8 + C939242E hpxml_defaults.rb rb resource - 2EABA5BA + 4D2C74F1 hpxml_schema/HPXML.xsd @@ -544,7 +550,7 @@ test_defaults.rb rb test - 6BF0FB4F + D987CE3C test_enclosure.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 93d19c055d..059d70cbb9 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -316,13 +316,13 @@ class HPXML < Object SiteSoilMoistureTypeDry = 'dry' SiteSoilMoistureTypeMixed = 'mixed' SiteSoilMoistureTypeWet = 'wet' - SiteSoilSoilTypeClay = 'clay' - SiteSoilSoilTypeGravel = 'gravel' - SiteSoilSoilTypeLoam = 'loam' - SiteSoilSoilTypeOther = 'other' - SiteSoilSoilTypeSand = 'sand' - SiteSoilSoilTypeSilt = 'silt' - SiteSoilSoilTypeUnknown = 'unknown' + SiteSoilTypeClay = 'clay' + SiteSoilTypeGravel = 'gravel' + SiteSoilTypeLoam = 'loam' + SiteSoilTypeOther = 'other' + SiteSoilTypeSand = 'sand' + SiteSoilTypeSilt = 'silt' + SiteSoilTypeUnknown = 'unknown' SiteTypeUrban = 'urban' SiteTypeSuburban = 'suburban' SiteTypeRural = 'rural' diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 9baa1852e7..9752da2a58 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -484,7 +484,7 @@ def self.apply_site(hpxml) end if hpxml.site.soil_type.nil? && hpxml.site.ground_conductivity.nil? && hpxml.site.ground_diffusivity.nil? - hpxml.site.soil_type = HPXML::SiteSoilSoilTypeUnknown + hpxml.site.soil_type = HPXML::SiteSoilTypeUnknown hpxml.site.soil_type_isdefaulted = true end @@ -494,7 +494,7 @@ def self.apply_site(hpxml) end if hpxml.site.ground_conductivity.nil? && hpxml.site.ground_diffusivity.nil? - if hpxml.site.soil_type == HPXML::SiteSoilSoilTypeSand + if hpxml.site.soil_type == HPXML::SiteSoilTypeSand if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry hpxml.site.ground_conductivity = 0.2311 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true @@ -514,7 +514,7 @@ def self.apply_site(hpxml) hpxml.site.ground_diffusivity = ((0.0097 + 0.0322) / 2.0).round(4) # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true end - elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeSilt || hpxml.site.soil_type == HPXML::SiteSoilSoilTypeClay + elsif hpxml.site.soil_type == HPXML::SiteSoilTypeSilt || hpxml.site.soil_type == HPXML::SiteSoilTypeClay if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry hpxml.site.ground_conductivity = 0.2889 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true @@ -534,13 +534,13 @@ def self.apply_site(hpxml) hpxml.site.ground_diffusivity = ((0.0120 + 0.0194) / 2.0).round(4) # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true end - elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeLoam + elsif hpxml.site.soil_type == HPXML::SiteSoilTypeLoam hpxml.site.ground_conductivity = 1.2132 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true hpxml.site.ground_diffusivity = 0.0353 # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true - elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeGravel + elsif hpxml.site.soil_type == HPXML::SiteSoilTypeGravel if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry hpxml.site.ground_conductivity = 0.2311 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true @@ -560,7 +560,7 @@ def self.apply_site(hpxml) hpxml.site.ground_diffusivity = ((0.0097 + 0.0291) / 2.0).round(4) # ft^2/hr hpxml.site.ground_diffusivity_isdefaulted = true end - elsif hpxml.site.soil_type == HPXML::SiteSoilSoilTypeUnknown + elsif hpxml.site.soil_type == HPXML::SiteSoilTypeUnknown hpxml.site.ground_conductivity = 1.0 # Btu/hr-ft-F hpxml.site.ground_conductivity_isdefaulted = true diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index b4953cb44b..ca9ed31de5 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -323,11 +323,11 @@ def test_site hpxml.site.shielding_of_home = HPXML::ShieldingExposed hpxml.site.ground_conductivity = 0.8 hpxml.site.ground_diffusivity = 0.9 - hpxml.site.soil_type = HPXML::SiteSoilSoilTypeClay + hpxml.site.soil_type = HPXML::SiteSoilTypeClay hpxml.site.moisture_type = HPXML::SiteSoilMoistureTypeDry XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, HPXML::SiteTypeRural, HPXML::ShieldingExposed, 0.8, 0.9, HPXML::SiteSoilSoilTypeClay, HPXML::SiteSoilMoistureTypeDry) + _test_default_site_values(hpxml_default, HPXML::SiteTypeRural, HPXML::ShieldingExposed, 0.8, 0.9, HPXML::SiteSoilTypeClay, HPXML::SiteSoilMoistureTypeDry) # Test defaults hpxml.site.site_type = nil @@ -338,13 +338,13 @@ def test_site hpxml.site.moisture_type = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.0, 0.0208, HPXML::SiteSoilSoilTypeUnknown, HPXML::SiteSoilMoistureTypeMixed) + _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.0, 0.0208, HPXML::SiteSoilTypeUnknown, HPXML::SiteSoilMoistureTypeMixed) # Test defaults w/ gravel soil type - hpxml.site.soil_type = HPXML::SiteSoilSoilTypeGravel + hpxml.site.soil_type = HPXML::SiteSoilTypeGravel XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 0.6355, 0.0194, HPXML::SiteSoilSoilTypeGravel, HPXML::SiteSoilMoistureTypeMixed) + _test_default_site_values(hpxml_default, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 0.6355, 0.0194, HPXML::SiteSoilTypeGravel, HPXML::SiteSoilMoistureTypeMixed) # Test defaults w/ conductivity but no diffusivity hpxml.site.ground_conductivity = 0.8 From 42ef6acaf62b6ec2adb4cb7ea4ef5117f7bd1a00 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 11:45:42 -0700 Subject: [PATCH 134/217] Delete loop idref on heat pump. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/hpxml.rb | 5 +++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index d8e7ff537b..ffa8dbcba5 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - c3ca8871-e045-47ba-822b-445359b069dc - 2023-09-12T18:23:52Z + 46da0fb0-63bd-4ebf-baaf-9b5481d14d9d + 2023-09-12T18:45:10Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -292,7 +292,7 @@ hpxml.rb rb resource - C939242E + 20E5B922 hpxml_defaults.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 059d70cbb9..88e8e37fc0 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -4072,6 +4072,11 @@ class GeothermalLoop < BaseElement def delete @hpxml_object.geothermal_loops.delete(self) + @hpxml_object.heat_pumps.each do |heat_pump| + next unless heat_pump.geothermal_loop_idref == @id + + heat_pump.geothermal_loop_idref = nil + end end def check_for_errors From b5af3087918ce45c37e99e5cc82f1cbecfde70a9 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 14:40:32 -0700 Subject: [PATCH 135/217] Simplify code in hpxml defaults. --- HPXMLtoOpenStudio/measure.xml | 8 ++-- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 41 +++++-------------- HPXMLtoOpenStudio/tests/test_validation.rb | 2 +- 3 files changed, 15 insertions(+), 36 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index ffa8dbcba5..768ba8fd49 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 46da0fb0-63bd-4ebf-baaf-9b5481d14d9d - 2023-09-12T18:45:10Z + 251ae436-a408-4184-bd71-319dc78060a7 + 2023-09-12T21:40:11Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -298,7 +298,7 @@ hpxml_defaults.rb rb resource - 4D2C74F1 + 69097035 hpxml_schema/HPXML.xsd @@ -622,7 +622,7 @@ test_validation.rb rb test - B7B4A15F + 725BAE3D test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 9752da2a58..6550b30bd7 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -497,74 +497,53 @@ def self.apply_site(hpxml) if hpxml.site.soil_type == HPXML::SiteSoilTypeSand if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry hpxml.site.ground_conductivity = 0.2311 # Btu/hr-ft-F - hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.0097 # ft^2/hr - hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeWet hpxml.site.ground_conductivity = 1.3865 # Btu/hr-ft-F - hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.0322 # ft^2/hr - hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed hpxml.site.ground_conductivity = ((0.2311 + 1.3865) / 2.0).round(4) # Btu/hr-ft-F - hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = ((0.0097 + 0.0322) / 2.0).round(4) # ft^2/hr - hpxml.site.ground_diffusivity_isdefaulted = true end + hpxml.site.ground_conductivity_isdefaulted = true + hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.soil_type == HPXML::SiteSoilTypeSilt || hpxml.site.soil_type == HPXML::SiteSoilTypeClay if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry hpxml.site.ground_conductivity = 0.2889 # Btu/hr-ft-F - hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.0120 # ft^2/hr - hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeWet hpxml.site.ground_conductivity = 0.9821 # Btu/hr-ft-F - hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.0194 # ft^2/hr - hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed hpxml.site.ground_conductivity = ((0.2889 + 0.9821) / 2.0).round(4) # Btu/hr-ft-F - hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = ((0.0120 + 0.0194) / 2.0).round(4) # ft^2/hr - hpxml.site.ground_diffusivity_isdefaulted = true end + hpxml.site.ground_conductivity_isdefaulted = true + hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.soil_type == HPXML::SiteSoilTypeLoam hpxml.site.ground_conductivity = 1.2132 # Btu/hr-ft-F - hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.0353 # ft^2/hr + + hpxml.site.ground_conductivity_isdefaulted = true hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.soil_type == HPXML::SiteSoilTypeGravel if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry hpxml.site.ground_conductivity = 0.2311 # Btu/hr-ft-F - hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.0097 # ft^2/hr - hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeWet hpxml.site.ground_conductivity = 1.0399 # Btu/hr-ft-F - hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.0291 # ft^2/hr - hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeMixed hpxml.site.ground_conductivity = ((0.2311 + 1.0399) / 2.0).round(4) # Btu/hr-ft-F - hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = ((0.0097 + 0.0291) / 2.0).round(4) # ft^2/hr - hpxml.site.ground_diffusivity_isdefaulted = true end + hpxml.site.ground_conductivity_isdefaulted = true + hpxml.site.ground_diffusivity_isdefaulted = true elsif hpxml.site.soil_type == HPXML::SiteSoilTypeUnknown hpxml.site.ground_conductivity = 1.0 # Btu/hr-ft-F - hpxml.site.ground_conductivity_isdefaulted = true - hpxml.site.ground_diffusivity = 0.0208 # ft^2/hr + + hpxml.site.ground_conductivity_isdefaulted = true hpxml.site.ground_diffusivity_isdefaulted = true end elsif hpxml.site.ground_conductivity.nil? diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index dd9404c95f..10b80bf71f 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -519,7 +519,7 @@ def test_schema_schematron_error_messages hpxml.heating_systems[0].heating_system_fuel = HPXML::FuelTypeElectricity elsif ['invalid-soil-type'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) - hpxml.site.soil_type = HPXML::SiteSoilSoilTypeOther + hpxml.site.soil_type = HPXML::SiteSoilTypeOther elsif ['invalid-shared-vent-in-unit-flowrate'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-bldgtype-multifamily-shared-mechvent.xml')) hpxml.ventilation_fans[0].rated_flow_rate = 80 From d80694e7d55e68d4a2bf611c6d69dfc36d2b48b7 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 15:00:18 -0700 Subject: [PATCH 136/217] Use grout and pipe type in build measure. --- BuildResidentialHPXML/measure.rb | 34 ++++++++------ BuildResidentialHPXML/measure.xml | 44 +++++++++++++------ HPXMLtoOpenStudio/measure.xml | 16 +++---- HPXMLtoOpenStudio/resources/hpxml.rb | 16 ++++--- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 11 +++-- HPXMLtoOpenStudio/resources/hvac.rb | 2 +- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 2 +- HPXMLtoOpenStudio/tests/test_defaults.rb | 8 ++-- HPXMLtoOpenStudio/tests/test_hvac.rb | 4 +- docs/source/workflow_inputs.rst | 6 ++- workflow/hpxml_inputs.json | 4 +- 11 files changed, 92 insertions(+), 55 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index c1d82ead98..2cc8dd8a22 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1425,16 +1425,22 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setUnits('in') args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_grout_conductivity', false) - arg.setDisplayName('Geothermal Loop: Grout Conductivity') - arg.setDescription("Grout conductivity of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") - arg.setUnits('Btu/hr-ft-F') + geothermal_loop_grout_type_choices = OpenStudio::StringVector.new + geothermal_loop_grout_type_choices << HPXML::GeothermalLoopGroutTypeStandard + geothermal_loop_grout_type_choices << HPXML::GeothermalLoopGroutTypeThermallyEnhanced + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_grout_type', geothermal_loop_grout_type_choices, false) + arg.setDisplayName('Geothermal Loop: Grout Type') + arg.setDescription("Grout type of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_pipe_conductivity', false) - arg.setDisplayName('Geothermal Loop: Pipe Conductivity') - arg.setDescription("Pipe conductivity of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") - arg.setUnits('Btu/hr-ft-F') + geothermal_loop_pipe_type_choices = OpenStudio::StringVector.new + geothermal_loop_pipe_type_choices << HPXML::GeothermalLoopPipeTypeStandard + geothermal_loop_pipe_type_choices << HPXML::GeothermalLoopPipeTypeThermallyEnhanced + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_pipe_type', geothermal_loop_pipe_type_choices, false) + arg.setDisplayName('Geothermal Loop: Pipe Type') + arg.setDescription("Pipe type of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") args << arg geothermal_loop_pipe_diameter_choices = OpenStudio::StringVector.new @@ -5090,12 +5096,12 @@ def self.set_geothermal_loop(hpxml, args) bore_diameter = args[:geothermal_loop_boreholes_diameter].get end - if args[:geothermal_loop_grout_conductivity].is_initialized - grout_conductivity = args[:geothermal_loop_grout_conductivity].get + if args[:geothermal_loop_grout_type].is_initialized + grout_type = args[:geothermal_loop_grout_type].get end - if args[:geothermal_loop_pipe_conductivity].is_initialized - pipe_cond = args[:geothermal_loop_pipe_conductivity].get + if args[:geothermal_loop_pipe_type].is_initialized + pipe_type = args[:geothermal_loop_pipe_type].get end if args[:geothermal_loop_pipe_diameter].is_initialized @@ -5124,8 +5130,8 @@ def self.set_geothermal_loop(hpxml, args) bore_length: bore_length, bore_spacing: bore_spacing, bore_diameter: bore_diameter, - grout_conductivity: grout_conductivity, - pipe_cond: pipe_cond, + grout_type: grout_type, + pipe_type: pipe_type, pipe_size: pipe_size, shank_spacing: shank_spacing, bore_config: bore_config) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 1794dcadbb..89a23a9cb4 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - d99aeec0-381b-45ac-9dc8-1ef9b33abeec - 2023-09-12T18:23:49Z + c01ae3f3-270b-460d-8d77-e29a73343a0a + 2023-09-12T21:59:01Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -2917,22 +2917,40 @@ false - geothermal_loop_grout_conductivity - Geothermal Loop: Grout Conductivity - Grout conductivity of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. - Double - Btu/hr-ft-F + geothermal_loop_grout_type + Geothermal Loop: Grout Type + Grout type of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. + Choice false false + + + standard + standard + + + thermally enhanced + thermally enhanced + + - geothermal_loop_pipe_conductivity - Geothermal Loop: Pipe Conductivity - Pipe conductivity of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. - Double - Btu/hr-ft-F + geothermal_loop_pipe_type + Geothermal Loop: Pipe Type + Pipe type of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. + Choice false false + + + standard + standard + + + thermally enhanced + thermally enhanced + + geothermal_loop_pipe_diameter @@ -6935,7 +6953,7 @@ measure.rb rb script - 6C893F36 + F3C8D63B geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 768ba8fd49..a5bbec460c 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 251ae436-a408-4184-bd71-319dc78060a7 - 2023-09-12T21:40:11Z + 2e1882bb-82ca-41b0-8d4c-efaefcdc4c6b + 2023-09-12T21:59:04Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -292,13 +292,13 @@ hpxml.rb rb resource - 20E5B922 + EAA4897B hpxml_defaults.rb rb resource - 69097035 + A06FBB60 hpxml_schema/HPXML.xsd @@ -328,13 +328,13 @@ hvac.rb rb resource - B86B4518 + 9E6F8E75 hvac_sizing.rb rb resource - E2887C35 + 31AD66F8 lighting.rb @@ -550,7 +550,7 @@ test_defaults.rb rb test - D987CE3C + F050C33D test_enclosure.rb @@ -574,7 +574,7 @@ test_hvac.rb rb test - 075EB31B + F09AAA92 test_hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 88e8e37fc0..0f76837a6b 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -170,6 +170,8 @@ class HPXML < Object GeothermalLoopLoopConfigurationVertical = 'vertical' GeothermalLoopGroutTypeStandard = 'standard' GeothermalLoopGroutTypeThermallyEnhanced = 'thermally enhanced' + GeothermalLoopPipeTypeStandard = 'standard' + GeothermalLoopPipeTypeThermallyEnhanced = 'thermally enhanced' HeaterTypeElectricResistance = 'electric resistance' HeaterTypeGas = 'gas fired' HeaterTypeHeatPump = 'heat pump' @@ -4064,10 +4066,10 @@ def from_oga(hpxml) class GeothermalLoop < BaseElement ATTRS = [:id, :loop_configuration, :loop_flow, - :num_bore_holes, :bore_spacing, :bore_length, :bore_diameter, + :bore_config, :num_bore_holes, :bore_spacing, :bore_length, :bore_diameter, :grout_type, :grout_conductivity, - :pipe_cond, :pipe_size, :shank_spacing, - :bore_config] + :pipe_type, :pipe_conductivity, :pipe_size, + :shank_spacing] attr_accessor(*ATTRS) def delete @@ -4105,9 +4107,10 @@ def to_oga(doc) XMLHelper.add_element(grout, 'Type', @grout_type, :string, @grout_type_isdefaulted) unless @grout_type.nil? XMLHelper.add_element(grout, 'Conductivity', @grout_conductivity, :float, @grout_conductivity_isdefaulted) unless @grout_conductivity.nil? end - if (not @pipe_cond.nil?) || (not @pipe_size.nil?) || (not @shank_spacing.nil?) + if (not @pipe_conductivity.nil?) || (not @pipe_size.nil?) || (not @shank_spacing.nil?) pipe = XMLHelper.add_element(geothermal_loop, 'Pipe') - XMLHelper.add_element(pipe, 'Conductivity', @pipe_cond, :float, @pipe_cond_isdefaulted) unless @pipe_cond.nil? + XMLHelper.add_element(pipe, 'Type', @pipe_type, :string, @pipe_type_isdefaulted) unless @pipe_type.nil? + XMLHelper.add_element(pipe, 'Conductivity', @pipe_conductivity, :float, @pipe_conductivity_isdefaulted) unless @pipe_conductivity.nil? XMLHelper.add_element(pipe, 'Diameter', @pipe_size, :float, @pipe_size_isdefaulted) unless @pipe_size.nil? XMLHelper.add_element(pipe, 'ShankSpacing', @shank_spacing, :float, @shank_spacing_isdefaulted) unless @shank_spacing.nil? end @@ -4129,7 +4132,8 @@ def from_oga(geothermal_loop) @bore_diameter = XMLHelper.get_value(geothermal_loop, 'BoreholesOrTrenches/Diameter', :float) @grout_type = XMLHelper.get_value(geothermal_loop, 'Grout/Type', :string) @grout_conductivity = XMLHelper.get_value(geothermal_loop, 'Grout/Conductivity', :float) - @pipe_cond = XMLHelper.get_value(geothermal_loop, 'Pipe/Conductivity', :float) + @pipe_type = XMLHelper.get_value(geothermal_loop, 'Pipe/Type', :string) + @pipe_conductivity = XMLHelper.get_value(geothermal_loop, 'Pipe/Conductivity', :float) @pipe_size = XMLHelper.get_value(geothermal_loop, 'Pipe/Diameter', :float) @shank_spacing = XMLHelper.get_value(geothermal_loop, 'Pipe/ShankSpacing', :float) @bore_config = XMLHelper.get_value(geothermal_loop, 'extension/BorefieldConfiguration', :string) diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 6550b30bd7..c94e112095 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1628,9 +1628,14 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) end end - if heat_pump.geothermal_loop.pipe_cond.nil? - heat_pump.geothermal_loop.pipe_cond = 0.23 # Btu/h-ft-R; Pipe thermal conductivity, default to high density polyethylene - heat_pump.geothermal_loop.pipe_cond_isdefaulted = true + if heat_pump.geothermal_loop.pipe_conductivity.nil? + if heat_pump.geothermal_loop.pipe_type == HPXML::GeothermalLoopPipeTypeStandard + heat_pump.geothermal_loop.pipe_conductivity = 0.23 # Btu/h-ft-R; Pipe thermal conductivity, default to high density polyethylene + heat_pump.geothermal_loop.pipe_conductivity_isdefaulted = true + elsif heat_pump.geothermal_loop.pipe_type == HPXML::GeothermalLoopPipeTypeThermallyEnhanced + heat_pump.geothermal_loop.pipe_conductivity = 0.46 # Btu/h-ft-R; FIXME + heat_pump.geothermal_loop.pipe_conductivity_isdefaulted = true + end end if heat_pump.geothermal_loop.shank_spacing.nil? diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index b583dc5950..f6d95ff007 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -279,7 +279,7 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, ground_heat_exch_vert.setGroundThermalHeatCapacity(UnitConversions.convert(ground_conductivity / ground_diffusivity, 'Btu/(ft^3*F)', 'J/(m^3*K)')) ground_heat_exch_vert.setGroundTemperature(UnitConversions.convert(weather.data.AnnualAvgDrybulb, 'F', 'C')) ground_heat_exch_vert.setGroutThermalConductivity(UnitConversions.convert(heat_pump.geothermal_loop.grout_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) - ground_heat_exch_vert.setPipeThermalConductivity(UnitConversions.convert(heat_pump.geothermal_loop.pipe_cond, 'Btu/(hr*ft*R)', 'W/(m*K)')) + ground_heat_exch_vert.setPipeThermalConductivity(UnitConversions.convert(heat_pump.geothermal_loop.pipe_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) ground_heat_exch_vert.setPipeOutDiameter(UnitConversions.convert(hp_ap.pipe_od, 'in', 'm')) ground_heat_exch_vert.setUTubeDistance(UnitConversions.convert(heat_pump.geothermal_loop.shank_spacing, 'in', 'm')) ground_heat_exch_vert.setPipeThickness(UnitConversions.convert((hp_ap.pipe_od - hp_ap.pipe_id) / 2.0, 'in', 'm')) diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index fe650f1a89..da1f415ab9 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -2643,7 +2643,7 @@ def self.gshp_hx_pipe_rvalue(hvac_cooling) hvac_cooling_ap = hvac_cooling.additional_properties # Thermal Resistance of Pipe - return Math.log(hvac_cooling_ap.pipe_od / hvac_cooling_ap.pipe_id) / 2.0 / Math::PI / hvac_cooling.geothermal_loop.pipe_cond + return Math.log(hvac_cooling_ap.pipe_od / hvac_cooling_ap.pipe_id) / 2.0 / Math::PI / hvac_cooling.geothermal_loop.pipe_conductivity end def self.gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, bore_diameter, grout_conductivity, pipe_r_value, climate_zone_iecc) diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index ca9ed31de5..a7614d1c48 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1702,7 +1702,7 @@ def test_geothermal_loops hpxml.geothermal_loops[0].bore_diameter = 5 hpxml.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutTypeThermallyEnhanced hpxml.geothermal_loops[0].grout_conductivity = 6 - hpxml.geothermal_loops[0].pipe_cond = 7 + hpxml.geothermal_loops[0].pipe_conductivity = 7 hpxml.geothermal_loops[0].pipe_size = 1.0 hpxml.geothermal_loops[0].shank_spacing = 9 hpxml.geothermal_loops[0].bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle @@ -1718,7 +1718,7 @@ def test_geothermal_loops hpxml.geothermal_loops[0].bore_diameter = nil hpxml.geothermal_loops[0].grout_type = nil hpxml.geothermal_loops[0].grout_conductivity = nil - hpxml.geothermal_loops[0].pipe_cond = nil + hpxml.geothermal_loops[0].pipe_conductivity = nil hpxml.geothermal_loops[0].pipe_size = nil hpxml.geothermal_loops[0].shank_spacing = nil hpxml.geothermal_loops[0].bore_config = nil @@ -4300,7 +4300,7 @@ def _test_default_ground_to_air_heat_pump_values(heat_pump, pump_watts_per_ton, def _test_default_geothermal_loop_values(geothermal_loop, loop_configuration, loop_flow, num_bore_holes, bore_spacing, bore_length, bore_diameter, - grout_type, grout_conductivity, pipe_cond, pipe_size, shank_spacing, + grout_type, grout_conductivity, pipe_conductivity, pipe_size, shank_spacing, bore_config) assert_equal(loop_configuration, geothermal_loop.loop_configuration) if loop_flow.nil? @@ -4322,7 +4322,7 @@ def _test_default_geothermal_loop_values(geothermal_loop, loop_configuration, lo assert_equal(bore_diameter, geothermal_loop.bore_diameter) assert_equal(grout_type, geothermal_loop.grout_type) assert_equal(grout_conductivity, geothermal_loop.grout_conductivity) - assert_equal(pipe_cond, geothermal_loop.pipe_cond) + assert_equal(pipe_conductivity, geothermal_loop.pipe_conductivity) assert_equal(pipe_size, geothermal_loop.pipe_size) assert_equal(shank_spacing, geothermal_loop.shank_spacing) assert_equal(bore_config, geothermal_loop.bore_config) diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index 8c897b2051..e0c32a0bdf 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -717,7 +717,7 @@ def test_geothermal_loop geothermal_loop = hpxml.geothermal_loops[0] bore_radius = UnitConversions.convert(geothermal_loop.bore_diameter / 2.0, 'in', 'm') grout_conductivity = UnitConversions.convert(geothermal_loop.grout_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)') - pipe_cond = UnitConversions.convert(geothermal_loop.pipe_cond, 'Btu/(hr*ft*R)', 'W/(m*K)') + pipe_conductivity = UnitConversions.convert(geothermal_loop.pipe_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)') shank_spacing = UnitConversions.convert(geothermal_loop.shank_spacing, 'in', 'm') # Check ghx @@ -725,7 +725,7 @@ def test_geothermal_loop ghx = model.getGroundHeatExchangerVerticals[0] assert_in_epsilon(bore_radius, ghx.boreHoleRadius.get, 0.01) assert_in_epsilon(grout_conductivity, ghx.groutThermalConductivity.get, 0.01) - assert_in_epsilon(pipe_cond, ghx.pipeThermalConductivity.get, 0.01) + assert_in_epsilon(pipe_conductivity, ghx.pipeThermalConductivity.get, 0.01) assert_in_epsilon(shank_spacing, ghx.uTubeDistance.get, 0.01) # Check G-Functions diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 336412e2aa..cc3257d6cc 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2085,7 +2085,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ``BoreholesOrTrenches/Spacing`` double ft > 0 No 16.4 Distance between boreholes ``BoreholesOrTrenches/Diameter`` double in > 0 No 5.0 ``Grout/Type`` or ``Grout/Conductivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No standard Grout type or conductivity [#]_ - ``Pipe/Conductivity`` double Btu/hr-ft-F > 0 No 0.23 + ``Pipe/Type`` or ``Pipe/Conductivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No standard Pipe type or conductivity [#]_ ``Pipe/Diameter`` double in See [#]_ No 0.75 ``Pipe/ShankSpacing`` double in > 0 No See [#]_ Center-to-center distance between two branches of a vertical U-tube ``extension/BorefieldConfiguration`` string See [#]_ No Rectangle @@ -2107,6 +2107,10 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ .. [#] | If Grout/Conductivity not provided, defaults based on Grout/Type: | - **standard**: 0.4 Btu/hr-ft-F | - **thermally enhanced**: 0.8 Btu/hr-ft-F + .. [#] Pipe/Type choices are "standard" or "thermally enhanced". + .. [#] | If Pipe/Conductivity not provided, defaults based on Pipe/Type: + | - **standard**: 0.23 Btu/hr-ft-F + | - **thermally enhanced**: 0.46 Btu/hr-ft-F .. [#] Pipe diameter must be either 3/4", 1", or 1-1/4" (i.e, 0.75, 1.0, or 1.25). .. [#] Sum of U-tube spacing and pipe outer diameter. .. [#] extension/BorefieldConfiguration choices are "Rectangle", "Open Rectangle", "C", "L", "U", or "Lopsided U". diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 495ca0a4f1..f8bc8d74a6 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2395,8 +2395,8 @@ "geothermal_loop_boreholes_length": 314.961, "geothermal_loop_boreholes_spacing": 16.4042, "geothermal_loop_boreholes_diameter": 5.905512, - "geothermal_loop_grout_conductivity": 0.5, - "geothermal_loop_pipe_conductivity": 0.3, + "geothermal_loop_grout_type": "standard", + "geothermal_loop_pipe_type": "standard", "geothermal_loop_pipe_diameter": "1\" pipe", "geothermal_loop_pipe_shank_spacing": 2.5, "geothermal_loop_borefield_configuration": "Lopsided U" From eb233f1541f7e65e28458734e287bd4ff3207387 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 15:03:59 -0700 Subject: [PATCH 137/217] Change pipe_size to pipe_diameter. --- BuildResidentialHPXML/measure.rb | 16 ++++++++-------- BuildResidentialHPXML/measure.xml | 6 +++--- HPXMLtoOpenStudio/measure.xml | 12 ++++++------ HPXMLtoOpenStudio/resources/hpxml.rb | 8 ++++---- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 8 ++++---- HPXMLtoOpenStudio/resources/hvac.rb | 10 +++++----- HPXMLtoOpenStudio/tests/test_defaults.rb | 8 ++++---- 7 files changed, 34 insertions(+), 34 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 2cc8dd8a22..3f1a967736 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -5105,13 +5105,13 @@ def self.set_geothermal_loop(hpxml, args) end if args[:geothermal_loop_pipe_diameter].is_initialized - pipe_size = args[:geothermal_loop_pipe_diameter].get - if pipe_size == '3/4" pipe' - pipe_size = 0.75 - elsif pipe_size == '1" pipe' - pipe_size = 1.0 - elsif pipe_size == '1-1/4" pipe' - pipe_size = 1.25 + pipe_diameter = args[:geothermal_loop_pipe_diameter].get + if pipe_diameter == '3/4" pipe' + pipe_diameter = 0.75 + elsif pipe_diameter == '1" pipe' + pipe_diameter = 1.0 + elsif pipe_diameter == '1-1/4" pipe' + pipe_diameter = 1.25 end end @@ -5132,7 +5132,7 @@ def self.set_geothermal_loop(hpxml, args) bore_diameter: bore_diameter, grout_type: grout_type, pipe_type: pipe_type, - pipe_size: pipe_size, + pipe_diameter: pipe_diameter, shank_spacing: shank_spacing, bore_config: bore_config) hpxml.heat_pumps[-1].geothermal_loop_idref = hpxml.geothermal_loops[-1].id diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 89a23a9cb4..c705c63f70 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - c01ae3f3-270b-460d-8d77-e29a73343a0a - 2023-09-12T21:59:01Z + 03f8e954-de5f-4137-ac6e-0451be6f0740 + 2023-09-12T22:03:32Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6953,7 +6953,7 @@ measure.rb rb script - F3C8D63B + C542C3B1 geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index a5bbec460c..e5d41e357c 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 2e1882bb-82ca-41b0-8d4c-efaefcdc4c6b - 2023-09-12T21:59:04Z + e7ee420b-24bd-4046-bf30-483a2f688270 + 2023-09-12T22:03:36Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -292,13 +292,13 @@ hpxml.rb rb resource - EAA4897B + 0F263B99 hpxml_defaults.rb rb resource - A06FBB60 + C3B34D7B hpxml_schema/HPXML.xsd @@ -328,7 +328,7 @@ hvac.rb rb resource - 9E6F8E75 + ED419146 hvac_sizing.rb @@ -550,7 +550,7 @@ test_defaults.rb rb test - F050C33D + 5678146E test_enclosure.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 0f76837a6b..6d7ae656e1 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -4068,7 +4068,7 @@ class GeothermalLoop < BaseElement ATTRS = [:id, :loop_configuration, :loop_flow, :bore_config, :num_bore_holes, :bore_spacing, :bore_length, :bore_diameter, :grout_type, :grout_conductivity, - :pipe_type, :pipe_conductivity, :pipe_size, + :pipe_type, :pipe_conductivity, :pipe_diameter, :shank_spacing] attr_accessor(*ATTRS) @@ -4107,11 +4107,11 @@ def to_oga(doc) XMLHelper.add_element(grout, 'Type', @grout_type, :string, @grout_type_isdefaulted) unless @grout_type.nil? XMLHelper.add_element(grout, 'Conductivity', @grout_conductivity, :float, @grout_conductivity_isdefaulted) unless @grout_conductivity.nil? end - if (not @pipe_conductivity.nil?) || (not @pipe_size.nil?) || (not @shank_spacing.nil?) + if (not @pipe_conductivity.nil?) || (not @pipe_diameter.nil?) || (not @shank_spacing.nil?) pipe = XMLHelper.add_element(geothermal_loop, 'Pipe') XMLHelper.add_element(pipe, 'Type', @pipe_type, :string, @pipe_type_isdefaulted) unless @pipe_type.nil? XMLHelper.add_element(pipe, 'Conductivity', @pipe_conductivity, :float, @pipe_conductivity_isdefaulted) unless @pipe_conductivity.nil? - XMLHelper.add_element(pipe, 'Diameter', @pipe_size, :float, @pipe_size_isdefaulted) unless @pipe_size.nil? + XMLHelper.add_element(pipe, 'Diameter', @pipe_diameter, :float, @pipe_diameter_isdefaulted) unless @pipe_diameter.nil? XMLHelper.add_element(pipe, 'ShankSpacing', @shank_spacing, :float, @shank_spacing_isdefaulted) unless @shank_spacing.nil? end if not @bore_config.nil? @@ -4134,7 +4134,7 @@ def from_oga(geothermal_loop) @grout_conductivity = XMLHelper.get_value(geothermal_loop, 'Grout/Conductivity', :float) @pipe_type = XMLHelper.get_value(geothermal_loop, 'Pipe/Type', :string) @pipe_conductivity = XMLHelper.get_value(geothermal_loop, 'Pipe/Conductivity', :float) - @pipe_size = XMLHelper.get_value(geothermal_loop, 'Pipe/Diameter', :float) + @pipe_diameter = XMLHelper.get_value(geothermal_loop, 'Pipe/Diameter', :float) @shank_spacing = XMLHelper.get_value(geothermal_loop, 'Pipe/ShankSpacing', :float) @bore_config = XMLHelper.get_value(geothermal_loop, 'extension/BorefieldConfiguration', :string) end diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index c94e112095..8ae79157e0 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1595,9 +1595,9 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) heat_pump.geothermal_loop_idref = hpxml.geothermal_loops[-1].id end - if heat_pump.geothermal_loop.pipe_size.nil? - heat_pump.geothermal_loop.pipe_size = 0.75 # in - heat_pump.geothermal_loop.pipe_size_isdefaulted = true + if heat_pump.geothermal_loop.pipe_diameter.nil? + heat_pump.geothermal_loop.pipe_diameter = 0.75 # in + heat_pump.geothermal_loop.pipe_diameter_isdefaulted = true end HVAC.set_gshp_assumptions(heat_pump, weather) @@ -3054,7 +3054,7 @@ def self.apply_hvac_sizing(hpxml, weather, cfa) geothermal_loop.num_bore_holes_isdefaulted = true end if geothermal_loop.bore_length.nil? - geothermal_loop.bore_length = hvac_sizing_values.GSHP_Bore_Depth # this is the length (i.e., depth) of each borehole? + geothermal_loop.bore_length = hvac_sizing_values.GSHP_Bore_Depth geothermal_loop.bore_length_isdefaulted = true end if geothermal_loop.bore_config.nil? diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index f6d95ff007..b34b493276 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -3372,20 +3372,20 @@ def self.set_gshp_assumptions(heat_pump, weather) else hp_ap.design_hw = [35.0, weather.design.HeatingDrybulb + 35.0, weather.data.AnnualAvgDrybulb - 10.0].min # Temperature of fluid entering indoor coil, use 35F as upper bound end - pipe_size = geothermal_loop.pipe_size + pipe_diameter = geothermal_loop.pipe_diameter # Pipe nominal size conversion to pipe outside diameter and inside diameter, # only pipe sizes <= 2" are used here with DR11 (dimension ratio), - if pipe_size == 0.75 # 3/4" pipe + if pipe_diameter == 0.75 # 3/4" pipe hp_ap.pipe_od = 1.050 # in hp_ap.pipe_id = 0.859 # in - elsif pipe_size == 1.0 # 1" pipe + elsif pipe_diameter == 1.0 # 1" pipe hp_ap.pipe_od = 1.315 # in hp_ap.pipe_id = 1.076 # in - elsif pipe_size == 1.25 # 1-1/4" pipe + elsif pipe_diameter == 1.25 # 1-1/4" pipe hp_ap.pipe_od = 1.660 # in hp_ap.pipe_id = 1.358 # in else - fail "Unexpected pipe size: #{pipe_size}" + fail "Unexpected pipe size: #{pipe_diameter}" end hp_ap.u_tube_spacing_type = 'b' # Calculate distance between pipes diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index a7614d1c48..a4aa94a9a6 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1703,7 +1703,7 @@ def test_geothermal_loops hpxml.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutTypeThermallyEnhanced hpxml.geothermal_loops[0].grout_conductivity = 6 hpxml.geothermal_loops[0].pipe_conductivity = 7 - hpxml.geothermal_loops[0].pipe_size = 1.0 + hpxml.geothermal_loops[0].pipe_diameter = 1.0 hpxml.geothermal_loops[0].shank_spacing = 9 hpxml.geothermal_loops[0].bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) @@ -1719,7 +1719,7 @@ def test_geothermal_loops hpxml.geothermal_loops[0].grout_type = nil hpxml.geothermal_loops[0].grout_conductivity = nil hpxml.geothermal_loops[0].pipe_conductivity = nil - hpxml.geothermal_loops[0].pipe_size = nil + hpxml.geothermal_loops[0].pipe_diameter = nil hpxml.geothermal_loops[0].shank_spacing = nil hpxml.geothermal_loops[0].bore_config = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) @@ -4300,7 +4300,7 @@ def _test_default_ground_to_air_heat_pump_values(heat_pump, pump_watts_per_ton, def _test_default_geothermal_loop_values(geothermal_loop, loop_configuration, loop_flow, num_bore_holes, bore_spacing, bore_length, bore_diameter, - grout_type, grout_conductivity, pipe_conductivity, pipe_size, shank_spacing, + grout_type, grout_conductivity, pipe_conductivity, pipe_diameter, shank_spacing, bore_config) assert_equal(loop_configuration, geothermal_loop.loop_configuration) if loop_flow.nil? @@ -4323,7 +4323,7 @@ def _test_default_geothermal_loop_values(geothermal_loop, loop_configuration, lo assert_equal(grout_type, geothermal_loop.grout_type) assert_equal(grout_conductivity, geothermal_loop.grout_conductivity) assert_equal(pipe_conductivity, geothermal_loop.pipe_conductivity) - assert_equal(pipe_size, geothermal_loop.pipe_size) + assert_equal(pipe_diameter, geothermal_loop.pipe_diameter) assert_equal(shank_spacing, geothermal_loop.shank_spacing) assert_equal(bore_config, geothermal_loop.bore_config) end From 1982a5d1b684bdfef2bbcf75e33576965ce8bbb3 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 15:08:28 -0700 Subject: [PATCH 138/217] Move geothermal loop line in epvalidator. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- .../resources/hpxml_schematron/EPvalidator.xml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index e5d41e357c..ab3f3601fc 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - e7ee420b-24bd-4046-bf30-483a2f688270 - 2023-09-12T22:03:36Z + 42f1c080-bfb1-4cb9-ad16-0640d8e4b20f + 2023-09-12T22:08:04Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -316,7 +316,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 31763BD7 + 9E5A7F76 hpxml_schematron/iso-schematron.xsd diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 8345006629..7f1cc7df3a 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -240,7 +240,6 @@ Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/HeatingSystem Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/CoolingSystem Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/HeatPump - Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/GeothermalLoop Expected 0 or 1 element(s) for xpath: Systems/HVAC/HVACControl Expected 0 or more element(s) for xpath: Systems/HVAC/HVACDistribution Expected 0 or more element(s) for xpath: Systems/MechanicalVentilation/VentilationFans/VentilationFan @@ -1170,6 +1169,7 @@ [HeatPumpType=GroundSource] + Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/GeothermalLoop Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/AirDistribution/AirDistributionType[text()="regular velocity"] | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] Expected 0 or 1 element(s) for xpath: IsSharedSystem Expected 1 element(s) for xpath: DistributionSystem From a092aa5f671f55d32f34f93580a8ab74cf4f5c8d Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 15:16:26 -0700 Subject: [PATCH 139/217] Deprecate old ground conductivity field. --- Changelog.md | 1 + HPXMLtoOpenStudio/measure.xml | 6 +++--- .../resources/hpxml_schematron/EPvalidator.xml | 2 ++ 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Changelog.md b/Changelog.md index 583c9a4c7d..b8d8fdeba0 100644 --- a/Changelog.md +++ b/Changelog.md @@ -20,6 +20,7 @@ __New Features__ - Allow optional inputs related to geothermal loop: loop flow, borehole count/length/spacing/diameter/configuration, grout conductivity, pipe conductivity/diameter/shank spacing. - Allow optional ground diffusivity input for site soil. - Connect to the [G-Function Library](https://gdr.openei.org/submissions/1325) (in the Geothermal Data Repository) for using precalculated g-function values with GSHP modeling. + - **Breaking change**: Replaces `BuildingSummary/Site/extension/GroundConductivity` with `BuildingSummary/Site/Soil/Conductivity`. __Bugfixes__ - Fixes lighting multipliers not being applied when kWh/yr inputs are used. diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index ab3f3601fc..c47a7a4db8 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 42f1c080-bfb1-4cb9-ad16-0640d8e4b20f - 2023-09-12T22:08:04Z + c935d983-f1fa-40ca-b0ac-3a7f2decdcc1 + 2023-09-12T22:13:06Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -316,7 +316,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 9E5A7F76 + E3E6F4BC hpxml_schematron/iso-schematron.xsd diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 7f1cc7df3a..b317c84230 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -299,6 +299,8 @@ Expected 0 or 1 element(s) for xpath: ShieldingofHome Expected 0 or 1 element(s) for xpath: Soil Expected 0 or 1 element(s) for xpath: extension/Neighbors + + extension/GroundConductivity has been replaced by /HPXML/Building/BuildingDetails/BuildingSummary/Site/Soil/Conductivity From 37e937cf6eee217579a2f19cd9510e22be6b6573 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 15:17:23 -0700 Subject: [PATCH 140/217] Remove extra line in epvalidator. --- HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index b317c84230..94e5ba5a73 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1208,7 +1208,6 @@ Expected 1 element(s) for xpath: ../../../../BuildingSummary/BuildingConstruction[ResidentialFacilityType[text()="single-family attached" or text()="apartment unit"]] Expected 1 element(s) for xpath: NumberofUnitsServed Expected NumberofUnitsServed to be greater than 1 - Expected 0 or 1 element(s) for xpath: AttachedToGeothermalLoop Expected 1 element(s) for xpath: extension/SharedLoopWatts Expected extension/SharedLoopWatts to be greater than or equal to 0 From 6b5f7b731205f32bef1664b17e46c60887a5a63c Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 15:29:34 -0700 Subject: [PATCH 141/217] Check that geothermal loop is connected to heat pump. --- HPXMLtoOpenStudio/measure.xml | 10 +++++----- HPXMLtoOpenStudio/resources/hpxml.rb | 15 +++++++++++++++ .../resources/hpxml_schematron/EPvalidator.xml | 3 +-- HPXMLtoOpenStudio/tests/test_validation.rb | 4 ++++ 4 files changed, 25 insertions(+), 7 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index c47a7a4db8..e87ba0f273 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - c935d983-f1fa-40ca-b0ac-3a7f2decdcc1 - 2023-09-12T22:13:06Z + 6b436b74-ea48-4b63-bafe-cd5397db0113 + 2023-09-12T22:27:58Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -292,7 +292,7 @@ hpxml.rb rb resource - 0F263B99 + 77A4AA9E hpxml_defaults.rb @@ -316,7 +316,7 @@ hpxml_schematron/EPvalidator.xml xml resource - E3E6F4BC + BD9F535A hpxml_schematron/iso-schematron.xsd @@ -622,7 +622,7 @@ test_validation.rb rb test - 725BAE3D + F3A9D834 test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 6d7ae656e1..d1ef4eac59 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -4072,6 +4072,20 @@ class GeothermalLoop < BaseElement :shank_spacing] attr_accessor(*ATTRS) + def heat_pumps + list = [] + @hpxml_object.heat_pumps.each do |heat_pump| + next if heat_pump.geothermal_loop_idref.nil? + next unless heat_pump.geothermal_loop_idref == @id + + list << heat_pump + end + + if list.size == 0 + fail "Geothermal loop '#{@id}' found but no heat pump attached to it." + end + end + def delete @hpxml_object.geothermal_loops.delete(self) @hpxml_object.heat_pumps.each do |heat_pump| @@ -4083,6 +4097,7 @@ def delete def check_for_errors errors = [] + begin; heat_pumps; rescue StandardError => e; errors << e.message; end return errors end diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 94e5ba5a73..1d896f8f0b 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1307,8 +1307,7 @@ Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Diameter Expected BoreholesOrTrenches/Diameter to be greater than 0 Expected 0 or more element(s) for xpath: Grout/Type | Grout/Conductivity - Expected 0 or 1 element(s) for xpath: Pipe/Conductivity - Expected Pipe/Conductivity to be greater than 0 + Expected 0 or more element(s) for xpath: Pipe/Type | Pipe/Conductivity Expected 0 or 1 element(s) for xpath: Pipe/Diameter Expected Pipe/Diameter to be 0.75, 1.0, or 1.25 Expected 0 or 1 element(s) for xpath: Pipe/ShankSpacing diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 10b80bf71f..85d4d1b8cc 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -881,6 +881,7 @@ def test_ruby_error_messages 'leap-year-TMY' => ['Specified a leap year (2008) but weather data has 8760 hours.'], 'net-area-negative-wall' => ["Calculated a negative net surface area for surface 'Wall1'."], 'net-area-negative-roof' => ["Calculated a negative net surface area for surface 'Roof1'."], + 'orphaned-geothermal-loop' => ["Geothermal loop 'GeothermalLoop1' found but no heat pump attached to it."], 'orphaned-hvac-distribution' => ["Distribution system 'HVACDistribution1' found but no HVAC system attached to it."], 'refrigerators-multiple-primary' => ['More than one refrigerator designated as the primary.'], 'refrigerators-no-primary' => ['Could not find a primary refrigerator.'], @@ -1127,6 +1128,9 @@ def test_ruby_error_messages elsif ['net-area-negative-wall'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) hpxml.windows[0].area = 1000 + elsif ['orphaned-geothermal-loop'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop.xml')) + hpxml.heat_pumps[0].geothermal_loop_idref = nil elsif ['orphaned-hvac-distribution'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-furnace-gas-room-ac.xml')) hpxml.heating_systems[0].delete From d092b1474543d81d15acffa12df9acab5913db3d Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 15:32:53 -0700 Subject: [PATCH 142/217] Add comment where default values come from. --- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 8ae79157e0..86786d95be 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -493,6 +493,7 @@ def self.apply_site(hpxml) hpxml.site.moisture_type_isdefaulted = true end + # Conductivity/diffusivity values come from https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4813881 (with the exception of "unknown") if hpxml.site.ground_conductivity.nil? && hpxml.site.ground_diffusivity.nil? if hpxml.site.soil_type == HPXML::SiteSoilTypeSand if hpxml.site.moisture_type == HPXML::SiteSoilMoistureTypeDry From d309d85cf80065a71d78d4f141959671e8e2b94d Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 15:39:15 -0700 Subject: [PATCH 143/217] Misc cleanup around unit conversions, comments. --- HPXMLtoOpenStudio/measure.xml | 14 +++++++------- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 2 +- HPXMLtoOpenStudio/resources/unit_conversions.rb | 4 +++- HPXMLtoOpenStudio/tests/test_defaults.rb | 6 +++--- 4 files changed, 14 insertions(+), 12 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index e87ba0f273..5f9ffbfb1b 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 6b436b74-ea48-4b63-bafe-cd5397db0113 - 2023-09-12T22:27:58Z + fc8c6fd2-2ecf-4126-aae4-083fc522a79c + 2023-09-12T22:38:45Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -298,7 +298,7 @@ hpxml_defaults.rb rb resource - C3B34D7B + B54B1889 hpxml_schema/HPXML.xsd @@ -316,7 +316,7 @@ hpxml_schematron/EPvalidator.xml xml resource - BD9F535A + 83E894DE hpxml_schematron/iso-schematron.xsd @@ -334,7 +334,7 @@ hvac_sizing.rb rb resource - 31AD66F8 + 4E9928A2 lighting.rb @@ -490,7 +490,7 @@ unit_conversions.rb rb resource - 75E8F687 + E2D71341 util.rb @@ -550,7 +550,7 @@ test_defaults.rb rb test - 5678146E + 1584363E test_enclosure.rb diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index da1f415ab9..c710f6a2a0 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1916,7 +1916,7 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling, clima bore_depth = (bore_length / num_bore_holes).floor # ft active_length = 5 # the active length starts about 5 ft below the surface - for _i in 0..4 + for _i in 0..active_length - 1 if (bore_depth + active_length < min_bore_depth) && (num_bore_holes > 1) num_bore_holes -= 1 bore_depth = (bore_length / num_bore_holes).floor diff --git a/HPXMLtoOpenStudio/resources/unit_conversions.rb b/HPXMLtoOpenStudio/resources/unit_conversions.rb index 17cb4db53e..9eff0059f0 100644 --- a/HPXMLtoOpenStudio/resources/unit_conversions.rb +++ b/HPXMLtoOpenStudio/resources/unit_conversions.rb @@ -69,7 +69,6 @@ class UnitConversions ['ft^2', 'in^2'] => 144.0, ['ft^2', 'm^2'] => 0.09290304, ['m^2', 'ft^2'] => 1.0 / 0.09290304, - ['m^2/s', 'ft^2/hr'] => 38750.1, # Volume ['ft^3', 'gal'] => 7.480519480579059, @@ -83,6 +82,9 @@ class UnitConversions # Mass ['lbm', 'kg'] => 0.45359237, + # Area Flow Rate + ['m^2/s', 'ft^2/hr'] => 38750.1, + # Volume Flow Rate ['m^3/s', 'gal/min'] => 15850.323141615143, ['m^3/s', 'cfm'] => 2118.880003289315, diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index a4aa94a9a6..ac3cbb0612 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -4303,18 +4303,18 @@ def _test_default_geothermal_loop_values(geothermal_loop, loop_configuration, lo grout_type, grout_conductivity, pipe_conductivity, pipe_diameter, shank_spacing, bore_config) assert_equal(loop_configuration, geothermal_loop.loop_configuration) - if loop_flow.nil? + if loop_flow.nil? # nil implies an autosized value assert(geothermal_loop.loop_flow > 0) else assert_equal(loop_flow, geothermal_loop.loop_flow) end - if num_bore_holes.nil? + if num_bore_holes.nil? # nil implies an autosized value assert(geothermal_loop.num_bore_holes > 0) else assert_equal(num_bore_holes, geothermal_loop.num_bore_holes) end assert_equal(bore_spacing, geothermal_loop.bore_spacing) - if bore_length.nil? + if bore_length.nil? # nil implies an autosized value assert(geothermal_loop.bore_length > 0) else assert_equal(bore_length, geothermal_loop.bore_length) From 614b0e9c4e15c03750ad83dafa106b2ca1b55560 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 15:58:35 -0700 Subject: [PATCH 144/217] Update docs and remove temporary sample files. --- docs/source/workflow_inputs.rst | 22 +- workflow/hpxml_inputs.json | 24 - ...base-hvac-ground-to-air-heat-pump-1ton.xml | 559 ------------------ ...base-hvac-ground-to-air-heat-pump-2ton.xml | 559 ------------------ ...base-hvac-ground-to-air-heat-pump-4ton.xml | 559 ------------------ ...base-hvac-ground-to-air-heat-pump-5ton.xml | 559 ------------------ 6 files changed, 13 insertions(+), 2269 deletions(-) delete mode 100644 workflow/sample_files/base-hvac-ground-to-air-heat-pump-1ton.xml delete mode 100644 workflow/sample_files/base-hvac-ground-to-air-heat-pump-2ton.xml delete mode 100644 workflow/sample_files/base-hvac-ground-to-air-heat-pump-4ton.xml delete mode 100644 workflow/sample_files/base-hvac-ground-to-air-heat-pump-5ton.xml diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index cc3257d6cc..27839bfa37 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -576,7 +576,7 @@ Soil information is entered in ``Soil``. .. note:: - Default Conductivity and extension/Diffusivity values based on SoilType/MoistureType provided by https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4813881/ (with the exception of "unknown"). + Default Conductivity and extension/Diffusivity values based on SoilType/MoistureType provided by ``_ (with the exception of "unknown"). For each neighboring building defined, additional information is entered in a ``extension/Neighbors/NeighborBuilding``. @@ -1957,7 +1957,7 @@ If a ground-to-air heat pump is specified, additional information is entered in ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served - ``AttachedToGeothermalLoop`` idref See [#]_ No ID of attached geothermal loop + ``AttachedToGeothermalLoop`` idref See [#]_ No [#]_ ID of attached geothermal loop ``extension/PumpPowerWattsPerTon`` double W/ton >= 0 No See [#]_ Pump power [#]_ ``extension/SharedLoopWatts`` double W >= 0 See [#]_ Shared pump power [#]_ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed @@ -1973,6 +1973,7 @@ If a ground-to-air heat pump is specified, additional information is entered in .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1. .. [#] AttachedToGeothermalLoop must reference a ``GeothermalLoop``. + .. [#] If not provided, the ground-to-air heat pump will be automatically attached to a geothermal loop that is entirely defaulted. .. [#] If PumpPowerWattsPerTon not provided, defaults to 30 W/ton per `ANSI/RESNET/ICC 301-2019 `_ for a closed loop system. .. [#] Pump power is calculated using PumpPowerWattsPerTon and the cooling capacity in tons, unless the system only provides heating, in which case the heating capacity in tons is used instead. Any pump power that is shared by multiple dwelling units should be included in SharedLoopWatts, *not* PumpPowerWattsPerTon, so that shared loop pump power attributed to the dwelling unit is calculated. @@ -2080,7 +2081,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ``SystemIdentifier`` id Yes Unique identifier ``LoopConfiguration`` string See [#]_ Yes ``LoopFlow`` double gal/min > 0 No autosized [#]_ Water flow rate through the geothermal loop - ``BoreholesOrTrenches/Count`` integer > 0 No [#]_ autosized [#]_ + ``BoreholesOrTrenches/Count`` integer > 0 [#]_ No autosized [#]_ ``BoreholesOrTrenches/Length`` double ft See [#]_ No autosized [#]_ Length (i.e., average depth) of each borehole ``BoreholesOrTrenches/Spacing`` double ft > 0 No 16.4 Distance between boreholes ``BoreholesOrTrenches/Diameter`` double in > 0 No 5.0 @@ -2101,7 +2102,10 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ | - **U**: 7, 9, or 10 | - **Lopsided U**: 6, 7, 8, 9, or 10 .. [#] BoreholesOrTrenches/Count autosized per TODO. - .. [#] BoreholesOrTrenches/Length must be between 79 ft and 500 ft. + .. [#] | BoreholesOrTrenches/Length must be between 79 ft and 500 ft. + | To permit interpolation, each borefield configuration in the library has g-function values corresponding to heights of 24, 48, 96, 192, and 384 m. + | BoreholesOrTrenches/Length therefore has a minimum of 24 m (or 79 ft). + | BoreholesOrTrenches/Length, on the other hand, has a maximum of 500 ft; bore depths exceeding this value are unlikely to be used in residential applications. .. [#] BoreholesOrTrenches/Length autosized per TODO. .. [#] Grout/Type choices are "standard" or "thermally enhanced". .. [#] | If Grout/Conductivity not provided, defaults based on Grout/Type: @@ -2112,15 +2116,15 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ | - **standard**: 0.23 Btu/hr-ft-F | - **thermally enhanced**: 0.46 Btu/hr-ft-F .. [#] Pipe diameter must be either 3/4", 1", or 1-1/4" (i.e, 0.75, 1.0, or 1.25). - .. [#] Sum of U-tube spacing and pipe outer diameter. + .. [#] | ShankSpacing defaults to sum of U-tube spacing (assumed to be 0.9661 in) and pipe outer diameter, where pipe outer diameter is assumed to be: + | - **0.75 in pipe**: 1.050 in + | - **1.0 in pipe**: 1.315 in + | - **1.25 in pipe**: 1.660 in .. [#] extension/BorefieldConfiguration choices are "Rectangle", "Open Rectangle", "C", "L", "U", or "Lopsided U". .. note:: - For a given combination of ``extension/BorefieldConfiguration``, ``BoreholesOrTrenches/Count``, ``BoreholesOrTrenches/Spacing``, ``BoreholesOrTrenches/Length``, and ``BoreholesOrTrenches/Diameter``, g-function values are determined using the `G-Function Library `_ (from the Geothermal Data Repository). - To permit interpolation, each borefield configuration in the library has g-function values corresponding to heights of 24, 48, 96, 192, and 384 m. - ``BoreholesOrTrenches/Length`` therefore has a minimum of 24 m (or 79 ft). - ``BoreholesOrTrenches/Length``, on the other hand, has a maximum of 500 ft; bore depths exceeding this value are unlikely to be used in residential applications. + For a given combination of ``extension/BorefieldConfiguration``, ``BoreholesOrTrenches/Count``, ``BoreholesOrTrenches/Spacing``, ``BoreholesOrTrenches/Length``, and ``BoreholesOrTrenches/Diameter`` g-function values are determined using the `G-Function Library `_ (from the Geothermal Data Repository). .. _hvac_control: diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index f8bc8d74a6..6224aaf2f7 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2423,30 +2423,6 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_backup_heating_capacity": 36000 }, - "sample_files/base-hvac-ground-to-air-heat-pump-1ton.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "heat_pump_heating_capacity": 12000, - "heat_pump_cooling_capacity": 12000, - "heat_pump_backup_heating_capacity": 12000 - }, - "sample_files/base-hvac-ground-to-air-heat-pump-2ton.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "heat_pump_heating_capacity": 24000, - "heat_pump_cooling_capacity": 24000, - "heat_pump_backup_heating_capacity": 24000 - }, - "sample_files/base-hvac-ground-to-air-heat-pump-4ton.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "heat_pump_heating_capacity": 48000, - "heat_pump_cooling_capacity": 48000, - "heat_pump_backup_heating_capacity": 48000 - }, - "sample_files/base-hvac-ground-to-air-heat-pump-5ton.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "heat_pump_heating_capacity": 60000, - "heat_pump_cooling_capacity": 60000, - "heat_pump_backup_heating_capacity": 60000 - }, "sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "heat_pump_heating_capacity": 0, diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-1ton.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-1ton.xml deleted file mode 100644 index 21a0093b00..0000000000 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-1ton.xml +++ /dev/null @@ -1,559 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 12000.0 - 12000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 12000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-2ton.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-2ton.xml deleted file mode 100644 index e94e47141b..0000000000 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-2ton.xml +++ /dev/null @@ -1,559 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 24000.0 - 24000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 24000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-4ton.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-4ton.xml deleted file mode 100644 index 7b7ecc6110..0000000000 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-4ton.xml +++ /dev/null @@ -1,559 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 48000.0 - 48000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 48000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-5ton.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-5ton.xml deleted file mode 100644 index 17ff7e345c..0000000000 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-5ton.xml +++ /dev/null @@ -1,559 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - 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 - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 60000.0 - 60000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 60000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - - 30.0 - - - - - vertical - - - - - 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 - - - - - - - - - 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 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file From d8c115076cbae2dd4103fa3fdb6067b7c76ce1a1 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 16:06:36 -0700 Subject: [PATCH 145/217] Rename some sample files and regenerate. --- workflow/hpxml_inputs.json | 18 +++++++++--------- .../sample_files/base-hvac-geothermal-loop.xml | 4 ++-- ...nd-to-air-heat-pump-ground-diffusivity.xml} | 0 ...nd-to-air-heat-pump-soil-moisture-type.xml} | 0 workflow/tests/hpxml_translator_test.rb | 5 +---- 5 files changed, 12 insertions(+), 15 deletions(-) rename workflow/sample_files/{base-misc-ground-diffusivity.xml => base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml} (100%) rename workflow/sample_files/{base-misc-soil-type-sand-moisture-type-dry.xml => base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml} (100%) diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 6224aaf2f7..28bfc1e07d 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2423,6 +2423,15 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_backup_heating_capacity": 36000 }, + "sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_ground_diffusivity": 0.03 + }, + "sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml": { + "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "site_soil_type": "sand", + "site_moisture_type": "dry" + }, "sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "heat_pump_heating_capacity": 0, @@ -3104,15 +3113,6 @@ "parent_hpxml": "sample_files/base.xml", "site_ground_conductivity": 0.8 }, - "sample_files/base-misc-ground-diffusivity.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_ground_diffusivity": 0.03 - }, - "sample_files/base-misc-soil-type-sand-moisture-type-dry.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "sand", - "site_moisture_type": "dry" - }, "sample_files/base-misc-loads-large-uncommon.xml": { "parent_hpxml": "sample_files/base-schedules-simple.xml", "extra_refrigerator_present": true, diff --git a/workflow/sample_files/base-hvac-geothermal-loop.xml b/workflow/sample_files/base-hvac-geothermal-loop.xml index ec367988b6..b2fdc495c5 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop.xml @@ -362,10 +362,10 @@ 5.905512 - 0.5 + standard - 0.3 + standard 1.0 2.5 diff --git a/workflow/sample_files/base-misc-ground-diffusivity.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml similarity index 100% rename from workflow/sample_files/base-misc-ground-diffusivity.xml rename to workflow/sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml diff --git a/workflow/sample_files/base-misc-soil-type-sand-moisture-type-dry.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml similarity index 100% rename from workflow/sample_files/base-misc-soil-type-sand-moisture-type-dry.xml rename to workflow/sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml diff --git a/workflow/tests/hpxml_translator_test.rb b/workflow/tests/hpxml_translator_test.rb index 5138beb4c6..ab29deb2c6 100644 --- a/workflow/tests/hpxml_translator_test.rb +++ b/workflow/tests/hpxml_translator_test.rb @@ -1208,10 +1208,7 @@ def _verify_outputs(rundir, hpxml_path, results, hpxml) if hpxml.total_fraction_cool_load_served == 0 assert_equal(0, unmet_hours_clg) else - if hpxml_path.include? '1ton' - else - assert_operator(unmet_hours_clg, :<, 350) - end + assert_operator(unmet_hours_clg, :<, 350) end end From 0ad85a9288fb26a607c7e5f8addf4a0326caf6d8 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 16:27:40 -0700 Subject: [PATCH 146/217] Update bore config argument to default to none. --- BuildResidentialHPXML/measure.rb | 16 ++-- BuildResidentialHPXML/measure.xml | 13 ++- HPXMLtoOpenStudio/measure.xml | 6 +- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 90 +++++++++---------- workflow/hpxml_inputs.json | 2 + ...ed-ground-loop-ground-to-air-heat-pump.xml | 5 -- .../base-dhw-desuperheater-gshp.xml | 5 -- ...e-ground-to-air-heat-pump-cooling-only.xml | 5 -- ...e-ground-to-air-heat-pump-heating-only.xml | 5 -- ...-air-heat-pump-sizing-methodology-acca.xml | 5 -- ...-air-heat-pump-sizing-methodology-hers.xml | 5 -- ...r-heat-pump-sizing-methodology-maxload.xml | 5 -- ...c-ground-to-air-heat-pump-cooling-only.xml | 5 -- ...nd-to-air-heat-pump-ground-diffusivity.xml | 5 -- ...c-ground-to-air-heat-pump-heating-only.xml | 5 -- ...nd-to-air-heat-pump-soil-moisture-type.xml | 5 -- .../base-hvac-ground-to-air-heat-pump.xml | 5 -- ...nstall-quality-ground-to-air-heat-pump.xml | 5 -- 18 files changed, 64 insertions(+), 128 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 3f1a967736..3477a13495 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1382,6 +1382,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument args << arg geothermal_loop_borefield_configuration_choices = OpenStudio::StringVector.new + geothermal_loop_borefield_configuration_choices << 'none' geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationRectangle # geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationZonedRectangle geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle @@ -1390,9 +1391,10 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationU geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationLopsidedU - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_borefield_configuration', geothermal_loop_borefield_configuration_choices, false) + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_borefield_configuration', geothermal_loop_borefield_configuration_choices, true) arg.setDisplayName('Geothermal Loop: Borefield Configuration') arg.setDescription("Borefield configuration of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") + arg.setDefaultValue('none') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_loop_flow', false) @@ -5072,9 +5074,9 @@ def self.set_heat_pumps(hpxml, args) end def self.set_geothermal_loop(hpxml, args) - heat_pump_type = args[:heat_pump_type] + bore_config = args[:geothermal_loop_borefield_configuration] - return if heat_pump_type != HPXML::HVACTypeHeatPumpGroundToAir + return if bore_config == 'none' if args[:geothermal_loop_loop_flow].is_initialized loop_flow = args[:geothermal_loop_loop_flow].get @@ -5119,13 +5121,10 @@ def self.set_geothermal_loop(hpxml, args) shank_spacing = args[:geothermal_loop_pipe_shank_spacing].get end - if args[:geothermal_loop_borefield_configuration].is_initialized - bore_config = args[:geothermal_loop_borefield_configuration].get - end - hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}", loop_configuration: HPXML::GeothermalLoopLoopConfigurationVertical, loop_flow: loop_flow, + bore_config: bore_config, num_bore_holes: num_bore_holes, bore_length: bore_length, bore_spacing: bore_spacing, @@ -5133,8 +5132,7 @@ def self.set_geothermal_loop(hpxml, args) grout_type: grout_type, pipe_type: pipe_type, pipe_diameter: pipe_diameter, - shank_spacing: shank_spacing, - bore_config: bore_config) + shank_spacing: shank_spacing) hpxml.heat_pumps[-1].geothermal_loop_idref = hpxml.geothermal_loops[-1].id end diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index c705c63f70..38b0635593 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 03f8e954-de5f-4137-ac6e-0451be6f0740 - 2023-09-12T22:03:32Z + ac1adc18-2e5f-4218-844f-cd7809084c0c + 2023-09-12T23:23:38Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -2842,9 +2842,14 @@ Geothermal Loop: Borefield Configuration Borefield configuration of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. Choice - false + true false + none + + none + none + Rectangle Rectangle @@ -6953,7 +6958,7 @@ measure.rb rb script - C542C3B1 + DD0EBF62
geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 5f9ffbfb1b..08edeb81bc 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - fc8c6fd2-2ecf-4126-aae4-083fc522a79c - 2023-09-12T22:38:45Z + 60b15870-26f9-477d-8c69-8cca1b804ee9 + 2023-09-12T23:23:41Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -298,7 +298,7 @@ hpxml_defaults.rb rb resource - B54B1889 + 0F55D6A2 hpxml_schema/HPXML.xsd diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 86786d95be..2abec96439 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1590,64 +1590,60 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) HVAC.set_mshp_downselected_speed_indices(heat_pump) elsif [HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type - if heat_pump.geothermal_loop.nil? - hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}", - loop_configuration: HPXML::GeothermalLoopLoopConfigurationVertical) - heat_pump.geothermal_loop_idref = hpxml.geothermal_loops[-1].id - end - - if heat_pump.geothermal_loop.pipe_diameter.nil? - heat_pump.geothermal_loop.pipe_diameter = 0.75 # in - heat_pump.geothermal_loop.pipe_diameter_isdefaulted = true - end - HVAC.set_gshp_assumptions(heat_pump, weather) HVAC.set_curves_gshp(heat_pump) - if heat_pump.geothermal_loop.bore_spacing.nil? - heat_pump.geothermal_loop.bore_spacing = 16.4 # ft, distance between bores - heat_pump.geothermal_loop.bore_spacing_isdefaulted = true - end + elsif [HPXML::HVACTypeHeatPumpWaterLoopToAir].include? heat_pump.heat_pump_type + HVAC.set_heat_pump_temperatures(heat_pump, runner) - if heat_pump.geothermal_loop.bore_diameter.nil? - heat_pump.geothermal_loop.bore_diameter = 5.0 # in - heat_pump.geothermal_loop.bore_diameter_isdefaulted = true - end + end + end + hpxml.geothermal_loops.each do |geothermal_loop| + if geothermal_loop.pipe_diameter.nil? + geothermal_loop.pipe_diameter = 0.75 # in + geothermal_loop.pipe_diameter_isdefaulted = true + end - if heat_pump.geothermal_loop.grout_type.nil? && heat_pump.geothermal_loop.grout_conductivity.nil? - heat_pump.geothermal_loop.grout_type = HPXML::GeothermalLoopGroutTypeStandard - heat_pump.geothermal_loop.grout_type_isdefaulted = true - end + if geothermal_loop.bore_spacing.nil? + geothermal_loop.bore_spacing = 16.4 # ft, distance between bores + geothermal_loop.bore_spacing_isdefaulted = true + end - if heat_pump.geothermal_loop.grout_conductivity.nil? - if heat_pump.geothermal_loop.grout_type == HPXML::GeothermalLoopGroutTypeStandard - heat_pump.geothermal_loop.grout_conductivity = 0.4 # Btu/h-ft-R - heat_pump.geothermal_loop.grout_conductivity_isdefaulted = true - elsif heat_pump.geothermal_loop.grout_type == HPXML::GeothermalLoopGroutTypeThermallyEnhanced - heat_pump.geothermal_loop.grout_conductivity = 0.8 # Btu/h-ft-R - heat_pump.geothermal_loop.grout_conductivity_isdefaulted = true - end - end + if geothermal_loop.bore_diameter.nil? + geothermal_loop.bore_diameter = 5.0 # in + geothermal_loop.bore_diameter_isdefaulted = true + end - if heat_pump.geothermal_loop.pipe_conductivity.nil? - if heat_pump.geothermal_loop.pipe_type == HPXML::GeothermalLoopPipeTypeStandard - heat_pump.geothermal_loop.pipe_conductivity = 0.23 # Btu/h-ft-R; Pipe thermal conductivity, default to high density polyethylene - heat_pump.geothermal_loop.pipe_conductivity_isdefaulted = true - elsif heat_pump.geothermal_loop.pipe_type == HPXML::GeothermalLoopPipeTypeThermallyEnhanced - heat_pump.geothermal_loop.pipe_conductivity = 0.46 # Btu/h-ft-R; FIXME - heat_pump.geothermal_loop.pipe_conductivity_isdefaulted = true - end - end + if geothermal_loop.grout_type.nil? && geothermal_loop.grout_conductivity.nil? + geothermal_loop.grout_type = HPXML::GeothermalLoopGroutTypeStandard + geothermal_loop.grout_type_isdefaulted = true + end - if heat_pump.geothermal_loop.shank_spacing.nil? - hp_ap = heat_pump.additional_properties - heat_pump.geothermal_loop.shank_spacing = hp_ap.u_tube_spacing + hp_ap.pipe_od # Distance from center of pipe to center of pipe - heat_pump.geothermal_loop.shank_spacing_isdefaulted = true + if geothermal_loop.grout_conductivity.nil? + if geothermal_loop.grout_type == HPXML::GeothermalLoopGroutTypeStandard + geothermal_loop.grout_conductivity = 0.4 # Btu/h-ft-R + geothermal_loop.grout_conductivity_isdefaulted = true + elsif geothermal_loop.grout_type == HPXML::GeothermalLoopGroutTypeThermallyEnhanced + geothermal_loop.grout_conductivity = 0.8 # Btu/h-ft-R + geothermal_loop.grout_conductivity_isdefaulted = true end - elsif [HPXML::HVACTypeHeatPumpWaterLoopToAir].include? heat_pump.heat_pump_type - HVAC.set_heat_pump_temperatures(heat_pump, runner) + end + if geothermal_loop.pipe_conductivity.nil? + if geothermal_loop.pipe_type == HPXML::GeothermalLoopPipeTypeStandard + geothermal_loop.pipe_conductivity = 0.23 # Btu/h-ft-R; Pipe thermal conductivity, default to high density polyethylene + geothermal_loop.pipe_conductivity_isdefaulted = true + elsif geothermal_loop.pipe_type == HPXML::GeothermalLoopPipeTypeThermallyEnhanced + geothermal_loop.pipe_conductivity = 0.46 # Btu/h-ft-R; FIXME + geothermal_loop.pipe_conductivity_isdefaulted = true + end end + + next unless geothermal_loop.shank_spacing.nil? + + hp_ap = heat_pump.additional_properties + geothermal_loop.shank_spacing = hp_ap.u_tube_spacing + hp_ap.pipe_od # Distance from center of pipe to center of pipe + geothermal_loop.shank_spacing_isdefaulted = true end end diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 28bfc1e07d..3aa7f1e1fa 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -105,6 +105,7 @@ "heat_pump_backup_type": "none", "heat_pump_backup_fuel": "electricity", "heat_pump_backup_heating_efficiency": 0, + "geothermal_loop_borefield_configuration": "none", "heating_system_2_type": "none", "heating_system_2_fuel": "electricity", "heating_system_2_heating_efficiency": 0, @@ -473,6 +474,7 @@ "heat_pump_backup_type": "none", "heat_pump_backup_fuel": "electricity", "heat_pump_backup_heating_efficiency": 0, + "geothermal_loop_borefield_configuration": "none", "heating_system_2_type": "none", "heating_system_2_fuel": "electricity", "heating_system_2_heating_efficiency": 0, diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml index bb0c8fc7c0..5d7e44af0b 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml @@ -254,16 +254,11 @@ COP 3.6 - 0.0 600.0 - - - vertical - diff --git a/workflow/sample_files/base-dhw-desuperheater-gshp.xml b/workflow/sample_files/base-dhw-desuperheater-gshp.xml index a2e7f385ae..96fa0a905b 100644 --- a/workflow/sample_files/base-dhw-desuperheater-gshp.xml +++ b/workflow/sample_files/base-dhw-desuperheater-gshp.xml @@ -346,15 +346,10 @@ COP 3.6 - 30.0 - - - vertical - diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml index d72d6c9d2a..08eb5da9b0 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml @@ -339,15 +339,10 @@ COP 3.6 - 30.0 - - - vertical - diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml index 4c2d2e3e74..1213ca53dc 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml @@ -345,15 +345,10 @@ COP 3.6 - 30.0 - - - vertical - diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml index 97b5f2c842..8960eede1d 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml @@ -346,15 +346,10 @@ COP 3.6 - 30.0 - - - vertical - diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml index 4b5b84409b..78b13a3f54 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml @@ -346,15 +346,10 @@ COP 3.6 - 30.0 - - - vertical - diff --git a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml index 77b63b90c3..3e2e3aedcf 100644 --- a/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml +++ b/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml @@ -346,15 +346,10 @@ COP 3.6 - 30.0 - - - vertical - diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml index 97c32aa9d5..9021bc8106 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml @@ -338,15 +338,10 @@ COP 3.6 - 30.0 - - - vertical - diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml index 569c963b01..96a4945b2b 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml @@ -351,15 +351,10 @@ COP 3.6 - 30.0 - - - vertical - diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml index a7796da48a..3ab9f82105 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml @@ -345,15 +345,10 @@ COP 3.6 - 30.0 - - - vertical - diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml index 05e10c4a08..be419c9c63 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml @@ -350,15 +350,10 @@ COP 3.6 - 30.0 - - - vertical - diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml index 4e630c2bfa..2cc08b125a 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml @@ -346,15 +346,10 @@ COP 3.6 - 30.0 - - - vertical - diff --git a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml index 5784537075..75fad083c2 100644 --- a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml @@ -346,7 +346,6 @@ COP 3.6 - -0.25 -0.25 @@ -354,10 +353,6 @@ 30.0 - - - vertical - From 8b61136d3dd19d4417038225881189cbfbfa2850 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 21:07:11 -0700 Subject: [PATCH 147/217] Combine grout and pipe type choices into one. --- BuildResidentialHPXML/measure.rb | 14 +++++--------- BuildResidentialHPXML/measure.xml | 6 +++--- 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 3477a13495..d2c0861299 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1427,20 +1427,16 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setUnits('in') args << arg - geothermal_loop_grout_type_choices = OpenStudio::StringVector.new - geothermal_loop_grout_type_choices << HPXML::GeothermalLoopGroutTypeStandard - geothermal_loop_grout_type_choices << HPXML::GeothermalLoopGroutTypeThermallyEnhanced + geothermal_loop_grout_or_pipe_type_choices = OpenStudio::StringVector.new + geothermal_loop_grout_or_pipe_type_choices << HPXML::GeothermalLoopGroutOrPipeTypeStandard + geothermal_loop_grout_or_pipe_type_choices << HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_grout_type', geothermal_loop_grout_type_choices, false) + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_grout_type', geothermal_loop_grout_or_pipe_type_choices, false) arg.setDisplayName('Geothermal Loop: Grout Type') arg.setDescription("Grout type of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") args << arg - geothermal_loop_pipe_type_choices = OpenStudio::StringVector.new - geothermal_loop_pipe_type_choices << HPXML::GeothermalLoopPipeTypeStandard - geothermal_loop_pipe_type_choices << HPXML::GeothermalLoopPipeTypeThermallyEnhanced - - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_pipe_type', geothermal_loop_pipe_type_choices, false) + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_pipe_type', geothermal_loop_grout_or_pipe_type_choices, false) arg.setDisplayName('Geothermal Loop: Pipe Type') arg.setDescription("Pipe type of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") args << arg diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 38b0635593..3bcdbc49dc 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - ac1adc18-2e5f-4218-844f-cd7809084c0c - 2023-09-12T23:23:38Z + 463fbb81-0818-47fa-a2ca-69bd73741ebc + 2023-09-13T03:58:28Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6958,7 +6958,7 @@ measure.rb rb script - DD0EBF62 + F6157523 geometry.rb From 9ca09f6c6d6c65ca2ead8b049ea923b81597a3e8 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 21:08:21 -0700 Subject: [PATCH 148/217] Revert geothermal loop default and fix tests. --- HPXMLtoOpenStudio/measure.xml | 14 +-- HPXMLtoOpenStudio/resources/hpxml.rb | 6 +- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 91 ++++++++++--------- .../resources/unit_conversions.rb | 6 +- HPXMLtoOpenStudio/tests/test_defaults.rb | 12 +-- HPXMLtoOpenStudio/tests/test_hvac.rb | 4 +- 6 files changed, 70 insertions(+), 63 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 08edeb81bc..1926c7341b 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 60b15870-26f9-477d-8c69-8cca1b804ee9 - 2023-09-12T23:23:41Z + 8160a22f-34bf-4736-b725-6901db46a044 + 2023-09-13T04:06:38Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -292,13 +292,13 @@ hpxml.rb rb resource - 77A4AA9E + 3317A126 hpxml_defaults.rb rb resource - 0F55D6A2 + 7811E30A hpxml_schema/HPXML.xsd @@ -490,7 +490,7 @@ unit_conversions.rb rb resource - E2D71341 + 7954C9BD util.rb @@ -550,7 +550,7 @@ test_defaults.rb rb test - 1584363E + 0B6D21F6 test_enclosure.rb @@ -574,7 +574,7 @@ test_hvac.rb rb test - F09AAA92 + 0D6E392F test_hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index d1ef4eac59..31efd64993 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -168,8 +168,8 @@ class HPXML < Object GeothermalLoopLoopConfigurationHorizontal = 'horizontal' GeothermalLoopLoopConfigurationOther = 'other' GeothermalLoopLoopConfigurationVertical = 'vertical' - GeothermalLoopGroutTypeStandard = 'standard' - GeothermalLoopGroutTypeThermallyEnhanced = 'thermally enhanced' + GeothermalLoopGroutOrPipeTypeStandard = 'standard' + GeothermalLoopGroutOrPipeTypeThermallyEnhanced = 'thermally enhanced' GeothermalLoopPipeTypeStandard = 'standard' GeothermalLoopPipeTypeThermallyEnhanced = 'thermally enhanced' HeaterTypeElectricResistance = 'electric resistance' @@ -4122,7 +4122,7 @@ def to_oga(doc) XMLHelper.add_element(grout, 'Type', @grout_type, :string, @grout_type_isdefaulted) unless @grout_type.nil? XMLHelper.add_element(grout, 'Conductivity', @grout_conductivity, :float, @grout_conductivity_isdefaulted) unless @grout_conductivity.nil? end - if (not @pipe_conductivity.nil?) || (not @pipe_diameter.nil?) || (not @shank_spacing.nil?) + if (not @pipe_type.nil?) || (not @pipe_conductivity.nil?) || (not @pipe_diameter.nil?) || (not @shank_spacing.nil?) pipe = XMLHelper.add_element(geothermal_loop, 'Pipe') XMLHelper.add_element(pipe, 'Type', @pipe_type, :string, @pipe_type_isdefaulted) unless @pipe_type.nil? XMLHelper.add_element(pipe, 'Conductivity', @pipe_conductivity, :float, @pipe_conductivity_isdefaulted) unless @pipe_conductivity.nil? diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 2abec96439..05db432fc0 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1590,60 +1590,67 @@ def self.apply_hvac(runner, hpxml, weather, convert_shared_systems) HVAC.set_mshp_downselected_speed_indices(heat_pump) elsif [HPXML::HVACTypeHeatPumpGroundToAir].include? heat_pump.heat_pump_type + if heat_pump.geothermal_loop.nil? + hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}", + loop_configuration: HPXML::GeothermalLoopLoopConfigurationVertical) + heat_pump.geothermal_loop_idref = hpxml.geothermal_loops[-1].id + end + + if heat_pump.geothermal_loop.pipe_diameter.nil? + heat_pump.geothermal_loop.pipe_diameter = 0.75 # in + heat_pump.geothermal_loop.pipe_diameter_isdefaulted = true + end + HVAC.set_gshp_assumptions(heat_pump, weather) HVAC.set_curves_gshp(heat_pump) - elsif [HPXML::HVACTypeHeatPumpWaterLoopToAir].include? heat_pump.heat_pump_type - HVAC.set_heat_pump_temperatures(heat_pump, runner) - - end - end - hpxml.geothermal_loops.each do |geothermal_loop| - if geothermal_loop.pipe_diameter.nil? - geothermal_loop.pipe_diameter = 0.75 # in - geothermal_loop.pipe_diameter_isdefaulted = true - end + if heat_pump.geothermal_loop.bore_spacing.nil? + heat_pump.geothermal_loop.bore_spacing = 16.4 # ft, distance between bores + heat_pump.geothermal_loop.bore_spacing_isdefaulted = true + end - if geothermal_loop.bore_spacing.nil? - geothermal_loop.bore_spacing = 16.4 # ft, distance between bores - geothermal_loop.bore_spacing_isdefaulted = true - end + if heat_pump.geothermal_loop.bore_diameter.nil? + heat_pump.geothermal_loop.bore_diameter = 5.0 # in + heat_pump.geothermal_loop.bore_diameter_isdefaulted = true + end - if geothermal_loop.bore_diameter.nil? - geothermal_loop.bore_diameter = 5.0 # in - geothermal_loop.bore_diameter_isdefaulted = true - end + if heat_pump.geothermal_loop.grout_type.nil? && heat_pump.geothermal_loop.grout_conductivity.nil? + heat_pump.geothermal_loop.grout_type = HPXML::GeothermalLoopGroutOrPipeTypeStandard + heat_pump.geothermal_loop.grout_type_isdefaulted = true + end - if geothermal_loop.grout_type.nil? && geothermal_loop.grout_conductivity.nil? - geothermal_loop.grout_type = HPXML::GeothermalLoopGroutTypeStandard - geothermal_loop.grout_type_isdefaulted = true - end + if heat_pump.geothermal_loop.grout_conductivity.nil? + if heat_pump.geothermal_loop.grout_type == HPXML::GeothermalLoopGroutOrPipeTypeStandard + heat_pump.geothermal_loop.grout_conductivity = 0.4 # Btu/h-ft-R + elsif heat_pump.geothermal_loop.grout_type == HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced + heat_pump.geothermal_loop.grout_conductivity = 0.8 # Btu/h-ft-R + end + heat_pump.geothermal_loop.grout_conductivity_isdefaulted = true + end - if geothermal_loop.grout_conductivity.nil? - if geothermal_loop.grout_type == HPXML::GeothermalLoopGroutTypeStandard - geothermal_loop.grout_conductivity = 0.4 # Btu/h-ft-R - geothermal_loop.grout_conductivity_isdefaulted = true - elsif geothermal_loop.grout_type == HPXML::GeothermalLoopGroutTypeThermallyEnhanced - geothermal_loop.grout_conductivity = 0.8 # Btu/h-ft-R - geothermal_loop.grout_conductivity_isdefaulted = true + if heat_pump.geothermal_loop.pipe_type.nil? && heat_pump.geothermal_loop.pipe_conductivity.nil? + heat_pump.geothermal_loop.pipe_type = HPXML::GeothermalLoopGroutOrPipeTypeStandard + heat_pump.geothermal_loop.pipe_type_isdefaulted = true end - end - if geothermal_loop.pipe_conductivity.nil? - if geothermal_loop.pipe_type == HPXML::GeothermalLoopPipeTypeStandard - geothermal_loop.pipe_conductivity = 0.23 # Btu/h-ft-R; Pipe thermal conductivity, default to high density polyethylene - geothermal_loop.pipe_conductivity_isdefaulted = true - elsif geothermal_loop.pipe_type == HPXML::GeothermalLoopPipeTypeThermallyEnhanced - geothermal_loop.pipe_conductivity = 0.46 # Btu/h-ft-R; FIXME - geothermal_loop.pipe_conductivity_isdefaulted = true + if heat_pump.geothermal_loop.pipe_conductivity.nil? + if heat_pump.geothermal_loop.pipe_type == HPXML::GeothermalLoopGroutOrPipeTypeStandard + heat_pump.geothermal_loop.pipe_conductivity = 0.23 # Btu/h-ft-R; Pipe thermal conductivity, default to high density polyethylene + elsif heat_pump.geothermal_loop.pipe_type == HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced + heat_pump.geothermal_loop.pipe_conductivity = 0.40 # Btu/h-ft-R; 0.7 W/m-K from https://www.dropbox.com/scl/fi/91yp8e9v34vdh1isvrfvy/GeoPerformX-Spec-Sheet.pdf?rlkey=kw7p01gs46z9lfjs78bo8aujq&dl=0 + end + heat_pump.geothermal_loop.pipe_conductivity_isdefaulted = true end - end - next unless geothermal_loop.shank_spacing.nil? + if heat_pump.geothermal_loop.shank_spacing.nil? + hp_ap = heat_pump.additional_properties + heat_pump.geothermal_loop.shank_spacing = hp_ap.u_tube_spacing + hp_ap.pipe_od # Distance from center of pipe to center of pipe + heat_pump.geothermal_loop.shank_spacing_isdefaulted = true + end + elsif [HPXML::HVACTypeHeatPumpWaterLoopToAir].include? heat_pump.heat_pump_type + HVAC.set_heat_pump_temperatures(heat_pump, runner) - hp_ap = heat_pump.additional_properties - geothermal_loop.shank_spacing = hp_ap.u_tube_spacing + hp_ap.pipe_od # Distance from center of pipe to center of pipe - geothermal_loop.shank_spacing_isdefaulted = true + end end end diff --git a/HPXMLtoOpenStudio/resources/unit_conversions.rb b/HPXMLtoOpenStudio/resources/unit_conversions.rb index 9eff0059f0..6dbe3c7d10 100644 --- a/HPXMLtoOpenStudio/resources/unit_conversions.rb +++ b/HPXMLtoOpenStudio/resources/unit_conversions.rb @@ -82,9 +82,6 @@ class UnitConversions # Mass ['lbm', 'kg'] => 0.45359237, - # Area Flow Rate - ['m^2/s', 'ft^2/hr'] => 38750.1, - # Volume Flow Rate ['m^3/s', 'gal/min'] => 15850.323141615143, ['m^3/s', 'cfm'] => 2118.880003289315, @@ -136,6 +133,9 @@ class UnitConversions ['btu/(hr*ft*r)', 'w/(m*k)'] => 1.731, ['btu*in/(hr*ft^2*r)', 'w/(m*k)'] => 0.14425, + # Thermal Diffusivity + ['m^2/s', 'ft^2/hr'] => 38750.1, + # Infiltration ['ft^2/(s^2*r)', 'l^2/(s^2*cm^4*k)'] => 0.001672, ['inh2o/mph^2', 'pa*s^2/m^2'] => 1246.0, diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index ac3cbb0612..1160fb7cbd 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1693,14 +1693,14 @@ def test_ground_source_heat_pumps def test_geothermal_loops # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml = _create_hpxml('base-hvac-geothermal-loop.xml') hpxml.geothermal_loops[0].loop_configuration = HPXML::GeothermalLoopLoopConfigurationVertical hpxml.geothermal_loops[0].loop_flow = 1 hpxml.geothermal_loops[0].num_bore_holes = 2 hpxml.geothermal_loops[0].bore_spacing = 3 hpxml.geothermal_loops[0].bore_length = 100 hpxml.geothermal_loops[0].bore_diameter = 5 - hpxml.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutTypeThermallyEnhanced + hpxml.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced hpxml.geothermal_loops[0].grout_conductivity = 6 hpxml.geothermal_loops[0].pipe_conductivity = 7 hpxml.geothermal_loops[0].pipe_diameter = 1.0 @@ -1708,7 +1708,7 @@ def test_geothermal_loops hpxml.geothermal_loops[0].bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, 2, 3, 100, 5, HPXML::GeothermalLoopGroutTypeThermallyEnhanced, 6, 7, 1.0, 9, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, 2, 3, 100, 5, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 6, 7, 1.0, 9, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults hpxml.geothermal_loops[0].loop_flow = nil @@ -1724,13 +1724,13 @@ def test_geothermal_loops hpxml.geothermal_loops[0].bore_config = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutTypeStandard, 0.4, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults w/ thermally enhanced grout type - hpxml.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutTypeThermallyEnhanced + hpxml.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutTypeThermallyEnhanced, 0.8, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.8, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) end def test_hvac_location diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index e0c32a0bdf..f159fed1a1 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -716,8 +716,8 @@ def test_geothermal_loop # Get HPXML values geothermal_loop = hpxml.geothermal_loops[0] bore_radius = UnitConversions.convert(geothermal_loop.bore_diameter / 2.0, 'in', 'm') - grout_conductivity = UnitConversions.convert(geothermal_loop.grout_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)') - pipe_conductivity = UnitConversions.convert(geothermal_loop.pipe_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)') + grout_conductivity = UnitConversions.convert(0.4, 'Btu/(hr*ft*R)', 'W/(m*K)') + pipe_conductivity = UnitConversions.convert(0.23, 'Btu/(hr*ft*R)', 'W/(m*K)') shank_spacing = UnitConversions.convert(geothermal_loop.shank_spacing, 'in', 'm') # Check ghx From aca6d09260424a68c4b5e2b23d015b7b0d783d9b Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 12 Sep 2023 21:08:38 -0700 Subject: [PATCH 149/217] Update the docs. --- docs/source/workflow_inputs.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 27839bfa37..a6b7e8f272 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -576,7 +576,7 @@ Soil information is entered in ``Soil``. .. note:: - Default Conductivity and extension/Diffusivity values based on SoilType/MoistureType provided by ``_ (with the exception of "unknown"). + Default Conductivity and extension/Diffusivity values based on SoilType/MoistureType provided by Table 1 of `Ground Thermal Diffusivity Calculation by Direct Soil Temperature Measurement. Application to very Low Enthalpy Geothermal Energy Systems `_ (with the exception of "unknown"). For each neighboring building defined, additional information is entered in a ``extension/Neighbors/NeighborBuilding``. @@ -2114,7 +2114,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ .. [#] Pipe/Type choices are "standard" or "thermally enhanced". .. [#] | If Pipe/Conductivity not provided, defaults based on Pipe/Type: | - **standard**: 0.23 Btu/hr-ft-F - | - **thermally enhanced**: 0.46 Btu/hr-ft-F + | - **thermally enhanced**: 0.40 Btu/hr-ft-F .. [#] Pipe diameter must be either 3/4", 1", or 1-1/4" (i.e, 0.75, 1.0, or 1.25). .. [#] | ShankSpacing defaults to sum of U-tube spacing (assumed to be 0.9661 in) and pipe outer diameter, where pipe outer diameter is assumed to be: | - **0.75 in pipe**: 1.050 in From 35d3f03a9fdd50dd4424b80abcf089a3cbb7bda2 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 13 Sep 2023 05:05:49 +0000 Subject: [PATCH 150/217] Latest results. --- workflow/tests/base_results/results.csv | 10 +++------- workflow/tests/base_results/results_bills.csv | 10 +++------- 2 files changed, 6 insertions(+), 14 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index bcc6844d20..1fb2a6e928 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -290,13 +290,11 @@ base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0 base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop.xml,39.476,39.476,39.476,39.476,0.0,0.0,0.0,0.0,0.0,0.0,5.177,0.344,0.0,0.0,2.506,1.007,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.461,0.0,12.652,9.233,0.614,0.0,0.0,0.0,0.0,3156.4,2554.7,3156.4,20.581,14.608,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.966,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.74,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-1ton.xml,45.619,45.619,45.619,45.619,0.0,0.0,0.0,0.0,0.0,0.0,6.272,0.514,3.1,0.051,3.889,1.354,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,0.0,27.791,3.151,15.293,9.233,0.613,0.0,0.0,9.0,726.0,5870.6,2635.7,5870.6,24.259,11.438,0.0,3.295,3.637,0.512,7.506,0.629,10.509,-12.563,0.0,0.0,0.0,8.277,-0.06,4.804,0.0,0.728,0.0,11.554,-8.91,-2.5,0.0,-0.175,-0.492,-0.056,2.609,-0.034,-2.035,11.72,0.0,0.0,0.0,-6.461,-0.056,-1.19,-3.209,-0.173,0.0,5.091,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,12000.0,12000.0,12000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-2ton.xml,40.892,40.892,40.892,40.892,0.0,0.0,0.0,0.0,0.0,0.0,5.744,0.469,0.0,0.0,3.094,1.144,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.83,0.0,13.711,9.233,0.614,0.0,0.0,0.0,0.0,3391.1,2908.8,3391.1,24.179,17.302,0.0,3.526,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.062,4.804,0.0,0.728,0.0,5.403,-8.907,-2.499,0.0,-0.03,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.062,-0.165,0.0,2.813,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,24000.0,24000.0,24000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-4ton.xml,39.814,39.814,39.814,39.814,0.0,0.0,0.0,0.0,0.0,0.0,5.325,0.403,0.0,0.0,2.66,0.986,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.016,0.0,12.208,9.233,0.614,0.0,0.0,0.0,0.0,3207.1,2588.5,3207.1,19.911,13.608,0.0,3.624,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.51,-8.907,-2.499,0.0,0.029,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.289,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48000.0,48000.0,48000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-5ton.xml,39.73,39.73,39.73,39.73,0.0,0.0,0.0,0.0,0.0,0.0,5.327,0.394,0.0,0.0,2.61,0.959,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.511,0.0,11.936,9.233,0.614,0.0,0.0,0.0,0.0,3179.6,2549.9,3179.6,19.164,13.043,0.0,3.643,3.633,0.511,7.497,0.628,10.503,-12.551,0.0,0.0,0.0,8.268,-0.062,4.804,0.0,0.728,0.0,1.99,-8.907,-2.499,0.0,0.038,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.058,-0.165,0.0,1.013,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,60000.0,60000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,39.493,39.493,39.493,39.493,0.0,0.0,0.0,0.0,0.0,0.0,5.183,0.345,0.0,0.0,2.516,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,0.0,19.464,0.0,12.653,9.233,0.614,0.0,0.0,0.0,0.0,3159.1,2560.4,3159.1,20.595,14.612,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.97,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.741,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.0,34.0,34.0,34.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.744,0.77,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2657.7,2657.7,0.0,14.727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.983,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,39.989,39.989,39.989,39.989,0.0,0.0,0.0,0.0,0.0,0.0,5.355,0.367,0.0,0.0,2.79,1.037,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,12.684,9.233,0.614,0.0,0.0,0.0,0.0,3249.2,2686.8,3249.2,20.977,14.737,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.076,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-heating-only.xml,36.687,36.687,36.687,36.687,0.0,0.0,0.0,0.0,0.0,0.0,5.498,0.772,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,0.0,20.365,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3388.5,1637.3,3388.5,22.37,0.0,0.0,3.576,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.06,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,37.681,37.681,37.681,37.681,0.0,0.0,0.0,0.0,0.0,0.0,3.105,0.249,0.0,0.0,2.855,1.036,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.372,0.0,13.248,9.233,0.609,0.0,0.0,0.0,0.0,2956.2,2674.4,2956.2,17.435,15.377,0.0,3.755,3.756,0.529,5.693,0.653,10.826,-12.451,0.0,0.0,0.0,1.913,-0.043,4.855,0.0,0.737,0.0,2.088,-8.802,-2.478,0.0,-0.074,-0.537,-0.062,0.79,-0.048,-2.192,11.832,0.0,0.0,0.0,-3.437,-0.037,-1.245,-3.237,-0.178,0.0,1.87,7.971,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump.xml,39.961,39.961,39.961,39.961,0.0,0.0,0.0,0.0,0.0,0.0,5.345,0.366,0.0,0.0,2.774,1.035,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.562,0.0,12.682,9.233,0.614,0.0,0.0,0.0,0.0,3244.2,2678.5,3244.2,20.952,14.728,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.07,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,7036.9,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,7011.6,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -387,14 +385,12 @@ base-misc-generators-battery-scheduled.xml,77.483,69.294,37.652,29.463,31.331,8. base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-ground-diffusivity.xml,39.989,39.989,39.989,39.989,0.0,0.0,0.0,0.0,0.0,0.0,5.355,0.367,0.0,0.0,2.79,1.037,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,12.684,9.233,0.614,0.0,0.0,0.0,0.0,3249.2,2686.8,3249.2,20.977,14.737,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.076,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 -base-misc-soil-type-sand-moisture-type-dry.xml,37.681,37.681,37.681,37.681,0.0,0.0,0.0,0.0,0.0,0.0,3.105,0.249,0.0,0.0,2.855,1.036,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.372,0.0,13.248,9.233,0.609,0.0,0.0,0.0,0.0,2956.2,2674.4,2956.2,17.435,15.377,0.0,3.755,3.756,0.529,5.693,0.653,10.826,-12.451,0.0,0.0,0.0,1.913,-0.043,4.855,0.0,0.737,0.0,2.088,-8.802,-2.478,0.0,-0.074,-0.537,-0.062,0.79,-0.048,-2.192,11.832,0.0,0.0,0.0,-3.437,-0.037,-1.245,-3.237,-0.178,0.0,1.87,7.971,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-pv-battery-ah.xml,59.559,32.673,36.729,9.842,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.779,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,15.785,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-pv-battery-garage.xml,59.922,33.035,35.447,8.561,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.828,24.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.914,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2135.8,2828.5,2828.5,18.053,10.775,0.0,3.527,3.787,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.843,-6.765,-2.508,0.0,0.117,-0.268,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.284,5.681,2.001,1354.8,997.6,11399.5,2615.8,24.753,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.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 ba0fcdb43a..4f4e4dacce 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -290,13 +290,11 @@ base-hvac-furnace-oil-only.xml,2094.22,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1912.48,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,630.01,630.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-wood-only.xml,1630.62,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop.xml,1592.79,144.0,1448.79,0.0,1592.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-1ton.xml,1818.24,144.0,1674.24,0.0,1818.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-2ton.xml,1644.77,144.0,1500.77,0.0,1644.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-4ton.xml,1605.19,144.0,1461.19,0.0,1605.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-5ton.xml,1602.12,144.0,1458.12,0.0,1602.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop.xml,1593.41,144.0,1449.41,0.0,1593.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,1391.81,144.0,1247.81,0.0,1391.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1611.61,144.0,1467.61,0.0,1611.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-heating-only.xml,1490.44,144.0,1346.44,0.0,1490.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,1526.89,144.0,1382.89,0.0,1526.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump.xml,1610.57,144.0,1466.57,0.0,1610.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1941.16,144.0,1797.16,0.0,1941.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1753.34,144.0,1609.34,0.0,1753.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -387,14 +385,12 @@ base-misc-generators-battery-scheduled.xml,2298.24,144.0,1381.06,0.0,1525.06,144 base-misc-generators-battery.xml,2236.54,144.0,1319.36,0.0,1463.36,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-generators.xml,2236.54,144.0,1319.36,0.0,1463.36,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-ground-conductivity.xml,1822.54,144.0,1316.42,0.0,1460.42,144.0,218.12,362.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-ground-diffusivity.xml,1611.61,144.0,1467.61,0.0,1611.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-loads-large-uncommon.xml,3692.47,144.0,2510.26,0.0,2654.26,144.0,743.94,887.94,0.0,0.0,0.0,0.0,67.83,67.83,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3052.47,144.0,2380.0,0.0,2524.0,144.0,214.63,358.63,0.0,87.4,87.4,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1500.61,144.0,906.92,0.0,1050.92,144.0,305.69,449.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-neighbor-shading-bldgtype-multifamily.xml,1238.88,144.0,941.51,0.0,1085.51,144.0,9.37,153.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-neighbor-shading.xml,1870.95,144.0,1307.23,0.0,1451.23,144.0,275.72,419.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-shielding-of-home.xml,1849.15,144.0,1324.44,0.0,1468.44,144.0,236.71,380.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-soil-type-sand-moisture-type-dry.xml,1526.89,144.0,1382.89,0.0,1526.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-usage-multiplier.xml,3013.64,144.0,1863.4,0.0,2007.4,144.0,726.99,870.99,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,891.06,144.0,1347.84,-986.63,505.21,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-pv-battery-garage.xml,861.45,144.0,1300.8,-986.62,458.18,144.0,259.27,403.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From e220b458d39d9a065fd3d6a8273b128ac445e8c0 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 13 Sep 2023 07:35:54 -0700 Subject: [PATCH 151/217] Add new loop config argument, update docs and tests. --- BuildResidentialHPXML/measure.rb | 23 +- BuildResidentialHPXML/measure.xml | 916 +----------------- .../tests/build_residential_hpxml_test.rb | 1 + docs/source/workflow_inputs.rst | 3 +- workflow/hpxml_inputs.json | 9 +- 5 files changed, 45 insertions(+), 907 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index d2c0861299..f817fa5af4 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1381,8 +1381,20 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setUnits('W') args << arg + geothermal_loop_configuration_choices = OpenStudio::StringVector.new + geothermal_loop_configuration_choices << 'none' + # geothermal_loop_configuration_choices << HPXML::GeothermalLoopLoopConfigurationDiagonal + # geothermal_loop_configuration_choices << HPXML::GeothermalLoopLoopConfigurationHorizontal + # geothermal_loop_configuration_choices << HPXML::GeothermalLoopLoopConfigurationOther + geothermal_loop_configuration_choices << HPXML::GeothermalLoopLoopConfigurationVertical + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_configuration', geothermal_loop_configuration_choices, true) + arg.setDisplayName('Geothermal Loop: Configuration') + arg.setDescription("Configuration of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type.") + arg.setDefaultValue('none') + args << arg + geothermal_loop_borefield_configuration_choices = OpenStudio::StringVector.new - geothermal_loop_borefield_configuration_choices << 'none' geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationRectangle # geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationZonedRectangle geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle @@ -1391,10 +1403,9 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationU geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationLopsidedU - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_borefield_configuration', geothermal_loop_borefield_configuration_choices, true) + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_borefield_configuration', geothermal_loop_borefield_configuration_choices, false) arg.setDisplayName('Geothermal Loop: Borefield Configuration') arg.setDescription("Borefield configuration of the geothermal loop. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") - arg.setDefaultValue('none') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_loop_flow', false) @@ -5070,9 +5081,9 @@ def self.set_heat_pumps(hpxml, args) end def self.set_geothermal_loop(hpxml, args) - bore_config = args[:geothermal_loop_borefield_configuration] + loop_configuration = args[:geothermal_loop_configuration] - return if bore_config == 'none' + return if loop_configuration == 'none' if args[:geothermal_loop_loop_flow].is_initialized loop_flow = args[:geothermal_loop_loop_flow].get @@ -5118,7 +5129,7 @@ def self.set_geothermal_loop(hpxml, args) end hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}", - loop_configuration: HPXML::GeothermalLoopLoopConfigurationVertical, + loop_configuration: loop_configuration, loop_flow: loop_flow, bore_config: bore_config, num_bore_holes: num_bore_holes, diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 3bcdbc49dc..b65e87274a 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 463fbb81-0818-47fa-a2ca-69bd73741ebc - 2023-09-13T03:58:28Z + a17962b7-2f85-429a-86b2-691be990c15e + 2023-09-13T14:34:53Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -2838,9 +2838,9 @@ false - geothermal_loop_borefield_configuration - Geothermal Loop: Borefield Configuration - Borefield configuration of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. + geothermal_loop_configuration + Geothermal Loop: Configuration + Configuration of the geothermal loop. Only applies to ground-to-air heat pump type. Choice true false @@ -2850,6 +2850,20 @@ none none + + vertical + vertical + + + + + geothermal_loop_borefield_configuration + Geothermal Loop: Borefield Configuration + Borefield configuration of the geothermal loop. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. + Choice + false + false + Rectangle Rectangle @@ -6958,7 +6972,7 @@ measure.rb rb script - F6157523 + EBABFC4D geometry.rb @@ -6970,895 +6984,7 @@ build_residential_hpxml_test.rb rb test - 9CC9525F - - - extra_files/base-mf.osm - osm - test - BDF47A93 - - - extra_files/base-mf.xml - xml - test - 6D95BC4C - - - extra_files/base-mf2.osm - osm - test - CCDFDE34 - - - extra_files/base-mf2.xml - xml - test - 84960610 - - - extra_files/base-mf3.osm - osm - test - 0A27EE73 - - - extra_files/base-mf3.xml - xml - test - 72720CDE - - - extra_files/base-mf4.osm - osm - test - 5C1760C8 - - - extra_files/base-mf4.xml - xml - test - 76E5214D - - - extra_files/base-sfa.osm - osm - test - BBE6909B - - - extra_files/base-sfa.xml - xml - test - C7452A0F - - - extra_files/base-sfa2.osm - osm - test - 812A9543 - - - extra_files/base-sfa2.xml - xml - test - 07A71071 - - - extra_files/base-sfa3.osm - osm - test - 9EC7323C - - - extra_files/base-sfa3.xml - xml - test - CC369D8F - - - extra_files/base-sfd.osm - osm - test - 47D393D1 - - - extra_files/base-sfd.xml - xml - test - AF7637CF - - - extra_files/base-sfd2.osm - osm - test - 75E12F0A - - - extra_files/base-sfd2.xml - xml - test - FDA8956D - - - extra_files/extra-auto-duct-locations.osm - osm - test - A29B7C19 - - - extra_files/extra-auto-duct-locations.xml - xml - test - A4219CBD - - - extra_files/extra-auto.osm - osm - test - EFB1288F - - - extra_files/extra-auto.xml - xml - test - FAE3282C - - - extra_files/extra-battery-attic.osm - osm - test - DA6D84BE - - - extra_files/extra-battery-attic.xml - xml - test - 8FD5B031 - - - extra_files/extra-battery-crawlspace.osm - osm - test - AF0E7542 - - - extra_files/extra-battery-crawlspace.xml - xml - test - 5F286DA5 - - - extra_files/extra-bills-fossil-fuel-rates.osm - osm - test - CEF715A4 - - - extra_files/extra-bills-fossil-fuel-rates.xml - xml - test - 6B37F132 - - - extra_files/extra-dhw-solar-latitude.osm - osm - test - FA7F1A9C - - - extra_files/extra-dhw-solar-latitude.xml - xml - test - 1A86D3F2 - - - extra_files/extra-ducts-attic.osm - osm - test - FC234C64 - - - extra_files/extra-ducts-attic.xml - xml - test - AF7637CF - - - extra_files/extra-ducts-crawlspace.osm - osm - test - 23D97F9B - - - extra_files/extra-ducts-crawlspace.xml - xml - test - 4BE51376 - - - extra_files/extra-emissions-fossil-fuel-factors.osm - osm - test - 42B7B327 - - - extra_files/extra-emissions-fossil-fuel-factors.xml - xml - test - A2183F17 - - - extra_files/extra-enclosure-atticroof-conditioned-eaves-gable.osm - osm - test - 63BBC334 - - - extra_files/extra-enclosure-atticroof-conditioned-eaves-gable.xml - xml - test - BEB1B364 - - - extra_files/extra-enclosure-atticroof-conditioned-eaves-hip.osm - osm - test - 285242AB - - - extra_files/extra-enclosure-atticroof-conditioned-eaves-hip.xml - xml - test - 67AC708E - - - extra_files/extra-enclosure-garage-atticroof-conditioned.osm - osm - test - CBBBC158 - - - extra_files/extra-enclosure-garage-atticroof-conditioned.xml - xml - test - B8566F88 - - - extra_files/extra-enclosure-garage-partially-protruded.osm - osm - test - E1F98086 - - - extra_files/extra-enclosure-garage-partially-protruded.xml - xml - test - 82BDF984 - - - extra_files/extra-enclosure-windows-shading.osm - osm - test - 47E4D82B - - - extra_files/extra-enclosure-windows-shading.xml - xml - test - 4A3C2E39 - - - extra_files/extra-gas-hot-tub-heater-with-zero-kwh.osm - osm - test - BCF0C1F8 - - - extra_files/extra-gas-hot-tub-heater-with-zero-kwh.xml - xml - test - 1206BDD6 - - - extra_files/extra-gas-pool-heater-with-zero-kwh.osm - osm - test - D3747BAB - - - extra_files/extra-gas-pool-heater-with-zero-kwh.xml - xml - test - 535835B9 - - - extra_files/extra-iecc-zone-different-than-epw.osm - osm - test - 21AAA46E - - - extra_files/extra-iecc-zone-different-than-epw.xml - xml - test - 567FD4FC - - - extra_files/extra-mf-ambient.osm - osm - test - 55F03E13 - - - extra_files/extra-mf-ambient.xml - xml - test - 2B2847D0 - - - extra_files/extra-mf-atticroof-flat.osm - osm - test - 08617004 - - - extra_files/extra-mf-atticroof-flat.xml - xml - test - DE26BAA9 - - - extra_files/extra-mf-atticroof-vented.osm - osm - test - C6046636 - - - extra_files/extra-mf-atticroof-vented.xml - xml - test - D0EFACCA - - - extra_files/extra-mf-eaves.osm - osm - test - EBAC7CA6 - - - extra_files/extra-mf-eaves.xml - xml - test - 5FB7AC6A - - - extra_files/extra-mf-exterior-corridor.osm - osm - test - 11D221B0 - - - extra_files/extra-mf-exterior-corridor.xml - xml - test - 6D95BC4C - - - extra_files/extra-mf-rear-units.osm - osm - test - 464868C9 - - - extra_files/extra-mf-rear-units.xml - xml - test - 6D95BC4C - - - extra_files/extra-mf-slab-left-bottom.osm - osm - test - CEE8B52A - - - extra_files/extra-mf-slab-left-bottom.xml - xml - test - 0FD99952 - - - extra_files/extra-mf-slab-left-middle.osm - osm - test - 8F399EAB - - - extra_files/extra-mf-slab-left-middle.xml - xml - test - 6D95BC4C - - - extra_files/extra-mf-slab-left-top.osm - osm - test - B5315BD6 - - - extra_files/extra-mf-slab-left-top.xml - xml - test - 6D95BC4C - - - extra_files/extra-mf-slab-middle-bottom.osm - osm - test - F012E6D3 - - - extra_files/extra-mf-slab-middle-bottom.xml - xml - test - 700DE73C - - - extra_files/extra-mf-slab-middle-middle.osm - osm - test - 3EA94443 - - - extra_files/extra-mf-slab-middle-middle.xml - xml - test - 7EB18F6F - - - extra_files/extra-mf-slab-middle-top.osm - osm - test - 408135A1 - - - extra_files/extra-mf-slab-middle-top.xml - xml - test - 49E9733B - - - extra_files/extra-mf-slab.osm - osm - test - 7A65C9BF - - - extra_files/extra-mf-slab.xml - xml - test - 0FD99952 - - - extra_files/extra-mf-unvented-crawlspace.osm - osm - test - A6963C01 - - - extra_files/extra-mf-unvented-crawlspace.xml - xml - test - C893E31B - - - extra_files/extra-mf-vented-crawlspace.osm - osm - test - 866F70C8 - - - extra_files/extra-mf-vented-crawlspace.xml - xml - test - A9EE986D - - - extra_files/extra-no-rim-joists.osm - osm - test - 34B40B35 - - - extra_files/extra-no-rim-joists.xml - xml - test - 6D38860E - - - extra_files/extra-pv-roofpitch.osm - osm - test - A39CBCA2 - - - extra_files/extra-pv-roofpitch.xml - xml - test - AF7637CF - - - extra_files/extra-seasons-building-america.osm - osm - test - B00F3FE1 - - - extra_files/extra-seasons-building-america.xml - xml - test - 980BA696 - - - extra_files/extra-second-heating-system-boiler-to-heat-pump.osm - osm - test - 695F6569 - - - extra_files/extra-second-heating-system-boiler-to-heat-pump.xml - xml - test - 7F9D3669 - - - extra_files/extra-second-heating-system-boiler-to-heating-system.osm - osm - test - 46C34354 - - - extra_files/extra-second-heating-system-boiler-to-heating-system.xml - xml - test - A02D60E3 - - - extra_files/extra-second-heating-system-fireplace-to-heat-pump.osm - osm - test - E5CDB6BD - - - extra_files/extra-second-heating-system-fireplace-to-heat-pump.xml - xml - test - 24709B1D - - - extra_files/extra-second-heating-system-fireplace-to-heating-system.osm - osm - test - CCAA2160 - - - extra_files/extra-second-heating-system-fireplace-to-heating-system.xml - xml - test - 6EB553C1 - - - extra_files/extra-second-heating-system-portable-heater-to-heat-pump.osm - osm - test - 58410F1A - - - extra_files/extra-second-heating-system-portable-heater-to-heat-pump.xml - xml - test - CFBFFC55 - - - extra_files/extra-second-heating-system-portable-heater-to-heating-system.osm - osm - test - 8479DCA9 - - - extra_files/extra-second-heating-system-portable-heater-to-heating-system.xml - xml - test - EADD1D72 - - - extra_files/extra-second-refrigerator.osm - osm - test - 7BCB2043 - - - extra_files/extra-second-refrigerator.xml - xml - test - AF7637CF - - - extra_files/extra-sfa-ambient.osm - osm - test - 3C4633DB - - - extra_files/extra-sfa-ambient.xml - xml - test - 8F1A060F - - - extra_files/extra-sfa-atticroof-conditioned-eaves-gable.osm - osm - test - 9C8CA817 - - - extra_files/extra-sfa-atticroof-conditioned-eaves-gable.xml - xml - test - BCB40EC5 - - - extra_files/extra-sfa-atticroof-conditioned-eaves-hip.osm - osm - test - A188583E - - - extra_files/extra-sfa-atticroof-conditioned-eaves-hip.xml - xml - test - 631B6480 - - - extra_files/extra-sfa-atticroof-flat.osm - osm - test - 4B5718E2 - - - extra_files/extra-sfa-atticroof-flat.xml - xml - test - C0233403 - - - extra_files/extra-sfa-conditioned-crawlspace.osm - osm - test - FA6A2B36 - - - extra_files/extra-sfa-conditioned-crawlspace.xml - xml - test - AF6C32DC - - - extra_files/extra-sfa-exterior-corridor.osm - osm - test - 888F0720 - - - extra_files/extra-sfa-exterior-corridor.xml - xml - test - C7452A0F - - - extra_files/extra-sfa-rear-units.osm - osm - test - 0A7274CE - - - extra_files/extra-sfa-rear-units.xml - xml - test - C7452A0F - - - extra_files/extra-sfa-slab-middle.osm - osm - test - CA5F3E82 - - - extra_files/extra-sfa-slab-middle.xml - xml - test - D59398EB - - - extra_files/extra-sfa-slab-right.osm - osm - test - EDF44492 - - - extra_files/extra-sfa-slab-right.xml - xml - test - D59398EB - - - extra_files/extra-sfa-slab.osm - osm - test - EC14EE94 - - - extra_files/extra-sfa-slab.xml - xml - test - 8469DE44 - - - extra_files/extra-sfa-unconditioned-basement-middle.osm - osm - test - 0211E2FF - - - extra_files/extra-sfa-unconditioned-basement-middle.xml - xml - test - B88DF8AE - - - extra_files/extra-sfa-unconditioned-basement-right.osm - osm - test - 8310F534 - - - extra_files/extra-sfa-unconditioned-basement-right.xml - xml - test - B88DF8AE - - - extra_files/extra-sfa-unconditioned-basement.osm - osm - test - 418E17DA - - - extra_files/extra-sfa-unconditioned-basement.xml - xml - test - 0BBCB101 - - - extra_files/extra-sfa-unvented-crawlspace-middle.osm - osm - test - 45E97964 - - - extra_files/extra-sfa-unvented-crawlspace-middle.xml - xml - test - A415CA23 - - - extra_files/extra-sfa-unvented-crawlspace-right.osm - osm - test - FF4C2467 - - - extra_files/extra-sfa-unvented-crawlspace-right.xml - xml - test - A415CA23 - - - extra_files/extra-sfa-unvented-crawlspace.osm - osm - test - 98A4F99E - - - extra_files/extra-sfa-unvented-crawlspace.xml - xml - test - 9E073403 - - - extra_files/extra-sfa-vented-crawlspace-middle.osm - osm - test - F27CB0FC - - - extra_files/extra-sfa-vented-crawlspace-middle.xml - xml - test - 218B3B7D - - - extra_files/extra-sfa-vented-crawlspace-right.osm - osm - test - 1FB99121 - - - extra_files/extra-sfa-vented-crawlspace-right.xml - xml - test - 218B3B7D - - - extra_files/extra-sfa-vented-crawlspace.osm - osm - test - D9AB319F - - - extra_files/extra-sfa-vented-crawlspace.xml - xml - test - E528E701 - - - extra_files/extra-state-code-different-than-epw.osm - osm - test - F5E9C451 - - - extra_files/extra-state-code-different-than-epw.xml - xml - test - 2FF54CA2 - - - extra_files/extra-time-zone-different-than-epw.osm - osm - test - 7AF61D21 - - - extra_files/extra-time-zone-different-than-epw.xml - xml - test - 4535828E - - - extra_files/extra-water-heater-attic.osm - osm - test - 032212B3 - - - extra_files/extra-water-heater-attic.xml - xml - test - 70E565C2 - - - extra_files/extra-water-heater-crawlspace.osm - osm - test - 3503B5C0 - - - extra_files/extra-water-heater-crawlspace.xml - xml - test - 3BB932A2 + 41258568 diff --git a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb index 1cd627457c..a3632a934b 100644 --- a/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +++ b/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb @@ -462,6 +462,7 @@ def _set_measure_argument_values(hpxml_file, args) args['heat_pump_backup_fuel'] = HPXML::FuelTypeElectricity args['heat_pump_backup_heating_efficiency'] = 1 args['heat_pump_backup_heating_capacity'] = 36000.0 + args['geothermal_loop_configuration'] = 'none' args['hvac_control_heating_weekday_setpoint'] = 68 args['hvac_control_heating_weekend_setpoint'] = 68 args['hvac_control_cooling_weekday_setpoint'] = 78 diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index a6b7e8f272..3eb5a07b89 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2079,7 +2079,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ Element Type Units Constraints Required Default Notes ======================================== ================ =========== =============== ======== ============== =============================================== ``SystemIdentifier`` id Yes Unique identifier - ``LoopConfiguration`` string See [#]_ Yes + ``LoopConfiguration`` string vertical Yes ``LoopFlow`` double gal/min > 0 No autosized [#]_ Water flow rate through the geothermal loop ``BoreholesOrTrenches/Count`` integer > 0 [#]_ No autosized [#]_ ``BoreholesOrTrenches/Length`` double ft See [#]_ No autosized [#]_ Length (i.e., average depth) of each borehole @@ -2092,7 +2092,6 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ``extension/BorefieldConfiguration`` string See [#]_ No Rectangle ======================================== ================ =========== =============== ======== ============== =============================================== - .. [#] LoopConfiguration must be "vertical". .. [#] LoopFlow autosized per TODO. .. [#] | If extension/BorefieldConfiguration provided, a valid BoreholesOrTrenches/Count must also be provided: | - **Rectangle**: 1, 2, 3, 4, 5, 6, 7, 8, 9, or 10 diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 3aa7f1e1fa..cf5aa5f1e3 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -105,7 +105,7 @@ "heat_pump_backup_type": "none", "heat_pump_backup_fuel": "electricity", "heat_pump_backup_heating_efficiency": 0, - "geothermal_loop_borefield_configuration": "none", + "geothermal_loop_configuration": "none", "heating_system_2_type": "none", "heating_system_2_fuel": "electricity", "heating_system_2_heating_efficiency": 0, @@ -474,7 +474,7 @@ "heat_pump_backup_type": "none", "heat_pump_backup_fuel": "electricity", "heat_pump_backup_heating_efficiency": 0, - "geothermal_loop_borefield_configuration": "none", + "geothermal_loop_configuration": "none", "heating_system_2_type": "none", "heating_system_2_fuel": "electricity", "heating_system_2_heating_efficiency": 0, @@ -2392,6 +2392,8 @@ }, "sample_files/base-hvac-geothermal-loop.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_configuration": "vertical", + "geothermal_loop_borefield_configuration": "Lopsided U", "geothermal_loop_loop_flow": 10.0, "geothermal_loop_boreholes_count": 9, "geothermal_loop_boreholes_length": 314.961, @@ -2400,8 +2402,7 @@ "geothermal_loop_grout_type": "standard", "geothermal_loop_pipe_type": "standard", "geothermal_loop_pipe_diameter": "1\" pipe", - "geothermal_loop_pipe_shank_spacing": 2.5, - "geothermal_loop_borefield_configuration": "Lopsided U" + "geothermal_loop_pipe_shank_spacing": 2.5 }, "sample_files/base-hvac-ground-to-air-heat-pump.xml": { "parent_hpxml": "sample_files/base.xml", From 339aa359268f632846e763df56be798c94afe1ee Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 13 Sep 2023 08:36:00 -0700 Subject: [PATCH 152/217] Updates for soil and moisture type arguments, docs, etc. --- BuildResidentialHPXML/measure.rb | 54 ++++------ BuildResidentialHPXML/measure.xml | 130 ++++++++++++++--------- HPXMLtoOpenStudio/measure.xml | 6 +- HPXMLtoOpenStudio/resources/constants.rb | 16 +++ docs/source/workflow_inputs.rst | 11 +- workflow/hpxml_inputs.json | 3 +- 6 files changed, 126 insertions(+), 94 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index f817fa5af4..0e151d867f 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -129,42 +129,30 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDescription('Presence of nearby buildings, trees, obstructions for infiltration model. If not provided, the OS-HPXML default is used.') args << arg + site_soil_and_moisture_type_choices = OpenStudio::StringVector.new + Constants.SoilTypes.each do |soil_type| + Constants.MoistureTypes.each do |moisture_type| + site_soil_and_moisture_type_choices << "#{soil_type}, #{moisture_type}" + end + end + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('site_soil_and_moisture_type', site_soil_and_moisture_type_choices, false) + arg.setDisplayName('Site: Soil and Moisture Type') + arg.setDescription('Type of soil and moisture. This is used to inform ground conductivity and diffusivity. If not provided, the OS-HPXML default is used.') + args << arg + arg = OpenStudio::Measure::OSArgument.makeDoubleArgument('site_ground_conductivity', false) arg.setDisplayName('Site: Ground Conductivity') - arg.setDescription('Conductivity of the ground soil. If not provided, the OS-HPXML default is used.') + arg.setDescription('Conductivity of the ground soil. If provided, overrides the previous site and moisture type input.') arg.setUnits('Btu/hr-ft-F') args << arg arg = OpenStudio::Measure::OSArgument.makeDoubleArgument('site_ground_diffusivity', false) arg.setDisplayName('Site: Ground Diffusivity') - arg.setDescription('Diffusivity of the ground soil. If not provided, the OS-HPXML default is used.') + arg.setDescription('Diffusivity of the ground soil. If provided, overrides the previous site and moisture type input.') arg.setUnits('ft^2/hr') args << arg - site_soil_type_choices = OpenStudio::StringVector.new - site_soil_type_choices << HPXML::SiteSoilTypeSand - site_soil_type_choices << HPXML::SiteSoilTypeSilt - site_soil_type_choices << HPXML::SiteSoilTypeClay - site_soil_type_choices << HPXML::SiteSoilTypeLoam - site_soil_type_choices << HPXML::SiteSoilTypeGravel - # site_soil_type_choices << HPXML::SiteSoilTypeOther - site_soil_type_choices << HPXML::SiteSoilTypeUnknown - - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('site_soil_type', site_soil_type_choices, false) - arg.setDisplayName('Site: Soil Type') - arg.setDescription('Type of ground soil. If not provided, the OS-HPXML default is used.') - args << arg - - site_moisture_type_choices = OpenStudio::StringVector.new - site_moisture_type_choices << HPXML::SiteSoilMoistureTypeWet - site_moisture_type_choices << HPXML::SiteSoilMoistureTypeDry - site_moisture_type_choices << HPXML::SiteSoilMoistureTypeMixed - - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('site_moisture_type', site_moisture_type_choices, false) - arg.setDisplayName('Site: Soil Moisture Type') - arg.setDescription('Moisture level of the ground soil. If not provided, the OS-HPXML default is used.') - args << arg - arg = OpenStudio::Measure::OSArgument.makeStringArgument('site_zip_code', false) arg.setDisplayName('Site: Zip Code') arg.setDescription('Zip code of the home address.') @@ -4006,12 +3994,10 @@ def self.set_site(hpxml, args) hpxml.site.ground_diffusivity = args[:site_ground_diffusivity].get end - if args[:site_soil_type].is_initialized - hpxml.site.soil_type = args[:site_soil_type].get - end - - if args[:site_moisture_type].is_initialized - hpxml.site.moisture_type = args[:site_moisture_type].get + if args[:site_soil_and_moisture_type].is_initialized + soil_type, moisture_type = args[:site_soil_and_moisture_type].get.split(', ') + hpxml.site.soil_type = soil_type + hpxml.site.moisture_type = moisture_type end if args[:site_type].is_initialized @@ -5085,6 +5071,10 @@ def self.set_geothermal_loop(hpxml, args) return if loop_configuration == 'none' + if args[:geothermal_loop_borefield_configuration].is_initialized + bore_config = args[:geothermal_loop_borefield_configuration].get + end + if args[:geothermal_loop_loop_flow].is_initialized loop_flow = args[:geothermal_loop_loop_flow].get end diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index b65e87274a..b01ec57926 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - a17962b7-2f85-429a-86b2-691be990c15e - 2023-09-13T14:34:53Z + 94f9758b-30f4-4891-a976-54b23f661d58 + 2023-09-13T15:34:20Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -186,79 +186,105 @@ - site_ground_conductivity - Site: Ground Conductivity - Conductivity of the ground soil. If not provided, the OS-HPXML default is used. - Double - Btu/hr-ft-F - false - false - - - site_ground_diffusivity - Site: Ground Diffusivity - Diffusivity of the ground soil. If not provided, the OS-HPXML default is used. - Double - ft^2/hr - false - false - - - site_soil_type - Site: Soil Type - Type of ground soil. If not provided, the OS-HPXML default is used. + site_soil_and_moisture_type + Site: Soil and Moisture Type + Type of soil and moisture. This is used to inform ground conductivity and diffusivity. If not provided, the OS-HPXML default is used. Choice false false - sand - sand + clay, dry + clay, dry - silt - silt + clay, mixed + clay, mixed - clay - clay + clay, wet + clay, wet - loam - loam + gravel, dry + gravel, dry - gravel - gravel + gravel, mixed + gravel, mixed - unknown - unknown + gravel, wet + gravel, wet - - - - site_moisture_type - Site: Soil Moisture Type - Moisture level of the ground soil. If not provided, the OS-HPXML default is used. - Choice - false - false - - wet - wet + loam, dry + loam, dry - dry - dry + loam, mixed + loam, mixed - mixed - mixed + loam, wet + loam, wet + + + sand, dry + sand, dry + + + sand, mixed + sand, mixed + + + sand, wet + sand, wet + + + silt, dry + silt, dry + + + silt, mixed + silt, mixed + + + silt, wet + silt, wet + + + unknown, dry + unknown, dry + + + unknown, mixed + unknown, mixed + + + unknown, wet + unknown, wet + + site_ground_conductivity + Site: Ground Conductivity + Conductivity of the ground soil. If provided, overrides the previous site and moisture type input. + Double + Btu/hr-ft-F + false + false + + + site_ground_diffusivity + Site: Ground Diffusivity + Diffusivity of the ground soil. If provided, overrides the previous site and moisture type input. + Double + ft^2/hr + false + false + site_zip_code Site: Zip Code @@ -6972,7 +6998,7 @@ measure.rb rb script - EBABFC4D + 7CB92CC4 geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 1926c7341b..e655585a1a 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 8160a22f-34bf-4736-b725-6901db46a044 - 2023-09-13T04:06:38Z + b0f41555-3705-49fa-914f-db02de748bab + 2023-09-13T15:17:18Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -148,7 +148,7 @@ constants.rb rb resource - D202A548 + 0AC21910 constructions.rb diff --git a/HPXMLtoOpenStudio/resources/constants.rb b/HPXMLtoOpenStudio/resources/constants.rb index 5d65f66905..27b2765fe7 100644 --- a/HPXMLtoOpenStudio/resources/constants.rb +++ b/HPXMLtoOpenStudio/resources/constants.rb @@ -90,6 +90,12 @@ def self.IsDuctLoadForReport return __method__.to_s end + def self.MoistureTypes + return [HPXML::SiteSoilMoistureTypeDry, + HPXML::SiteSoilMoistureTypeMixed, + HPXML::SiteSoilMoistureTypeWet] + end + def self.ObjectNameAirflow return 'airflow' end @@ -466,6 +472,16 @@ def self.ScheduleTypeLimitsTemperature return 'Temperature' end + def self.SoilTypes + return [HPXML::SiteSoilTypeClay, + HPXML::SiteSoilTypeGravel, + HPXML::SiteSoilTypeLoam, + # HPXML::SiteSoilTypeOther, + HPXML::SiteSoilTypeSand, + HPXML::SiteSoilTypeSilt, + HPXML::SiteSoilTypeUnknown] + end + def self.StateCodesMap return { 'AK' => 'Alaska', 'AL' => 'Alabama', diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 3eb5a07b89..e67414ae92 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -549,15 +549,16 @@ Soil information is entered in ``Soil``. ================================================================== ================ =========== =============== ======== ======== ============================================================ Element Type Units Constraints Required Default Notes ================================================================== ================ =========== =============== ======== ======== ============================================================ - ``SoilType`` or ``Conductivity`` or ``extension/Diffusivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No unknown Soil type or themal conductivity [#]_ or diffusivity [#]_ - ``MoistureType`` or ``Conductivity`` or ``extension/Diffusivity`` string or double ft2/hr See [#]_ or > 0 No mixed Moisture type or conductivity or diffusivity [#]_ + ``Conductivity`` or ``SoilType``/``MoistureType`` string or double Btu/hr-ft-F See [#]_ or > 0 No unknown Themal conductivity [#]_ or soil/moisture type + ``extension/Diffusivity`` or ``SoilType``/``MoistureType`` string or double ft2/hr See or > 0 No mixed Diffusivity [#]_ or soil/moisture type ================================================================== ================ =========== =============== ======== ======== ============================================================ - .. [#] SoilType choices are "sand", "silt", "clay", "loam", "gravel", or "unknown". + .. [#] | SoilType choices are "sand", "silt", "clay", "loam", "gravel", or "unknown". + | MoistureType choices are "dry", "wet", or "mixed". .. [#] Conductivity used for foundation heat transfer and ground source heat pumps. .. [#] Diffusivity used for ground source heat pumps. - .. [#] MoistureType choices are "dry", "wet", or "mixed". - .. [#] If Conductivity and extension/Diffusivity not provided, defaults based on SoilType and MoistureType as follows: + +If Conductivity and extension/Diffusivity not provided, defaults based on SoilType and MoistureType as follows: ============ ============== ========================== ============= SoilType MoistureType Conductivity [Btu/hr-ft-F] extension/Diffusivity [ft2/hr] diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index cf5aa5f1e3..ca0309e053 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2432,8 +2432,7 @@ }, "sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_soil_type": "sand", - "site_moisture_type": "dry" + "site_soil_and_moisture_type": "sand, dry" }, "sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", From 1c822ef8126d47b8e2e781b67bfb1ecd6a8dbdc9 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 20 Sep 2023 15:49:47 -0700 Subject: [PATCH 153/217] Update min and max error, test, and docs. --- HPXMLtoOpenStudio/measure.xml | 8 ++++---- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 6 +++--- HPXMLtoOpenStudio/tests/test_validation.rb | 4 ++-- docs/source/workflow_inputs.rst | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index e655585a1a..1627ab0930 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - b0f41555-3705-49fa-914f-db02de748bab - 2023-09-13T15:17:18Z + 30bf1bd9-bd3a-4eec-a1aa-6f836ef69eef + 2023-09-20T22:49:23Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -334,7 +334,7 @@ hvac_sizing.rb rb resource - 4E9928A2 + A5E9F28C lighting.rb @@ -622,7 +622,7 @@ test_validation.rb rb test - F3A9D834 + BC6B1DD4 test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index c710f6a2a0..480b0cabd5 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1903,10 +1903,10 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling, clima num_bore_holes = [1, (UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') + 0.5).floor].max end - min_bore_depth = UnitConversions.convert(24.0, 'm', 'ft') # based on g-function library - # In NY that's the depth that requires a mining permit, which has been a barrier for Dandelion Energy with installing GSHPs. + min_bore_depth = Float(UnitConversions.convert(24.0, 'm', 'ft').round) # based on g-function library + # In NY the following is the depth that requires a mining permit, which has been a barrier for Dandelion Energy with installing GSHPs. # Sounds like people are pushing ever deeper but for now we can apply this limit and add a note about where it came from. - max_bore_depth = UnitConversions.convert(152.0, 'm', 'ft') + max_bore_depth = 500.0 # ft bore_depth = geothermal_loop.bore_length if bore_depth.nil? diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 85d4d1b8cc..48247aacc8 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -851,8 +851,8 @@ def test_ruby_error_messages 'hvac-distribution-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-cooling' => ["Multiple cooling systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], - 'hvac-gshp-invalid-bore-depth' => ['Bore depth (1260.0) not between 78.74 and 498.688 ft'], - 'hvac-gshp-invalid-num-bore-holes' => ["Number of bore holes (5) with borefield configuration 'Lopsided U' not supported"], + 'hvac-gshp-invalid-bore-depth' => ['Bore depth (1260.0) not between 79.0 and 500.0 ft.'], + 'hvac-gshp-invalid-num-bore-holes' => ["Number of bore holes (5) with borefield configuration 'Lopsided U' not supported."], 'hvac-inconsistent-fan-powers' => ["Fan powers for heating system 'HeatingSystem1' and cooling system 'CoolingSystem1' are attached to a single distribution system and therefore must be the same."], 'hvac-invalid-distribution-system-type' => ["Incorrect HVAC distribution system type for HVAC type: 'Furnace'. Should be one of: ["], 'hvac-shared-boiler-multiple' => ['More than one shared heating system found.'], diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index e67414ae92..e11a07b8de 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2102,7 +2102,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ | - **U**: 7, 9, or 10 | - **Lopsided U**: 6, 7, 8, 9, or 10 .. [#] BoreholesOrTrenches/Count autosized per TODO. - .. [#] | BoreholesOrTrenches/Length must be between 79 ft and 500 ft. + .. [#] | BoreholesOrTrenches/Length must be between 79.0 ft and 500.0 ft. | To permit interpolation, each borefield configuration in the library has g-function values corresponding to heights of 24, 48, 96, 192, and 384 m. | BoreholesOrTrenches/Length therefore has a minimum of 24 m (or 79 ft). | BoreholesOrTrenches/Length, on the other hand, has a maximum of 500 ft; bore depths exceeding this value are unlikely to be used in residential applications. From 7a57f41aced6e40f4c79c405ab9a67d7339a8b5f Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 20 Sep 2023 16:57:39 -0700 Subject: [PATCH 154/217] Refactor methods around g function jsons, etc. --- HPXMLtoOpenStudio/measure.xml | 10 +++--- HPXMLtoOpenStudio/resources/hvac.rb | 39 ++++++++++++++++++---- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 23 ++++--------- HPXMLtoOpenStudio/tests/test_hvac.rb | 26 +++++++++------ 4 files changed, 59 insertions(+), 39 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 1627ab0930..845d6ed222 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 30bf1bd9-bd3a-4eec-a1aa-6f836ef69eef - 2023-09-20T22:49:23Z + 4c36dd4a-e14b-45f7-9020-a309164d58b5 + 2023-09-20T23:55:50Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -328,13 +328,13 @@ hvac.rb rb resource - ED419146 + CF8C283E hvac_sizing.rb rb resource - A5E9F28C + 46DA5A07 lighting.rb @@ -574,7 +574,7 @@ test_hvac.rb rb test - 0D6E392F + 88726BBF test_hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index b34b493276..0772674f63 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -3401,16 +3401,41 @@ def self.set_gshp_assumptions(heat_pump, weather) end end - def self.valid_borefield_configs - valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => { 'num_boreholes' => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 'filename' => 'rectangle_5m_v1.0.json' }, - HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => { 'num_boreholes' => [8, 10], 'filename' => 'Open_configurations_5m_v1.0.json' }, - HPXML::GeothermalLoopBorefieldConfigurationC => { 'num_boreholes' => [7, 9], 'filename' => 'C_configurations_5m_v1.0.json' }, - HPXML::GeothermalLoopBorefieldConfigurationL => { 'num_boreholes' => [4, 5, 6, 7, 8, 9, 10], 'filename' => 'L_configurations_5m_v1.0.json' }, - HPXML::GeothermalLoopBorefieldConfigurationU => { 'num_boreholes' => [7, 9, 10], 'filename' => 'U_configurations_5m_v1.0.json' }, - HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => { 'num_boreholes' => [6, 7, 8, 9, 10], 'filename' => 'LopU_configurations_5m_v1.0.json' } } + def self.valid_bore_configs + valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => 'rectangle_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => 'Open_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationC => 'C_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationL => 'L_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationU => 'U_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => 'LopU_configurations_5m_v1.0.json' } return valid_configs end + def self.get_g_functions_json(g_functions_filename) + require 'json' + + g_functions_filepath = File.join(File.dirname(__FILE__), 'g_functions', g_functions_filename) + g_functions_json = JSON.parse(File.read(g_functions_filepath), symbolize_names: true) + return g_functions_json + end + + def self.get_valid_num_bores(g_functions_json) + valid_num_bores = [] + g_functions_json.each do |_key_1, values_1| + if values_1.keys.include?(:bore_locations) + valid_num_bores << values_1[:bore_locations].size + else + values_1.each do |_key_2, values_2| + if values_2.keys.include?(:bore_locations) + valid_num_bores << values_2[:bore_locations] + end + end + end + end + + return valid_num_bores + end + def self.calc_mshp_hspf(cop_47, c_d, capacity_ratio, cfm_tons, fan_power_rated, heat_eir_ft_spec, heat_cap_ft_spec) n_max = (cop_47.length - 1.0) #-3 # Don't use max speed; FIXME: this is different than calc_mshp_seer? n_min = 0 diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 480b0cabd5..4d4617f077 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1938,14 +1938,16 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling, clima bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle end - valid_configs = HVAC.valid_borefield_configs - valid_num_bores = valid_configs[bore_config]['num_boreholes'] + valid_configs = HVAC.valid_bore_configs + g_functions_filename = valid_configs[bore_config] + g_functions_json = HVAC.get_g_functions_json(g_functions_filename) + valid_num_bores = HVAC.get_valid_num_bores(g_functions_json) + unless valid_num_bores.include? num_bore_holes fail "Number of bore holes (#{num_bore_holes}) with borefield configuration '#{bore_config}' not supported." end - g_functions_filename = valid_configs[bore_config]['filename'] - lntts, gfnc_coeff = gshp_gfnc_coeff(bore_config, g_functions_filename, num_bore_holes, bore_spacing, bore_depth, bore_diameter) + lntts, gfnc_coeff = gshp_gfnc_coeff(bore_config, g_functions_json, num_bore_holes, bore_spacing, bore_depth, bore_diameter) hvac_sizing_values.GSHP_Loop_flow = loop_flow hvac_sizing_values.GSHP_Bore_Depth = bore_depth @@ -2672,12 +2674,7 @@ def self.gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, bore_dia return nom_length_heat, nom_length_cool end - def self.gshp_gfnc_coeff(bore_config, g_functions_filename, num_bore_holes, bore_spacing, bore_depth, bore_diameter) - require 'json' - - g_functions_filepath = File.join(File.dirname(__FILE__), 'g_functions', g_functions_filename) - g_functions_json = JSON.parse(File.read(g_functions_filepath), symbolize_names: true) - + def self.gshp_gfnc_coeff(bore_config, g_functions_json, num_bore_holes, bore_spacing, bore_depth, bore_diameter) actuals = { 'b' => UnitConversions.convert(bore_spacing, 'ft', 'm'), 'h' => UnitConversions.convert(bore_depth, 'ft', 'm'), 'rb' => UnitConversions.convert(bore_diameter / 2.0, 'in', 'm') } @@ -2729,12 +2726,8 @@ def self.gshp_gfnc_coeff(bore_config, g_functions_filename, num_bore_holes, bore correction_factor = Math.log(rb_actual_over_rb) g_functions = g_functions.map { |v| v - correction_factor } - fail "Found different logtimes for '#{bore_config}' with H=#{h1} and H=#{h2}." if logtimes[0] != logtimes[1] - return logtimes[0], g_functions end - - fail "Could not find gfnc_coeff from '#{g_functions_filename}'." end def self.get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb) @@ -2763,8 +2756,6 @@ def self.get_g_functions(g_functions_json, bore_config, num_bore_holes, b_h_rb) end end end - - fail "Could not find g-values for '#{bore_config}' with '#{num_bore_holes}' boreholes." end def self.calculate_average_r_value(surfaces) diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index f159fed1a1..489f7a0dfc 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -746,9 +746,11 @@ def test_g_function_library_linear_interpolation_example bore_spacing = UnitConversions.convert(7.0, 'm', 'ft') bore_depth = UnitConversions.convert(150.0, 'm', 'ft') bore_diameter = UnitConversions.convert(UnitConversions.convert(80.0, 'mm', 'm'), 'm', 'in') * 2 - valid_configs = HVAC.valid_borefield_configs - g_functions_filename = valid_configs[bore_config]['filename'] - actual_lntts, actual_gfnc_coeff = HVACSizing.gshp_gfnc_coeff(bore_config, g_functions_filename, num_bore_holes, bore_spacing, bore_depth, bore_diameter) + valid_bore_configs = HVAC.valid_bore_configs + g_functions_filename = valid_bore_configs[bore_config] + g_functions_json = HVAC.get_g_functions_json(g_functions_filename) + + actual_lntts, actual_gfnc_coeff = HVACSizing.gshp_gfnc_coeff(bore_config, g_functions_json, num_bore_holes, bore_spacing, bore_depth, bore_diameter) expected_lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] expected_gfnc_coeff = [2.619, 2.967, 3.279, 3.700, 4.190, 5.107, 6.680, 8.537, 11.991, 14.633, 16.767, 20.083, 22.593, 28.734, 34.345, 35.927, 37.342, 38.715, 39.768, 40.664, 41.426, 42.056, 42.524, 43.054, 43.416, 43.594, 43.885] @@ -762,14 +764,16 @@ def test_g_function_library_linear_interpolation_example end def test_all_g_function_configs_exist - require 'json' - - valid_configs = HVAC.valid_borefield_configs - valid_configs.each do |bore_config, num_boreholes_and_filename| - valid_num_bores = num_boreholes_and_filename['num_boreholes'] - g_functions_filename = num_boreholes_and_filename['filename'] - g_functions_filepath = File.join(File.dirname(__FILE__), '../resources/g_functions', g_functions_filename) - g_functions_json = JSON.parse(File.read(g_functions_filepath), symbolize_names: true) + valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], + HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => [8, 10], + HPXML::GeothermalLoopBorefieldConfigurationC => [7, 9], + HPXML::GeothermalLoopBorefieldConfigurationL => [4, 5, 6, 7, 8, 9, 10], + HPXML::GeothermalLoopBorefieldConfigurationU => [7, 9, 10], + HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => [6, 7, 8, 9, 10] } + + valid_configs.each do |bore_config, valid_num_bores| + g_functions_filename = HVAC.valid_bore_configs[bore_config] + g_functions_json = HVAC.get_g_functions_json(g_functions_filename) valid_num_bores.each do |num_bore_holes| HVACSizing.get_g_functions(g_functions_json, bore_config, num_bore_holes, '5._192._0.08') # b_h_rb is arbitrary end From 6304889e3113c6091531bfb20f15ce962b2d5f1d Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 21 Sep 2023 07:49:36 -0700 Subject: [PATCH 155/217] Missed a size method. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/hvac.rb | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 845d6ed222..bf0a70fc29 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 4c36dd4a-e14b-45f7-9020-a309164d58b5 - 2023-09-20T23:55:50Z + 9ac7a4ae-46bc-43d6-bc09-73ab47d4037a + 2023-09-21T14:39:47Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -328,7 +328,7 @@ hvac.rb rb resource - CF8C283E + 67C37A53 hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index 0772674f63..d218cc907a 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -3427,7 +3427,7 @@ def self.get_valid_num_bores(g_functions_json) else values_1.each do |_key_2, values_2| if values_2.keys.include?(:bore_locations) - valid_num_bores << values_2[:bore_locations] + valid_num_bores << values_2[:bore_locations].size end end end From 17388c9e4faf8c36f95a1642acf99dac4f804502 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 22 Sep 2023 00:13:52 +0000 Subject: [PATCH 156/217] Latest results. --- workflow/tests/base_results/results.csv | 100 +++++++++--------- workflow/tests/base_results/results_bills.csv | 62 +++++------ 2 files changed, 81 insertions(+), 81 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 1fb2a6e928..317ac0f39f 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -1,9 +1,9 @@ HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: 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: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),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) base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,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,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,22.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-portable.xml,34.583,34.583,33.262,33.262,1.321,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.604,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,1.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,1.18,0.0,30.514,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.1,2769.1,9.476,14.236,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.307,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.344,9.575,1.88,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-ief-whole-home.xml,34.611,34.611,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.825,1.883,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.655,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,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.15,0.0,30.49,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2767.0,2767.0,9.495,14.236,0.0,1.77,1.652,0.0,0.0,0.392,5.039,-4.911,0.0,0.0,0.0,1.312,-0.373,1.058,0.077,0.399,0.0,0.032,-4.78,-0.772,0.0,0.548,-0.009,0.0,0.0,0.206,1.933,17.103,0.0,0.0,0.0,1.819,-0.368,-0.332,-1.9,-0.091,0.0,0.344,9.532,1.875,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-multiple.xml,34.574,34.574,33.184,33.184,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.813,1.88,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.541,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,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.452,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.3,2769.3,9.552,14.236,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.035,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.344,9.512,1.873,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier.xml,34.548,34.548,33.243,33.243,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.818,1.882,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.593,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.174,0.0,30.467,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.0,2769.0,9.548,14.236,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.344,9.498,1.87,1354.8,997.6,9989.1,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier-ief-portable.xml,34.584,34.584,33.264,33.264,1.32,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.826,1.884,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.604,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,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.179,0.0,30.519,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.4,2769.4,9.475,14.238,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.306,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.349,9.574,1.88,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier-ief-whole-home.xml,34.612,34.612,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.826,1.884,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.654,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,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.152,0.0,30.496,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2769.1,2769.1,9.495,14.238,0.0,1.768,1.651,0.0,0.0,0.392,5.039,-4.907,0.0,0.0,0.0,1.309,-0.375,1.058,0.077,0.398,0.0,0.032,-4.776,-0.771,0.0,0.546,-0.01,0.0,0.0,0.206,1.934,17.107,0.0,0.0,0.0,1.817,-0.37,-0.332,-1.902,-0.091,0.0,0.349,9.535,1.876,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier-multiple.xml,34.576,34.576,33.186,33.186,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.814,1.881,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.541,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,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.457,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.5,2769.5,9.551,14.238,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.034,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.349,9.512,1.873,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier.xml,34.549,34.549,33.244,33.244,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.819,1.882,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.593,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.174,0.0,30.472,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.3,2769.3,9.547,14.238,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.349,9.498,1.87,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.167,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,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,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,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,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -15,7 +15,7 @@ base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0, base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,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,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 base-atticroof-conditioned.xml,63.998,63.998,40.48,40.48,23.519,0.0,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,4.716,0.934,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,0.0,23.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.0,0.0,22.009,0.0,15.57,9.18,0.614,0.0,0.0,0.0,0.0,2372.9,3431.1,3431.1,22.556,17.978,4.552,1.164,5.544,0.518,7.652,0.634,15.396,-16.987,0.0,0.0,0.0,8.521,-0.079,7.082,0.0,0.73,0.0,0.283,-10.23,-3.183,0.006,0.021,-0.566,-0.053,2.688,-0.03,-3.03,17.676,0.0,0.0,0.0,-6.349,-0.073,-1.691,-4.146,-0.166,0.0,0.089,8.934,2.568,1354.8,997.6,11399.6,2521.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31467.0,777.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,37.385,37.385,33.168,33.168,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.236,1.963,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,0.0,4.217,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.893,0.0,31.745,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3190.7,3190.7,13.54,17.969,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.366,9.113,1.789,1354.8,997.6,9989.0,2461.3,0.0,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,22162.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-atticroof-radiant-barrier.xml,37.386,37.386,33.169,33.169,4.216,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.237,1.963,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,0.0,4.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,3.893,0.0,31.75,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3191.0,3191.0,13.538,17.973,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.371,9.113,1.789,1354.8,997.6,9989.0,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,25731.0,1408.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,22171.0,75.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,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,0.0,22.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,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.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,30483.0,4824.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.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,0.0,22.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,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-battery-scheduled.xml,60.483,60.483,37.652,37.652,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.703,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.482,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -48,7 +48,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,28.182,28.182,28.182,28.182,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.302,0.0,0.0,2.028,2.898,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1733.3,1866.6,1866.6,3.454,7.017,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,28.166,28.166,28.166,28.166,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.303,0.0,0.0,2.012,2.897,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1733.3,1861.5,1861.5,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,1354.8,997.6,11399.6,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,3156.5,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 @@ -61,7 +61,7 @@ base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0, base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,1375.7,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,1377.1,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.752,37.752,37.752,37.752,0.0,0.0,0.0,0.0,0.0,0.0,5.437,0.373,0.0,0.0,2.893,1.088,6.685,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.902,0.0,13.361,9.232,0.614,2.936,0.0,0.0,0.0,3249.1,2245.2,3249.1,21.06,15.111,0.0,3.603,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.118,-8.591,-2.499,0.0,0.011,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.831,8.489,2.01,1354.8,997.6,11411.1,2618.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.699,37.699,37.699,37.699,0.0,0.0,0.0,0.0,0.0,0.0,5.417,0.37,0.0,0.0,2.865,1.085,6.685,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.89,0.0,13.358,9.232,0.614,2.936,0.0,0.0,0.0,3238.4,2227.1,3238.4,21.012,15.095,0.0,3.603,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.106,-8.591,-2.499,0.0,0.011,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.828,8.488,2.01,1354.8,997.6,11411.5,2618.6,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -141,7 +141,7 @@ base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24. base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,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,22.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,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,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,22.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,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,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,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,40.753,40.753,29.446,29.446,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,3.84,0.724,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,0.0,11.307,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,11.955,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2605.0,2605.0,13.185,12.044,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.304,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.076,6.354,1.189,1354.8,997.6,11399.6,3013.0,0.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,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 +base-enclosure-split-level.xml,40.75,40.75,29.449,29.449,11.301,0.0,0.0,0.0,0.0,0.0,0.0,0.186,0.0,0.0,3.842,0.725,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,0.0,11.301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.576,0.0,11.967,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2606.2,2606.2,13.178,12.056,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.298,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.088,6.354,1.189,1354.8,997.6,11399.6,3013.0,0.0,36000.0,24000.0,0.0,6.8,91.76,28989.0,1641.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,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,22.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,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,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,0.0,40.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,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -159,14 +159,14 @@ base-foundation-conditioned-basement-slab-insulation-full.xml,56.087,56.087,36.4 base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,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,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,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,0.0,18.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,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 -base-foundation-multiple.xml,42.738,42.738,29.706,29.706,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.218,0.812,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,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,0.0,13.443,9.285,0.693,0.0,0.0,0.0,0.0,1723.6,2714.9,2714.9,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,10.857,-11.246,0.0,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-4.636,-1.429,0.0,-0.098,-0.674,0.0,0.0,-0.018,-1.077,12.595,0.0,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.65,4.23,1.218,1354.8,997.6,11399.4,2706.9,0.0,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,14275.0,222.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-slab.xml,39.954,39.954,29.299,29.299,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.9,0.74,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,0.0,10.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.972,0.0,12.215,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2611.5,2611.5,12.703,12.011,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.078,6.379,1.193,1354.8,997.6,11399.5,2808.9,0.0,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,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-above-grade.xml,43.94,43.94,29.852,29.852,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.308,0.833,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,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,0.0,13.834,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.0,2759.0,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,10.912,-11.281,0.0,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.069,12.56,0.0,0.0,-0.506,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.93,4.211,1.213,1354.8,997.6,11399.5,2706.9,0.0,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,14270.0,226.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-assembly-r.xml,41.196,41.196,29.243,29.243,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.197,0.0,0.0,3.847,0.722,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,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,0.0,11.864,9.285,0.71,0.0,0.0,0.0,0.0,1718.3,2855.2,2855.2,14.652,12.883,0.0,3.994,3.856,0.0,0.0,0.759,10.855,-11.125,0.0,0.0,4.456,0.0,-0.343,2.583,0.0,0.0,0.0,1.82,-4.614,-1.421,0.0,-0.074,-0.626,0.0,0.0,0.009,-1.062,12.715,0.0,0.0,-2.011,0.0,-0.339,-0.564,-2.512,0.0,0.0,1.12,4.251,1.226,1354.8,997.6,11399.5,2706.9,0.0,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,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-wall-insulation.xml,48.948,48.948,28.952,28.952,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.558,0.653,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,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,0.0,10.743,9.285,0.64,0.0,0.0,0.0,0.0,1726.7,2483.3,2483.3,16.597,11.56,0.0,3.723,3.619,0.0,0.0,0.633,9.712,-12.351,0.0,0.0,14.373,0.0,-0.047,2.46,0.0,0.0,0.0,2.599,-4.778,-1.481,0.0,0.063,-0.441,0.0,0.0,-0.015,-0.972,11.49,0.0,0.0,-2.769,0.0,-0.045,-0.521,-2.405,0.0,0.0,1.302,4.088,1.166,1354.8,997.6,11399.5,2706.9,0.0,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,15218.0,128.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement.xml,42.817,42.817,29.736,29.736,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.216,0.0,0.0,4.234,0.816,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,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,0.0,13.513,9.285,0.703,0.0,0.0,0.0,0.0,1723.8,2921.5,2921.5,15.45,14.318,0.0,3.994,3.853,0.0,0.0,0.749,10.805,-11.235,0.0,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-4.634,-1.429,0.0,-0.077,-0.629,0.0,0.0,-0.0,-1.111,12.605,0.0,0.0,-0.673,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.724,4.231,1.218,1354.8,997.6,11399.5,2706.9,0.0,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,14277.0,222.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,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,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,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,2808.9,0.0,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,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,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,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,2808.9,0.0,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,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-multiple.xml,42.719,42.719,29.708,29.708,13.011,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.22,0.813,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,0.0,13.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.179,0.0,13.45,9.285,0.692,0.0,0.0,0.0,0.0,1720.8,2656.9,2656.9,15.194,14.151,0.0,4.0,3.885,0.0,0.0,0.77,10.859,-11.235,0.0,0.0,5.305,0.0,-0.326,2.58,0.0,0.0,0.0,2.028,-4.635,-1.429,0.0,-0.1,-0.676,0.0,0.0,-0.018,-1.077,12.605,0.0,0.0,-0.622,0.0,-0.321,-0.563,-2.612,0.0,0.0,1.652,4.23,1.218,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23047.0,4758.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14361.0,307.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-slab.xml,39.952,39.952,29.302,29.302,10.649,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.903,0.74,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,0.0,10.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,9.966,0.0,12.228,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2612.9,2612.9,12.696,12.023,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.281,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.09,6.379,1.193,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,28622.0,1639.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-above-grade.xml,43.92,43.92,29.853,29.853,14.067,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.309,0.834,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,0.0,14.067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.169,0.0,13.839,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.3,2759.3,16.454,15.104,0.0,4.002,3.883,0.0,0.0,0.771,10.914,-11.281,0.0,0.0,5.922,0.0,-0.341,2.585,0.0,0.0,0.0,2.454,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.07,12.56,0.0,0.0,-0.501,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.932,4.211,1.213,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23008.0,4754.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14355.0,311.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-assembly-r.xml,41.151,41.151,29.246,29.246,11.905,0.0,0.0,0.0,0.0,0.0,0.0,0.196,0.0,0.0,3.851,0.723,9.345,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,11.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.145,0.0,11.881,9.285,0.709,0.0,0.0,0.0,0.0,1708.0,2576.7,2576.7,14.628,12.891,0.0,3.996,3.858,0.0,0.0,0.759,10.859,-11.125,0.0,0.0,4.416,0.0,-0.343,2.584,0.0,0.0,0.0,1.807,-4.614,-1.421,0.0,-0.075,-0.626,0.0,0.0,0.009,-1.063,12.715,0.0,0.0,-1.995,0.0,-0.339,-0.565,-2.514,0.0,0.0,1.125,4.251,1.226,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,20536.0,4399.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,14066.0,583.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-wall-insulation.xml,48.832,48.832,28.957,28.957,19.875,0.0,0.0,0.0,0.0,0.0,0.0,0.328,0.0,0.0,3.564,0.654,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,0.0,19.875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.602,0.0,10.768,9.285,0.639,0.0,0.0,0.0,0.0,1729.6,2434.8,2434.8,16.218,11.573,0.0,3.722,3.619,0.0,0.0,0.633,9.715,-12.345,0.0,0.0,14.27,0.0,-0.047,2.46,0.0,0.0,0.0,2.579,-4.776,-1.481,0.0,0.06,-0.443,0.0,0.0,-0.016,-0.978,11.496,0.0,0.0,-2.737,0.0,-0.045,-0.522,-2.41,0.0,0.0,1.306,4.089,1.166,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23823.0,1626.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,15242.0,151.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement.xml,42.783,42.783,29.739,29.739,13.044,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.237,0.817,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,0.0,13.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.211,0.0,13.525,9.285,0.702,0.0,0.0,0.0,0.0,1723.8,2699.8,2699.8,15.435,14.325,0.0,3.995,3.854,0.0,0.0,0.749,10.808,-11.235,0.0,0.0,5.351,0.0,-0.325,2.58,0.0,0.0,0.0,2.129,-4.634,-1.429,0.0,-0.077,-0.63,0.0,0.0,-0.0,-1.112,12.605,0.0,0.0,-0.661,0.0,-0.32,-0.562,-2.634,0.0,0.0,1.728,4.231,1.218,1354.8,997.6,11399.6,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23054.0,4758.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14362.0,307.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,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,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,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,20308.0,4130.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,14139.0,645.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,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,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,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23871.0,6874.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15437.0,1726.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-walkout-basement.xml,64.814,64.814,36.328,36.328,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,4.532,0.884,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,0.0,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.677,0.0,14.89,9.233,0.615,0.0,0.0,0.0,0.0,2125.9,3513.1,3513.1,26.787,19.805,0.0,3.523,3.688,0.52,7.364,0.646,11.292,-12.794,0.0,0.0,0.0,10.155,-0.066,6.639,0.0,0.728,0.0,6.073,-8.935,-2.506,0.0,-0.099,-0.515,-0.06,1.48,-0.031,-2.074,12.046,0.0,0.0,0.0,-3.677,-0.061,-1.529,-3.357,-0.16,0.0,3.264,7.844,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,3123.7,0.0,15.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.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -216,11 +216,11 @@ base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.87 base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20283.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,2122.5,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.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,0.0,3.107,0.86,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.678,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2915.2,2915.2,0.0,17.423,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.061,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.137,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.827,36.827,36.827,36.827,0.0,0.0,0.0,0.0,0.0,0.0,5.603,0.807,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,0.0,21.107,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3448.9,1637.3,3448.9,23.551,0.0,0.0,3.549,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.822,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,40.39,40.39,40.39,40.39,0.0,0.0,0.0,0.0,0.0,0.0,5.608,0.696,0.0,0.0,2.831,0.814,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.153,0.0,13.28,9.233,0.614,0.0,0.0,0.0,0.0,3403.2,2649.8,3403.2,23.114,15.754,0.0,3.55,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.705,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.388,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.962,39.962,39.962,39.962,0.0,0.0,0.0,0.0,0.0,0.0,5.339,0.368,0.0,0.0,2.768,1.045,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.804,0.0,12.828,9.233,0.614,0.0,0.0,0.0,0.0,3252.5,2689.1,3252.5,21.428,15.063,0.0,3.597,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.319,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.918,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.962,39.962,39.962,39.962,0.0,0.0,0.0,0.0,0.0,0.0,5.339,0.368,0.0,0.0,2.768,1.045,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.804,0.0,12.828,9.233,0.614,0.0,0.0,0.0,0.0,3252.5,2689.1,3252.5,21.428,15.063,0.0,3.597,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.319,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.918,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.497,34.497,34.497,34.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.148,0.863,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.685,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2934.1,2934.1,0.0,17.462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.143,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.797,36.797,36.797,36.797,0.0,0.0,0.0,0.0,0.0,0.0,5.579,0.8,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,0.0,21.087,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3435.0,1637.3,3435.0,23.47,0.0,0.0,3.55,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.802,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,40.319,40.319,40.319,40.319,0.0,0.0,0.0,0.0,0.0,0.0,5.582,0.69,0.0,0.0,2.795,0.811,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.133,0.0,13.275,9.233,0.614,0.0,0.0,0.0,0.0,3387.6,2632.1,3387.6,23.036,15.73,0.0,3.551,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.685,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.384,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.902,39.902,39.902,39.902,0.0,0.0,0.0,0.0,0.0,0.0,5.319,0.365,0.0,0.0,2.735,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.791,0.0,12.824,9.233,0.614,0.0,0.0,0.0,0.0,3240.8,2672.8,3240.8,21.364,15.042,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.305,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.914,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.902,39.902,39.902,39.902,0.0,0.0,0.0,0.0,0.0,0.0,5.319,0.365,0.0,0.0,2.735,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.791,0.0,12.824,9.233,0.614,0.0,0.0,0.0,0.0,3240.8,2672.8,3240.8,21.364,15.042,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.305,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.914,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,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,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,4263.6,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -291,11 +291,11 @@ base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0 base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-geothermal-loop.xml,39.493,39.493,39.493,39.493,0.0,0.0,0.0,0.0,0.0,0.0,5.183,0.345,0.0,0.0,2.516,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,0.0,19.464,0.0,12.653,9.233,0.614,0.0,0.0,0.0,0.0,3159.1,2560.4,3159.1,20.595,14.612,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.97,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.741,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.0,34.0,34.0,34.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.744,0.77,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.545,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2657.7,2657.7,0.0,14.727,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.983,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,39.989,39.989,39.989,39.989,0.0,0.0,0.0,0.0,0.0,0.0,5.355,0.367,0.0,0.0,2.79,1.037,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,12.684,9.233,0.614,0.0,0.0,0.0,0.0,3249.2,2686.8,3249.2,20.977,14.737,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.076,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.771,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.687,36.687,36.687,36.687,0.0,0.0,0.0,0.0,0.0,0.0,5.498,0.772,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,0.0,20.365,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3388.5,1637.3,3388.5,22.37,0.0,0.0,3.576,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.06,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,37.681,37.681,37.681,37.681,0.0,0.0,0.0,0.0,0.0,0.0,3.105,0.249,0.0,0.0,2.855,1.036,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.372,0.0,13.248,9.233,0.609,0.0,0.0,0.0,0.0,2956.2,2674.4,2956.2,17.435,15.377,0.0,3.755,3.756,0.529,5.693,0.653,10.826,-12.451,0.0,0.0,0.0,1.913,-0.043,4.855,0.0,0.737,0.0,2.088,-8.802,-2.478,0.0,-0.074,-0.537,-0.062,0.79,-0.048,-2.192,11.832,0.0,0.0,0.0,-3.437,-0.037,-1.245,-3.237,-0.178,0.0,1.87,7.971,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.961,39.961,39.961,39.961,0.0,0.0,0.0,0.0,0.0,0.0,5.345,0.366,0.0,0.0,2.774,1.035,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.562,0.0,12.682,9.233,0.614,0.0,0.0,0.0,0.0,3244.2,2678.5,3244.2,20.952,14.728,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.07,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.769,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.026,34.026,34.026,34.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.768,0.772,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2668.4,2668.4,0.0,14.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.986,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,39.931,39.931,39.931,39.931,0.0,0.0,0.0,0.0,0.0,0.0,5.335,0.365,0.0,0.0,2.758,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,0.0,19.555,0.0,12.68,9.233,0.614,0.0,0.0,0.0,0.0,3238.0,2671.2,3238.0,20.927,14.72,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.063,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.768,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.663,36.663,36.663,36.663,0.0,0.0,0.0,0.0,0.0,0.0,5.479,0.767,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,0.0,20.351,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3377.7,1637.3,3377.7,22.312,0.0,0.0,3.576,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.046,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,37.643,37.643,37.643,37.643,0.0,0.0,0.0,0.0,0.0,0.0,3.099,0.249,0.0,0.0,2.826,1.033,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.368,0.0,13.244,9.233,0.609,0.0,0.0,0.0,0.0,2951.6,2662.4,2951.6,17.411,15.363,0.0,3.755,3.756,0.529,5.693,0.653,10.826,-12.451,0.0,0.0,0.0,1.912,-0.043,4.855,0.0,0.737,0.0,2.084,-8.802,-2.478,0.0,-0.074,-0.537,-0.062,0.79,-0.048,-2.192,11.832,0.0,0.0,0.0,-3.437,-0.037,-1.245,-3.237,-0.178,0.0,1.867,7.971,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.906,39.906,39.906,39.906,0.0,0.0,0.0,0.0,0.0,0.0,5.326,0.363,0.0,0.0,2.744,1.032,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3233.6,2663.4,3233.6,20.905,14.71,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.058,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.766,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,7036.9,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,7011.6,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,7134.8,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -303,7 +303,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.72 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,2097.0,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.862,41.862,41.862,41.862,0.0,0.0,0.0,0.0,0.0,0.0,6.784,0.383,0.0,0.0,3.287,0.967,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.448,0.0,13.145,9.233,0.614,0.0,0.0,0.0,0.0,3481.0,2847.1,3481.0,21.884,15.744,0.0,3.576,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.98,-8.907,-2.499,0.0,-0.008,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.244,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.796,41.796,41.796,41.796,0.0,0.0,0.0,0.0,0.0,0.0,6.76,0.381,0.0,0.0,3.25,0.964,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,13.141,9.233,0.614,0.0,0.0,0.0,0.0,3469.4,2829.0,3469.4,21.834,15.723,0.0,3.576,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.967,-8.907,-2.499,0.0,-0.008,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,4380.1,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -317,7 +317,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668, base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,2913.9,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.461,66.461,52.016,52.016,7.161,3.602,3.682,0.0,0.0,0.0,13.672,0.861,0.199,0.008,6.281,0.554,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.711,0.207,18.967,9.233,0.615,0.0,0.0,0.0,4.0,6431.3,4083.4,6431.3,37.751,22.729,0.0,3.417,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.309,-8.919,-2.502,0.0,-0.122,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.242,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.417,66.417,51.979,51.979,7.157,3.6,3.68,0.0,0.0,0.0,13.66,0.859,0.198,0.008,6.26,0.553,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.686,0.206,18.963,9.233,0.615,0.0,0.0,0.0,4.0,6404.2,4080.8,6404.2,37.585,22.78,0.0,3.417,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.284,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.239,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.4,1280.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,1354.8,997.6,8540.6,2104.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -347,15 +347,15 @@ base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0 base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,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,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,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,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 -base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,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,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,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,2719.3,0.0,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,15107.0,1151.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 -base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,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.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,1354.8,997.6,10580.5,2607.1,0.0,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,13718.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 -base-location-dallas-tx.xml,34.353,34.353,32.588,32.588,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.767,1.868,6.814,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,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,0.0,30.193,6.675,0.573,0.0,0.0,0.0,0.0,2014.4,2771.1,2771.1,9.706,14.235,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.343,9.5,1.888,1354.8,997.6,9989.0,2461.3,0.0,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,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-location-duluth-mn.xml,70.96,70.96,29.786,29.786,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.438,0.0,0.0,2.265,0.329,11.623,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,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,0.0,5.222,11.597,0.833,0.0,0.0,0.0,0.0,1760.4,2414.3,2414.3,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,19.994,-13.274,0.0,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-6.293,-1.93,0.0,-0.435,-0.782,0.0,0.0,-0.099,-1.383,7.876,0.0,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.334,2.573,0.717,1354.8,997.6,12167.9,2889.4,0.0,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,11642.0,149.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 +base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,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,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,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,2719.3,0.0,24000.0,24000.0,0.0,17.24,91.22,18289.0,4484.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,15138.0,1182.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 +base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,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.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,1354.8,997.6,10580.5,2607.1,0.0,24000.0,24000.0,0.0,41.0,84.38,13251.0,5424.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13723.0,2066.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 +base-location-dallas-tx.xml,34.354,34.354,32.589,32.589,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.768,1.868,6.814,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,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.628,0.0,30.198,6.675,0.573,0.0,0.0,0.0,0.0,2014.5,2771.4,2771.4,9.704,14.238,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.348,9.5,1.888,1354.8,997.6,9989.0,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-location-duluth-mn.xml,70.866,70.866,29.788,29.788,41.078,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,2.268,0.329,11.622,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,41.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.227,0.0,5.235,11.597,0.832,0.0,0.0,0.0,0.0,1758.5,2415.0,2415.0,26.411,11.158,0.0,7.048,7.051,0.0,0.0,1.588,19.993,-13.264,0.0,0.0,9.955,0.0,-0.321,6.398,0.0,0.0,0.0,7.581,-6.289,-1.929,0.0,-0.435,-0.784,0.0,0.0,-0.1,-1.39,7.886,0.0,0.0,-1.546,0.0,-0.32,-0.518,-1.026,0.0,0.0,0.337,2.577,0.718,1354.8,997.6,12167.9,2889.4,0.0,36000.0,24000.0,0.0,-13.72,81.14,31119.0,6119.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11786.0,292.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,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,0.0,42.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,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 -base-location-honolulu-hi.xml,36.199,36.199,36.199,36.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.218,3.035,4.816,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,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,2132.0,2154.5,2342.0,0.0,13.168,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,13.134,2.647,1354.8,997.6,8540.5,2104.4,0.0,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,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 -base-location-miami-fl.xml,35.353,35.353,35.353,35.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.444,2.83,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,0.0,0.0,45.97,4.712,0.551,0.0,0.0,0.0,0.0,2104.8,2424.8,2424.8,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,0.0,0.0,0.0,1.006,0.575,0.0,0.0,0.304,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,13.135,2.647,1354.8,997.6,8625.1,2125.3,0.0,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,13318.0,-219.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 -base-location-phoenix-az.xml,38.434,38.434,38.433,38.433,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.029,3.092,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.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,0.0,51.765,4.955,0.556,0.0,0.0,0.0,0.0,2368.2,3386.4,3386.4,0.593,17.634,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,11.511,2.368,1354.8,997.6,8429.2,2077.0,0.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,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 -base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,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,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,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,1354.8,997.6,11239.5,2769.4,0.0,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,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 +base-location-honolulu-hi.xml,36.193,36.193,36.193,36.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.212,3.034,4.816,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,0.0,49.434,4.572,0.55,0.0,0.0,0.0,0.0,2131.5,2154.0,2341.5,0.0,13.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.727,13.134,2.647,1354.8,997.6,8540.5,2104.4,0.0,12000.0,24000.0,0.0,63.32,89.06,3427.0,602.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,13006.0,3.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 +base-location-miami-fl.xml,35.347,35.347,35.347,35.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.44,2.829,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,0.0,0.0,45.948,4.712,0.551,0.0,0.0,0.0,0.0,2104.4,2424.2,2424.2,0.0,13.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.673,13.135,2.647,1354.8,997.6,8625.1,2125.3,0.0,12000.0,24000.0,0.0,51.62,90.68,8626.0,801.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,646.0,13291.0,-246.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 +base-location-phoenix-az.xml,38.428,38.428,38.427,38.427,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.024,3.091,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.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,0.0,51.745,4.955,0.556,0.0,0.0,0.0,0.0,2367.8,3385.5,3385.5,0.593,17.627,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.864,11.511,2.368,1354.8,997.6,8429.2,2077.0,0.0,24000.0,24000.0,0.0,41.36,108.14,13288.0,1067.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1035.0,18562.0,669.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 +base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,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,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,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,1354.8,997.6,11239.5,2769.4,0.0,24000.0,24000.0,0.0,28.58,87.08,17541.0,6250.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,15211.0,2157.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,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,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,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,0.0,24.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,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 @@ -446,33 +446,33 @@ house009.xml,154.293,154.293,33.983,33.983,120.31,0.0,0.0,0.0,0.0,0.0,0.0,2.035, house010.xml,153.796,153.796,37.549,37.549,116.246,0.0,0.0,0.0,0.0,0.0,0.0,1.86,0.0,0.0,2.896,0.273,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,0.0,82.81,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,78.033,0.0,7.28,18.129,3.214,0.0,0.0,0.0,0.0,2409.0,2810.7,2810.7,45.27,15.353,0.875,4.93,25.457,4.901,9.774,1.256,23.582,-9.227,0.0,0.0,0.906,11.41,-0.365,19.566,0.0,6.402,0.0,4.869,-18.715,-8.186,0.023,0.211,-0.764,-0.099,0.558,-0.073,-1.356,5.066,0.0,0.0,-0.046,-4.161,-0.362,-1.021,-0.677,-0.269,0.0,0.334,7.219,2.8,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,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,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,4986.2,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,0.0,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,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,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,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,3031.7,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,0.0,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,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 -house013.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,2660.9,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,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,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,2913.6,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,3131.8,0.0,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,10972.0,1043.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 -house015.xml,30.692,30.692,30.692,30.692,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.166,0.0,0.0,3.893,1.316,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,0.0,6.124,0.0,15.101,6.85,0.853,0.0,0.0,0.0,0.0,2660.9,2106.5,2660.9,9.742,9.306,0.0,1.636,2.868,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.467,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,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,9749.0,1052.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 +house013.xml,30.654,30.654,30.654,30.654,0.0,0.0,0.0,0.0,0.0,0.0,2.849,0.152,0.0,0.0,3.892,1.317,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,0.0,6.052,0.0,15.1,6.85,0.853,0.0,0.0,0.0,0.0,2660.4,2104.4,2660.4,9.749,9.287,0.0,1.636,2.867,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.104,0.0,-0.263,1.522,0.0,1.064,0.0,1.123,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.539,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.466,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,12463.0,3002.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9770.0,1072.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 +house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,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,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,2913.6,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13627.0,3068.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,10994.0,1065.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 +house015.xml,30.654,30.654,30.654,30.654,0.0,0.0,0.0,0.0,0.0,0.0,2.849,0.152,0.0,0.0,3.892,1.317,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,0.0,6.052,0.0,15.1,6.85,0.853,0.0,0.0,0.0,0.0,2660.4,2104.4,2660.4,9.749,9.287,0.0,1.636,2.867,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.104,0.0,-0.263,1.522,0.0,1.064,0.0,1.123,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.539,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.466,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,12463.0,3002.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9770.0,1072.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 house016.xml,61.263,61.263,39.85,39.85,0.0,0.0,21.413,0.0,0.0,0.0,7.562,0.538,0.161,0.004,3.068,1.038,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.225,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.35,0.164,12.001,10.478,0.0,0.0,0.0,1.0,16.0,7459.2,3559.3,7459.2,42.956,19.008,0.0,4.428,10.851,0.619,5.712,0.298,7.395,-8.024,0.0,0.0,0.0,6.777,-0.02,5.735,0.0,3.86,0.0,0.0,-8.634,-4.768,0.0,-0.362,-0.889,-0.023,2.899,-0.047,-0.596,12.366,0.0,0.0,0.0,-8.869,-0.022,-1.375,-1.189,-1.027,0.0,0.0,7.78,3.838,1759.0,1745.5,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,0.0,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 -house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,4683.5,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,0.0,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,11065.0,747.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2606.0,1095.0,711.0,800.0 +house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,4683.5,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,18202.0,4811.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,11169.0,851.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2619.0,1108.0,711.0,800.0 house019.xml,129.831,129.831,51.94,51.94,77.891,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.257,3.783,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.116,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.065,0.0,44.56,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6497.7,6497.7,84.656,46.058,0.0,11.387,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.955,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.944,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,0.0,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 house020.xml,116.979,116.979,56.877,56.877,0.0,0.0,60.102,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.245,2.923,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.965,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.971,0.0,34.513,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6618.4,6618.4,31.034,32.534,0.91,11.02,10.576,1.133,9.807,0.632,14.612,-15.405,0.0,0.0,0.0,7.524,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.24,0.116,0.176,0.053,6.39,0.012,-1.763,21.501,0.0,0.0,0.0,-6.709,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,0.0,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 house021.xml,156.416,156.416,48.605,48.605,107.811,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.488,1.582,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.77,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,18.993,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4771.0,4771.0,81.115,23.848,0.0,8.272,27.058,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.315,26.613,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.008,-0.864,0.005,2.201,-0.093,-1.709,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.322,8.889,3.787,1759.0,1745.5,13752.0,4620.1,0.0,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 -house022.xml,137.518,137.518,48.884,48.884,0.0,88.635,0.0,0.0,0.0,0.0,0.0,2.204,0.0,0.0,8.878,0.897,12.47,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,88.635,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.755,0.0,19.669,10.989,1.479,0.0,0.0,184.0,126.0,2989.1,5375.4,5375.4,90.672,27.64,3.697,3.766,20.67,0.0,0.0,1.489,16.102,-13.284,0.0,0.0,14.728,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.522,0.0,0.0,-0.127,-0.987,12.096,0.0,0.0,1.908,0.0,-0.281,-2.742,-0.645,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,0.0,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 +house022.xml,137.455,137.455,48.887,48.887,0.0,88.568,0.0,0.0,0.0,0.0,0.0,2.202,0.0,0.0,8.883,0.897,12.469,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,88.568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.7,0.0,19.681,10.989,1.479,0.0,0.0,184.0,126.0,2989.0,5375.4,5375.4,90.645,27.632,3.698,3.767,20.674,0.0,0.0,1.489,16.104,-13.284,0.0,0.0,14.666,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.52,0.0,0.0,-0.127,-0.988,12.096,0.0,0.0,1.925,0.0,-0.281,-2.743,-0.646,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,0.0,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,4638.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 -house024.xml,129.181,129.181,44.059,44.059,0.0,85.122,0.0,0.0,0.0,0.0,0.0,2.117,0.0,0.0,5.375,0.691,16.753,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.122,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.176,0.0,16.013,14.653,2.088,0.0,0.0,0.0,0.0,2750.5,3528.1,3591.8,72.024,17.577,0.0,7.189,30.113,0.0,0.0,0.682,6.988,-7.991,0.0,0.0,5.221,0.0,-0.109,25.401,0.0,1.837,0.0,11.726,-8.633,-2.537,0.0,0.564,1.148,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.499,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.853,5.531,1.379,2176.1,2226.5,14983.5,4452.7,0.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,21856.0,1377.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7041.0,2605.0,3636.0,800.0 -house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,0.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,32212.0,8765.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 -house026.xml,57.14,57.14,24.857,24.857,32.282,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,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,0.0,18.136,0.0,14.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,13.896,0.0,0.0,8.607,2.082,0.0,0.0,0.0,0.0,1554.0,1299.3,1554.0,17.371,0.0,0.0,1.761,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.103,0.0,-0.058,2.488,0.0,3.127,0.0,0.0,-6.707,-3.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,1294.8,1282.2,8578.8,3023.3,0.0,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 +house024.xml,129.149,129.149,44.06,44.06,0.0,85.088,0.0,0.0,0.0,0.0,0.0,2.116,0.0,0.0,5.377,0.691,16.753,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.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,70.148,0.0,16.019,14.653,2.088,0.0,0.0,0.0,0.0,2750.0,3528.4,3589.1,72.006,17.579,0.0,7.189,30.115,0.0,0.0,0.682,6.989,-7.991,0.0,0.0,5.204,0.0,-0.109,25.401,0.0,1.837,0.0,11.712,-8.633,-2.537,0.0,0.564,1.147,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.503,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.856,5.531,1.379,2176.1,2226.5,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,60193.0,12383.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,22068.0,1589.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7066.0,2630.0,3636.0,800.0 +house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,0.0,158000.0,81000.0,33000.0,24.62,91.58,54301.0,20009.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,32309.0,8863.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 +house026.xml,57.112,57.112,24.857,24.857,32.255,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,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,0.0,18.109,0.0,14.145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.875,0.0,0.0,8.607,2.081,0.0,0.0,0.0,0.0,1554.0,1299.3,1554.0,17.341,0.0,0.0,1.761,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.079,0.0,-0.056,2.488,0.0,3.126,0.0,0.0,-6.705,-3.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,1294.8,1282.2,8578.8,3023.3,0.0,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 house027.xml,72.753,72.753,31.736,31.736,41.016,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,7.874,1.017,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,0.0,20.065,0.0,17.882,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.901,0.0,23.04,8.564,5.232,0.0,0.0,0.0,0.0,1580.0,3622.8,3622.8,24.052,22.72,0.716,1.776,7.887,0.452,0.0,0.591,5.247,-4.028,0.0,0.0,0.376,3.336,-0.14,1.745,0.0,10.425,0.0,2.046,-8.79,-2.845,0.489,1.124,0.653,0.056,0.0,-0.113,-0.286,5.628,0.0,0.0,0.105,3.836,-0.14,-0.365,-0.966,-3.474,0.0,2.595,10.728,3.102,1610.9,1574.7,10579.5,3728.4,0.0,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 house028.xml,67.831,67.831,29.68,29.68,38.15,0.0,0.0,0.0,0.0,0.0,0.0,0.259,0.0,0.0,7.107,1.515,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,0.0,13.643,0.0,18.121,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.812,0.0,22.735,10.226,3.62,0.0,0.0,0.0,0.0,1517.3,3323.9,3323.9,20.023,21.223,0.769,1.663,7.049,0.35,0.0,0.432,5.505,-3.79,0.0,0.0,0.236,2.464,-0.05,4.039,0.0,4.464,0.0,1.543,-9.08,-2.901,0.607,1.232,-0.581,0.098,0.0,0.066,-0.712,6.39,0.0,0.0,0.069,1.838,-0.051,-1.081,-1.198,-1.645,0.0,2.913,11.527,3.237,1857.7,1859.4,12951.6,4219.3,0.0,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 -house029.xml,77.601,77.601,29.95,29.95,47.651,0.0,0.0,0.0,0.0,0.0,0.0,0.639,0.0,0.0,6.107,0.906,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,0.0,31.987,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,31.653,0.0,13.604,9.614,0.0,0.0,0.0,0.0,0.0,1604.9,3000.4,3000.4,28.473,13.951,0.0,3.364,14.695,0.392,0.0,0.308,6.693,-6.461,0.0,0.0,6.932,0.0,-0.085,7.292,0.0,7.304,0.0,3.15,-8.377,-3.711,0.0,1.12,-0.859,0.009,0.0,0.053,0.373,5.722,0.0,0.0,-0.449,0.0,-0.08,-0.809,-1.067,-1.536,0.0,1.215,7.168,2.832,1610.9,1574.7,11033.0,3888.2,0.0,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,16260.0,-171.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 +house029.xml,77.542,77.542,29.955,29.955,47.588,0.0,0.0,0.0,0.0,0.0,0.0,0.638,0.0,0.0,6.112,0.907,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,0.0,31.923,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,31.59,0.0,13.619,9.614,0.0,0.0,0.0,0.0,0.0,1604.8,3001.5,3001.5,28.438,13.96,0.0,3.365,14.698,0.393,0.0,0.308,6.694,-6.461,0.0,0.0,6.873,0.0,-0.085,7.292,0.0,7.305,0.0,3.141,-8.377,-3.711,0.0,1.12,-0.861,0.009,0.0,0.053,0.372,5.722,0.0,0.0,-0.43,0.0,-0.08,-0.809,-1.069,-1.537,0.0,1.218,7.168,2.832,1610.9,1574.7,11033.0,3888.2,0.0,77000.0,36000.0,0.0,17.24,91.22,29334.0,2271.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,16288.0,-143.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 house030.xml,57.883,57.883,17.189,17.189,0.0,0.0,40.694,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.377,0.0,13.28,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.883,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,1133.7,15.992,0.0,0.0,1.68,10.216,0.489,1.112,1.049,5.343,-4.368,0.0,0.0,0.0,3.578,-0.04,2.742,0.0,5.694,0.0,0.0,-7.809,-2.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,1066.0,992.8,6763.9,2581.0,0.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,7846.0,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,1347.4,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.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,1341.9,1264.5,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 -house033.xml,106.743,106.743,14.691,14.691,0.0,92.052,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.371,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,1018.3,48.38,0.0,0.0,19.125,14.564,0.0,0.0,1.0,10.82,-7.637,0.0,0.0,14.706,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.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,0.0,924.8,0.0,3905.6,1188.1,0.0,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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 +house033.xml,106.693,106.693,14.691,14.691,0.0,92.003,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.321,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.529,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,1018.3,48.307,0.0,0.0,19.127,14.566,0.0,0.0,1.0,10.821,-7.637,0.0,0.0,14.661,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.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,0.0,924.8,0.0,3905.6,1188.1,0.0,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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,2949.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.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,1759.0,1745.5,10287.1,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 -house035.xml,63.505,63.505,17.521,17.521,45.985,0.0,0.0,0.0,0.0,0.0,0.0,0.809,0.0,0.0,1.742,0.119,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.522,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.706,0.0,2.673,3.92,3.822,0.0,0.0,102.0,0.0,1326.3,1899.4,1899.4,39.1,9.67,0.367,6.149,10.862,0.0,0.0,0.538,5.863,-7.44,0.0,0.0,7.797,0.0,0.004,13.61,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.579,-1.589,0.0,0.0,-0.082,-1.219,7.322,0.0,0.0,-4.457,0.0,0.009,-2.738,-0.728,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,0.0,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 -house036.xml,82.314,82.314,26.075,26.075,56.239,0.0,0.0,0.0,0.0,0.0,0.0,0.964,0.0,0.0,5.964,1.051,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.77,0.0,17.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.868,0.0,15.005,8.219,5.837,0.0,0.0,102.0,126.0,1461.8,3231.3,3231.3,31.799,17.329,5.544,2.267,3.993,0.0,0.0,1.83,6.573,-7.755,0.0,0.0,21.29,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.427,-3.43,1.567,0.119,-0.032,0.0,0.0,-0.224,-0.58,6.698,0.0,0.0,2.216,0.0,-0.0,-0.749,-0.419,-0.061,0.0,0.0,4.352,2.019,1341.9,1264.5,6447.0,2476.3,0.0,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 -house037.xml,87.934,87.934,21.779,21.779,0.0,66.155,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,49.998,0.0,16.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,37.091,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,1457.0,29.538,0.0,0.0,16.714,11.33,0.0,0.0,1.563,7.276,-10.49,0.0,0.0,6.59,0.0,-0.309,14.696,0.0,0.461,0.0,0.0,-6.818,-3.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,1341.9,1264.5,8324.2,3197.3,0.0,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 +house035.xml,63.429,63.429,17.521,17.521,45.908,0.0,0.0,0.0,0.0,0.0,0.0,0.807,0.0,0.0,1.744,0.119,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.445,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.643,0.0,2.679,3.92,3.822,0.0,0.0,102.0,0.0,1326.0,1900.3,1900.3,39.068,9.678,0.367,6.151,10.867,0.0,0.0,0.538,5.865,-7.44,0.0,0.0,7.725,0.0,0.004,13.612,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.58,-1.592,0.0,0.0,-0.083,-1.22,7.322,0.0,0.0,-4.441,0.0,0.009,-2.74,-0.729,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,0.0,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 +house036.xml,82.22,82.22,26.079,26.079,56.141,0.0,0.0,0.0,0.0,0.0,0.0,0.962,0.0,0.0,5.969,1.052,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.674,0.0,17.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,31.789,0.0,15.021,8.219,5.835,0.0,0.0,102.0,126.0,1461.6,3232.0,3232.0,31.764,17.336,5.546,2.268,3.995,0.0,0.0,1.83,6.574,-7.755,0.0,0.0,21.201,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.425,-3.429,1.566,0.12,-0.033,0.0,0.0,-0.225,-0.582,6.698,0.0,0.0,2.233,0.0,-0.0,-0.75,-0.419,-0.061,0.0,0.0,4.354,2.02,1341.9,1264.5,6447.0,2476.3,0.0,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 +house037.xml,87.861,87.861,21.779,21.779,0.0,66.082,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,49.925,0.0,16.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,37.034,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,1457.0,29.538,0.0,0.0,16.718,11.333,0.0,0.0,1.563,7.277,-10.49,0.0,0.0,6.525,0.0,-0.309,14.697,0.0,0.461,0.0,0.0,-6.818,-3.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,1341.9,1264.5,8324.2,3197.3,0.0,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,5656.5,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 -house039.xml,98.796,98.796,24.025,24.025,74.77,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,5.136,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.084,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,1709.2,49.765,0.0,0.0,14.276,5.416,0.0,0.0,2.519,15.643,-13.75,0.0,0.0,13.85,0.0,-0.039,13.263,0.0,0.557,0.0,0.0,-4.135,-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,2176.1,2226.5,17536.3,5211.3,0.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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 +house039.xml,98.754,98.754,24.025,24.025,74.729,0.0,0.0,0.0,0.0,0.0,0.0,0.143,0.0,0.0,0.0,0.0,5.136,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.042,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.162,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,1709.2,49.769,0.0,0.0,14.278,5.417,0.0,0.0,2.519,15.645,-13.75,0.0,0.0,13.817,0.0,-0.039,13.263,0.0,0.558,0.0,0.0,-4.135,-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,2176.1,2226.5,17536.3,5211.3,0.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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,1751.1,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 house041.xml,259.077,259.077,47.133,47.133,211.944,0.0,0.0,0.0,0.0,0.0,0.0,4.164,0.0,0.0,2.576,0.254,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,0.0,185.392,0.0,26.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,174.689,0.0,4.652,15.632,5.039,0.0,0.0,105.0,0.0,3249.4,4561.5,4561.5,77.749,23.467,0.0,11.26,44.834,3.482,34.914,3.052,41.616,-22.892,0.0,0.0,4.341,17.423,-0.477,64.05,0.0,2.763,0.0,0.0,-20.286,-10.995,0.0,0.097,-2.224,-0.127,1.602,-0.212,-4.015,11.033,0.0,0.0,-0.321,-5.328,-0.475,-3.481,-1.022,-0.258,0.0,0.0,6.561,2.948,1857.7,1859.4,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 house042.xml,229.67,229.67,40.068,40.068,189.602,0.0,0.0,0.0,0.0,0.0,0.0,3.871,0.0,0.0,1.81,0.074,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,0.0,165.165,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.395,0.0,2.999,15.632,3.226,0.0,0.0,0.0,0.0,2758.3,3100.3,3100.3,88.214,19.624,0.0,9.205,40.053,4.031,43.891,2.672,34.445,-21.633,0.0,0.0,2.453,14.538,-0.385,56.223,0.0,1.75,0.0,0.0,-19.152,-7.587,0.0,0.2,-1.588,-0.07,2.68,-0.16,-3.134,7.067,0.0,0.0,-0.272,-5.113,-0.382,-2.85,-0.642,-0.145,0.0,0.0,5.557,1.952,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index 4f4e4dacce..e94857bcd2 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -1,9 +1,9 @@ HPXML,Bills: Total (USD),Bills: Electricity: Fixed (USD),Bills: Electricity: Energy (USD),Bills: Electricity: PV Credit (USD),Bills: Electricity: Total (USD),Bills: Natural Gas: Fixed (USD),Bills: Natural Gas: Energy (USD),Bills: Natural Gas: Total (USD),Bills: Fuel Oil: Fixed (USD),Bills: Fuel Oil: Energy (USD),Bills: Fuel Oil: Total (USD),Bills: Propane: Fixed (USD),Bills: Propane: Energy (USD),Bills: Propane: Total (USD),Bills: Wood Cord: Fixed (USD),Bills: Wood Cord: Energy (USD),Bills: Wood Cord: Total (USD),Bills: Wood Pellets: Fixed (USD),Bills: Wood Pellets: Energy (USD),Bills: Wood Pellets: Total (USD),Bills: Coal: Fixed (USD),Bills: Coal: Energy (USD),Bills: Coal: Total (USD),Tiered: Total (USD),Tiered: Electricity: Fixed (USD),Tiered: Electricity: Energy (USD),Tiered: Electricity: PV Credit (USD),Tiered: Electricity: Total (USD),Tiered: Natural Gas: Fixed (USD),Tiered: Natural Gas: Energy (USD),Tiered: Natural Gas: Total (USD),Tiered: Fuel Oil: Fixed (USD),Tiered: Fuel Oil: Energy (USD),Tiered: Fuel Oil: Total (USD),Tiered: Propane: Fixed (USD),Tiered: Propane: Energy (USD),Tiered: Propane: Total (USD),Tiered: Wood Cord: Fixed (USD),Tiered: Wood Cord: Energy (USD),Tiered: Wood Cord: Total (USD),Tiered: Wood Pellets: Fixed (USD),Tiered: Wood Pellets: Energy (USD),Tiered: Wood Pellets: Total (USD),Tiered: Coal: Fixed (USD),Tiered: Coal: Energy (USD),Tiered: Coal: Total (USD),TOU: Total (USD),TOU: Electricity: Fixed (USD),TOU: Electricity: Energy (USD),TOU: Electricity: PV Credit (USD),TOU: Electricity: Total (USD),TOU: Natural Gas: Fixed (USD),TOU: Natural Gas: Energy (USD),TOU: Natural Gas: Total (USD),TOU: Fuel Oil: Fixed (USD),TOU: Fuel Oil: Energy (USD),TOU: Fuel Oil: Total (USD),TOU: Propane: Fixed (USD),TOU: Propane: Energy (USD),TOU: Propane: Total (USD),TOU: Wood Cord: Fixed (USD),TOU: Wood Cord: Energy (USD),TOU: Wood Cord: Total (USD),TOU: Wood Pellets: Fixed (USD),TOU: Wood Pellets: Energy (USD),TOU: Wood Pellets: Total (USD),TOU: Coal: Fixed (USD),TOU: Coal: Energy (USD),TOU: Coal: Total (USD),Tiered and TOU: Total (USD),Tiered and TOU: Electricity: Fixed (USD),Tiered and TOU: Electricity: Energy (USD),Tiered and TOU: Electricity: PV Credit (USD),Tiered and TOU: Electricity: Total (USD),Tiered and TOU: Natural Gas: Fixed (USD),Tiered and TOU: Natural Gas: Energy (USD),Tiered and TOU: Natural Gas: Total (USD),Tiered and TOU: Fuel Oil: Fixed (USD),Tiered and TOU: Fuel Oil: Energy (USD),Tiered and TOU: Fuel Oil: Total (USD),Tiered and TOU: Propane: Fixed (USD),Tiered and TOU: Propane: Energy (USD),Tiered and TOU: Propane: Total (USD),Tiered and TOU: Wood Cord: Fixed (USD),Tiered and TOU: Wood Cord: Energy (USD),Tiered and TOU: Wood Cord: Total (USD),Tiered and TOU: Wood Pellets: Fixed (USD),Tiered and TOU: Wood Pellets: Energy (USD),Tiered and TOU: Wood Pellets: Total (USD),Tiered and TOU: Coal: Fixed (USD),Tiered and TOU: Coal: Energy (USD),Tiered and TOU: Coal: Total (USD),Real-Time Pricing: Total (USD),Real-Time Pricing: Electricity: Fixed (USD),Real-Time Pricing: Electricity: Energy (USD),Real-Time Pricing: Electricity: PV Credit (USD),Real-Time Pricing: Electricity: Total (USD),Real-Time Pricing: Natural Gas: Fixed (USD),Real-Time Pricing: Natural Gas: Energy (USD),Real-Time Pricing: Natural Gas: Total (USD),Real-Time Pricing: Fuel Oil: Fixed (USD),Real-Time Pricing: Fuel Oil: Energy (USD),Real-Time Pricing: Fuel Oil: Total (USD),Real-Time Pricing: Propane: Fixed (USD),Real-Time Pricing: Propane: Energy (USD),Real-Time Pricing: Propane: Total (USD),Real-Time Pricing: Wood Cord: Fixed (USD),Real-Time Pricing: Wood Cord: Energy (USD),Real-Time Pricing: Wood Cord: Total (USD),Real-Time Pricing: Wood Pellets: Fixed (USD),Real-Time Pricing: Wood Pellets: Energy (USD),Real-Time Pricing: Wood Pellets: Total (USD),Real-Time Pricing: Coal: Fixed (USD),Real-Time Pricing: Coal: Energy (USD),Real-Time Pricing: Coal: Total (USD),Simple: Total (USD),Simple: Electricity: Fixed (USD),Simple: Electricity: Energy (USD),Simple: Electricity: PV Credit (USD),Simple: Electricity: Total (USD),Simple: Natural Gas: Fixed (USD),Simple: Natural Gas: Energy (USD),Simple: Natural Gas: Total (USD),Simple: Fuel Oil: Fixed (USD),Simple: Fuel Oil: Energy (USD),Simple: Fuel Oil: Total (USD),Simple: Propane: Fixed (USD),Simple: Propane: Energy (USD),Simple: Propane: Total (USD),Simple: Wood Cord: Fixed (USD),Simple: Wood Cord: Energy (USD),Simple: Wood Cord: Total (USD),Simple: Wood Pellets: Fixed (USD),Simple: Wood Pellets: Energy (USD),Simple: Wood Pellets: Total (USD),Simple: Coal: Fixed (USD),Simple: Coal: Energy (USD),Simple: Coal: Total (USD),Detailed: Total (USD),Detailed: Electricity: Fixed (USD),Detailed: Electricity: Energy (USD),Detailed: Electricity: PV Credit (USD),Detailed: Electricity: Total (USD),Detailed: Natural Gas: Fixed (USD),Detailed: Natural Gas: Energy (USD),Detailed: Natural Gas: Total (USD),Detailed: Fuel Oil: Fixed (USD),Detailed: Fuel Oil: Energy (USD),Detailed: Fuel Oil: Total (USD),Detailed: Propane: Fixed (USD),Detailed: Propane: Energy (USD),Detailed: Propane: Total (USD),Detailed: Wood Cord: Fixed (USD),Detailed: Wood Cord: Energy (USD),Detailed: Wood Cord: Total (USD),Detailed: Wood Pellets: Fixed (USD),Detailed: Wood Pellets: Energy (USD),Detailed: Wood Pellets: Total (USD),Detailed: Coal: Fixed (USD),Detailed: Coal: Energy (USD),Detailed: Coal: 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: Energy (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: Energy (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Total (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Wholesale Excess Rate: Propane: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Propane: Energy (USD),Net Metering w/ Wholesale Excess Rate: Propane: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Wholesale Excess Rate: Coal: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Coal: Energy (USD),Net Metering w/ Wholesale Excess Rate: Coal: 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: Energy (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: Energy (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Total (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Retail Excess Rate: Propane: Fixed (USD),Net Metering w/ Retail Excess Rate: Propane: Energy (USD),Net Metering w/ Retail Excess Rate: Propane: Total (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Total (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Retail Excess Rate: Coal: Fixed (USD),Net Metering w/ Retail Excess Rate: Coal: Energy (USD),Net Metering w/ Retail Excess Rate: Coal: Total (USD),Feed-In Tariff: Total (USD),Feed-In Tariff: Electricity: Fixed (USD),Feed-In Tariff: Electricity: Energy (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: Energy (USD),Feed-In Tariff: Natural Gas: Total (USD),Feed-In Tariff: Fuel Oil: Fixed (USD),Feed-In Tariff: Fuel Oil: Energy (USD),Feed-In Tariff: Fuel Oil: Total (USD),Feed-In Tariff: Propane: Fixed (USD),Feed-In Tariff: Propane: Energy (USD),Feed-In Tariff: Propane: Total (USD),Feed-In Tariff: Wood Cord: Fixed (USD),Feed-In Tariff: Wood Cord: Energy (USD),Feed-In Tariff: Wood Cord: Total (USD),Feed-In Tariff: Wood Pellets: Fixed (USD),Feed-In Tariff: Wood Pellets: Energy (USD),Feed-In Tariff: Wood Pellets: Total (USD),Feed-In Tariff: Coal: Fixed (USD),Feed-In Tariff: Coal: Energy (USD),Feed-In Tariff: Coal: Total (USD) base-appliances-coal.xml,1816.09,144.0,1220.28,0.0,1364.28,144.0,234.82,378.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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1519.05,144.0,1217.36,0.0,1361.36,144.0,13.69,157.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier-ief-whole-home.xml,1520.67,144.0,1219.21,0.0,1363.21,144.0,13.46,157.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1516.92,144.0,1214.51,0.0,1358.51,144.0,14.41,158.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier.xml,1518.17,144.0,1216.64,0.0,1360.64,144.0,13.53,157.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier-ief-portable.xml,1519.1,144.0,1217.42,0.0,1361.42,144.0,13.68,157.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier-ief-whole-home.xml,1520.68,144.0,1219.22,0.0,1363.22,144.0,13.46,157.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1516.97,144.0,1214.56,0.0,1358.56,144.0,14.41,158.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier.xml,1518.22,144.0,1216.69,0.0,1360.69,144.0,13.53,157.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-appliances-gas.xml,1794.65,144.0,1220.28,0.0,1364.28,144.0,286.37,430.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-appliances-modified.xml,1876.16,144.0,1355.48,0.0,1499.48,144.0,232.68,376.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-appliances-none.xml,1592.3,144.0,1041.89,0.0,1185.89,144.0,262.41,406.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -15,7 +15,7 @@ base-appliances-wood.xml,1816.09,144.0,1220.28,0.0,1364.28,144.0,234.82,378.82,0 base-atticroof-cathedral.xml,1880.04,144.0,1313.15,0.0,1457.15,144.0,278.89,422.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-atticroof-conditioned.xml,2022.76,144.0,1485.62,0.0,1629.62,144.0,249.14,393.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-atticroof-flat.xml,1787.49,144.0,1288.51,0.0,1432.51,144.0,210.98,354.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-radiant-barrier.xml,1545.61,144.0,1213.91,0.0,1357.91,144.0,43.7,187.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-radiant-barrier.xml,1545.67,144.0,1213.97,0.0,1357.97,144.0,43.7,187.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-atticroof-unvented-insulated-roof.xml,1818.41,144.0,1294.27,0.0,1438.27,144.0,236.14,380.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-atticroof-vented.xml,1834.62,144.0,1306.81,0.0,1450.81,144.0,239.81,383.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-battery-scheduled.xml,1910.91,144.0,1381.06,0.0,1525.06,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -48,7 +48,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1132.06,144.0,988.06, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1324.25,144.0,1180.25,0.0,1324.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1139.97,144.0,995.97,0.0,1139.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-generator.xml,1642.11,144.0,962.4,0.0,1106.4,144.0,7.16,151.16,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1178.29,144.0,1034.29,0.0,1178.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1177.69,144.0,1033.69,0.0,1177.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,1058.78,144.0,609.48,0.0,753.48,144.0,161.3,305.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-laundry-room.xml,1031.55,144.0,602.54,0.0,746.54,144.0,141.01,285.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,1630.77,144.0,1128.08,0.0,1272.08,144.0,214.69,358.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -61,7 +61,7 @@ base-bldgtype-multifamily.xml,1257.56,144.0,962.4,0.0,1106.4,144.0,7.16,151.16,0 base-dhw-combi-tankless-outside.xml,1395.79,144.0,786.38,0.0,930.38,144.0,321.41,465.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-combi-tankless.xml,1408.85,144.0,786.73,0.0,930.73,144.0,334.12,478.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-2-speed.xml,1322.95,144.0,1178.95,0.0,1322.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-gshp.xml,1529.5,144.0,1385.5,0.0,1529.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-gshp.xml,1527.57,144.0,1383.57,0.0,1527.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-hpwh.xml,1667.45,144.0,1089.75,0.0,1233.75,144.0,289.7,433.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-tankless.xml,1383.44,144.0,1239.44,0.0,1383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-var-speed.xml,1296.03,144.0,1152.03,0.0,1296.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -141,7 +141,7 @@ base-enclosure-skylights-physical-properties.xml,1904.39,144.0,1359.67,0.0,1503. base-enclosure-skylights-shading.xml,1873.92,144.0,1350.34,0.0,1494.34,144.0,235.58,379.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-skylights-storms.xml,1874.16,144.0,1347.01,0.0,1491.01,144.0,239.15,383.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1874.12,144.0,1350.69,0.0,1494.69,144.0,235.43,379.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-split-level.xml,1488.46,144.0,1080.68,0.0,1224.68,144.0,119.78,263.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-split-level.xml,1488.51,144.0,1080.79,0.0,1224.79,144.0,119.72,263.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-thermal-mass.xml,1845.95,144.0,1317.67,0.0,1461.67,144.0,240.28,384.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-walltypes.xml,1990.86,144.0,1276.58,0.0,1420.58,144.0,426.28,570.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-windows-natural-ventilation-availability.xml,1813.99,144.0,1283.38,0.0,1427.38,144.0,242.61,386.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -159,12 +159,12 @@ base-foundation-conditioned-basement-slab-insulation-full.xml,1834.58,144.0,1338 base-foundation-conditioned-basement-slab-insulation.xml,1842.73,144.0,1326.95,0.0,1470.95,144.0,227.78,371.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-conditioned-basement-wall-insulation.xml,1823.93,144.0,1302.43,0.0,1446.43,144.0,233.5,377.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-conditioned-crawlspace.xml,1545.79,144.0,1062.24,0.0,1206.24,144.0,195.55,339.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-multiple.xml,1516.28,144.0,1090.23,0.0,1234.23,144.0,138.05,282.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-slab.xml,1476.16,144.0,1075.28,0.0,1219.28,144.0,112.88,256.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1532.82,144.0,1095.58,0.0,1239.58,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1487.86,144.0,1073.24,0.0,1217.24,144.0,126.62,270.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement-wall-insulation.xml,1562.38,144.0,1062.55,0.0,1206.55,144.0,211.83,355.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement.xml,1517.9,144.0,1091.33,0.0,1235.33,144.0,138.57,282.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-multiple.xml,1516.12,144.0,1090.29,0.0,1234.29,144.0,137.83,281.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-slab.xml,1476.21,144.0,1075.4,0.0,1219.4,144.0,112.81,256.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement-above-grade.xml,1532.63,144.0,1095.61,0.0,1239.61,144.0,149.02,293.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement-assembly-r.xml,1487.46,144.0,1073.35,0.0,1217.35,144.0,126.11,270.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1561.27,144.0,1062.73,0.0,1206.73,144.0,210.54,354.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement.xml,1517.6,144.0,1091.42,0.0,1235.42,144.0,138.18,282.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-unvented-crawlspace.xml,1497.14,144.0,1094.83,0.0,1238.83,144.0,114.31,258.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-vented-crawlspace.xml,1516.37,144.0,1092.87,0.0,1236.87,144.0,135.5,279.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-walkout-basement.xml,1923.01,144.0,1333.25,0.0,1477.25,144.0,301.76,445.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -216,11 +216,11 @@ base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,1819.3,144.0,1279.93,0.0,1 base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1795.21,144.0,1256.04,0.0,1400.04,144.0,251.17,395.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-furnace-gas-only.xml,1681.87,144.0,1139.26,0.0,1283.26,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-furnace-gas-room-ac.xml,1870.89,144.0,1325.73,0.0,1469.73,144.0,257.16,401.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1408.43,144.0,1264.43,0.0,1408.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1495.55,144.0,1351.55,0.0,1495.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1626.32,144.0,1482.32,0.0,1626.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1610.61,144.0,1466.61,0.0,1610.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1610.61,144.0,1466.61,0.0,1610.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1410.07,144.0,1266.07,0.0,1410.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1494.47,144.0,1350.47,0.0,1494.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1623.72,144.0,1479.72,0.0,1623.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1608.41,144.0,1464.41,0.0,1608.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1608.41,144.0,1464.41,0.0,1608.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,1380.18,144.0,1236.18,0.0,1380.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,1354.02,144.0,1210.02,0.0,1354.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,1486.98,144.0,1342.98,0.0,1486.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -291,11 +291,11 @@ base-hvac-furnace-propane-only.xml,1912.48,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,1630.62,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-geothermal-loop.xml,1593.41,144.0,1449.41,0.0,1593.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1391.81,144.0,1247.81,0.0,1391.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1611.61,144.0,1467.61,0.0,1611.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1490.44,144.0,1346.44,0.0,1490.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,1526.89,144.0,1382.89,0.0,1526.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1610.57,144.0,1466.57,0.0,1610.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1392.76,144.0,1248.76,0.0,1392.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1609.5,144.0,1465.5,0.0,1609.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1489.56,144.0,1345.56,0.0,1489.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,1525.52,144.0,1381.52,0.0,1525.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump.xml,1608.55,144.0,1464.55,0.0,1608.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1941.16,144.0,1797.16,0.0,1941.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1753.34,144.0,1609.34,0.0,1753.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1734.42,144.0,1590.42,0.0,1734.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -303,7 +303,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1890.39,144.0,1347. base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1834.46,144.0,1291.85,0.0,1435.85,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1810.78,144.0,1268.18,0.0,1412.18,144.0,254.6,398.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-furnace-gas-only.xml,1683.54,144.0,1133.54,0.0,1277.54,144.0,262.0,406.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1680.34,144.0,1536.34,0.0,1680.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1677.93,144.0,1533.93,0.0,1677.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1392.28,144.0,1248.28,0.0,1392.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1636.52,144.0,1492.52,0.0,1636.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1368.78,144.0,1224.78,0.0,1368.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -317,7 +317,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1692.21,144.0,1309.03 base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1881.87,144.0,1305.44,0.0,1449.44,0.0,0.0,0.0,0.0,432.43,432.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1525.19,144.0,1381.19,0.0,1525.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ductless.xml,1525.19,144.0,1381.19,0.0,1525.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-multiple.xml,2498.78,144.0,1908.99,0.0,2052.99,144.0,75.86,219.86,0.0,125.98,125.98,0.0,99.95,99.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-multiple.xml,2497.28,144.0,1907.64,0.0,2051.64,144.0,75.82,219.82,0.0,125.92,125.92,0.0,99.9,99.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2521.91,144.0,2377.91,0.0,2521.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-electricity.xml,2026.83,144.0,1882.83,0.0,2026.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-natural-gas.xml,1781.03,144.0,1273.0,0.0,1417.0,144.0,220.03,364.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -349,12 +349,12 @@ base-lighting-none.xml,1688.12,144.0,1128.62,0.0,1272.62,144.0,271.5,415.5,0.0,0 base-location-AMY-2012.xml,1912.09,144.0,1279.38,0.0,1423.38,144.0,344.71,488.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-location-baltimore-md.xml,1592.96,144.0,1170.52,0.0,1314.52,144.0,134.44,278.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-location-capetown-zaf.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-dallas-tx.xml,1498.98,144.0,1192.68,0.0,1336.68,144.0,18.3,162.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-duluth-mn.xml,1706.42,144.0,1107.87,0.0,1251.87,144.0,310.55,454.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-dallas-tx.xml,1499.02,144.0,1192.73,0.0,1336.73,144.0,18.29,162.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1705.76,144.0,1107.93,0.0,1251.93,144.0,309.83,453.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-location-helena-mt.xml,1673.32,144.0,1029.37,0.0,1173.37,144.0,355.95,499.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-honolulu-hi.xml,4505.28,144.0,4361.28,0.0,4505.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-miami-fl.xml,1475.23,144.0,1331.23,0.0,1475.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-phoenix-az.xml,1631.1,144.0,1343.09,0.0,1487.09,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4504.49,144.0,4360.49,0.0,4504.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-miami-fl.xml,1475.02,144.0,1331.02,0.0,1475.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-phoenix-az.xml,1630.89,144.0,1342.88,0.0,1486.88,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1210.09,144.0,824.06,0.0,968.06,144.0,98.03,242.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-mechvent-balanced.xml,2124.34,144.0,1387.02,0.0,1531.02,144.0,449.32,593.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-mechvent-bath-kitchen-fans.xml,1870.53,144.0,1322.74,0.0,1466.74,144.0,259.79,403.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From cf142ef401aa9777216ed799606442b485e5226a Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 25 Sep 2023 14:47:37 -0700 Subject: [PATCH 157/217] Add min/max bore depths to epvalidator. --- HPXMLtoOpenStudio/measure.xml | 8 ++++---- .../resources/hpxml_schematron/EPvalidator.xml | 4 +++- HPXMLtoOpenStudio/tests/test_validation.rb | 4 ++++ 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 1e490f7e19..d8b0c4fd18 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - b98b6086-f46e-4d9e-b1de-134df001c9d8 - 2023-09-21T23:18:30Z + ff7e6395-fbeb-41ff-8807-56013400f37e + 2023-09-25T21:45:45Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -310,7 +310,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 83E894DE + 7E39ADA5 hpxml_schematron/iso-schematron.xsd @@ -616,7 +616,7 @@ test_validation.rb rb test - BC6B1DD4 + 3BD0BD1A test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 1d896f8f0b..5214efebbc 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1301,7 +1301,9 @@ Expected LoopFlow to be greater than 0 Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Count Expected BoreholesOrTrenches/Count to be greater than 0 - Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Length + Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Length + Expected BoreholesOrTrenches/Length to be greater than or equal to 79 + Expected BoreholesOrTrenches/Length to be less than or equal to 500 Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Spacing Expected BoreholesOrTrenches/Spacing to be greater than 0 Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Diameter diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 48247aacc8..f433f0a0a2 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -115,6 +115,7 @@ def test_schema_schematron_error_messages 'hvac-frac-load-served' => ['Expected sum(FractionHeatLoadServed) to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails]', 'Expected sum(FractionCoolLoadServed) to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails]'], 'hvac-gshp-invalid-bore-config' => ["Expected BorefieldConfiguration to be 'Rectangle' or 'Open Rectangle' or 'C' or 'L' or 'U' or 'Lopsided U' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop, id: \"GeothermalLoop1\"]"], + 'hvac-gshp-invalid-bore-depth' => ['Expected BoreholesOrTrenches/Length to be less than or equal to 500 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop, id: "GeothermalLoop1"]'], 'hvac-location-heating-system' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], 'hvac-location-cooling-system' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], 'hvac-location-heat-pump' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], @@ -378,6 +379,9 @@ def test_schema_schematron_error_messages elsif ['hvac-gshp-invalid-bore-config'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop.xml')) hpxml.geothermal_loops[0].bore_config = 'Invalid' + elsif ['hvac-gshp-invalid-bore-depth'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop.xml')) + hpxml.geothermal_loops[0].bore_length = 1260 elsif ['hvac-location-heating-system'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-boiler-oil-only.xml')) hpxml.heating_systems[0].location = HPXML::LocationBasementUnconditioned From 33d166c18e8f16bf41207e239d8b0dceeebb6a8a Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 25 Sep 2023 15:36:53 -0700 Subject: [PATCH 158/217] Add more validation tests. --- HPXMLtoOpenStudio/measure.xml | 8 ++++---- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 6 +++--- HPXMLtoOpenStudio/tests/test_validation.rb | 13 +++++++++---- 3 files changed, 16 insertions(+), 11 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index d8b0c4fd18..947bef1e0a 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - ff7e6395-fbeb-41ff-8807-56013400f37e - 2023-09-25T21:45:45Z + d4b83785-09ee-4c40-9562-03c75585ebf4 + 2023-09-25T22:34:12Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -328,7 +328,7 @@ hvac_sizing.rb rb resource - A0C35AFD + A892EBBC lighting.rb @@ -616,7 +616,7 @@ test_validation.rb rb test - 3BD0BD1A + 2BA7DA63 test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 8f5ee9d0c5..94940c4af2 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1903,10 +1903,10 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) num_bore_holes = [1, (UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') + 0.5).floor].max end - min_bore_depth = Float(UnitConversions.convert(24.0, 'm', 'ft').round) # based on g-function library + min_bore_depth = UnitConversions.convert(24.0, 'm', 'ft').round # based on g-function library # In NY the following is the depth that requires a mining permit, which has been a barrier for Dandelion Energy with installing GSHPs. # Sounds like people are pushing ever deeper but for now we can apply this limit and add a note about where it came from. - max_bore_depth = 500.0 # ft + max_bore_depth = 500 # ft bore_depth = geothermal_loop.bore_length if bore_depth.nil? @@ -1930,7 +1930,7 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) end if (bore_depth < min_bore_depth) || (bore_depth > max_bore_depth) - fail "Bore depth (#{bore_depth}) not between #{min_bore_depth.round(3)} and #{max_bore_depth.round(3)} ft." + fail "Bore depth (#{bore_depth} ft) not between #{min_bore_depth} and #{max_bore_depth} ft." end bore_config = geothermal_loop.bore_config diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index f433f0a0a2..5b899c4d47 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -855,8 +855,9 @@ def test_ruby_error_messages 'hvac-distribution-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-cooling' => ["Multiple cooling systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], - 'hvac-gshp-invalid-bore-depth' => ['Bore depth (1260.0) not between 79.0 and 500.0 ft.'], + 'hvac-gshp-invalid-bore-depth-autosized' => ['Bore depth (552 ft) not between 79 and 500 ft.'], 'hvac-gshp-invalid-num-bore-holes' => ["Number of bore holes (5) with borefield configuration 'Lopsided U' not supported."], + 'hvac-gshp-invalid-num-bore-holes-autosized' => ["Number of bore holes (11) with borefield configuration 'Rectangle' not supported."], 'hvac-inconsistent-fan-powers' => ["Fan powers for heating system 'HeatingSystem1' and cooling system 'CoolingSystem1' are attached to a single distribution system and therefore must be the same."], 'hvac-invalid-distribution-system-type' => ["Incorrect HVAC distribution system type for HVAC type: 'Furnace'. Should be one of: ["], 'hvac-shared-boiler-multiple' => ['More than one shared heating system found.'], @@ -1019,12 +1020,16 @@ def test_ruby_error_messages hpxml.heating_systems << hpxml.heating_systems[0].dup hpxml.heating_systems[1].id = "HeatingSystem#{hpxml.heating_systems.size}" hpxml.heating_systems[0].primary_system = false - elsif ['hvac-gshp-invalid-bore-depth'].include? error_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop.xml')) - hpxml.geothermal_loops[0].bore_length = 1260 + elsif ['hvac-gshp-invalid-bore-depth-autosized'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-ground-to-air-heat-pump.xml')) + hpxml.site.ground_conductivity = 0.1 elsif ['hvac-gshp-invalid-num-bore-holes'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop.xml')) hpxml.geothermal_loops[0].num_bore_holes = 5 + elsif ['hvac-gshp-invalid-num-bore-holes-autosized'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-ground-to-air-heat-pump.xml')) + hpxml.heat_pumps[0].cooling_capacity *= 2 + hpxml.site.ground_conductivity = 0.08 elsif ['hvac-inconsistent-fan-powers'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) hpxml.cooling_systems[0].fan_watts_per_cfm = 0.55 From a1a011cb02888de54c8059d250dea9abbbedb78d Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 26 Sep 2023 20:45:05 -0700 Subject: [PATCH 159/217] Check boreholes between 1 and 10 in epvalidator. --- HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 5214efebbc..77d86829a8 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1300,7 +1300,8 @@ Expected 0 or 1 element(s) for xpath: LoopFlow Expected LoopFlow to be greater than 0 Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Count - Expected BoreholesOrTrenches/Count to be greater than 0 + Expected BoreholesOrTrenches/Count to be greater than or equal to 1 + Expected BoreholesOrTrenches/Count to be less than or equal to 10 Expected 0 or 1 element(s) for xpath: BoreholesOrTrenches/Length Expected BoreholesOrTrenches/Length to be greater than or equal to 79 Expected BoreholesOrTrenches/Length to be less than or equal to 500 From 1af2523d2d6d03b1402a49108dea23b437bb3b8f Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 26 Sep 2023 20:45:36 -0700 Subject: [PATCH 160/217] Pass runner through hpxml_defaults to hvac_sizing. --- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 05db432fc0..15bfd188a8 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -65,7 +65,7 @@ def self.apply(runner, hpxml, eri_version, weather, epw_file: nil, schedules_fil apply_batteries(hpxml) # Do HVAC sizing after all other defaults have been applied - apply_hvac_sizing(hpxml, weather, cfa) + apply_hvac_sizing(runner, hpxml, weather, cfa) end def self.get_default_azimuths(hpxml) @@ -2934,11 +2934,11 @@ def self.apply_fuel_loads(hpxml, cfa, schedules_file) end end - def self.apply_hvac_sizing(hpxml, weather, cfa) + def self.apply_hvac_sizing(runner, hpxml, weather, cfa) hvac_systems = HVAC.get_hpxml_hvac_systems(hpxml) # Calculate building design loads and equipment capacities/airflows - bldg_design_loads, all_hvac_sizing_values = HVACSizing.calculate(weather, hpxml, cfa, hvac_systems) + bldg_design_loads, all_hvac_sizing_values = HVACSizing.calculate(runner, weather, hpxml, cfa, hvac_systems) hvacpl = hpxml.hvac_plant tol = 10 # Btuh From 0f81e69186fa289b1458ef5c24c62de5b9cbe61f Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 26 Sep 2023 20:46:26 -0700 Subject: [PATCH 161/217] Prevent bore autosizing from leading to errors. --- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 36 ++++++++++++++-------- 1 file changed, 23 insertions(+), 13 deletions(-) diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 94940c4af2..4284d63468 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class HVACSizing - def self.calculate(weather, hpxml, cfa, hvac_systems) + def self.calculate(runner, weather, hpxml, cfa, hvac_systems) # Calculates heating/cooling design loads, and selects equipment # values (e.g., capacities, airflows) specific to each HVAC system. # Calculations generally follow ACCA Manual J/S. @@ -45,10 +45,10 @@ def self.calculate(weather, hpxml, cfa, hvac_systems) apply_hvac_loads(hvac_heating, hvac_sizing_values, system_design_loads, ducts_heat_load, ducts_cool_load_sens, ducts_cool_load_lat) apply_hvac_size_limits(hvac_cooling) apply_hvac_heat_pump_logic(hvac_sizing_values, hvac_cooling) - apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heating, hvac_cooling, hvac_system) + apply_hvac_equipment_adjustments(runner, hvac_sizing_values, weather, hvac_heating, hvac_cooling, hvac_system) apply_hvac_installation_quality(hvac_sizing_values, hvac_heating, hvac_cooling) apply_hvac_fixed_capacities(hvac_sizing_values, hvac_heating, hvac_cooling) - apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) + apply_hvac_ground_loop(runner, hvac_sizing_values, weather, hvac_cooling) apply_hvac_finalize_airflows(hvac_sizing_values, hvac_heating, hvac_cooling) all_hvac_sizing_values[hvac_system] = hvac_sizing_values @@ -1328,7 +1328,7 @@ def self.apply_load_ducts(bldg_design_loads, total_ducts_heat_load, total_ducts_ bldg_design_loads.Cool_Tot += total_ducts_cool_load_sens.to_f + total_ducts_cool_load_lat.to_f end - def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heating, hvac_cooling, hvac_system) + def self.apply_hvac_equipment_adjustments(runner, hvac_sizing_values, weather, hvac_heating, hvac_cooling, hvac_system) ''' Equipment Adjustments ''' @@ -1567,7 +1567,7 @@ def self.apply_hvac_equipment_adjustments(hvac_sizing_values, weather, hvac_heat HPXML::HVACTypeHeatPumpMiniSplit, HPXML::HVACTypeHeatPumpPTHP, HPXML::HVACTypeHeatPumpRoom].include? @heating_type - process_heat_pump_adjustment(hvac_sizing_values, weather, hvac_heating, total_cap_curve_value, hvac_system) + process_heat_pump_adjustment(runner, hvac_sizing_values, weather, hvac_heating, total_cap_curve_value, hvac_system) hvac_sizing_values.Heat_Capacity_Supp = hvac_sizing_values.Heat_Load_Supp if @heating_type == HPXML::HVACTypeHeatPumpAirToAir hvac_sizing_values.Heat_Airflow = calc_airflow_rate_manual_s(hvac_sizing_values.Heat_Capacity, (@supply_air_temp - @heat_setpoint)) @@ -1877,7 +1877,7 @@ def self.apply_hvac_fixed_capacities(hvac_sizing_values, hvac_heating, hvac_cool end end - def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) + def self.apply_hvac_ground_loop(runner, hvac_sizing_values, weather, hvac_cooling) ''' GSHP Ground Loop Sizing Calculations ''' @@ -1916,21 +1916,31 @@ def self.apply_hvac_ground_loop(hvac_sizing_values, weather, hvac_cooling) bore_depth = (bore_length / num_bore_holes).floor # ft active_length = 5 # the active length starts about 5 ft below the surface - for _i in 0..active_length - 1 - if (bore_depth + active_length < min_bore_depth) && (num_bore_holes > 1) + for _i in 0..50 + if (bore_depth + active_length < min_bore_depth) || (num_bore_holes > 10) num_bore_holes -= 1 bore_depth = (bore_length / num_bore_holes).floor - elsif bore_depth + active_length > max_bore_depth + elsif (bore_depth + active_length > max_bore_depth) num_bore_holes += 1 bore_depth = (bore_length / num_bore_holes).floor end + + if ((num_bore_holes == 1) && (bore_depth < min_bore_depth)) || ((num_bore_holes == 10) && (bore_depth > max_bore_depth)) + break # we can't do any better + end end bore_depth = (bore_length / num_bore_holes).floor + active_length end - if (bore_depth < min_bore_depth) || (bore_depth > max_bore_depth) - fail "Bore depth (#{bore_depth} ft) not between #{min_bore_depth} and #{max_bore_depth} ft." + if bore_depth < min_bore_depth + bore_depth = min_bore_depth + runner.registerWarning("Reached a minimum of 1 borehole; setting bore depth to the minimum (#{min_bore_depth} ft).") + end + + if bore_depth > max_bore_depth + bore_depth = max_bore_depth + runner.registerWarning("Reached a maximum of 10 boreholes; setting bore depth to the maximum (#{max_bore_depth} ft).") end bore_config = geothermal_loop.bore_config @@ -1974,7 +1984,7 @@ def self.apply_hvac_finalize_airflows(hvac_sizing_values, hvac_heating, hvac_coo end end - def self.process_heat_pump_adjustment(hvac_sizing_values, weather, hvac_heating, total_cap_curve_value, hvac_system) + def self.process_heat_pump_adjustment(runner, hvac_sizing_values, weather, hvac_heating, total_cap_curve_value, hvac_system) ''' Adjust heat pump sizing ''' @@ -2000,7 +2010,7 @@ def self.process_heat_pump_adjustment(hvac_sizing_values, weather, hvac_heating, # Calculate the heating load at the switchover temperature to limit uninitialized capacity temp_heat_design_temp = @hpxml.header.manualj_heating_design_temp @hpxml.header.manualj_heating_design_temp = min_compressor_temp - _alternate_bldg_design_loads, alternate_all_hvac_sizing_values = calculate(weather, @hpxml, @cfa, [hvac_system]) + _alternate_bldg_design_loads, alternate_all_hvac_sizing_values = calculate(runner, weather, @hpxml, @cfa, [hvac_system]) heating_load = alternate_all_hvac_sizing_values[hvac_system].Heat_Load heating_db = min_compressor_temp @hpxml.header.manualj_heating_design_temp = temp_heat_design_temp From 17dea007d5caafa7a5e29a888aa17a99ebbe2352 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 26 Sep 2023 20:46:40 -0700 Subject: [PATCH 162/217] Update hvac_sizing and validation tests. --- BuildResidentialHPXML/measure.xml | 1888 ++++++++++++++++++- HPXMLtoOpenStudio/measure.xml | 14 +- HPXMLtoOpenStudio/tests/test_hvac_sizing.rb | 36 + HPXMLtoOpenStudio/tests/test_validation.rb | 16 +- 4 files changed, 1940 insertions(+), 14 deletions(-) diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index e80cf22610..07ffa5c632 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - ffed7f3b-ac98-43c7-b4f7-12d1cf046dfc - 2023-09-21T23:18:28Z + ab6d0ab7-532a-45b8-844b-e3dd3a5a5939 + 2023-09-27T03:43:19Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -7012,5 +7012,1889 @@ test 41258568 + + extra_files/base-mf.osm + osm + test + 8A67671D + + + extra_files/base-mf.xml + xml + test + D9D0C362 + + + extra_files/base-mf2.osm + osm + test + 13A11CB6 + + + extra_files/base-mf2.xml + xml + test + 259ABB0D + + + extra_files/base-mf3.osm + osm + test + A6EDBF7C + + + extra_files/base-mf3.xml + xml + test + 4D8977C5 + + + extra_files/base-mf4.osm + osm + test + 790B1EFB + + + extra_files/base-mf4.xml + xml + test + B03CE6CD + + + extra_files/base-sfa.osm + osm + test + 8A476DF0 + + + extra_files/base-sfa.xml + xml + test + 3D5B2006 + + + extra_files/base-sfa2.osm + osm + test + 5F60C790 + + + extra_files/base-sfa2.xml + xml + test + 2755E083 + + + extra_files/base-sfa3.osm + osm + test + 546682C5 + + + extra_files/base-sfa3.xml + xml + test + 8529104F + + + extra_files/base-sfd.osm + osm + test + 07D5F025 + + + extra_files/base-sfd.xml + xml + test + F6999140 + + + extra_files/base-sfd2.osm + osm + test + B48FA53E + + + extra_files/base-sfd2.xml + xml + test + BAD328BC + + + extra_files/error-ambient-with-garage.osm + osm + test + 850218F7 + + + extra_files/error-bills-args-not-all-same-size.osm + osm + test + 6E87BE55 + + + extra_files/error-conditioned-attic-with-one-floor-above-grade.osm + osm + test + 73F51753 + + + extra_files/error-cooling-system-and-heat-pump.osm + osm + test + 61FC826F + + + extra_files/error-dhw-indirect-without-boiler.osm + osm + test + 27765992 + + + extra_files/error-different-weather-station-epw.osm + osm + test + 169B4147 + + + extra_files/error-different-window-natvent-availability.osm + osm + test + 4D674396 + + + extra_files/error-emissions-args-not-all-same-size.osm + osm + test + 49E90104 + + + extra_files/error-emissions-args-not-all-specified.osm + osm + test + 52A18C9B + + + extra_files/error-emissions-natural-gas-args-not-all-specified.osm + osm + test + 82EA0A93 + + + extra_files/error-garage-too-deep.osm + osm + test + CE797B66 + + + extra_files/error-garage-too-wide.osm + osm + test + 34267B7A + + + extra_files/error-heating-system-and-heat-pump.osm + osm + test + 8511F65E + + + extra_files/error-hip-roof-and-protruding-garage.osm + osm + test + C118087D + + + extra_files/error-invalid-aspect-ratio.osm + osm + test + 63575D1B + + + extra_files/error-invalid-door-area.osm + osm + test + A36243F5 + + + extra_files/error-invalid-garage-protrusion.osm + osm + test + C2DC6B21 + + + extra_files/error-invalid-window-aspect-ratio.osm + osm + test + 725F90AE + + + extra_files/error-mf-all-adiabatic-walls.osm + osm + test + 232D9805 + + + extra_files/error-mf-bottom-crawlspace-zero-foundation-height.osm + osm + test + CCD576D7 + + + extra_files/error-mf-conditioned-attic.osm + osm + test + 9F938A97 + + + extra_files/error-mf-no-building-num-units.osm + osm + test + 113ED618 + + + extra_files/error-mf-two-stories.osm + osm + test + 62A1FFDA + + + extra_files/error-negative-foundation-height.osm + osm + test + FB359D6E + + + extra_files/error-protruding-garage-under-gable-roof.osm + osm + test + 358F46BE + + + extra_files/error-rim-joist-assembly-r-but-no-height.osm + osm + test + D8AC01AC + + + extra_files/error-rim-joist-height-but-no-assembly-r.osm + osm + test + 70456851 + + + extra_files/error-same-utility-bill-scenario-name.osm + osm + test + 24AD466B + + + extra_files/error-second-heating-system-but-no-primary-heating.osm + osm + test + D01C1269 + + + extra_files/error-second-heating-system-ducted-with-ducted-primary-heating.osm + osm + test + 0092DC33 + + + extra_files/error-sfa-above-apartment.osm + osm + test + 98D6F587 + + + extra_files/error-sfa-all-adiabatic-walls.osm + osm + test + A336C81F + + + extra_files/error-sfa-below-apartment.osm + osm + test + 88510855 + + + extra_files/error-sfa-no-building-num-units.osm + osm + test + E32541C6 + + + extra_files/error-sfa-no-non-adiabatic-walls.osm + osm + test + C6A780FB + + + extra_files/error-sfd-adiabatic-walls.osm + osm + test + 7CFA63C5 + + + extra_files/error-sfd-conditioned-basement-zero-foundation-height.osm + osm + test + 19360E20 + + + extra_files/error-sfd-with-shared-system.osm + osm + test + 27799D68 + + + extra_files/error-too-many-floors.osm + osm + test + 7DAF3E28 + + + extra_files/error-vented-attic-with-zero-floor-insulation.osm + osm + test + 7EE72FD2 + + + extra_files/error-vented-attic-with-zero-floor-insulation.xml + xml + test + E55385BC + + + extra_files/error-zero-number-of-bedrooms.osm + osm + test + 81816D49 + + + extra_files/extra-auto-duct-locations.osm + osm + test + 2809EE48 + + + extra_files/extra-auto-duct-locations.xml + xml + test + 2C479001 + + + extra_files/extra-auto.osm + osm + test + 85FEDE77 + + + extra_files/extra-auto.xml + xml + test + BB250DD5 + + + extra_files/extra-battery-attic.osm + osm + test + ACFF5DA7 + + + extra_files/extra-battery-attic.xml + xml + test + 05C4B25C + + + extra_files/extra-battery-crawlspace.osm + osm + test + BEEB0949 + + + extra_files/extra-battery-crawlspace.xml + xml + test + 39BF76BC + + + extra_files/extra-bills-fossil-fuel-rates.osm + osm + test + B7CF951F + + + extra_files/extra-bills-fossil-fuel-rates.xml + xml + test + 6B37F132 + + + extra_files/extra-dhw-solar-latitude.osm + osm + test + E6BE7A97 + + + extra_files/extra-dhw-solar-latitude.xml + xml + test + 8228F988 + + + extra_files/extra-ducts-attic.osm + osm + test + 59ACEB6C + + + extra_files/extra-ducts-attic.xml + xml + test + F6999140 + + + extra_files/extra-ducts-crawlspace.osm + osm + test + 4B756AE8 + + + extra_files/extra-ducts-crawlspace.xml + xml + test + 2B705FB1 + + + extra_files/extra-emissions-fossil-fuel-factors.osm + osm + test + 12139692 + + + extra_files/extra-emissions-fossil-fuel-factors.xml + xml + test + F7CBA81A + + + extra_files/extra-enclosure-atticroof-conditioned-eaves-gable.osm + osm + test + BA50CE82 + + + extra_files/extra-enclosure-atticroof-conditioned-eaves-gable.xml + xml + test + 165956AB + + + extra_files/extra-enclosure-atticroof-conditioned-eaves-hip.osm + osm + test + 4409F2AA + + + extra_files/extra-enclosure-atticroof-conditioned-eaves-hip.xml + xml + test + 7FA8E81F + + + extra_files/extra-enclosure-garage-atticroof-conditioned.osm + osm + test + EF3D471C + + + extra_files/extra-enclosure-garage-atticroof-conditioned.xml + xml + test + A6A5BC13 + + + extra_files/extra-enclosure-garage-partially-protruded.osm + osm + test + 8DFDAD5B + + + extra_files/extra-enclosure-garage-partially-protruded.xml + xml + test + 277C061B + + + extra_files/extra-enclosure-windows-shading.osm + osm + test + B5271F0D + + + extra_files/extra-enclosure-windows-shading.xml + xml + test + E9A2AFF5 + + + extra_files/extra-gas-hot-tub-heater-with-zero-kwh.osm + osm + test + 1E5417AA + + + extra_files/extra-gas-hot-tub-heater-with-zero-kwh.xml + xml + test + A7B6F187 + + + extra_files/extra-gas-pool-heater-with-zero-kwh.osm + osm + test + 2EF92A3F + + + extra_files/extra-gas-pool-heater-with-zero-kwh.xml + xml + test + 170D94FF + + + extra_files/extra-iecc-zone-different-than-epw.osm + osm + test + 2F8DFEF1 + + + extra_files/extra-iecc-zone-different-than-epw.xml + xml + test + 0F907273 + + + extra_files/extra-mf-ambient.osm + osm + test + 930C18EB + + + extra_files/extra-mf-ambient.xml + xml + test + AB2B3211 + + + extra_files/extra-mf-atticroof-flat.osm + osm + test + 2CDA73DE + + + extra_files/extra-mf-atticroof-flat.xml + xml + test + 73896F35 + + + extra_files/extra-mf-atticroof-vented.osm + osm + test + DF73EAE6 + + + extra_files/extra-mf-atticroof-vented.xml + xml + test + F60A0DF0 + + + extra_files/extra-mf-eaves.osm + osm + test + D5287B46 + + + extra_files/extra-mf-eaves.xml + xml + test + 2C16D65B + + + extra_files/extra-mf-exterior-corridor.osm + osm + test + A1761327 + + + extra_files/extra-mf-exterior-corridor.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-rear-units.osm + osm + test + 070E85FA + + + extra_files/extra-mf-rear-units.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-slab-left-bottom-rear-units.osm + osm + test + BA6BFD5B + + + extra_files/extra-mf-slab-left-bottom-rear-units.xml + xml + test + 7605C590 + + + extra_files/extra-mf-slab-left-bottom.osm + osm + test + BC7ECCD5 + + + extra_files/extra-mf-slab-left-bottom.xml + xml + test + 0405C24C + + + extra_files/extra-mf-slab-left-middle-rear-units.osm + osm + test + 0036A7F5 + + + extra_files/extra-mf-slab-left-middle-rear-units.xml + xml + test + 60B13281 + + + extra_files/extra-mf-slab-left-middle.osm + osm + test + C3E1EC3F + + + extra_files/extra-mf-slab-left-middle.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-slab-left-top-rear-units.osm + osm + test + 5C172890 + + + extra_files/extra-mf-slab-left-top-rear-units.xml + xml + test + 60B13281 + + + extra_files/extra-mf-slab-left-top.osm + osm + test + E22B5830 + + + extra_files/extra-mf-slab-left-top.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-slab-middle-bottom-rear-units.osm + osm + test + 9DD09175 + + + extra_files/extra-mf-slab-middle-bottom-rear-units.xml + xml + test + FACC6D3E + + + extra_files/extra-mf-slab-middle-bottom.osm + osm + test + E7C0AC96 + + + extra_files/extra-mf-slab-middle-bottom.xml + xml + test + 8B9952D5 + + + extra_files/extra-mf-slab-middle-middle-rear-units.osm + osm + test + 6E202D81 + + + extra_files/extra-mf-slab-middle-middle-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-slab-middle-middle.osm + osm + test + D9340320 + + + extra_files/extra-mf-slab-middle-middle.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-slab-middle-top-rear-units.osm + osm + test + 5114044D + + + extra_files/extra-mf-slab-middle-top-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-slab-middle-top.osm + osm + test + CBDEA4BE + + + extra_files/extra-mf-slab-middle-top.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-slab-rear-units.osm + osm + test + 270CE6D0 + + + extra_files/extra-mf-slab-rear-units.xml + xml + test + 7605C590 + + + extra_files/extra-mf-slab-right-bottom-rear-units.osm + osm + test + 8D41D6B3 + + + extra_files/extra-mf-slab-right-bottom-rear-units.xml + xml + test + FACC6D3E + + + extra_files/extra-mf-slab-right-bottom.osm + osm + test + 934C1B2B + + + extra_files/extra-mf-slab-right-bottom.xml + xml + test + 8B9952D5 + + + extra_files/extra-mf-slab-right-middle-rear-units.osm + osm + test + 5044CC39 + + + extra_files/extra-mf-slab-right-middle-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-slab-right-middle.osm + osm + test + 9E6AC950 + + + extra_files/extra-mf-slab-right-middle.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-slab-right-top-rear-units.osm + osm + test + C3B46A24 + + + extra_files/extra-mf-slab-right-top-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-slab-right-top.osm + osm + test + FE17CA24 + + + extra_files/extra-mf-slab-right-top.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-slab.osm + osm + test + F96FF6B1 + + + extra_files/extra-mf-slab.xml + xml + test + 0405C24C + + + extra_files/extra-mf-unvented-crawlspace-left-bottom-rear-units.osm + osm + test + 69D63E6B + + + extra_files/extra-mf-unvented-crawlspace-left-bottom-rear-units.xml + xml + test + D256CC5F + + + extra_files/extra-mf-unvented-crawlspace-left-bottom.osm + osm + test + 72567119 + + + extra_files/extra-mf-unvented-crawlspace-left-bottom.xml + xml + test + 16ABA66D + + + extra_files/extra-mf-unvented-crawlspace-left-middle-rear-units.osm + osm + test + 208B7F48 + + + extra_files/extra-mf-unvented-crawlspace-left-middle-rear-units.xml + xml + test + 60B13281 + + + extra_files/extra-mf-unvented-crawlspace-left-middle.osm + osm + test + 4B43F2C6 + + + extra_files/extra-mf-unvented-crawlspace-left-middle.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-unvented-crawlspace-left-top-rear-units.osm + osm + test + 723E7FAF + + + extra_files/extra-mf-unvented-crawlspace-left-top-rear-units.xml + xml + test + 60B13281 + + + extra_files/extra-mf-unvented-crawlspace-left-top.osm + osm + test + 3BB395F5 + + + extra_files/extra-mf-unvented-crawlspace-left-top.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-unvented-crawlspace-middle-bottom-rear-units.osm + osm + test + 31AE05B5 + + + extra_files/extra-mf-unvented-crawlspace-middle-bottom-rear-units.xml + xml + test + 5F6762DE + + + extra_files/extra-mf-unvented-crawlspace-middle-bottom.osm + osm + test + 9FD6A5D0 + + + extra_files/extra-mf-unvented-crawlspace-middle-bottom.xml + xml + test + CDE985FA + + + extra_files/extra-mf-unvented-crawlspace-middle-middle-rear-units.osm + osm + test + 8D8EB2A1 + + + extra_files/extra-mf-unvented-crawlspace-middle-middle-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-unvented-crawlspace-middle-middle.osm + osm + test + 690095F6 + + + extra_files/extra-mf-unvented-crawlspace-middle-middle.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-unvented-crawlspace-middle-top-rear-units.osm + osm + test + 44089920 + + + extra_files/extra-mf-unvented-crawlspace-middle-top-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-unvented-crawlspace-middle-top.osm + osm + test + 896B4666 + + + extra_files/extra-mf-unvented-crawlspace-middle-top.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-unvented-crawlspace-rear-units.osm + osm + test + ADAC7345 + + + extra_files/extra-mf-unvented-crawlspace-rear-units.xml + xml + test + D256CC5F + + + extra_files/extra-mf-unvented-crawlspace-right-bottom-rear-units.osm + osm + test + D305F061 + + + extra_files/extra-mf-unvented-crawlspace-right-bottom-rear-units.xml + xml + test + 5F6762DE + + + extra_files/extra-mf-unvented-crawlspace-right-bottom.osm + osm + test + 28D7253A + + + extra_files/extra-mf-unvented-crawlspace-right-bottom.xml + xml + test + CDE985FA + + + extra_files/extra-mf-unvented-crawlspace-right-middle-rear-units.osm + osm + test + 18FDBD8F + + + extra_files/extra-mf-unvented-crawlspace-right-middle-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-unvented-crawlspace-right-middle.osm + osm + test + 7899F841 + + + extra_files/extra-mf-unvented-crawlspace-right-middle.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-unvented-crawlspace-right-top-rear-units.osm + osm + test + E60F5FB6 + + + extra_files/extra-mf-unvented-crawlspace-right-top-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-unvented-crawlspace-right-top.osm + osm + test + BC30C1DA + + + extra_files/extra-mf-unvented-crawlspace-right-top.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-unvented-crawlspace.osm + osm + test + F6A093F0 + + + extra_files/extra-mf-unvented-crawlspace.xml + xml + test + 16ABA66D + + + extra_files/extra-mf-vented-crawlspace-left-bottom-rear-units.osm + osm + test + A4DF6062 + + + extra_files/extra-mf-vented-crawlspace-left-bottom-rear-units.xml + xml + test + A21B42DD + + + extra_files/extra-mf-vented-crawlspace-left-bottom.osm + osm + test + 6AA9D510 + + + extra_files/extra-mf-vented-crawlspace-left-bottom.xml + xml + test + 2597EC51 + + + extra_files/extra-mf-vented-crawlspace-left-middle-rear-units.osm + osm + test + 69F687F3 + + + extra_files/extra-mf-vented-crawlspace-left-middle-rear-units.xml + xml + test + 60B13281 + + + extra_files/extra-mf-vented-crawlspace-left-middle.osm + osm + test + CD0DE226 + + + extra_files/extra-mf-vented-crawlspace-left-middle.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-vented-crawlspace-left-top-rear-units.osm + osm + test + 18FB03FA + + + extra_files/extra-mf-vented-crawlspace-left-top-rear-units.xml + xml + test + 60B13281 + + + extra_files/extra-mf-vented-crawlspace-left-top.osm + osm + test + 59B1EDC9 + + + extra_files/extra-mf-vented-crawlspace-left-top.xml + xml + test + D9D0C362 + + + extra_files/extra-mf-vented-crawlspace-middle-bottom-rear-units.osm + osm + test + 9633E97D + + + extra_files/extra-mf-vented-crawlspace-middle-bottom-rear-units.xml + xml + test + C40133FA + + + extra_files/extra-mf-vented-crawlspace-middle-bottom.osm + osm + test + EE5B8A95 + + + extra_files/extra-mf-vented-crawlspace-middle-bottom.xml + xml + test + 145576E8 + + + extra_files/extra-mf-vented-crawlspace-middle-middle-rear-units.osm + osm + test + 64AA6A1B + + + extra_files/extra-mf-vented-crawlspace-middle-middle-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-vented-crawlspace-middle-middle.osm + osm + test + 1894394F + + + extra_files/extra-mf-vented-crawlspace-middle-middle.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-vented-crawlspace-middle-top-rear-units.osm + osm + test + 2BFD57F5 + + + extra_files/extra-mf-vented-crawlspace-middle-top-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-vented-crawlspace-middle-top.osm + osm + test + 47D6A1AC + + + extra_files/extra-mf-vented-crawlspace-middle-top.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-vented-crawlspace-rear-units.osm + osm + test + 6CF1685C + + + extra_files/extra-mf-vented-crawlspace-rear-units.xml + xml + test + A21B42DD + + + extra_files/extra-mf-vented-crawlspace-right-bottom-rear-units.osm + osm + test + B15EEA71 + + + extra_files/extra-mf-vented-crawlspace-right-bottom-rear-units.xml + xml + test + C40133FA + + + extra_files/extra-mf-vented-crawlspace-right-bottom.osm + osm + test + A1AAA9DF + + + extra_files/extra-mf-vented-crawlspace-right-bottom.xml + xml + test + 145576E8 + + + extra_files/extra-mf-vented-crawlspace-right-middle-rear-units.osm + osm + test + 674CF404 + + + extra_files/extra-mf-vented-crawlspace-right-middle-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-vented-crawlspace-right-middle.osm + osm + test + E21053B8 + + + extra_files/extra-mf-vented-crawlspace-right-middle.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-vented-crawlspace-right-top-rear-units.osm + osm + test + EB8A1A17 + + + extra_files/extra-mf-vented-crawlspace-right-top-rear-units.xml + xml + test + F6F665D8 + + + extra_files/extra-mf-vented-crawlspace-right-top.osm + osm + test + 7480EE78 + + + extra_files/extra-mf-vented-crawlspace-right-top.xml + xml + test + 71E6D44E + + + extra_files/extra-mf-vented-crawlspace.osm + osm + test + 16D46105 + + + extra_files/extra-mf-vented-crawlspace.xml + xml + test + 2597EC51 + + + extra_files/extra-no-rim-joists.osm + osm + test + 616FF867 + + + extra_files/extra-no-rim-joists.xml + xml + test + 965E0D3D + + + extra_files/extra-pv-roofpitch.osm + osm + test + 9489D75E + + + extra_files/extra-pv-roofpitch.xml + xml + test + F6999140 + + + extra_files/extra-seasons-building-america.osm + osm + test + C795734D + + + extra_files/extra-seasons-building-america.xml + xml + test + C1E40019 + + + extra_files/extra-second-heating-system-boiler-to-heat-pump.osm + osm + test + 7A23BD14 + + + extra_files/extra-second-heating-system-boiler-to-heat-pump.xml + xml + test + D40B0729 + + + extra_files/extra-second-heating-system-boiler-to-heating-system.osm + osm + test + 907D92C7 + + + extra_files/extra-second-heating-system-boiler-to-heating-system.xml + xml + test + 401E1EF6 + + + extra_files/extra-second-heating-system-fireplace-to-heat-pump.osm + osm + test + A123EB19 + + + extra_files/extra-second-heating-system-fireplace-to-heat-pump.xml + xml + test + 5CBD1D59 + + + extra_files/extra-second-heating-system-fireplace-to-heating-system.osm + osm + test + 8C4041F1 + + + extra_files/extra-second-heating-system-fireplace-to-heating-system.xml + xml + test + B6796D76 + + + extra_files/extra-second-heating-system-portable-heater-to-heat-pump.osm + osm + test + 07B50223 + + + extra_files/extra-second-heating-system-portable-heater-to-heat-pump.xml + xml + test + 3259706F + + + extra_files/extra-second-heating-system-portable-heater-to-heating-system.osm + osm + test + 94710DFB + + + extra_files/extra-second-heating-system-portable-heater-to-heating-system.xml + xml + test + F47818CB + + + extra_files/extra-second-refrigerator.osm + osm + test + 0719BFEF + + + extra_files/extra-second-refrigerator.xml + xml + test + F6999140 + + + extra_files/extra-sfa-ambient.osm + osm + test + F98DE056 + + + extra_files/extra-sfa-ambient.xml + xml + test + D43626F1 + + + extra_files/extra-sfa-atticroof-conditioned-eaves-gable.osm + osm + test + A3685A53 + + + extra_files/extra-sfa-atticroof-conditioned-eaves-gable.xml + xml + test + 9A0BD3F2 + + + extra_files/extra-sfa-atticroof-conditioned-eaves-hip.osm + osm + test + D8B1B542 + + + extra_files/extra-sfa-atticroof-conditioned-eaves-hip.xml + xml + test + E40AD01A + + + extra_files/extra-sfa-atticroof-flat.osm + osm + test + E4F0418F + + + extra_files/extra-sfa-atticroof-flat.xml + xml + test + C90B6266 + + + extra_files/extra-sfa-conditioned-crawlspace.osm + osm + test + 26256EE5 + + + extra_files/extra-sfa-conditioned-crawlspace.xml + xml + test + EA81F0A1 + + + extra_files/extra-sfa-exterior-corridor.osm + osm + test + BA5454F6 + + + extra_files/extra-sfa-exterior-corridor.xml + xml + test + 3D5B2006 + + + extra_files/extra-sfa-rear-units.osm + osm + test + 36741B71 + + + extra_files/extra-sfa-rear-units.xml + xml + test + 3D5B2006 + + + extra_files/extra-sfa-slab-middle.osm + osm + test + F88A4307 + + + extra_files/extra-sfa-slab-middle.xml + xml + test + 7CE3AFA5 + + + extra_files/extra-sfa-slab-right.osm + osm + test + F48B3E43 + + + extra_files/extra-sfa-slab-right.xml + xml + test + 7CE3AFA5 + + + extra_files/extra-sfa-slab.osm + osm + test + 189A4405 + + + extra_files/extra-sfa-slab.xml + xml + test + C78CBE22 + + + extra_files/extra-sfa-unconditioned-basement-middle.osm + osm + test + D8A1A8D1 + + + extra_files/extra-sfa-unconditioned-basement-middle.xml + xml + test + F2F3AC7E + + + extra_files/extra-sfa-unconditioned-basement-right.osm + osm + test + 233AAE16 + + + extra_files/extra-sfa-unconditioned-basement-right.xml + xml + test + F2F3AC7E + + + extra_files/extra-sfa-unconditioned-basement.osm + osm + test + 1F889945 + + + extra_files/extra-sfa-unconditioned-basement.xml + xml + test + 62860C68 + + + extra_files/extra-sfa-unvented-crawlspace-middle.osm + osm + test + DD3DCFBC + + + extra_files/extra-sfa-unvented-crawlspace-middle.xml + xml + test + DF2D5F3C + + + extra_files/extra-sfa-unvented-crawlspace-right.osm + osm + test + F9BF6075 + + + extra_files/extra-sfa-unvented-crawlspace-right.xml + xml + test + DF2D5F3C + + + extra_files/extra-sfa-unvented-crawlspace.osm + osm + test + 70EE9F67 + + + extra_files/extra-sfa-unvented-crawlspace.xml + xml + test + EA9EF2E6 + + + extra_files/extra-sfa-vented-crawlspace-middle.osm + osm + test + 89BE1CA5 + + + extra_files/extra-sfa-vented-crawlspace-middle.xml + xml + test + F7E2BD9C + + + extra_files/extra-sfa-vented-crawlspace-right.osm + osm + test + B7EEC00E + + + extra_files/extra-sfa-vented-crawlspace-right.xml + xml + test + F7E2BD9C + + + extra_files/extra-sfa-vented-crawlspace.osm + osm + test + A40AA995 + + + extra_files/extra-sfa-vented-crawlspace.xml + xml + test + D5E96577 + + + extra_files/extra-state-code-different-than-epw.osm + osm + test + AA83A242 + + + extra_files/extra-state-code-different-than-epw.xml + xml + test + 4E351F9A + + + extra_files/extra-time-zone-different-than-epw.osm + osm + test + F27429AA + + + extra_files/extra-time-zone-different-than-epw.xml + xml + test + 1CDA2401 + + + extra_files/extra-water-heater-attic.osm + osm + test + 50F9C3CD + + + extra_files/extra-water-heater-attic.xml + xml + test + D37BE40E + + + extra_files/extra-water-heater-crawlspace.osm + osm + test + A6593123 + + + extra_files/extra-water-heater-crawlspace.xml + xml + test + A46113BC + + + extra_files/warning-conditioned-attic-with-floor-insulation.osm + osm + test + 34CE7BD3 + + + extra_files/warning-conditioned-attic-with-floor-insulation.xml + xml + test + 28AEC9B5 + + + extra_files/warning-conditioned-basement-with-ceiling-insulation.osm + osm + test + 6EAC1B66 + + + extra_files/warning-conditioned-basement-with-ceiling-insulation.xml + xml + test + F6999140 + + + extra_files/warning-mf-bottom-slab-non-zero-foundation-height.osm + osm + test + 08793854 + + + extra_files/warning-mf-bottom-slab-non-zero-foundation-height.xml + xml + test + 0405C24C + + + extra_files/warning-non-electric-heat-pump-water-heater.osm + osm + test + 3FF7A173 + + + extra_files/warning-non-electric-heat-pump-water-heater.xml + xml + test + A47167E4 + + + extra_files/warning-sfd-slab-non-zero-foundation-height.osm + osm + test + 4F5F0CF2 + + + extra_files/warning-sfd-slab-non-zero-foundation-height.xml + xml + test + BD8AF863 + + + extra_files/warning-slab-non-zero-foundation-height-above-grade.osm + osm + test + 9D500078 + + + extra_files/warning-slab-non-zero-foundation-height-above-grade.xml + xml + test + BD8AF863 + + + extra_files/warning-unconditioned-basement-with-wall-and-ceiling-insulation.osm + osm + test + 2313D3FF + + + extra_files/warning-unconditioned-basement-with-wall-and-ceiling-insulation.xml + xml + test + 12D79C35 + + + extra_files/warning-unvented-attic-with-floor-and-roof-insulation.osm + osm + test + 51BD31F6 + + + extra_files/warning-unvented-attic-with-floor-and-roof-insulation.xml + xml + test + DA47371D + + + extra_files/warning-unvented-crawlspace-with-wall-and-ceiling-insulation.osm + osm + test + EBF9AC5F + + + extra_files/warning-unvented-crawlspace-with-wall-and-ceiling-insulation.xml + xml + test + F096C9B4 + + + extra_files/warning-vented-attic-with-floor-and-roof-insulation.osm + osm + test + 37BCB893 + + + extra_files/warning-vented-attic-with-floor-and-roof-insulation.xml + xml + test + E50EC187 + + + extra_files/warning-vented-crawlspace-with-wall-and-ceiling-insulation.osm + osm + test + 3E996AFD + + + extra_files/warning-vented-crawlspace-with-wall-and-ceiling-insulation.xml + xml + test + 66E54CB2 + diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 947bef1e0a..ec3c0a4382 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - d4b83785-09ee-4c40-9562-03c75585ebf4 - 2023-09-25T22:34:12Z + 381b114d-35d5-481c-b609-c9b1f8576e21 + 2023-09-27T03:43:23Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -292,7 +292,7 @@ hpxml_defaults.rb rb resource - 7811E30A + 5B5033FD hpxml_schema/HPXML.xsd @@ -310,7 +310,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 7E39ADA5 + C20B0B11 hpxml_schematron/iso-schematron.xsd @@ -328,7 +328,7 @@ hvac_sizing.rb rb resource - A892EBBC + 886EE17F lighting.rb @@ -574,7 +574,7 @@ test_hvac_sizing.rb rb test - 68733BE8 + F079849B test_lighting.rb @@ -616,7 +616,7 @@ test_validation.rb rb test - 2BA7DA63 + ACA47AD8 test_water_heater.rb diff --git a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb index 0f3288827f..0e38d72524 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb @@ -312,6 +312,42 @@ def get_unins_slab() assert_in_epsilon(1.04, f_factor, 0.01) end + def test_ground_loop + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + + # Base case + hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + _model, hpxml = _test_measure(args_hash) + assert_equal(3, hpxml.geothermal_loops[0].num_bore_holes) + assert_in_epsilon(878.0 / 3 + 5.0, hpxml.geothermal_loops[0].bore_length, 0.01) + + # Bore depth greater than the max -> increase number of boreholes + hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml.site.ground_conductivity = 0.2 + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + _model, hpxml = _test_measure(args_hash) + assert_equal(5, hpxml.geothermal_loops[0].num_bore_holes) + assert_in_epsilon(2433.0 / 5 + 5, hpxml.geothermal_loops[0].bore_length, 0.01) + + # Bore depth greater than the max -> increase number of boreholes until the max, set depth to the max, and issue warning + hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml.site.ground_conductivity = 0.08 + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + _model, hpxml = _test_measure(args_hash) + assert_equal(10, hpxml.geothermal_loops[0].num_bore_holes) + assert_in_epsilon(500.0, hpxml.geothermal_loops[0].bore_length, 0.01) + + # Boreholes greater than the max -> decrease the number of boreholes until the max + hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml.heat_pumps[0].cooling_capacity *= 5 + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + _model, hpxml = _test_measure(args_hash) + assert_equal(10, hpxml.geothermal_loops[0].num_bore_holes) + assert_in_epsilon(3450.0 / 10 + 5, hpxml.geothermal_loops[0].bore_length, 0.01) + end + def _test_measure(args_hash) # create an instance of the measure measure = HPXMLtoOpenStudio.new diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 5b899c4d47..2e55fb3f14 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -115,7 +115,8 @@ def test_schema_schematron_error_messages 'hvac-frac-load-served' => ['Expected sum(FractionHeatLoadServed) to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails]', 'Expected sum(FractionCoolLoadServed) to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails]'], 'hvac-gshp-invalid-bore-config' => ["Expected BorefieldConfiguration to be 'Rectangle' or 'Open Rectangle' or 'C' or 'L' or 'U' or 'Lopsided U' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop, id: \"GeothermalLoop1\"]"], - 'hvac-gshp-invalid-bore-depth' => ['Expected BoreholesOrTrenches/Length to be less than or equal to 500 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop, id: "GeothermalLoop1"]'], + 'hvac-gshp-invalid-bore-depth-low' => ['Expected BoreholesOrTrenches/Length to be greater than or equal to 79 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop, id: "GeothermalLoop1"]'], + 'hvac-gshp-invalid-bore-depth-high' => ['Expected BoreholesOrTrenches/Length to be less than or equal to 500 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop, id: "GeothermalLoop1"]'], 'hvac-location-heating-system' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], 'hvac-location-cooling-system' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], 'hvac-location-heat-pump' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], @@ -379,9 +380,12 @@ def test_schema_schematron_error_messages elsif ['hvac-gshp-invalid-bore-config'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop.xml')) hpxml.geothermal_loops[0].bore_config = 'Invalid' - elsif ['hvac-gshp-invalid-bore-depth'].include? error_case + elsif ['hvac-gshp-invalid-bore-depth-low'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop.xml')) - hpxml.geothermal_loops[0].bore_length = 1260 + hpxml.geothermal_loops[0].bore_length = 78 + elsif ['hvac-gshp-invalid-bore-depth-high'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-geothermal-loop.xml')) + hpxml.geothermal_loops[0].bore_length = 501 elsif ['hvac-location-heating-system'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-boiler-oil-only.xml')) hpxml.heating_systems[0].location = HPXML::LocationBasementUnconditioned @@ -855,9 +859,7 @@ def test_ruby_error_messages 'hvac-distribution-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-cooling' => ["Multiple cooling systems found attached to distribution system 'HVACDistribution1'."], 'hvac-dse-multiple-attached-heating' => ["Multiple heating systems found attached to distribution system 'HVACDistribution1'."], - 'hvac-gshp-invalid-bore-depth-autosized' => ['Bore depth (552 ft) not between 79 and 500 ft.'], 'hvac-gshp-invalid-num-bore-holes' => ["Number of bore holes (5) with borefield configuration 'Lopsided U' not supported."], - 'hvac-gshp-invalid-num-bore-holes-autosized' => ["Number of bore holes (11) with borefield configuration 'Rectangle' not supported."], 'hvac-inconsistent-fan-powers' => ["Fan powers for heating system 'HeatingSystem1' and cooling system 'CoolingSystem1' are attached to a single distribution system and therefore must be the same."], 'hvac-invalid-distribution-system-type' => ["Incorrect HVAC distribution system type for HVAC type: 'Furnace'. Should be one of: ["], 'hvac-shared-boiler-multiple' => ['More than one shared heating system found.'], @@ -1311,6 +1313,7 @@ def test_ruby_warning_messages 'duct-lto-cfm25' => ['Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment.'], 'duct-lto-cfm50' => ['Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment.'], 'duct-lto-percent' => ['Ducts are entirely within conditioned space but there is moderate leakage to the outside. Leakage to the outside is typically zero or near-zero in these situations, consider revising leakage values. Leakage will be modeled as heat lost to the ambient environment.'], + 'hvac-gshp-bore-depth-autosized-high' => ['Reached a maximum of 10 boreholes; setting bore depth to the maximum (500 ft).'], '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.'], @@ -1427,6 +1430,9 @@ def test_ruby_warning_messages duct.duct_surface_area = nil duct.duct_location = nil end + elsif ['hvac-gshp-bore-depth-autosized-high'].include? warning_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-ground-to-air-heat-pump.xml')) + hpxml.site.ground_conductivity = 0.08 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 From c2da0583c14c218783cf630f0f992e146da9927c Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 9 Oct 2023 17:13:23 -0700 Subject: [PATCH 163/217] Regenerate sample files. --- .../sample_files/base-hvac-geothermal-loop.xml | 18 +++++++++--------- ...und-to-air-heat-pump-ground-diffusivity.xml | 18 +++++++++--------- ...und-to-air-heat-pump-soil-moisture-type.xml | 18 +++++++++--------- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/workflow/sample_files/base-hvac-geothermal-loop.xml b/workflow/sample_files/base-hvac-geothermal-loop.xml index b2fdc495c5..53021a6003 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -139,7 +139,7 @@ outside - living space + conditioned space @@ -204,7 +204,7 @@ attic - unvented - living space + conditioned space ceiling @@ -423,7 +423,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -456,7 +456,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -467,7 +467,7 @@ - living space + conditioned space electricity 3.73 true @@ -475,7 +475,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -485,13 +485,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml index 96a4945b2b..95f466d75f 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -144,7 +144,7 @@ outside - living space + conditioned space @@ -209,7 +209,7 @@ attic - unvented - living space + conditioned space ceiling @@ -405,7 +405,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -438,7 +438,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -449,7 +449,7 @@ - living space + conditioned space electricity 3.73 true @@ -457,7 +457,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -467,13 +467,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml index be419c9c63..8c530a9745 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml @@ -1,5 +1,5 @@ - + HPXML tasks.rb @@ -143,7 +143,7 @@ outside - living space + conditioned space @@ -208,7 +208,7 @@ attic - unvented - living space + conditioned space ceiling @@ -404,7 +404,7 @@ electricity storage water heater - living space + conditioned space 40.0 1.0 18767.0 @@ -437,7 +437,7 @@ - living space + conditioned space 1.21 380.0 0.12 @@ -448,7 +448,7 @@ - living space + conditioned space electricity 3.73 true @@ -456,7 +456,7 @@ - living space + conditioned space 307.0 12 0.12 @@ -466,13 +466,13 @@ - living space + conditioned space 650.0 true - living space + conditioned space electricity false From 4356113a5465e582f6113dc400c595883ec23da2 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 17 Oct 2023 11:50:46 -0700 Subject: [PATCH 164/217] Remove shank spacing from build measure. --- BuildResidentialHPXML/measure.rb | 13 +------------ BuildResidentialHPXML/measure.xml | 15 +++------------ workflow/hpxml_inputs.json | 3 +-- .../sample_files/base-hvac-geothermal-loop.xml | 1 - 4 files changed, 5 insertions(+), 27 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 27816c8d7b..eeeaadb239 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1447,12 +1447,6 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setUnits('in') args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('geothermal_loop_pipe_shank_spacing', false) - arg.setDisplayName('Geothermal Loop: Pipe Shank Spacing') - arg.setDescription("Measured as center-to-center (not edge-to-edge) distance between two branches of a vertical U-tube. Only applies to #{HPXML::HVACTypeHeatPumpGroundToAir} heat pump type. If not provided, the OS-HPXML default is used.") - arg.setUnits('in') - args << arg - heating_system_2_type_choices = OpenStudio::StringVector.new heating_system_2_type_choices << 'none' heating_system_2_type_choices << HPXML::HVACTypeFurnace @@ -5110,10 +5104,6 @@ def self.set_geothermal_loop(hpxml, args) end end - if args[:geothermal_loop_pipe_shank_spacing].is_initialized - shank_spacing = args[:geothermal_loop_pipe_shank_spacing].get - end - hpxml.geothermal_loops.add(id: "GeothermalLoop#{hpxml.geothermal_loops.size + 1}", loop_configuration: loop_configuration, loop_flow: loop_flow, @@ -5124,8 +5114,7 @@ def self.set_geothermal_loop(hpxml, args) bore_diameter: bore_diameter, grout_type: grout_type, pipe_type: pipe_type, - pipe_diameter: pipe_diameter, - shank_spacing: shank_spacing) + pipe_diameter: pipe_diameter) hpxml.heat_pumps[-1].geothermal_loop_idref = hpxml.geothermal_loops[-1].id end diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 56f84eff15..cc59993ba8 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 010207f7-46d4-4ee3-8652-0a6cc8307730 - 2023-10-09T22:17:58Z + 1da630d0-1535-4783-8b76-50bc761108b9 + 2023-10-17T18:48:17Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -3019,15 +3019,6 @@ - - geothermal_loop_pipe_shank_spacing - Geothermal Loop: Pipe Shank Spacing - Measured as center-to-center (not edge-to-edge) distance between two branches of a vertical U-tube. Only applies to ground-to-air heat pump type. If not provided, the OS-HPXML default is used. - Double - in - false - false - heating_system_2_type Heating System 2: Type @@ -6997,7 +6988,7 @@ measure.rb rb script - 48013787 + 4DB57C70 geometry.rb diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 70945dece4..a45e515730 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2401,8 +2401,7 @@ "geothermal_loop_boreholes_diameter": 5.905512, "geothermal_loop_grout_type": "standard", "geothermal_loop_pipe_type": "standard", - "geothermal_loop_pipe_diameter": "1\" pipe", - "geothermal_loop_pipe_shank_spacing": 2.5 + "geothermal_loop_pipe_diameter": "1\" pipe" }, "sample_files/base-hvac-ground-to-air-heat-pump.xml": { "parent_hpxml": "sample_files/base.xml", diff --git a/workflow/sample_files/base-hvac-geothermal-loop.xml b/workflow/sample_files/base-hvac-geothermal-loop.xml index 53021a6003..b52d3f50f3 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop.xml @@ -367,7 +367,6 @@ standard 1.0 - 2.5 Lopsided U From f92b988895df9649af5d0004e14f6c6334850c85 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 18 Oct 2023 02:47:37 +0000 Subject: [PATCH 165/217] 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 00f6a86b59..d6985114bf 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -290,7 +290,7 @@ base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0 base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop.xml,39.493,39.493,39.493,39.493,0.0,0.0,0.0,0.0,0.0,0.0,5.183,0.345,0.0,0.0,2.516,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,0.0,19.464,0.0,12.653,9.233,0.614,0.0,0.0,0.0,0.0,3159.1,2560.4,3159.1,20.595,14.612,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.97,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.741,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,39.497,39.497,39.497,39.497,0.0,0.0,0.0,0.0,0.0,0.0,5.184,0.345,0.0,0.0,2.519,1.009,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.465,0.0,12.653,9.233,0.614,0.0,0.0,0.0,0.0,3159.8,2561.8,3159.8,20.599,14.613,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.971,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.741,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.026,34.026,34.026,34.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.768,0.772,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2668.4,2668.4,0.0,14.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.986,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,39.931,39.931,39.931,39.931,0.0,0.0,0.0,0.0,0.0,0.0,5.335,0.365,0.0,0.0,2.758,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,0.0,19.555,0.0,12.68,9.233,0.614,0.0,0.0,0.0,0.0,3238.0,2671.2,3238.0,20.927,14.72,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.063,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.768,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-heating-only.xml,36.663,36.663,36.663,36.663,0.0,0.0,0.0,0.0,0.0,0.0,5.479,0.767,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,0.0,20.351,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3377.7,1637.3,3377.7,22.312,0.0,0.0,3.576,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.046,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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 f71c51fb2f..6fe9d1cdc9 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -290,7 +290,7 @@ base-hvac-furnace-oil-only.xml,2094.22,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1912.48,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,630.01,630.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-wood-only.xml,1630.62,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop.xml,1593.41,144.0,1449.41,0.0,1593.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop.xml,1593.57,144.0,1449.57,0.0,1593.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,1392.76,144.0,1248.76,0.0,1392.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1609.5,144.0,1465.5,0.0,1609.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-heating-only.xml,1489.56,144.0,1345.56,0.0,1489.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 2e2f406d1c9c9d250512cc66ab72b7f872f0855c Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 18 Oct 2023 08:39:03 -0700 Subject: [PATCH 166/217] Add shank spacing back into sample file. --- tasks.rb | 3 +++ workflow/sample_files/base-hvac-geothermal-loop.xml | 1 + 2 files changed, 4 insertions(+) diff --git a/tasks.rb b/tasks.rb index c1bbf1d535..7adfaefbd1 100644 --- a/tasks.rb +++ b/tasks.rb @@ -1670,6 +1670,9 @@ def apply_hpxml_modification(hpxml_file, hpxml) hpxml.heat_pumps[0].backup_heating_lockout_temp = hpxml.heat_pumps[0].backup_heating_switchover_temp hpxml.heat_pumps[0].backup_heating_switchover_temp = nil end + if hpxml_file.include? 'base-hvac-geothermal-loop.xml' + hpxml.geothermal_loops[0].shank_spacing = 2.5 + end # ------------------ # # HPXML WaterHeating # diff --git a/workflow/sample_files/base-hvac-geothermal-loop.xml b/workflow/sample_files/base-hvac-geothermal-loop.xml index b52d3f50f3..53021a6003 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop.xml +++ b/workflow/sample_files/base-hvac-geothermal-loop.xml @@ -367,6 +367,7 @@ standard 1.0 + 2.5 Lopsided U From 9f05cd44a4ea2ba6279094e1b8b5c627552b3c60 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 18 Oct 2023 16:27:09 +0000 Subject: [PATCH 167/217] Latest results. --- workflow/tests/base_results/results.csv | 80 +++---------------- workflow/tests/base_results/results_bills.csv | 80 +++---------------- 2 files changed, 20 insertions(+), 140 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index d6985114bf..eedcbc359a 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -48,7 +48,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,28.166,28.166,28.166,28.166,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.303,0.0,0.0,2.012,2.897,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1733.3,1861.5,1861.5,3.454,7.018,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,28.119,28.119,28.119,28.119,0.0,0.0,0.0,0.0,0.0,0.0,0.188,0.307,0.0,0.0,1.965,2.892,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1733.8,1845.1,1845.1,3.454,7.019,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,1354.8,997.6,11399.6,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,3156.5,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 @@ -61,7 +61,7 @@ base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0, base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,1375.7,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,1377.1,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.699,37.699,37.699,37.699,0.0,0.0,0.0,0.0,0.0,0.0,5.417,0.37,0.0,0.0,2.865,1.085,6.685,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.89,0.0,13.358,9.232,0.614,2.936,0.0,0.0,0.0,3238.4,2227.1,3238.4,21.012,15.095,0.0,3.603,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.106,-8.591,-2.499,0.0,0.011,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.828,8.488,2.01,1354.8,997.6,11411.5,2618.6,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.514,37.514,37.514,37.514,0.0,0.0,0.0,0.0,0.0,0.0,5.349,0.361,0.0,0.0,2.766,1.075,6.686,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.848,0.0,13.346,9.232,0.614,2.933,0.0,0.0,0.0,3201.1,2162.6,3201.1,20.85,15.039,0.0,3.605,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.063,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.817,8.488,2.01,1354.8,997.6,11411.6,2618.6,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -168,7 +168,6 @@ base-foundation-unconditioned-basement.xml,42.783,42.783,29.739,29.739,13.044,0. base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,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,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,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,20308.0,4130.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,14139.0,645.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,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,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,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23871.0,6874.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15437.0,1726.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-walkout-basement.xml,64.814,64.814,36.328,36.328,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,4.532,0.884,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,0.0,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.677,0.0,14.89,9.233,0.615,0.0,0.0,0.0,0.0,2125.9,3513.1,3513.1,26.787,19.805,0.0,3.523,3.688,0.52,7.364,0.646,11.292,-12.794,0.0,0.0,0.0,10.155,-0.066,6.639,0.0,0.728,0.0,6.073,-8.935,-2.506,0.0,-0.099,-0.515,-0.06,1.48,-0.031,-2.074,12.046,0.0,0.0,0.0,-3.677,-0.061,-1.529,-3.357,-0.16,0.0,3.264,7.844,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,3123.7,0.0,15.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.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,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,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,7253.7,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -182,66 +181,7 @@ base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.x base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,3384.0,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,3385.8,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,7002.3,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.333,35.333,35.333,35.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.7,1.147,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.314,9.233,0.663,0.0,0.0,0.0,2.0,2021.1,3336.7,3336.7,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.781,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,42.645,42.645,42.645,42.645,0.0,0.0,0.0,0.0,0.0,0.0,9.823,1.762,0.591,0.052,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,0.0,23.588,0.643,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7296.6,1637.3,7296.6,25.567,0.0,0.0,3.452,3.637,0.512,7.485,0.629,10.516,-12.551,0.0,0.0,0.0,8.112,-0.066,4.805,0.0,0.728,0.0,7.372,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.902,47.902,47.902,47.902,0.0,0.0,0.0,0.0,0.0,0.0,9.744,1.041,1.78,0.071,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.093,1.851,14.187,9.233,0.614,0.0,0.0,0.0,0.0,7104.3,3514.9,7104.3,25.121,18.487,0.0,3.396,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.759,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.145,46.145,46.145,46.145,0.0,0.0,0.0,0.0,0.0,0.0,9.718,1.011,0.443,0.024,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.466,13.102,9.233,0.614,0.0,0.0,0.0,0.0,6954.5,3209.9,6954.5,24.358,15.771,0.0,3.499,3.634,0.511,7.501,0.628,10.507,-12.551,0.0,0.0,0.0,8.275,-0.063,4.804,0.0,0.728,0.0,6.018,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.461,49.461,49.461,49.461,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,0.0,17.87,5.461,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,0.0,0.0,66.201,4.659,0.55,0.0,0.0,0.0,0.0,2700.1,3650.5,3650.5,0.0,21.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.848,0.737,0.136,9.776,0.338,4.074,19.846,0.0,0.0,0.0,3.224,-0.01,-0.524,-2.897,-0.007,0.0,9.541,16.714,4.51,1354.8,997.6,8625.2,1979.2,0.0,25971.0,25971.0,11194.0,51.62,90.68,11194.0,4365.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.698,44.698,44.698,44.698,0.0,0.0,0.0,0.0,0.0,0.0,9.125,0.912,0.046,0.006,3.198,0.971,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.362,0.052,11.97,9.233,0.614,0.0,0.0,0.0,0.0,6628.4,2912.2,6628.4,22.625,13.15,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.864,-8.907,-2.499,0.0,0.037,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.05,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65908.0,65908.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.715,42.715,42.715,42.715,0.0,0.0,0.0,0.0,0.0,0.0,7.02,0.658,1.448,0.045,2.428,0.675,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.773,1.493,14.362,9.233,0.614,0.0,0.0,0.0,0.0,7064.5,3018.0,7064.5,24.982,18.75,0.0,3.37,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.461,-8.908,-2.5,0.0,-0.058,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.064,-0.165,0.0,3.485,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,24186.0,24186.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.554,41.554,41.554,41.554,0.0,0.0,0.0,0.0,0.0,0.0,7.131,0.629,0.416,0.017,2.294,0.626,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.433,13.325,9.233,0.614,0.0,0.0,0.0,0.0,6922.4,2762.7,6922.4,24.33,16.718,0.0,3.453,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.249,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.431,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33416.0,33416.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.544,40.544,40.544,40.544,0.0,0.0,0.0,0.0,0.0,0.0,6.849,0.507,0.049,0.005,2.124,0.57,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.035,0.054,12.091,9.233,0.614,0.0,0.0,0.0,0.0,6732.2,2521.0,6732.2,23.383,13.585,0.0,3.588,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.557,-8.907,-2.499,0.0,0.034,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,1.172,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,65567.0,65567.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,51.171,51.171,37.619,37.619,13.551,0.0,0.0,0.0,0.0,0.0,4.154,0.37,0.0,0.138,2.31,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.722,11.262,14.452,9.233,0.615,0.0,0.0,2.0,0.0,3194.1,2672.7,3194.1,23.547,17.679,0.0,3.375,3.634,0.511,7.502,0.629,10.508,-12.564,0.0,0.0,0.0,8.292,-0.061,5.886,0.0,0.727,0.0,9.35,-8.918,-2.502,0.0,-0.058,-0.445,-0.049,2.738,-0.021,-1.886,11.719,0.0,0.0,0.0,-6.26,-0.057,-1.428,-3.017,-0.163,0.0,3.697,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,23640.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.458,54.458,37.825,37.825,16.632,0.0,0.0,0.0,0.0,0.0,4.006,0.353,0.0,0.501,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,28.514,13.807,14.556,9.233,0.614,0.0,0.0,2.0,0.0,3328.2,2622.0,3328.2,30.614,17.514,0.0,3.251,3.637,0.512,7.508,0.629,10.512,-12.557,0.0,0.0,0.0,8.289,-0.061,4.804,0.0,0.728,0.0,12.284,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.063,-0.165,0.0,3.704,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,32235.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.854,41.854,41.854,41.854,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.815,0.462,0.024,2.354,0.264,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.487,15.105,9.233,0.614,0.0,0.0,0.0,0.0,7149.0,2803.7,7149.0,25.102,18.295,0.0,3.322,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.286,-0.061,4.804,0.0,0.728,0.0,10.735,-8.908,-2.5,0.0,-0.094,-0.454,-0.05,2.708,-0.024,-1.915,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.165,-3.066,-0.165,0.0,4.27,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,26367.0,26367.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.158,41.158,41.158,41.158,0.0,0.0,0.0,0.0,0.0,0.0,7.314,0.748,0.123,0.008,2.317,0.207,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.792,0.131,14.556,9.233,0.614,0.0,0.0,0.0,0.0,7031.0,2622.0,7031.0,24.672,17.514,0.0,3.37,3.636,0.512,7.505,0.629,10.51,-12.557,0.0,0.0,0.0,8.284,-0.061,4.804,0.0,0.728,0.0,9.48,-8.908,-2.5,0.0,-0.067,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.703,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,33628.0,33628.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.898,40.898,40.898,40.898,0.0,0.0,0.0,0.0,0.0,0.0,7.281,0.641,0.051,0.006,2.308,0.171,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.771,0.057,13.49,9.233,0.614,0.0,0.0,0.0,0.0,6896.7,2561.9,6896.7,23.811,16.273,0.0,3.447,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.278,-0.063,4.804,0.0,0.728,0.0,7.401,-8.907,-2.499,0.0,-0.02,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.608,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,50423.0,50423.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-elec-only.xml,48.203,48.203,48.203,48.203,0.0,0.0,0.0,0.0,0.0,0.0,17.594,0.191,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5904.2,1637.3,5904.2,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.331,55.331,36.429,36.429,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.604,0.0,14.792,9.233,0.614,0.0,0.0,0.0,4.0,2096.7,3330.0,3330.0,16.459,17.819,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.081,-0.455,-0.051,2.706,-0.024,-1.913,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.065,-0.165,0.0,3.924,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-only.xml,49.354,49.354,30.642,30.642,18.712,0.0,0.0,0.0,0.0,0.0,0.0,0.224,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,18.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2057.9,1637.3,2057.9,16.459,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-1-speed.xml,36.11,36.11,36.11,36.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.432,1.192,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,9.233,0.663,0.0,0.0,0.0,2.0,2071.1,3339.5,3339.5,0.0,17.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.978,-0.166,0.0,3.833,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,19922.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-2-speed.xml,34.429,34.429,34.429,34.429,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.213,0.73,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.699,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2947.5,2947.5,0.0,18.464,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.978,-0.166,0.0,4.174,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20155.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-var-speed.xml,33.76,33.76,33.76,33.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.879,0.394,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.303,9.233,0.663,0.0,0.0,0.0,3.0,2071.1,2618.4,2618.4,0.0,17.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.139,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.982,-0.166,0.0,4.82,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,20283.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,48.538,48.538,48.538,48.538,0.0,0.0,0.0,0.0,0.0,0.0,9.911,1.779,0.593,0.052,4.535,1.227,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.645,14.793,9.233,0.614,0.0,0.0,0.0,4.0,7326.8,3330.1,7326.8,25.567,17.819,0.0,3.446,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.728,0.0,7.439,-8.907,-2.499,0.0,-0.079,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.066,-0.165,0.0,3.924,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,19922.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,56.621,56.621,40.953,40.953,15.668,0.0,0.0,0.0,0.0,0.0,4.379,0.423,0.0,0.885,3.687,1.139,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.968,15.77,14.187,9.233,0.614,0.0,0.0,0.0,0.0,3490.2,3514.9,3514.9,25.12,18.487,0.0,3.356,3.635,0.512,7.505,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.063,4.804,0.0,0.728,0.0,9.673,-8.907,-2.499,0.0,-0.052,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.308,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,22910.0,22910.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,3475.0,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,55.45,55.45,40.705,40.705,14.745,0.0,0.0,0.0,0.0,0.0,4.123,0.357,0.0,1.276,3.452,1.056,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,0.0,24.438,15.284,13.102,9.233,0.614,0.0,0.0,0.0,0.0,3475.0,3209.9,3475.0,24.35,15.772,0.0,3.412,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.099,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.204,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33029.0,33029.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,2581.3,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,47.573,47.573,35.92,35.92,11.653,0.0,0.0,0.0,0.0,0.0,2.478,0.097,0.0,0.667,2.16,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,11.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.156,11.737,12.245,9.233,0.614,0.0,0.0,0.0,0.0,2581.3,2191.0,2581.3,19.501,13.372,0.0,3.587,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.683,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,5930.0,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-evap-cooler-furnace-gas.xml,56.319,56.319,32.044,32.044,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,0.0,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,1915.1,2116.1,25.1,11.075,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.165,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,13458.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-elec-only.xml,53.605,53.605,53.605,53.605,0.0,0.0,0.0,0.0,0.0,0.0,22.563,0.625,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,0.0,22.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8622.9,1637.3,8622.9,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.604,58.604,34.875,34.875,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.445,0.0,0.0,3.27,0.719,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,15.071,9.233,0.614,0.0,0.0,0.0,1.0,2124.3,2947.8,2947.8,24.237,18.493,0.0,3.51,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.863,-8.907,-2.499,0.0,-0.091,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.065,-0.165,0.0,4.206,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20155.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,57.935,57.935,34.224,34.224,23.711,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,2.934,0.409,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.255,0.0,15.722,9.233,0.614,0.0,0.0,0.0,3.0,2123.4,2796.9,2796.9,24.208,17.856,0.0,3.511,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.839,-8.907,-2.499,0.0,-0.127,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.069,-0.165,0.0,4.903,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,20283.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-only.xml,55.077,55.077,31.042,31.042,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.625,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,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.739,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2122.5,1637.3,2122.5,25.1,0.0,0.0,3.491,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.113,-0.065,4.806,0.0,0.728,0.0,6.502,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,32235.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-furnace-gas-room-ac.xml,60.398,60.398,36.123,36.123,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.631,0.0,0.0,5.051,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,24.275,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.967,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2116.1,3023.7,3023.7,25.1,11.066,0.0,3.486,3.635,0.512,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.278,-0.061,4.804,0.0,0.728,0.0,6.564,-8.908,-2.5,0.0,0.047,-0.454,-0.051,2.707,-0.024,-1.918,11.726,0.0,0.0,0.0,-6.312,-0.057,-1.165,-3.054,-0.164,0.0,-0.001,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,14272.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.497,34.497,34.497,34.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.148,0.863,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.685,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2934.1,2934.1,0.0,17.462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.062,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.143,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24222.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.797,36.797,36.797,36.797,0.0,0.0,0.0,0.0,0.0,0.0,5.579,0.8,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,0.0,21.087,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3435.0,1637.3,3435.0,23.47,0.0,0.0,3.55,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.108,-0.066,4.805,0.0,0.728,0.0,4.802,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,31147.0,0.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,40.319,40.319,40.319,40.319,0.0,0.0,0.0,0.0,0.0,0.0,5.582,0.69,0.0,0.0,2.795,0.811,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.133,0.0,13.275,9.233,0.614,0.0,0.0,0.0,0.0,3387.6,2632.1,3387.6,23.036,15.73,0.0,3.551,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.685,-8.907,-2.499,0.0,-0.014,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.384,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,31147.0,31147.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.902,39.902,39.902,39.902,0.0,0.0,0.0,0.0,0.0,0.0,5.319,0.365,0.0,0.0,2.735,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.791,0.0,12.824,9.233,0.614,0.0,0.0,0.0,0.0,3240.8,2672.8,3240.8,21.364,15.042,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.305,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.914,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.902,39.902,39.902,39.902,0.0,0.0,0.0,0.0,0.0,0.0,5.319,0.365,0.0,0.0,2.735,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.791,0.0,12.824,9.233,0.614,0.0,0.0,0.0,0.0,3240.8,2672.8,3240.8,21.364,15.042,0.0,3.598,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.305,-8.907,-2.499,0.0,0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.914,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,33439.0,33439.0,31147.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.683,33.683,33.683,33.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.095,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,32.97,32.97,32.97,32.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.382,0.102,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.544,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2686.6,2686.6,0.0,13.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.015,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.977,-0.166,0.0,2.005,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,15281.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.593,36.593,36.593,36.593,0.0,0.0,0.0,0.0,0.0,0.0,5.789,0.314,0.071,0.002,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,0.0,19.785,0.073,0.0,9.233,0.59,0.0,0.0,0.0,0.0,4263.6,1637.3,4263.6,19.499,0.0,0.0,3.596,3.636,0.512,7.482,0.629,10.513,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.468,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,26182.0,0.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.603,39.603,39.603,39.603,0.0,0.0,0.0,0.0,0.0,0.0,6.124,0.346,0.392,0.01,2.205,0.085,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,0.403,12.61,9.233,0.614,0.0,0.0,0.0,0.0,4941.7,2286.7,4941.7,19.72,13.567,0.0,3.575,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.051,-8.907,-2.499,0.0,0.014,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,1.721,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,19866.0,19866.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.91,38.91,38.91,38.91,0.0,0.0,0.0,0.0,0.0,0.0,5.84,0.317,0.073,0.002,2.16,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,0.0,19.98,0.075,12.245,9.233,0.614,0.0,0.0,0.0,0.0,4268.2,2191.0,4268.2,19.501,13.372,0.0,3.593,3.633,0.511,7.498,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.501,-8.907,-2.499,0.0,0.028,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.342,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,26139.0,26139.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,38.402,38.402,38.402,38.402,0.0,0.0,0.0,0.0,0.0,0.0,5.406,0.268,0.0,0.0,2.213,0.074,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.045,0.0,11.734,9.233,0.614,0.0,0.0,0.0,0.0,3640.7,2214.0,3640.7,19.188,12.558,0.0,3.624,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.54,-8.907,-2.499,0.0,0.042,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.818,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,41843.0,41843.0,26182.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,37.75,37.75,37.75,37.75,0.0,0.0,0.0,0.0,0.0,0.0,5.078,0.102,0.042,0.0,2.06,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.042,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3682.6,2120.6,3682.6,16.457,11.065,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.614,35.614,0.0,12.321,0.0,0.0,0.0,0.0,3.012,0.092,0.0,0.0,2.043,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.658,7.393,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2846.2,2123.8,2846.2,17.014,11.228,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,23602.0,23602.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac-with-heating.xml,51.069,51.069,51.069,51.069,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.012,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2674.2,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-ptac.xml,34.391,34.391,34.391,34.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2699.5,2699.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-only.xml,35.402,35.402,35.402,35.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.915,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3002.2,3002.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-heating.xml,52.108,52.108,52.108,52.108,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.051,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3023.6,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,23640.0,14272.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,41.566,41.566,41.566,41.566,0.0,0.0,0.0,0.0,0.0,0.0,6.404,0.0,0.889,0.0,3.833,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,0.0,16.603,0.889,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2632.3,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,16412.0,16412.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,41.7,41.7,41.7,41.7,0.0,0.0,0.0,0.0,0.0,0.0,7.054,0.0,0.206,0.0,3.999,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,0.0,16.603,0.206,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2705.6,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,25069.0,25069.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,42.231,42.231,42.231,42.231,0.0,0.0,0.0,0.0,0.0,0.0,7.586,0.0,0.038,0.0,4.167,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,0.0,16.603,0.038,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2809.5,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,48549.0,48549.0,23640.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize-sizing-controls.xml,49.605,49.605,42.912,42.912,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.191,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2614.2,3427.5,3427.5,16.894,14.883,0.0,2.873,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.449,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,0.0,31430.0,27561.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-stove-oil-only.xml,52.275,52.275,30.519,30.519,0.0,21.756,0.0,0.0,0.0,0.0,0.0,0.1,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,21.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2037.5,1635.7,2037.5,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,6024.4,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,23640.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-autosize.xml,59.984,59.984,36.217,36.217,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.324,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2126.9,3189.8,3189.8,24.296,18.003,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.91,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,19922.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,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,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,2060.9,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,6044.7,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -290,12 +230,12 @@ base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0 base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop.xml,39.497,39.497,39.497,39.497,0.0,0.0,0.0,0.0,0.0,0.0,5.184,0.345,0.0,0.0,2.519,1.009,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.465,0.0,12.653,9.233,0.614,0.0,0.0,0.0,0.0,3159.8,2561.8,3159.8,20.599,14.613,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.971,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.741,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.026,34.026,34.026,34.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.768,0.772,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.548,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2668.4,2668.4,0.0,14.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.986,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,39.931,39.931,39.931,39.931,0.0,0.0,0.0,0.0,0.0,0.0,5.335,0.365,0.0,0.0,2.758,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,0.0,19.555,0.0,12.68,9.233,0.614,0.0,0.0,0.0,0.0,3238.0,2671.2,3238.0,20.927,14.72,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.063,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.768,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.663,36.663,36.663,36.663,0.0,0.0,0.0,0.0,0.0,0.0,5.479,0.767,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,0.0,20.351,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3377.7,1637.3,3377.7,22.312,0.0,0.0,3.576,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.107,-0.066,4.805,0.0,0.728,0.0,4.046,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,37.643,37.643,37.643,37.643,0.0,0.0,0.0,0.0,0.0,0.0,3.099,0.249,0.0,0.0,2.826,1.033,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.368,0.0,13.244,9.233,0.609,0.0,0.0,0.0,0.0,2951.6,2662.4,2951.6,17.411,15.363,0.0,3.755,3.756,0.529,5.693,0.653,10.826,-12.451,0.0,0.0,0.0,1.912,-0.043,4.855,0.0,0.737,0.0,2.084,-8.802,-2.478,0.0,-0.074,-0.537,-0.062,0.79,-0.048,-2.192,11.832,0.0,0.0,0.0,-3.437,-0.037,-1.245,-3.237,-0.178,0.0,1.867,7.971,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.906,39.906,39.906,39.906,0.0,0.0,0.0,0.0,0.0,0.0,5.326,0.363,0.0,0.0,2.744,1.032,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,12.678,9.233,0.614,0.0,0.0,0.0,0.0,3233.6,2663.4,3233.6,20.905,14.71,0.0,3.606,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.058,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.766,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,39.493,39.493,39.493,39.493,0.0,0.0,0.0,0.0,0.0,0.0,5.183,0.345,0.0,0.0,2.516,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,0.0,19.464,0.0,12.653,9.233,0.614,0.0,0.0,0.0,0.0,3159.1,2560.4,3159.1,20.595,14.612,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.97,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.741,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.923,33.923,33.923,33.923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.672,0.765,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.537,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2625.5,2625.5,0.0,14.688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.012,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.975,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,39.731,39.731,39.731,39.731,0.0,0.0,0.0,0.0,0.0,0.0,5.266,0.356,0.0,0.0,2.648,1.022,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.513,0.0,12.667,9.233,0.614,0.0,0.0,0.0,0.0,3199.9,2616.1,3199.9,20.759,14.658,0.0,3.608,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.02,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.755,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.567,36.567,36.567,36.567,0.0,0.0,0.0,0.0,0.0,0.0,5.402,0.747,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,0.0,20.297,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3345.9,1637.3,3345.9,22.102,0.0,0.0,3.578,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.991,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,37.491,37.491,37.491,37.491,0.0,0.0,0.0,0.0,0.0,0.0,3.075,0.245,0.0,0.0,2.713,1.022,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.352,0.0,13.233,9.233,0.609,0.0,0.0,0.0,0.0,2933.8,2615.3,2933.8,17.319,15.314,0.0,3.756,3.756,0.529,5.693,0.653,10.826,-12.451,0.0,0.0,0.0,1.912,-0.043,4.855,0.0,0.737,0.0,2.067,-8.802,-2.478,0.0,-0.073,-0.537,-0.062,0.79,-0.048,-2.192,11.832,0.0,0.0,0.0,-3.437,-0.037,-1.245,-3.237,-0.178,0.0,1.856,7.971,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.713,39.713,39.713,39.713,0.0,0.0,0.0,0.0,0.0,0.0,5.259,0.355,0.0,0.0,2.637,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,12.666,9.233,0.614,0.0,0.0,0.0,0.0,3196.9,2610.5,3196.9,20.744,14.652,0.0,3.608,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.016,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.754,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,7036.9,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,7011.6,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,7134.8,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -303,7 +243,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.72 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,2097.0,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.796,41.796,41.796,41.796,0.0,0.0,0.0,0.0,0.0,0.0,6.76,0.381,0.0,0.0,3.25,0.964,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,13.141,9.233,0.614,0.0,0.0,0.0,0.0,3469.4,2829.0,3469.4,21.834,15.723,0.0,3.576,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.967,-8.907,-2.499,0.0,-0.008,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.565,41.565,41.565,41.565,0.0,0.0,0.0,0.0,0.0,0.0,6.679,0.372,0.0,0.0,3.12,0.953,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.388,0.0,13.125,9.233,0.614,0.0,0.0,0.0,0.0,3429.4,2765.2,3429.4,21.661,15.649,0.0,3.578,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.919,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.224,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,4380.1,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -317,7 +257,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668, base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,2913.9,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.417,66.417,51.979,51.979,7.157,3.6,3.68,0.0,0.0,0.0,13.66,0.859,0.198,0.008,6.26,0.553,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.686,0.206,18.963,9.233,0.615,0.0,0.0,0.0,4.0,6404.2,4080.8,6404.2,37.585,22.78,0.0,3.417,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.284,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.239,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.27,66.27,51.856,51.856,7.146,3.594,3.674,0.0,0.0,0.0,13.622,0.852,0.195,0.008,6.187,0.55,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.602,0.203,18.948,9.233,0.615,0.0,0.0,0.0,3.0,6318.0,4072.0,6318.0,37.085,22.962,0.0,3.419,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.199,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.225,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.4,1280.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,1354.8,997.6,8540.6,2104.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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 6fe9d1cdc9..ed8e11b143 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -48,7 +48,7 @@ base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1132.06,144.0,988.06, base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1324.25,144.0,1180.25,0.0,1324.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1139.97,144.0,995.97,0.0,1139.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-generator.xml,1642.11,144.0,962.4,0.0,1106.4,144.0,7.16,151.16,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1177.69,144.0,1033.69,0.0,1177.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,1175.96,144.0,1031.96,0.0,1175.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,1058.78,144.0,609.48,0.0,753.48,144.0,161.3,305.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-laundry-room.xml,1031.55,144.0,602.54,0.0,746.54,144.0,141.01,285.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,1630.77,144.0,1128.08,0.0,1272.08,144.0,214.69,358.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -61,7 +61,7 @@ base-bldgtype-multifamily.xml,1257.56,144.0,962.4,0.0,1106.4,144.0,7.16,151.16,0 base-dhw-combi-tankless-outside.xml,1395.79,144.0,786.38,0.0,930.38,144.0,321.41,465.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-combi-tankless.xml,1408.85,144.0,786.73,0.0,930.73,144.0,334.12,478.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-2-speed.xml,1322.95,144.0,1178.95,0.0,1322.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-gshp.xml,1527.57,144.0,1383.57,0.0,1527.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-gshp.xml,1520.79,144.0,1376.79,0.0,1520.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-hpwh.xml,1667.45,144.0,1089.75,0.0,1233.75,144.0,289.7,433.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-tankless.xml,1383.44,144.0,1239.44,0.0,1383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-var-speed.xml,1296.03,144.0,1152.03,0.0,1296.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -168,7 +168,6 @@ base-foundation-unconditioned-basement.xml,1517.6,144.0,1091.42,0.0,1235.42,144. base-foundation-unvented-crawlspace.xml,1497.14,144.0,1094.83,0.0,1238.83,144.0,114.31,258.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-vented-crawlspace.xml,1516.37,144.0,1092.87,0.0,1236.87,144.0,135.5,279.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-walkout-basement.xml,1923.01,144.0,1333.25,0.0,1477.25,144.0,301.76,445.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml,1826.3,144.0,1682.3,0.0,1826.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1421.57,144.0,1277.57,0.0,1421.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1826.3,144.0,1682.3,0.0,1826.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1690.55,144.0,1546.55,0.0,1690.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -182,66 +181,7 @@ base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.x base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1866.48,144.0,1420.64,0.0,1564.64,144.0,157.84,301.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1871.5,144.0,1426.79,0.0,1570.79,144.0,156.71,300.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-var-speed.xml,1649.73,144.0,1505.73,0.0,1649.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1440.72,144.0,1296.72,0.0,1440.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,1709.08,144.0,1565.08,0.0,1709.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1902.02,144.0,1758.02,0.0,1902.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1837.53,144.0,1693.53,0.0,1837.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml,2006.49,144.0,1862.49,0.0,2006.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1784.45,144.0,1640.45,0.0,1784.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1711.66,144.0,1567.66,0.0,1711.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,1669.06,144.0,1525.06,0.0,1669.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,1631.98,144.0,1487.98,0.0,1631.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,1812.2,144.0,1380.65,0.0,1524.65,144.0,143.55,287.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,1852.39,144.0,1388.2,0.0,1532.2,144.0,176.19,320.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,1680.04,144.0,1536.04,0.0,1680.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,1654.5,144.0,1510.5,0.0,1654.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,1644.96,144.0,1500.96,0.0,1644.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-elec-only.xml,1913.05,144.0,1769.05,0.0,1913.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,1825.19,144.0,1336.96,0.0,1480.96,144.0,200.23,344.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-gas-only.xml,1610.78,144.0,1124.56,0.0,1268.56,144.0,198.22,342.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-central-ac-only-1-speed.xml,1469.27,144.0,1325.27,0.0,1469.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-central-ac-only-2-speed.xml,1407.57,144.0,1263.57,0.0,1407.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-central-ac-only-var-speed.xml,1382.99,144.0,1238.99,0.0,1382.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,1925.36,144.0,1781.36,0.0,1925.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,1956.98,144.0,1503.0,0.0,1647.0,144.0,165.98,309.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1938.08,144.0,1493.88,0.0,1637.88,144.0,156.2,300.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1938.08,144.0,1493.88,0.0,1637.88,144.0,156.2,300.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-backup-hardsized.xml,1729.72,144.0,1318.27,0.0,1462.27,144.0,123.45,267.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1729.72,144.0,1318.27,0.0,1462.27,144.0,123.45,267.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1864.01,144.0,1720.01,0.0,1864.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-evap-cooler-furnace-gas.xml,1721.18,144.0,1176.02,0.0,1320.02,144.0,257.16,401.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-floor-furnace-propane-only.xml,1854.32,144.0,1116.36,0.0,1260.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,593.96,593.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-elec-only.xml,2111.33,144.0,1967.33,0.0,2111.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1819.3,144.0,1279.93,0.0,1423.93,144.0,251.37,395.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1795.21,144.0,1256.04,0.0,1400.04,144.0,251.17,395.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-only.xml,1681.87,144.0,1139.26,0.0,1283.26,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-furnace-gas-room-ac.xml,1870.89,144.0,1325.73,0.0,1469.73,144.0,257.16,401.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1410.07,144.0,1266.07,0.0,1410.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1494.47,144.0,1350.47,0.0,1494.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1623.72,144.0,1479.72,0.0,1623.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1608.41,144.0,1464.41,0.0,1608.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1608.41,144.0,1464.41,0.0,1608.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,1380.18,144.0,1236.18,0.0,1380.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,1354.02,144.0,1210.02,0.0,1354.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,1486.98,144.0,1342.98,0.0,1486.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,1597.45,144.0,1453.45,0.0,1597.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1572.0,144.0,1428.0,0.0,1572.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1553.36,144.0,1409.36,0.0,1553.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml,1529.43,144.0,1385.43,0.0,1529.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,1881.97,144.0,1307.05,0.0,1451.05,0.0,0.0,0.0,0.0,430.92,430.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ptac-with-heating.xml,2018.27,144.0,1874.27,0.0,2018.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-ptac.xml,1406.16,144.0,1262.16,0.0,1406.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,1669.5,144.0,1525.5,0.0,1669.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,1674.42,144.0,1530.42,0.0,1674.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,1693.91,144.0,1549.91,0.0,1693.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-only.xml,1443.25,144.0,1299.25,0.0,1443.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-with-heating.xml,2056.38,144.0,1912.38,0.0,2056.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml,1669.5,144.0,1525.5,0.0,1669.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml,1674.42,144.0,1530.42,0.0,1674.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml,1693.91,144.0,1549.91,0.0,1693.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize-sizing-controls.xml,1933.78,144.0,1574.88,0.0,1718.88,144.0,70.9,214.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2024.96,144.0,1120.05,0.0,1264.05,0.0,0.0,0.0,0.0,760.91,760.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-wall-furnace-elec-only.xml,1876.31,144.0,1732.31,0.0,1876.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-autosize.xml,1868.95,144.0,1329.18,0.0,1473.18,144.0,251.77,395.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-boiler-coal-only.xml,1560.56,144.0,1125.23,0.0,1269.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,291.33,291.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1937.89,144.0,1793.89,0.0,1937.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -290,12 +230,12 @@ base-hvac-furnace-oil-only.xml,2094.22,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1912.48,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,630.01,630.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-wood-only.xml,1630.62,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop.xml,1593.57,144.0,1449.57,0.0,1593.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1392.76,144.0,1248.76,0.0,1392.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1609.5,144.0,1465.5,0.0,1609.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1489.56,144.0,1345.56,0.0,1489.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,1525.52,144.0,1381.52,0.0,1525.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1608.55,144.0,1464.55,0.0,1608.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop.xml,1593.41,144.0,1449.41,0.0,1593.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1388.97,144.0,1244.97,0.0,1388.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1602.16,144.0,1458.16,0.0,1602.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1486.02,144.0,1342.02,0.0,1486.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,1519.93,144.0,1375.93,0.0,1519.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump.xml,1601.47,144.0,1457.47,0.0,1601.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1941.16,144.0,1797.16,0.0,1941.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1753.34,144.0,1609.34,0.0,1753.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1734.42,144.0,1590.42,0.0,1734.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -303,7 +243,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1890.39,144.0,1347. base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1834.46,144.0,1291.85,0.0,1435.85,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1810.78,144.0,1268.18,0.0,1412.18,144.0,254.6,398.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-furnace-gas-only.xml,1683.54,144.0,1133.54,0.0,1277.54,144.0,262.0,406.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1677.93,144.0,1533.93,0.0,1677.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1669.44,144.0,1525.44,0.0,1669.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1392.28,144.0,1248.28,0.0,1392.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1636.52,144.0,1492.52,0.0,1636.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1368.78,144.0,1224.78,0.0,1368.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -317,7 +257,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1692.21,144.0,1309.03 base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1881.87,144.0,1305.44,0.0,1449.44,0.0,0.0,0.0,0.0,432.43,432.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1525.19,144.0,1381.19,0.0,1525.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ductless.xml,1525.19,144.0,1381.19,0.0,1525.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-multiple.xml,2497.28,144.0,1907.64,0.0,2051.64,144.0,75.82,219.82,0.0,125.92,125.92,0.0,99.9,99.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2492.27,144.0,1903.15,0.0,2047.15,144.0,75.7,219.7,0.0,125.7,125.7,0.0,99.72,99.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-none.xml,2521.91,144.0,2377.91,0.0,2521.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-electricity.xml,2026.83,144.0,1882.83,0.0,2026.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-natural-gas.xml,1781.03,144.0,1273.0,0.0,1417.0,144.0,220.03,364.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From abe4907462b37b2c309274324f406be9678bc846 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 18 Oct 2023 11:13:46 -0700 Subject: [PATCH 168/217] Update sizing test after pulling ground temp changes in. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/tests/test_hvac_sizing.rb | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 802997fa22..5526a81b06 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 5acb2e9b-c1f5-4bd9-a0e1-7d009810a0d5 - 2023-10-18T15:33:10Z + 19256c5c-514c-400f-81ca-5dec6e8d9e0f + 2023-10-18T18:12:56Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -574,7 +574,7 @@ test_hvac_sizing.rb rb test - 15DAE8BD + 2A3EF013 test_lighting.rb diff --git a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb index 9114dce2db..57d3dbde5e 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb @@ -383,15 +383,15 @@ def test_ground_loop XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) _model, hpxml = _test_measure(args_hash) assert_equal(3, hpxml.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(878.0 / 3 + 5.0, hpxml.geothermal_loops[0].bore_length, 0.01) + assert_in_epsilon(1309.6 / 3 + 5.0, hpxml.geothermal_loops[0].bore_length, 0.01) # Bore depth greater than the max -> increase number of boreholes hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') hpxml.site.ground_conductivity = 0.2 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) _model, hpxml = _test_measure(args_hash) - assert_equal(5, hpxml.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(2433.0 / 5 + 5, hpxml.geothermal_loops[0].bore_length, 0.01) + assert_equal(8, hpxml.geothermal_loops[0].num_bore_holes) + assert_in_epsilon(3627.3 / 8 + 5, hpxml.geothermal_loops[0].bore_length, 0.01) # Bore depth greater than the max -> increase number of boreholes until the max, set depth to the max, and issue warning hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') @@ -407,7 +407,7 @@ def test_ground_loop XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) _model, hpxml = _test_measure(args_hash) assert_equal(10, hpxml.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(3450.0 / 10 + 5, hpxml.geothermal_loops[0].bore_length, 0.01) + assert_in_epsilon(4374.5 / 10 + 5, hpxml.geothermal_loops[0].bore_length, 0.01) end def _test_measure(args_hash) From 76cf5f3d170a12902c3bef74de7e4dd1bf5c9856 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 18 Oct 2023 20:52:18 +0000 Subject: [PATCH 169/217] Latest results. --- workflow/tests/base_results/results_sizing.csv | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/workflow/tests/base_results/results_sizing.csv b/workflow/tests/base_results/results_sizing.csv index 72dbd75541..c665f5a6e7 100644 --- a/workflow/tests/base_results/results_sizing.csv +++ b/workflow/tests/base_results/results_sizing.csv @@ -97,15 +97,24 @@ base-hvac-autosizefurnace-oil-only.xml,32235.0,0.0,0.0 base-hvac-autosizefurnace-propane-only.xml,32235.0,0.0,0.0 base-hvac-autosizefurnace-wood-only.xml,32235.0,0.0,0.0 base-hvac-autosizefurnace-x3-dse.xml,23876.0,14272.0,0.0 +base-hvac-autosizegeothermal-loop-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0 +base-hvac-autosizegeothermal-loop-sizing-methodology-HERS.xml,33439.0,33439.0,31147.0 +base-hvac-autosizegeothermal-loop-sizing-methodology-MaxLoad.xml,33439.0,33439.0,31147.0 base-hvac-autosizeground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,24222.0,0.0 base-hvac-autosizeground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,24222.0,0.0 base-hvac-autosizeground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,24222.0,0.0 +base-hvac-autosizeground-to-air-heat-pump-ground-diffusivity-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0 +base-hvac-autosizeground-to-air-heat-pump-ground-diffusivity-sizing-methodology-HERS.xml,33439.0,33439.0,31147.0 +base-hvac-autosizeground-to-air-heat-pump-ground-diffusivity-sizing-methodology-MaxLoad.xml,33439.0,33439.0,31147.0 base-hvac-autosizeground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0 base-hvac-autosizeground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0 base-hvac-autosizeground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,31147.0,0.0,31147.0 base-hvac-autosizeground-to-air-heat-pump-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0 base-hvac-autosizeground-to-air-heat-pump-sizing-methodology-HERS.xml,33439.0,33439.0,31147.0 base-hvac-autosizeground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,33439.0,33439.0,31147.0 +base-hvac-autosizeground-to-air-heat-pump-soil-moisture-type-sizing-methodology-ACCA.xml,29335.0,29335.0,29335.0 +base-hvac-autosizeground-to-air-heat-pump-soil-moisture-type-sizing-methodology-HERS.xml,31692.0,31692.0,29335.0 +base-hvac-autosizeground-to-air-heat-pump-soil-moisture-type-sizing-methodology-MaxLoad.xml,31692.0,31692.0,29335.0 base-hvac-autosizeinstall-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,25872.0,26949.0,31147.0 base-hvac-autosizeinstall-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,37299.0,38852.0,31147.0 base-hvac-autosizeinstall-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,74429.0,77527.0,31147.0 From 8e0cad7f6e3a5914b33b1ac4cd7959ee2426f514 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 23 Oct 2023 15:54:27 -0700 Subject: [PATCH 170/217] Update sizing test after pulling ground temp changes in. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/tests/test_hvac_sizing.rb | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 7de0ccda61..162104d170 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 2ea40691-12df-45eb-8df7-08dfef298afe - 2023-10-23T22:41:39Z + 8eaa550c-fdef-4425-a879-3bf85d69f5e5 + 2023-10-23T22:54:13Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -586,7 +586,7 @@ test_hvac_sizing.rb rb test - D98C4E14 + 27EFE6B3 test_lighting.rb diff --git a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb index 37d408bbe9..97dfb7fa21 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb @@ -415,15 +415,15 @@ def test_ground_loop XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) _model, hpxml = _test_measure(args_hash) assert_equal(3, hpxml.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(1309.6 / 3 + 5.0, hpxml.geothermal_loops[0].bore_length, 0.01) + assert_in_epsilon(884.6 / 3 + 5.0, hpxml.geothermal_loops[0].bore_length, 0.01) # Bore depth greater than the max -> increase number of boreholes hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') hpxml.site.ground_conductivity = 0.2 XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) _model, hpxml = _test_measure(args_hash) - assert_equal(8, hpxml.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(3627.3 / 8 + 5, hpxml.geothermal_loops[0].bore_length, 0.01) + assert_equal(5, hpxml.geothermal_loops[0].num_bore_holes) + assert_in_epsilon(2450.2 / 5 + 5, hpxml.geothermal_loops[0].bore_length, 0.01) # Bore depth greater than the max -> increase number of boreholes until the max, set depth to the max, and issue warning hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') @@ -439,7 +439,7 @@ def test_ground_loop XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) _model, hpxml = _test_measure(args_hash) assert_equal(10, hpxml.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(4374.5 / 10 + 5, hpxml.geothermal_loops[0].bore_length, 0.01) + assert_in_epsilon(3434.3 / 10 + 5, hpxml.geothermal_loops[0].bore_length, 0.01) end def _test_measure(args_hash) From d37d8ae23cb12960846589def9461828dc25d24d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 24 Oct 2023 00:00:24 +0000 Subject: [PATCH 171/217] Latest results. --- workflow/tests/base_results/results.csv | 848 +++++++++--------- workflow/tests/base_results/results_bills.csv | 736 +++++++-------- .../tests/base_results/results_sizing.csv | 588 ++++++++---- 3 files changed, 1184 insertions(+), 988 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index eedcbc359a..a64c21942c 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 Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Permanent Spa Heater (MBtu),End Use: Electricity: Permanent Spa Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Permanent Spa Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu),Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),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) -base-appliances-coal.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,0.0,0.0,4.866,0.0,0.366,0.0,0.0,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,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,22.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,1.797,3.069,0.0,0.0,0.0,0.0,0.0,20.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-portable.xml,34.584,34.584,33.264,33.264,1.32,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.826,1.884,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.604,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,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.179,0.0,30.519,6.675,0.572,0.0,0.0,0.0,0.0,2183.1,2769.4,2769.4,9.475,14.238,0.0,1.76,1.643,0.0,0.0,0.389,5.007,-4.88,0.0,0.0,0.0,1.306,-0.369,1.05,0.081,0.396,0.0,0.033,-4.717,-0.767,0.0,0.538,-0.018,0.0,0.0,0.204,1.904,17.134,0.0,0.0,0.0,1.816,-0.364,-0.339,-1.902,-0.093,0.0,0.349,9.574,1.88,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-ief-whole-home.xml,34.612,34.612,33.313,33.313,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.826,1.884,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.654,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,1.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.152,0.0,30.496,6.675,0.572,0.0,0.0,0.0,0.0,2132.0,2769.1,2769.1,9.495,14.238,0.0,1.768,1.651,0.0,0.0,0.392,5.039,-4.907,0.0,0.0,0.0,1.309,-0.375,1.058,0.077,0.398,0.0,0.032,-4.776,-0.771,0.0,0.546,-0.01,0.0,0.0,0.206,1.934,17.107,0.0,0.0,0.0,1.817,-0.37,-0.332,-1.902,-0.091,0.0,0.349,9.535,1.876,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-multiple.xml,34.576,34.576,33.186,33.186,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.814,1.881,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.541,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,1.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.234,0.0,30.457,6.675,0.572,0.0,0.0,0.0,0.0,2161.3,2769.5,2769.5,9.551,14.238,0.0,1.77,1.649,0.0,0.0,0.389,4.992,-4.971,0.0,0.0,0.0,1.322,-0.362,1.049,0.08,0.397,0.0,0.034,-4.607,-0.774,0.0,0.554,-0.005,0.0,0.0,0.205,1.909,17.044,0.0,0.0,0.0,1.85,-0.357,-0.336,-1.892,-0.09,0.0,0.349,9.512,1.873,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier.xml,34.549,34.549,33.244,33.244,1.306,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.819,1.882,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.593,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.174,0.0,30.472,6.675,0.572,0.0,0.0,0.0,0.0,2021.7,2769.3,2769.3,9.547,14.238,0.0,1.779,1.659,0.0,0.0,0.394,5.053,-4.954,0.0,0.0,0.0,1.316,-0.378,1.061,0.077,0.4,0.0,0.032,-4.743,-0.777,0.0,0.561,0.002,0.0,0.0,0.209,1.962,17.061,0.0,0.0,0.0,1.837,-0.373,-0.326,-1.898,-0.088,0.0,0.349,9.498,1.87,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-gas.xml,60.283,60.283,33.25,33.25,27.033,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.167,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,58.898,58.898,36.934,36.934,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.421,0.86,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,0.0,21.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.569,0.0,14.481,9.799,0.614,0.0,0.0,0.0,0.0,2145.2,3338.0,3338.0,22.992,18.129,0.0,3.553,3.64,0.512,7.521,0.63,10.527,-12.537,0.0,0.0,0.0,8.295,-0.067,5.405,0.0,0.0,0.0,4.777,-9.533,-2.497,0.0,-0.064,-0.47,-0.053,2.665,-0.028,-1.959,11.746,0.0,0.0,0.0,-6.383,-0.063,-1.315,-3.127,0.0,0.0,3.2,8.503,2.012,1354.8,1997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,53.16,53.16,28.389,28.389,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.409,0.0,0.0,3.967,0.749,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,0.0,24.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.199,0.0,12.602,7.908,0.616,0.0,0.0,0.0,0.0,1857.3,2854.2,2854.2,23.391,16.897,0.0,3.516,3.617,0.509,7.449,0.625,10.463,-12.573,0.0,0.0,0.0,8.215,-0.059,5.395,0.0,0.0,0.0,5.311,-7.089,-2.504,0.0,0.006,-0.415,-0.045,2.819,-0.013,-1.79,11.71,0.0,0.0,0.0,-6.123,-0.055,-1.262,-2.89,0.0,0.0,2.862,5.972,2.005,0.0,0.0,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-oil-location-miami-fl.xml,50.322,50.322,45.456,45.456,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.994,4.138,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,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,67.896,4.659,0.55,0.0,0.0,0.0,0.0,2457.6,3204.1,3204.1,0.0,21.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.803,0.731,0.135,9.758,0.336,4.056,19.846,0.0,0.0,0.0,3.201,-0.01,-0.532,-2.922,-0.004,0.0,10.389,17.693,4.51,1354.8,997.6,8625.2,1979.2,0.0,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-appliances-oil.xml,60.283,60.283,33.25,33.25,22.167,4.866,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-propane-location-portland-or.xml,55.136,55.136,29.779,29.779,20.491,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.121,0.36,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,0.0,20.491,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.936,0.0,5.929,8.776,0.615,0.0,0.0,0.0,0.0,1916.9,2708.6,2708.6,14.111,15.007,0.0,3.146,3.297,0.464,7.019,0.645,9.268,-10.9,0.0,0.0,0.0,12.156,-0.072,4.333,0.0,0.553,0.0,4.074,-12.106,-3.173,0.0,-0.13,-0.422,-0.05,1.292,-0.027,-1.54,7.992,0.0,0.0,0.0,-6.11,-0.072,-0.929,-1.946,-0.123,0.0,1.138,5.651,1.337,1354.8,997.6,11239.5,2579.1,0.0,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 -base-appliances-propane.xml,60.283,60.283,33.25,33.25,22.167,0.0,4.866,0.0,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,60.283,60.283,33.25,33.25,22.167,0.0,0.0,4.866,0.0,0.0,0.0,0.366,0.0,0.0,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,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,22.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,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.759,0.0,14.344,9.233,0.614,0.0,0.0,0.0,0.0,1987.8,3146.8,3146.8,22.994,18.213,0.0,3.552,3.64,0.512,7.517,0.63,10.524,-12.551,0.0,0.0,0.0,8.295,-0.065,4.983,0.0,0.487,0.0,4.815,-9.423,-2.499,0.0,-0.057,-0.465,-0.052,2.676,-0.027,-1.946,11.732,0.0,0.0,0.0,-6.361,-0.061,-1.213,-3.111,-0.111,0.0,3.177,8.334,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,62.108,62.108,35.78,35.78,26.327,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,4.116,0.788,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,0.0,26.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.0,13.096,9.233,0.616,0.0,0.0,0.0,0.0,2144.9,2994.5,2994.5,22.741,15.269,6.752,0.0,4.218,0.511,7.47,0.631,13.357,-15.479,0.0,0.0,0.0,8.316,-0.088,9.307,0.0,0.728,0.0,0.0,-8.943,-2.507,0.15,0.0,-0.5,-0.047,2.763,-0.016,-2.011,15.663,0.0,0.0,0.0,-6.322,-0.063,-2.08,-3.866,-0.157,0.0,0.0,7.837,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,63.998,63.998,40.48,40.48,23.519,0.0,0.0,0.0,0.0,0.0,0.0,0.388,0.0,0.0,4.716,0.934,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,0.0,23.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.0,0.0,22.009,0.0,15.57,9.18,0.614,0.0,0.0,0.0,0.0,2372.9,3431.1,3431.1,22.556,17.978,4.552,1.164,5.544,0.518,7.652,0.634,15.396,-16.987,0.0,0.0,0.0,8.521,-0.079,7.082,0.0,0.73,0.0,0.283,-10.23,-3.183,0.006,0.021,-0.566,-0.053,2.688,-0.03,-3.03,17.676,0.0,0.0,0.0,-6.349,-0.073,-1.691,-4.146,-0.166,0.0,0.089,8.934,2.568,1354.8,997.6,11399.6,2521.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31467.0,777.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,55.025,55.025,35.109,35.109,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.329,0.0,0.0,3.657,0.683,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.638,0.0,11.332,9.233,0.615,0.0,0.0,0.0,0.0,2122.7,2676.8,2676.8,17.665,11.983,6.031,0.0,3.609,0.508,7.438,0.623,10.437,-12.555,0.0,0.0,0.0,8.179,-0.074,4.797,0.0,0.727,0.0,0.0,-8.909,-2.5,0.306,0.0,-0.447,-0.049,2.732,-0.023,-1.898,11.723,0.0,0.0,0.0,-6.268,-0.048,-1.153,-3.026,-0.163,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,37.386,37.386,33.169,33.169,4.216,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.237,1.963,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,0.0,4.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,3.893,0.0,31.75,6.675,0.58,0.0,0.0,0.0,0.0,1819.0,3191.0,3191.0,13.538,17.973,0.0,6.125,1.589,0.0,0.0,0.33,4.482,-5.968,0.0,0.0,0.0,0.856,-0.331,0.992,0.0,0.4,0.0,0.104,-4.05,-0.858,0.0,2.477,0.172,0.0,0.0,0.203,2.089,16.047,0.0,0.0,0.0,2.125,-0.323,-0.274,-1.707,-0.047,0.0,0.371,9.113,1.789,1354.8,997.6,9989.0,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,25731.0,1408.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,22171.0,75.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-atticroof-unvented-insulated-roof.xml,57.557,57.557,35.266,35.266,22.291,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.755,0.701,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,0.0,22.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,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.862,0.0,11.601,9.233,0.615,0.0,0.0,0.0,0.0,2113.8,2770.7,2770.7,19.263,13.198,0.0,5.41,3.618,0.509,7.459,0.625,10.466,-12.56,0.0,0.0,0.0,8.254,-0.063,4.802,0.0,0.728,0.0,2.71,-8.917,-2.501,0.0,-1.422,-0.414,-0.045,2.832,-0.014,-1.793,11.723,0.0,0.0,0.0,-6.09,-0.054,-1.129,-2.881,-0.16,0.0,1.401,7.863,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,30483.0,4824.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,58.246,58.246,35.607,35.607,22.638,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,3.885,0.733,9.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,0.0,22.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,0.0,0.0,21.198,0.0,12.242,9.233,0.803,0.0,0.0,0.0,0.0,2134.4,2894.3,2894.3,21.558,14.347,0.0,3.887,3.629,0.511,7.487,0.628,10.499,-12.564,0.0,0.0,0.0,8.265,-0.062,4.804,0.0,0.728,0.0,4.161,-8.587,-2.503,0.0,-0.516,-0.438,-0.048,2.753,-0.019,-1.859,11.719,0.0,0.0,0.0,-6.236,-0.058,-1.149,-2.986,-0.162,0.0,1.893,7.577,2.007,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,60.515,60.515,37.684,37.684,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.735,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2229.4,3414.5,3414.5,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.31,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-2stories.xml,51.64,51.64,34.587,34.587,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.222,0.0,0.0,3.276,0.585,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,0.0,17.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,9.72,9.269,0.614,0.0,0.0,0.0,0.0,2094.2,2982.2,2982.2,17.87,14.198,0.0,2.424,5.051,0.296,4.358,0.636,7.701,-8.49,0.0,0.0,0.0,4.99,-0.068,7.092,0.0,0.728,0.0,2.352,-8.901,-2.5,0.0,0.007,-0.648,-0.026,1.614,-0.018,-1.758,7.913,0.0,0.0,0.0,-3.98,-0.063,-1.693,-2.541,-0.162,0.0,1.311,7.878,2.01,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-atticroof-cathedral.xml,98.082,98.082,37.233,37.233,60.849,0.0,0.0,0.0,0.0,0.0,0.0,0.793,0.0,0.0,4.976,0.951,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,0.0,60.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,56.74,0.0,15.618,9.269,0.623,0.0,0.0,0.0,0.0,2190.6,4386.8,4386.8,36.464,27.659,49.5,0.0,2.937,0.289,3.699,0.667,5.179,-5.267,0.0,0.0,0.0,3.437,-0.838,7.548,0.0,0.773,0.0,0.0,-9.671,-2.683,8.574,0.0,-0.154,0.004,1.546,0.121,-0.516,5.086,0.0,0.0,0.0,-4.261,-0.799,-0.85,-1.172,-0.093,0.0,0.0,7.116,1.827,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-infil-compartmentalization-test.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-attached.xml,42.713,42.713,29.938,29.938,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.094,0.0,0.0,2.752,0.472,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,0.0,12.774,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.846,0.0,7.797,9.387,0.614,0.0,0.0,0.0,0.0,1823.3,2287.8,2287.8,13.185,10.004,0.0,2.342,2.365,0.292,4.233,0.623,3.86,-4.264,0.0,0.0,0.0,4.663,-0.043,3.032,0.0,0.726,0.0,3.241,-7.558,-1.813,0.0,0.024,-0.285,-0.027,1.554,-0.023,-0.966,3.964,0.0,0.0,0.0,-4.085,-0.041,-0.769,-1.218,-0.166,0.0,1.598,6.833,1.455,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.626,36.626,24.815,24.815,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.087,0.0,0.0,1.608,0.207,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,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,0.0,3.054,9.538,0.73,0.0,0.0,0.0,0.0,1572.5,2015.2,2015.2,7.667,5.819,0.0,2.94,3.649,0.0,0.0,0.582,1.416,-1.582,0.0,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-4.25,-1.186,0.0,-0.922,-0.231,0.0,0.0,-0.054,-0.234,1.305,0.0,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.559,3.423,0.841,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-multiple.xml,31.845,31.845,25.255,25.255,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,2.093,0.314,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,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,0.0,4.965,9.538,0.61,0.0,0.0,0.0,0.0,1562.3,2239.8,2239.8,9.397,10.552,0.0,-0.004,3.294,0.0,0.0,1.383,4.001,-4.202,0.0,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-6.296,-1.142,0.0,0.0,-0.445,0.0,0.0,-0.418,-0.571,3.958,0.0,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.481,5.704,0.884,1354.8,997.6,11399.5,3156.5,0.0,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,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.799,49.799,24.82,24.82,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.183,0.0,0.0,1.466,0.173,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,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,0.0,2.504,9.538,0.818,0.0,0.0,0.0,0.0,1579.9,2256.3,2256.3,11.078,8.452,0.0,5.364,4.204,0.0,0.0,0.788,1.403,-1.699,0.0,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-4.485,-1.249,0.0,-1.186,-0.054,0.0,0.0,-0.054,-0.122,1.188,0.0,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.528,3.187,0.778,1354.8,997.6,11399.5,3156.5,0.0,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,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.041,26.041,24.679,24.679,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.632,0.213,9.742,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,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,0.0,3.156,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2015.1,2015.1,3.416,5.821,0.0,0.353,3.152,0.0,0.0,0.376,1.484,-1.49,0.0,0.0,0.375,0.0,-0.006,1.698,0.0,0.0,0.0,0.387,-4.015,-1.12,0.0,-0.831,-0.466,0.0,0.0,-0.076,-0.345,1.397,0.0,0.0,-0.847,0.0,-0.002,-0.394,-0.388,0.0,0.0,0.576,3.657,0.907,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.343,26.343,25.227,25.227,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.109,0.333,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,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,0.0,5.133,9.538,0.587,0.0,0.0,0.0,0.0,1559.4,1834.6,1834.6,3.707,4.327,0.0,-0.003,3.197,0.0,0.0,0.368,1.519,-1.394,0.0,0.0,-0.002,0.0,-0.063,1.76,0.0,0.0,0.0,0.321,-3.692,-1.021,0.0,-0.001,-0.556,0.0,0.0,-0.044,-0.506,1.493,0.0,0.0,-0.0,0.0,-0.059,-0.532,-0.512,0.0,0.0,0.913,3.98,1.006,1354.8,997.6,11399.5,3156.5,0.0,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,6278.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.841,26.841,26.284,26.284,0.557,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.967,0.547,9.684,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.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,0.514,0.0,8.85,9.538,0.575,0.0,0.0,0.0,0.0,1703.9,1962.7,1962.7,3.256,6.985,0.0,-0.013,2.505,0.0,0.0,0.42,4.041,-2.559,0.0,0.0,-0.009,0.0,-0.344,0.994,0.0,0.68,0.0,0.0,-4.559,-0.773,0.0,-0.008,-1.074,0.0,0.0,-0.048,-1.702,5.598,0.0,0.0,-0.004,0.0,-0.334,-0.402,-1.335,-0.391,0.0,0.0,7.407,1.254,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 -base-bldgtype-multifamily-residents-1.xml,19.898,19.898,18.595,18.595,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.363,0.394,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,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,0.0,6.696,4.213,0.585,0.0,0.0,0.0,0.0,1104.0,1602.9,1602.9,3.916,6.507,0.0,-0.014,2.619,0.0,0.0,0.418,4.236,-3.104,0.0,0.0,-0.012,0.0,-0.305,1.3,0.0,0.75,0.0,0.0,-3.826,-0.937,0.0,-0.01,-0.765,0.0,0.0,-0.014,-1.207,5.053,0.0,0.0,-0.007,0.0,-0.297,-0.396,-1.194,-0.272,0.0,0.0,4.803,1.089,817.2,530.6,4779.7,1341.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.394,27.394,26.696,26.696,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.0,3.07,0.825,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1670.4,2088.4,2088.4,3.455,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.149,28.149,27.404,27.404,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,3.656,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1695.4,2322.2,2322.2,3.602,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.038,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,8647.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.679,27.679,27.017,27.017,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.346,0.825,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.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.624,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1680.5,2160.3,2160.3,3.454,7.011,0.0,-0.013,2.524,0.0,0.0,0.42,4.069,-2.651,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.666,-0.794,0.0,-0.008,-1.03,0.0,0.0,-0.043,-1.633,5.506,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.301,1.233,1354.8,997.6,11399.5,3156.5,0.0,5886.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,32.821,32.821,32.278,32.278,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,8.52,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1940.2,3671.7,3671.7,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.766,27.766,27.223,27.223,0.544,0.0,0.0,0.0,0.0,0.0,0.035,0.034,0.0,0.0,3.465,0.921,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.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,0.0,9.699,9.538,0.577,0.0,0.0,0.0,0.0,1688.5,2269.4,2269.4,3.535,8.433,0.0,-0.013,2.521,0.0,0.0,0.419,4.058,-2.65,0.0,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-4.653,-0.792,0.0,-0.008,-1.032,0.0,0.0,-0.044,-1.644,5.507,0.0,0.0,-0.003,0.0,-0.332,-0.505,-1.331,-0.376,0.0,1.03,7.314,1.234,1354.8,997.6,11399.5,3156.5,0.0,28548.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1509.2,1333.8,1509.2,3.459,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.356,23.356,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1522.4,1334.7,1522.4,3.605,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.749,22.749,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1534.7,1333.8,1534.7,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.28,23.28,22.878,22.878,0.402,0.0,0.0,0.0,0.0,0.0,0.129,0.064,0.0,0.0,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.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1648.9,1334.7,1648.9,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.303,23.303,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1536.8,1333.8,1536.8,3.456,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.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.028,0.0,0.0,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.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,0.0,9.538,0.49,0.0,0.0,0.0,0.0,1528.0,1334.7,1528.0,3.537,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,5.188,-4.196,0.0,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-6.08,-1.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,1354.8,997.6,11399.6,3156.5,0.0,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.649,26.649,26.649,26.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.054,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1670.9,2071.3,2071.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.327,27.327,27.327,27.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.637,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1702.6,2322.2,2322.2,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.922,26.922,26.922,26.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.328,0.819,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,0.0,0.0,8.602,9.538,0.586,0.0,0.0,0.0,0.0,1681.0,2152.3,2152.3,0.0,7.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.007,-0.991,0.0,0.0,-0.045,-1.599,5.4,0.0,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,7.222,1.212,1354.8,997.6,11399.5,3156.5,0.0,0.0,9233.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.159,32.159,32.159,32.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.469,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,2005.7,3671.6,3671.6,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.138,27.138,27.138,27.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.447,0.914,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,0.0,0.0,9.62,9.538,0.586,0.0,0.0,0.0,0.0,1690.7,2269.3,2269.3,0.0,8.433,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.006,-0.995,0.0,0.0,-0.046,-1.616,5.402,0.0,0.0,-0.002,0.0,-0.299,-0.498,-1.329,-0.364,0.0,1.025,7.242,1.215,1354.8,997.6,11399.5,3156.5,0.0,0.0,10342.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-generator.xml,41.066,34.242,26.223,19.399,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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,-6.824,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,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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,28.119,28.119,28.119,28.119,0.0,0.0,0.0,0.0,0.0,0.0,0.188,0.307,0.0,0.0,1.965,2.892,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.0,0.624,0.0,8.676,9.538,0.577,0.0,0.0,0.0,0.0,1733.8,1845.1,1845.1,3.454,7.019,0.0,-0.014,2.532,0.0,0.0,0.423,4.098,-2.656,0.0,0.0,-0.01,0.0,-0.346,1.289,0.0,0.695,0.0,0.0,-4.704,-0.801,0.0,-0.009,-1.021,0.0,0.0,-0.04,-1.604,5.501,0.0,0.0,-0.005,0.0,-0.336,-0.495,-1.325,-0.369,0.0,0.0,7.263,1.226,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.834,31.834,16.607,16.607,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,2.971,0.549,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.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,0.0,8.962,9.538,2.265,0.0,0.0,0.0,0.0,1016.3,1476.1,1476.1,3.506,7.04,0.0,-0.014,2.49,0.0,0.0,0.42,4.044,-2.567,0.0,0.0,-0.01,0.0,-0.363,2.037,0.0,0.0,0.0,0.0,-4.807,-0.776,0.0,-0.009,-1.075,0.0,0.0,-0.045,-1.677,5.59,0.0,0.0,-0.005,0.0,-0.352,-0.911,-1.343,0.0,0.0,0.0,7.648,1.25,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room.xml,29.729,29.729,16.418,16.418,13.311,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.821,0.509,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.0,0.798,0.0,12.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,8.26,9.539,0.569,0.0,0.0,0.0,0.0,1007.2,1464.8,1464.8,3.657,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,4.11,-2.742,0.0,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-4.563,-0.822,0.0,-0.01,-0.98,0.0,0.0,-0.036,-1.539,5.415,0.0,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,6.799,1.205,1354.8,997.6,11399.6,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,51.004,51.004,30.737,30.737,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,2.739,0.294,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,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,0.0,4.803,9.538,0.617,0.0,0.0,0.0,0.0,1848.6,2360.1,2360.1,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,4.453,-4.226,0.0,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-6.729,-1.2,0.0,-0.012,-0.117,0.0,0.0,0.061,-0.243,3.931,0.0,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.13,0.0,0.0,5.278,0.826,1354.8,997.6,11399.5,3156.5,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.708,32.708,27.342,27.342,5.366,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.574,0.439,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,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,0.0,7.061,9.538,0.588,0.0,0.0,0.0,0.0,1711.5,2147.3,2147.3,4.167,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,4.308,-3.183,0.0,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-5.414,-0.952,0.0,-0.009,-0.693,0.0,0.0,-0.005,-1.118,4.974,0.0,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,6.564,1.074,1354.8,997.6,11399.5,3156.5,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent.xml,31.03,31.03,27.217,27.217,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,2.492,0.416,9.705,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,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,0.0,6.838,9.538,0.598,0.0,0.0,0.0,0.0,1638.9,2132.2,2132.2,5.993,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,4.232,-3.684,0.0,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-5.86,-1.052,0.0,-0.008,-0.511,0.0,0.0,-0.01,-0.941,4.473,0.0,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,6.129,0.974,1354.8,997.6,11399.5,3156.5,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-pv.xml,26.899,2.451,26.223,1.775,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.901,30.901,17.531,17.531,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,1052.2,1525.8,1525.8,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater.xml,29.805,29.805,16.435,16.435,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.835,0.512,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.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,0.0,8.35,9.539,0.57,0.0,0.0,0.0,0.0,999.5,1473.1,1473.1,3.652,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,4.132,-2.768,0.0,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-4.764,-0.833,0.0,-0.01,-0.966,0.0,0.0,-0.034,-1.512,5.389,0.0,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,6.998,1.194,1354.8,997.6,11399.7,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily.xml,26.899,26.899,26.223,26.223,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.917,0.534,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.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,0.0,8.678,9.538,0.577,0.0,0.0,0.0,0.0,1650.1,2043.8,2043.8,3.454,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,4.068,-2.65,0.0,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-4.665,-0.793,0.0,-0.008,-1.031,0.0,0.0,-0.043,-1.634,5.507,0.0,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,7.302,1.233,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-dhw-combi-tankless-outside.xml,51.768,51.768,21.427,21.427,30.341,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,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,16.75,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.7,1017.3,1375.7,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,52.977,52.977,21.436,21.436,31.54,0.0,0.0,0.0,0.0,0.0,0.0,0.16,0.0,0.0,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,0.0,21.074,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.809,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1377.1,1017.3,1377.1,17.092,0.0,0.0,3.733,3.632,0.511,7.472,0.629,10.508,-12.558,0.0,0.0,0.0,8.111,-0.067,5.886,0.0,0.727,0.0,0.0,-8.585,-2.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,32.124,32.124,32.124,32.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.207,0.732,6.909,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,9.232,0.663,2.895,0.0,0.0,0.0,2068.1,2725.1,2725.1,0.0,18.862,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.458,-0.05,2.695,-0.029,-1.953,11.853,0.0,0.0,0.0,-6.89,-0.064,-1.186,-3.002,-0.165,0.0,3.624,8.617,2.036,1354.8,997.6,11410.8,2618.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.514,37.514,37.514,37.514,0.0,0.0,0.0,0.0,0.0,0.0,5.349,0.361,0.0,0.0,2.766,1.075,6.686,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.848,0.0,13.346,9.232,0.614,2.933,0.0,0.0,0.0,3201.1,2162.6,3201.1,20.85,15.039,0.0,3.605,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.266,-0.063,4.802,0.0,0.728,0.0,3.063,-8.591,-2.499,0.0,0.012,-0.454,-0.05,2.711,-0.024,-1.911,11.732,0.0,0.0,0.0,-6.309,-0.059,-1.163,-3.084,-0.164,0.0,1.817,8.488,2.01,1354.8,997.6,11411.6,2618.6,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,57.041,57.041,29.693,29.693,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.408,0.858,2.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.611,0.0,14.48,9.244,1.81,3.013,0.0,0.0,0.0,1880.1,3036.3,3036.3,23.523,18.455,0.0,3.513,3.628,0.51,7.483,0.625,10.475,-12.606,0.0,0.0,0.0,8.304,-0.049,4.794,0.0,0.726,0.0,5.763,-5.396,-2.509,0.0,-0.005,-0.408,-0.044,2.857,-0.014,-1.783,11.677,0.0,0.0,0.0,-6.065,-0.045,-1.113,-2.905,-0.155,0.0,3.161,7.609,2.001,1354.7,997.5,11383.0,2612.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,33.772,33.772,33.772,33.772,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.406,1.189,6.901,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,9.238,0.0,2.931,0.0,0.0,0.0,1942.6,3172.4,3172.4,0.0,18.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.056,-0.452,-0.05,2.711,-0.028,-1.935,11.853,0.0,0.0,0.0,-6.881,-0.064,-1.179,-2.973,-0.164,0.0,3.194,8.35,2.036,1354.8,997.6,11360.5,2606.9,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,31.39,31.39,31.39,31.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.898,0.314,6.902,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.232,0.663,2.907,0.0,0.0,0.0,2070.2,2473.4,2473.4,0.0,18.782,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.121,-0.458,-0.05,2.696,-0.029,-1.952,11.853,0.0,0.0,0.0,-6.889,-0.064,-1.186,-3.005,-0.165,0.0,4.485,8.621,2.036,1354.8,997.6,11409.3,2618.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,33.792,33.792,33.792,33.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.46,1.207,6.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,0.0,0.0,14.4,9.232,0.663,2.985,0.0,0.0,0.0,2070.2,3185.6,3185.6,0.0,18.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.063,-0.458,-0.05,2.694,-0.029,-1.954,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.186,-3.003,-0.165,0.0,3.232,8.642,2.036,1354.8,997.6,11412.3,2618.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,56.54,56.54,33.709,33.709,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,6.826,0.614,0.0,0.0,0.0,0.0,2106.8,3294.9,3294.9,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10264.9,2355.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-detailed-setpoints.xml,54.543,54.543,21.425,21.425,33.117,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.624,0.0,13.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.55,0.0,0.0,9.256,2.367,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.705,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.097,-0.067,5.891,0.0,0.728,0.0,0.0,-9.897,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1161.3,860.3,9624.9,2208.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-dse.xml,59.639,59.639,21.463,21.463,38.176,0.0,0.0,0.0,0.0,0.0,0.0,0.187,0.0,0.0,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,0.0,24.587,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-outside.xml,56.105,56.105,21.427,21.427,34.678,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.875,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.7,1017.3,1375.7,16.535,0.0,0.0,3.736,3.634,0.511,7.475,0.629,10.51,-12.558,0.0,0.0,0.0,8.104,-0.066,4.805,0.0,0.728,0.0,0.0,-8.579,-2.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,1066.9,770.9,9019.2,2069.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,54.919,54.919,21.423,21.423,33.495,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.408,0.0,14.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,0.0,0.0,9.263,2.697,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.729,0.0,0.0,3.736,3.636,0.512,7.483,0.629,10.519,-12.537,0.0,0.0,0.0,8.095,-0.07,5.892,0.0,0.728,0.0,0.0,-10.098,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1065.2,770.1,9040.2,2074.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,46.763,46.763,21.433,21.433,25.33,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.587,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,17.386,0.0,0.0,9.239,0.785,0.0,6.005,0.0,0.0,1376.8,1017.3,1376.8,16.971,0.0,0.0,3.735,3.633,0.511,7.475,0.629,10.508,-12.557,0.0,0.0,0.0,8.108,-0.066,5.888,0.0,0.728,0.0,0.0,-9.026,-2.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,388.3,286.5,3205.6,735.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,54.684,54.684,21.425,21.425,33.259,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.67,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,16.592,0.0,0.0,9.261,2.273,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.802,0.0,0.0,3.736,3.635,0.512,7.481,0.629,10.514,-12.544,0.0,0.0,0.0,8.099,-0.067,5.891,0.0,0.728,0.0,0.0,-9.859,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1071.5,776.2,9071.6,2081.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,58.672,58.672,35.623,35.623,23.049,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.275,0.824,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,0.0,23.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,21.585,0.0,13.881,9.233,0.295,0.0,0.0,0.0,0.0,2107.4,3292.9,3292.9,23.108,17.85,0.0,3.541,3.634,0.511,7.499,0.628,10.502,-12.557,0.0,0.0,0.0,8.275,-0.06,4.803,0.0,0.728,0.0,4.982,-8.735,-2.5,0.0,-0.04,-0.452,-0.05,2.715,-0.024,-1.911,11.726,0.0,0.0,0.0,-6.3,-0.056,-1.163,-3.048,-0.164,0.0,3.093,7.724,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,64.732,64.732,26.889,26.889,37.843,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.377,0.849,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,0.0,23.452,0.0,14.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,14.3,9.233,2.726,0.0,0.0,0.0,0.0,1464.8,3035.1,3035.1,23.604,18.324,0.0,3.539,3.634,0.511,7.501,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.069,-9.542,-2.499,0.0,-0.047,-0.455,-0.051,2.707,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.311,-0.058,-1.444,-3.074,-0.165,0.0,3.176,8.4,2.01,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,56.917,56.917,29.56,29.56,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,3.83,0.717,3.286,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.621,0.0,12.107,9.286,1.31,0.0,0.0,0.0,0.0,1896.8,2948.9,2948.9,23.614,17.73,0.0,3.509,3.626,0.51,7.482,0.626,10.48,-12.606,0.0,0.0,0.0,8.304,-0.05,4.796,0.0,0.726,0.0,5.762,-5.375,-2.511,0.0,0.018,-0.402,-0.043,2.882,-0.011,-1.754,11.677,0.0,0.0,0.0,-6.033,-0.046,-1.105,-2.778,-0.153,0.0,2.769,5.41,1.998,1354.8,997.6,10997.9,2523.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-indirect.xml,54.482,54.482,21.427,21.427,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,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,0.0,19.89,0.0,13.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,16.783,0.0,0.0,9.26,1.915,0.0,0.0,0.0,0.0,1376.3,1017.3,1376.3,16.85,0.0,0.0,3.737,3.636,0.512,7.48,0.629,10.513,-12.551,0.0,0.0,0.0,8.103,-0.066,5.89,0.0,0.728,0.0,0.0,-9.659,-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,1075.0,777.3,9103.8,2089.0,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,58.412,58.412,35.581,35.581,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,8.838,0.614,0.0,0.0,0.0,0.0,2129.4,3298.9,3298.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,10829.6,2485.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-multiple.xml,47.428,47.428,23.377,23.377,24.051,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.106,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.972,0.0,0.0,9.225,2.82,0.0,5.996,0.0,0.0,2111.8,1752.0,2111.8,18.807,0.0,0.0,3.734,3.634,0.511,7.48,0.629,10.515,-12.546,0.0,0.0,0.0,8.108,-0.068,5.89,0.0,0.728,0.0,0.0,-9.471,-2.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,472.0,347.5,3998.4,917.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,47.347,47.347,24.547,24.547,22.8,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.268,0.824,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,0.0,22.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,21.352,0.0,13.95,0.0,0.0,0.0,0.0,0.0,0.0,1361.1,2891.6,2891.6,23.094,17.865,0.0,3.544,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.281,-0.062,5.401,0.0,0.0,0.0,4.936,-8.821,-2.499,0.0,-0.045,-0.457,-0.051,2.701,-0.024,-1.921,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.301,-3.065,0.0,0.0,3.093,7.84,2.01,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,58.73,58.73,35.899,35.899,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2126.7,3299.9,3299.9,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,58.303,58.303,35.472,35.472,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.174,0.614,0.0,0.0,0.0,0.0,2111.4,3285.5,3285.5,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,68.769,68.769,45.938,45.938,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,18.905,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,2760.7,3714.1,3714.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,73.68,73.68,50.849,50.849,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,22.571,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.268,0.614,0.0,0.0,0.0,0.0,3079.0,3899.1,3899.1,23.054,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,52.929,52.929,30.099,30.099,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.305,0.832,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.007,9.254,0.627,0.0,6.674,0.0,0.0,2116.0,3023.4,3023.4,23.053,17.918,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.114,7.884,2.01,1354.7,997.5,11215.8,2573.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,51.45,51.45,28.628,28.628,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.317,0.834,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.058,9.362,0.693,0.0,8.431,0.0,0.0,2086.4,3026.8,3026.8,23.053,17.947,0.0,3.543,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.938,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.318,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.943,2.01,1354.4,997.2,10424.5,2392.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,52.988,52.988,30.157,30.157,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.31,0.833,3.032,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.03,9.29,0.649,0.0,6.682,0.0,0.0,2102.4,3025.4,3025.4,23.054,17.935,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.066,-0.165,0.0,3.118,7.906,2.01,1354.7,997.6,10950.8,2512.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,53.061,53.061,29.957,29.957,23.104,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.269,0.823,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,0.0,23.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,21.637,0.0,13.853,9.233,0.215,0.0,6.002,0.0,0.0,1767.9,3288.2,3288.2,23.12,17.836,0.0,3.541,3.634,0.511,7.498,0.628,10.504,-12.557,0.0,0.0,0.0,8.275,-0.061,4.803,0.0,0.728,0.0,4.993,-8.693,-2.5,0.0,-0.039,-0.451,-0.05,2.717,-0.023,-1.907,11.726,0.0,0.0,0.0,-6.297,-0.057,-1.161,-3.044,-0.164,0.0,3.089,7.686,2.01,474.2,349.2,3989.9,915.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,51.182,51.182,28.714,28.714,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.419,0.86,1.483,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,0.0,22.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.041,0.0,14.496,9.341,0.681,0.0,8.428,0.0,0.0,2074.8,3060.5,3060.5,23.088,18.246,0.0,3.547,3.636,0.512,7.506,0.629,10.511,-12.551,0.0,0.0,0.0,8.277,-0.062,4.806,0.0,0.729,0.0,4.871,-9.213,-2.499,0.0,-0.054,-0.462,-0.052,2.685,-0.026,-1.94,11.732,0.0,0.0,0.0,-6.346,-0.059,-1.174,-3.119,-0.166,0.0,3.196,8.453,2.011,1354.2,997.1,10554.8,2422.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,51.171,51.171,28.349,28.349,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.316,0.834,1.546,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.822,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.373,0.0,14.056,9.358,0.691,0.0,8.388,0.0,0.0,2092.7,2994.6,2994.6,23.054,17.945,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.939,-8.914,-2.499,0.0,-0.045,-0.456,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.07,-0.165,0.0,3.122,7.94,2.01,1354.4,997.3,10451.0,2398.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,0.0,0.0,15.47,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-detailed-setpoints.xml,58.763,58.763,35.938,35.938,22.824,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.302,0.831,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,0.0,22.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,21.375,0.0,13.996,9.207,0.623,0.0,0.0,0.0,0.0,2477.3,3311.0,3311.0,23.031,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.939,-8.91,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.065,-0.165,0.0,3.112,7.877,2.01,1354.8,997.6,11442.2,2625.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,58.806,58.806,36.028,36.028,22.778,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.308,0.832,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.332,0.0,14.02,9.233,0.691,0.0,0.0,0.0,0.0,2178.8,3473.7,3473.7,23.043,17.915,0.0,3.543,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.804,0.0,0.728,0.0,4.93,-8.949,-2.499,0.0,-0.045,-0.455,-0.051,2.704,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.068,-0.165,0.0,3.116,7.907,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,67.187,67.187,26.73,26.73,40.457,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,17.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,21.774,0.0,13.778,9.233,5.067,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,65.14,65.14,26.905,26.905,38.234,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.392,0.852,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,0.0,23.329,0.0,14.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,14.362,9.233,2.979,0.0,0.0,0.0,0.0,1464.7,3038.3,3038.3,23.579,18.354,0.0,3.539,3.634,0.511,7.502,0.628,10.506,-12.551,0.0,0.0,0.0,8.277,-0.062,5.887,0.0,0.727,0.0,5.045,-9.639,-2.499,0.0,-0.049,-0.457,-0.051,2.704,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.318,-0.058,-1.446,-3.082,-0.165,0.0,3.185,8.482,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,65.464,65.464,26.943,26.943,38.521,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,56.865,56.865,28.695,28.695,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.757,0.7,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,0.0,28.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.377,0.0,11.801,9.374,1.415,0.0,0.0,0.0,0.0,1848.0,2945.6,2945.6,26.714,17.642,0.0,3.495,3.625,0.51,7.486,0.626,10.488,-12.585,0.0,0.0,0.0,8.312,-0.055,4.797,0.0,0.726,0.0,5.918,-4.803,-2.511,0.0,0.034,-0.384,-0.04,2.924,-0.006,-1.689,11.698,0.0,0.0,0.0,-5.946,-0.052,-1.078,-2.685,-0.152,0.0,2.681,5.024,1.999,1354.8,997.6,10202.1,2341.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,56.802,56.802,33.552,33.552,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3224.7,3224.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11245.7,2580.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,56.729,56.729,28.522,28.522,28.207,0.0,0.0,0.0,0.0,0.0,0.0,0.465,0.0,0.0,3.745,0.697,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,0.0,28.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,0.0,0.0,26.402,0.0,11.754,9.29,1.307,0.0,0.0,0.0,0.0,1860.6,3307.7,3307.7,25.501,17.84,0.0,3.504,3.627,0.51,7.491,0.626,10.48,-12.612,0.0,0.0,0.0,8.328,-0.042,4.796,0.0,0.726,0.0,5.913,-4.781,-2.512,0.0,0.033,-0.388,-0.041,2.929,-0.008,-1.715,11.672,0.0,0.0,0.0,-5.957,-0.038,-1.089,-2.719,-0.15,0.0,2.69,5.025,1.998,1354.8,997.6,10960.9,2515.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,52.46,52.46,27.824,27.824,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.106,0.783,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,0.0,24.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.072,0.0,13.205,9.267,0.602,0.0,6.023,0.0,0.0,1880.7,2989.2,2989.2,26.041,17.872,0.0,3.531,3.631,0.511,7.491,0.627,10.485,-12.578,0.0,0.0,0.0,8.282,-0.053,4.798,0.0,0.727,0.0,5.273,-7.497,-2.502,0.0,-0.015,-0.432,-0.048,2.775,-0.019,-1.858,11.705,0.0,0.0,0.0,-6.202,-0.049,-1.142,-2.942,-0.16,0.0,2.966,6.86,2.008,474.2,349.2,3897.9,894.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,52.005,52.005,28.444,28.444,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.389,0.0,0.0,4.453,0.868,1.127,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,0.0,23.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,14.648,9.179,1.964,0.0,8.146,0.0,0.0,1891.8,3077.3,3077.3,23.401,18.369,0.0,3.538,3.634,0.511,7.508,0.628,10.502,-12.543,0.0,0.0,0.0,8.28,-0.059,4.803,0.0,0.728,0.0,5.069,-8.38,-2.498,0.0,-0.054,-0.46,-0.051,2.7,-0.026,-1.935,11.74,0.0,0.0,0.0,-6.319,-0.056,-1.172,-3.112,-0.166,0.0,3.219,8.553,2.011,1354.5,997.3,11926.4,2736.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,56.981,56.981,29.699,29.699,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.45,0.0,0.0,3.83,0.717,3.425,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.546,0.0,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.9,3196.2,3196.2,23.471,18.027,0.0,3.509,3.626,0.51,7.486,0.626,10.482,-12.605,0.0,0.0,0.0,8.315,-0.051,4.796,0.0,0.726,0.0,5.749,-5.462,-2.511,0.0,0.016,-0.404,-0.043,2.875,-0.011,-1.758,11.678,0.0,0.0,0.0,-6.03,-0.047,-1.106,-2.786,-0.153,0.0,2.745,5.483,1.998,1354.8,997.6,11052.7,2536.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.373,59.373,35.588,35.588,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,4.341,0.84,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.784,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,14.116,9.275,0.094,0.0,0.0,0.0,0.0,4637.0,5545.0,5545.0,30.801,19.255,0.0,3.537,3.634,0.511,7.5,0.629,10.508,-12.551,0.0,0.0,0.0,8.27,-0.06,5.261,0.0,0.775,0.0,5.118,-8.683,-2.504,0.0,-0.042,-0.451,-0.05,2.718,-0.023,-1.901,11.732,0.0,0.0,0.0,-6.297,-0.056,-1.263,-3.035,-0.185,0.0,3.139,8.038,2.005,1354.7,998.0,11011.7,2526.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,58.658,58.658,35.472,35.472,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.259,0.82,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,0.0,23.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.714,0.0,13.811,9.282,0.094,0.0,0.0,0.0,0.0,1992.4,3338.0,3338.0,23.141,17.816,0.0,3.54,3.633,0.511,7.498,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.803,0.0,0.728,0.0,5.009,-8.627,-2.5,0.0,-0.038,-0.45,-0.05,2.72,-0.023,-1.904,11.726,0.0,0.0,0.0,-6.292,-0.057,-1.16,-3.038,-0.164,0.0,3.082,7.632,2.01,1354.8,997.6,10995.3,2523.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,65.464,65.464,26.943,26.943,23.051,15.47,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,65.464,65.464,26.943,26.943,23.051,0.0,0.0,15.47,0.0,0.0,0.0,0.38,0.0,0.0,4.425,0.861,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,0.0,23.051,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.507,9.233,3.624,0.0,0.0,0.0,0.0,1464.3,3046.0,3046.0,23.508,18.419,0.0,3.542,3.635,0.512,7.504,0.629,10.51,-12.551,0.0,0.0,0.0,8.278,-0.062,5.889,0.0,0.728,0.0,4.991,-9.862,-2.499,0.0,-0.053,-0.459,-0.051,2.694,-0.025,-1.931,11.732,0.0,0.0,0.0,-6.331,-0.059,-1.45,-3.102,-0.166,0.0,3.209,8.669,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,61.346,61.346,26.73,26.73,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.214,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11575.0,2656.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,59.307,59.307,36.057,36.057,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2016.3,3356.7,3356.7,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,59.414,59.414,36.164,36.164,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,2022.7,3361.2,3361.2,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,59.809,59.809,26.73,26.73,33.079,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,53.966,53.966,26.73,26.73,27.236,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,6.002,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,474.2,349.2,3988.9,915.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,51.686,51.686,27.159,27.159,24.527,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.358,0.845,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.887,0.0,1.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.433,0.0,14.231,9.417,0.0,0.0,8.083,0.0,0.0,1462.7,3044.0,3044.0,23.19,18.098,0.0,3.543,3.635,0.511,7.502,0.629,10.509,-12.551,0.0,0.0,0.0,8.276,-0.063,4.805,0.0,0.728,0.0,4.952,-8.88,-2.499,0.0,-0.048,-0.457,-0.051,2.7,-0.025,-1.923,11.732,0.0,0.0,0.0,-6.323,-0.059,-1.168,-3.085,-0.165,0.0,3.154,8.121,2.01,1344.9,989.3,10031.1,2301.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,61.37,61.37,26.73,26.73,34.64,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,61.37,61.37,26.73,26.73,23.25,0.0,11.39,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.251,0.818,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,0.0,23.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.774,0.0,13.778,9.234,0.0,0.0,0.0,0.0,0.0,1463.0,2977.5,2977.5,23.156,17.801,0.0,3.54,3.633,0.511,7.497,0.628,10.502,-12.557,0.0,0.0,0.0,8.274,-0.061,4.802,0.0,0.728,0.0,5.021,-8.575,-2.5,0.0,-0.038,-0.45,-0.05,2.722,-0.023,-1.902,11.726,0.0,0.0,0.0,-6.289,-0.057,-1.16,-3.033,-0.164,0.0,3.077,7.588,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,66.421,66.421,40.877,40.877,25.544,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,6.231,1.271,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,0.0,25.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,23.821,0.0,21.385,9.211,0.61,0.0,0.0,0.0,0.0,2307.6,4369.7,4369.7,30.693,26.147,0.0,3.841,7.532,1.088,5.863,0.683,21.205,-24.736,0.0,0.0,0.841,6.7,-0.147,8.949,0.0,0.76,0.0,3.397,-9.771,-2.936,0.0,-0.092,-1.011,-0.105,1.884,-0.025,-2.658,23.338,0.0,0.0,-0.121,-4.728,-0.138,-1.935,-6.036,-0.16,0.0,2.81,8.461,2.333,1354.8,997.6,11399.5,2576.4,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7646.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,74.53,74.53,44.181,44.181,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,6.115,1.243,9.004,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,0.0,30.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.306,0.0,20.901,9.146,0.612,0.0,0.0,0.0,0.0,2520.5,4533.7,4533.7,33.969,26.263,0.0,3.753,7.843,1.066,7.87,0.663,21.281,-24.925,0.0,0.0,0.0,8.976,-0.137,11.122,0.0,0.744,0.0,3.983,-10.955,-3.54,0.0,-0.062,-1.025,-0.098,2.681,-0.02,-3.125,23.379,0.0,0.0,0.0,-6.427,-0.127,-2.467,-6.201,-0.161,0.0,2.735,9.401,2.832,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,55.4,55.4,30.562,30.562,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,3.991,0.755,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,0.0,24.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,0.0,12.863,5.356,0.616,0.0,0.0,0.0,0.0,1783.8,3178.5,3178.5,23.645,17.391,0.0,3.521,3.625,0.51,7.471,0.627,10.488,-12.566,0.0,0.0,0.0,8.255,-0.062,4.801,0.0,0.725,0.0,5.338,-7.29,-2.504,0.0,-0.005,-0.424,-0.046,2.801,-0.015,-1.813,11.717,0.0,0.0,0.0,-6.161,-0.058,-1.132,-2.898,-0.16,0.0,2.934,6.287,2.006,939.7,637.0,6287.8,1631.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,57.123,57.123,33.291,33.291,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,4.144,0.792,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,0.0,23.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.0,13.422,7.337,0.615,0.0,0.0,0.0,0.0,2048.0,3228.0,3228.0,23.349,17.645,0.0,3.533,3.63,0.511,7.486,0.628,10.495,-12.564,0.0,0.0,0.0,8.267,-0.06,4.802,0.0,0.727,0.0,5.14,-8.1,-2.502,0.0,-0.024,-0.439,-0.048,2.755,-0.02,-1.866,11.719,0.0,0.0,0.0,-6.235,-0.056,-1.149,-2.981,-0.162,0.0,3.023,7.077,2.008,1147.2,817.3,8843.6,2197.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,60.412,60.412,38.573,38.573,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.463,0.87,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,0.0,21.839,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.452,0.0,14.575,11.089,0.614,0.0,0.0,0.0,0.0,2192.9,3504.6,3504.6,22.758,18.231,0.0,3.555,3.64,0.512,7.518,0.629,10.513,-12.551,0.0,0.0,0.0,8.286,-0.06,4.805,0.0,0.729,0.0,4.742,-9.713,-2.498,0.0,-0.062,-0.469,-0.053,2.662,-0.028,-1.969,11.732,0.0,0.0,0.0,-6.384,-0.056,-1.182,-3.147,-0.167,0.0,3.2,8.666,2.012,1562.4,1177.9,13955.4,2960.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 -base-enclosure-beds-5.xml,62.039,62.039,41.18,41.18,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.344,0.0,0.0,4.63,0.911,12.591,0.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,0.0,20.859,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.534,0.0,15.172,12.918,0.613,0.0,0.0,0.0,0.0,2561.6,3800.5,3800.5,22.461,18.556,0.0,3.566,3.644,0.513,7.535,0.63,10.529,-12.537,0.0,0.0,0.0,8.301,-0.063,4.808,0.0,0.731,0.0,4.545,-10.52,-2.496,0.0,-0.08,-0.484,-0.055,2.615,-0.032,-2.014,11.746,0.0,0.0,0.0,-6.453,-0.059,-1.197,-3.228,-0.169,0.0,3.29,9.46,2.013,1770.0,1358.2,16511.3,3258.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 -base-enclosure-ceilingtypes.xml,74.912,74.912,36.476,36.476,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.634,0.0,0.0,4.513,0.884,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,0.0,38.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.991,0.0,14.856,9.233,0.618,0.0,0.0,0.0,0.0,2163.1,3370.6,3370.6,29.367,18.643,0.0,17.257,3.59,0.505,7.246,0.62,10.388,-12.681,0.0,0.0,0.0,7.733,-0.076,4.851,0.0,0.734,0.0,7.068,-9.079,-2.545,0.0,0.153,-0.318,-0.031,2.91,0.01,-1.499,11.603,0.0,0.0,0.0,-6.072,-0.066,-1.008,-2.883,-0.139,0.0,2.734,7.703,1.964,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,67.648,67.648,29.356,29.356,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.632,0.0,0.0,3.58,0.646,9.367,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,38.293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.866,0.0,10.726,9.342,0.621,0.0,0.0,0.0,0.0,1766.6,3491.4,3491.4,29.153,20.79,0.0,3.477,3.648,0.0,0.0,0.67,9.92,-12.906,0.0,0.0,29.048,0.0,-0.198,2.052,0.0,0.787,0.0,7.954,-7.487,-1.578,0.0,0.424,-0.063,0.0,0.0,0.096,0.383,10.935,0.0,0.0,-7.934,0.0,-0.193,-0.259,-1.855,-0.085,0.0,2.655,5.717,1.069,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-enclosure-garage.xml,59.077,59.077,34.614,34.614,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,2.999,0.526,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,0.0,24.463,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.0,8.712,9.233,0.724,0.0,0.0,0.0,0.0,2122.9,2825.8,2825.8,18.052,10.755,0.0,3.524,3.783,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.839,-6.765,-2.508,0.0,0.112,-0.273,-0.035,2.444,0.002,-1.643,8.266,0.0,0.0,0.0,-5.628,-0.038,-1.216,-2.073,0.0,0.0,1.268,5.681,2.001,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,58.764,58.764,35.949,35.949,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.302,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.366,0.0,13.994,9.233,0.614,0.0,0.0,0.0,0.0,2115.3,3299.5,3299.5,23.045,17.9,0.0,3.542,3.634,0.511,7.499,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.063,4.792,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.163,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,60.198,60.198,35.949,35.949,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.283,0.825,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.71,0.0,13.894,9.233,0.615,0.0,0.0,0.0,0.0,2135.7,3424.0,3424.0,23.794,18.134,0.0,3.532,3.632,0.511,7.496,0.628,10.5,-12.557,0.0,0.0,0.0,8.278,-0.06,5.885,0.0,0.727,0.0,5.221,-8.912,-2.5,0.0,-0.036,-0.447,-0.049,2.736,-0.022,-1.89,11.726,0.0,0.0,0.0,-6.267,-0.056,-1.43,-3.018,-0.163,0.0,3.11,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,66.417,66.417,35.965,35.965,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.502,0.0,0.0,4.215,0.806,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,0.0,30.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.519,0.0,13.545,9.233,0.616,0.0,0.0,0.0,0.0,2155.1,3739.7,3739.7,28.07,18.98,0.0,3.489,3.632,0.511,7.489,0.629,10.514,-12.573,0.0,0.0,0.0,8.309,-0.063,10.541,0.0,0.726,0.0,6.45,-8.942,-2.508,0.0,-0.001,-0.411,-0.044,2.841,-0.011,-1.764,11.71,0.0,0.0,0.0,-6.088,-0.059,-2.407,-2.866,-0.156,0.0,3.099,7.838,2.002,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,59.006,59.006,35.925,35.925,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.381,0.0,0.0,4.279,0.825,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,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.615,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2115.9,3291.8,3291.8,23.069,17.866,0.0,3.539,3.631,0.511,7.493,0.861,10.494,-12.557,0.0,0.0,0.0,8.264,-0.06,4.802,0.0,0.728,0.0,4.986,-8.908,-2.5,0.0,-0.039,-0.451,-0.05,2.715,-0.153,-1.909,11.726,0.0,0.0,0.0,-6.297,-0.056,-1.163,-3.049,-0.164,0.0,3.09,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,59.096,59.096,35.807,35.807,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.181,0.802,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.81,0.0,13.493,9.233,0.615,0.0,0.0,0.0,0.0,2132.5,3472.3,3472.3,23.059,17.745,0.0,3.536,3.63,0.511,7.487,0.627,10.919,-12.564,0.0,0.0,0.0,8.255,-0.06,4.802,0.0,0.727,0.0,5.022,-8.913,-2.501,0.0,-0.025,-0.443,-0.049,2.734,-0.021,-2.458,11.697,0.0,0.0,0.0,-6.267,-0.056,-1.158,-3.016,-0.163,0.0,3.01,7.865,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,58.705,58.705,35.785,35.785,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.167,0.8,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,0.0,22.919,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.463,0.0,13.443,9.233,0.614,0.0,0.0,0.0,0.0,2115.5,3169.6,3169.6,22.882,16.869,0.0,3.655,3.632,0.511,7.494,0.628,10.499,-12.557,0.0,0.0,0.0,8.268,-0.06,4.803,0.0,0.728,0.0,4.944,-8.91,-2.5,0.0,-0.293,-0.449,-0.05,2.719,-0.023,-1.901,11.726,0.0,0.0,0.0,-6.29,-0.057,-1.162,-3.046,-0.164,0.0,2.759,7.868,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,61.282,61.282,37.048,37.048,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,5.172,1.037,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,24.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.695,0.0,17.54,9.233,0.613,0.0,0.0,0.0,0.0,2138.9,3597.9,3597.9,24.782,21.386,0.0,3.538,3.649,0.514,7.554,0.632,10.54,-12.493,2.712,-2.174,0.0,8.428,-0.068,4.813,0.0,0.73,0.0,5.25,-8.889,-2.495,0.0,-0.135,-0.508,-0.058,2.599,-0.037,-2.046,11.707,-0.064,3.749,0.0,-6.596,-0.063,-1.183,-3.216,-0.169,0.0,3.918,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,59.032,59.032,36.794,36.794,22.238,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.992,0.996,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,22.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,20.825,0.0,16.838,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,3597.9,23.56,20.664,0.0,3.559,3.655,0.514,7.562,0.633,10.556,-12.5,0.767,-1.641,0.0,8.415,-0.066,4.813,0.0,0.73,0.0,4.841,-8.886,-2.495,0.0,-0.128,-0.511,-0.059,2.582,-0.038,-2.065,11.719,0.25,2.946,0.0,-6.604,-0.062,-1.196,-3.249,-0.17,0.0,3.719,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,59.278,59.278,36.703,36.703,22.575,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.915,0.977,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,22.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,21.141,0.0,16.51,9.233,0.613,0.0,0.0,0.0,0.0,2134.1,3598.0,3598.0,23.644,20.596,0.0,3.553,3.651,0.514,7.551,0.632,10.544,-12.51,0.856,-1.409,0.0,8.391,-0.064,4.812,0.0,0.73,0.0,4.907,-8.889,-2.496,0.0,-0.117,-0.502,-0.057,2.602,-0.036,-2.043,11.717,0.256,2.537,0.0,-6.559,-0.06,-1.19,-3.22,-0.169,0.0,3.657,7.888,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,59.028,59.028,36.803,36.803,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,5.0,0.998,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,22.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.812,0.0,16.872,9.233,0.613,0.0,0.0,0.0,0.0,2133.5,3597.9,3597.9,23.56,20.672,0.0,3.559,3.655,0.514,7.563,0.633,10.556,-12.5,0.763,-1.652,0.0,8.416,-0.066,4.813,0.0,0.73,0.0,4.839,-8.886,-2.495,0.0,-0.129,-0.511,-0.059,2.58,-0.038,-2.066,11.718,0.259,2.975,0.0,-6.606,-0.062,-1.196,-3.251,-0.17,0.0,3.726,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,40.75,40.75,29.449,29.449,11.301,0.0,0.0,0.0,0.0,0.0,0.0,0.186,0.0,0.0,3.842,0.725,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,0.0,11.301,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.576,0.0,11.967,9.458,0.607,0.0,0.0,0.0,0.0,1711.3,2606.2,2606.2,13.178,12.056,0.0,3.937,3.831,0.0,0.0,0.682,10.398,-12.088,0.0,0.0,0.0,8.025,-0.119,2.647,0.0,0.774,0.0,0.298,-6.836,-1.458,0.0,-0.076,-0.588,0.0,0.0,-0.025,-1.297,12.039,0.0,0.0,0.0,-1.551,-0.117,-0.592,-2.999,-0.167,0.0,0.088,6.354,1.189,1354.8,997.6,11399.6,3013.0,0.0,36000.0,24000.0,0.0,6.8,91.76,28989.0,1641.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 -base-enclosure-thermal-mass.xml,58.585,58.585,35.903,35.903,22.682,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.265,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,22.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,21.242,0.0,13.875,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3344.8,3344.8,22.925,17.582,0.0,3.544,3.632,0.511,7.478,0.627,10.521,-12.564,0.0,0.0,0.0,8.239,-0.095,4.798,0.0,0.727,0.0,4.894,-8.907,-2.499,0.0,-0.037,-0.451,-0.05,2.721,-0.024,-1.938,11.733,0.0,0.0,0.0,-6.301,-0.09,-1.17,-3.099,-0.165,0.0,3.046,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,75.025,75.025,34.784,34.784,40.241,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,3.114,0.559,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,0.0,40.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,37.673,0.0,9.214,9.233,0.621,0.0,0.0,0.0,0.0,2147.2,2993.9,2993.9,25.831,12.815,0.0,3.341,16.93,0.472,7.159,0.835,1.312,-1.695,0.0,0.0,0.0,7.392,-0.041,4.825,0.0,0.731,0.0,7.796,-9.14,-2.562,0.0,0.277,-0.677,-0.01,3.388,-0.088,-0.17,1.673,0.0,0.0,0.0,-4.948,-0.036,-0.975,-0.379,-0.125,0.0,1.816,7.645,1.947,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,57.871,57.871,34.969,34.969,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,3.517,0.631,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.448,0.0,10.496,9.233,0.617,0.0,0.0,0.0,0.0,2115.4,3253.2,3253.2,23.056,17.529,0.0,3.541,3.633,0.511,7.507,0.628,10.503,-12.551,0.0,0.0,0.0,8.318,-0.06,4.803,0.0,0.728,0.0,4.955,-8.907,-2.499,0.0,0.024,-0.403,-0.043,2.883,-0.011,-1.757,11.732,0.0,0.0,0.0,-6.061,-0.056,-1.106,-6.902,-0.156,0.0,2.672,7.874,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-coal.xml,59.865,59.865,33.381,33.381,21.618,0.0,0.0,0.0,0.0,4.866,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.244,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.4,3617.4,22.974,19.432,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.989,0.0,0.487,0.0,4.709,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.222,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-portable.xml,34.804,34.804,33.521,33.521,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.046,1.936,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.589,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,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.134,0.0,31.411,6.675,0.571,0.0,0.0,0.0,0.0,2183.2,2864.6,2864.6,9.451,15.101,0.0,1.743,1.625,0.0,0.0,0.392,4.895,-4.792,0.0,0.0,0.0,1.264,-0.391,1.046,0.077,0.391,0.0,0.032,-4.642,-0.753,0.0,0.5,-0.056,0.0,0.0,0.202,2.725,17.379,0.0,0.0,0.0,1.741,-0.386,-0.348,-1.933,-0.1,0.0,0.359,9.62,1.894,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier-ief-whole-home.xml,34.829,34.829,33.566,33.566,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.046,1.936,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.635,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,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.128,0.0,31.407,6.675,0.571,0.0,0.0,0.0,0.0,2132.2,2864.5,2864.5,9.472,15.101,0.0,1.745,1.629,0.0,0.0,0.394,4.924,-4.781,0.0,0.0,0.0,1.261,-0.397,1.052,0.072,0.393,0.0,0.031,-4.677,-0.757,0.0,0.502,-0.053,0.0,0.0,0.203,2.751,17.39,0.0,0.0,0.0,1.736,-0.392,-0.343,-1.931,-0.098,0.0,0.359,9.6,1.89,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier-multiple.xml,34.796,34.796,33.443,33.443,1.353,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.035,1.933,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.525,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,1.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,1.202,0.0,31.365,6.675,0.571,0.0,0.0,0.0,0.0,2161.6,2868.1,2868.1,9.535,15.101,0.0,1.748,1.629,0.0,0.0,0.392,4.893,-4.849,0.0,0.0,0.0,1.267,-0.39,1.047,0.075,0.393,0.0,0.033,-4.522,-0.76,0.0,0.511,-0.046,0.0,0.0,0.203,2.741,17.322,0.0,0.0,0.0,1.763,-0.385,-0.343,-1.922,-0.096,0.0,0.359,9.569,1.888,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-dehumidifier.xml,34.767,34.767,33.498,33.498,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.039,1.934,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.576,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,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,31.377,6.675,0.571,0.0,0.0,0.0,0.0,2025.5,2864.5,2864.5,9.516,15.101,0.0,1.76,1.641,0.0,0.0,0.394,4.935,-4.861,0.0,0.0,0.0,1.275,-0.393,1.056,0.072,0.397,0.0,0.031,-4.651,-0.763,0.0,0.521,-0.036,0.0,0.0,0.205,2.775,17.309,0.0,0.0,0.0,1.763,-0.387,-0.336,-1.93,-0.093,0.0,0.358,9.557,1.884,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-appliances-gas.xml,59.865,59.865,33.381,33.381,26.484,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.618,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.244,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.4,3617.4,22.974,19.432,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.989,0.0,0.487,0.0,4.709,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.222,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,58.485,58.485,37.066,37.066,21.419,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,4.535,0.887,9.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.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,0.0,21.419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.058,0.0,14.953,9.799,0.613,0.0,0.0,0.0,0.0,2161.6,3468.9,3468.9,22.972,19.348,0.0,3.567,3.65,0.514,7.552,0.632,10.119,-12.663,0.0,0.0,0.0,8.335,-0.066,5.413,0.0,0.0,0.0,4.672,-9.525,-2.496,0.0,-0.077,-0.48,-0.054,2.643,-0.03,-1.454,11.75,0.0,0.0,0.0,-6.421,-0.063,-1.324,-3.168,0.0,0.0,3.296,8.51,2.014,1354.8,1997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,52.709,52.709,28.515,28.515,24.193,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,4.077,0.775,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,0.0,24.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,0.0,0.0,22.658,0.0,13.05,7.908,0.615,0.0,0.0,0.0,0.0,1857.1,3192.9,3192.9,23.372,18.124,0.0,3.528,3.626,0.51,7.473,0.627,10.055,-12.698,0.0,0.0,0.0,8.25,-0.062,5.401,0.0,0.0,0.0,5.203,-7.087,-2.503,0.0,-0.007,-0.425,-0.046,2.794,-0.016,-1.284,11.715,0.0,0.0,0.0,-6.167,-0.058,-1.27,-2.934,0.0,0.0,2.957,5.974,2.006,0.0,0.0,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-oil-location-miami-fl.xml,50.116,50.116,45.25,45.25,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.828,4.098,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,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,67.181,4.659,0.55,0.0,0.0,0.0,0.0,2452.3,3204.2,3204.2,0.0,21.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.813,0.737,0.136,9.768,0.338,3.359,19.842,0.0,0.0,0.0,3.215,-0.01,-0.53,-2.903,-0.004,0.0,10.314,17.693,4.51,1354.8,997.6,8625.2,1979.2,0.0,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 +base-appliances-oil.xml,59.865,59.865,33.381,33.381,21.618,4.866,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.618,0.0,0.0,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.244,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.4,3617.4,22.974,19.432,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.989,0.0,0.487,0.0,4.709,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.222,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-propane-location-portland-or.xml,55.078,55.078,29.883,29.883,20.33,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.206,0.38,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,0.0,20.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,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.787,0.0,6.279,8.776,0.614,0.0,0.0,0.0,0.0,1916.8,2801.4,2801.4,14.096,15.742,0.0,3.154,3.302,0.465,7.024,0.65,9.002,-10.815,0.0,0.0,0.0,12.128,-0.091,4.339,0.0,0.553,0.0,4.045,-12.053,-3.157,0.0,-0.141,-0.435,-0.052,1.255,-0.025,-1.176,8.054,0.0,0.0,0.0,-6.2,-0.092,-0.938,-1.961,-0.125,0.0,1.193,5.705,1.352,1354.8,997.6,11239.5,2579.1,0.0,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 +base-appliances-propane.xml,59.865,59.865,33.381,33.381,21.618,0.0,4.866,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.244,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.4,3617.4,22.974,19.432,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.989,0.0,0.487,0.0,4.709,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.222,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,59.865,59.865,33.381,33.381,21.618,0.0,0.0,4.866,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.244,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.4,3617.4,22.974,19.432,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.989,0.0,0.487,0.0,4.709,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.222,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,61.561,61.561,35.942,35.942,25.619,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,4.257,0.822,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,0.0,25.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.972,0.0,13.668,9.233,0.615,0.0,0.0,0.0,0.0,2144.5,3449.3,3449.3,22.718,16.558,6.771,0.0,4.231,0.513,7.508,0.633,12.688,-15.638,0.0,0.0,0.0,8.371,-0.086,9.315,0.0,0.729,0.0,0.0,-8.932,-2.503,0.124,0.0,-0.517,-0.049,2.739,-0.02,-1.228,15.662,0.0,0.0,0.0,-6.364,-0.061,-2.102,-3.934,-0.159,0.0,0.0,7.847,2.006,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,63.31,63.31,40.717,40.717,22.593,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.92,0.984,9.067,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.142,0.0,16.415,9.18,0.613,0.0,0.0,0.0,0.0,2372.2,3628.0,3628.0,22.522,19.802,4.57,1.168,5.569,0.52,7.699,0.639,14.497,-17.149,0.0,0.0,0.0,8.589,-0.089,7.102,0.0,0.733,0.0,0.273,-10.225,-3.182,-0.013,0.016,-0.589,-0.056,2.657,-0.033,-1.932,17.689,0.0,0.0,0.0,-6.405,-0.083,-1.705,-4.231,-0.168,0.0,0.094,8.938,2.569,1354.8,997.6,11399.6,2521.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31467.0,777.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,54.669,54.669,35.212,35.212,19.456,0.0,0.0,0.0,0.0,0.0,0.0,0.321,0.0,0.0,3.746,0.704,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.207,0.0,11.696,9.233,0.614,0.0,0.0,0.0,0.0,2122.5,2729.0,2729.0,17.651,12.83,6.045,0.0,3.619,0.509,7.464,0.625,10.03,-12.687,0.0,0.0,0.0,8.217,-0.076,4.803,0.0,0.728,0.0,0.0,-8.908,-2.5,0.291,0.0,-0.456,-0.051,2.711,-0.025,-1.387,11.721,0.0,0.0,0.0,-6.302,-0.051,-1.159,-3.067,-0.164,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier.xml,37.574,37.574,33.423,33.423,4.151,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.443,2.011,6.82,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,4.151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.833,0.0,32.58,6.675,0.579,0.0,0.0,0.0,0.0,1835.0,3288.7,3288.7,13.53,18.846,0.0,6.126,1.575,0.0,0.0,0.335,4.353,-5.899,0.0,0.0,0.0,0.826,-0.36,0.993,0.0,0.397,0.0,0.102,-3.998,-0.844,0.0,2.403,0.135,0.0,0.0,0.203,2.884,16.272,0.0,0.0,0.0,2.056,-0.352,-0.28,-1.733,-0.052,0.0,0.38,9.165,1.803,1354.8,997.6,9989.0,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,25731.0,1408.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,22171.0,75.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-atticroof-unvented-insulated-roof.xml,57.187,57.187,35.371,35.371,21.816,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,3.847,0.723,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,0.0,21.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.417,0.0,11.971,9.233,0.615,0.0,0.0,0.0,0.0,2128.8,2866.4,2866.4,19.25,14.113,0.0,5.474,3.627,0.51,7.484,0.627,10.053,-12.69,0.0,0.0,0.0,8.286,-0.062,4.807,0.0,0.729,0.0,2.654,-8.912,-2.5,0.0,-1.481,-0.423,-0.046,2.812,-0.016,-1.287,11.723,0.0,0.0,0.0,-6.128,-0.053,-1.136,-2.92,-0.161,0.0,1.445,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,30483.0,4824.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,57.812,57.812,35.728,35.728,22.085,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.989,0.758,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,0.0,22.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,0.0,0.0,20.68,0.0,12.665,9.233,0.803,0.0,0.0,0.0,0.0,2134.0,3014.5,3014.5,21.54,15.428,0.0,3.899,3.639,0.512,7.515,0.63,10.09,-12.691,0.0,0.0,0.0,8.301,-0.063,4.809,0.0,0.729,0.0,4.067,-8.581,-2.501,0.0,-0.528,-0.448,-0.05,2.73,-0.022,-1.355,11.723,0.0,0.0,0.0,-6.277,-0.059,-1.157,-3.029,-0.164,0.0,1.957,7.583,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,60.084,60.084,37.813,37.813,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,1.735,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3537.0,3537.0,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,1.305,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery.xml,58.35,58.35,36.078,36.078,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-2stories.xml,51.16,51.16,34.759,34.759,16.401,0.0,0.0,0.0,0.0,0.0,0.0,0.214,0.0,0.0,3.423,0.619,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,0.0,16.401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.295,0.0,10.304,9.269,0.614,0.0,0.0,0.0,0.0,2112.2,3064.3,3064.3,17.846,15.642,0.0,2.437,5.073,0.298,4.382,0.64,7.13,-8.585,0.0,0.0,0.0,5.027,-0.069,7.108,0.0,0.73,0.0,2.273,-8.897,-2.5,0.0,-0.005,-0.668,-0.027,1.593,-0.021,-1.066,7.911,0.0,0.0,0.0,-4.019,-0.064,-1.709,-2.596,-0.164,0.0,1.389,7.881,2.01,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-atticroof-cathedral.xml,97.696,97.696,37.338,37.338,60.358,0.0,0.0,0.0,0.0,0.0,0.0,0.787,0.0,0.0,5.067,0.972,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,0.0,60.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.282,0.0,15.98,9.269,0.623,0.0,0.0,0.0,0.0,2188.5,4479.9,4479.9,36.454,28.481,49.534,0.0,2.942,0.289,3.702,0.668,4.716,-5.325,0.0,0.0,0.0,3.447,-0.844,7.549,0.0,0.773,0.0,0.0,-9.663,-2.68,8.461,0.0,-0.16,0.004,1.534,0.119,0.028,5.085,0.0,0.0,0.0,-4.279,-0.806,-0.857,-1.185,-0.094,0.0,0.0,7.124,1.829,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-infil-compartmentalization-test.xml,42.438,42.438,30.034,30.034,12.403,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,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,0.0,12.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.502,0.0,8.115,9.387,0.613,0.0,0.0,0.0,0.0,1823.1,2673.0,2673.0,13.17,10.826,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.037,0.0,0.728,0.0,3.16,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.114,-0.042,-0.775,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-attached.xml,42.438,42.438,30.034,30.034,12.403,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,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,0.0,12.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.502,0.0,8.115,9.387,0.613,0.0,0.0,0.0,0.0,1823.1,2673.0,2673.0,13.17,10.826,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.037,0.0,0.728,0.0,3.16,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.114,-0.042,-0.775,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.474,36.474,24.849,24.849,11.625,0.0,0.0,0.0,0.0,0.0,0.0,0.085,0.0,0.0,1.636,0.213,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,0.0,11.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,10.776,0.0,3.159,9.538,0.73,0.0,0.0,0.0,0.0,1572.4,2045.3,2045.3,7.666,6.098,0.0,2.942,3.651,0.0,0.0,0.583,1.31,-1.593,0.0,0.0,2.978,0.0,-0.037,1.669,0.0,0.0,0.0,4.661,-4.243,-1.184,0.0,-0.933,-0.243,0.0,0.0,-0.056,-0.113,1.309,0.0,0.0,-0.947,0.0,-0.033,-0.288,-0.351,0.0,0.0,0.579,3.429,0.842,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-multiple.xml,31.695,31.695,25.346,25.346,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,2.169,0.332,9.716,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,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.89,0.0,5.258,9.538,0.609,0.0,0.0,0.0,1.0,1561.9,2433.7,2433.7,9.392,10.746,0.0,-0.005,3.303,0.0,0.0,1.394,3.737,-4.202,0.0,0.0,4.614,0.0,-0.073,1.253,0.0,0.793,0.0,2.37,-6.263,-1.136,0.0,-0.001,-0.475,0.0,0.0,-0.429,-0.209,4.004,0.0,0.0,-3.094,0.0,-0.068,-0.251,-1.127,-0.133,0.0,0.508,5.736,0.89,1354.8,997.6,11399.5,3156.5,0.0,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,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.586,49.586,24.849,24.849,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,1.491,0.178,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,0.0,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.938,0.0,2.593,9.538,0.818,0.0,0.0,0.0,0.0,1579.8,2297.0,2297.0,11.077,8.743,0.0,5.361,4.203,0.0,0.0,0.789,1.288,-1.709,0.0,0.0,5.413,0.0,-0.062,1.7,0.0,0.0,0.0,11.645,-4.474,-1.246,0.0,-1.205,-0.066,0.0,0.0,-0.056,-0.008,1.194,0.0,0.0,-1.212,0.0,-0.057,-0.194,-0.279,0.0,0.0,0.549,3.198,0.781,1354.8,997.6,11399.5,3156.5,0.0,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,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.032,26.032,24.715,24.715,1.317,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.661,0.22,9.742,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,0.0,3.265,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2045.3,2045.3,3.415,6.099,0.0,0.378,3.172,0.0,0.0,0.381,1.385,-1.507,0.0,0.0,0.401,0.0,-0.006,1.706,0.0,0.0,0.0,0.374,-4.015,-1.12,0.0,-0.84,-0.474,0.0,0.0,-0.078,-0.221,1.396,0.0,0.0,-0.856,0.0,-0.002,-0.396,-0.392,0.0,0.0,0.598,3.657,0.907,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.342,26.342,25.281,25.281,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.153,0.343,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,0.0,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.983,0.0,5.308,9.538,0.586,0.0,0.0,0.0,0.0,1568.6,1862.1,1862.1,3.705,4.57,0.0,-0.004,3.199,0.0,0.0,0.372,1.434,-1.384,0.0,0.0,-0.004,0.0,-0.074,1.765,0.0,0.0,0.0,0.306,-3.658,-1.009,0.0,-0.001,-0.583,0.0,0.0,-0.044,-0.373,1.518,0.0,0.0,-0.001,0.0,-0.071,-0.543,-0.515,0.0,0.0,0.944,4.015,1.017,1354.8,997.6,11399.5,3156.5,0.0,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,6278.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.961,26.961,26.444,26.444,0.517,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.095,0.58,9.682,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.517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,9.42,9.538,0.574,0.0,0.0,0.0,0.0,1710.0,2028.0,2028.0,3.251,7.677,0.0,-0.015,2.451,0.0,0.0,0.424,3.906,-2.465,0.0,0.0,-0.01,0.0,-0.396,0.991,0.0,0.666,0.0,0.0,-4.45,-0.746,0.0,-0.01,-1.157,0.0,0.0,-0.049,-1.212,5.738,0.0,0.0,-0.005,0.0,-0.386,-0.414,-1.343,-0.41,0.0,0.0,7.514,1.28,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 +base-bldgtype-multifamily-residents-1.xml,19.95,19.95,18.729,18.729,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.471,0.422,4.593,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,0.0,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,7.202,4.213,0.584,0.0,0.0,0.0,0.0,1121.4,1672.2,1672.2,3.913,7.193,0.0,-0.018,2.578,0.0,0.0,0.426,4.087,-3.005,0.0,0.0,-0.017,0.0,-0.365,1.302,0.0,0.742,0.0,0.0,-3.752,-0.915,0.0,-0.013,-0.841,0.0,0.0,-0.013,-0.739,5.197,0.0,0.0,-0.012,0.0,-0.356,-0.408,-1.204,-0.286,0.0,0.0,4.875,1.111,817.2,530.6,4779.7,1341.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.459,27.459,26.809,26.809,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.031,0.0,0.0,3.152,0.858,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.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.235,9.538,0.576,0.0,0.0,0.0,7.0,1724.9,2082.2,2082.2,3.451,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11399.5,3156.5,0.0,5886.0,8028.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.283,28.283,27.589,27.589,0.694,0.0,0.0,0.0,0.0,0.0,0.0,0.055,0.0,0.0,3.797,0.97,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.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,0.616,0.0,10.47,9.538,0.576,0.0,0.0,0.0,13.0,1761.3,2255.8,2255.8,3.597,8.103,0.0,-0.015,2.472,0.0,0.0,0.423,3.919,-2.555,0.0,0.0,-0.011,0.0,-0.392,1.275,0.0,0.674,0.0,0.036,-4.548,-0.767,0.0,-0.01,-1.112,0.0,0.0,-0.046,-1.16,5.647,0.0,0.0,-0.005,0.0,-0.381,-0.522,-1.34,-0.394,0.0,1.244,7.418,1.259,1354.8,997.6,11399.5,3156.5,0.0,8647.0,8993.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.753,27.753,27.137,27.137,0.616,0.0,0.0,0.0,0.0,0.0,0.0,0.074,0.0,0.0,3.438,0.858,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.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,0.581,0.0,9.235,9.538,0.576,0.0,0.0,0.0,7.0,1740.0,2153.6,2153.6,3.449,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11399.5,3156.5,0.0,5886.0,8028.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,33.206,33.206,32.7,32.7,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,8.9,0.97,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.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,0.594,0.0,10.47,9.538,0.576,0.0,0.0,0.0,13.0,2025.5,3517.3,3517.3,3.53,8.103,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11399.5,3156.5,0.0,28548.0,8993.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.904,27.904,27.398,27.398,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,3.597,0.97,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.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,0.594,0.0,10.47,9.538,0.576,0.0,0.0,0.0,13.0,1751.2,2206.4,2206.4,3.53,8.103,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11399.5,3156.5,0.0,28548.0,8993.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,23.225,23.225,22.703,22.703,0.522,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,0.0,0.0,9.596,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.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,0.467,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1522.2,1333.9,1522.2,3.443,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11399.5,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.28,23.28,22.722,22.722,0.558,0.0,0.0,0.0,0.0,0.0,0.0,0.044,0.0,0.0,0.0,0.0,9.596,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.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.495,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1530.0,1333.9,1530.0,3.595,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.029,-6.076,-1.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,1354.8,997.6,11399.5,3156.5,0.0,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.232,23.232,22.735,22.735,0.497,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,0.0,0.0,9.596,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.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,0.467,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1541.0,1333.9,1541.0,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11399.5,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.212,23.212,22.851,22.851,0.361,0.0,0.0,0.0,0.0,0.0,0.116,0.057,0.0,0.0,0.0,0.0,9.596,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1648.3,1333.9,1648.3,3.446,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.076,-1.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,1354.8,997.6,11399.5,3156.5,0.0,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.232,23.232,22.737,22.737,0.496,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,0.0,0.0,9.596,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.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,0.467,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1542.9,1333.9,1542.9,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11399.5,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,23.136,23.136,22.729,22.729,0.407,0.0,0.0,0.0,0.0,0.0,0.026,0.025,0.0,0.0,0.0,0.0,9.596,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.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,0.477,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1536.5,1333.9,1536.5,3.527,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.011,-6.076,-1.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,1354.8,997.6,11399.5,3156.5,0.0,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.759,26.759,26.759,26.759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.134,0.851,9.692,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,0.0,0.0,9.148,9.538,0.584,0.0,0.0,0.0,7.0,1721.8,1999.0,1999.0,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11399.5,3156.5,0.0,0.0,8028.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.512,27.512,27.512,27.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.775,0.962,9.692,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,0.0,0.0,10.377,9.538,0.584,0.0,0.0,0.0,13.0,1757.5,2211.5,2211.5,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11399.5,3156.5,0.0,0.0,8993.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,27.043,27.043,27.043,27.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.418,0.851,9.692,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,0.0,0.0,9.148,9.538,0.584,0.0,0.0,0.0,7.0,1736.7,2061.8,2061.8,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11399.5,3156.5,0.0,0.0,8028.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.578,32.578,32.578,32.578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.841,0.962,9.692,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,0.0,0.0,10.377,9.538,0.584,0.0,0.0,0.0,13.0,2116.8,3355.8,3355.8,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11399.5,3156.5,0.0,0.0,8993.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.313,27.313,27.313,27.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.577,0.962,9.692,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,0.0,0.0,10.377,9.538,0.584,0.0,0.0,0.0,13.0,1747.4,2166.7,2166.7,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11399.5,3156.5,0.0,0.0,8993.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-generator.xml,41.176,34.351,26.38,19.556,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,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,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.58,0.0,9.236,9.538,0.576,0.0,0.0,0.0,0.0,1700.2,2103.3,2103.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,28.208,28.208,28.208,28.208,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.269,0.0,0.0,2.073,2.941,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.0,0.581,0.0,9.235,9.538,0.576,0.0,0.0,0.0,0.0,1743.3,1899.8,1899.8,3.449,7.708,0.0,-0.016,2.485,0.0,0.0,0.427,3.958,-2.568,0.0,0.0,-0.012,0.0,-0.392,1.285,0.0,0.682,0.0,0.0,-4.6,-0.777,0.0,-0.011,-1.098,0.0,0.0,-0.042,-1.121,5.634,0.0,0.0,-0.007,0.0,-0.381,-0.512,-1.333,-0.388,0.0,0.0,7.366,1.25,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.946,31.946,16.765,16.765,15.181,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.097,0.582,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.0,0.571,0.0,14.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.527,0.0,9.529,9.538,2.261,0.0,0.0,0.0,0.0,1022.6,1554.0,1554.0,3.495,7.738,0.0,-0.017,2.437,0.0,0.0,0.425,3.913,-2.473,0.0,0.0,-0.012,0.0,-0.417,2.024,0.0,0.0,0.0,0.0,-4.703,-0.752,0.0,-0.012,-1.156,0.0,0.0,-0.045,-1.182,5.73,0.0,0.0,-0.007,0.0,-0.406,-0.942,-1.35,0.0,0.0,0.0,7.75,1.274,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-laundry-room.xml,29.828,29.828,16.572,16.572,13.256,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.944,0.541,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.0,0.742,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.685,0.0,8.806,9.539,0.568,0.0,0.0,0.0,0.0,1013.7,1542.1,1542.1,3.653,7.615,0.0,-0.017,2.498,0.0,0.0,0.426,3.976,-2.663,0.0,0.0,-0.014,0.0,-0.395,2.062,0.0,0.0,0.0,0.0,-4.478,-0.8,0.0,-0.012,-1.052,0.0,0.0,-0.036,-1.051,5.54,0.0,0.0,-0.009,0.0,-0.385,-0.862,-1.313,0.0,0.0,0.0,6.883,1.227,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-mechvent-multiple.xml,50.871,50.871,30.822,30.822,20.049,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.808,0.312,9.723,0.0,0.0,2.026,0.0,0.206,3.727,0.946,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,0.0,7.888,0.0,0.0,0.0,0.0,12.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.308,0.0,5.088,9.538,0.615,0.0,0.0,0.0,0.0,1848.3,2269.9,2269.9,7.586,8.979,0.0,-0.017,2.791,0.0,0.0,0.407,4.196,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.34,0.0,0.0,-6.693,-1.194,0.0,-0.013,-0.143,0.0,0.0,0.06,0.126,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.698,-4.228,0.0,0.0,5.312,0.832,1354.8,997.6,11399.5,3156.5,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.772,32.772,27.48,27.48,5.293,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.686,0.467,9.695,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,0.0,1.335,0.0,0.0,0.0,0.0,3.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,1.234,0.0,7.542,9.538,0.586,0.0,0.0,0.0,0.0,1721.3,2073.9,2073.9,4.164,7.879,0.0,-0.018,2.638,0.0,0.0,0.432,4.149,-3.079,0.0,0.0,-0.017,0.0,-0.36,1.775,0.0,1.925,0.0,0.0,-5.318,-0.929,0.0,-0.013,-0.774,0.0,0.0,-0.004,-0.66,5.123,0.0,0.0,-0.012,0.0,-0.352,-0.53,-1.153,-1.781,0.0,0.0,6.659,1.097,1354.8,997.6,11399.5,3156.5,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-mechvent.xml,30.992,30.992,27.332,27.332,3.661,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.584,0.44,9.704,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,0.0,3.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,3.389,0.0,7.249,9.538,0.596,0.0,0.0,0.0,0.0,1610.3,2059.7,2059.7,5.987,8.5,0.0,-0.016,2.682,0.0,0.0,0.398,4.038,-3.61,0.0,0.0,-0.018,0.0,-0.253,1.738,0.0,5.306,0.0,0.0,-5.801,-1.04,0.0,-0.011,-0.571,0.0,0.0,-0.008,-0.518,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.44,-1.153,-1.513,0.0,0.0,6.186,0.987,1354.8,997.6,11399.5,3156.5,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-pv.xml,27.009,2.561,26.38,1.932,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,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.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.58,0.0,9.236,9.538,0.576,0.0,0.0,0.0,0.0,1700.2,2103.3,2103.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.991,30.991,17.684,17.684,13.307,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,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.732,0.0,8.892,9.539,0.568,0.0,0.0,0.0,0.0,1059.0,1603.0,1603.0,3.646,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.662,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.037,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-water-heater.xml,29.895,29.895,16.588,16.588,13.307,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,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.732,0.0,8.892,9.539,0.568,0.0,0.0,0.0,0.0,1006.3,1550.3,1550.3,3.646,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.662,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.037,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily.xml,27.009,27.009,26.38,26.38,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,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.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.58,0.0,9.236,9.538,0.576,0.0,0.0,0.0,0.0,1700.2,2103.3,2103.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-dhw-combi-tankless-outside.xml,51.256,51.256,21.423,21.423,29.833,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.367,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,16.326,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.811,0.0,0.73,0.0,0.0,-8.575,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,52.456,52.456,21.432,21.432,31.024,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.558,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.376,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1376.9,1017.3,1376.9,17.068,0.0,0.0,3.743,3.642,0.513,7.499,0.631,10.099,-12.691,0.0,0.0,0.0,8.145,-0.067,5.893,0.0,0.729,0.0,0.0,-8.581,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,32.191,32.191,32.191,32.191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.285,0.755,6.875,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.242,9.232,0.661,2.934,0.0,0.0,0.0,2070.1,2830.0,2830.0,0.0,19.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.094,-0.469,-0.052,2.673,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.193,-3.045,-0.166,0.0,3.723,8.627,2.036,1354.8,997.6,11412.2,2618.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.295,37.295,37.295,37.295,0.0,0.0,0.0,0.0,0.0,0.0,5.088,0.488,0.0,0.0,2.85,0.93,6.662,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.769,0.0,13.96,9.232,0.613,2.967,0.0,0.0,0.0,3279.9,2282.9,3279.9,21.515,16.342,0.0,3.603,3.642,0.513,7.524,0.63,10.096,-12.683,0.0,0.0,0.0,8.307,-0.064,4.809,0.0,0.729,0.0,3.415,-8.588,-2.499,0.0,-0.008,-0.463,-0.052,2.691,-0.026,-1.403,11.73,0.0,0.0,0.0,-6.344,-0.06,-1.17,-3.128,-0.165,0.0,2.065,8.497,2.01,1354.8,997.6,11413.8,2619.1,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,56.564,56.564,29.812,29.812,26.751,0.0,0.0,0.0,0.0,0.0,0.0,0.441,0.0,0.0,4.519,0.885,2.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.052,0.0,14.94,9.245,1.81,3.052,0.0,0.0,0.0,1879.5,3184.4,3184.4,23.506,19.709,0.0,3.523,3.636,0.512,7.506,0.627,10.063,-12.738,0.0,0.0,0.0,8.335,-0.05,4.798,0.0,0.727,0.0,5.656,-5.393,-2.509,0.0,-0.019,-0.419,-0.046,2.832,-0.016,-1.279,11.675,0.0,0.0,0.0,-6.108,-0.046,-1.122,-2.946,-0.156,0.0,3.252,7.632,2.001,1354.7,997.5,11382.2,2611.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,33.893,33.893,33.893,33.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.523,1.226,6.868,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.645,9.238,0.0,2.969,0.0,0.0,0.0,1942.3,3302.1,3302.1,0.0,19.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.071,-0.464,-0.051,2.687,-0.03,-1.43,11.85,0.0,0.0,0.0,-6.907,-0.064,-1.187,-3.016,-0.165,0.0,3.291,8.359,2.036,1354.8,997.6,11359.3,2606.6,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,31.448,31.448,31.448,31.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.336,6.871,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.032,9.232,0.661,2.941,0.0,0.0,0.0,2070.2,2556.1,2556.1,0.0,19.549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.135,-0.469,-0.052,2.673,-0.032,-1.446,11.85,0.0,0.0,0.0,-6.915,-0.064,-1.193,-3.048,-0.166,0.0,4.556,8.629,2.036,1354.8,997.6,11411.3,2618.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,33.912,33.912,33.912,33.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.577,1.245,6.814,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.874,9.232,0.661,3.023,0.0,0.0,0.0,2070.2,3315.5,3315.5,0.0,19.413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.077,-0.469,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.193,-3.047,-0.166,0.0,3.328,8.651,2.036,1354.8,997.6,11415.6,2619.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,56.11,56.11,33.838,33.838,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,6.923,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,6.826,0.614,0.0,0.0,0.0,0.0,2106.6,3417.4,3417.4,23.037,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,10264.8,2355.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-detailed-setpoints.xml,54.031,54.031,21.421,21.421,32.61,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,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,0.0,19.122,0.0,13.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.131,0.0,0.0,9.256,2.363,0.0,0.0,0.0,0.0,1376.0,1017.3,1376.0,16.68,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.108,-12.669,0.0,0.0,0.0,8.131,-0.068,5.898,0.0,0.729,0.0,0.0,-9.891,-2.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,1161.6,860.6,9627.0,2209.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-dse.xml,59.001,59.001,21.458,21.458,37.543,0.0,0.0,0.0,0.0,0.0,0.0,0.182,0.0,0.0,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,0.0,23.96,0.0,13.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,16.173,0.0,0.0,9.261,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.777,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.133,-0.07,5.899,0.0,0.729,0.0,0.0,-9.854,-2.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,1071.4,776.1,9071.0,2081.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-outside.xml,55.593,55.593,21.423,21.423,34.17,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.367,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.326,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.811,0.0,0.73,0.0,0.0,-8.575,-2.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,1066.9,770.9,9019.2,2069.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-standbyloss.xml,54.412,54.412,21.42,21.42,32.993,0.0,0.0,0.0,0.0,0.0,0.0,0.143,0.0,0.0,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,0.0,18.912,0.0,14.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,15.952,0.0,0.0,9.263,2.691,0.0,0.0,0.0,0.0,1375.9,1017.3,1375.9,16.729,0.0,0.0,3.746,3.646,0.513,7.512,0.632,10.114,-12.663,0.0,0.0,0.0,8.131,-0.071,5.901,0.0,0.73,0.0,0.0,-10.091,-2.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,1065.3,770.2,9041.3,2074.7,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,46.245,46.245,21.429,21.429,24.817,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.075,0.0,4.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,16.958,0.0,0.0,9.239,0.784,0.0,6.005,0.0,0.0,1376.6,1017.3,1376.6,16.971,0.0,0.0,3.745,3.645,0.513,7.503,0.631,10.103,-12.69,0.0,0.0,0.0,8.144,-0.067,5.896,0.0,0.729,0.0,0.0,-9.024,-2.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,388.8,286.9,3208.7,736.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,54.172,54.172,21.422,21.422,32.751,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,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,0.0,19.168,0.0,13.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,16.173,0.0,0.0,9.261,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.777,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.133,-0.07,5.899,0.0,0.729,0.0,0.0,-9.854,-2.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,1071.4,776.1,9071.0,2081.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,58.239,58.239,35.752,35.752,22.486,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.387,0.851,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,0.0,22.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.058,0.0,14.342,9.233,0.295,0.0,0.0,0.0,0.0,2107.2,3415.9,3415.9,23.089,19.071,0.0,3.554,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.81,0.0,0.729,0.0,4.875,-8.733,-2.499,0.0,-0.054,-0.462,-0.052,2.693,-0.026,-1.399,11.73,0.0,0.0,0.0,-6.338,-0.06,-1.169,-3.09,-0.165,0.0,3.188,7.726,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,64.298,64.298,27.019,27.019,37.279,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.489,0.876,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,0.0,22.891,0.0,14.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.437,0.0,14.763,9.233,2.724,0.0,0.0,0.0,0.0,1464.4,3157.2,3157.2,23.585,19.542,0.0,3.552,3.645,0.513,7.531,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,5.895,0.0,0.729,0.0,4.962,-9.538,-2.499,0.0,-0.06,-0.465,-0.052,2.687,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.346,-0.058,-1.452,-3.115,-0.166,0.0,3.27,8.403,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,56.424,56.424,29.666,29.666,26.759,0.0,0.0,0.0,0.0,0.0,0.0,0.441,0.0,0.0,3.924,0.739,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,0.0,26.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,25.06,0.0,12.495,9.287,1.303,0.0,0.0,0.0,0.0,1896.4,3566.8,3566.8,23.597,19.104,0.0,3.521,3.635,0.511,7.504,0.628,10.066,-12.731,0.0,0.0,0.0,8.331,-0.051,4.799,0.0,0.727,0.0,5.652,-5.369,-2.51,0.0,0.006,-0.412,-0.045,2.855,-0.013,-1.251,11.682,0.0,0.0,0.0,-6.077,-0.048,-1.113,-2.823,-0.154,0.0,2.83,5.407,2.0,1354.8,997.6,10983.2,2520.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-indirect.xml,53.971,53.971,21.423,21.423,32.547,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.387,0.0,13.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.363,0.0,0.0,9.26,1.911,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.825,0.0,0.0,3.746,3.646,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.138,-0.068,5.898,0.0,0.729,0.0,0.0,-9.652,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1075.2,777.5,9105.9,2089.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,57.982,57.982,35.711,35.711,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,8.838,0.614,0.0,0.0,0.0,0.0,2129.0,3421.3,3421.3,23.035,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,10829.5,2485.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-multiple.xml,46.905,46.905,23.372,23.372,23.533,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.593,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,16.545,0.0,0.0,9.225,2.814,0.0,5.996,0.0,0.0,2111.5,1815.9,2111.5,18.806,0.0,0.0,3.745,3.645,0.513,7.508,0.631,10.107,-12.678,0.0,0.0,0.0,8.141,-0.068,5.898,0.0,0.729,0.0,0.0,-9.468,-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,472.0,347.5,3998.3,917.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,46.916,46.916,24.677,24.677,22.239,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.38,0.85,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,0.0,22.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.826,0.0,14.413,0.0,0.0,0.0,0.0,0.0,0.0,1360.8,3014.3,3014.3,23.074,19.087,0.0,3.558,3.646,0.513,7.535,0.631,10.106,-12.683,0.0,0.0,0.0,8.321,-0.064,5.409,0.0,0.0,0.0,4.829,-8.819,-2.499,0.0,-0.059,-0.466,-0.052,2.681,-0.027,-1.413,11.73,0.0,0.0,0.0,-6.357,-0.06,-1.308,-3.107,0.0,0.0,3.187,7.842,2.011,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,58.3,58.3,36.028,36.028,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.174,0.614,0.0,0.0,0.0,0.0,2132.0,3422.6,3422.6,23.035,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,57.873,57.873,35.602,35.602,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.174,0.614,0.0,0.0,0.0,0.0,2117.1,3408.0,3408.0,23.035,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,73.249,73.249,50.977,50.977,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.268,0.614,0.0,0.0,0.0,0.0,3078.6,4011.9,4011.9,23.034,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,68.338,68.338,46.067,46.067,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.268,0.614,0.0,0.0,0.0,0.0,2760.3,3826.9,3826.9,23.034,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,73.249,73.249,50.977,50.977,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.268,0.614,0.0,0.0,0.0,0.0,3078.6,4011.9,4011.9,23.034,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,52.5,52.5,30.228,30.228,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.417,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.469,9.254,0.627,0.0,6.674,0.0,0.0,2090.5,3145.8,3145.8,23.034,19.138,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.107,-0.166,0.0,3.208,7.886,2.011,1354.7,997.5,11215.4,2573.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,51.021,51.021,28.758,28.758,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.429,0.861,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.0,14.521,9.362,0.693,0.0,8.431,0.0,0.0,2086.3,3149.3,3149.3,23.034,19.167,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.832,-8.912,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.173,-3.112,-0.166,0.0,3.216,7.944,2.011,1354.4,997.2,10423.4,2391.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-ics.xml,52.558,52.558,30.287,30.287,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.422,0.86,3.032,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.492,9.29,0.649,0.0,6.682,0.0,0.0,2102.2,3147.9,3147.9,23.035,19.156,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.684,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.108,-0.166,0.0,3.212,7.908,2.011,1354.7,997.6,10950.1,2512.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,52.627,52.627,30.087,30.087,22.54,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.381,0.85,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,0.0,22.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.109,0.0,14.314,9.233,0.215,0.0,6.002,0.0,0.0,1767.2,3422.0,3422.0,23.101,19.058,0.0,3.554,3.644,0.513,7.529,0.631,10.098,-12.69,0.0,0.0,0.0,8.316,-0.062,4.81,0.0,0.729,0.0,4.886,-8.691,-2.5,0.0,-0.052,-0.461,-0.051,2.696,-0.026,-1.399,11.724,0.0,0.0,0.0,-6.332,-0.059,-1.168,-3.086,-0.165,0.0,3.183,7.688,2.01,474.2,349.2,3989.9,915.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,50.76,50.76,28.845,28.845,21.914,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.532,0.887,1.483,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,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.522,0.0,14.964,9.342,0.681,0.0,8.428,0.0,0.0,2074.7,3182.6,3182.6,23.069,19.439,0.0,3.559,3.645,0.513,7.536,0.63,10.098,-12.669,0.0,0.0,0.0,8.31,-0.061,4.81,0.0,0.729,0.0,4.765,-9.202,-2.496,0.0,-0.069,-0.473,-0.053,2.664,-0.029,-1.44,11.744,0.0,0.0,0.0,-6.388,-0.057,-1.184,-3.16,-0.168,0.0,3.291,8.463,2.013,1354.2,997.1,10553.0,2421.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,50.742,50.742,28.479,28.479,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.428,0.861,1.545,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.0,14.519,9.357,0.69,0.0,8.389,0.0,0.0,2092.5,3117.0,3117.0,23.034,19.165,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.832,-8.912,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.173,-3.112,-0.166,0.0,3.216,7.942,2.011,1354.4,997.3,10455.3,2399.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-coal.xml,65.034,65.034,27.073,27.073,22.494,0.0,0.0,0.0,0.0,15.467,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.065,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.7,3167.7,23.493,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.897,0.0,0.729,0.0,4.885,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.365,-0.058,-1.458,-3.143,-0.167,0.0,3.304,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-detailed-setpoints.xml,58.333,58.333,36.068,36.068,22.265,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.85,0.0,14.458,9.207,0.623,0.0,0.0,0.0,0.0,2477.2,3444.6,3444.6,23.012,19.117,0.0,3.556,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.811,0.0,0.729,0.0,4.832,-8.91,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.107,-0.166,0.0,3.206,7.877,2.01,1354.8,997.6,11442.2,2625.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,58.377,58.377,36.157,36.157,22.219,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.42,0.859,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,0.0,22.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.808,0.0,14.483,9.233,0.691,0.0,0.0,0.0,0.0,2172.6,3607.3,3607.3,23.024,19.135,0.0,3.557,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.824,-8.947,-2.499,0.0,-0.057,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.173,-3.11,-0.166,0.0,3.21,7.908,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,66.752,66.752,26.859,26.859,39.893,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.686,0.0,17.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,21.245,0.0,14.238,9.233,5.067,0.0,0.0,0.0,0.0,1462.6,3100.2,3100.2,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,64.708,64.708,27.035,27.035,37.673,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.504,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,0.0,22.77,0.0,14.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.324,0.0,14.826,9.233,2.977,0.0,0.0,0.0,0.0,1464.3,3160.4,3160.4,23.559,19.57,0.0,3.553,3.645,0.513,7.531,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.896,0.0,0.729,0.0,4.939,-9.636,-2.499,0.0,-0.062,-0.466,-0.052,2.683,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.453,-3.124,-0.166,0.0,3.28,8.483,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,64.708,64.708,27.035,27.035,37.673,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.504,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,0.0,22.77,0.0,14.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.324,0.0,14.826,9.233,2.977,0.0,0.0,0.0,0.0,1464.3,3160.4,3160.4,23.559,19.57,0.0,3.553,3.645,0.513,7.531,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.896,0.0,0.729,0.0,4.939,-9.636,-2.499,0.0,-0.062,-0.466,-0.052,2.683,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.453,-3.124,-0.166,0.0,3.28,8.483,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,65.034,65.034,27.073,27.073,37.961,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.494,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,21.065,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.7,3167.7,23.493,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.897,0.0,0.729,0.0,4.885,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.365,-0.058,-1.458,-3.143,-0.167,0.0,3.304,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,56.397,56.397,28.819,28.819,27.578,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,3.866,0.726,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,0.0,27.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,25.822,0.0,12.242,9.374,1.414,0.0,0.0,0.0,0.0,1847.8,3081.4,3081.4,26.695,18.881,0.0,3.505,3.633,0.511,7.506,0.628,10.08,-12.706,0.0,0.0,0.0,8.337,-0.061,4.801,0.0,0.727,0.0,5.813,-4.801,-2.509,0.0,0.019,-0.396,-0.042,2.895,-0.008,-1.181,11.708,0.0,0.0,0.0,-5.995,-0.057,-1.085,-2.725,-0.154,0.0,2.776,5.019,2.0,1354.8,997.6,10201.9,2341.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.261,56.261,28.645,28.645,27.615,0.0,0.0,0.0,0.0,0.0,0.0,0.456,0.0,0.0,3.852,0.722,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,0.0,27.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,0.0,25.849,0.0,12.191,9.29,1.306,0.0,0.0,0.0,0.0,1860.4,3442.5,3442.5,25.483,19.07,0.0,3.518,3.637,0.512,7.511,0.627,10.064,-12.741,0.0,0.0,0.0,8.354,-0.042,4.799,0.0,0.727,0.0,5.808,-4.777,-2.511,0.0,0.022,-0.397,-0.043,2.901,-0.011,-1.214,11.672,0.0,0.0,0.0,-6.003,-0.038,-1.097,-2.759,-0.152,0.0,2.783,5.017,1.999,1354.8,997.6,10960.7,2515.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,56.367,56.367,33.681,33.681,22.686,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,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,0.0,22.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,21.245,0.0,14.238,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3332.1,3332.1,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11245.7,2580.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,56.261,56.261,28.645,28.645,27.615,0.0,0.0,0.0,0.0,0.0,0.0,0.456,0.0,0.0,3.852,0.722,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,0.0,27.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,0.0,25.849,0.0,12.191,9.29,1.306,0.0,0.0,0.0,0.0,1860.4,3442.5,3442.5,25.483,19.07,0.0,3.518,3.637,0.512,7.511,0.627,10.064,-12.741,0.0,0.0,0.0,8.354,-0.042,4.799,0.0,0.727,0.0,5.808,-4.777,-2.511,0.0,0.022,-0.397,-0.043,2.901,-0.011,-1.214,11.672,0.0,0.0,0.0,-6.003,-0.038,-1.097,-2.759,-0.152,0.0,2.783,5.017,1.999,1354.8,997.6,10960.7,2515.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,52.015,52.015,27.95,27.95,24.065,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.215,0.81,1.253,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,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.532,0.0,13.653,9.266,0.602,0.0,6.023,0.0,0.0,1880.1,3178.1,3178.1,26.022,19.099,0.0,3.544,3.641,0.512,7.517,0.63,10.08,-12.707,0.0,0.0,0.0,8.321,-0.054,4.804,0.0,0.728,0.0,5.166,-7.502,-2.501,0.0,-0.029,-0.442,-0.049,2.751,-0.021,-1.349,11.706,0.0,0.0,0.0,-6.239,-0.05,-1.148,-2.982,-0.162,0.0,3.057,6.853,2.008,474.2,349.2,3898.4,894.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,51.579,51.579,28.573,28.573,23.007,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.566,0.895,1.125,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,0.0,23.007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.544,0.0,15.117,9.179,1.961,0.0,8.149,0.0,0.0,1891.7,3199.1,3199.1,23.383,19.568,0.0,3.554,3.646,0.513,7.539,0.629,10.091,-12.687,0.0,0.0,0.0,8.325,-0.057,4.809,0.0,0.729,0.0,4.966,-8.375,-2.498,0.0,-0.064,-0.466,-0.052,2.683,-0.029,-1.429,11.726,0.0,0.0,0.0,-6.347,-0.053,-1.177,-3.156,-0.166,0.0,3.314,8.556,2.012,1354.5,997.3,11926.7,2736.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,56.512,56.512,29.822,29.822,26.69,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,3.938,0.743,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,0.0,26.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,24.991,0.0,12.561,9.279,1.718,0.0,0.0,0.0,0.0,1871.8,3309.5,3309.5,23.447,19.257,0.0,3.522,3.634,0.511,7.507,0.628,10.071,-12.731,0.0,0.0,0.0,8.342,-0.054,4.8,0.0,0.727,0.0,5.642,-5.46,-2.511,0.0,0.003,-0.415,-0.045,2.847,-0.014,-1.252,11.682,0.0,0.0,0.0,-6.076,-0.05,-1.114,-2.828,-0.154,0.0,2.838,5.479,1.999,1354.8,997.6,11052.3,2536.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.941,58.941,35.718,35.718,23.224,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.453,0.866,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,21.746,0.0,14.577,9.275,0.094,0.0,0.0,0.0,0.0,4636.3,5578.8,5578.8,30.734,19.973,0.0,3.55,3.644,0.513,7.528,0.631,10.102,-12.682,0.0,0.0,0.0,8.311,-0.062,5.268,0.0,0.777,0.0,5.012,-8.678,-2.504,0.0,-0.055,-0.461,-0.051,2.696,-0.025,-1.393,11.731,0.0,0.0,0.0,-6.334,-0.058,-1.27,-3.077,-0.186,0.0,3.233,8.042,2.006,1354.7,998.0,11011.7,2526.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,58.224,58.224,35.602,35.602,22.622,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.371,0.847,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,0.0,22.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.186,0.0,14.272,9.282,0.094,0.0,0.0,0.0,0.0,2012.3,3454.9,3454.9,23.121,19.038,0.0,3.553,3.644,0.513,7.528,0.63,10.097,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.902,-8.625,-2.5,0.0,-0.051,-0.46,-0.051,2.699,-0.025,-1.396,11.724,0.0,0.0,0.0,-6.328,-0.058,-1.167,-3.08,-0.165,0.0,3.177,7.633,2.01,1354.8,997.6,10995.2,2523.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,65.034,65.034,27.073,27.073,22.494,15.467,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.494,0.0,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,21.065,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.7,3167.7,23.493,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.897,0.0,0.729,0.0,4.885,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.365,-0.058,-1.458,-3.143,-0.167,0.0,3.304,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-wood.xml,65.034,65.034,27.073,27.073,22.494,0.0,0.0,15.467,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.065,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.7,3167.7,23.493,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.897,0.0,0.729,0.0,4.885,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.365,-0.058,-1.458,-3.143,-0.167,0.0,3.304,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,60.911,60.911,26.859,26.859,34.052,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.686,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.245,0.0,14.238,9.214,0.0,0.0,0.0,0.0,0.0,1462.6,3100.2,3100.2,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11575.0,2656.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,58.979,58.979,36.293,36.293,22.686,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.245,0.0,14.238,9.234,0.0,0.0,0.0,0.0,0.0,2022.5,3495.1,3495.1,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,58.873,58.873,36.187,36.187,22.686,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,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,0.0,22.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,21.245,0.0,14.238,9.234,0.0,0.0,0.0,0.0,0.0,2016.1,3490.6,3490.6,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,58.979,58.979,36.293,36.293,22.686,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.245,0.0,14.238,9.234,0.0,0.0,0.0,0.0,0.0,2022.5,3495.1,3495.1,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,59.374,59.374,26.859,26.859,32.515,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.686,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.245,0.0,14.238,9.234,0.0,0.0,0.0,0.0,0.0,1462.6,3100.2,3100.2,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,53.531,53.531,26.859,26.859,26.672,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.686,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.245,0.0,14.238,9.234,0.0,0.0,6.002,0.0,0.0,1462.6,3100.2,3100.2,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,474.2,349.2,3988.9,915.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,51.256,51.256,27.289,27.289,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.47,0.872,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.328,0.0,1.639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.91,0.0,14.696,9.417,0.0,0.0,8.084,0.0,0.0,1462.4,3166.2,3166.2,23.17,19.302,0.0,3.557,3.645,0.513,7.532,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,4.811,0.0,0.729,0.0,4.845,-8.874,-2.498,0.0,-0.061,-0.467,-0.052,2.68,-0.027,-1.419,11.73,0.0,0.0,0.0,-6.359,-0.058,-1.176,-3.127,-0.166,0.0,3.248,8.126,2.011,1344.9,989.3,10030.6,2301.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,60.935,60.935,26.859,26.859,34.076,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.686,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.245,0.0,14.238,9.234,0.0,0.0,0.0,0.0,0.0,1462.6,3100.2,3100.2,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-propane.xml,60.935,60.935,26.859,26.859,22.686,0.0,11.39,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.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,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.245,0.0,14.238,9.234,0.0,0.0,0.0,0.0,0.0,1462.6,3100.2,3100.2,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,65.836,65.836,41.127,41.127,24.709,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,6.442,1.322,9.119,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,0.0,24.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,0.0,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.042,0.0,22.267,9.211,0.609,0.0,0.0,0.0,0.0,2307.2,4586.9,4586.9,30.679,28.149,0.0,3.862,7.596,1.093,5.881,0.688,20.477,-24.88,0.0,0.0,0.867,6.711,-0.179,8.979,0.0,0.763,0.0,3.296,-9.747,-2.93,0.0,-0.11,-1.064,-0.109,1.841,-0.027,-1.632,23.454,0.0,0.0,-0.141,-4.808,-0.17,-1.954,-6.137,-0.162,0.0,2.913,8.485,2.338,1354.8,997.6,11399.5,2576.4,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7646.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,73.821,73.821,44.434,44.434,29.388,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,6.33,1.295,9.004,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,0.0,29.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,27.407,0.0,21.789,9.146,0.612,0.0,0.0,0.0,0.0,2519.1,4711.9,4711.9,33.929,28.29,0.0,3.774,7.88,1.071,7.921,0.667,20.51,-25.19,0.0,0.0,0.0,9.056,-0.136,11.154,0.0,0.747,0.0,3.87,-10.951,-3.54,0.0,-0.076,-1.046,-0.101,2.662,-0.023,-2.118,23.376,0.0,0.0,0.0,-6.456,-0.126,-2.483,-6.302,-0.162,0.0,2.839,9.405,2.832,1354.8,997.6,11399.6,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,54.948,54.948,30.687,30.687,24.261,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.1,0.781,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,0.0,24.261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.312,5.356,0.615,0.0,0.0,0.0,0.0,1778.7,3279.3,3279.3,23.626,18.495,0.0,3.533,3.635,0.511,7.498,0.63,10.083,-12.698,0.0,0.0,0.0,8.293,-0.065,4.808,0.0,0.727,0.0,5.23,-7.29,-2.504,0.0,-0.019,-0.433,-0.048,2.778,-0.018,-1.304,11.715,0.0,0.0,0.0,-6.199,-0.061,-1.138,-2.942,-0.161,0.0,3.028,6.287,2.006,939.7,637.0,6287.7,1631.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,56.681,56.681,33.418,33.418,23.262,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.254,0.819,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,0.0,23.262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.785,0.0,13.878,7.337,0.614,0.0,0.0,0.0,0.0,2047.7,3350.9,3350.9,23.33,18.795,0.0,3.544,3.639,0.512,7.513,0.63,10.088,-12.691,0.0,0.0,0.0,8.302,-0.063,4.808,0.0,0.728,0.0,5.032,-8.097,-2.5,0.0,-0.038,-0.449,-0.05,2.732,-0.022,-1.359,11.723,0.0,0.0,0.0,-6.276,-0.059,-1.156,-3.023,-0.163,0.0,3.117,7.08,2.009,1147.2,817.3,8843.6,2197.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,59.997,59.997,38.705,38.705,21.292,0.0,0.0,0.0,0.0,0.0,0.0,0.351,0.0,0.0,4.577,0.898,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,0.0,21.292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.939,0.0,15.047,11.089,0.613,0.0,0.0,0.0,0.0,2192.5,3633.7,3633.7,22.738,19.45,0.0,3.569,3.65,0.514,7.549,0.631,10.109,-12.676,0.0,0.0,0.0,8.327,-0.061,4.812,0.0,0.731,0.0,4.637,-9.709,-2.497,0.0,-0.075,-0.479,-0.054,2.64,-0.031,-1.46,11.737,0.0,0.0,0.0,-6.42,-0.058,-1.189,-3.188,-0.168,0.0,3.296,8.669,2.013,1562.4,1177.9,13955.4,2960.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 +base-enclosure-beds-5.xml,61.637,61.637,41.314,41.314,20.323,0.0,0.0,0.0,0.0,0.0,0.0,0.335,0.0,0.0,4.745,0.939,12.591,0.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,0.0,20.323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.031,0.0,15.648,12.918,0.612,0.0,0.0,0.0,0.0,2559.7,3923.5,3923.5,22.441,19.772,0.0,3.581,3.657,0.515,7.568,0.633,10.128,-12.669,0.0,0.0,0.0,8.348,-0.064,4.817,0.0,0.733,0.0,4.442,-10.517,-2.496,0.0,-0.092,-0.493,-0.056,2.596,-0.034,-1.503,11.744,0.0,0.0,0.0,-6.484,-0.06,-1.203,-3.267,-0.17,0.0,3.385,9.461,2.013,1770.0,1358.2,16511.3,3258.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 +base-enclosure-ceilingtypes.xml,74.446,74.446,36.588,36.588,37.858,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,4.612,0.908,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,0.0,37.858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.449,0.0,15.263,9.233,0.618,0.0,0.0,0.0,0.0,2162.8,3488.4,3488.4,29.354,19.726,0.0,17.288,3.592,0.505,7.259,0.62,9.956,-12.802,0.0,0.0,0.0,7.765,-0.075,4.849,0.0,0.734,0.0,6.977,-9.066,-2.542,0.0,0.077,-0.331,-0.033,2.89,0.007,-1.002,11.611,0.0,0.0,0.0,-6.097,-0.066,-1.018,-2.911,-0.141,0.0,2.804,7.716,1.968,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-floortypes.xml,67.246,67.246,29.481,29.481,37.764,0.0,0.0,0.0,0.0,0.0,0.0,0.623,0.0,0.0,3.689,0.672,9.367,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,37.764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.371,0.0,11.163,9.342,0.62,0.0,0.0,0.0,2.0,1781.3,3656.1,3656.1,29.151,21.057,0.0,3.488,3.656,0.0,0.0,0.672,9.52,-13.012,0.0,0.0,29.107,0.0,-0.209,2.053,0.0,0.788,0.0,7.865,-7.472,-1.575,0.0,0.406,-0.079,0.0,0.0,0.093,0.884,10.956,0.0,0.0,-8.039,0.0,-0.204,-0.263,-1.883,-0.087,0.0,2.753,5.732,1.072,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-enclosure-garage.xml,58.664,58.664,34.731,34.731,23.933,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.101,0.55,9.267,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,0.0,23.933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.407,0.0,9.117,9.233,0.724,0.0,0.0,0.0,0.0,2122.7,2939.7,2939.7,18.034,11.764,0.0,3.529,3.789,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.372,0.0,0.0,0.0,3.763,-6.763,-2.508,0.0,0.098,-0.288,-0.036,2.418,-0.001,-1.133,8.269,0.0,0.0,0.0,-5.679,-0.041,-1.226,-2.105,0.0,0.0,1.325,5.683,2.002,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,58.334,58.334,36.078,36.078,22.255,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,20.842,0.0,14.456,9.233,0.614,0.0,0.0,0.0,0.0,2131.9,3422.1,3422.1,23.026,19.121,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.798,0.0,0.729,0.0,4.83,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.684,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.169,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,58.334,58.334,36.078,36.078,22.255,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,20.842,0.0,14.456,9.233,0.614,0.0,0.0,0.0,0.0,2131.9,3422.1,3422.1,23.026,19.121,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.798,0.0,0.729,0.0,4.83,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.684,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.169,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,58.35,58.35,36.078,36.078,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,65.959,65.959,36.09,36.09,29.869,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.324,0.832,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,0.0,29.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.972,0.0,13.991,9.233,0.616,0.0,0.0,0.0,0.0,2154.8,3871.9,3871.9,28.052,20.147,0.0,3.501,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.546,0.0,0.726,0.0,6.344,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.82,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.125,-0.057,-2.426,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,59.761,59.761,36.078,36.078,23.683,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.395,0.852,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,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.179,0.0,14.354,9.233,0.614,0.0,0.0,0.0,0.0,2117.2,3447.7,3447.7,23.775,19.353,0.0,3.544,3.642,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.319,-0.062,5.892,0.0,0.728,0.0,5.115,-8.911,-2.5,0.0,-0.049,-0.456,-0.051,2.716,-0.024,-1.382,11.724,0.0,0.0,0.0,-6.303,-0.058,-1.437,-3.059,-0.164,0.0,3.204,7.868,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,65.959,65.959,36.09,36.09,29.869,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.324,0.832,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,0.0,29.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.972,0.0,13.991,9.233,0.616,0.0,0.0,0.0,0.0,2154.8,3871.9,3871.9,28.052,20.147,0.0,3.501,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.546,0.0,0.726,0.0,6.344,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.82,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.125,-0.057,-2.426,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,65.959,65.959,36.09,36.09,29.869,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.324,0.832,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,0.0,29.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.972,0.0,13.991,9.233,0.616,0.0,0.0,0.0,0.0,2154.8,3871.9,3871.9,28.052,20.147,0.0,3.501,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.546,0.0,0.726,0.0,6.344,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.82,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.125,-0.057,-2.426,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,58.572,58.572,36.054,36.054,22.518,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.39,0.852,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.088,0.0,14.359,9.233,0.614,0.0,0.0,0.0,0.0,2132.4,3418.5,3418.5,23.05,19.087,0.0,3.551,3.641,0.512,7.521,0.864,10.091,-12.683,0.0,0.0,0.0,8.303,-0.064,4.809,0.0,0.729,0.0,4.879,-8.906,-2.499,0.0,-0.053,-0.461,-0.052,2.692,-0.155,-1.398,11.73,0.0,0.0,0.0,-6.336,-0.06,-1.169,-3.091,-0.165,0.0,3.184,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,58.473,58.473,35.907,35.907,22.566,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.272,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,22.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.132,0.0,13.872,9.233,0.614,0.0,0.0,0.0,0.0,2132.1,3376.2,3376.2,22.989,18.595,0.0,3.548,3.639,0.512,7.51,0.629,10.004,-12.276,0.0,0.0,0.0,8.277,-0.063,4.808,0.0,0.729,0.0,4.883,-8.91,-2.5,0.0,-0.037,-0.451,-0.05,2.717,-0.023,-1.42,11.099,0.0,0.0,0.0,-6.287,-0.059,-1.164,-3.063,-0.164,0.0,3.082,7.868,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,58.268,58.268,35.911,35.911,22.357,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.277,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,0.0,22.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.936,0.0,13.896,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3300.2,3300.2,22.863,18.06,0.0,3.669,3.643,0.513,7.524,0.63,10.094,-12.69,0.0,0.0,0.0,8.307,-0.061,4.81,0.0,0.729,0.0,4.837,-8.908,-2.5,0.0,-0.306,-0.459,-0.051,2.699,-0.025,-1.393,11.724,0.0,0.0,0.0,-6.326,-0.058,-1.169,-3.088,-0.165,0.0,2.846,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-physical-properties.xml,60.867,60.867,37.183,37.183,23.684,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,5.288,1.065,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,23.684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,18.03,9.233,0.612,0.0,0.0,0.0,3.0,2138.5,3597.9,3597.9,24.762,21.557,0.0,3.552,3.66,0.515,7.583,0.634,10.135,-12.625,2.717,-2.174,0.0,8.471,-0.068,4.82,0.0,0.732,0.0,5.145,-8.887,-2.495,0.0,-0.146,-0.516,-0.059,2.583,-0.039,-1.533,11.705,-0.068,3.749,0.0,-6.624,-0.063,-1.188,-3.252,-0.17,0.0,4.013,7.889,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,59.487,59.487,36.124,36.124,23.363,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.436,0.862,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.879,0.0,14.523,9.233,0.614,0.0,0.0,0.0,0.0,2117.0,3460.1,3460.1,23.655,19.388,0.0,3.538,3.64,0.512,7.524,0.63,10.088,-12.677,1.147,-0.32,0.0,8.318,-0.063,4.81,0.0,0.729,0.0,5.049,-8.906,-2.499,0.0,-0.056,-0.458,-0.051,2.705,-0.025,-1.387,11.724,-0.498,0.432,0.0,-6.324,-0.059,-1.164,-3.074,-0.165,0.0,3.237,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,58.87,58.87,36.839,36.839,22.031,0.0,0.0,0.0,0.0,0.0,0.0,0.363,0.0,0.0,5.031,1.005,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,22.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,20.631,0.0,17.0,9.233,0.612,0.0,0.0,0.0,0.0,2133.7,3597.9,3597.9,23.623,20.822,0.0,3.568,3.663,0.516,7.583,0.634,10.138,-12.642,0.857,-1.409,0.0,8.436,-0.063,4.818,0.0,0.732,0.0,4.802,-8.885,-2.496,0.0,-0.128,-0.51,-0.059,2.585,-0.038,-1.534,11.715,0.254,2.537,0.0,-6.586,-0.059,-1.197,-3.257,-0.17,0.0,3.753,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,58.623,58.623,36.939,36.939,21.684,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,5.117,1.026,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,21.684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.306,0.0,17.364,9.233,0.612,0.0,0.0,0.0,0.0,2133.2,3597.9,3597.9,23.539,20.993,0.0,3.574,3.667,0.516,7.595,0.636,10.154,-12.632,0.765,-1.651,0.0,8.463,-0.066,4.822,0.0,0.732,0.0,4.734,-8.884,-2.495,0.0,-0.141,-0.519,-0.06,2.564,-0.04,-1.554,11.716,0.258,2.975,0.0,-6.633,-0.063,-1.202,-3.288,-0.171,0.0,3.822,7.892,2.015,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-split-level.xml,40.55,40.55,29.578,29.578,10.972,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,3.951,0.751,9.563,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,10.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,10.268,0.0,12.42,9.458,0.606,0.0,0.0,0.0,0.0,1710.6,2631.3,2631.3,13.168,13.025,0.0,3.945,3.838,0.0,0.0,0.691,10.079,-12.095,0.0,0.0,0.0,7.996,-0.152,2.657,0.0,0.776,0.0,0.289,-6.808,-1.452,0.0,-0.102,-0.617,0.0,0.0,-0.024,-0.74,12.161,0.0,0.0,0.0,-1.657,-0.149,-0.598,-3.044,-0.169,0.0,0.091,6.381,1.195,1354.8,997.6,11399.5,3013.0,0.0,36000.0,24000.0,0.0,6.8,91.76,28989.0,1641.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 +base-enclosure-thermal-mass.xml,58.143,58.143,36.031,36.031,22.112,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.376,0.85,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.708,0.0,14.333,9.233,0.614,0.0,0.0,0.0,0.0,2131.9,3384.4,3384.4,22.906,18.773,0.0,3.557,3.642,0.513,7.508,0.63,10.116,-12.697,0.0,0.0,0.0,8.279,-0.098,4.805,0.0,0.728,0.0,4.786,-8.907,-2.499,0.0,-0.05,-0.46,-0.051,2.699,-0.026,-1.427,11.731,0.0,0.0,0.0,-6.336,-0.094,-1.176,-3.142,-0.166,0.0,3.139,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,75.038,75.038,34.73,34.73,40.309,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,3.069,0.549,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,0.0,40.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.736,0.0,9.028,9.233,0.622,0.0,0.0,0.0,0.0,2128.5,3062.9,3062.9,25.835,12.743,0.0,3.347,16.952,0.473,7.157,0.836,1.283,-1.612,0.0,0.0,0.0,7.38,-0.045,4.83,0.0,0.732,0.0,7.807,-9.155,-2.566,0.0,0.291,-0.622,-0.009,3.405,-0.085,-0.165,1.409,0.0,0.0,0.0,-4.92,-0.04,-0.966,-0.378,-0.123,0.0,1.78,7.631,1.944,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,57.427,57.427,35.085,35.085,22.343,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,3.619,0.655,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,0.0,22.343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.923,0.0,10.899,9.233,0.616,0.0,0.0,0.0,0.0,2132.0,3384.8,3384.8,23.037,18.776,0.0,3.555,3.644,0.513,7.537,0.631,10.098,-12.683,0.0,0.0,0.0,8.359,-0.06,4.81,0.0,0.729,0.0,4.849,-8.905,-2.499,0.0,0.012,-0.412,-0.044,2.862,-0.013,-1.248,11.73,0.0,0.0,0.0,-6.094,-0.057,-1.112,-7.006,-0.157,0.0,2.763,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.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,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,66.589,66.589,36.066,36.066,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.504,0.0,0.0,4.298,0.823,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,0.0,30.523,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,13.831,9.233,0.616,0.0,0.0,0.0,0.0,2151.2,3923.3,3923.3,27.787,20.647,0.0,3.479,3.624,0.51,7.478,0.628,19.95,-16.639,0.0,0.0,0.0,8.388,-0.076,4.826,0.0,0.731,0.0,6.483,-8.971,-2.514,0.0,0.024,-0.382,-0.04,2.846,-0.004,-5.438,14.295,0.0,0.0,0.0,-6.138,-0.07,-1.075,-2.813,-0.153,0.0,3.217,7.81,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,58.531,58.531,35.961,35.961,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.315,0.834,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,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,0.0,14.06,9.233,0.614,0.0,0.0,0.0,0.0,2132.3,3299.8,3299.8,23.056,17.902,0.0,3.548,3.638,0.512,7.5,0.63,10.479,-12.684,0.0,0.0,0.0,8.231,-0.07,4.807,0.0,0.728,0.0,4.887,-8.907,-2.499,0.0,-0.06,-0.472,-0.053,2.647,-0.028,-1.852,12.087,0.0,0.0,0.0,-6.451,-0.066,-1.181,-3.164,-0.167,0.0,3.123,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,59.255,59.255,33.594,33.594,25.66,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,2.352,0.371,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.032,0.0,6.117,9.233,0.622,0.0,0.0,0.0,0.0,2115.5,2565.4,2565.4,23.103,11.205,0.0,3.549,3.663,0.515,7.512,0.633,11.222,-11.157,0.0,0.0,0.0,8.457,-0.043,4.862,0.0,0.738,0.0,5.45,-9.146,-2.561,0.0,0.355,-0.109,-0.002,3.557,0.057,-3.66,2.918,0.0,0.0,0.0,-4.591,-0.039,-0.912,-2.167,-0.118,0.0,1.417,7.64,1.949,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,59.727,59.727,35.371,35.371,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,3.813,0.715,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,0.0,24.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,11.997,9.233,0.616,0.0,0.0,0.0,0.0,2132.3,3071.6,3071.6,22.515,15.932,0.0,3.504,3.601,0.507,7.401,0.621,9.008,-9.349,0.0,0.0,0.0,8.017,-0.059,4.792,0.0,0.725,0.0,5.195,-8.932,-2.505,0.0,0.029,-0.4,-0.043,2.844,-0.011,-1.232,8.682,0.0,0.0,0.0,-6.013,-0.055,-1.134,-2.874,-0.158,0.0,2.684,7.848,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-ambient.xml,48.007,48.007,30.285,30.285,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.292,0.0,0.0,4.61,0.898,9.354,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,17.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.601,0.0,15.077,9.342,0.606,0.0,0.0,0.0,2.0,1740.7,3397.3,3397.3,20.514,21.089,0.0,3.835,3.846,0.0,0.0,0.76,10.831,-11.429,0.0,0.0,10.226,0.0,-0.403,2.065,0.0,0.789,0.0,3.979,-6.811,-1.44,0.0,-0.046,-0.527,0.0,0.0,0.028,-0.75,12.412,0.0,0.0,-3.67,0.0,-0.396,-0.402,-2.391,-0.154,0.0,3.577,6.38,1.207,1354.8,997.6,11399.5,2808.9,0.0,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,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-basement-garage.xml,52.909,52.909,32.669,32.669,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.323,0.834,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,0.0,20.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.954,0.0,14.048,9.365,0.613,0.0,0.0,0.0,0.0,1906.9,3259.2,3259.2,21.422,18.543,0.0,3.646,4.699,0.512,5.489,0.696,10.233,-12.477,0.0,0.0,0.815,6.109,-0.038,3.247,0.0,0.733,0.0,4.538,-7.701,-1.886,0.0,-0.029,-0.627,-0.055,1.931,-0.041,-1.709,11.682,0.0,0.0,-0.116,-4.597,-0.035,-0.786,-2.985,-0.166,0.0,3.282,6.955,1.52,1354.8,997.6,11399.5,2849.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 -base-foundation-belly-wing-no-skirt.xml,49.694,49.694,29.445,29.445,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,3.895,0.731,9.354,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,20.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.964,0.0,12.009,9.342,0.607,0.0,0.0,0.0,0.0,1753.6,3211.6,3211.6,24.176,17.286,0.0,3.981,5.371,0.0,0.0,0.753,8.835,-11.05,0.0,0.0,10.267,0.0,-0.35,2.069,0.0,0.794,0.0,6.238,-6.883,-1.459,0.0,0.302,-0.601,0.0,0.0,0.038,-0.188,9.522,0.0,0.0,-3.443,0.0,-0.343,-0.395,-2.184,-0.144,0.0,2.215,6.308,1.188,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-belly-wing-skirt.xml,49.322,49.322,29.453,29.453,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.328,0.0,0.0,3.906,0.734,9.354,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,19.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.608,0.0,12.062,9.342,0.607,0.0,0.0,0.0,0.0,1752.3,3180.5,3180.5,24.023,17.245,0.0,3.987,5.379,0.0,0.0,0.753,8.843,-11.04,0.0,0.0,9.969,0.0,-0.345,2.068,0.0,0.793,0.0,6.125,-6.873,-1.457,0.0,0.296,-0.61,0.0,0.0,0.036,-0.211,9.532,0.0,0.0,-3.365,0.0,-0.338,-0.399,-2.199,-0.146,0.0,2.221,6.318,1.191,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-complex.xml,78.103,78.103,37.261,37.261,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.674,0.0,0.0,5.116,1.028,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.25,0.0,17.361,9.233,0.617,0.0,0.0,0.0,2.0,2171.5,3845.1,3845.1,33.417,21.451,0.0,3.431,3.657,0.52,19.54,0.65,10.564,-12.717,0.0,0.0,0.0,8.705,-0.111,6.102,0.0,0.739,0.0,8.38,-9.124,-2.557,0.0,0.048,-0.359,-0.044,3.767,-0.003,-1.508,11.564,0.0,0.0,0.0,-4.519,-0.103,-1.227,-3.259,-0.137,0.0,3.71,7.657,1.952,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation-full.xml,56.087,56.087,36.482,36.482,19.605,0.0,0.0,0.0,0.0,0.0,0.0,0.323,0.0,0.0,4.774,0.947,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,19.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,18.357,0.0,15.998,9.233,0.612,0.0,0.0,0.0,0.0,2130.6,3496.4,3496.4,22.309,19.66,0.0,3.624,3.695,0.52,8.197,0.641,10.668,-12.534,0.0,0.0,0.0,4.773,-0.061,4.839,0.0,0.733,0.0,4.319,-8.893,-2.498,0.0,-0.098,-0.497,-0.057,2.177,-0.036,-2.054,11.749,0.0,0.0,0.0,-3.7,-0.055,-1.187,-3.277,-0.169,0.0,3.465,7.883,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,57.658,57.658,36.156,36.156,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.486,0.876,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,21.502,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,14.766,9.233,0.613,0.0,0.0,0.0,0.0,2131.1,3720.9,3720.9,22.783,18.768,0.0,3.57,3.653,0.514,7.799,0.632,10.55,-12.544,0.0,0.0,0.0,6.847,-0.058,4.81,0.0,0.729,0.0,4.687,-8.894,-2.497,0.0,-0.069,-0.474,-0.053,2.517,-0.03,-1.983,11.739,0.0,0.0,0.0,-5.32,-0.053,-1.177,-3.141,-0.167,0.0,3.25,7.883,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,57.531,57.531,35.488,35.488,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.741,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.642,0.0,12.433,9.233,0.614,0.0,0.0,0.0,0.0,2130.0,3262.4,3262.4,23.249,17.67,0.0,3.57,3.658,0.515,6.077,0.634,10.566,-12.564,0.0,0.0,0.0,8.941,-0.062,4.822,0.0,0.732,0.0,4.811,-8.909,-2.501,0.0,0.012,-0.412,-0.045,1.089,-0.014,-1.803,11.719,0.0,0.0,0.0,-6.476,-0.057,-1.137,-2.881,-0.161,0.0,2.898,7.869,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,47.403,47.403,28.944,28.944,18.459,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,3.5,0.646,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,0.0,18.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,17.274,0.0,10.706,9.342,0.615,0.0,0.0,0.0,0.0,1720.4,2459.5,2459.5,15.91,10.873,0.0,3.701,3.596,0.506,5.094,0.62,10.202,-12.529,0.0,0.0,0.0,9.966,-0.053,3.485,0.0,0.729,0.0,0.0,-6.894,-1.468,0.0,0.035,-0.463,-0.052,1.801,-0.026,-1.728,11.695,0.0,0.0,0.0,-3.811,-0.049,-0.835,-2.948,-0.163,0.0,0.0,6.304,1.179,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 -base-foundation-multiple.xml,42.719,42.719,29.708,29.708,13.011,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.22,0.813,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,0.0,13.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.179,0.0,13.45,9.285,0.692,0.0,0.0,0.0,0.0,1720.8,2656.9,2656.9,15.194,14.151,0.0,4.0,3.885,0.0,0.0,0.77,10.859,-11.235,0.0,0.0,5.305,0.0,-0.326,2.58,0.0,0.0,0.0,2.028,-4.635,-1.429,0.0,-0.1,-0.676,0.0,0.0,-0.018,-1.077,12.605,0.0,0.0,-0.622,0.0,-0.321,-0.563,-2.612,0.0,0.0,1.652,4.23,1.218,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23047.0,4758.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14361.0,307.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-slab.xml,39.952,39.952,29.302,29.302,10.649,0.0,0.0,0.0,0.0,0.0,0.0,0.176,0.0,0.0,3.903,0.74,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,0.0,10.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,9.966,0.0,12.228,9.342,0.606,0.0,0.0,0.0,0.0,1717.9,2612.9,2612.9,12.696,12.023,0.0,3.925,3.798,0.0,0.0,0.682,10.395,-12.052,0.0,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.281,-6.81,-1.454,0.0,-0.063,-0.572,0.0,0.0,-0.03,-1.364,12.074,0.0,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.09,6.379,1.193,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,28622.0,1639.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-above-grade.xml,43.92,43.92,29.853,29.853,14.067,0.0,0.0,0.0,0.0,0.0,0.0,0.232,0.0,0.0,4.309,0.834,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,0.0,14.067,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.169,0.0,13.839,9.285,0.712,0.0,0.0,0.0,0.0,1728.0,2759.3,2759.3,16.454,15.104,0.0,4.002,3.883,0.0,0.0,0.771,10.914,-11.281,0.0,0.0,5.922,0.0,-0.341,2.585,0.0,0.0,0.0,2.454,-4.654,-1.434,0.0,-0.081,-0.658,0.0,0.0,-0.013,-1.07,12.56,0.0,0.0,-0.501,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.932,4.211,1.213,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23008.0,4754.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14355.0,311.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-assembly-r.xml,41.151,41.151,29.246,29.246,11.905,0.0,0.0,0.0,0.0,0.0,0.0,0.196,0.0,0.0,3.851,0.723,9.345,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,11.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.145,0.0,11.881,9.285,0.709,0.0,0.0,0.0,0.0,1708.0,2576.7,2576.7,14.628,12.891,0.0,3.996,3.858,0.0,0.0,0.759,10.859,-11.125,0.0,0.0,4.416,0.0,-0.343,2.584,0.0,0.0,0.0,1.807,-4.614,-1.421,0.0,-0.075,-0.626,0.0,0.0,0.009,-1.063,12.715,0.0,0.0,-1.995,0.0,-0.339,-0.565,-2.514,0.0,0.0,1.125,4.251,1.226,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,20536.0,4399.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,14066.0,583.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-wall-insulation.xml,48.832,48.832,28.957,28.957,19.875,0.0,0.0,0.0,0.0,0.0,0.0,0.328,0.0,0.0,3.564,0.654,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,0.0,19.875,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.602,0.0,10.768,9.285,0.639,0.0,0.0,0.0,0.0,1729.6,2434.8,2434.8,16.218,11.573,0.0,3.722,3.619,0.0,0.0,0.633,9.715,-12.345,0.0,0.0,14.27,0.0,-0.047,2.46,0.0,0.0,0.0,2.579,-4.776,-1.481,0.0,0.06,-0.443,0.0,0.0,-0.016,-0.978,11.496,0.0,0.0,-2.737,0.0,-0.045,-0.522,-2.41,0.0,0.0,1.306,4.089,1.166,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23823.0,1626.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,15242.0,151.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement.xml,42.783,42.783,29.739,29.739,13.044,0.0,0.0,0.0,0.0,0.0,0.0,0.215,0.0,0.0,4.237,0.817,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,0.0,13.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.211,0.0,13.525,9.285,0.702,0.0,0.0,0.0,0.0,1723.8,2699.8,2699.8,15.435,14.325,0.0,3.995,3.854,0.0,0.0,0.749,10.808,-11.235,0.0,0.0,5.351,0.0,-0.325,2.58,0.0,0.0,0.0,2.129,-4.634,-1.429,0.0,-0.077,-0.63,0.0,0.0,-0.0,-1.112,12.605,0.0,0.0,-0.661,0.0,-0.32,-0.562,-2.634,0.0,0.0,1.728,4.231,1.218,1354.8,997.6,11399.6,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23054.0,4758.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14362.0,307.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unvented-crawlspace.xml,40.623,40.623,29.832,29.832,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.178,0.0,0.0,4.25,0.823,9.449,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,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,0.0,13.589,9.342,0.708,0.0,0.0,0.0,0.0,1718.2,2606.2,2606.2,14.33,13.656,0.0,3.97,3.827,0.0,0.0,0.771,10.903,-10.751,0.0,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-6.24,-1.387,0.0,-0.196,-0.756,0.0,0.0,-0.002,-1.313,13.089,0.0,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.268,6.344,1.26,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,20308.0,4130.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,14139.0,645.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace.xml,42.569,42.569,29.778,29.778,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.211,0.0,0.0,4.124,0.79,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,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,0.0,12.965,9.342,0.786,0.0,0.0,0.0,0.0,1712.6,2821.5,2821.5,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,10.827,-11.149,0.0,0.0,6.777,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-6.38,-1.421,0.0,-0.068,-0.628,0.0,0.0,0.007,-1.069,12.692,0.0,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.297,6.204,1.226,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23871.0,6874.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15437.0,1726.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-walkout-basement.xml,64.814,64.814,36.328,36.328,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.47,0.0,0.0,4.532,0.884,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,0.0,28.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.677,0.0,14.89,9.233,0.615,0.0,0.0,0.0,0.0,2125.9,3513.1,3513.1,26.787,19.805,0.0,3.523,3.688,0.52,7.364,0.646,11.292,-12.794,0.0,0.0,0.0,10.155,-0.066,6.639,0.0,0.728,0.0,6.073,-8.935,-2.506,0.0,-0.099,-0.515,-0.06,1.48,-0.031,-2.074,12.046,0.0,0.0,0.0,-3.677,-0.061,-1.529,-3.357,-0.16,0.0,3.264,7.844,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.811,34.811,34.811,34.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.314,1.011,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3123.7,3123.7,0.0,15.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.01,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.974,-0.166,0.0,1.956,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.14,42.14,42.14,42.14,0.0,0.0,0.0,0.0,0.0,0.0,9.698,1.721,0.276,0.028,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,0.0,22.526,0.303,0.0,9.233,0.59,0.0,0.0,0.0,0.0,7253.7,1637.3,7253.7,25.274,0.0,0.0,3.492,3.637,0.512,7.484,0.629,10.516,-12.551,0.0,0.0,0.0,8.11,-0.066,4.805,0.0,0.728,0.0,6.281,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.785,45.785,45.785,45.785,0.0,0.0,0.0,0.0,0.0,0.0,9.211,0.901,0.839,0.048,3.329,1.016,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.887,12.582,9.233,0.614,0.0,0.0,145.0,0.0,10081.5,3141.2,10081.5,37.467,15.165,0.0,3.606,3.668,0.515,7.764,0.622,10.449,-12.69,0.0,0.0,0.0,9.071,0.066,4.746,0.0,0.762,0.0,4.62,-8.899,-2.514,0.0,0.016,-0.44,-0.05,2.779,-0.034,-2.016,11.593,0.0,0.0,0.0,-6.34,0.057,-1.185,-3.289,-0.162,0.0,1.966,7.879,1.996,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.899,45.899,45.899,45.899,0.0,0.0,0.0,0.0,0.0,0.0,9.746,0.995,0.266,0.015,3.395,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3150.9,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,45.839,45.839,45.839,45.839,0.0,0.0,0.0,0.0,0.0,0.0,9.671,0.995,0.266,0.015,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.891,0.281,12.909,9.233,0.614,0.0,0.0,0.0,0.0,6936.9,3157.6,6936.9,24.224,15.302,0.0,3.52,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.062,4.804,0.0,0.728,0.0,5.464,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.107,0.587,0.263,0.011,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.959,0.274,13.138,9.233,0.614,0.0,0.0,0.0,0.0,6906.4,2725.7,6906.4,24.215,16.235,0.0,3.478,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.565,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.511,53.511,38.615,38.615,14.896,0.0,0.0,0.0,0.0,0.0,4.615,0.513,0.0,0.055,2.491,0.5,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,11.151,15.725,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2906.6,3384.0,23.34,16.546,0.0,3.248,3.595,0.506,7.501,0.614,10.343,-12.459,0.0,0.0,0.0,8.212,-0.031,5.817,0.0,0.719,0.0,11.526,-8.79,-2.477,0.0,-0.173,-0.482,-0.054,2.746,-0.036,-2.042,11.824,0.0,0.0,0.0,-6.33,-0.027,-1.492,-3.036,-0.17,0.0,5.131,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,3017.5,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.913,56.913,37.463,37.463,19.451,0.0,0.0,0.0,0.0,0.0,3.569,0.361,0.0,0.073,2.515,0.503,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,0.0,0.0,19.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,0.0,28.306,14.518,15.862,9.233,0.615,0.0,0.0,206.0,34.0,3017.5,2718.4,3017.5,23.543,16.546,0.0,3.278,3.606,0.507,7.43,0.617,10.337,-12.556,0.0,0.0,0.0,8.231,-0.023,5.804,0.0,0.719,0.0,11.134,-8.846,-2.484,0.0,-0.15,-0.464,-0.052,2.701,-0.031,-2.024,11.727,0.0,0.0,0.0,-6.262,-0.02,-1.483,-3.027,-0.169,0.0,5.081,7.933,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.609,53.609,38.709,38.709,14.9,0.0,0.0,0.0,0.0,0.0,4.673,0.521,0.0,0.055,2.516,0.503,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.98,11.154,15.893,9.233,0.615,0.0,0.0,2.0,34.0,3384.0,2820.4,3384.0,23.34,16.546,0.0,3.29,3.635,0.512,7.504,0.629,10.508,-12.571,0.0,0.0,0.0,8.296,-0.06,5.886,0.0,0.727,0.0,11.671,-8.919,-2.502,0.0,-0.131,-0.445,-0.049,2.737,-0.022,-1.889,11.712,0.0,0.0,0.0,-6.26,-0.056,-1.429,-3.028,-0.163,0.0,5.196,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.671,53.671,38.877,38.877,14.794,0.0,0.0,0.0,0.0,0.0,4.471,0.494,0.0,0.446,2.524,0.502,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,12.281,16.006,9.233,0.614,0.0,0.0,2.0,31.0,3385.8,2826.5,3385.8,26.771,16.487,0.0,3.234,3.638,0.512,7.507,0.629,10.506,-12.563,0.0,0.0,0.0,8.289,-0.058,4.802,0.0,0.728,0.0,12.998,-8.907,-2.499,0.0,-0.139,-0.454,-0.051,2.706,-0.024,-1.924,11.72,0.0,0.0,0.0,-6.311,-0.054,-1.168,-3.074,-0.165,0.0,5.208,7.871,2.011,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,41.028,41.028,41.028,41.028,0.0,0.0,0.0,0.0,0.0,0.0,7.142,0.772,0.149,0.011,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.528,0.16,14.392,9.233,0.614,0.0,0.0,0.0,0.0,7002.3,2597.4,7002.3,24.569,17.323,0.0,3.38,3.636,0.512,7.505,0.629,10.509,-12.557,0.0,0.0,0.0,8.283,-0.061,4.804,0.0,0.728,0.0,9.209,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,49.605,49.605,42.912,42.912,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,3.206,0.542,15.944,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.693,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.191,0.0,9.35,16.489,0.644,0.0,0.0,0.0,0.0,2614.2,3427.5,3427.5,16.894,14.883,0.0,2.873,2.804,0.392,5.427,0.416,7.943,-12.43,0.0,0.0,0.0,5.595,-0.058,3.509,0.0,0.577,0.0,1.449,-10.184,-2.473,0.0,-0.137,-0.595,-0.07,2.285,-0.064,-2.374,11.853,0.0,0.0,0.0,-7.661,-0.059,-1.288,-5.271,-0.192,0.0,1.904,9.376,2.036,2181.0,1715.2,21571.8,3761.0,0.0,31430.0,27561.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 -base-hvac-autosize.xml,59.984,59.984,36.217,36.217,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,4.449,0.87,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.767,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.324,0.0,14.705,9.233,0.614,0.0,0.0,0.0,2.0,2126.9,3189.8,3189.8,24.296,18.003,0.0,3.508,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.91,-8.907,-2.499,0.0,-0.076,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.065,-0.165,0.0,3.837,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,32235.0,19922.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-coal-only.xml,50.082,50.082,30.66,30.66,0.0,0.0,0.0,0.0,0.0,19.422,0.0,0.243,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,19.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,2060.9,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-elec-only.xml,48.879,48.879,48.879,48.879,0.0,0.0,0.0,0.0,0.0,0.0,18.336,0.126,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,0.0,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6044.7,1637.3,6044.7,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,55.87,55.87,36.159,36.159,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.604,0.0,14.079,9.233,0.614,0.0,0.0,0.0,0.0,2085.8,3478.9,3478.9,16.463,18.096,0.0,3.734,3.632,0.511,7.494,0.628,10.503,-12.551,0.0,0.0,0.0,8.265,-0.064,4.804,0.0,0.728,0.0,0.0,-8.908,-2.499,0.0,-0.049,-0.455,-0.051,2.706,-0.024,-1.914,11.732,0.0,0.0,0.0,-6.314,-0.06,-1.165,-3.064,-0.165,0.0,3.198,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only-pilot.xml,55.062,55.062,30.565,30.565,24.497,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,24.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,2045.4,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,50.077,50.077,30.565,30.565,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.148,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,19.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2045.4,1637.3,2045.4,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,50.082,50.082,30.66,30.66,0.0,19.422,0.0,0.0,0.0,0.0,0.0,0.243,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,19.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,16.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2060.9,1637.3,2060.9,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,19.532,0.0,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,2041.8,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,50.075,50.075,30.543,30.543,0.0,0.0,0.0,19.532,0.0,0.0,0.0,0.126,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,19.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2041.8,1637.3,2041.8,16.463,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,35.905,35.905,35.905,35.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.271,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3432.9,3432.9,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,35.921,35.921,35.921,35.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.287,1.148,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,3440.7,3440.7,0.0,17.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.06,-0.46,-0.051,2.688,-0.03,-1.96,11.853,0.0,0.0,0.0,-6.893,-0.064,-1.188,-2.977,-0.166,0.0,3.122,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,34.281,34.281,34.281,34.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.096,0.698,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2993.9,2993.9,0.0,18.526,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.076,-0.46,-0.051,2.688,-0.03,-1.959,11.853,0.0,0.0,0.0,-6.892,-0.064,-1.188,-2.977,-0.166,0.0,3.511,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,33.588,33.588,33.588,33.588,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.292,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2741.2,2741.2,0.0,18.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.46,-0.051,2.689,-0.03,-1.958,11.853,0.0,0.0,0.0,-6.891,-0.064,-1.188,-2.98,-0.166,0.0,4.411,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.838,47.838,47.838,47.838,0.0,0.0,0.0,0.0,0.0,0.0,9.785,1.737,0.277,0.028,4.388,1.182,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.749,0.305,14.08,9.233,0.614,0.0,0.0,0.0,0.0,7284.9,3479.0,7284.9,25.274,18.096,0.0,3.487,3.634,0.511,7.501,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.338,-8.907,-2.499,0.0,-0.048,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.198,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-crankcase-heater-40w.xml,58.638,58.638,35.807,35.807,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.159,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2105.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dse.xml,59.006,59.006,36.828,36.828,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2105.8,2603.4,2603.4,16.457,11.066,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.464,52.464,41.735,41.735,10.729,0.0,0.0,0.0,0.0,0.0,5.418,0.496,0.0,0.93,3.409,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.729,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.276,11.122,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3619.1,3157.6,3619.1,24.213,15.302,0.0,3.459,3.634,0.511,7.502,0.629,10.508,-12.551,0.0,0.0,0.0,8.277,-0.062,4.804,0.0,0.728,0.0,6.899,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.248,55.248,40.712,40.712,14.536,0.0,0.0,0.0,0.0,0.0,4.081,0.349,0.0,1.391,3.41,1.042,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.179,15.2,12.909,9.233,0.614,0.0,0.0,0.0,0.0,3465.8,3157.6,3465.8,24.211,15.303,0.0,3.421,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,7.832,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.006,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.453,52.453,37.517,37.517,14.937,0.0,0.0,0.0,0.0,0.0,2.953,0.193,0.0,1.043,2.269,0.618,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.937,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.535,15.233,13.139,9.233,0.614,0.0,0.0,0.0,0.0,2779.5,2725.7,2779.5,24.21,16.235,0.0,3.409,3.635,0.511,7.504,0.629,10.509,-12.551,0.0,0.0,0.0,8.28,-0.063,4.804,0.0,0.728,0.0,8.199,-8.907,-2.499,0.0,-0.006,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.24,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.451,52.451,37.865,37.865,14.587,0.0,0.0,0.0,0.0,0.0,2.91,0.245,0.0,1.757,2.315,0.198,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,26.265,15.615,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2778.7,2597.4,2778.7,24.564,17.323,0.0,3.348,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,9.973,-8.908,-2.5,0.0,-0.059,-0.454,-0.051,2.707,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.063,-0.165,0.0,3.534,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.429,47.429,36.169,36.169,11.259,0.0,0.0,0.0,0.0,0.0,2.444,0.093,0.0,0.918,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,19.708,11.614,11.87,9.233,0.614,0.0,0.0,0.0,0.0,2543.3,2208.0,2543.3,19.314,12.832,0.0,3.602,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.222,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-fractions.xml,93.7,93.7,46.566,46.566,47.134,0.0,0.0,0.0,0.0,0.0,0.0,0.614,0.0,0.0,7.871,1.654,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,0.0,47.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,43.997,0.0,28.454,9.146,0.612,0.0,0.0,5.0,50.0,2578.2,5001.5,5001.5,48.977,34.866,0.0,3.19,7.86,1.068,7.883,0.665,21.299,-24.987,0.0,0.0,0.0,8.992,-0.116,11.127,0.0,0.745,0.0,20.208,-10.965,-3.544,0.0,-0.361,-1.011,-0.097,2.685,-0.02,-3.119,23.317,0.0,0.0,0.0,-6.422,-0.104,-2.462,-6.237,-0.16,0.0,10.619,9.391,2.828,1354.8,997.6,11399.5,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,71259.0,33168.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-multipliers.xml,57.997,57.997,35.822,35.822,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.208,0.808,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,0.0,13.664,9.233,0.614,0.0,0.0,0.0,0.0,2113.9,3232.2,3232.2,22.38,17.379,0.0,3.565,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.311,-8.907,-2.499,0.0,-0.029,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.77,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,56.325,56.325,35.58,35.58,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,4.029,0.768,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.419,0.0,12.842,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,2949.4,2949.4,20.291,14.835,0.0,3.612,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.916,-8.907,-2.499,0.0,0.003,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.063,-0.165,0.0,1.926,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,28612.0,4972.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-defaults.xml,55.153,55.153,40.631,40.631,14.522,0.0,0.0,0.0,0.0,0.0,4.468,0.378,0.0,0.0,5.344,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,14.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,18.196,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3050.3,3196.1,3196.1,18.212,11.065,0.0,3.733,3.632,0.511,7.494,0.628,10.501,-12.551,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,1.597,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.058,-1.165,-3.053,-0.165,0.0,-0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,41910.0,24000.0,0.0,6.8,91.76,28212.0,4572.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,58.776,58.776,35.949,35.949,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.377,0.0,13.991,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.2,3299.2,23.051,17.898,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.937,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.109,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,58.197,58.197,35.837,35.837,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.217,0.81,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.954,0.0,13.805,9.233,0.614,0.0,0.0,0.0,0.0,2114.1,3278.7,3278.7,22.467,17.816,0.0,3.553,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.52,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.062,-0.165,0.0,2.968,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34496.0,10856.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-percent.xml,60.017,60.017,36.148,36.148,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.449,0.865,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.359,0.0,14.642,9.233,0.614,0.0,0.0,0.0,0.0,2117.1,3475.8,3475.8,24.276,19.53,0.0,3.507,3.635,0.511,7.502,0.628,10.506,-12.557,0.0,0.0,0.0,8.277,-0.061,4.804,0.0,0.728,0.0,5.951,-8.908,-2.5,0.0,-0.072,-0.454,-0.05,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.31,-0.057,-1.165,-3.065,-0.165,0.0,3.783,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32660.0,9020.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-elec-resistance-only.xml,46.866,46.866,46.866,46.866,0.0,0.0,0.0,0.0,0.0,0.0,16.449,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,5930.0,1637.3,5930.0,16.457,0.0,0.0,3.736,3.635,0.512,7.477,0.629,10.512,-12.551,0.0,0.0,0.0,8.1,-0.067,4.806,0.0,0.729,0.0,0.0,-8.908,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-furnace-gas.xml,55.308,55.308,31.865,31.865,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,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,0.0,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,1859.1,2111.3,24.071,11.074,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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.0,0.876,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.51,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2017.8,2021.1,0.0,14.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.025,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.971,-0.166,0.0,0.912,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only.xml,31.279,31.279,31.279,31.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,1939.3,2021.1,0.0,10.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fireplace-wood-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,0.0,21.882,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,57.264,57.264,30.418,30.418,0.0,0.0,26.846,0.0,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,0.0,26.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only.xml,52.3,52.3,30.418,30.418,0.0,0.0,21.882,0.0,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,0.0,21.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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2021.3,1635.7,2021.3,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-coal-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,0.0,0.0,23.21,0.0,0.603,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,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-central-ac-1-speed.xml,56.954,56.954,56.954,56.954,0.0,0.0,0.0,0.0,0.0,0.0,21.004,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,7929.1,3299.8,7929.1,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-only.xml,52.809,52.809,52.809,52.809,0.0,0.0,0.0,0.0,0.0,0.0,21.789,0.603,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,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,8314.7,1637.3,8314.7,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-2-speed.xml,57.47,57.47,34.639,34.639,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.145,0.676,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,14.392,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3023.6,3023.6,23.056,18.768,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.061,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.515,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,56.814,56.814,33.983,33.983,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,2.863,0.303,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,15.318,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2770.7,2770.7,23.056,18.67,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.107,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.067,-0.165,0.0,4.488,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,38.344,38.344,30.657,30.657,7.687,0.0,0.0,0.0,0.0,0.0,0.0,0.2,0.0,0.0,0.0,0.0,9.181,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.265,0.0,0.0,9.233,0.633,0.0,0.0,0.0,0.0,2071.2,1637.4,2071.2,18.192,0.0,0.0,2.82,2.763,0.387,5.284,0.406,7.819,-12.43,0.0,0.0,0.0,5.319,-0.06,3.456,0.0,0.568,0.0,1.864,-8.807,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-pilot.xml,59.13,59.13,31.021,31.021,28.11,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,28.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only.xml,54.23,54.23,31.021,31.021,23.21,0.0,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-room-ac.xml,59.838,59.838,36.395,36.395,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,5.345,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,23.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2111.3,3196.2,3196.2,24.071,11.066,0.0,3.514,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.753,-8.907,-2.499,0.0,0.046,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.165,-3.053,-0.165,0.0,-0.001,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-oil-only.xml,54.23,54.23,31.021,31.021,0.0,23.21,0.0,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-propane-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,23.21,0.0,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-wood-only.xml,54.23,54.23,31.021,31.021,0.0,0.0,0.0,23.21,0.0,0.0,0.0,0.603,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,23.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,21.957,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2119.2,1637.3,2119.2,24.071,0.0,0.0,3.519,3.636,0.512,7.483,0.629,10.515,-12.551,0.0,0.0,0.0,8.109,-0.066,4.805,0.0,0.728,0.0,5.698,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-x3-dse.xml,59.004,59.004,36.858,36.858,22.146,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,5.08,0.942,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,16.769,0.0,10.926,9.233,0.614,0.0,0.0,0.0,0.0,2109.2,2603.4,2603.4,16.622,11.066,0.0,3.771,3.668,0.516,7.57,0.634,10.606,-12.676,0.0,0.0,0.0,8.346,-0.063,4.852,0.0,0.735,0.0,0.0,-8.996,-2.524,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop.xml,39.493,39.493,39.493,39.493,0.0,0.0,0.0,0.0,0.0,0.0,5.183,0.345,0.0,0.0,2.516,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,0.0,19.464,0.0,12.653,9.233,0.614,0.0,0.0,0.0,0.0,3159.1,2560.4,3159.1,20.595,14.612,0.0,3.609,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,2.97,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.741,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.923,33.923,33.923,33.923,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.672,0.765,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.537,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2625.5,2625.5,0.0,14.688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.012,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.975,-0.166,0.0,1.975,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,39.731,39.731,39.731,39.731,0.0,0.0,0.0,0.0,0.0,0.0,5.266,0.356,0.0,0.0,2.648,1.022,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.513,0.0,12.667,9.233,0.614,0.0,0.0,0.0,0.0,3199.9,2616.1,3199.9,20.759,14.658,0.0,3.608,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.02,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.755,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.567,36.567,36.567,36.567,0.0,0.0,0.0,0.0,0.0,0.0,5.402,0.747,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,0.0,20.297,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3345.9,1637.3,3345.9,22.102,0.0,0.0,3.578,3.636,0.512,7.482,0.629,10.514,-12.551,0.0,0.0,0.0,8.106,-0.066,4.805,0.0,0.728,0.0,3.991,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,37.491,37.491,37.491,37.491,0.0,0.0,0.0,0.0,0.0,0.0,3.075,0.245,0.0,0.0,2.713,1.022,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.352,0.0,13.233,9.233,0.609,0.0,0.0,0.0,0.0,2933.8,2615.3,2933.8,17.319,15.314,0.0,3.756,3.756,0.529,5.693,0.653,10.826,-12.451,0.0,0.0,0.0,1.912,-0.043,4.855,0.0,0.737,0.0,2.067,-8.802,-2.478,0.0,-0.073,-0.537,-0.062,0.79,-0.048,-2.192,11.832,0.0,0.0,0.0,-3.437,-0.037,-1.245,-3.237,-0.178,0.0,1.856,7.971,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.713,39.713,39.713,39.713,0.0,0.0,0.0,0.0,0.0,0.0,5.259,0.355,0.0,0.0,2.637,1.021,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,12.666,9.233,0.614,0.0,0.0,0.0,0.0,3196.9,2610.5,3196.9,20.744,14.652,0.0,3.608,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.016,-8.907,-2.499,0.0,0.013,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.754,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.968,48.968,48.968,48.968,0.0,0.0,0.0,0.0,0.0,0.0,12.408,0.689,0.567,0.018,4.149,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.347,0.585,13.441,9.233,0.614,0.0,0.0,0.0,0.0,7036.9,3402.7,7036.9,24.737,16.387,0.0,3.465,3.634,0.511,7.502,0.629,10.507,-12.551,0.0,0.0,0.0,8.276,-0.063,4.804,0.0,0.728,0.0,6.962,-8.907,-2.499,0.0,-0.021,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.063,-0.165,0.0,2.554,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.851,43.851,43.851,43.851,0.0,0.0,0.0,0.0,0.0,0.0,8.907,0.572,0.523,0.016,2.825,0.567,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.636,0.54,13.765,9.233,0.614,0.0,0.0,0.0,0.0,7011.6,3040.2,7011.6,24.732,17.667,0.0,3.414,3.635,0.511,7.503,0.629,10.509,-12.551,0.0,0.0,0.0,8.279,-0.063,4.804,0.0,0.728,0.0,8.292,-8.907,-2.499,0.0,-0.033,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.063,-0.165,0.0,2.883,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.335,43.335,43.335,43.335,0.0,0.0,0.0,0.0,0.0,0.0,8.802,0.724,0.321,0.017,2.821,0.21,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.751,0.338,14.996,9.233,0.614,0.0,0.0,0.0,0.0,7134.8,2898.1,7134.8,25.053,18.025,0.0,3.333,3.636,0.512,7.506,0.629,10.51,-12.557,0.0,0.0,0.0,8.285,-0.061,4.804,0.0,0.728,0.0,10.468,-8.908,-2.5,0.0,-0.089,-0.454,-0.051,2.708,-0.024,-1.916,11.726,0.0,0.0,0.0,-6.309,-0.057,-1.166,-3.066,-0.165,0.0,4.161,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.758,60.758,36.724,36.724,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,5.226,0.769,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,14.889,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3477.2,3477.2,24.099,18.143,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.085,-0.455,-0.051,2.707,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.067,-0.165,0.0,4.031,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.234,59.234,35.2,35.2,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.828,0.642,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.035,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.318,9.233,0.614,0.0,0.0,0.0,2.0,2103.3,3154.9,3154.9,24.099,18.541,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.273,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.104,-0.455,-0.051,2.707,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.313,-0.059,-1.166,-3.066,-0.165,0.0,4.465,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.589,58.589,34.555,34.555,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.289,0.0,0.0,3.435,0.391,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,0.0,15.998,9.233,0.614,0.0,0.0,0.0,5.0,2103.3,2961.4,2961.4,24.099,17.829,0.0,3.506,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.274,-0.063,4.804,0.0,0.728,0.0,5.99,-8.907,-2.499,0.0,-0.141,-0.454,-0.051,2.708,-0.024,-1.915,11.732,0.0,0.0,0.0,-6.312,-0.059,-1.166,-3.071,-0.165,0.0,5.192,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-only.xml,55.619,55.619,30.886,30.886,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.469,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,24.733,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2097.0,1637.3,2097.0,25.383,0.0,0.0,3.473,3.638,0.512,7.485,0.629,10.515,-12.557,0.0,0.0,0.0,8.114,-0.065,4.805,0.0,0.728,0.0,7.002,-8.908,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.565,41.565,41.565,41.565,0.0,0.0,0.0,0.0,0.0,0.0,6.679,0.372,0.0,0.0,3.12,0.953,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.388,0.0,13.125,9.233,0.614,0.0,0.0,0.0,0.0,3429.4,2765.2,3429.4,21.661,15.649,0.0,3.578,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.804,0.0,0.728,0.0,3.919,-8.907,-2.499,0.0,-0.007,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.315,-0.059,-1.166,-3.061,-0.165,0.0,2.224,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.013,34.013,34.013,34.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,0.16,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2594.9,2594.9,0.0,13.432,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.005,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.976,-0.166,0.0,1.787,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.668,40.668,40.668,40.668,0.0,0.0,0.0,0.0,0.0,0.0,6.804,0.575,0.03,0.002,2.67,0.145,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.032,12.157,9.233,0.614,0.0,0.0,0.0,0.0,4380.1,2336.3,4380.1,19.479,13.36,0.0,3.596,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.27,-0.062,4.804,0.0,0.728,0.0,3.367,-8.907,-2.499,0.0,0.03,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.061,-0.165,0.0,1.253,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,33.372,33.372,33.372,33.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.81,0.076,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2236.5,2236.5,0.0,13.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.01,-0.461,-0.051,2.686,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.974,-0.166,0.0,1.425,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,33.232,33.232,33.232,33.232,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.72,0.026,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.586,9.233,0.663,0.0,0.0,0.0,0.0,2071.1,2125.8,2125.8,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.695,32.695,32.695,32.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.136,0.073,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.507,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2211.4,2211.4,0.0,12.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,0.0,0.0,0.0,0.024,-0.461,-0.051,2.686,-0.03,-1.962,11.853,0.0,0.0,0.0,-6.895,-0.064,-1.188,-2.972,-0.166,0.0,0.933,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.136,36.136,36.136,36.136,0.0,0.0,0.0,0.0,0.0,0.0,5.41,0.299,0.009,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,0.0,19.195,0.009,0.0,9.233,0.59,0.0,0.0,0.0,0.0,3769.3,1637.3,3769.3,19.316,0.0,0.0,3.616,3.636,0.512,7.481,0.629,10.513,-12.551,0.0,0.0,0.0,8.105,-0.066,4.805,0.0,0.728,0.0,2.862,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,38.478,38.478,38.478,38.478,0.0,0.0,0.0,0.0,0.0,0.0,5.453,0.302,0.009,0.0,2.198,0.075,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.01,11.87,9.233,0.614,0.0,0.0,0.0,0.0,3769.3,2208.0,3769.3,19.316,12.832,0.0,3.613,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.889,-8.907,-2.499,0.0,0.039,-0.455,-0.051,2.705,-0.024,-1.918,11.732,0.0,0.0,0.0,-6.317,-0.059,-1.166,-3.059,-0.165,0.0,0.958,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.062,38.062,38.062,38.062,0.0,0.0,0.0,0.0,0.0,0.0,5.097,0.117,0.367,0.0,2.012,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,0.0,16.603,0.367,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4370.0,2151.7,4370.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,44.912,44.912,35.83,35.83,9.082,0.0,0.0,0.0,0.0,0.0,3.036,0.054,0.0,0.274,1.999,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,9.082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.769,7.539,10.828,9.233,0.615,0.0,0.0,1.0,0.0,2913.9,2188.7,2913.9,17.284,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.111,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,24589.0,949.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.653,44.653,35.668,35.668,8.985,0.0,0.0,0.0,0.0,0.0,2.867,0.05,0.0,0.271,2.012,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,8.985,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.998,7.459,10.925,9.233,0.614,0.0,0.0,1.0,0.0,2829.9,2151.7,2829.9,17.596,11.066,0.0,3.713,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.265,-0.062,4.803,0.0,0.728,0.0,0.414,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.935,47.935,35.57,35.57,0.0,12.364,0.0,0.0,0.0,0.0,3.033,0.071,0.0,0.0,1.999,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,12.364,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.658,7.419,10.828,9.233,0.615,0.0,0.0,2.0,0.0,2913.9,2188.7,2913.9,17.014,11.229,0.0,3.732,3.63,0.511,7.491,0.628,10.498,-12.557,0.0,0.0,0.0,8.271,-0.062,5.885,0.0,0.727,0.0,0.0,-8.914,-2.501,0.0,0.052,-0.447,-0.049,2.736,-0.022,-1.888,11.726,0.0,0.0,0.0,-6.268,-0.058,-1.429,-3.007,-0.163,0.0,0.0,7.864,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,37.634,37.634,37.634,37.634,0.0,0.0,0.0,0.0,0.0,0.0,4.894,0.098,0.0,0.0,2.175,0.027,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,3470.0,2167.0,3470.0,16.457,11.066,0.0,3.734,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.804,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.27,66.27,51.856,51.856,7.146,3.594,3.674,0.0,0.0,0.0,13.622,0.852,0.195,0.008,6.187,0.55,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.674,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.602,0.203,18.948,9.233,0.615,0.0,0.0,0.0,3.0,6318.0,4072.0,6318.0,37.085,22.962,0.0,3.419,3.634,0.511,7.5,0.629,10.505,-12.571,0.0,0.0,0.0,8.29,-0.06,5.886,0.0,0.727,0.0,15.199,-8.919,-2.502,0.0,-0.121,-0.445,-0.049,2.738,-0.021,-1.887,11.711,0.0,0.0,0.0,-6.258,-0.056,-1.428,-3.046,-0.163,0.0,8.225,7.859,2.007,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.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,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,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,1280.7,1085.4,1280.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,1354.8,997.6,8540.6,2104.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 -base-hvac-ptac-with-heating-electricity.xml,51.303,51.303,51.303,51.303,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,4.246,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,2792.5,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,55.457,55.457,34.686,34.686,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.246,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,20.771,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,2020.9,2792.5,2792.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac.xml,34.616,34.616,34.616,34.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.13,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2798.2,2798.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp-heating-capacity-17f.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-33percent.xml,32.296,32.296,32.296,32.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.81,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.493,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,2126.3,2126.3,0.0,3.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.01,-0.152,-0.017,0.887,-0.01,-0.647,3.911,0.0,0.0,0.0,-2.275,-0.021,-0.392,-0.979,-0.055,0.0,0.0,2.643,0.672,1354.8,997.6,11399.5,2615.8,0.0,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-ceer.xml,35.694,35.694,35.694,35.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.208,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3174.2,3174.2,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-detailed-setpoints.xml,34.446,34.446,34.446,34.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.967,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,0.0,0.0,7.807,9.233,0.655,0.0,0.0,0.0,0.0,2021.1,3004.3,3004.3,0.0,9.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.133,-0.636,-0.076,2.201,-0.074,-2.493,11.853,0.0,0.0,0.0,-7.631,-0.066,-1.33,-3.345,-0.198,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only.xml,35.685,35.685,35.685,35.685,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.198,0.0,9.21,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.233,0.663,0.0,0.0,0.0,0.0,2021.1,3170.5,3170.5,0.0,10.861,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.031,-0.461,-0.051,2.687,-0.03,-1.961,11.853,0.0,0.0,0.0,-6.894,-0.064,-1.188,-2.967,-0.166,0.0,0.0,8.008,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-heating.xml,52.401,52.401,52.401,52.401,0.0,0.0,0.0,0.0,0.0,0.0,16.616,0.0,0.0,0.0,5.344,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,0.0,16.603,0.0,10.925,9.233,0.614,0.0,0.0,0.0,0.0,5929.5,3196.2,5929.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,41.992,41.992,41.992,41.992,0.0,0.0,0.0,0.0,0.0,0.0,7.402,0.0,0.047,0.0,4.103,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,0.0,16.603,0.047,10.925,9.233,0.614,0.0,0.0,0.0,0.0,4794.5,2769.1,4794.5,16.457,11.065,0.0,3.733,3.632,0.511,7.495,0.628,10.501,-12.551,0.0,0.0,0.0,8.264,-0.062,4.803,0.0,0.728,0.0,0.0,-8.907,-2.499,0.0,0.045,-0.455,-0.051,2.706,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.165,-3.053,-0.165,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-seasons.xml,58.566,58.566,35.906,35.906,22.66,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.269,0.823,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.221,0.0,13.849,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3353.5,3353.5,23.056,17.896,0.0,3.502,3.596,0.506,7.5,0.614,10.349,-12.459,0.0,0.0,0.0,8.201,-0.033,4.75,0.0,0.721,0.0,4.908,-8.79,-2.477,0.0,-0.084,-0.49,-0.055,2.714,-0.038,-2.066,11.824,0.0,0.0,0.0,-6.376,-0.029,-1.216,-3.076,-0.171,0.0,3.083,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.999,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-space-heater-gas-only.xml,46.866,46.866,30.417,30.417,16.448,0.0,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,0.0,16.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,0.0,0.0,16.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,2021.3,1637.3,2021.3,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-oil-only.xml,52.283,52.283,30.484,30.484,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.066,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,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,2032.0,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-wood-pellets-only.xml,52.283,52.283,30.484,30.484,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.066,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,0.0,0.0,0.0,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,17.492,0.0,0.0,9.233,0.591,0.0,0.0,0.0,0.0,2032.0,1635.7,2032.0,17.014,0.0,0.0,3.734,3.633,0.511,7.474,0.628,10.507,-12.557,0.0,0.0,0.0,8.108,-0.065,5.887,0.0,0.727,0.0,0.0,-8.914,-2.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,1354.8,997.6,11399.6,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,56.19,56.19,35.529,35.529,20.661,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,3.959,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,20.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,19.378,0.0,12.717,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,2961.2,2961.2,20.444,15.145,0.0,3.611,3.633,0.511,7.498,0.628,10.504,-12.551,0.0,0.0,0.0,8.269,-0.062,4.804,0.0,0.728,0.0,2.888,-8.907,-2.499,0.0,0.012,-0.455,-0.051,2.705,-0.024,-1.917,11.732,0.0,0.0,0.0,-6.316,-0.059,-1.166,-3.06,-0.165,0.0,1.83,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,28898.0,18434.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized.xml,48.701,48.701,33.139,33.139,15.563,0.0,0.0,0.0,0.0,0.0,0.0,0.251,0.0,0.0,2.078,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,0.0,15.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,14.572,0.0,6.262,9.233,0.631,0.0,0.0,3745.0,2593.0,2089.4,1809.8,2089.4,3.836,2.669,0.0,2.666,2.896,0.405,5.299,0.442,8.258,-12.677,0.0,0.0,0.0,4.647,-0.118,3.588,0.0,0.595,0.0,9.677,-9.014,-2.519,0.0,-0.358,-0.796,-0.1,1.619,-0.113,-2.975,11.606,0.0,0.0,0.0,-8.039,-0.06,-1.414,-4.994,-0.233,0.0,2.646,7.78,1.99,1354.8,997.6,11399.6,2615.9,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-wall-furnace-elec-only.xml,47.201,47.201,47.201,47.201,0.0,0.0,0.0,0.0,0.0,0.0,16.784,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,0.0,9.233,0.59,0.0,0.0,0.0,0.0,6024.4,1637.3,6024.4,16.457,0.0,0.0,3.736,3.635,0.512,7.478,0.629,10.51,-12.551,0.0,0.0,0.0,8.099,-0.066,4.805,0.0,0.728,0.0,0.0,-8.907,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-ceiling-fans.xml,59.148,59.148,36.337,36.337,22.811,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.194,0.804,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,0.0,22.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,21.362,0.0,13.609,9.233,0.612,0.0,0.0,0.0,0.0,2132.3,3336.0,3336.0,23.056,17.693,0.0,3.543,3.634,0.511,7.498,0.628,10.506,-12.551,0.0,0.0,0.0,8.258,-0.063,4.804,0.0,0.728,0.0,4.936,-8.907,-2.499,0.0,-0.084,-0.502,-0.057,2.578,-0.036,-2.059,11.732,0.0,0.0,0.0,-6.512,-0.059,-1.201,-3.228,-0.173,0.0,2.994,8.394,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-holiday.xml,58.979,58.979,36.149,36.149,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2397.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-kwh-per-year.xml,60.469,60.469,39.553,39.553,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.535,0.889,9.163,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.587,0.0,14.996,9.233,0.613,0.0,0.0,0.0,0.0,2416.3,3795.3,3795.3,22.788,18.414,0.0,3.575,3.655,0.514,7.569,0.633,10.56,-12.521,0.0,0.0,0.0,8.359,-0.067,4.811,0.0,0.729,0.0,4.568,-8.891,-4.249,0.0,-0.085,-0.489,-0.055,2.612,-0.033,-2.015,11.745,0.0,0.0,0.0,-6.471,-0.063,-1.192,-3.199,-0.169,0.0,3.277,7.886,3.428,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-mixed.xml,58.958,58.958,36.127,36.127,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2124.1,3304.2,3304.2,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none-ceiling-fans.xml,56.751,56.751,31.143,31.143,25.608,0.0,0.0,0.0,0.0,0.0,0.0,0.422,0.0,0.0,3.874,0.726,9.164,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.983,0.0,12.249,9.233,0.614,0.0,0.0,0.0,0.0,1752.1,3091.0,3091.0,23.431,16.958,0.0,3.499,3.606,0.507,7.413,0.623,10.44,-12.586,0.0,0.0,0.0,8.149,-0.058,4.797,0.0,0.726,0.0,5.471,-8.931,0.0,0.0,-0.025,-0.452,-0.05,2.72,-0.023,-1.909,11.721,0.0,0.0,0.0,-6.27,-0.053,-1.161,-3.026,-0.166,0.0,2.764,8.371,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none.xml,56.382,56.382,30.752,30.752,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,3.979,0.751,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,0.0,25.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.003,0.0,12.623,9.233,0.616,0.0,0.0,0.0,0.0,1752.1,3381.6,3381.6,23.431,17.169,0.0,3.499,3.606,0.507,7.415,0.623,10.439,-12.586,0.0,0.0,0.0,8.164,-0.057,4.797,0.0,0.726,0.0,5.475,-8.931,0.0,0.0,0.014,-0.405,-0.044,2.849,-0.011,-1.767,11.721,0.0,0.0,0.0,-6.075,-0.053,-1.126,-2.867,-0.158,0.0,2.878,7.849,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-location-AMY-2012.xml,67.4,67.4,34.86,34.86,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.529,0.0,0.0,2.921,0.489,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,0.0,32.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.468,0.0,8.514,9.674,0.619,0.0,0.0,0.0,0.0,2146.9,2807.5,2807.5,23.495,14.853,0.0,4.247,4.367,0.62,9.821,0.801,12.983,-13.811,0.0,0.0,0.0,10.957,-0.074,5.178,0.0,0.772,0.0,7.182,-10.166,-2.865,0.0,-0.011,-0.349,-0.043,1.62,-0.049,-2.071,10.078,0.0,0.0,0.0,-7.424,-0.065,-0.892,-2.437,-0.098,0.0,2.078,6.666,1.659,1358.5,1000.6,11587.6,2659.0,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 -base-location-baltimore-md.xml,39.279,39.279,29.909,29.909,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,5.043,1.036,8.66,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,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,0.0,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1686.1,2485.1,2485.1,13.734,13.553,0.0,3.506,3.362,0.0,0.0,0.715,9.254,-8.61,0.0,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-5.903,-1.317,0.0,-0.093,-0.582,0.0,0.0,-0.007,-0.451,11.809,0.0,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,6.68,1.33,1354.8,997.6,11035.9,2719.3,0.0,24000.0,24000.0,0.0,17.24,91.22,18289.0,4484.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,15138.0,1182.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 -base-location-capetown-zaf.xml,27.716,27.716,27.495,27.495,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,3.822,0.912,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.0,0.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.205,0.0,14.417,7.422,0.693,0.0,0.0,0.0,0.0,1761.2,2271.9,2271.9,4.66,11.44,0.0,1.709,1.454,0.0,0.0,0.578,5.136,-6.481,0.0,0.0,2.766,0.0,-0.881,0.766,0.0,0.341,0.0,0.033,-4.538,-0.847,0.0,-0.719,-1.461,0.0,0.0,-0.441,-2.713,17.022,0.0,0.0,-3.937,0.0,-0.88,-0.579,-1.951,-0.382,0.0,0.911,8.046,1.8,1354.8,997.6,10580.5,2607.1,0.0,24000.0,24000.0,0.0,41.0,84.38,13251.0,5424.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13723.0,2066.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 -base-location-dallas-tx.xml,34.354,34.354,32.589,32.589,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,8.768,1.868,6.814,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,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.628,0.0,30.198,6.675,0.573,0.0,0.0,0.0,0.0,2014.5,2771.4,2771.4,9.704,14.238,0.0,1.739,1.617,0.0,0.0,0.364,4.749,-5.048,0.0,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-3.657,-0.759,0.0,0.559,0.0,0.0,0.0,0.189,1.78,16.967,0.0,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.348,9.5,1.888,1354.8,997.6,9989.0,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-location-duluth-mn.xml,70.866,70.866,29.788,29.788,41.078,0.0,0.0,0.0,0.0,0.0,0.0,0.437,0.0,0.0,2.268,0.329,11.622,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,41.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.227,0.0,5.235,11.597,0.832,0.0,0.0,0.0,0.0,1758.5,2415.0,2415.0,26.411,11.158,0.0,7.048,7.051,0.0,0.0,1.588,19.993,-13.264,0.0,0.0,9.955,0.0,-0.321,6.398,0.0,0.0,0.0,7.581,-6.289,-1.929,0.0,-0.435,-0.784,0.0,0.0,-0.1,-1.39,7.886,0.0,0.0,-1.546,0.0,-0.32,-0.518,-1.026,0.0,0.0,0.337,2.577,0.718,1354.8,997.6,12167.9,2889.4,0.0,36000.0,24000.0,0.0,-13.72,81.14,31119.0,6119.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11786.0,292.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 -base-location-helena-mt.xml,78.178,78.178,35.312,35.312,42.866,0.0,0.0,0.0,0.0,0.0,0.0,1.05,0.0,0.0,2.302,0.351,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,0.0,42.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,40.487,0.0,5.875,10.479,0.625,0.0,0.0,0.0,0.0,2225.9,2823.6,2823.6,30.346,14.138,0.0,5.348,5.459,0.773,11.506,1.046,15.949,-15.475,0.0,0.0,0.0,13.881,-0.184,7.806,0.0,1.207,0.0,8.309,-12.196,-3.383,0.0,0.013,-0.249,-0.026,1.306,0.009,-0.94,8.219,0.0,0.0,0.0,-5.983,-0.177,-0.674,-2.354,-0.12,0.0,1.247,4.593,1.127,1354.8,997.6,11851.9,2719.7,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 -base-location-honolulu-hi.xml,36.193,36.193,36.193,36.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.212,3.034,4.816,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,0.0,49.434,4.572,0.55,0.0,0.0,0.0,0.0,2131.5,2154.0,2341.5,0.0,13.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.979,20.462,0.0,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.727,13.134,2.647,1354.8,997.6,8540.5,2104.4,0.0,12000.0,24000.0,0.0,63.32,89.06,3427.0,602.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,13006.0,3.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 -base-location-miami-fl.xml,35.347,35.347,35.347,35.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.44,2.829,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,0.0,0.0,45.948,4.712,0.551,0.0,0.0,0.0,0.0,2104.4,2424.2,2424.2,0.0,13.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,5.178,19.65,0.0,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.673,13.135,2.647,1354.8,997.6,8625.1,2125.3,0.0,12000.0,24000.0,0.0,51.62,90.68,8626.0,801.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,646.0,13291.0,-246.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 -base-location-phoenix-az.xml,38.428,38.428,38.427,38.427,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.024,3.091,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.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,0.0,51.745,4.955,0.556,0.0,0.0,0.0,0.0,2367.8,3385.5,3385.5,0.593,17.627,0.0,0.71,0.522,0.0,0.0,0.205,2.256,-1.868,0.0,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.629,-0.279,0.0,1.784,1.422,0.0,0.0,0.805,5.612,24.136,0.0,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.864,11.511,2.368,1354.8,997.6,8429.2,2077.0,0.0,24000.0,24000.0,0.0,41.36,108.14,13288.0,1067.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1035.0,18562.0,669.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 -base-location-portland-or.xml,37.236,37.236,27.62,27.62,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.04,0.0,0.0,2.833,0.536,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,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,0.0,8.567,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2822.8,2822.8,8.464,13.424,0.0,3.445,3.288,0.0,0.0,0.744,8.892,-8.235,0.0,0.0,6.239,0.0,-0.414,1.469,0.0,0.813,0.0,1.647,-7.536,-1.659,0.0,-0.301,-0.768,0.0,0.0,-0.009,-1.255,10.288,0.0,0.0,-2.905,0.0,-0.411,-0.361,-1.829,-0.252,0.0,0.541,5.048,0.988,1354.8,997.6,11239.5,2769.4,0.0,24000.0,24000.0,0.0,28.58,87.08,17541.0,6250.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,15211.0,2157.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 -base-mechvent-balanced.xml,80.208,80.208,37.793,37.793,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,4.087,0.766,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,0.0,42.415,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.726,0.0,12.839,9.233,0.62,0.0,0.0,0.0,0.0,2216.6,3658.1,3658.1,32.406,20.823,0.0,3.499,3.714,0.523,7.426,0.654,10.811,-12.716,0.0,0.0,0.0,8.121,-0.117,5.505,0.0,15.088,0.0,8.679,-9.187,-2.57,0.0,0.165,-0.244,-0.021,3.022,0.035,-1.203,11.567,0.0,0.0,0.0,-5.928,-0.113,-1.007,-2.519,-3.51,0.0,3.135,7.597,1.939,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-bath-kitchen-fans.xml,60.565,60.565,36.042,36.042,24.524,0.0,0.0,0.0,0.0,0.0,0.0,0.405,0.0,0.0,4.264,0.821,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,0.0,24.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,22.966,0.0,13.806,9.233,0.615,0.0,0.0,0.0,0.0,2186.4,3689.2,3689.2,24.925,19.507,0.0,3.534,3.633,0.511,7.498,0.628,10.497,-12.56,0.0,0.0,0.0,8.287,-0.057,4.318,0.0,2.47,0.0,5.276,-8.912,-2.501,0.0,-0.03,-0.442,-0.049,2.749,-0.021,-1.88,11.723,0.0,0.0,0.0,-6.239,-0.053,-1.041,-2.996,-0.683,0.0,3.093,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,73.539,73.539,37.691,37.691,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.591,0.0,0.0,4.177,0.791,9.168,0.0,0.0,4.51,0.0,0.334,1.688,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,13.271,9.233,0.618,0.0,0.0,0.0,0.0,2171.2,3597.0,3597.0,29.411,20.558,0.0,3.473,3.65,0.514,7.482,0.635,10.584,-12.616,0.0,0.0,0.0,8.306,-0.071,1.506,0.0,13.869,0.0,7.47,-9.006,-2.523,0.0,0.048,-0.357,-0.037,2.94,0.004,-1.582,11.667,0.0,0.0,0.0,-5.941,-0.067,-0.254,-2.714,-3.251,0.0,3.159,7.776,1.987,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-dse.xml,73.651,73.651,38.63,38.63,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.578,0.0,0.0,4.882,0.882,9.168,0.0,0.0,4.51,0.0,0.334,1.844,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,0.0,10.19,9.233,0.618,0.0,0.0,0.0,0.0,2170.2,2697.0,2697.0,21.259,12.591,0.0,3.748,3.646,0.513,7.474,0.634,10.577,-12.604,0.0,0.0,0.0,8.293,-0.074,1.506,0.0,13.743,0.0,0.0,-9.003,-2.522,0.0,0.136,-0.359,-0.037,2.939,0.003,-1.583,11.679,0.0,0.0,0.0,-5.945,-0.07,-0.254,-2.705,-3.22,0.0,0.0,7.779,1.988,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.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.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,0.0,0.0,11.036,9.233,0.688,0.0,0.0,0.0,0.0,2121.4,2181.0,2181.0,0.0,17.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.157,-0.348,-0.035,3.008,-0.001,-1.613,11.853,0.0,0.0,0.0,-6.545,-0.058,-0.256,-2.545,-3.07,0.0,0.632,8.013,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,70.727,70.727,36.346,36.346,34.381,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,4.087,0.77,9.169,0.0,0.0,4.51,0.0,0.334,0.478,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,32.2,0.0,12.913,9.233,0.619,0.0,0.0,0.0,0.0,2162.6,3589.9,3589.9,29.412,20.495,0.0,3.507,3.673,0.517,7.458,0.642,10.669,-12.652,0.0,0.0,0.0,8.239,-0.088,1.924,0.0,12.451,0.0,7.191,-9.082,-2.543,0.0,0.105,-0.303,-0.029,3.006,0.019,-1.399,11.631,0.0,0.0,0.0,-5.882,-0.084,-0.252,-2.582,-3.976,0.0,3.081,7.702,1.966,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-supply.xml,72.881,72.881,36.375,36.375,36.506,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.094,0.771,9.169,0.0,0.0,4.51,0.0,0.334,0.463,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.191,0.0,12.918,9.233,0.619,0.0,0.0,0.0,0.0,2140.7,3722.6,3722.6,29.411,20.512,0.0,3.483,3.663,0.515,7.468,0.639,10.627,-12.634,0.0,0.0,0.0,8.268,-0.079,1.51,0.0,14.428,0.0,7.583,-9.045,-2.533,0.0,0.083,-0.325,-0.032,2.979,0.012,-1.479,11.649,0.0,0.0,0.0,-5.903,-0.075,-0.244,-2.624,-3.849,0.0,3.106,7.738,1.976,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis.xml,74.71,74.71,37.624,37.624,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.612,0.0,0.0,4.125,0.777,9.168,0.0,0.0,4.51,0.0,0.334,1.666,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.087,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.028,9.233,0.619,0.0,0.0,0.0,0.0,2169.4,3588.4,3588.4,29.41,20.482,0.0,3.487,3.701,0.521,7.447,0.651,10.764,-12.662,0.0,0.0,0.0,8.178,-0.117,1.521,0.0,14.075,0.0,8.56,-9.114,-2.552,0.0,0.161,-0.289,-0.027,2.954,0.024,-1.349,11.621,0.0,0.0,0.0,-5.989,-0.113,-0.231,-2.632,-3.007,0.0,2.423,7.668,1.957,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv-atre-asre.xml,65.623,65.623,37.817,37.817,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.807,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.042,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.0,3813.0,25.372,19.167,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.901,0.0,5.917,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv.xml,65.627,65.627,37.817,37.817,27.811,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.297,0.826,9.166,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,0.0,27.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,26.046,0.0,13.884,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3813.1,3813.1,25.374,19.168,0.0,3.506,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.904,0.0,5.918,-8.931,-2.505,0.0,-0.018,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.168,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust-rated-flow-rate.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust.xml,74.427,74.427,36.786,36.786,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,4.062,0.762,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,0.0,37.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.254,0.0,12.77,9.233,0.619,0.0,0.0,0.0,0.0,2195.3,3628.1,3628.1,29.462,20.613,0.0,3.49,3.676,0.517,7.461,0.642,10.668,-12.671,0.0,0.0,0.0,8.245,-0.083,1.464,0.0,15.401,0.0,7.781,-9.087,-2.545,0.0,0.108,-0.299,-0.029,3.01,0.019,-1.399,11.612,0.0,0.0,0.0,-5.874,-0.079,-0.23,-2.573,-4.16,0.0,3.093,7.697,1.965,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv-asre.xml,65.624,65.624,37.82,37.82,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.804,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.2,3814.2,25.371,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.899,0.0,5.917,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.846,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv.xml,65.628,65.628,37.82,37.82,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.459,0.0,0.0,4.299,0.827,9.166,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,0.0,27.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.043,0.0,13.886,9.233,0.616,0.0,0.0,0.0,0.0,2186.2,3814.3,3814.3,25.373,19.169,0.0,3.507,3.63,0.511,7.494,0.628,10.501,-12.573,0.0,0.0,0.0,8.31,-0.059,5.396,0.0,3.902,0.0,5.918,-8.931,-2.505,0.0,-0.017,-0.424,-0.046,2.815,-0.015,-1.812,11.71,0.0,0.0,0.0,-6.133,-0.055,-1.251,-2.914,-0.847,0.0,3.17,7.849,2.004,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-multiple.xml,81.436,81.436,38.268,38.268,43.169,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,4.461,0.674,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.401,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.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,40.432,0.0,11.296,9.233,0.623,0.0,0.0,0.0,19.0,2272.3,3783.6,3783.6,35.927,22.435,0.0,3.171,3.704,0.521,7.466,0.651,10.762,-12.666,0.0,0.0,0.0,8.252,-0.111,3.867,0.0,9.547,0.0,16.605,-9.108,-2.55,0.0,0.068,-0.201,-0.014,3.217,0.045,-1.095,11.617,0.0,0.0,0.0,-5.586,-0.107,-0.605,0.0,-2.127,-8.037,4.612,7.679,1.96,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-supply.xml,73.005,73.005,36.858,36.858,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,4.139,0.781,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,0.0,36.147,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.855,0.0,13.1,9.233,0.619,0.0,0.0,0.0,0.0,2170.1,3893.4,3893.4,29.277,20.595,0.0,3.486,3.662,0.515,7.468,0.639,10.623,-12.634,0.0,0.0,0.0,8.268,-0.078,1.51,0.0,14.153,0.0,7.515,-9.04,-2.532,0.0,0.08,-0.326,-0.032,2.977,0.012,-1.485,11.649,0.0,0.0,0.0,-5.906,-0.074,-0.245,-2.628,-3.691,0.0,3.142,7.743,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-whole-house-fan.xml,57.328,57.328,34.317,34.317,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,2.452,0.381,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.657,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.55,0.0,6.256,9.233,0.623,0.0,0.0,0.0,0.0,2132.6,2967.4,2967.4,23.056,15.045,0.0,3.54,3.632,0.511,7.517,0.628,10.499,-12.551,0.0,0.0,0.0,8.392,-0.056,4.803,0.0,0.728,0.0,4.978,-8.907,-2.499,0.0,0.099,-0.258,-0.022,3.287,0.023,-1.331,11.732,0.0,0.0,0.0,-5.383,-0.052,-0.988,0.0,-0.134,-11.497,1.727,7.88,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-additional-properties.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-none.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-detailed-only.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-mixed.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv.xml,58.78,1.517,35.949,-21.314,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,63.855,44.405,31.508,12.058,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,2.201,0.323,2.182,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.066,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.45,0.0,0.508,32.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,5.223,10.64,0.694,0.0,9.154,0.0,0.0,2454.6,2842.7,2842.7,26.061,14.278,0.0,3.486,3.682,0.517,7.45,1.118,10.738,-12.683,0.0,0.0,0.0,8.236,-0.093,1.533,0.0,15.072,0.0,2.802,-9.292,-2.56,0.0,0.704,-0.084,0.003,3.464,-0.192,-0.826,11.6,0.0,0.0,0.0,-5.195,-0.089,-0.197,0.0,-3.391,-10.662,0.429,8.617,1.949,1610.4,1574.1,10561.7,3722.1,2.898,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-emissions.xml,59.599,32.713,36.768,9.882,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.819,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2180.7,3359.8,3359.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,13.631,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery-scheduled.xml,77.515,69.326,37.684,29.495,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.735,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2229.4,3414.5,3414.5,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,1.707,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators.xml,75.78,67.591,35.949,27.76,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-ground-conductivity.xml,56.46,56.46,35.869,35.869,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.34,0.0,0.0,4.268,0.822,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,20.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.282,0.0,13.841,9.233,0.614,0.0,0.0,0.0,0.0,2129.8,3632.2,3632.2,22.173,17.957,0.0,3.58,3.657,0.515,7.281,0.633,10.563,-12.537,0.0,0.0,0.0,6.657,-0.06,4.809,0.0,0.729,0.0,4.507,-8.893,-2.496,0.0,-0.051,-0.464,-0.052,2.411,-0.027,-1.95,11.746,0.0,0.0,0.0,-6.108,-0.055,-1.176,-3.078,-0.167,0.0,3.095,7.885,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon.xml,146.622,146.622,68.399,68.399,70.228,0.0,2.499,5.496,0.0,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3233.0,5130.6,5130.6,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon2.xml,93.106,93.106,64.849,64.849,20.261,2.499,0.0,0.0,5.496,0.0,0.0,0.288,0.0,0.0,5.29,1.078,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,0.0,17.463,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.352,0.0,18.247,9.233,0.61,0.0,0.0,0.0,0.0,3187.7,4728.1,4728.1,21.975,20.104,0.0,3.621,3.68,0.518,7.681,0.637,10.628,-12.473,0.0,0.0,0.0,8.49,-0.067,4.825,0.0,0.732,0.0,3.877,-13.819,-2.352,0.0,-0.186,-0.569,-0.067,2.419,-0.054,-2.27,11.81,0.0,0.0,0.0,-6.771,-0.064,-1.265,-3.539,-0.18,0.0,3.778,13.215,2.156,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-none.xml,53.568,53.568,24.712,24.712,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.476,0.0,0.0,3.617,0.663,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,0.0,28.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,0.0,11.129,9.233,0.618,0.0,0.0,0.0,0.0,1524.7,2707.1,2707.1,24.289,16.132,0.0,3.465,3.592,0.505,7.378,0.62,10.396,-12.611,0.0,0.0,0.0,8.142,-0.049,4.795,0.0,0.726,0.0,6.082,-3.803,-2.514,0.0,0.072,-0.356,-0.037,3.004,0.001,-1.61,11.673,0.0,0.0,0.0,-5.828,-0.045,-1.078,-2.66,-0.15,0.0,2.614,3.704,1.995,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,26.538,26.538,25.654,25.654,0.884,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.461,0.411,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.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.818,0.0,6.55,9.538,0.586,0.0,0.0,0.0,0.0,1633.8,2100.9,2100.9,3.34,7.455,0.0,-0.011,3.836,0.0,0.0,0.412,4.238,-3.264,0.0,0.0,-0.008,0.0,-0.261,1.311,0.0,0.769,0.0,0.0,-5.413,-0.959,0.0,-0.006,-2.656,0.0,0.0,-0.012,-1.14,4.893,0.0,0.0,-0.003,0.0,-0.252,-0.382,-1.167,-0.257,0.0,0.0,6.563,1.067,1354.8,997.6,11399.6,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-misc-neighbor-shading.xml,61.647,61.647,35.619,35.619,26.028,0.0,0.0,0.0,0.0,0.0,0.0,0.429,0.0,0.0,3.992,0.756,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,0.0,26.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,24.376,0.0,12.71,9.233,0.616,0.0,0.0,0.0,0.0,2122.9,3534.6,3534.6,23.302,17.066,0.0,3.507,3.809,0.561,7.402,0.827,11.046,-10.706,0.0,0.0,0.0,8.048,-0.061,4.794,0.0,0.725,0.0,5.537,-8.929,-2.504,0.0,-0.004,-0.534,-0.07,2.804,-0.081,-2.167,10.654,0.0,0.0,0.0,-6.136,-0.056,-1.138,-2.926,-0.16,0.0,2.847,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-shielding-of-home.xml,58.433,58.433,36.088,36.088,22.345,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.419,0.86,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,22.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,20.926,0.0,14.519,9.233,0.614,0.0,0.0,0.0,0.0,2132.2,3295.3,3295.3,23.037,17.868,0.0,3.547,3.636,0.512,7.503,0.629,10.513,-12.551,0.0,0.0,0.0,8.27,-0.064,4.422,0.0,0.729,0.0,4.848,-8.907,-2.499,0.0,-0.058,-0.467,-0.052,2.669,-0.027,-1.951,11.732,0.0,0.0,0.0,-6.372,-0.061,-1.059,-2.575,-0.167,0.0,3.181,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 -base-misc-usage-multiplier.xml,126.596,126.596,50.773,50.773,68.627,0.0,2.249,4.947,0.0,0.0,0.0,0.349,0.0,0.0,4.571,0.898,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,0.0,21.139,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.796,0.0,15.132,8.31,0.613,0.0,0.0,0.0,0.0,2749.9,4284.4,4284.4,22.757,18.527,0.0,3.566,3.647,0.513,7.543,0.631,10.539,-12.532,0.0,0.0,0.0,8.318,-0.065,4.859,0.0,0.657,0.0,4.608,-10.588,-2.246,0.0,-0.083,-0.487,-0.055,2.615,-0.033,-2.017,11.754,0.0,0.0,0.0,-6.459,-0.061,-1.206,-3.21,-0.152,0.0,3.291,9.604,1.812,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-pv-battery-ah.xml,59.599,32.713,36.768,9.882,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.819,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2180.7,3359.8,3359.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,13.631,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-garage.xml,59.959,33.072,35.489,8.602,24.47,0.0,0.0,0.0,0.0,0.0,0.0,0.404,0.0,0.0,3.005,0.528,9.264,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.886,0.0,0.87,24.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,22.91,0.0,8.736,9.233,0.722,0.0,0.0,0.0,0.0,2188.6,2707.1,2707.1,18.052,10.767,0.0,3.526,3.786,0.502,5.84,0.613,8.595,-6.603,0.0,0.0,0.0,6.558,-0.041,5.37,0.0,0.0,0.0,3.84,-6.765,-2.508,0.0,0.118,-0.267,-0.035,2.443,0.002,-1.643,8.266,0.0,0.0,0.0,-5.629,-0.038,-1.216,-2.074,0.0,0.0,1.283,5.681,2.001,1354.8,997.6,11399.5,2615.8,21.107,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-round-trip-efficiency.xml,60.954,34.067,38.123,11.237,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,2.174,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2306.7,3491.1,3491.1,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,4.377,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-scheduled.xml,60.515,33.628,37.684,10.798,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.735,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2229.4,3414.5,3414.5,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,5.491,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery.xml,59.599,32.713,36.768,9.882,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.819,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2180.7,3359.8,3359.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,13.631,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery-scheduled.xml,77.515,42.439,37.684,2.608,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.735,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2229.4,3414.5,3414.5,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,17.029,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery.xml,76.625,41.55,36.794,1.719,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.845,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2169.8,3349.0,3349.0,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,84.578,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators.xml,75.78,40.705,35.949,0.874,31.331,8.5,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.831,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.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv.xml,58.78,31.894,35.949,9.063,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0-runperiod-1-month.xml,8.8432,8.8432,0.431,0.431,8.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.1388,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.4121,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8746,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.25,0.0,556.25,26.9061,0.0,0.0,0.6026,0.6425,0.0908,1.745,0.1094,1.8341,-1.9879,0.0,0.0,0.0,2.2325,-0.0004,1.0008,0.0,0.0,0.0,1.753,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon.xml,101.58,101.58,51.994,51.994,41.68,0.0,2.609,5.297,0.0,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2605.5,4309.0,4309.0,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon2.xml,80.525,80.525,49.568,49.568,23.052,2.609,0.0,0.0,5.297,0.0,0.0,0.354,0.0,0.0,4.493,0.88,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,0.0,21.458,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,20.095,0.0,15.01,3.62,0.613,0.0,0.0,0.0,0.0,2407.2,4040.8,4040.8,23.009,18.581,0.0,3.568,3.651,0.514,7.558,0.632,10.555,-12.53,0.0,0.0,0.0,8.348,-0.065,4.809,0.0,0.728,0.0,4.681,-10.2,-2.496,0.0,-0.084,-0.488,-0.055,2.62,-0.032,-2.014,11.753,0.0,0.0,0.0,-6.456,-0.062,-1.189,-3.18,-0.169,0.0,3.287,9.247,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1.xml,53.323,53.323,28.369,28.369,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,3.972,0.751,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,0.0,24.954,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,12.794,3.62,0.616,0.0,0.0,0.0,0.0,1659.7,3103.3,3103.3,23.653,17.338,0.0,3.519,3.624,0.51,7.468,0.627,10.484,-12.566,0.0,0.0,0.0,8.25,-0.061,4.801,0.0,0.725,0.0,5.36,-7.189,-2.504,0.0,-0.004,-0.422,-0.046,2.807,-0.015,-1.807,11.717,0.0,0.0,0.0,-6.153,-0.057,-1.131,-2.89,-0.16,0.0,2.921,6.197,2.006,777.8,496.4,4294.1,850.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-5.xml,70.094,49.842,40.044,19.793,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.496,0.0,0.0,2.32,0.351,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.097,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.251,0.0,0.393,30.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.127,0.0,5.642,18.47,0.643,0.0,11.969,0.0,0.0,3173.5,3117.0,3173.5,25.615,14.631,0.0,3.791,3.686,0.519,7.502,0.644,10.678,-12.644,0.0,0.0,0.0,8.352,-0.075,1.526,0.0,14.997,0.0,2.607,-11.189,-2.538,0.0,0.229,-0.157,-0.008,3.413,0.052,-0.998,11.639,0.0,0.0,0.0,-5.233,-0.071,-0.212,0.0,-3.563,-11.335,0.462,10.463,1.972,2592.2,2706.5,21148.1,5662.6,1.841,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-all-10-mins.xml,60.145,60.145,36.193,36.193,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.475,0.867,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.429,0.0,14.536,9.21,0.638,0.0,0.0,0.333,1.0,9422.7,10682.1,10682.1,37.373,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.588,-12.468,0.0,0.0,0.0,8.287,-0.062,5.303,0.0,0.778,0.0,5.215,-8.973,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.944,11.753,0.0,0.0,0.0,-6.294,-0.057,-1.273,-2.963,-0.175,0.0,3.337,8.303,1.999,1354.7,998.0,11489.6,2636.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps-power-outage.xml,33.64,33.64,28.659,28.659,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.082,0.0,0.0,3.199,0.556,7.442,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.666,0.0,9.408,7.426,0.561,0.0,0.0,0.5,0.5,9398.1,10416.5,10416.5,41.812,21.425,0.0,2.585,2.431,0.339,4.203,0.328,6.833,-12.363,0.0,0.0,0.0,3.542,-0.105,3.354,0.0,0.382,0.0,1.039,-6.567,-1.596,0.0,-0.232,-0.587,-0.07,2.391,-0.062,-2.309,11.863,0.0,0.0,0.0,-7.603,-0.059,-1.378,-4.919,-0.21,0.0,2.269,8.448,2.023,1141.2,883.5,9401.7,2157.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps.xml,42.676,42.676,34.392,34.392,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.137,0.0,0.0,3.211,0.559,9.199,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.756,0.0,9.457,9.21,0.671,0.0,0.0,0.0,0.5,9394.7,10419.5,10419.5,31.982,21.427,0.0,2.889,2.782,0.39,5.331,0.415,7.871,-12.359,0.0,0.0,0.0,5.381,-0.059,3.834,0.0,0.578,0.0,1.776,-8.861,-2.486,0.0,-0.236,-0.59,-0.07,2.395,-0.063,-2.32,11.863,0.0,0.0,0.0,-7.535,-0.058,-1.38,-4.931,-0.211,0.0,2.279,8.448,2.023,1354.7,998.0,11490.9,2636.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.565,59.565,36.111,36.111,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.395,0.853,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.961,0.0,14.337,9.148,0.616,0.0,0.0,0.0,0.0,6842.1,7404.6,9102.0,31.405,20.757,0.0,3.544,3.638,0.512,7.506,0.63,10.519,-12.552,0.0,0.0,0.0,8.277,-0.061,5.319,0.0,0.763,0.0,5.051,-8.994,-2.502,0.0,-0.042,-0.45,-0.05,2.712,-0.023,-1.902,11.731,0.0,0.0,0.0,-6.304,-0.057,-1.28,-3.051,-0.188,0.0,3.178,8.359,1.979,1002.6,945.2,11591.4,2659.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,45.04,45.04,30.254,30.254,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.244,0.0,0.0,4.364,0.845,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.786,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.851,0.0,14.217,7.439,0.518,0.0,0.0,17.0,0.0,6232.4,5671.6,6232.4,36.547,19.287,0.0,3.056,3.054,0.428,5.67,0.486,8.776,-12.555,0.0,0.0,0.0,5.115,-0.154,4.362,0.0,0.512,0.0,3.102,-6.687,-1.622,0.0,-0.043,-0.451,-0.05,2.698,-0.023,-1.903,11.732,0.0,0.0,0.0,-6.405,-0.056,-1.265,-3.049,-0.185,0.0,3.154,8.274,2.005,1141.2,883.5,9318.8,2138.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,58.21,58.21,30.845,30.845,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.451,0.0,0.0,4.383,0.85,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.626,0.0,14.296,7.43,0.615,0.0,0.0,0.0,0.0,4455.9,5678.0,5678.0,30.841,19.344,0.0,3.492,3.612,0.508,7.426,0.624,10.45,-12.554,0.0,0.0,0.0,8.116,-0.062,5.303,0.0,0.513,0.0,5.803,-6.305,-1.616,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.913,11.734,0.0,0.0,0.0,-6.319,-0.057,-1.268,-3.06,-0.185,0.0,3.167,8.279,2.006,1141.2,883.5,9304.1,2135.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic.xml,59.498,59.498,36.067,36.067,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.387,0.0,0.0,4.383,0.85,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.94,0.0,14.299,9.229,0.614,0.0,0.0,0.0,0.0,4691.8,5678.2,5678.2,30.718,19.346,0.0,3.54,3.635,0.511,7.502,0.629,10.51,-12.549,0.0,0.0,0.0,8.271,-0.061,5.262,0.0,0.776,0.0,5.05,-8.962,-2.504,0.0,-0.047,-0.455,-0.051,2.705,-0.024,-1.914,11.734,0.0,0.0,0.0,-6.316,-0.057,-1.268,-3.061,-0.185,0.0,3.168,8.279,2.006,1354.7,998.0,11396.5,2615.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-schedules.xml,57.547,57.547,35.338,35.338,22.209,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,3.802,0.729,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,0.0,22.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,0.0,20.418,0.0,11.998,9.233,0.615,0.0,0.0,104.0,52.0,2155.5,3923.8,3923.8,34.947,20.085,0.0,3.501,3.566,0.501,7.495,0.605,10.228,-12.548,0.0,0.0,0.0,8.632,0.006,4.646,0.0,0.726,0.0,4.591,-8.865,-2.497,0.0,-0.061,-0.491,-0.056,2.64,-0.04,-2.094,11.735,0.0,0.0,0.0,-6.625,-0.003,-1.216,-3.364,-0.173,0.0,2.398,7.915,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-setbacks.xml,56.958,56.958,35.488,35.488,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.354,0.0,0.0,3.936,0.756,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,0.0,21.469,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,12.611,9.233,0.616,0.0,0.0,0.0,11.0,2137.5,3597.9,3597.9,25.353,20.652,0.0,3.493,3.55,0.499,7.328,0.602,10.177,-12.584,0.0,0.0,0.0,8.152,-0.021,4.634,0.0,0.723,0.0,4.487,-8.884,-2.501,0.0,-0.044,-0.487,-0.056,2.594,-0.038,-2.086,11.699,0.0,0.0,0.0,-6.609,-0.023,-1.199,-3.313,-0.176,0.0,2.544,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints.xml,41.624,41.624,34.114,34.114,7.51,0.0,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,3.004,0.516,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,0.0,7.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,7.028,0.0,8.762,9.233,0.647,0.0,0.0,0.0,0.0,2102.7,2974.3,2974.3,17.434,15.12,0.0,2.824,2.759,0.386,5.283,0.405,7.806,-12.43,0.0,0.0,0.0,5.375,-0.06,3.451,0.0,0.567,0.0,1.603,-8.808,-2.473,0.0,-0.109,-0.561,-0.065,2.387,-0.055,-2.27,11.853,0.0,0.0,0.0,-7.541,-0.06,-1.254,-5.064,-0.187,0.0,2.04,8.003,2.036,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-available.xml,55.334,55.334,32.478,32.478,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.266,0.59,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.856,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.404,0.0,10.002,8.601,0.582,0.0,0.0,0.0,1.0,2132.4,5699.8,5699.8,23.056,17.983,0.0,3.542,3.633,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.271,-0.062,4.759,0.0,0.794,0.0,4.945,-8.907,-2.499,0.0,-0.028,-0.468,-0.053,2.662,-0.028,-1.959,11.734,0.0,0.0,0.0,-6.367,-0.059,-1.173,-4.743,-0.172,0.0,2.214,6.933,1.701,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-unavailable.xml,55.477,55.477,32.652,32.652,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,3.407,0.625,8.544,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,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,0.0,10.561,8.601,0.58,0.0,0.0,0.0,9.0,2132.4,5736.2,5736.2,23.056,19.609,0.0,3.543,3.634,0.511,7.497,0.628,10.506,-12.551,0.0,0.0,0.0,8.249,-0.063,4.759,0.0,0.794,0.0,4.938,-8.907,-2.499,0.0,-0.149,-0.591,-0.07,2.34,-0.058,-2.333,11.734,0.0,0.0,0.0,-6.852,-0.059,-1.293,-2.67,-0.173,0.0,2.292,6.931,1.701,1241.6,923.2,10501.6,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage.xml,55.51,55.51,32.53,32.53,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,3.338,0.608,8.545,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.521,0.0,10.313,8.601,0.581,0.0,0.0,0.0,4.0,1982.2,5787.0,5787.0,23.09,22.043,0.0,3.54,3.632,0.511,7.493,0.628,10.501,-12.552,0.0,0.0,0.0,8.251,-0.063,4.758,0.0,0.794,0.0,4.968,-8.908,-2.368,0.0,-0.083,-0.523,-0.06,2.52,-0.041,-2.125,11.733,0.0,0.0,0.0,-6.581,-0.059,-1.224,-3.823,-0.172,0.0,2.264,6.931,1.793,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy-year-round.xml,41.944,41.944,7.258,7.258,34.686,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,3.296,0.593,0.577,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.0,0.0,0.0,0.0,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.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,32.49,0.0,10.421,0.0,0.62,0.0,0.0,0.0,0.0,544.2,1873.0,1873.0,25.515,14.549,0.0,3.414,3.581,0.503,7.273,0.619,10.403,-12.687,0.0,0.0,0.0,7.979,-0.059,5.421,0.0,0.0,0.0,7.167,-1.411,0.0,0.0,0.166,-0.266,-0.024,3.216,0.025,-1.319,11.619,0.0,0.0,0.0,-5.547,-0.054,-1.109,0.0,0.0,0.0,2.379,1.428,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy.xml,57.82,57.82,30.633,30.633,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.448,0.0,0.0,4.329,0.837,7.485,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.46,0.0,14.107,7.429,0.614,0.0,0.0,0.0,0.0,2011.6,3322.1,3322.1,23.144,18.001,0.0,3.49,3.609,0.508,7.418,0.623,10.438,-12.556,0.0,0.0,0.0,8.105,-0.063,4.958,0.0,0.55,0.0,5.774,-6.165,-1.548,0.0,-0.046,-0.456,-0.051,2.702,-0.024,-1.92,11.731,0.0,0.0,0.0,-6.322,-0.058,-1.144,-3.068,-0.198,0.0,3.133,7.87,2.14,1122.2,811.7,9376.7,2151.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple.xml,58.953,58.953,35.985,35.985,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.33,0.838,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,0.0,22.968,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.51,0.0,14.111,9.233,0.614,0.0,0.0,0.0,0.0,1991.5,3320.0,3320.0,23.09,17.982,0.0,3.54,3.632,0.511,7.494,0.628,10.501,-12.552,0.0,0.0,0.0,8.262,-0.062,4.803,0.0,0.728,0.0,4.966,-8.908,-2.368,0.0,-0.047,-0.457,-0.051,2.701,-0.025,-1.922,11.731,0.0,0.0,0.0,-6.322,-0.059,-1.166,-3.071,-0.165,0.0,3.133,7.87,2.14,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-calendar-year-custom.xml,58.757,58.757,35.92,35.92,22.837,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.277,0.825,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,0.0,22.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,21.387,0.0,13.898,9.233,0.614,0.0,0.0,0.0,0.0,2119.1,3540.4,3540.4,23.056,17.951,0.0,3.542,3.634,0.511,7.5,0.628,10.505,-12.551,0.0,0.0,0.0,8.276,-0.062,4.804,0.0,0.728,0.0,4.942,-8.907,-2.499,0.0,-0.038,-0.451,-0.05,2.728,-0.023,-1.902,11.732,0.0,0.0,0.0,-6.293,-0.058,-1.16,-3.206,-0.164,0.0,3.076,7.872,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-custom.xml,58.781,58.781,35.949,35.949,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.832,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.382,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.5,0.628,10.506,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-disabled.xml,58.751,58.751,35.933,35.933,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.288,0.828,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.369,0.0,13.937,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3210.4,3210.4,23.056,17.525,0.0,3.543,3.633,0.511,7.502,0.628,10.496,-12.557,0.0,0.0,0.0,8.274,-0.058,4.802,0.0,0.726,0.0,4.937,-8.906,-2.498,0.0,-0.042,-0.454,-0.051,2.707,-0.025,-1.923,11.726,0.0,0.0,0.0,-6.308,-0.054,-1.169,-3.089,-0.162,0.0,3.087,7.872,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-runperiod-1-month.xml,9.4046,9.4046,2.9166,2.9166,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.107,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0742,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2116.04,0.0,2116.04,24.5228,0.0,0.0,0.6214,0.6509,0.092,1.7772,0.1113,1.8564,-1.9858,0.0,0.0,0.0,2.307,0.0011,0.8922,0.0,0.1316,0.0,1.404,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-temperature-capacitance-multiplier.xml,58.67,58.67,35.845,35.845,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.216,0.811,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,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,0.0,13.649,9.233,0.614,0.0,0.0,0.0,0.0,2115.0,3378.9,3378.9,22.997,17.807,0.0,3.61,3.631,0.511,7.497,0.626,10.481,-12.557,0.0,0.0,0.0,8.252,-0.053,4.8,0.0,0.727,0.0,4.933,-8.9,-2.498,0.0,-0.21,-0.452,-0.05,2.711,-0.025,-1.925,11.726,0.0,0.0,0.0,-6.309,-0.05,-1.173,-3.133,-0.163,0.0,2.956,7.879,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,60.156,60.156,36.189,36.189,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.474,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.443,0.0,14.529,9.232,0.617,0.0,0.0,0.333,1.0,9301.9,8465.7,9304.3,37.376,21.865,0.0,3.592,3.658,0.515,7.566,0.64,10.589,-12.468,0.0,0.0,0.0,8.288,-0.062,5.303,0.0,0.778,0.0,5.218,-8.963,-2.51,0.0,-0.166,-0.48,-0.055,2.726,-0.03,-1.943,11.753,0.0,0.0,0.0,-6.293,-0.058,-1.273,-2.962,-0.175,0.0,3.337,8.292,1.999,1354.7,998.0,11410.5,2618.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,60.077,60.077,36.18,36.18,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.394,0.0,0.0,4.472,0.866,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.896,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.377,0.0,14.523,9.229,0.614,0.0,0.0,0.0,0.333,6069.4,7322.2,7322.2,35.164,21.274,0.0,3.592,3.657,0.515,7.564,0.64,10.586,-12.468,0.0,0.0,0.0,8.283,-0.061,5.251,0.0,0.77,0.0,5.207,-8.959,-2.502,0.0,-0.166,-0.48,-0.055,2.724,-0.03,-1.946,11.754,0.0,0.0,0.0,-6.298,-0.056,-1.259,-2.964,-0.185,0.0,3.335,8.282,2.007,1354.7,998.0,11396.5,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins.xml,59.375,59.375,36.061,36.061,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.388,0.846,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,0.0,23.314,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.831,0.0,14.212,9.233,0.614,0.0,0.0,0.0,0.0,3553.5,4753.1,4753.1,23.34,17.923,0.0,3.598,3.658,0.515,7.564,0.64,10.584,-12.479,0.0,0.0,0.0,8.292,-0.058,4.788,0.0,0.734,0.0,5.1,-8.908,-2.499,0.0,-0.16,-0.477,-0.055,2.731,-0.03,-1.942,11.743,0.0,0.0,0.0,-6.282,-0.054,-1.15,-2.96,-0.171,0.0,3.277,7.87,2.01,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-30-mins.xml,59.151,59.151,36.011,36.011,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.382,0.0,0.0,4.35,0.838,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,0.0,23.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.669,0.0,14.087,9.233,0.614,0.0,0.0,0.0,0.0,2138.4,3687.6,3687.6,23.243,17.919,0.0,3.581,3.651,0.514,7.536,0.637,10.567,-12.505,0.0,0.0,0.0,8.282,-0.059,4.79,0.0,0.731,0.0,5.038,-8.908,-2.499,0.0,-0.129,-0.472,-0.054,2.727,-0.029,-1.944,11.742,0.0,0.0,0.0,-6.292,-0.055,-1.155,-3.008,-0.169,0.0,3.188,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base.xml,58.78,58.78,35.949,35.949,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.301,0.831,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.381,0.0,13.993,9.233,0.614,0.0,0.0,0.0,0.0,2115.4,3299.8,3299.8,23.056,17.902,0.0,3.542,3.634,0.511,7.499,0.628,10.505,-12.551,0.0,0.0,0.0,8.272,-0.062,4.804,0.0,0.728,0.0,4.94,-8.907,-2.499,0.0,-0.044,-0.455,-0.051,2.706,-0.024,-1.916,11.732,0.0,0.0,0.0,-6.314,-0.059,-1.166,-3.064,-0.165,0.0,3.112,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -house001.xml,86.453,86.453,46.944,46.944,39.508,0.0,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,15.684,4.394,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,0.0,22.462,0.0,17.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.215,0.0,49.863,10.416,2.681,0.0,0.0,0.0,0.0,1853.4,6417.7,6417.7,37.576,40.427,0.492,1.982,7.189,0.419,0.0,0.959,7.577,-4.942,0.0,0.0,0.438,1.255,-0.262,4.293,0.0,5.152,0.0,3.214,-6.762,-2.935,0.562,1.981,3.785,0.305,0.0,0.258,0.298,11.575,0.0,0.0,0.573,6.821,-0.248,-0.42,-1.413,-0.757,0.0,10.696,11.588,4.446,2104.5,2144.0,14468.8,4385.1,0.0,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,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 -house002.xml,67.263,67.263,39.818,39.818,27.444,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.0,0.0,13.726,3.409,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,0.0,13.958,0.0,13.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.316,0.0,39.308,7.526,2.891,0.0,0.0,0.0,0.0,1554.0,4934.4,4934.4,23.891,28.399,0.0,2.53,5.051,0.0,0.0,0.85,5.996,-4.053,0.0,0.0,0.0,1.759,-0.146,1.573,0.0,3.789,0.0,1.372,-5.071,-2.493,0.0,3.082,2.762,0.0,0.0,0.396,-0.488,8.601,0.0,0.0,0.0,8.468,-0.14,-0.182,-1.052,-0.638,0.0,5.863,8.93,3.888,1610.9,1574.7,9989.4,3520.4,0.0,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,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 -house003.xml,68.642,68.642,40.063,40.063,28.579,0.0,0.0,0.0,0.0,0.0,0.0,0.172,0.0,0.0,12.737,3.543,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,0.0,15.333,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.0,40.757,7.526,2.691,0.0,0.0,0.0,0.0,1632.4,5147.9,5147.9,26.295,31.384,0.648,2.781,4.656,0.0,0.0,0.985,6.674,-3.929,0.0,0.0,0.0,1.074,-0.164,1.988,0.0,3.937,0.0,1.615,-5.293,-2.701,0.794,3.047,2.594,0.0,0.0,0.624,-0.264,9.905,0.0,0.0,0.0,6.53,-0.157,-0.218,-1.094,-0.633,0.0,6.453,9.189,4.174,1610.9,1574.7,9989.3,3520.4,0.0,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,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 -house004.xml,136.271,136.271,75.306,75.306,60.965,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,28.978,9.455,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,0.0,44.816,0.0,16.149,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.241,0.0,107.036,8.985,3.511,0.0,0.0,0.0,101.0,3061.1,7371.4,7371.4,54.694,50.188,0.128,5.535,11.395,0.0,0.0,1.249,14.009,-5.986,0.0,0.0,0.0,3.226,-0.721,4.938,0.0,6.279,0.0,7.107,-7.297,-3.933,0.199,6.756,11.661,0.0,0.0,0.524,5.468,17.456,0.0,0.0,0.0,18.954,-0.708,1.03,0.0,1.86,0.0,21.407,15.06,7.63,1857.7,1859.3,12228.9,3983.9,0.0,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,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 -house005.xml,95.118,95.118,53.277,53.277,41.841,0.0,0.0,0.0,0.0,0.0,0.0,0.299,0.0,0.0,18.27,5.149,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,0.0,26.64,0.0,15.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,21.604,0.0,59.527,8.985,2.731,0.0,0.0,0.0,0.0,2076.0,7519.1,7519.1,45.933,50.952,0.0,3.02,8.096,0.267,0.0,1.336,10.048,-6.655,0.0,0.0,0.37,1.253,-0.336,5.037,0.0,5.077,0.0,4.386,-6.862,-3.637,0.0,2.987,4.342,0.212,0.0,0.297,0.319,15.402,0.0,0.0,0.447,7.536,-0.319,-0.49,-1.768,-0.737,0.0,14.474,11.523,5.518,1857.7,1859.4,12229.0,3983.9,0.0,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,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 -house006.xml,139.365,139.365,31.78,31.78,107.585,0.0,0.0,0.0,0.0,0.0,0.0,1.875,0.0,0.0,2.951,0.34,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,0.0,81.738,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,78.691,0.0,7.8,13.084,3.278,0.0,0.0,0.0,0.0,1987.5,2441.9,2441.9,40.506,14.727,0.0,4.261,22.283,1.991,37.119,1.868,17.963,-9.449,0.0,0.0,0.0,9.284,-0.313,9.523,0.0,4.368,0.0,0.0,-14.567,-6.452,0.0,0.174,-0.793,-0.044,2.801,-0.086,-0.887,4.262,0.0,0.0,0.0,-3.89,-0.313,-0.514,-0.614,-0.075,0.0,0.0,5.649,2.235,1610.9,1574.7,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 -house007.xml,138.83,138.83,33.914,33.914,104.916,0.0,0.0,0.0,0.0,0.0,0.0,1.632,0.0,0.0,2.54,0.396,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,0.0,75.248,0.0,23.282,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,70.851,0.0,5.753,15.632,3.269,0.0,0.0,0.0,0.0,2192.0,2562.1,2562.1,39.678,13.27,0.0,4.719,23.705,4.446,10.133,1.504,19.077,-9.362,0.0,0.0,0.077,11.566,-0.343,6.119,0.0,20.834,0.0,2.867,-17.238,-7.765,0.0,0.197,-0.722,-0.06,0.577,-0.049,-0.553,4.531,0.0,0.0,-0.009,-4.0,-0.339,-0.191,-0.585,-1.888,0.0,0.104,6.303,2.533,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 -house008.xml,183.501,183.501,39.139,39.139,144.362,0.0,0.0,0.0,0.0,0.0,0.0,2.491,0.0,0.0,3.556,0.53,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,0.0,110.924,0.0,26.378,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,104.521,0.0,9.981,18.129,3.214,0.0,0.0,0.0,0.0,2473.2,3287.8,3287.8,54.741,19.298,0.0,7.23,27.419,4.689,24.238,1.181,22.401,-7.862,0.0,0.0,1.235,17.867,-0.356,18.326,0.0,6.386,0.0,7.825,-18.694,-8.197,0.0,0.294,-1.11,-0.063,1.637,-0.086,-1.372,5.318,0.0,0.0,-0.1,-2.732,-0.356,-0.983,-0.682,-0.282,0.0,0.528,7.259,2.809,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 -house009.xml,154.293,154.293,33.983,33.983,120.31,0.0,0.0,0.0,0.0,0.0,0.0,2.035,0.0,0.0,2.375,0.286,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,0.0,90.634,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,85.401,0.0,5.187,15.632,3.276,0.0,0.0,0.0,0.0,2227.1,2605.9,2605.9,44.161,13.902,0.0,5.098,28.389,4.31,13.07,2.257,19.625,-8.244,0.0,0.0,0.266,15.661,-0.329,8.731,0.0,21.443,0.0,0.0,-17.529,-7.88,0.0,0.238,-0.711,-0.038,0.753,-0.078,-0.78,4.49,0.0,0.0,-0.028,-4.065,-0.325,-0.258,-0.521,-1.794,0.0,0.0,5.992,2.391,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 -house010.xml,153.796,153.796,37.549,37.549,116.246,0.0,0.0,0.0,0.0,0.0,0.0,1.86,0.0,0.0,2.896,0.273,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,0.0,82.81,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,78.033,0.0,7.28,18.129,3.214,0.0,0.0,0.0,0.0,2409.0,2810.7,2810.7,45.27,15.353,0.875,4.93,25.457,4.901,9.774,1.256,23.582,-9.227,0.0,0.0,0.906,11.41,-0.365,19.566,0.0,6.402,0.0,4.869,-18.715,-8.186,0.023,0.211,-0.764,-0.099,0.558,-0.073,-1.356,5.066,0.0,0.0,-0.046,-4.161,-0.362,-1.021,-0.677,-0.269,0.0,0.334,7.219,2.8,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 -house011.xml,44.765,44.765,44.765,44.765,0.0,0.0,0.0,0.0,0.0,0.0,7.117,0.659,0.095,0.005,7.918,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,0.0,14.894,0.1,25.699,9.325,1.124,0.0,0.0,0.0,321.0,4986.2,3137.1,4986.2,18.276,15.47,0.0,2.694,5.41,0.0,0.0,1.638,3.552,-3.202,0.0,0.0,1.881,0.0,-0.367,1.846,0.0,5.421,0.0,4.159,-6.046,-2.099,0.0,1.656,1.148,0.0,0.0,0.154,-0.039,5.637,0.0,0.0,0.751,0.0,-0.367,-0.198,-0.181,-1.004,0.0,6.626,8.836,2.806,0.0,1859.4,12951.3,4219.2,0.0,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,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 -house012.xml,35.577,35.577,35.577,35.577,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.245,0.0,0.0,5.546,1.524,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,0.0,10.065,0.0,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.7,2545.5,3031.7,11.058,10.811,0.0,2.364,4.744,0.0,0.0,0.628,2.817,-1.825,0.0,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-4.853,-1.962,0.0,1.714,1.082,0.0,0.0,-0.034,0.218,3.521,0.0,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,6.771,2.416,0.0,1574.7,10579.4,3728.3,0.0,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,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 -house013.xml,30.654,30.654,30.654,30.654,0.0,0.0,0.0,0.0,0.0,0.0,2.849,0.152,0.0,0.0,3.892,1.317,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,0.0,6.052,0.0,15.1,6.85,0.853,0.0,0.0,0.0,0.0,2660.4,2104.4,2660.4,9.749,9.287,0.0,1.636,2.867,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.104,0.0,-0.263,1.522,0.0,1.064,0.0,1.123,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.539,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.466,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,12463.0,3002.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9770.0,1072.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house014.xml,31.565,31.565,31.565,31.565,0.0,0.0,0.0,0.0,0.0,0.0,3.373,0.186,0.004,0.0,4.201,1.421,7.45,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,0.0,7.45,0.004,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2913.6,2141.1,2913.6,10.987,10.108,0.0,1.705,3.7,0.0,0.0,0.584,3.105,-2.489,0.0,0.0,2.217,0.0,-0.229,1.728,0.0,1.119,0.0,1.405,-3.793,-1.637,0.0,1.14,0.558,0.0,0.0,-0.068,0.307,4.732,0.0,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.654,6.076,2.416,1364.1,1290.1,8207.2,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13627.0,3068.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,10994.0,1065.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 -house015.xml,30.654,30.654,30.654,30.654,0.0,0.0,0.0,0.0,0.0,0.0,2.849,0.152,0.0,0.0,3.892,1.317,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,0.0,6.052,0.0,15.1,6.85,0.853,0.0,0.0,0.0,0.0,2660.4,2104.4,2660.4,9.749,9.287,0.0,1.636,2.867,0.0,0.0,0.655,2.789,-2.258,0.0,0.0,2.104,0.0,-0.263,1.522,0.0,1.064,0.0,1.123,-3.692,-1.523,0.0,1.081,0.381,0.0,0.0,-0.092,-0.113,4.123,0.0,0.0,0.539,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.466,6.348,2.443,1364.1,1290.1,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,12463.0,3002.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9770.0,1072.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house016.xml,61.263,61.263,39.85,39.85,0.0,0.0,21.413,0.0,0.0,0.0,7.562,0.538,0.161,0.004,3.068,1.038,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.225,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.35,0.164,12.001,10.478,0.0,0.0,0.0,1.0,16.0,7459.2,3559.3,7459.2,42.956,19.008,0.0,4.428,10.851,0.619,5.712,0.298,7.395,-8.024,0.0,0.0,0.0,6.777,-0.02,5.735,0.0,3.86,0.0,0.0,-8.634,-4.768,0.0,-0.362,-0.889,-0.023,2.899,-0.047,-0.596,12.366,0.0,0.0,0.0,-8.869,-0.022,-1.375,-1.189,-1.027,0.0,0.0,7.78,3.838,1759.0,1745.5,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 -house017.xml,91.685,91.685,28.091,28.091,63.594,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,4.55,0.77,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.496,0.0,18.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,0.0,10.484,11.141,3.414,0.0,0.0,150.0,107.0,1729.1,3519.3,3519.3,60.332,19.17,0.0,5.444,14.676,0.654,10.694,0.363,7.196,-9.464,0.0,0.0,0.708,4.38,0.007,19.813,0.0,1.221,0.0,0.0,-11.229,-2.985,0.0,-0.167,-1.038,-0.024,4.609,-0.061,-0.924,7.861,0.0,0.0,-0.001,-4.842,0.008,-2.802,-0.738,-0.261,0.0,0.0,7.223,1.685,1778.7,1768.3,13969.3,4663.9,0.0,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 -house018.xml,36.164,36.164,36.164,36.164,0.0,0.0,0.0,0.0,0.0,0.0,4.574,0.201,0.0,0.0,2.662,0.818,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.537,0.0,9.763,7.32,0.552,0.0,0.0,0.0,0.0,4683.5,2698.6,4683.5,19.912,11.028,0.0,4.58,4.639,0.0,0.0,0.276,3.57,-3.663,0.0,0.0,2.183,0.0,-0.02,2.621,0.0,2.082,0.0,1.803,-7.049,-2.593,0.0,-0.546,-0.833,0.0,0.0,-0.097,-1.162,4.529,0.0,0.0,-0.033,0.0,-0.015,-0.781,-0.65,-0.759,0.0,1.3,6.872,2.168,1341.9,1264.5,9054.6,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,18202.0,4811.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,11169.0,851.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2619.0,1108.0,711.0,800.0 -house019.xml,129.831,129.831,51.94,51.94,77.891,0.0,0.0,0.0,0.0,0.0,0.0,1.121,0.0,0.0,11.257,3.783,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.116,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.065,0.0,44.56,7.894,1.826,0.0,0.0,193.0,278.0,2783.0,6497.7,6497.7,84.656,46.058,0.0,11.387,44.784,0.651,5.039,1.921,15.907,-14.351,0.0,0.0,0.0,5.955,-0.028,8.879,0.0,1.865,0.0,0.0,-10.266,-5.184,0.0,2.944,9.997,0.147,2.86,0.267,2.073,17.699,0.0,0.0,0.0,-4.291,-0.015,-0.167,-0.16,0.019,0.0,0.0,8.128,3.739,1341.9,1264.5,7836.1,3009.8,0.0,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 -house020.xml,116.979,116.979,56.877,56.877,0.0,0.0,60.102,0.0,0.0,0.0,0.0,0.812,0.0,0.0,13.245,2.923,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,37.965,0.0,18.907,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.971,0.0,34.513,10.477,4.221,0.0,0.0,0.0,0.0,2702.3,6618.4,6618.4,31.034,32.534,0.91,11.02,10.576,1.133,9.807,0.632,14.612,-15.405,0.0,0.0,0.0,7.524,-0.036,15.231,0.0,0.836,0.0,0.0,-15.218,-7.01,0.24,0.116,0.176,0.053,6.39,0.012,-1.763,21.501,0.0,0.0,0.0,-6.709,-0.026,-2.71,-1.675,-0.199,0.0,0.0,13.532,5.74,1759.0,1745.5,13595.6,4567.5,0.0,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 -house021.xml,156.416,156.416,48.605,48.605,107.811,0.0,0.0,0.0,0.0,0.0,0.0,1.986,0.0,0.0,8.488,1.582,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.77,0.0,19.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,18.993,10.989,3.814,0.0,0.0,0.0,0.0,2796.0,4771.0,4771.0,81.115,23.848,0.0,8.272,27.058,2.421,9.201,0.859,21.246,-20.507,0.0,0.0,1.083,9.438,-0.315,26.613,0.0,2.489,0.0,6.042,-14.659,-6.853,0.0,0.008,-0.864,0.005,2.201,-0.093,-1.709,15.643,0.0,0.0,0.044,-6.095,-0.292,-2.436,-0.871,-0.39,0.0,1.322,8.889,3.787,1759.0,1745.5,13752.0,4620.1,0.0,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 -house022.xml,137.455,137.455,48.887,48.887,0.0,88.568,0.0,0.0,0.0,0.0,0.0,2.202,0.0,0.0,8.883,0.897,12.469,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,88.568,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.7,0.0,19.681,10.989,1.479,0.0,0.0,184.0,126.0,2989.0,5375.4,5375.4,90.645,27.632,3.698,3.767,20.674,0.0,0.0,1.489,16.104,-13.284,0.0,0.0,14.666,0.0,-0.29,37.7,0.0,1.154,0.0,0.0,-9.532,-4.275,1.095,0.153,0.52,0.0,0.0,-0.127,-0.988,12.096,0.0,0.0,1.925,0.0,-0.281,-2.743,-0.646,-0.074,0.0,0.0,6.187,2.415,1759.0,1745.5,13751.5,4619.9,0.0,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 -house023.xml,137.688,137.688,62.964,62.964,0.0,74.724,0.0,0.0,0.0,0.0,0.0,1.882,0.0,0.0,5.73,0.817,19.996,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,74.724,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.385,0.0,16.623,17.1,2.769,0.0,0.0,0.0,0.0,4238.5,4426.9,4638.9,62.437,20.735,0.0,10.219,21.511,1.202,16.481,0.851,9.7,-7.977,0.0,0.0,0.0,6.192,-0.031,23.714,0.0,1.639,0.0,0.0,-15.568,-5.906,0.0,-0.208,-1.058,-0.016,5.935,-0.115,-0.813,9.405,0.0,0.0,0.0,-6.026,-0.008,-2.695,-0.771,-0.316,0.0,0.0,10.088,3.314,2176.1,2226.5,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 -house024.xml,129.149,129.149,44.06,44.06,0.0,85.088,0.0,0.0,0.0,0.0,0.0,2.116,0.0,0.0,5.377,0.691,16.753,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.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,70.148,0.0,16.019,14.653,2.088,0.0,0.0,0.0,0.0,2750.0,3528.4,3589.1,72.006,17.579,0.0,7.189,30.115,0.0,0.0,0.682,6.989,-7.991,0.0,0.0,5.204,0.0,-0.109,25.401,0.0,1.837,0.0,11.712,-8.633,-2.537,0.0,0.564,1.147,0.0,0.0,-0.042,-0.072,6.345,0.0,0.0,0.503,0.0,-0.102,-1.48,-0.34,-0.197,0.0,2.856,5.531,1.379,2176.1,2226.5,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,60193.0,12383.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,22068.0,1589.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7066.0,2630.0,3636.0,800.0 -house025.xml,104.434,104.434,69.708,69.708,34.726,0.0,0.0,0.0,0.0,0.0,6.349,1.043,0.0,0.0,18.613,3.316,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.49,0.0,48.443,8.321,3.83,0.0,0.0,0.0,0.0,4274.2,6965.5,6965.5,36.267,33.057,0.0,3.371,17.511,0.0,0.0,2.159,7.106,-5.668,0.0,0.0,6.847,0.0,-1.312,13.682,0.0,0.408,0.0,4.862,-8.549,-4.002,0.0,1.07,5.585,0.0,0.0,0.425,2.39,12.915,0.0,0.0,5.571,0.0,-1.31,-0.782,-0.167,-0.007,0.0,6.198,11.564,5.262,1341.9,1264.5,3496.9,1343.1,0.0,158000.0,81000.0,33000.0,24.62,91.58,54301.0,20009.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,32309.0,8863.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 -house026.xml,57.112,57.112,24.857,24.857,32.255,0.0,0.0,0.0,0.0,0.0,0.0,0.046,0.0,0.0,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,0.0,18.109,0.0,14.145,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.875,0.0,0.0,8.607,2.081,0.0,0.0,0.0,0.0,1554.0,1299.3,1554.0,17.341,0.0,0.0,1.761,6.8,0.231,0.0,0.197,4.832,-2.877,0.0,0.0,7.079,0.0,-0.056,2.488,0.0,3.126,0.0,0.0,-6.705,-3.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,1294.8,1282.2,8578.8,3023.3,0.0,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 -house027.xml,72.753,72.753,31.736,31.736,41.016,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,7.874,1.017,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,0.0,20.065,0.0,17.882,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.901,0.0,23.04,8.564,5.232,0.0,0.0,0.0,0.0,1580.0,3622.8,3622.8,24.052,22.72,0.716,1.776,7.887,0.452,0.0,0.591,5.247,-4.028,0.0,0.0,0.376,3.336,-0.14,1.745,0.0,10.425,0.0,2.046,-8.79,-2.845,0.489,1.124,0.653,0.056,0.0,-0.113,-0.286,5.628,0.0,0.0,0.105,3.836,-0.14,-0.365,-0.966,-3.474,0.0,2.595,10.728,3.102,1610.9,1574.7,10579.5,3728.4,0.0,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 -house028.xml,67.831,67.831,29.68,29.68,38.15,0.0,0.0,0.0,0.0,0.0,0.0,0.259,0.0,0.0,7.107,1.515,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,0.0,13.643,0.0,18.121,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.812,0.0,22.735,10.226,3.62,0.0,0.0,0.0,0.0,1517.3,3323.9,3323.9,20.023,21.223,0.769,1.663,7.049,0.35,0.0,0.432,5.505,-3.79,0.0,0.0,0.236,2.464,-0.05,4.039,0.0,4.464,0.0,1.543,-9.08,-2.901,0.607,1.232,-0.581,0.098,0.0,0.066,-0.712,6.39,0.0,0.0,0.069,1.838,-0.051,-1.081,-1.198,-1.645,0.0,2.913,11.527,3.237,1857.7,1859.4,12951.6,4219.3,0.0,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 -house029.xml,77.542,77.542,29.955,29.955,47.588,0.0,0.0,0.0,0.0,0.0,0.0,0.638,0.0,0.0,6.112,0.907,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,0.0,31.923,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,31.59,0.0,13.619,9.614,0.0,0.0,0.0,0.0,0.0,1604.8,3001.5,3001.5,28.438,13.96,0.0,3.365,14.698,0.393,0.0,0.308,6.694,-6.461,0.0,0.0,6.873,0.0,-0.085,7.292,0.0,7.305,0.0,3.141,-8.377,-3.711,0.0,1.12,-0.861,0.009,0.0,0.053,0.372,5.722,0.0,0.0,-0.43,0.0,-0.08,-0.809,-1.069,-1.537,0.0,1.218,7.168,2.832,1610.9,1574.7,11033.0,3888.2,0.0,77000.0,36000.0,0.0,17.24,91.22,29334.0,2271.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,16288.0,-143.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 -house030.xml,57.883,57.883,17.189,17.189,0.0,0.0,40.694,0.0,0.0,0.0,0.0,0.054,0.0,0.0,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,0.0,22.377,0.0,13.28,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.883,0.0,0.0,7.715,2.199,0.0,0.0,0.0,0.0,1133.7,975.2,1133.7,15.992,0.0,0.0,1.68,10.216,0.489,1.112,1.049,5.343,-4.368,0.0,0.0,0.0,3.578,-0.04,2.742,0.0,5.694,0.0,0.0,-7.809,-2.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,1066.0,992.8,6763.9,2581.0,0.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 -house031.xml,233.21,233.21,50.579,50.579,182.631,0.0,0.0,0.0,0.0,0.0,0.0,3.084,0.0,0.0,13.164,3.639,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.141,0.0,29.093,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,0.0,40.819,17.932,5.233,0.0,0.0,48.0,120.0,2973.4,7607.9,7846.0,125.322,49.726,0.0,14.461,42.003,1.049,6.667,1.392,19.471,-16.936,0.0,0.0,1.902,6.061,-0.824,56.848,0.0,0.653,0.0,9.698,-17.067,-6.486,0.0,2.186,4.979,0.171,2.818,0.11,0.918,17.661,0.0,0.0,0.264,-3.654,-0.792,-2.006,-0.402,-0.012,0.0,3.155,11.107,3.875,2593.2,2707.5,18307.9,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 -house032.xml,101.06,101.06,15.541,15.541,85.519,0.0,0.0,0.0,0.0,0.0,0.0,1.5,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.315,0.0,16.228,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.463,0.0,0.0,8.002,4.922,0.0,0.0,152.0,0.0,1347.4,804.3,1347.4,50.382,0.0,0.0,10.424,8.774,1.925,20.463,1.413,8.064,-9.472,0.0,0.0,0.0,4.537,0.02,14.979,0.0,0.625,0.0,0.0,-8.946,-3.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,1341.9,1264.5,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 -house033.xml,106.693,106.693,14.691,14.691,0.0,92.003,0.0,0.0,0.0,0.0,0.0,0.313,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.321,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.529,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.3,771.3,1018.3,48.307,0.0,0.0,19.127,14.566,0.0,0.0,1.0,10.821,-7.637,0.0,0.0,14.661,0.0,-0.349,18.578,0.0,0.793,0.0,0.0,-4.996,-3.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,0.0,924.8,0.0,3905.6,1188.1,0.0,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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 -house034.xml,152.384,152.384,43.212,43.212,0.0,0.0,109.172,0.0,0.0,0.0,0.0,0.081,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,87.86,0.0,21.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,0.0,11.573,5.395,0.0,0.0,0.0,0.0,2949.7,2213.7,2949.7,85.981,0.0,0.0,8.91,27.062,0.0,2.877,1.905,25.855,-26.642,0.0,0.0,10.822,2.701,0.075,34.836,0.0,0.572,0.0,0.0,-16.175,-10.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,1759.0,1745.5,10287.1,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 -house035.xml,63.429,63.429,17.521,17.521,45.908,0.0,0.0,0.0,0.0,0.0,0.0,0.807,0.0,0.0,1.744,0.119,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.445,0.0,9.627,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.643,0.0,2.679,3.92,3.822,0.0,0.0,102.0,0.0,1326.0,1900.3,1900.3,39.068,9.678,0.367,6.151,10.867,0.0,0.0,0.538,5.865,-7.44,0.0,0.0,7.725,0.0,0.004,13.612,0.0,0.491,0.0,0.0,-7.87,-3.466,0.06,-0.58,-1.592,0.0,0.0,-0.083,-1.22,7.322,0.0,0.0,-4.441,0.0,0.009,-2.74,-0.729,-0.128,0.0,0.0,4.96,1.972,924.8,783.5,4210.1,1280.7,0.0,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 -house036.xml,82.22,82.22,26.079,26.079,56.141,0.0,0.0,0.0,0.0,0.0,0.0,0.962,0.0,0.0,5.969,1.052,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.674,0.0,17.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,31.789,0.0,15.021,8.219,5.835,0.0,0.0,102.0,126.0,1461.6,3232.0,3232.0,31.764,17.336,5.546,2.268,3.995,0.0,0.0,1.83,6.574,-7.755,0.0,0.0,21.201,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-6.425,-3.429,1.566,0.12,-0.033,0.0,0.0,-0.225,-0.582,6.698,0.0,0.0,2.233,0.0,-0.0,-0.75,-0.419,-0.061,0.0,0.0,4.354,2.02,1341.9,1264.5,6447.0,2476.3,0.0,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 -house037.xml,87.861,87.861,21.779,21.779,0.0,66.082,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,49.925,0.0,16.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,37.034,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1457.0,1117.9,1457.0,29.538,0.0,0.0,16.718,11.333,0.0,0.0,1.563,7.277,-10.49,0.0,0.0,6.525,0.0,-0.309,14.697,0.0,0.461,0.0,0.0,-6.818,-3.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,1341.9,1264.5,8324.2,3197.3,0.0,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 -house038.xml,125.259,125.259,51.453,51.453,73.806,0.0,0.0,0.0,0.0,0.0,0.0,0.919,0.0,0.0,13.907,2.878,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,49.777,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.0,31.79,14.715,4.6,0.0,0.0,0.0,233.0,2428.2,5597.8,5656.5,48.196,27.442,0.0,3.656,14.889,0.651,4.461,0.809,12.07,-10.519,0.0,0.0,1.803,2.342,-0.041,22.432,0.0,0.593,0.0,0.0,-10.084,-3.849,0.0,0.833,2.542,0.138,2.222,0.014,1.269,13.321,0.0,0.0,0.365,-0.609,-0.03,-0.623,-0.151,0.003,0.0,0.0,8.691,3.059,2176.1,2226.5,14642.0,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 -house039.xml,98.754,98.754,24.025,24.025,74.729,0.0,0.0,0.0,0.0,0.0,0.0,0.143,0.0,0.0,0.0,0.0,5.136,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.042,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.162,0.0,0.0,14.272,1.125,0.0,0.0,0.0,0.0,1709.2,1468.5,1709.2,49.769,0.0,0.0,14.278,5.417,0.0,0.0,2.519,15.645,-13.75,0.0,0.0,13.817,0.0,-0.039,13.263,0.0,0.558,0.0,0.0,-4.135,-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,2176.1,2226.5,17536.3,5211.3,0.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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 -house040.xml,101.093,101.093,23.51,23.51,77.583,0.0,0.0,0.0,0.0,0.0,0.0,1.294,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.239,0.0,17.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.75,0.0,0.0,8.002,5.497,0.0,0.0,0.0,0.0,1751.1,1153.8,1751.1,62.245,0.0,11.278,5.623,22.309,0.0,4.331,2.096,12.49,-12.701,0.0,0.0,2.044,3.404,-0.081,19.729,0.0,0.612,0.0,0.0,-10.075,-4.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 -house041.xml,259.077,259.077,47.133,47.133,211.944,0.0,0.0,0.0,0.0,0.0,0.0,4.164,0.0,0.0,2.576,0.254,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,0.0,185.392,0.0,26.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,174.689,0.0,4.652,15.632,5.039,0.0,0.0,105.0,0.0,3249.4,4561.5,4561.5,77.749,23.467,0.0,11.26,44.834,3.482,34.914,3.052,41.616,-22.892,0.0,0.0,4.341,17.423,-0.477,64.05,0.0,2.763,0.0,0.0,-20.286,-10.995,0.0,0.097,-2.224,-0.127,1.602,-0.212,-4.015,11.033,0.0,0.0,-0.321,-5.328,-0.475,-3.481,-1.022,-0.258,0.0,0.0,6.561,2.948,1857.7,1859.4,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 -house042.xml,229.67,229.67,40.068,40.068,189.602,0.0,0.0,0.0,0.0,0.0,0.0,3.871,0.0,0.0,1.81,0.074,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,0.0,165.165,0.0,24.437,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.395,0.0,2.999,15.632,3.226,0.0,0.0,0.0,0.0,2758.3,3100.3,3100.3,88.214,19.624,0.0,9.205,40.053,4.031,43.891,2.672,34.445,-21.633,0.0,0.0,2.453,14.538,-0.385,56.223,0.0,1.75,0.0,0.0,-19.152,-7.587,0.0,0.2,-1.588,-0.07,2.68,-0.16,-3.134,7.067,0.0,0.0,-0.272,-5.113,-0.382,-2.85,-0.642,-0.145,0.0,0.0,5.557,1.952,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 -house043.xml,158.13,158.13,30.051,30.051,128.078,0.0,0.0,0.0,0.0,0.0,0.0,2.456,0.0,0.0,2.028,0.119,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,0.0,108.178,0.0,19.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,103.04,0.0,3.036,13.084,2.207,0.0,0.0,0.0,0.0,1988.8,2798.1,2798.1,54.664,13.818,0.0,3.172,23.263,2.301,33.889,5.621,23.662,-11.489,0.0,0.0,0.55,9.952,-0.267,28.928,0.0,1.576,0.0,0.0,-14.359,-5.16,0.0,0.032,-0.925,-0.1,1.55,-0.379,-2.383,5.793,0.0,0.0,-0.07,-3.676,-0.267,-1.616,-0.538,-0.147,0.0,0.0,4.463,1.402,1610.9,1574.7,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 -house044.xml,225.894,225.894,43.51,43.51,182.384,0.0,0.0,0.0,0.0,0.0,0.0,4.68,0.0,0.0,2.094,0.198,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,0.0,159.817,0.0,22.567,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.487,0.0,3.747,13.084,4.452,0.0,0.0,0.0,0.0,3093.4,3553.3,3553.3,80.982,18.914,4.373,6.905,36.478,9.231,19.305,2.751,19.057,-13.33,0.0,0.0,12.909,15.111,-0.46,61.886,0.0,1.435,0.0,0.0,-18.031,-10.257,0.237,0.441,-1.46,-0.13,1.17,-0.123,-1.231,6.794,0.0,0.0,-1.164,-4.927,-0.458,-2.728,-0.484,-0.102,0.0,0.0,5.295,2.697,1610.9,1574.7,12168.1,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 -house045.xml,152.693,152.693,35.232,35.232,117.461,0.0,0.0,0.0,0.0,0.0,0.0,2.782,0.0,0.0,2.392,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,0.0,95.008,0.0,22.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,88.27,0.0,4.026,13.084,4.363,0.0,0.0,0.0,0.0,2317.8,3011.2,3011.2,47.289,12.909,3.57,3.077,15.169,2.298,32.784,1.143,19.974,-13.617,1.045,-0.407,0.086,12.672,-0.187,20.635,0.0,10.931,0.0,0.0,-14.663,-7.028,-0.017,0.001,-1.114,-0.131,0.881,-0.09,-2.086,7.133,-0.068,0.396,-0.013,-4.082,-0.186,-1.184,-0.915,-1.259,0.0,0.0,4.825,2.036,1610.9,1574.7,12168.1,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 -house046.xml,25.037,25.037,25.037,25.037,0.0,0.0,0.0,0.0,0.0,0.0,5.364,0.446,0.267,0.009,3.738,1.038,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,0.0,13.922,0.276,12.84,4.305,0.617,0.0,0.0,0.0,0.0,3842.0,2404.7,3842.0,16.167,13.004,0.0,2.525,3.83,0.0,0.0,0.327,2.446,-1.799,0.0,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.764,-3.583,-0.484,0.0,1.275,2.524,0.0,0.0,0.024,0.354,2.747,0.0,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.814,4.589,0.545,596.8,442.2,5543.5,2208.6,0.0,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,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 -house047.xml,20.762,20.762,14.475,14.475,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.596,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,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,0.0,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.4,968.8,968.8,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.729,-0.554,0.0,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.101,0.032,0.0,0.0,-0.093,0.798,0.0,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.276,0.409,251.7,442.2,5772.6,1524.2,0.0,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,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 -house048.xml,91.642,91.642,39.796,39.796,51.846,0.0,0.0,0.0,0.0,0.0,0.0,0.333,0.0,0.0,12.899,3.824,0.0,0.0,0.0,3.691,0.085,0.498,3.017,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,0.0,35.87,0.0,12.637,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.021,0.0,51.358,7.253,2.688,0.0,0.0,0.0,0.0,1535.9,5475.4,5475.4,42.021,33.069,1.024,2.643,12.009,0.0,0.0,0.815,4.922,-2.545,0.0,0.0,0.058,2.032,-0.525,6.797,0.0,4.194,0.0,6.419,-7.415,-1.512,1.323,1.018,9.256,0.0,0.0,0.549,2.757,4.297,0.0,0.0,0.072,10.121,-0.513,0.526,-0.449,1.931,0.0,6.917,11.576,2.179,130.3,817.7,11617.6,3495.1,0.0,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,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 -house049.xml,32.038,32.038,28.541,28.541,3.497,0.0,0.0,0.0,0.0,0.0,5.888,0.036,0.0,0.0,5.819,0.147,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.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.239,0.0,33.85,4.262,1.306,0.0,0.0,0.0,90.0,4432.3,2181.9,4432.3,12.361,17.634,0.0,1.38,4.471,0.0,0.0,0.0,3.895,-7.574,0.0,0.0,0.0,1.446,-0.075,2.582,0.0,1.809,0.0,0.0,-2.437,-0.44,0.0,1.489,6.503,0.0,0.0,0.0,3.26,15.042,0.0,0.0,0.0,2.984,-0.076,-0.307,-3.541,0.516,0.0,0.0,7.53,1.034,728.6,567.4,7487.2,928.5,0.0,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,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 -house050.xml,51.837,51.837,21.855,21.855,29.983,0.0,0.0,0.0,0.0,0.0,0.0,0.275,0.0,0.0,1.904,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,0.0,16.067,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.694,0.0,5.132,8.572,0.0,0.0,0.0,0.0,0.0,1156.7,2604.3,2604.3,11.114,15.388,0.0,4.133,6.508,0.0,0.0,2.031,5.644,-4.221,0.0,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.921,-10.283,-1.232,0.0,-0.288,-0.312,0.0,0.0,-0.391,-0.567,4.041,0.0,0.0,-0.956,0.0,-0.123,-0.557,-1.219,-0.76,0.0,0.568,5.253,0.551,1689.0,437.0,10674.9,2994.2,0.0,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,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 +base-enclosure-windows-physical-properties.xml,66.141,66.141,36.191,36.191,29.95,0.0,0.0,0.0,0.0,0.0,0.0,0.494,0.0,0.0,4.406,0.849,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,0.0,29.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.05,0.0,14.278,9.233,0.616,0.0,0.0,0.0,0.0,2150.9,3923.5,3923.5,27.771,20.924,0.0,3.492,3.633,0.511,7.504,0.63,19.595,-16.819,0.0,0.0,0.0,8.427,-0.074,4.829,0.0,0.732,0.0,6.378,-8.965,-2.513,0.0,0.012,-0.392,-0.042,2.826,-0.007,-4.96,14.292,0.0,0.0,0.0,-6.171,-0.068,-1.083,-2.85,-0.155,0.0,3.307,7.815,1.997,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,58.273,58.273,36.108,36.108,22.165,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.439,0.864,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,22.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,20.757,0.0,14.576,9.233,0.613,0.0,0.0,0.0,0.0,2114.8,3422.4,3422.4,23.037,19.123,0.0,3.558,3.645,0.513,7.515,0.631,10.105,-12.683,0.0,0.0,0.0,8.252,-0.071,4.812,0.0,0.73,0.0,4.811,-8.905,-2.499,0.0,-0.075,-0.483,-0.055,2.621,-0.031,-1.316,12.141,0.0,0.0,0.0,-6.498,-0.067,-1.189,-3.219,-0.168,0.0,3.226,7.872,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,57.964,57.964,33.592,33.592,24.372,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,2.368,0.375,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,0.0,24.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.824,0.0,6.179,9.233,0.622,0.0,0.0,0.0,0.0,2114.8,2567.5,2567.5,23.08,11.445,0.0,3.574,3.682,0.517,7.568,0.638,10.631,-11.787,0.0,0.0,0.0,8.559,-0.043,4.871,0.0,0.74,0.0,5.22,-9.143,-2.56,0.0,0.353,-0.11,-0.002,3.553,0.056,-3.589,2.911,0.0,0.0,0.0,-4.593,-0.039,-0.913,-2.173,-0.118,0.0,1.429,7.643,1.95,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-storms.xml,59.303,59.303,35.493,35.493,23.811,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,3.919,0.74,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,0.0,23.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,22.299,0.0,12.428,9.233,0.616,0.0,0.0,0.0,0.0,2131.9,3204.9,3204.9,22.497,17.14,0.0,3.514,3.609,0.508,7.424,0.622,8.599,-9.444,0.0,0.0,0.0,8.041,-0.059,4.795,0.0,0.726,0.0,5.094,-8.925,-2.504,0.0,0.015,-0.411,-0.044,2.82,-0.014,-0.74,8.684,0.0,0.0,0.0,-6.06,-0.055,-1.143,-2.918,-0.16,0.0,2.774,7.854,2.006,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-ambient.xml,47.78,47.78,30.453,30.453,17.326,0.0,0.0,0.0,0.0,0.0,0.0,0.286,0.0,0.0,4.75,0.933,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,0.0,17.326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.232,0.0,15.684,9.342,0.606,0.0,0.0,0.0,3.0,1740.5,3629.1,3629.1,20.511,21.293,0.0,3.811,3.817,0.0,0.0,0.769,10.526,-11.315,0.0,0.0,10.182,0.0,-0.48,2.065,0.0,0.786,0.0,3.899,-6.747,-1.425,0.0,-0.11,-0.589,0.0,0.0,0.029,-0.179,12.654,0.0,0.0,-3.786,0.0,-0.474,-0.413,-2.426,-0.161,0.0,3.693,6.443,1.222,1354.8,997.6,11399.5,2808.9,0.0,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,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-basement-garage.xml,52.552,52.552,32.802,32.802,19.75,0.0,0.0,0.0,0.0,0.0,0.0,0.326,0.0,0.0,4.437,0.862,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,0.0,19.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,18.495,0.0,14.518,9.365,0.613,0.0,0.0,0.0,0.0,1892.4,3385.9,3385.9,21.421,19.685,0.0,3.661,4.739,0.514,5.516,0.701,9.837,-12.609,0.0,0.0,0.835,6.146,-0.039,3.253,0.0,0.735,0.0,4.441,-7.701,-1.886,0.0,-0.041,-0.654,-0.057,1.918,-0.044,-1.196,11.679,0.0,0.0,-0.129,-4.618,-0.036,-0.79,-3.022,-0.167,0.0,3.383,6.955,1.52,1354.8,997.6,11399.6,2849.6,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 +base-foundation-belly-wing-no-skirt.xml,49.514,49.514,29.509,29.509,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.95,0.745,9.354,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,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.735,0.0,12.238,9.342,0.607,0.0,0.0,0.0,0.0,1753.5,3254.0,3254.0,24.174,17.955,0.0,3.986,5.373,0.0,0.0,0.756,8.719,-11.134,0.0,0.0,10.274,0.0,-0.363,2.069,0.0,0.793,0.0,6.171,-6.863,-1.453,0.0,0.291,-0.621,0.0,0.0,0.037,0.041,9.561,0.0,0.0,-3.473,0.0,-0.356,-0.4,-2.199,-0.147,0.0,2.254,6.327,1.194,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-belly-wing-skirt.xml,49.142,49.142,29.517,29.517,19.625,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.961,0.748,9.354,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,19.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,18.379,0.0,12.292,9.342,0.606,0.0,0.0,0.0,0.0,1752.3,3222.4,3222.4,24.022,17.914,0.0,3.992,5.382,0.0,0.0,0.757,8.731,-11.127,0.0,0.0,9.978,0.0,-0.357,2.07,0.0,0.794,0.0,6.058,-6.857,-1.453,0.0,0.285,-0.63,0.0,0.0,0.036,0.021,9.567,0.0,0.0,-3.392,0.0,-0.351,-0.402,-2.214,-0.147,0.0,2.26,6.333,1.194,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-complex.xml,77.647,77.647,37.382,37.382,40.265,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,5.221,1.053,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.709,0.0,17.802,9.233,0.617,0.0,0.0,0.0,4.0,2171.2,3631.6,3631.6,33.403,21.552,0.0,3.434,3.659,0.521,19.568,0.65,10.139,-12.837,0.0,0.0,0.0,8.752,-0.11,6.1,0.0,0.739,0.0,8.282,-9.113,-2.555,0.0,0.032,-0.371,-0.046,3.703,-0.007,-1.012,11.574,0.0,0.0,0.0,-4.535,-0.102,-1.239,-3.288,-0.139,0.0,3.795,7.668,1.954,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,55.674,55.674,36.621,36.621,19.053,0.0,0.0,0.0,0.0,0.0,0.0,0.314,0.0,0.0,4.893,0.976,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.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.84,0.0,16.503,9.233,0.611,0.0,0.0,0.0,0.0,2130.3,3597.9,3597.9,22.293,20.652,0.0,3.636,3.705,0.522,8.235,0.644,10.266,-12.652,0.0,0.0,0.0,4.795,-0.064,4.847,0.0,0.735,0.0,4.212,-8.886,-2.496,0.0,-0.114,-0.508,-0.058,2.158,-0.038,-1.547,11.761,0.0,0.0,0.0,-3.714,-0.059,-1.195,-3.314,-0.17,0.0,3.563,7.889,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,57.227,57.227,36.288,36.288,20.939,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.6,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,0.0,20.939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.608,0.0,15.242,9.233,0.613,0.0,0.0,0.0,0.0,2130.7,3568.4,3568.4,22.766,19.967,0.0,3.584,3.664,0.516,7.833,0.635,10.15,-12.669,0.0,0.0,0.0,6.873,-0.061,4.818,0.0,0.731,0.0,4.579,-8.892,-2.496,0.0,-0.082,-0.484,-0.055,2.495,-0.032,-1.471,11.744,0.0,0.0,0.0,-5.347,-0.057,-1.183,-3.183,-0.168,0.0,3.345,7.885,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,57.138,57.138,35.618,35.618,21.52,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.056,0.768,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,21.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,20.152,0.0,12.894,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,3401.3,3401.3,23.23,18.938,0.0,3.584,3.669,0.516,6.117,0.636,10.166,-12.69,0.0,0.0,0.0,8.986,-0.065,4.831,0.0,0.734,0.0,4.709,-8.905,-2.5,0.0,-0.004,-0.423,-0.046,1.074,-0.017,-1.295,11.724,0.0,0.0,0.0,-6.519,-0.06,-1.144,-2.923,-0.162,0.0,2.994,7.872,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,47.042,47.042,29.047,29.047,17.995,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.591,0.668,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,0.0,17.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,16.839,0.0,11.071,9.342,0.614,0.0,0.0,0.0,0.0,1731.9,2585.4,2585.4,15.896,11.724,0.0,3.711,3.607,0.507,5.113,0.622,9.795,-12.66,0.0,0.0,0.0,10.002,-0.052,3.489,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.025,-0.473,-0.053,1.786,-0.029,-1.225,11.693,0.0,0.0,0.0,-3.856,-0.048,-0.841,-2.99,-0.164,0.0,0.0,6.308,1.18,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 +base-foundation-multiple.xml,42.539,42.539,29.864,29.864,12.675,0.0,0.0,0.0,0.0,0.0,0.0,0.209,0.0,0.0,4.35,0.845,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,0.0,12.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.866,0.0,13.999,9.285,0.692,0.0,0.0,0.0,0.0,1720.7,2780.3,2780.3,15.193,15.265,0.0,3.982,3.869,0.0,0.0,0.78,10.582,-11.178,0.0,0.0,5.3,0.0,-0.384,2.584,0.0,0.0,0.0,1.981,-4.611,-1.419,0.0,-0.151,-0.726,0.0,0.0,-0.016,-0.487,12.79,0.0,0.0,-0.707,0.0,-0.379,-0.574,-2.646,0.0,0.0,1.701,4.255,1.228,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23047.0,4758.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14361.0,307.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-slab.xml,39.763,39.763,29.436,29.436,10.327,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.0,0.0,4.015,0.768,9.352,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,10.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,0.0,12.694,9.342,0.605,0.0,0.0,0.0,0.0,1717.5,2696.4,2696.4,12.685,12.992,0.0,3.935,3.804,0.0,0.0,0.691,10.07,-12.046,0.0,0.0,0.0,7.998,-0.153,2.011,0.0,0.776,0.0,0.272,-6.772,-1.445,0.0,-0.089,-0.602,0.0,0.0,-0.03,-0.815,12.21,0.0,0.0,0.0,-1.718,-0.15,-0.471,-2.884,-0.174,0.0,0.093,6.417,1.202,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,28622.0,1639.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-above-grade.xml,43.717,43.717,30.004,30.004,13.713,0.0,0.0,0.0,0.0,0.0,0.0,0.226,0.0,0.0,4.434,0.864,9.349,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,13.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,0.0,12.839,0.0,14.368,9.285,0.712,0.0,0.0,0.0,0.0,1725.1,3043.2,3043.2,16.454,16.26,0.0,3.988,3.869,0.0,0.0,0.779,10.632,-11.228,0.0,0.0,5.918,0.0,-0.399,2.588,0.0,0.0,0.0,2.398,-4.628,-1.424,0.0,-0.127,-0.706,0.0,0.0,-0.012,-0.481,12.741,0.0,0.0,-0.61,0.0,-0.393,-0.561,-2.633,0.0,0.0,1.985,4.237,1.223,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23008.0,4754.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14355.0,311.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-assembly-r.xml,40.99,40.99,29.405,29.405,11.586,0.0,0.0,0.0,0.0,0.0,0.0,0.191,0.0,0.0,3.982,0.756,9.345,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,11.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,10.847,0.0,12.432,9.285,0.709,0.0,0.0,0.0,0.0,1718.7,2640.2,2640.2,14.628,13.984,0.0,3.978,3.838,0.0,0.0,0.769,10.591,-11.043,0.0,0.0,4.401,0.0,-0.41,2.586,0.0,0.0,0.0,1.763,-4.584,-1.409,0.0,-0.128,-0.681,0.0,0.0,0.011,-0.46,12.925,0.0,0.0,-2.09,0.0,-0.405,-0.578,-2.55,0.0,0.0,1.164,4.282,1.238,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,20536.0,4399.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,14066.0,583.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-wall-insulation.xml,48.569,48.569,29.07,29.07,19.499,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,3.661,0.677,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,0.0,19.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.25,0.0,11.154,9.285,0.639,0.0,0.0,0.0,0.0,1723.8,2485.8,2485.8,16.214,12.583,0.0,3.736,3.634,0.0,0.0,0.636,9.317,-12.475,0.0,0.0,14.441,0.0,-0.046,2.465,0.0,0.0,0.0,2.531,-4.772,-1.48,0.0,0.048,-0.455,0.0,0.0,-0.019,-0.477,11.493,0.0,0.0,-2.826,0.0,-0.044,-0.526,-2.445,0.0,0.0,1.351,4.093,1.167,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23823.0,1626.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,15242.0,151.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement.xml,42.601,42.601,29.898,29.898,12.703,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.369,0.849,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,0.0,12.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,11.892,0.0,14.086,9.285,0.702,0.0,0.0,0.0,0.0,1723.5,2802.5,2802.5,15.434,15.473,0.0,3.973,3.833,0.0,0.0,0.761,10.531,-11.149,0.0,0.0,5.333,0.0,-0.393,2.583,0.0,0.0,0.0,2.078,-4.605,-1.417,0.0,-0.132,-0.685,0.0,0.0,0.003,-0.514,12.819,0.0,0.0,-0.759,0.0,-0.388,-0.574,-2.669,0.0,0.0,1.782,4.261,1.23,1354.8,997.6,11399.6,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23054.0,4758.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14362.0,307.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unvented-crawlspace.xml,40.496,40.496,29.996,29.996,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.173,0.0,0.0,4.386,0.857,9.449,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,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.831,0.0,14.17,9.342,0.708,0.0,0.0,0.0,0.0,1717.9,2726.8,2726.8,14.329,14.741,0.0,3.957,3.815,0.0,0.0,0.781,10.653,-10.714,0.0,0.0,4.565,0.0,-0.459,2.05,0.0,0.775,0.0,1.604,-6.202,-1.377,0.0,-0.243,-0.803,0.0,0.0,-0.001,-0.69,13.255,0.0,0.0,-2.098,0.0,-0.455,-0.49,-2.745,-0.197,0.0,1.307,6.382,1.27,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,20308.0,4130.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,14139.0,645.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace.xml,42.397,42.397,29.938,29.938,12.459,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,4.256,0.822,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,0.0,12.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,11.665,0.0,13.523,9.342,0.786,0.0,0.0,0.0,0.0,1712.4,2927.3,2927.3,15.482,15.244,0.0,3.962,3.816,0.0,0.0,0.766,10.546,-11.029,0.0,0.0,6.731,0.0,-0.434,1.848,0.0,0.782,0.0,2.013,-6.322,-1.406,0.0,-0.128,-0.69,0.0,0.0,0.01,-0.475,12.939,0.0,0.0,-3.039,0.0,-0.429,-0.394,-2.616,-0.18,0.0,1.344,6.262,1.241,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23871.0,6874.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15437.0,1726.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-walkout-basement.xml,64.358,64.358,36.457,36.457,27.901,0.0,0.0,0.0,0.0,0.0,0.0,0.46,0.0,0.0,4.644,0.911,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,0.0,27.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,26.129,0.0,15.354,9.233,0.615,0.0,0.0,0.0,0.0,2148.5,3597.9,3597.9,26.77,20.659,0.0,3.536,3.698,0.521,7.384,0.648,10.878,-12.928,0.0,0.0,0.0,10.191,-0.062,6.643,0.0,0.729,0.0,5.965,-8.927,-2.504,0.0,-0.111,-0.524,-0.061,1.459,-0.034,-1.565,12.043,0.0,0.0,0.0,-3.716,-0.057,-1.541,-3.4,-0.161,0.0,3.356,7.852,2.006,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.952,34.952,34.952,34.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.424,1.045,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3597.0,3597.0,0.0,16.136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.023,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.018,-0.167,0.0,2.021,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.761,45.761,45.761,45.761,0.0,0.0,0.0,0.0,0.0,0.0,9.474,0.974,0.263,0.015,3.519,1.076,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,0.0,21.372,0.279,13.341,9.233,0.614,0.0,0.0,0.0,0.0,6970.2,3292.4,6970.2,24.209,16.403,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.811,0.0,0.729,0.0,5.363,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,41.9,41.9,41.9,41.9,0.0,0.0,0.0,0.0,0.0,0.0,9.499,1.685,0.273,0.027,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,0.0,21.992,0.3,0.0,9.233,0.588,0.0,0.0,0.0,0.0,7243.6,1637.3,7243.6,25.258,0.0,0.0,3.507,3.648,0.513,7.514,0.632,10.114,-12.683,0.0,0.0,0.0,8.15,-0.069,4.814,0.0,0.73,0.0,6.163,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.715,45.715,45.715,45.715,0.0,0.0,0.0,0.0,0.0,0.0,9.026,0.882,0.831,0.048,3.438,1.05,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,0.0,21.651,0.879,13.012,9.233,0.613,0.0,0.0,144.0,0.0,10080.9,3275.9,10080.9,37.465,16.264,0.0,3.616,3.675,0.516,7.775,0.624,10.04,-12.798,0.0,0.0,0.0,9.087,0.059,4.752,0.0,0.762,0.0,4.543,-8.886,-2.51,0.0,0.005,-0.452,-0.051,2.749,-0.035,-1.506,11.615,0.0,0.0,0.0,-6.396,0.05,-1.192,-3.33,-0.163,0.0,2.031,7.891,2.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.819,45.819,45.819,45.819,0.0,0.0,0.0,0.0,0.0,0.0,9.547,0.974,0.263,0.015,3.504,1.076,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,0.0,21.372,0.279,13.341,9.233,0.614,0.0,0.0,0.0,0.0,6970.2,3285.2,6970.2,24.209,16.403,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.811,0.0,0.729,0.0,5.363,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,45.761,45.761,45.761,45.761,0.0,0.0,0.0,0.0,0.0,0.0,9.474,0.974,0.263,0.015,3.519,1.076,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,0.0,21.372,0.279,13.341,9.233,0.614,0.0,0.0,0.0,0.0,6970.2,3292.4,6970.2,24.209,16.403,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.811,0.0,0.729,0.0,5.363,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,41.611,41.611,41.611,41.611,0.0,0.0,0.0,0.0,0.0,0.0,7.345,0.575,0.261,0.011,2.342,0.638,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,0.0,22.422,0.272,13.577,9.233,0.614,0.0,0.0,0.0,0.0,6943.7,2815.9,6943.7,24.2,17.379,0.0,3.493,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.811,0.0,0.729,0.0,6.446,-8.906,-2.499,0.0,-0.018,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.104,-0.166,0.0,2.311,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.571,53.571,38.757,38.757,14.813,0.0,0.0,0.0,0.0,0.0,4.679,0.5,0.0,0.055,2.557,0.527,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.09,11.086,16.123,9.233,0.614,0.0,0.0,2.0,59.0,3437.0,2870.0,3437.0,23.339,16.597,0.0,3.265,3.605,0.508,7.53,0.616,9.94,-12.591,0.0,0.0,0.0,8.253,-0.031,5.825,0.0,0.721,0.0,11.335,-8.79,-2.477,0.0,-0.187,-0.494,-0.056,2.719,-0.038,-1.537,11.822,0.0,0.0,0.0,-6.372,-0.028,-1.502,-3.083,-0.171,0.0,5.193,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.902,56.902,37.574,37.574,19.328,0.0,0.0,0.0,0.0,0.0,3.595,0.35,0.0,0.073,2.586,0.53,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,27.708,14.421,16.294,9.233,0.615,0.0,0.0,204.0,59.0,3072.2,2739.8,3072.2,23.54,16.598,0.0,3.292,3.615,0.508,7.457,0.619,9.934,-12.681,0.0,0.0,0.0,8.271,-0.026,5.811,0.0,0.721,0.0,10.95,-8.844,-2.484,0.0,-0.165,-0.476,-0.054,2.677,-0.033,-1.514,11.732,0.0,0.0,0.0,-6.301,-0.022,-1.492,-3.071,-0.17,0.0,5.159,7.934,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.902,56.902,37.574,37.574,19.328,0.0,0.0,0.0,0.0,0.0,3.595,0.35,0.0,0.073,2.586,0.53,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,27.708,14.421,16.294,9.233,0.615,0.0,0.0,204.0,59.0,3072.2,2739.8,3072.2,23.54,16.598,0.0,3.292,3.615,0.508,7.457,0.619,9.934,-12.681,0.0,0.0,0.0,8.271,-0.026,5.811,0.0,0.721,0.0,10.95,-8.844,-2.484,0.0,-0.165,-0.476,-0.054,2.677,-0.033,-1.514,11.732,0.0,0.0,0.0,-6.301,-0.022,-1.492,-3.071,-0.17,0.0,5.159,7.934,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.677,53.677,38.859,38.859,14.818,0.0,0.0,0.0,0.0,0.0,4.739,0.507,0.0,0.055,2.587,0.53,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,11.089,16.325,9.233,0.614,0.0,0.0,2.0,59.0,3437.0,2828.6,3437.0,23.339,16.598,0.0,3.307,3.646,0.513,7.531,0.631,10.101,-12.703,0.0,0.0,0.0,8.336,-0.061,5.894,0.0,0.728,0.0,11.477,-8.917,-2.502,0.0,-0.143,-0.455,-0.051,2.713,-0.024,-1.383,11.71,0.0,0.0,0.0,-6.3,-0.057,-1.437,-3.072,-0.164,0.0,5.275,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.716,53.716,39.016,39.016,14.7,0.0,0.0,0.0,0.0,0.0,4.528,0.48,0.0,0.443,2.595,0.53,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,14.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.578,12.203,16.442,9.233,0.614,0.0,0.0,2.0,54.0,3440.1,2827.7,3440.1,26.757,16.586,0.0,3.252,3.648,0.513,7.537,0.631,10.103,-12.695,0.0,0.0,0.0,8.331,-0.06,4.809,0.0,0.729,0.0,12.783,-8.907,-2.499,0.0,-0.152,-0.464,-0.052,2.682,-0.027,-1.415,11.718,0.0,0.0,0.0,-6.348,-0.056,-1.174,-3.118,-0.166,0.0,5.288,7.871,2.011,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.355,0.758,0.148,0.011,2.378,0.206,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,0.0,24.952,0.159,14.829,9.233,0.614,0.0,0.0,0.0,0.0,7044.4,2647.8,7044.4,24.553,18.192,0.0,3.395,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.323,-0.065,4.811,0.0,0.729,0.0,9.048,-8.906,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.347,-0.061,-1.171,-3.105,-0.166,0.0,3.603,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,49.613,49.613,43.08,43.08,6.533,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,3.377,0.538,15.943,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.047,0.0,9.816,16.489,0.642,0.0,0.0,0.0,0.0,2615.2,3547.0,3547.0,17.006,16.126,0.0,2.9,2.833,0.397,5.504,0.423,7.596,-12.563,0.0,0.0,0.0,5.726,-0.058,3.541,0.0,0.582,0.0,1.453,-10.182,-2.473,0.0,-0.155,-0.607,-0.072,2.26,-0.067,-1.871,11.85,0.0,0.0,0.0,-7.696,-0.059,-1.296,-5.333,-0.193,0.0,2.045,9.375,2.036,2181.0,1715.2,21571.8,3761.0,0.0,31430.0,27889.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 +base-hvac-autosize.xml,59.2,59.2,36.214,36.214,22.986,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.506,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,0.0,22.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,21.534,0.0,14.903,9.233,0.614,0.0,0.0,0.0,2.0,2134.9,3328.7,3328.7,23.955,18.93,0.0,3.532,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.811,0.0,0.729,0.0,5.531,-8.905,-2.499,0.0,-0.076,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.172,-3.107,-0.166,0.0,3.661,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,32235.0,21310.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-coal-only.xml,49.573,49.573,30.652,30.652,0.0,0.0,0.0,0.0,0.0,18.92,0.0,0.236,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,18.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2060.6,1637.3,2060.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-elec-only.xml,48.401,48.401,48.401,48.401,0.0,0.0,0.0,0.0,0.0,0.0,17.862,0.123,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,0.0,16.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,6052.3,1637.3,6052.3,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,55.51,55.51,36.306,36.306,19.204,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,4.502,1.219,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,19.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,0.0,0.0,16.182,0.0,14.543,9.233,0.614,0.0,0.0,0.0,0.0,2095.4,3607.7,3607.7,16.438,19.27,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.811,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,-0.062,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.106,-0.166,0.0,3.294,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only-pilot.xml,54.539,54.539,30.56,30.56,23.979,0.0,0.0,0.0,0.0,0.0,0.0,0.144,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,23.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,16.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2045.2,1637.3,2045.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,49.567,49.567,30.56,30.56,19.007,0.0,0.0,0.0,0.0,0.0,0.0,0.144,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,19.007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2045.2,1637.3,2045.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-oil-only.xml,49.573,49.573,30.652,30.652,0.0,18.92,0.0,0.0,0.0,0.0,0.0,0.236,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,18.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2060.6,1637.3,2060.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-propane-only.xml,49.566,49.566,30.539,30.539,0.0,0.0,19.027,0.0,0.0,0.0,0.0,0.123,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,19.027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2041.7,1637.3,2041.7,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,49.566,49.566,30.539,30.539,0.0,0.0,0.0,19.027,0.0,0.0,0.0,0.123,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,19.027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2041.7,1637.3,2041.7,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,36.054,36.054,36.054,36.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.386,1.185,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.13,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3897.2,3897.2,0.0,18.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.074,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.195,-3.02,-0.167,0.0,3.217,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed.xml,36.07,36.07,36.07,36.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.402,1.185,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.13,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3905.3,3905.3,0.0,18.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.074,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.195,-3.02,-0.167,0.0,3.217,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,34.377,34.377,34.377,34.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.173,0.72,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3401.3,3401.3,0.0,19.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.091,-0.471,-0.052,2.666,-0.032,-1.453,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.195,-3.02,-0.167,0.0,3.61,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,33.671,33.671,33.671,33.671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.875,0.313,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.345,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3154.6,3154.6,0.0,19.332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.132,-0.471,-0.052,2.667,-0.032,-1.452,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.195,-3.023,-0.167,0.0,4.482,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.75,47.75,47.75,47.75,0.0,0.0,0.0,0.0,0.0,0.0,9.586,1.701,0.274,0.028,4.502,1.219,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,0.0,22.215,0.302,14.544,9.233,0.614,0.0,0.0,0.0,0.0,7315.6,3607.8,7315.6,25.258,19.271,0.0,3.502,3.645,0.513,7.531,0.631,10.104,-12.683,0.0,0.0,0.0,8.317,-0.065,4.811,0.0,0.729,0.0,6.222,-8.906,-2.499,0.0,-0.061,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.171,-3.106,-0.166,0.0,3.294,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-crankcase-heater-40w.xml,58.207,58.207,35.936,35.936,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.271,0.858,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2122.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dse.xml,58.594,58.594,36.979,36.979,21.615,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,5.21,0.973,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,21.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,0.0,16.181,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2118.5,2655.6,2655.6,16.443,11.922,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.81,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.173,-3.095,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.354,52.354,41.701,41.701,10.653,0.0,0.0,0.0,0.0,0.0,5.258,0.479,0.0,0.929,3.519,1.076,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,10.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,11.049,13.341,9.233,0.614,0.0,0.0,0.0,0.0,3615.5,3292.4,3615.5,24.197,16.403,0.0,3.472,3.645,0.513,7.532,0.631,10.105,-12.683,0.0,0.0,0.0,8.319,-0.065,4.811,0.0,0.729,0.0,6.813,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.112,55.112,40.703,40.703,14.408,0.0,0.0,0.0,0.0,0.0,3.945,0.335,0.0,1.389,3.519,1.076,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,14.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,15.077,13.341,9.233,0.614,0.0,0.0,0.0,0.0,3462.5,3292.4,3462.5,24.195,16.403,0.0,3.435,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.812,0.0,0.729,0.0,7.754,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.436,52.436,37.628,37.628,14.808,0.0,0.0,0.0,0.0,0.0,2.981,0.185,0.0,1.042,2.342,0.638,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,14.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.026,15.109,13.578,9.233,0.614,0.0,0.0,0.0,0.0,2840.5,2815.9,2840.5,24.195,17.379,0.0,3.423,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.321,-0.065,4.812,0.0,0.729,0.0,8.107,-8.906,-2.499,0.0,-0.018,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.104,-0.166,0.0,2.311,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.406,52.406,37.95,37.95,14.457,0.0,0.0,0.0,0.0,0.0,2.935,0.235,0.0,1.755,2.378,0.206,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,14.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,25.709,15.489,14.829,9.233,0.614,0.0,0.0,0.0,0.0,2832.5,2647.8,2832.5,24.548,18.192,0.0,3.362,3.646,0.513,7.535,0.631,10.108,-12.683,0.0,0.0,0.0,8.324,-0.065,4.812,0.0,0.729,0.0,9.833,-8.906,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.347,-0.061,-1.171,-3.105,-0.166,0.0,3.603,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.39,47.39,36.253,36.253,11.137,0.0,0.0,0.0,0.0,0.0,2.468,0.09,0.0,0.916,2.263,0.077,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,11.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,19.246,11.497,12.27,9.233,0.614,0.0,0.0,0.0,0.0,2572.4,2235.3,2572.4,19.299,13.795,0.0,3.614,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.811,0.0,0.73,0.0,3.179,-8.906,-2.499,0.0,0.029,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.171,-3.101,-0.166,0.0,0.99,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-fractions.xml,92.585,92.585,46.834,46.834,45.752,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,8.1,1.711,9.004,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,0.0,45.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,42.703,0.0,29.45,9.146,0.612,0.0,0.0,5.0,77.0,2574.9,5161.9,5161.9,48.976,34.989,0.0,3.225,7.897,1.073,7.933,0.668,20.527,-25.252,0.0,0.0,0.0,9.073,-0.116,11.159,0.0,0.748,0.0,19.687,-10.961,-3.544,0.0,-0.381,-1.035,-0.1,2.663,-0.023,-2.118,23.314,0.0,0.0,0.0,-6.455,-0.104,-2.48,-6.345,-0.161,0.0,10.861,9.395,2.829,1354.8,997.6,11399.6,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,71259.0,33168.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,57.58,57.58,35.949,35.949,21.631,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.318,0.835,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,21.631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,0.0,14.119,9.233,0.614,0.0,0.0,0.0,0.0,2130.2,3363.4,3363.4,22.361,18.577,0.0,3.578,3.644,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.811,0.0,0.729,0.0,4.22,-8.906,-2.499,0.0,-0.041,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.104,-0.166,0.0,2.856,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,55.929,55.929,35.702,35.702,20.228,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.135,0.794,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,20.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,18.935,0.0,13.273,9.233,0.614,0.0,0.0,0.0,0.0,2126.5,3068.5,3068.5,20.273,15.911,0.0,3.625,3.644,0.513,7.528,0.631,10.099,-12.683,0.0,0.0,0.0,8.31,-0.063,4.811,0.0,0.729,0.0,2.851,-8.905,-2.499,0.0,-0.008,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.172,-3.105,-0.166,0.0,1.988,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,28612.0,4972.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-defaults.xml,54.817,54.817,40.662,40.662,14.155,0.0,0.0,0.0,0.0,0.0,4.355,0.368,0.0,0.0,5.499,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,14.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,17.735,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,3047.4,3318.8,3318.8,18.196,11.922,0.0,3.744,3.643,0.513,7.524,0.631,10.098,-12.683,0.0,0.0,0.0,8.304,-0.065,4.811,0.0,0.73,0.0,1.558,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.095,-0.166,0.0,-0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,41910.0,24000.0,0.0,6.8,91.76,28212.0,4572.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-effective-rvalue.xml,58.345,58.345,36.078,36.078,22.268,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.413,0.858,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,22.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,20.853,0.0,14.453,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3421.8,3421.8,23.032,19.118,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.83,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.204,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,57.776,57.776,35.964,35.964,21.811,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.328,0.837,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,21.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,20.439,0.0,14.263,9.233,0.614,0.0,0.0,0.0,0.0,2130.2,3413.9,3413.9,22.449,19.038,0.0,3.567,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.811,0.0,0.73,0.0,4.424,-8.906,-2.499,0.0,-0.046,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.104,-0.166,0.0,3.061,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34496.0,10856.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-percent.xml,59.567,59.567,36.281,36.281,23.286,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.565,0.893,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,23.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,21.813,0.0,15.122,9.233,0.614,0.0,0.0,0.0,0.0,2134.4,3597.9,3597.9,24.256,20.653,0.0,3.52,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.315,-0.064,4.811,0.0,0.729,0.0,5.822,-8.905,-2.499,0.0,-0.086,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.172,-3.107,-0.166,0.0,3.896,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32660.0,9020.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-elec-resistance-only.xml,46.444,46.444,46.444,46.444,0.0,0.0,0.0,0.0,0.0,0.0,16.028,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,5939.3,1637.3,5939.3,16.443,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-furnace-gas.xml,54.747,54.747,31.876,31.876,22.871,0.0,0.0,0.0,0.0,0.0,0.0,0.595,0.0,0.0,0.0,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,0.0,22.871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.636,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2119.3,1874.1,2119.3,24.051,11.931,0.0,3.529,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.811,0.0,0.729,0.0,5.629,-8.905,-2.499,0.0,0.037,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.172,-3.095,-0.166,0.0,-0.0,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only-ducted.xml,31.389,31.389,31.389,31.389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.906,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.91,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2149.5,2149.5,0.0,15.978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.015,-0.167,0.0,0.941,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only.xml,31.303,31.303,31.303,31.303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.82,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2011.5,2021.1,0.0,11.731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.01,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-fireplace-wood-only.xml,51.762,51.762,30.417,30.417,0.0,0.0,0.0,21.344,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.062,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2020.8,1637.3,2020.8,17.0,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.894,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only-pilot-light.xml,56.733,56.733,30.417,30.417,0.0,0.0,26.316,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.062,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2020.8,1637.3,2020.8,17.0,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.894,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,51.762,51.762,30.417,30.417,0.0,0.0,21.344,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.062,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2020.8,1637.3,2020.8,17.0,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.894,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-coal-only.xml,53.642,53.642,31.005,31.005,0.0,0.0,0.0,0.0,0.0,22.637,0.0,0.588,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,22.637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.415,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.051,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.813,0.0,0.73,0.0,5.573,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,56.568,56.568,56.568,56.568,0.0,0.0,0.0,0.0,0.0,0.0,20.49,0.367,0.0,0.0,4.414,0.858,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,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,7923.5,3422.4,7923.5,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-only.xml,52.256,52.256,52.256,52.256,0.0,0.0,0.0,0.0,0.0,0.0,21.252,0.588,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,0.0,21.415,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,8308.9,1637.3,8308.9,24.051,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.813,0.0,0.73,0.0,5.573,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,56.999,56.999,34.727,34.727,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.221,0.699,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.861,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3127.9,3127.9,23.037,19.624,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.074,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.172,-3.105,-0.166,0.0,3.616,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,56.33,56.33,34.059,34.059,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,2.928,0.324,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,15.756,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,2866.3,2866.3,23.037,19.517,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.119,-0.464,-0.052,2.686,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.348,-0.06,-1.172,-3.109,-0.166,0.0,4.559,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,38.111,38.111,30.65,30.65,7.462,0.0,0.0,0.0,0.0,0.0,0.0,0.194,0.0,0.0,0.0,0.0,9.18,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.052,0.0,0.0,9.233,0.631,0.0,0.0,0.0,0.0,2067.8,1633.7,2067.8,18.157,0.0,0.0,2.848,2.792,0.391,5.359,0.412,7.471,-12.563,0.0,0.0,0.0,5.445,-0.06,3.488,0.0,0.573,0.0,1.812,-8.806,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-pilot.xml,58.551,58.551,31.005,31.005,27.546,0.0,0.0,0.0,0.0,0.0,0.0,0.588,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,27.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.415,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.051,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.813,0.0,0.73,0.0,5.573,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only.xml,53.642,53.642,31.005,31.005,22.637,0.0,0.0,0.0,0.0,0.0,0.0,0.588,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,22.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,0.0,0.0,21.415,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.051,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.813,0.0,0.73,0.0,5.573,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-room-ac.xml,59.405,59.405,36.534,36.534,22.871,0.0,0.0,0.0,0.0,0.0,0.0,0.595,0.0,0.0,5.5,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,22.871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.636,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2119.3,3318.9,3318.9,24.051,11.922,0.0,3.529,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.811,0.0,0.729,0.0,5.629,-8.905,-2.499,0.0,0.037,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.172,-3.095,-0.166,0.0,-0.0,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-oil-only.xml,53.642,53.642,31.005,31.005,0.0,22.637,0.0,0.0,0.0,0.0,0.0,0.588,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,22.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,21.415,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.051,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.813,0.0,0.73,0.0,5.573,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-propane-only.xml,53.642,53.642,31.005,31.005,0.0,0.0,22.637,0.0,0.0,0.0,0.0,0.588,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,22.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,21.415,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.051,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.813,0.0,0.73,0.0,5.573,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,53.642,53.642,31.005,31.005,0.0,0.0,0.0,22.637,0.0,0.0,0.0,0.588,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,22.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,21.415,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.051,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.813,0.0,0.73,0.0,5.573,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,58.592,58.592,37.008,37.008,21.583,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.21,0.973,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,21.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,16.343,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2122.4,2655.6,2655.6,16.607,11.922,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.858,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.173,-3.095,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,39.103,39.103,39.103,39.103,0.0,0.0,0.0,0.0,0.0,0.0,4.845,0.455,0.0,0.0,2.498,0.865,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,0.0,19.331,0.0,13.241,9.233,0.614,0.0,0.0,0.0,0.0,3192.9,2551.9,3192.9,21.066,15.834,0.0,3.61,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.811,0.0,0.729,0.0,3.264,-8.906,-2.499,0.0,-0.005,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,1.97,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.053,34.053,34.053,34.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.77,0.8,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.985,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2856.9,2856.9,0.0,15.858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.026,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.019,-0.167,0.0,2.054,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,39.558,39.558,39.558,39.558,0.0,0.0,0.0,0.0,0.0,0.0,5.007,0.481,0.0,0.0,2.744,0.887,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,0.0,19.431,0.0,13.269,9.233,0.614,0.0,0.0,0.0,0.0,3279.4,2668.4,3279.4,21.43,15.961,0.0,3.606,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.811,0.0,0.729,0.0,3.367,-8.906,-2.499,0.0,-0.006,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,1.997,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.241,36.241,36.241,36.241,0.0,0.0,0.0,0.0,0.0,0.0,5.077,0.748,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,0.0,19.844,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,3365.7,1637.3,3365.7,22.289,0.0,0.0,3.59,3.648,0.513,7.511,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.813,0.0,0.73,0.0,3.957,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,37.189,37.189,37.189,37.189,0.0,0.0,0.0,0.0,0.0,0.0,2.757,0.259,0.0,0.0,2.816,0.921,9.159,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.858,0.0,13.865,9.233,0.609,0.0,0.0,0.0,0.0,2945.0,2681.8,2945.0,17.478,16.593,0.0,3.777,3.774,0.532,5.726,0.657,10.442,-12.583,0.0,0.0,0.0,1.936,-0.042,4.872,0.0,0.74,0.0,1.954,-8.8,-2.478,0.0,-0.092,-0.547,-0.063,0.78,-0.05,-1.683,11.83,0.0,0.0,0.0,-3.437,-0.036,-1.252,-3.28,-0.178,0.0,2.081,7.972,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.531,39.531,39.531,39.531,0.0,0.0,0.0,0.0,0.0,0.0,4.997,0.48,0.0,0.0,2.729,0.885,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,0.0,19.425,0.0,13.267,9.233,0.614,0.0,0.0,0.0,0.0,3274.5,2660.1,3274.5,21.406,15.951,0.0,3.606,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.811,0.0,0.729,0.0,3.361,-8.906,-2.499,0.0,-0.006,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,1.995,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.841,48.841,48.841,48.841,0.0,0.0,0.0,0.0,0.0,0.0,12.146,0.674,0.562,0.018,4.281,0.72,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,0.0,22.8,0.579,13.89,9.233,0.614,0.0,0.0,0.0,0.0,7068.4,3549.1,7068.4,24.721,17.543,0.0,3.48,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.811,0.0,0.729,0.0,6.832,-8.906,-2.499,0.0,-0.033,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.106,-0.166,0.0,2.635,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.209,44.209,44.209,44.209,0.0,0.0,0.0,0.0,0.0,0.0,9.176,0.559,0.519,0.016,2.913,0.586,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,0.0,24.062,0.535,14.223,9.233,0.614,0.0,0.0,0.0,0.0,7051.5,3143.6,7051.5,24.716,18.876,0.0,3.43,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.811,0.0,0.729,0.0,8.134,-8.906,-2.499,0.0,-0.046,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.171,-3.105,-0.166,0.0,2.972,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.656,43.656,43.656,43.656,0.0,0.0,0.0,0.0,0.0,0.0,9.048,0.71,0.318,0.016,2.902,0.221,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,0.0,26.149,0.335,15.432,9.233,0.614,0.0,0.0,0.0,0.0,7150.8,3014.4,7150.8,25.037,18.909,0.0,3.35,3.647,0.513,7.536,0.632,10.107,-12.689,0.0,0.0,0.0,8.327,-0.064,4.812,0.0,0.729,0.0,10.281,-8.908,-2.5,0.0,-0.101,-0.463,-0.052,2.687,-0.026,-1.405,11.724,0.0,0.0,0.0,-6.343,-0.06,-1.171,-3.108,-0.166,0.0,4.23,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.322,60.322,36.877,36.877,23.445,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,5.362,0.793,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,23.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,21.848,0.0,15.371,9.233,0.614,0.0,0.0,0.0,5.0,2117.6,3525.8,3525.8,24.079,18.323,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.81,0.0,0.729,0.0,5.858,-8.903,-2.499,0.0,-0.099,-0.464,-0.052,2.686,-0.027,-1.41,11.73,0.0,0.0,0.0,-6.35,-0.059,-1.173,-3.109,-0.166,0.0,4.146,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.765,58.765,35.32,35.32,23.445,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.934,0.665,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,23.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,21.848,0.0,15.787,9.233,0.614,0.0,0.0,0.0,3.0,2117.6,3218.9,3218.9,24.079,18.785,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.81,0.0,0.729,0.0,5.858,-8.903,-2.499,0.0,-0.117,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.173,-3.108,-0.166,0.0,4.568,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.099,58.099,34.654,34.654,23.444,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.516,0.417,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,23.444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,16.445,9.233,0.614,0.0,0.0,0.0,8.0,2117.6,2988.0,2988.0,24.079,18.031,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.81,0.0,0.729,0.0,5.858,-8.903,-2.499,0.0,-0.154,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.173,-3.113,-0.166,0.0,5.274,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-only.xml,54.996,54.996,30.874,30.874,24.123,0.0,0.0,0.0,0.0,0.0,0.0,0.458,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,24.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,22.648,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2096.5,1637.3,2096.5,25.363,0.0,0.0,3.488,3.648,0.513,7.514,0.632,10.112,-12.683,0.0,0.0,0.0,8.148,-0.067,4.813,0.0,0.73,0.0,6.846,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.524,41.524,41.524,41.524,0.0,0.0,0.0,0.0,0.0,0.0,6.469,0.491,0.0,0.0,3.285,0.84,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,0.0,20.419,0.0,13.815,9.233,0.614,0.0,0.0,0.0,0.0,3520.7,2848.0,3520.7,22.482,17.106,0.0,3.573,3.644,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.811,0.0,0.729,0.0,4.383,-8.906,-2.499,0.0,-0.03,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.105,-0.166,0.0,2.557,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.124,34.124,34.124,34.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.473,0.168,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.744,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,2967.9,2967.9,0.0,14.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,0.0,0.0,-0.017,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.02,-0.167,0.0,1.829,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.929,40.929,40.929,40.929,0.0,0.0,0.0,0.0,0.0,0.0,6.997,0.563,0.03,0.002,2.747,0.15,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,0.0,19.365,0.032,12.566,9.233,0.614,0.0,0.0,0.0,0.0,4486.7,2367.8,4486.7,19.464,14.239,0.0,3.609,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.811,0.0,0.73,0.0,3.302,-8.906,-2.499,0.0,0.02,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.171,-3.103,-0.166,0.0,1.295,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,33.441,33.441,33.441,33.441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.878,0.079,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.397,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,2445.0,2445.0,0.0,14.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.002,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.018,-0.167,0.0,1.467,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,33.29,33.29,33.29,33.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.78,0.027,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,2260.1,2260.1,0.0,11.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.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.01,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.76,32.76,32.76,32.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.201,0.075,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.909,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2333.0,2333.0,0.0,13.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.013,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.195,-3.016,-0.167,0.0,0.965,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.304,36.304,36.304,36.304,0.0,0.0,0.0,0.0,0.0,0.0,5.586,0.293,0.009,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,0.0,18.722,0.009,0.0,9.233,0.588,0.0,0.0,0.0,0.0,3854.3,1637.3,3854.3,19.302,0.0,0.0,3.629,3.647,0.513,7.511,0.632,10.112,-12.683,0.0,0.0,0.0,8.146,-0.069,4.813,0.0,0.73,0.0,2.807,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,38.716,38.716,38.716,38.716,0.0,0.0,0.0,0.0,0.0,0.0,5.632,0.295,0.009,0.0,2.263,0.077,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,0.0,18.911,0.009,12.27,9.233,0.614,0.0,0.0,0.0,0.0,3854.3,2235.3,3854.3,19.302,13.795,0.0,3.625,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.811,0.0,0.73,0.0,2.834,-8.906,-2.499,0.0,0.029,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.171,-3.101,-0.166,0.0,0.99,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.245,38.245,38.245,38.245,0.0,0.0,0.0,0.0,0.0,0.0,5.213,0.115,0.362,0.0,2.087,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,0.0,16.182,0.362,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4434.5,2211.9,4434.5,16.443,11.922,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.811,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.095,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,44.941,44.941,35.937,35.937,9.004,0.0,0.0,0.0,0.0,0.0,3.07,0.052,0.0,0.271,2.074,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,9.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,17.342,7.474,11.193,9.233,0.614,0.0,0.0,1.0,0.0,2950.1,2213.2,2950.1,17.269,12.085,0.0,3.742,3.641,0.512,7.519,0.63,10.091,-12.69,0.0,0.0,0.0,8.311,-0.063,5.893,0.0,0.729,0.0,0.111,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.436,-3.049,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,24589.0,949.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.671,44.671,35.769,35.769,8.902,0.0,0.0,0.0,0.0,0.0,2.897,0.048,0.0,0.268,2.087,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,8.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.573,7.39,11.294,9.233,0.614,0.0,0.0,1.0,0.0,2863.0,2211.9,2863.0,17.581,11.922,0.0,3.724,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.306,-0.065,4.811,0.0,0.73,0.0,0.41,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.095,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.937,47.937,35.679,35.679,0.0,12.258,0.0,0.0,0.0,0.0,3.067,0.069,0.0,0.0,2.074,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.0,12.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.231,7.355,11.193,9.233,0.614,0.0,0.0,2.0,0.0,2950.1,2213.2,2950.1,17.0,12.085,0.0,3.742,3.641,0.512,7.519,0.63,10.091,-12.69,0.0,0.0,0.0,8.311,-0.063,5.893,0.0,0.729,0.0,0.0,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.436,-3.049,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.856,37.856,37.856,37.856,0.0,0.0,0.0,0.0,0.0,0.0,5.054,0.096,0.0,0.0,2.239,0.028,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,0.0,16.182,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,3544.7,2192.9,3544.7,16.443,11.922,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.811,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.095,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,37.856,37.856,37.856,37.856,0.0,0.0,0.0,0.0,0.0,0.0,5.054,0.096,0.0,0.0,2.239,0.028,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,0.0,16.182,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,3544.7,2192.9,3544.7,16.443,11.922,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.811,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.095,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.001,66.001,51.885,51.885,6.999,3.519,3.598,0.0,0.0,0.0,13.406,0.841,0.196,0.008,6.424,0.569,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.519,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,31.973,0.204,19.533,9.233,0.614,0.0,0.0,0.0,6.0,6471.0,4018.0,6471.0,37.556,22.981,0.0,3.431,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.893,0.0,0.728,0.0,14.994,-8.914,-2.501,0.0,-0.137,-0.455,-0.051,2.715,-0.024,-1.38,11.717,0.0,0.0,0.0,-6.299,-0.058,-1.438,-3.088,-0.164,0.0,8.444,7.864,2.008,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-none.xml,19.74,19.74,19.74,19.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,4.61,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,0.0,0.0,4.572,0.33,0.0,0.0,0.0,0.0,1280.6,1085.3,1280.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,1354.8,997.6,8540.7,2104.5,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 +base-hvac-ptac-with-heating-electricity.xml,51.002,51.002,51.002,51.002,0.0,0.0,0.0,0.0,0.0,0.0,16.194,0.0,0.0,0.0,4.369,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,0.0,16.181,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,5939.3,2889.9,5939.3,16.443,11.922,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.81,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.173,-3.095,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,55.051,55.051,34.808,34.808,20.243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.369,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,20.243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.181,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2021.3,2889.9,2889.9,16.443,11.922,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.81,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.173,-3.095,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac.xml,34.737,34.737,34.737,34.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.254,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3208.2,3208.2,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.01,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp-heating-capacity-17f.xml,41.941,41.941,41.941,41.941,0.0,0.0,0.0,0.0,0.0,0.0,7.23,0.0,0.047,0.0,4.225,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,0.0,16.182,0.047,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4808.2,2870.2,4808.2,16.443,11.922,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.81,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.026,-1.408,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.172,-3.095,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp.xml,41.941,41.941,41.941,41.941,0.0,0.0,0.0,0.0,0.0,0.0,7.23,0.0,0.047,0.0,4.225,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,0.0,16.182,0.047,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4808.2,2870.2,4808.2,16.443,11.922,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.81,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.026,-1.408,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.172,-3.095,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-33percent.xml,32.349,32.349,32.349,32.349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.866,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.615,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2292.9,2292.9,0.0,3.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007,-0.156,-0.017,0.879,-0.011,-0.48,3.911,0.0,0.0,0.0,-2.283,-0.021,-0.394,-0.993,-0.055,0.0,0.0,2.642,0.672,1354.8,997.6,11399.5,2615.8,0.0,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-ceer.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,0.0,5.365,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3636.0,3636.0,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.01,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-detailed-setpoints.xml,34.597,34.597,34.597,34.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.119,0.0,9.201,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.146,9.233,0.653,0.0,0.0,0.0,0.0,2021.1,3404.0,3404.0,0.0,10.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.145,-0.648,-0.078,2.174,-0.077,-1.993,11.85,0.0,0.0,0.0,-7.664,-0.066,-1.339,-3.396,-0.2,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only.xml,35.838,35.838,35.838,35.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.355,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3632.1,3632.1,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.01,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-heating.xml,52.133,52.133,52.133,52.133,0.0,0.0,0.0,0.0,0.0,0.0,16.194,0.0,0.0,0.0,5.499,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,0.0,16.181,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,5939.3,3318.8,5939.3,16.443,11.922,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.81,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.173,-3.095,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,41.941,41.941,41.941,41.941,0.0,0.0,0.0,0.0,0.0,0.0,7.23,0.0,0.047,0.0,4.225,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,0.0,16.182,0.047,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4808.2,2870.2,4808.2,16.443,11.922,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.81,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.026,-1.408,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.172,-3.095,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,58.135,58.135,36.028,36.028,22.107,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.375,0.848,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,22.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,20.703,0.0,14.285,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.0,3422.0,23.037,19.119,0.0,3.516,3.607,0.508,7.531,0.617,9.947,-12.591,0.0,0.0,0.0,8.244,-0.034,4.757,0.0,0.723,0.0,4.803,-8.79,-2.477,0.0,-0.098,-0.501,-0.057,2.689,-0.04,-1.559,11.822,0.0,0.0,0.0,-6.415,-0.03,-1.223,-3.121,-0.173,0.0,3.171,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,57.168,57.168,35.466,35.466,21.701,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.913,0.755,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,0.0,21.701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.95,0.0,12.447,9.233,0.615,0.0,0.0,101.0,55.0,2152.2,3586.3,3586.3,34.947,20.39,0.0,3.517,3.579,0.503,7.523,0.608,9.827,-12.674,0.0,0.0,0.0,8.678,0.006,4.656,0.0,0.727,0.0,4.5,-8.859,-2.496,0.0,-0.073,-0.502,-0.058,2.616,-0.042,-1.591,11.74,0.0,0.0,0.0,-6.667,-0.004,-1.224,-3.407,-0.174,0.0,2.49,7.92,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,56.539,56.539,35.618,35.618,20.921,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.048,0.783,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,0.0,20.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.502,0.0,13.07,9.233,0.616,0.0,0.0,0.0,14.0,2137.2,3597.9,3597.9,25.335,20.814,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.197,-0.023,4.642,0.0,0.724,0.0,4.387,-8.884,-2.501,0.0,-0.057,-0.497,-0.057,2.572,-0.04,-1.578,11.697,0.0,0.0,0.0,-6.644,-0.024,-1.205,-3.354,-0.177,0.0,2.635,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,41.527,41.527,34.236,34.236,7.29,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.107,0.54,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.822,0.0,9.174,9.233,0.645,0.0,0.0,0.0,0.0,2102.1,3212.6,3212.6,17.399,16.359,0.0,2.853,2.787,0.39,5.357,0.411,7.456,-12.563,0.0,0.0,0.0,5.503,-0.06,3.482,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.125,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.262,-5.126,-0.188,0.0,2.129,8.003,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-space-heater-gas-only.xml,46.444,46.444,30.416,30.416,16.028,0.0,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,0.0,16.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,16.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2021.3,1637.3,2021.3,16.443,0.0,0.0,3.745,3.645,0.513,7.507,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.812,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-oil-only.xml,51.746,51.746,30.482,30.482,0.0,21.264,0.0,0.0,0.0,0.0,0.0,0.064,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,21.264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.062,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2023.9,1637.3,2023.9,17.0,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.894,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-wood-pellets-only.xml,51.746,51.746,30.482,30.482,0.0,0.0,0.0,0.0,21.264,0.0,0.0,0.064,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,21.264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.062,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2023.9,1637.3,2023.9,17.0,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.894,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,55.75,55.75,35.573,35.573,20.178,0.0,0.0,0.0,0.0,0.0,0.0,0.317,0.0,0.0,4.04,0.775,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,20.178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.879,0.0,13.019,9.233,0.614,0.0,0.0,0.0,0.0,2123.8,3051.0,3051.0,20.403,15.91,0.0,3.624,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.311,-0.064,4.811,0.0,0.73,0.0,2.808,-8.905,-2.499,0.0,0.006,-0.465,-0.052,2.685,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.172,-3.102,-0.166,0.0,1.76,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,28898.0,19718.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized.xml,48.398,48.398,33.149,33.149,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.246,0.0,0.0,2.091,0.358,9.177,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.279,0.0,6.336,9.233,0.629,0.0,0.0,3653.0,2624.0,2089.4,1834.1,2089.4,3.839,2.674,0.0,2.699,2.924,0.409,5.374,0.449,7.904,-12.797,0.0,0.0,0.0,4.759,-0.121,3.62,0.0,0.6,0.0,9.541,-9.006,-2.517,0.0,-0.382,-0.821,-0.104,1.556,-0.119,-2.517,11.616,0.0,0.0,0.0,-8.136,-0.065,-1.433,-5.136,-0.237,0.0,2.648,7.787,1.992,1354.8,997.6,11399.6,2615.9,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-wall-furnace-elec-only.xml,46.771,46.771,46.771,46.771,0.0,0.0,0.0,0.0,0.0,0.0,16.355,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,6033.6,1637.3,6033.6,16.443,0.0,0.0,3.745,3.645,0.513,7.507,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.812,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-ceiling-fans.xml,58.717,58.717,36.466,36.466,22.251,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.306,0.831,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,0.0,22.251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.837,0.0,14.069,9.233,0.612,0.0,0.0,0.0,0.0,2131.9,3748.3,3748.3,23.037,18.912,0.0,3.557,3.645,0.513,7.528,0.631,10.101,-12.683,0.0,0.0,0.0,8.298,-0.064,4.811,0.0,0.729,0.0,4.829,-8.905,-2.499,0.0,-0.096,-0.511,-0.059,2.557,-0.038,-1.551,11.73,0.0,0.0,0.0,-6.547,-0.06,-1.207,-3.271,-0.174,0.0,3.088,8.396,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-holiday.xml,58.549,58.549,36.278,36.278,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2397.2,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-kwh-per-year.xml,60.065,60.065,39.686,39.686,20.38,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.649,0.916,9.162,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.084,0.0,15.473,9.233,0.612,0.0,0.0,0.0,0.0,2415.9,3928.1,3928.1,22.768,19.627,0.0,3.59,3.667,0.516,7.602,0.636,10.162,-12.654,0.0,0.0,0.0,8.406,-0.069,4.821,0.0,0.731,0.0,4.464,-8.891,-4.249,0.0,-0.097,-0.498,-0.057,2.592,-0.035,-1.503,11.743,0.0,0.0,0.0,-6.501,-0.065,-1.197,-3.238,-0.17,0.0,3.373,7.886,3.428,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-mixed.xml,58.527,58.527,36.256,36.256,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.163,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2140.7,3428.1,3428.1,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none-ceiling-fans.xml,56.291,56.291,31.268,31.268,25.023,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,3.983,0.752,9.163,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.435,0.0,12.694,9.233,0.614,0.0,0.0,0.0,0.0,1751.9,3225.4,3225.4,23.413,18.181,0.0,3.512,3.616,0.509,7.437,0.625,10.03,-12.718,0.0,0.0,0.0,8.185,-0.059,4.802,0.0,0.728,0.0,5.363,-8.928,0.0,0.0,-0.037,-0.463,-0.052,2.696,-0.025,-1.404,11.719,0.0,0.0,0.0,-6.311,-0.055,-1.168,-3.07,-0.168,0.0,2.857,8.374,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none.xml,55.922,55.922,30.878,30.878,25.044,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,4.089,0.778,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,0.0,25.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.455,0.0,13.071,9.233,0.615,0.0,0.0,0.0,0.0,1751.9,3516.3,3516.3,23.413,18.395,0.0,3.512,3.615,0.509,7.439,0.625,10.03,-12.718,0.0,0.0,0.0,8.2,-0.059,4.802,0.0,0.728,0.0,5.367,-8.928,0.0,0.0,0.002,-0.415,-0.045,2.825,-0.014,-1.261,11.719,0.0,0.0,0.0,-6.115,-0.055,-1.133,-2.911,-0.16,0.0,2.973,7.851,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-location-AMY-2012.xml,67.119,67.119,34.953,34.953,32.166,0.0,0.0,0.0,0.0,0.0,0.0,0.523,0.0,0.0,3.001,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,0.0,32.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.118,0.0,8.863,9.674,0.619,0.0,0.0,0.0,0.0,2146.6,2889.7,2889.7,23.484,15.959,0.0,4.266,4.384,0.623,9.837,0.807,12.592,-13.801,0.0,0.0,0.0,10.991,-0.092,5.196,0.0,0.773,0.0,7.111,-10.172,-2.863,0.0,-0.007,-0.342,-0.042,1.616,-0.044,-1.659,9.941,0.0,0.0,0.0,-7.422,-0.082,-0.881,-2.44,-0.097,0.0,2.153,6.66,1.661,1358.5,1000.6,11587.5,2659.0,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 +base-location-baltimore-md.xml,39.279,39.279,30.07,30.07,9.208,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,5.174,1.068,8.66,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,9.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,0.0,0.0,8.506,0.0,17.289,8.551,0.66,0.0,0.0,0.0,0.0,1686.0,2555.0,2555.0,13.608,14.218,0.0,3.492,3.345,0.0,0.0,0.722,9.055,-8.541,0.0,0.0,3.31,0.0,-0.336,2.06,0.0,0.803,0.0,1.498,-5.842,-1.3,0.0,-0.135,-0.628,0.0,0.0,-0.007,0.03,12.018,0.0,0.0,-0.954,0.0,-0.329,-0.438,-1.537,-0.211,0.0,1.593,6.742,1.348,1354.8,997.6,11035.9,2719.3,0.0,24000.0,24000.0,0.0,17.24,91.22,18289.0,4484.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,15138.0,1182.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 +base-location-capetown-zaf.xml,28.301,28.301,28.14,28.14,0.161,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,4.337,1.043,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.0,0.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,16.613,7.422,0.693,0.0,0.0,0.0,0.0,1870.7,2278.8,2302.1,4.208,12.626,0.0,1.596,1.352,0.0,0.0,0.569,4.54,-5.631,0.0,0.0,2.602,0.0,-1.073,0.762,0.0,0.326,0.0,0.023,-4.305,-0.792,0.0,-0.908,-1.639,0.0,0.0,-0.468,-0.617,17.811,0.0,0.0,-4.25,0.0,-1.072,-0.604,-2.04,-0.407,0.0,1.03,8.279,1.855,1354.8,997.6,10580.5,2607.1,0.0,24000.0,24000.0,0.0,41.0,84.38,13251.0,5424.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13723.0,2066.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 +base-location-dallas-tx.xml,34.585,34.585,32.863,32.863,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.99,1.921,6.814,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,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.588,0.0,31.106,6.675,0.573,0.0,0.0,0.0,0.0,1848.0,2862.4,2862.4,9.69,15.1,0.0,1.711,1.591,0.0,0.0,0.368,4.651,-4.907,0.0,0.0,0.0,1.212,-0.34,0.998,0.0,0.383,0.0,0.043,-3.597,-0.743,0.0,0.508,-0.048,0.0,0.0,0.188,2.608,17.264,0.0,0.0,0.0,1.812,-0.335,-0.366,-1.955,-0.099,0.0,0.357,9.56,1.904,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 +base-location-duluth-mn.xml,70.726,70.726,29.939,29.939,40.788,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,2.39,0.361,11.622,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,40.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.957,0.0,5.781,11.597,0.832,0.0,0.0,0.0,0.0,1758.5,2473.3,2473.3,26.409,11.646,0.0,7.032,7.03,0.0,0.0,1.592,19.668,-13.103,0.0,0.0,9.936,0.0,-0.366,6.394,0.0,0.0,0.0,7.532,-6.247,-1.915,0.0,-0.474,-0.829,0.0,0.0,-0.101,-0.954,8.135,0.0,0.0,-1.618,0.0,-0.366,-0.532,-1.023,0.0,0.0,0.368,2.618,0.732,1354.8,997.6,12167.9,2889.4,0.0,36000.0,24000.0,0.0,-13.72,81.14,31119.0,6119.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11786.0,292.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 +base-location-helena-mt.xml,77.926,77.926,35.478,35.478,42.449,0.0,0.0,0.0,0.0,0.0,0.0,1.04,0.0,0.0,2.442,0.387,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,0.0,42.449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.093,0.0,6.493,10.479,0.625,0.0,0.0,0.0,0.0,2238.1,2943.1,2943.1,30.315,14.97,0.0,5.36,5.465,0.773,11.524,1.049,15.463,-15.392,0.0,0.0,0.0,13.841,-0.19,7.807,0.0,1.206,0.0,8.242,-12.135,-3.367,0.0,0.002,-0.26,-0.028,1.289,0.008,-0.496,8.386,0.0,0.0,0.0,-6.087,-0.184,-0.685,-2.363,-0.123,0.0,1.356,4.654,1.142,1354.8,997.6,11851.9,2719.7,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 +base-location-honolulu-hi.xml,35.999,35.999,35.999,35.999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.056,2.997,4.816,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,0.0,48.761,4.572,0.55,0.0,0.0,0.0,0.0,2122.1,2146.5,2335.1,0.0,13.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.238,0.753,0.0,0.0,0.303,5.283,20.458,0.0,0.0,0.0,6.02,-0.004,-0.044,-1.672,0.062,0.0,0.718,13.134,2.647,1354.8,997.6,8540.5,2104.4,0.0,12000.0,24000.0,0.0,63.32,89.06,3427.0,602.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,13006.0,3.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 +base-location-miami-fl.xml,35.158,35.158,35.158,35.158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.287,2.792,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,0.0,0.0,45.294,4.712,0.551,0.0,0.0,0.0,0.0,2098.8,2413.9,2413.9,0.0,13.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.018,0.586,0.0,0.0,0.307,4.475,19.646,0.0,0.0,0.0,5.54,-0.004,-0.213,-2.328,-0.004,0.0,0.664,13.135,2.647,1354.8,997.6,8625.1,2125.3,0.0,12000.0,24000.0,0.0,51.62,90.68,8626.0,801.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,646.0,13291.0,-246.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 +base-location-phoenix-az.xml,38.859,38.859,38.858,38.858,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.532,3.014,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.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,0.0,53.05,4.955,0.556,0.0,0.0,0.0,0.0,2458.2,3486.9,3486.9,0.564,18.407,0.0,0.703,0.517,0.0,0.0,0.205,2.241,-1.843,0.0,0.0,0.0,-0.075,-0.467,0.365,0.0,0.122,0.0,-0.0,-1.611,-0.274,0.0,1.761,1.4,0.0,0.0,0.802,6.859,24.223,0.0,0.0,0.0,7.006,-0.479,0.01,-3.136,0.116,0.0,0.932,11.529,2.373,1354.8,997.6,8429.2,2077.0,0.0,24000.0,24000.0,0.0,41.36,108.14,13288.0,1067.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1035.0,18562.0,669.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 +base-location-portland-or.xml,37.297,37.297,27.76,27.76,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,2.946,0.564,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,0.0,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,9.043,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2900.1,2900.1,8.448,14.135,0.0,3.436,3.276,0.0,0.0,0.748,8.757,-8.143,0.0,0.0,6.216,0.0,-0.442,1.469,0.0,0.81,0.0,1.633,-7.49,-1.648,0.0,-0.327,-0.797,0.0,0.0,-0.01,-0.756,10.358,0.0,0.0,-2.964,0.0,-0.439,-0.366,-1.84,-0.257,0.0,0.567,5.094,0.999,1354.8,997.6,11239.5,2769.4,0.0,24000.0,24000.0,0.0,28.58,87.08,17541.0,6250.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,15211.0,2157.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 +base-mechvent-balanced.xml,79.705,79.705,37.912,37.912,41.794,0.0,0.0,0.0,0.0,0.0,0.0,0.689,0.0,0.0,4.192,0.791,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,0.0,41.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.143,0.0,13.264,9.233,0.62,0.0,0.0,0.0,2.0,2238.9,3658.1,3658.1,32.388,20.91,0.0,3.502,3.716,0.523,7.451,0.654,10.375,-12.838,0.0,0.0,0.0,8.166,-0.114,5.501,0.0,15.075,0.0,8.574,-9.173,-2.568,0.0,0.144,-0.259,-0.023,3.003,0.031,-0.717,11.576,0.0,0.0,0.0,-5.946,-0.11,-1.021,-2.55,-3.554,0.0,3.224,7.611,1.941,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-bath-kitchen-fans.xml,60.128,60.128,36.171,36.171,23.957,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.376,0.847,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,0.0,23.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,0.0,22.434,0.0,14.266,9.233,0.614,0.0,0.0,0.0,0.0,2165.5,3616.0,3616.0,24.907,20.551,0.0,3.547,3.643,0.513,7.527,0.631,10.093,-12.692,0.0,0.0,0.0,8.326,-0.059,4.325,0.0,2.474,0.0,5.169,-8.912,-2.501,0.0,-0.042,-0.451,-0.05,2.727,-0.023,-1.37,11.721,0.0,0.0,0.0,-6.275,-0.055,-1.047,-3.037,-0.687,0.0,3.188,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,73.052,73.052,37.818,37.818,35.233,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,0.0,4.282,0.816,9.167,0.0,0.0,4.51,0.0,0.334,1.695,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.999,0.0,13.701,9.233,0.618,0.0,0.0,0.0,0.0,2170.0,3598.0,3598.0,29.392,20.852,0.0,3.484,3.659,0.515,7.505,0.637,10.165,-12.749,0.0,0.0,0.0,8.338,-0.07,1.507,0.0,13.86,0.0,7.362,-9.0,-2.522,0.0,0.036,-0.367,-0.038,2.917,0.001,-1.081,11.664,0.0,0.0,0.0,-5.978,-0.066,-0.256,-2.75,-3.283,0.0,3.25,7.782,1.988,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-dse.xml,73.167,73.167,38.774,38.774,34.393,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,5.004,0.911,9.167,0.0,0.0,4.51,0.0,0.334,1.848,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,25.749,0.0,10.529,9.233,0.618,0.0,0.0,0.0,0.0,2168.2,2842.4,2842.4,21.245,13.45,0.0,3.757,3.654,0.514,7.497,0.636,10.158,-12.737,0.0,0.0,0.0,8.324,-0.073,1.507,0.0,13.737,0.0,0.0,-8.997,-2.521,0.0,0.127,-0.369,-0.038,2.916,0.001,-1.083,11.676,0.0,0.0,0.0,-5.982,-0.069,-0.257,-2.741,-3.253,0.0,0.0,7.785,1.989,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-evap-cooler-only-ducted.xml,34.169,34.169,34.169,34.169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.914,9.231,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,0.0,0.0,11.391,9.233,0.687,0.0,0.0,0.0,0.0,2121.2,2220.9,2220.9,0.0,18.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.146,-0.36,-0.036,2.984,-0.004,-1.109,11.85,0.0,0.0,0.0,-6.577,-0.059,-0.258,-2.577,-3.1,0.0,0.643,8.012,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,70.272,70.272,36.472,36.472,33.801,0.0,0.0,0.0,0.0,0.0,0.0,0.558,0.0,0.0,4.194,0.795,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,0.0,33.801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.656,0.0,13.35,9.233,0.619,0.0,0.0,0.0,0.0,2139.0,3726.9,3726.9,29.394,20.838,0.0,3.517,3.68,0.518,7.479,0.643,10.242,-12.776,0.0,0.0,0.0,8.264,-0.086,1.919,0.0,12.478,0.0,7.088,-9.068,-2.54,0.0,0.091,-0.314,-0.031,2.98,0.015,-0.906,11.637,0.0,0.0,0.0,-5.925,-0.082,-0.256,-2.616,-4.008,0.0,3.173,7.714,1.97,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-supply.xml,72.392,72.392,36.498,36.498,35.894,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.201,0.796,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,0.0,35.894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.618,0.0,13.348,9.233,0.618,0.0,0.0,0.0,0.0,2140.2,3598.1,3598.1,29.393,20.842,0.0,3.49,3.667,0.516,7.492,0.64,10.201,-12.763,0.0,0.0,0.0,8.307,-0.079,1.51,0.0,14.421,0.0,7.476,-9.032,-2.53,0.0,0.066,-0.339,-0.034,2.957,0.009,-0.986,11.65,0.0,0.0,0.0,-5.933,-0.075,-0.247,-2.659,-3.886,0.0,3.198,7.75,1.98,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis.xml,74.262,74.262,37.75,37.75,36.512,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.229,0.802,9.168,0.0,0.0,4.51,0.0,0.334,1.672,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.198,0.0,13.453,9.233,0.618,0.0,0.0,0.0,0.0,2170.0,3598.0,3598.0,29.392,20.835,0.0,3.49,3.703,0.521,7.473,0.651,10.331,-12.78,0.0,0.0,0.0,8.223,-0.114,1.521,0.0,14.05,0.0,8.491,-9.097,-2.548,0.0,0.142,-0.305,-0.029,2.935,0.02,-0.861,11.633,0.0,0.0,0.0,-6.011,-0.11,-0.235,-2.663,-3.054,0.0,2.492,7.686,1.962,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv-atre-asre.xml,65.169,65.169,37.943,37.943,27.227,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.407,0.852,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,0.0,27.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,0.0,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.498,0.0,14.334,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3945.0,3945.0,25.353,20.261,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.402,0.0,3.906,0.0,5.811,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.259,-2.953,-0.853,0.0,3.261,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv.xml,65.173,65.173,37.943,37.943,27.231,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.407,0.852,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,0.0,27.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.502,0.0,14.334,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3945.0,3945.0,25.355,20.261,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.402,0.0,3.909,0.0,5.812,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.259,-2.953,-0.854,0.0,3.261,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust-rated-flow-rate.xml,73.937,73.937,36.908,36.908,37.029,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.168,0.787,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,0.0,37.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.681,0.0,13.2,9.233,0.619,0.0,0.0,0.0,0.0,2172.5,3654.5,3654.5,29.443,20.863,0.0,3.5,3.682,0.518,7.48,0.643,10.243,-12.791,0.0,0.0,0.0,8.263,-0.082,1.464,0.0,15.396,0.0,7.675,-9.072,-2.541,0.0,0.094,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.923,-0.078,-0.233,-2.607,-4.199,0.0,3.184,7.711,1.968,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust.xml,73.937,73.937,36.908,36.908,37.029,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.168,0.787,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,0.0,37.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.681,0.0,13.2,9.233,0.619,0.0,0.0,0.0,0.0,2172.5,3654.5,3654.5,29.443,20.863,0.0,3.5,3.682,0.518,7.48,0.643,10.243,-12.791,0.0,0.0,0.0,8.263,-0.082,1.464,0.0,15.396,0.0,7.675,-9.072,-2.541,0.0,0.094,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.923,-0.078,-0.233,-2.607,-4.199,0.0,3.184,7.711,1.968,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv-asre.xml,65.17,65.17,37.946,37.946,27.224,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.409,0.853,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,0.0,27.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,25.496,0.0,14.336,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3946.2,3946.2,25.352,20.262,0.0,3.52,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.402,0.0,3.904,0.0,5.811,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.259,-2.953,-0.852,0.0,3.263,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv.xml,65.174,65.174,37.946,37.946,27.228,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.409,0.853,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,0.0,27.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,25.5,0.0,14.336,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3946.2,3946.2,25.354,20.263,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.402,0.0,3.907,0.0,5.811,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.259,-2.953,-0.853,0.0,3.263,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-multiple.xml,80.873,80.873,38.381,38.381,42.492,0.0,0.0,0.0,0.0,0.0,0.0,0.698,0.0,0.0,4.557,0.697,9.171,0.0,0.0,4.51,0.0,0.334,1.575,0.0,0.0,0.405,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.798,0.0,11.684,9.233,0.622,0.0,0.0,0.0,22.0,2289.0,3646.3,3646.3,35.906,22.623,0.0,3.183,3.709,0.522,7.491,0.652,10.33,-12.791,0.0,0.0,0.0,8.289,-0.106,3.848,0.0,9.548,0.0,16.43,-9.091,-2.547,0.0,0.052,-0.213,-0.016,3.196,0.041,-0.606,11.623,0.0,0.0,0.0,-5.618,-0.101,-0.613,0.0,-2.152,-8.169,4.731,7.695,1.963,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-supply.xml,72.52,72.52,36.979,36.979,35.54,0.0,0.0,0.0,0.0,0.0,0.0,0.586,0.0,0.0,4.245,0.807,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,0.0,35.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.287,0.0,13.532,9.233,0.618,0.0,0.0,0.0,0.0,2169.6,3628.1,3628.1,29.258,20.864,0.0,3.493,3.667,0.516,7.492,0.64,10.201,-12.763,0.0,0.0,0.0,8.307,-0.08,1.51,0.0,14.154,0.0,7.41,-9.032,-2.53,0.0,0.063,-0.34,-0.034,2.955,0.009,-0.988,11.65,0.0,0.0,0.0,-5.936,-0.076,-0.247,-2.665,-3.722,0.0,3.233,7.75,1.98,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-whole-house-fan.xml,56.868,56.868,34.417,34.417,22.452,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,2.535,0.4,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.664,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.026,0.0,6.56,9.233,0.622,0.0,0.0,0.0,0.0,2132.2,3105.3,3105.3,23.037,16.246,0.0,3.554,3.643,0.513,7.547,0.63,10.093,-12.683,0.0,0.0,0.0,8.434,-0.057,4.809,0.0,0.729,0.0,4.872,-8.905,-2.499,0.0,0.088,-0.266,-0.023,3.27,0.022,-0.818,11.73,0.0,0.0,0.0,-5.409,-0.053,-0.993,0.0,-0.135,-11.71,1.806,7.881,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-additional-properties.xml,58.35,58.35,36.078,36.078,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-none.xml,58.35,58.35,36.078,36.078,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-detailed-only.xml,58.35,31.463,36.078,9.192,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-mixed.xml,58.35,31.463,36.078,9.192,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv.xml,58.35,1.086,36.078,-21.185,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills.xml,58.35,58.35,36.078,36.078,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,63.39,43.94,31.595,12.145,31.795,0.0,0.0,0.0,0.0,0.0,0.0,0.525,0.0,0.0,2.267,0.338,2.184,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.081,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.45,0.0,0.506,31.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,29.762,0.0,5.463,10.64,0.693,0.0,9.152,0.0,0.0,2402.4,2950.3,2950.3,26.047,15.217,0.0,3.491,3.687,0.518,7.47,1.119,10.315,-12.806,0.0,0.0,0.0,8.267,-0.095,1.533,0.0,15.069,0.0,2.756,-9.283,-2.557,0.0,0.69,-0.095,0.001,3.444,-0.195,-0.322,11.607,0.0,0.0,0.0,-5.223,-0.091,-0.199,0.0,-3.419,-10.854,0.449,8.626,1.952,1610.4,1574.2,10560.0,3721.5,2.87,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-emissions.xml,59.166,32.28,36.895,10.009,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.817,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2199.2,3498.3,3498.3,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,13.025,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery-scheduled.xml,77.084,68.895,37.813,29.624,30.771,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,1.735,22.271,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,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3537.0,3537.0,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,1.697,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery.xml,75.35,67.161,36.078,27.889,30.771,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.0,22.271,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,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators.xml,75.35,67.161,36.078,27.889,30.771,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.0,22.271,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,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-ground-conductivity.xml,56.041,56.041,36.002,36.002,20.039,0.0,0.0,0.0,0.0,0.0,0.0,0.331,0.0,0.0,4.383,0.85,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,20.039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,0.0,14.314,9.233,0.613,0.0,0.0,0.0,0.0,2110.2,3766.0,3766.0,22.152,19.179,0.0,3.593,3.668,0.516,7.311,0.636,10.165,-12.663,0.0,0.0,0.0,6.695,-0.064,4.817,0.0,0.731,0.0,4.4,-8.891,-2.496,0.0,-0.066,-0.474,-0.053,2.388,-0.029,-1.438,11.75,0.0,0.0,0.0,-6.137,-0.059,-1.182,-3.12,-0.168,0.0,3.192,7.886,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon.xml,146.284,146.284,68.538,68.538,69.751,0.0,2.499,5.496,0.0,0.0,0.0,0.28,0.0,0.0,5.409,1.107,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,0.0,16.986,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,15.905,0.0,18.753,9.233,0.609,0.0,0.0,0.0,0.0,3234.8,5182.2,5182.2,21.952,20.73,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.836,0.0,0.734,0.0,3.781,-13.808,-2.35,0.0,-0.201,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.272,-3.573,-0.181,0.0,3.874,13.226,2.158,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon2.xml,92.768,92.768,64.989,64.989,19.784,2.499,0.0,0.0,5.496,0.0,0.0,0.28,0.0,0.0,5.409,1.107,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,0.0,16.986,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,15.905,0.0,18.753,9.233,0.609,0.0,0.0,0.0,0.0,3187.7,4779.7,4779.7,21.952,20.73,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.836,0.0,0.734,0.0,3.781,-13.808,-2.35,0.0,-0.201,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.272,-3.573,-0.181,0.0,3.874,13.226,2.158,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-none.xml,53.087,53.087,24.834,24.834,28.253,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,3.725,0.689,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,0.0,28.253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.462,0.0,11.563,9.233,0.617,0.0,0.0,0.0,0.0,1537.9,3128.3,3128.3,24.27,17.327,0.0,3.475,3.599,0.506,7.396,0.622,9.986,-12.73,0.0,0.0,0.0,8.165,-0.054,4.799,0.0,0.726,0.0,5.973,-3.801,-2.512,0.0,0.056,-0.368,-0.038,2.973,-0.001,-1.105,11.683,0.0,0.0,0.0,-5.88,-0.05,-1.086,-2.7,-0.152,0.0,2.706,3.706,1.998,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-neighbor-shading-bldgtype-multifamily.xml,26.623,26.623,25.788,25.788,0.835,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.569,0.438,9.693,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.835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.772,0.0,7.007,9.538,0.585,0.0,0.0,0.0,0.0,1642.1,1986.1,1986.1,3.336,8.14,0.0,-0.013,3.83,0.0,0.0,0.417,4.067,-3.186,0.0,0.0,-0.01,0.0,-0.312,1.31,0.0,0.761,0.0,0.0,-5.319,-0.936,0.0,-0.008,-2.783,0.0,0.0,-0.012,-0.688,5.017,0.0,0.0,-0.005,0.0,-0.303,-0.394,-1.178,-0.271,0.0,0.0,6.656,1.09,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-misc-neighbor-shading.xml,63.378,63.378,35.82,35.82,27.558,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,4.134,0.79,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,0.0,27.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.807,0.0,13.302,9.233,0.615,0.0,0.0,0.0,0.0,2126.3,3689.5,3689.5,23.27,18.475,0.0,3.479,3.709,0.541,7.36,0.776,10.707,-8.74,0.0,0.0,0.0,7.861,-0.057,4.79,0.0,0.724,0.0,5.782,-8.918,-2.502,0.0,-0.014,-0.467,-0.054,2.778,-0.04,-1.339,10.323,0.0,0.0,0.0,-6.182,-0.052,-1.15,-2.99,-0.162,0.0,2.965,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-shielding-of-home.xml,58.011,58.011,36.22,36.22,21.791,0.0,0.0,0.0,0.0,0.0,0.0,0.359,0.0,0.0,4.533,0.888,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,21.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,20.406,0.0,14.992,9.233,0.613,0.0,0.0,0.0,0.0,2131.8,3749.4,3749.4,23.017,19.035,0.0,3.562,3.647,0.513,7.535,0.631,10.101,-12.683,0.0,0.0,0.0,8.308,-0.061,4.427,0.0,0.73,0.0,4.741,-8.899,-2.498,0.0,-0.07,-0.476,-0.054,2.649,-0.03,-1.451,11.73,0.0,0.0,0.0,-6.409,-0.058,-1.067,-2.609,-0.168,0.0,3.276,7.878,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 +base-misc-usage-multiplier.xml,126.192,126.192,50.907,50.907,68.089,0.0,2.249,4.947,0.0,0.0,0.0,0.34,0.0,0.0,4.686,0.925,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,0.0,20.601,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.292,0.0,15.608,8.31,0.612,0.0,0.0,0.0,0.0,2765.9,4428.9,4428.9,22.737,19.743,0.0,3.581,3.659,0.515,7.576,0.633,10.138,-12.664,0.0,0.0,0.0,8.363,-0.065,4.867,0.0,0.658,0.0,4.504,-10.586,-2.246,0.0,-0.096,-0.496,-0.056,2.596,-0.035,-1.507,11.751,0.0,0.0,0.0,-6.491,-0.062,-1.212,-3.249,-0.153,0.0,3.386,9.606,1.813,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-pv-battery-ah.xml,59.166,32.28,36.895,10.009,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.817,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2199.2,3498.3,3498.3,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,13.025,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-garage.xml,59.543,32.657,35.604,8.717,23.94,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.107,0.552,9.264,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.886,0.0,0.868,23.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.413,0.0,9.142,9.233,0.722,0.0,0.0,0.0,0.0,2202.1,2829.3,2829.3,18.033,11.776,0.0,3.532,3.792,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.372,0.0,0.0,0.0,3.764,-6.763,-2.508,0.0,0.104,-0.282,-0.037,2.418,-0.001,-1.134,8.269,0.0,0.0,0.0,-5.679,-0.041,-1.226,-2.106,0.0,0.0,1.34,5.683,2.002,1354.8,997.6,11399.5,2615.8,16.797,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-round-trip-efficiency.xml,60.518,33.631,38.246,11.36,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,2.168,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2306.1,3638.3,3638.3,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,4.296,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-scheduled.xml,60.084,33.198,37.813,10.926,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,1.735,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3537.0,3537.0,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,5.417,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery.xml,59.166,32.28,36.895,10.009,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.817,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2199.2,3498.3,3498.3,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,13.025,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery-scheduled.xml,77.084,42.009,37.813,2.737,30.771,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,1.735,22.271,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,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3537.0,3537.0,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,16.79,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery.xml,76.196,41.12,36.925,1.849,30.771,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.846,22.271,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,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2188.3,3487.4,3487.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,83.201,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators.xml,75.35,40.274,36.078,1.003,30.771,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.0,22.271,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,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv.xml,58.35,31.463,36.078,9.192,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0-runperiod-1-month.xml,8.7756,8.7756,0.4299,0.4299,8.3456,0.0,0.0,0.0,0.0,0.0,0.0,0.1377,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.3456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8123,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.18,0.0,556.18,26.8921,0.0,0.0,0.6029,0.6429,0.0909,1.7457,0.1095,1.7779,-1.9884,0.0,0.0,0.0,2.2351,-0.0005,1.0008,0.0,0.0,0.0,1.7429,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0.xml,41.427,41.427,7.378,7.378,34.049,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.403,0.618,0.576,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.0,0.0,0.0,0.0,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.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,31.893,0.0,10.867,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2257.2,2257.2,25.498,15.666,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.997,-0.063,5.421,0.0,0.0,0.0,7.058,-1.409,0.0,0.0,0.15,-0.28,-0.026,3.18,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.472,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon.xml,101.17,101.17,52.126,52.126,41.138,0.0,2.609,5.297,0.0,0.0,0.0,0.345,0.0,0.0,4.607,0.907,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,0.0,20.916,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.587,0.0,15.486,3.62,0.613,0.0,0.0,0.0,0.0,2589.3,4556.1,4556.1,22.989,19.678,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.818,0.0,0.729,0.0,4.576,-10.198,-2.496,0.0,-0.096,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.195,-3.22,-0.169,0.0,3.382,9.248,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon2.xml,80.116,80.116,49.7,49.7,22.51,2.609,0.0,0.0,5.297,0.0,0.0,0.345,0.0,0.0,4.607,0.907,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,0.0,20.916,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.587,0.0,15.486,3.62,0.613,0.0,0.0,0.0,0.0,2391.0,4296.4,4296.4,22.989,19.678,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.818,0.0,0.729,0.0,4.576,-10.198,-2.496,0.0,-0.096,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.195,-3.22,-0.169,0.0,3.382,9.248,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1.xml,52.87,52.87,28.494,28.494,24.376,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,4.081,0.777,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,0.0,24.376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.244,3.62,0.615,0.0,0.0,0.0,0.0,1659.4,3261.0,3261.0,23.634,18.44,0.0,3.532,3.634,0.511,7.494,0.629,10.079,-12.698,0.0,0.0,0.0,8.289,-0.064,4.807,0.0,0.727,0.0,5.252,-7.189,-2.504,0.0,-0.017,-0.432,-0.047,2.784,-0.017,-1.299,11.715,0.0,0.0,0.0,-6.191,-0.06,-1.137,-2.934,-0.161,0.0,3.015,6.197,2.006,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,69.639,49.388,40.123,19.872,29.516,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,2.386,0.366,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.107,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.251,0.0,0.39,29.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,27.627,0.0,5.885,18.47,0.643,0.0,11.969,0.0,0.0,3177.0,3224.3,3224.3,25.6,15.57,0.0,3.796,3.691,0.519,7.524,0.645,10.259,-12.764,0.0,0.0,0.0,8.385,-0.078,1.526,0.0,14.999,0.0,2.563,-11.178,-2.536,0.0,0.218,-0.167,-0.009,3.395,0.049,-0.49,11.649,0.0,0.0,0.0,-5.263,-0.074,-0.214,0.0,-3.588,-11.536,0.482,10.474,1.974,2592.2,2706.5,21147.6,5662.4,1.824,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-all-10-mins.xml,59.728,59.728,36.325,36.325,23.402,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.59,0.894,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.915,0.0,15.004,9.21,0.638,0.0,0.0,0.333,1.333,9422.1,10708.7,10708.7,37.366,21.894,0.0,3.607,3.669,0.517,7.596,0.642,10.189,-12.601,0.0,0.0,0.0,8.33,-0.062,5.311,0.0,0.775,0.0,5.111,-8.969,-2.509,0.0,-0.179,-0.489,-0.056,2.704,-0.032,-1.437,11.752,0.0,0.0,0.0,-6.328,-0.058,-1.28,-3.003,-0.179,0.0,3.436,8.307,2.0,1354.7,998.0,11489.6,2636.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,33.631,33.631,28.785,28.785,4.846,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.304,0.58,7.441,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,0.0,0.0,4.539,0.0,9.824,7.426,0.56,0.0,0.0,0.5,0.667,9397.3,10444.5,10444.5,41.547,21.475,0.0,2.616,2.464,0.344,4.288,0.336,6.501,-12.497,0.0,0.0,0.0,3.691,-0.104,3.393,0.0,0.384,0.0,1.013,-6.566,-1.596,0.0,-0.248,-0.599,-0.072,2.363,-0.065,-1.808,11.861,0.0,0.0,0.0,-7.639,-0.059,-1.387,-4.976,-0.212,0.0,2.361,8.448,2.023,1141.2,883.5,9401.6,2157.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps.xml,42.572,42.572,34.517,34.517,8.055,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.316,0.583,9.198,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.542,0.0,9.873,9.21,0.669,0.0,0.0,0.0,0.667,9393.9,10447.5,10447.5,31.865,21.476,0.0,2.918,2.81,0.394,5.403,0.421,7.525,-12.492,0.0,0.0,0.0,5.505,-0.059,3.867,0.0,0.581,0.0,1.731,-8.86,-2.486,0.0,-0.252,-0.602,-0.072,2.368,-0.066,-1.818,11.861,0.0,0.0,0.0,-7.571,-0.058,-1.389,-4.989,-0.212,0.0,2.371,8.448,2.023,1354.7,998.0,11490.8,2636.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.138,59.138,36.24,36.24,22.898,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.506,0.88,9.085,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,21.44,0.0,14.797,9.148,0.615,0.0,0.0,0.0,0.0,6842.0,7475.7,9098.5,31.353,20.86,0.0,3.557,3.649,0.513,7.536,0.632,10.11,-12.685,0.0,0.0,0.0,8.318,-0.06,5.326,0.0,0.764,0.0,4.946,-8.988,-2.501,0.0,-0.056,-0.46,-0.051,2.692,-0.025,-1.397,11.729,0.0,0.0,0.0,-6.34,-0.055,-1.288,-3.092,-0.189,0.0,3.271,8.364,1.98,1002.6,945.2,11591.4,2659.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,44.734,44.734,30.385,30.385,14.348,0.0,0.0,0.0,0.0,0.0,0.0,0.237,0.0,0.0,4.476,0.872,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.441,0.0,14.679,7.439,0.517,0.0,0.0,17.0,0.0,6231.1,5705.4,6231.1,36.507,20.005,0.0,3.075,3.07,0.431,5.717,0.489,8.386,-12.686,0.0,0.0,0.0,5.187,-0.154,4.377,0.0,0.513,0.0,3.02,-6.681,-1.621,0.0,-0.056,-0.461,-0.051,2.676,-0.025,-1.397,11.731,0.0,0.0,0.0,-6.442,-0.057,-1.273,-3.091,-0.186,0.0,3.248,8.281,2.006,1141.2,883.5,9318.8,2138.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.427,41.427,7.378,7.378,34.049,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.403,0.618,0.576,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.0,0.0,0.0,0.0,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.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,31.893,0.0,10.867,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2257.2,2257.2,25.498,15.666,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.997,-0.063,5.421,0.0,0.0,0.0,7.058,-1.409,0.0,0.0,0.15,-0.28,-0.026,3.18,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.472,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,57.772,57.772,30.975,30.975,26.798,0.0,0.0,0.0,0.0,0.0,0.0,0.442,0.0,0.0,4.495,0.877,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.095,0.0,14.759,7.43,0.614,0.0,0.0,0.0,0.0,4455.5,5711.9,5711.9,30.778,20.061,0.0,3.504,3.622,0.51,7.453,0.626,10.041,-12.679,0.0,0.0,0.0,8.149,-0.064,5.309,0.0,0.514,0.0,5.698,-6.297,-1.615,0.0,-0.061,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.358,-0.059,-1.277,-3.102,-0.186,0.0,3.261,8.287,2.008,1141.2,883.5,9304.1,2135.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic.xml,59.071,59.071,36.197,36.197,22.874,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.496,0.877,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.419,0.0,14.761,9.229,0.614,0.0,0.0,0.0,0.0,4580.8,5712.1,5712.1,30.651,20.063,0.0,3.553,3.644,0.513,7.53,0.631,10.102,-12.674,0.0,0.0,0.0,8.308,-0.063,5.269,0.0,0.777,0.0,4.944,-8.954,-2.502,0.0,-0.061,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.355,-0.059,-1.277,-3.102,-0.186,0.0,3.262,8.287,2.008,1354.7,998.0,11396.5,2615.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-schedules.xml,57.168,57.168,35.466,35.466,21.701,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.913,0.755,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,0.0,21.701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.95,0.0,12.447,9.233,0.615,0.0,0.0,101.0,55.0,2152.2,3586.3,3586.3,34.947,20.39,0.0,3.517,3.579,0.503,7.523,0.608,9.827,-12.674,0.0,0.0,0.0,8.678,0.006,4.656,0.0,0.727,0.0,4.5,-8.859,-2.496,0.0,-0.073,-0.502,-0.058,2.616,-0.042,-1.591,11.74,0.0,0.0,0.0,-6.667,-0.004,-1.224,-3.407,-0.174,0.0,2.49,7.92,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-setbacks.xml,56.539,56.539,35.618,35.618,20.921,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.048,0.783,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,0.0,20.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.502,0.0,13.07,9.233,0.616,0.0,0.0,0.0,14.0,2137.2,3597.9,3597.9,25.335,20.814,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.197,-0.023,4.642,0.0,0.724,0.0,4.387,-8.884,-2.501,0.0,-0.057,-0.497,-0.057,2.572,-0.04,-1.578,11.697,0.0,0.0,0.0,-6.644,-0.024,-1.205,-3.354,-0.177,0.0,2.635,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints.xml,41.527,41.527,34.236,34.236,7.29,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.107,0.54,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.822,0.0,9.174,9.233,0.645,0.0,0.0,0.0,0.0,2102.1,3212.6,3212.6,17.4,16.358,0.0,2.853,2.787,0.39,5.357,0.411,7.456,-12.563,0.0,0.0,0.0,5.503,-0.06,3.482,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.125,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.262,-5.126,-0.188,0.0,2.129,8.003,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-available.xml,54.873,54.873,32.578,32.578,22.295,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.354,0.611,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.879,0.0,10.367,8.601,0.581,0.0,0.0,0.0,1.0,2132.0,5726.0,5726.0,23.037,19.13,0.0,3.556,3.644,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.312,-0.065,4.767,0.0,0.795,0.0,4.838,-8.906,-2.499,0.0,-0.043,-0.48,-0.054,2.633,-0.03,-1.456,11.731,0.0,0.0,0.0,-6.41,-0.061,-1.181,-4.834,-0.173,0.0,2.289,6.933,1.701,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-unavailable.xml,55.019,55.019,32.755,32.755,22.264,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.498,0.647,8.543,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.0,10.939,8.601,0.579,0.0,0.0,0.0,10.0,2132.0,5767.6,5767.6,23.037,19.719,0.0,3.557,3.645,0.513,7.527,0.631,10.104,-12.683,0.0,0.0,0.0,8.289,-0.065,4.767,0.0,0.795,0.0,4.831,-8.906,-2.499,0.0,-0.166,-0.606,-0.072,2.302,-0.062,-1.838,11.731,0.0,0.0,0.0,-6.905,-0.061,-1.303,-2.711,-0.174,0.0,2.367,6.931,1.701,1241.6,923.2,10501.6,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage.xml,55.048,55.048,32.631,32.631,22.417,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,3.427,0.629,8.544,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,10.683,8.601,0.581,0.0,0.0,0.0,5.0,1985.3,5811.0,5811.0,23.071,22.12,0.0,3.554,3.643,0.513,7.523,0.63,10.094,-12.684,0.0,0.0,0.0,8.29,-0.063,4.765,0.0,0.795,0.0,4.861,-8.904,-2.367,0.0,-0.098,-0.536,-0.062,2.488,-0.045,-1.629,11.731,0.0,0.0,0.0,-6.629,-0.059,-1.234,-3.891,-0.174,0.0,2.339,6.934,1.794,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy-year-round.xml,41.427,41.427,7.378,7.378,34.049,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.403,0.618,0.576,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.0,0.0,0.0,0.0,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.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,31.893,0.0,10.867,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2257.2,2257.2,25.498,15.666,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.997,-0.063,5.421,0.0,0.0,0.0,7.058,-1.409,0.0,0.0,0.15,-0.28,-0.026,3.18,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.472,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy.xml,57.378,57.378,30.763,30.763,26.615,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,4.441,0.864,7.484,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.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,0.0,24.925,0.0,14.57,7.429,0.614,0.0,0.0,0.0,0.0,2011.5,3491.1,3491.1,23.126,19.203,0.0,3.503,3.619,0.509,7.446,0.625,10.032,-12.688,0.0,0.0,0.0,8.141,-0.065,4.965,0.0,0.552,0.0,5.668,-6.163,-1.548,0.0,-0.059,-0.466,-0.052,2.681,-0.027,-1.412,11.729,0.0,0.0,0.0,-6.357,-0.06,-1.15,-3.11,-0.2,0.0,3.228,7.872,2.14,1122.2,811.7,9376.7,2151.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple.xml,58.52,58.52,36.114,36.114,22.406,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,4.442,0.865,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,0.0,22.406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.983,0.0,14.574,9.233,0.614,0.0,0.0,0.0,0.0,1985.3,3442.4,3442.4,23.071,19.188,0.0,3.554,3.642,0.513,7.525,0.63,10.091,-12.684,0.0,0.0,0.0,8.301,-0.061,4.808,0.0,0.729,0.0,4.859,-8.902,-2.367,0.0,-0.06,-0.466,-0.052,2.68,-0.027,-1.418,11.729,0.0,0.0,0.0,-6.358,-0.057,-1.174,-3.113,-0.166,0.0,3.227,7.876,2.141,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-calendar-year-custom.xml,58.325,58.325,36.048,36.048,22.277,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.388,0.852,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.862,0.0,14.357,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3434.7,3434.7,23.037,19.125,0.0,3.557,3.645,0.513,7.53,0.631,10.1,-12.683,0.0,0.0,0.0,8.316,-0.063,4.811,0.0,0.729,0.0,4.835,-8.905,-2.499,0.0,-0.051,-0.459,-0.051,2.707,-0.025,-1.394,11.73,0.0,0.0,0.0,-6.328,-0.059,-1.166,-3.252,-0.165,0.0,3.17,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-custom.xml,58.35,58.35,36.078,36.078,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-disabled.xml,58.321,58.321,36.062,36.062,22.259,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.4,0.855,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.845,0.0,14.398,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3344.8,3344.8,23.037,18.729,0.0,3.556,3.643,0.513,7.53,0.63,10.089,-12.683,0.0,0.0,0.0,8.311,-0.06,4.808,0.0,0.727,0.0,4.831,-8.9,-2.496,0.0,-0.056,-0.465,-0.052,2.684,-0.027,-1.417,11.73,0.0,0.0,0.0,-6.348,-0.056,-1.176,-3.131,-0.163,0.0,3.182,7.877,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-runperiod-1-month.xml,9.3387,9.3387,2.9155,2.9155,6.4231,0.0,0.0,0.0,0.0,0.0,0.0,0.106,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0134,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2115.82,0.0,2115.82,24.5082,0.0,0.0,0.6218,0.6514,0.0921,1.7783,0.1114,1.8005,-1.9863,0.0,0.0,0.0,2.3104,0.001,0.8923,0.0,0.1316,0.0,1.3931,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-temperature-capacitance-multiplier.xml,58.237,58.237,35.972,35.972,22.265,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.327,0.838,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.85,0.0,14.107,9.233,0.614,0.0,0.0,0.0,0.0,2131.5,3405.2,3405.2,22.978,19.044,0.0,3.626,3.641,0.512,7.527,0.628,10.073,-12.689,0.0,0.0,0.0,8.292,-0.053,4.807,0.0,0.728,0.0,4.828,-8.896,-2.498,0.0,-0.223,-0.462,-0.052,2.69,-0.027,-1.419,11.724,0.0,0.0,0.0,-6.346,-0.05,-1.18,-3.176,-0.164,0.0,3.051,7.882,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,59.739,59.739,36.322,36.322,23.418,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.588,0.893,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.929,0.0,14.997,9.232,0.616,0.0,0.0,0.333,1.333,9296.7,8481.7,9322.0,37.369,21.894,0.0,3.607,3.669,0.517,7.596,0.642,10.189,-12.601,0.0,0.0,0.0,8.33,-0.062,5.311,0.0,0.775,0.0,5.114,-8.958,-2.509,0.0,-0.179,-0.489,-0.056,2.705,-0.032,-1.437,11.752,0.0,0.0,0.0,-6.327,-0.058,-1.28,-3.002,-0.179,0.0,3.435,8.297,2.0,1354.7,998.0,11410.4,2618.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,59.659,59.659,36.312,36.312,23.346,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.586,0.893,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,21.862,0.0,14.99,9.229,0.614,0.0,0.0,0.0,0.5,6068.6,7353.6,7353.6,35.103,21.328,0.0,3.607,3.669,0.517,7.594,0.642,10.187,-12.601,0.0,0.0,0.0,8.326,-0.062,5.259,0.0,0.771,0.0,5.103,-8.955,-2.502,0.0,-0.179,-0.489,-0.056,2.704,-0.032,-1.438,11.752,0.0,0.0,0.0,-6.331,-0.057,-1.265,-3.005,-0.186,0.0,3.433,8.284,2.008,1354.7,998.0,11396.5,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins.xml,58.958,58.958,36.193,36.193,22.765,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.503,0.873,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,0.0,22.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,21.318,0.0,14.679,9.233,0.614,0.0,0.0,0.0,0.0,3553.4,5042.5,5042.5,23.32,19.027,0.0,3.612,3.669,0.517,7.595,0.642,10.185,-12.61,0.0,0.0,0.0,8.335,-0.059,4.795,0.0,0.735,0.0,4.996,-8.905,-2.499,0.0,-0.174,-0.487,-0.056,2.71,-0.032,-1.435,11.744,0.0,0.0,0.0,-6.317,-0.055,-1.156,-3.001,-0.172,0.0,3.375,7.873,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-30-mins.xml,58.731,58.731,36.143,36.143,22.589,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.464,0.866,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.153,0.0,14.554,9.233,0.614,0.0,0.0,0.0,0.0,2157.1,3815.6,3815.6,23.224,19.052,0.0,3.594,3.661,0.516,7.566,0.639,10.168,-12.631,0.0,0.0,0.0,8.321,-0.062,4.797,0.0,0.733,0.0,4.933,-8.905,-2.498,0.0,-0.143,-0.482,-0.055,2.704,-0.031,-1.434,11.747,0.0,0.0,0.0,-6.329,-0.058,-1.161,-3.05,-0.17,0.0,3.285,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base.xml,58.35,58.35,36.078,36.078,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +house001.xml,86.617,86.617,47.319,47.319,39.299,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,15.975,4.48,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,0.0,22.249,0.0,17.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,18.043,0.0,50.899,10.416,2.683,0.0,0.0,0.0,0.0,1853.7,6691.9,6691.9,37.693,42.618,0.495,1.999,7.301,0.422,0.0,0.982,7.164,-4.978,0.0,0.0,0.485,1.29,-0.286,4.306,0.0,5.162,0.0,3.187,-6.727,-2.915,0.559,1.959,3.663,0.303,0.0,0.228,1.549,11.487,0.0,0.0,0.516,6.78,-0.271,-0.434,-1.439,-0.779,0.0,10.916,11.623,4.465,2104.5,2144.0,14468.8,4385.1,0.0,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,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 +house002.xml,67.376,67.376,40.154,40.154,27.221,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,13.992,3.481,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,0.0,13.734,0.0,13.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.134,0.0,40.207,7.526,2.892,0.0,0.0,0.0,0.0,1553.9,5106.8,5106.8,23.846,29.782,0.0,2.552,5.065,0.0,0.0,0.846,5.729,-4.087,0.0,0.0,0.0,1.809,-0.161,1.578,0.0,3.794,0.0,1.352,-5.039,-2.475,0.0,3.05,2.765,0.0,0.0,0.409,0.355,8.652,0.0,0.0,0.0,8.391,-0.154,-0.19,-1.077,-0.66,0.0,6.001,8.963,3.907,1610.9,1574.7,9989.5,3520.4,0.0,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,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 +house003.xml,68.756,68.756,40.506,40.506,28.25,0.0,0.0,0.0,0.0,0.0,0.0,0.168,0.0,0.0,13.083,3.644,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,0.0,15.003,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.163,0.0,42.007,7.526,2.693,0.0,0.0,0.0,0.0,1632.2,5481.4,5481.4,26.247,34.02,0.653,2.805,4.678,0.0,0.0,0.98,6.254,-3.935,0.0,0.0,0.0,1.138,-0.182,1.994,0.0,3.942,0.0,1.584,-5.248,-2.676,0.786,3.005,2.567,0.0,0.0,0.638,1.037,9.843,0.0,0.0,0.0,6.458,-0.174,-0.23,-1.127,-0.664,0.0,6.66,9.233,4.2,1610.9,1574.7,9989.4,3520.4,0.0,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,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 +house004.xml,136.358,136.358,75.984,75.984,60.374,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,29.48,9.637,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,0.0,44.221,0.0,16.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,35.761,0.0,109.342,8.985,3.514,0.0,0.0,0.0,158.0,3153.8,7371.6,7371.6,54.626,50.773,0.127,5.509,11.299,0.0,0.0,1.238,13.608,-5.79,0.0,0.0,0.0,3.105,-0.775,4.906,0.0,6.221,0.0,7.03,-7.176,-3.849,0.197,6.642,11.609,0.0,0.0,0.508,7.397,17.81,0.0,0.0,0.0,18.772,-0.762,0.994,0.0,1.799,0.0,21.798,15.181,7.713,1857.7,1859.3,12229.1,3984.0,0.0,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,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 +house005.xml,95.311,95.311,53.927,53.927,41.384,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,18.773,5.3,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,0.0,26.179,0.0,15.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,21.231,0.0,61.39,8.985,2.734,0.0,0.0,0.0,3.0,2076.1,7519.0,7519.0,46.008,52.145,0.0,3.052,8.218,0.27,0.0,1.36,9.437,-6.696,0.0,0.0,0.398,1.313,-0.377,5.059,0.0,5.093,0.0,4.317,-6.822,-3.611,0.0,2.935,4.202,0.209,0.0,0.265,2.282,15.363,0.0,0.0,0.41,7.447,-0.36,-0.512,-1.821,-0.766,0.0,14.906,11.562,5.544,1857.7,1859.4,12229.0,3983.9,0.0,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,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 +house006.xml,139.162,139.162,31.873,31.873,107.289,0.0,0.0,0.0,0.0,0.0,0.0,1.869,0.0,0.0,3.036,0.355,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,0.0,81.443,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,78.407,0.0,8.172,13.084,3.277,0.0,0.0,0.0,0.0,1987.1,2467.4,2467.4,40.487,14.968,0.0,4.264,22.276,1.991,37.138,1.864,17.625,-9.441,0.0,0.0,0.0,9.272,-0.322,9.523,0.0,4.37,0.0,0.0,-14.532,-6.438,0.0,0.172,-0.806,-0.046,2.784,-0.086,-0.558,4.335,0.0,0.0,0.0,-3.919,-0.321,-0.518,-0.614,-0.076,0.0,0.0,5.683,2.249,1610.9,1574.7,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 +house007.xml,138.686,138.686,34.0,34.0,104.686,0.0,0.0,0.0,0.0,0.0,0.0,1.629,0.0,0.0,2.611,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,0.0,75.019,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,70.638,0.0,6.039,15.632,3.268,0.0,0.0,0.0,0.0,2191.9,2568.2,2568.2,39.657,13.514,0.0,4.727,23.696,4.449,10.124,1.499,18.834,-9.346,0.0,0.0,0.076,11.539,-0.372,6.119,0.0,20.826,0.0,2.861,-17.172,-7.734,0.0,0.2,-0.721,-0.058,0.561,-0.047,-0.336,4.603,0.0,0.0,-0.009,-4.044,-0.368,-0.193,-0.584,-1.905,0.0,0.108,6.368,2.565,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 +house008.xml,183.036,183.036,39.382,39.382,143.653,0.0,0.0,0.0,0.0,0.0,0.0,2.475,0.0,0.0,3.771,0.574,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,0.0,110.218,0.0,26.374,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,103.856,0.0,10.907,18.129,3.213,0.0,0.0,0.0,0.0,2472.8,3432.3,3432.3,54.881,20.574,0.0,7.246,27.501,4.711,24.32,1.195,21.291,-7.816,0.0,0.0,1.287,17.853,-0.393,18.327,0.0,6.389,0.0,7.877,-18.61,-8.163,0.0,0.292,-1.156,-0.067,1.6,-0.09,-0.438,5.412,0.0,0.0,-0.112,-2.804,-0.393,-0.996,-0.687,-0.286,0.0,0.567,7.342,2.843,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 +house009.xml,153.799,153.799,34.132,34.132,119.668,0.0,0.0,0.0,0.0,0.0,0.0,2.021,0.0,0.0,2.511,0.314,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,0.0,89.994,0.0,23.288,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.798,0.0,5.74,15.632,3.274,0.0,0.0,0.0,0.0,2226.2,2689.0,2689.0,44.133,14.398,0.0,5.112,28.422,4.319,13.052,2.253,18.889,-8.18,0.0,0.0,0.266,15.624,-0.398,8.733,0.0,21.44,0.0,0.0,-17.429,-7.833,0.0,0.24,-0.73,-0.035,0.709,-0.078,-0.206,4.6,0.0,0.0,-0.029,-4.154,-0.395,-0.262,-0.531,-1.82,0.0,0.0,6.091,2.438,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 +house010.xml,153.517,153.517,37.702,37.702,115.815,0.0,0.0,0.0,0.0,0.0,0.0,1.85,0.0,0.0,3.038,0.294,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,0.0,82.38,0.0,26.374,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,77.628,0.0,7.883,18.129,3.212,0.0,0.0,0.0,0.0,2408.6,2877.9,2877.9,45.323,15.822,0.876,4.938,25.515,4.913,9.775,1.266,22.965,-9.184,0.0,0.0,0.928,11.368,-0.399,19.567,0.0,6.404,0.0,4.878,-18.629,-8.154,0.022,0.21,-0.793,-0.102,0.536,-0.077,-0.783,5.164,0.0,0.0,-0.052,-4.233,-0.395,-1.033,-0.682,-0.272,0.0,0.356,7.304,2.833,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 +house011.xml,44.814,44.814,44.814,44.814,0.0,0.0,0.0,0.0,0.0,0.0,7.074,0.655,0.095,0.005,7.99,2.359,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,0.0,14.791,0.1,26.03,9.325,1.123,0.0,0.0,0.0,351.0,4986.1,3124.7,4986.1,18.276,15.746,0.0,2.688,5.4,0.0,0.0,1.633,3.458,-3.183,0.0,0.0,1.874,0.0,-0.392,1.843,0.0,5.4,0.0,4.136,-5.992,-2.075,0.0,1.637,1.117,0.0,0.0,0.144,0.29,5.664,0.0,0.0,0.729,0.0,-0.391,-0.203,-0.181,-1.032,0.0,6.676,8.89,2.83,0.0,1859.4,12951.3,4219.2,0.0,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,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 +house012.xml,35.612,35.612,35.612,35.612,0.0,0.0,0.0,0.0,0.0,0.0,4.758,0.243,0.0,0.0,5.607,1.543,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,0.0,9.956,0.0,16.415,7.782,1.158,0.0,0.0,0.0,0.0,3031.6,2594.9,3031.6,11.058,11.216,0.0,2.374,4.758,0.0,0.0,0.627,2.68,-1.832,0.0,0.0,2.039,0.0,-0.25,1.644,0.0,4.356,0.0,0.318,-4.814,-1.943,0.0,1.715,1.079,0.0,0.0,-0.037,0.46,3.51,0.0,0.0,1.564,0.0,-0.25,-0.164,-0.165,-0.748,0.0,0.277,6.81,2.435,0.0,1574.7,10579.4,3728.3,0.0,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,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 +house013.xml,30.613,30.613,30.613,30.613,0.0,0.0,0.0,0.0,0.0,0.0,2.82,0.151,0.0,0.0,3.883,1.315,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,0.0,5.976,0.0,15.075,6.85,0.853,0.0,0.0,0.0,0.0,2658.8,2142.7,2658.8,9.739,9.617,0.0,1.625,2.851,0.0,0.0,0.652,2.619,-2.12,0.0,0.0,2.086,0.0,-0.28,1.517,0.0,1.059,0.0,1.11,-3.658,-1.505,0.0,1.07,0.367,0.0,0.0,-0.095,0.206,3.809,0.0,0.0,0.527,0.0,-0.28,-0.258,-0.197,-0.284,0.0,1.461,6.382,2.461,1364.1,1290.1,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,12463.0,3002.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9770.0,1072.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 +house014.xml,31.643,31.643,31.643,31.643,0.0,0.0,0.0,0.0,0.0,0.0,3.371,0.199,0.004,0.0,4.252,1.437,7.45,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,0.0,7.454,0.004,16.612,6.85,0.597,0.0,0.0,0.0,0.0,2912.2,2163.5,2912.2,10.982,10.462,0.0,1.7,3.69,0.0,0.0,0.583,3.021,-2.479,0.0,0.0,2.201,0.0,-0.243,1.724,0.0,1.115,0.0,1.48,-3.756,-1.617,0.0,1.129,0.535,0.0,0.0,-0.071,0.531,4.749,0.0,0.0,0.599,0.0,-0.242,-0.254,-0.225,-0.263,0.0,1.673,6.113,2.436,1364.1,1290.1,8207.2,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13627.0,3068.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,10994.0,1065.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 +house015.xml,30.613,30.613,30.613,30.613,0.0,0.0,0.0,0.0,0.0,0.0,2.82,0.151,0.0,0.0,3.883,1.315,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,0.0,5.976,0.0,15.075,6.85,0.853,0.0,0.0,0.0,0.0,2658.8,2142.7,2658.8,9.739,9.617,0.0,1.625,2.851,0.0,0.0,0.652,2.619,-2.12,0.0,0.0,2.086,0.0,-0.28,1.517,0.0,1.059,0.0,1.11,-3.658,-1.505,0.0,1.07,0.367,0.0,0.0,-0.095,0.206,3.809,0.0,0.0,0.527,0.0,-0.28,-0.258,-0.197,-0.284,0.0,1.461,6.382,2.461,1364.1,1290.1,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,12463.0,3002.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9770.0,1072.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 +house016.xml,61.293,61.293,39.792,39.792,0.0,0.0,21.501,0.0,0.0,0.0,7.654,0.545,0.163,0.004,2.949,0.997,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.313,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,0.167,11.49,10.478,0.0,0.0,0.0,1.0,13.0,7481.2,3535.6,7481.2,43.061,18.719,0.0,4.421,10.834,0.618,5.69,0.298,7.711,-7.897,0.0,0.0,0.0,6.738,-0.022,5.729,0.0,3.867,0.0,0.0,-8.639,-4.771,0.0,-0.336,-0.824,-0.019,2.932,-0.046,-1.012,11.998,0.0,0.0,0.0,-8.779,-0.024,-1.359,-1.156,-1.008,0.0,0.0,7.776,3.835,1759.0,1745.5,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 +house017.xml,91.785,91.785,27.882,27.882,63.904,0.0,0.0,0.0,0.0,0.0,0.0,1.281,0.0,0.0,4.468,0.634,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.801,0.0,18.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,41.962,0.0,10.102,11.141,3.418,0.0,0.0,151.0,102.0,1729.7,3470.7,3470.7,60.335,19.014,0.0,5.432,14.64,0.652,10.656,0.362,7.456,-9.321,0.0,0.0,0.719,4.356,0.006,19.789,0.0,1.22,0.0,0.0,-11.23,-2.985,0.0,-0.144,-0.973,-0.02,4.679,-0.06,-1.169,7.472,0.0,0.0,-0.009,-4.801,0.008,-2.769,-0.714,-0.258,0.0,0.0,7.225,1.685,1778.7,1768.3,13969.3,4663.9,0.0,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 +house018.xml,36.119,36.119,36.119,36.119,0.0,0.0,0.0,0.0,0.0,0.0,4.633,0.203,0.0,0.0,2.581,0.793,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.67,0.0,9.436,7.32,0.552,0.0,0.0,0.0,0.0,4666.7,2682.0,4666.7,19.963,10.875,0.0,4.564,4.623,0.0,0.0,0.276,3.696,-3.618,0.0,0.0,2.171,0.0,-0.019,2.615,0.0,2.082,0.0,1.828,-7.059,-2.596,0.0,-0.527,-0.811,0.0,0.0,-0.095,-1.34,4.337,0.0,0.0,-0.013,0.0,-0.014,-0.774,-0.637,-0.75,0.0,1.262,6.864,2.164,1341.9,1264.5,9054.5,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,18202.0,4811.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,11169.0,851.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2619.0,1108.0,711.0,800.0 +house019.xml,130.209,130.209,51.671,51.671,78.537,0.0,0.0,0.0,0.0,0.0,0.0,1.13,0.0,0.0,11.054,3.708,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.763,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.653,0.0,43.614,7.894,1.826,0.0,0.0,193.0,269.0,2783.7,6462.7,6641.8,84.762,45.693,0.0,11.38,44.759,0.65,5.035,1.92,16.406,-14.184,0.0,0.0,0.0,5.96,-0.034,8.884,0.0,1.87,0.0,0.0,-10.303,-5.203,0.0,2.977,10.122,0.15,2.881,0.272,1.601,17.047,0.0,0.0,0.0,-4.234,-0.021,-0.157,-0.149,0.025,0.0,0.0,8.091,3.72,1341.9,1264.5,7836.1,3009.8,0.0,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 +house020.xml,117.148,117.148,56.409,56.409,0.0,0.0,60.739,0.0,0.0,0.0,0.0,0.825,0.0,0.0,12.86,2.828,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,38.597,0.0,18.911,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.553,0.0,33.301,10.477,4.224,0.0,0.0,0.0,0.0,2703.5,6567.9,6567.9,31.201,31.945,0.908,11.003,10.558,1.131,9.759,0.631,15.146,-15.17,0.0,0.0,0.0,7.469,-0.042,15.223,0.0,0.837,0.0,0.0,-15.243,-7.022,0.245,0.175,0.235,0.059,6.425,0.015,-2.454,20.699,0.0,0.0,0.0,-6.637,-0.032,-2.669,-1.637,-0.195,0.0,0.0,13.51,5.728,1759.0,1745.5,13595.6,4567.6,0.0,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 +house021.xml,156.88,156.88,48.118,48.118,108.762,0.0,0.0,0.0,0.0,0.0,0.0,2.008,0.0,0.0,8.074,1.488,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.716,0.0,19.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.771,0.0,17.784,10.989,3.817,0.0,0.0,0.0,0.0,2797.2,4672.2,4672.2,81.253,23.158,0.0,8.265,27.044,2.42,9.184,0.859,21.821,-20.282,0.0,0.0,1.093,9.427,-0.32,26.626,0.0,2.489,0.0,6.098,-14.701,-6.87,0.0,0.047,-0.747,0.016,2.241,-0.09,-2.214,14.693,0.0,0.0,0.041,-6.015,-0.297,-2.377,-0.835,-0.387,0.0,1.235,8.849,3.77,1759.0,1745.5,13752.0,4620.1,0.0,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 +house022.xml,137.924,137.924,48.711,48.711,0.0,89.213,0.0,0.0,0.0,0.0,0.0,2.219,0.0,0.0,8.679,0.907,12.471,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,89.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,73.231,0.0,18.941,10.989,1.48,0.0,0.0,184.0,120.0,2975.8,5338.4,5338.4,90.751,27.308,3.684,3.759,20.623,0.0,0.0,1.487,16.606,-13.135,0.0,0.0,14.625,0.0,-0.265,37.691,0.0,1.156,0.0,0.0,-9.557,-4.288,1.107,0.17,0.612,0.0,0.0,-0.121,-1.433,11.452,0.0,0.0,2.063,0.0,-0.256,-2.686,-0.616,-0.07,0.0,0.0,6.162,2.402,1759.0,1745.5,13751.5,4619.9,0.0,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 +house023.xml,138.0,138.0,62.852,62.852,0.0,75.148,0.0,0.0,0.0,0.0,0.0,1.893,0.0,0.0,5.639,0.785,19.997,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,75.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.739,0.0,16.259,17.1,2.769,0.0,0.0,0.0,0.0,4239.1,4592.7,4592.7,62.493,20.564,0.0,10.208,21.486,1.2,16.451,0.85,9.985,-7.811,0.0,0.0,0.0,6.173,-0.032,23.704,0.0,1.638,0.0,0.0,-15.571,-5.906,0.0,-0.191,-1.022,-0.014,5.967,-0.114,-1.042,9.141,0.0,0.0,0.0,-6.007,-0.009,-2.68,-0.761,-0.315,0.0,0.0,10.086,3.313,2176.1,2226.5,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 +house024.xml,129.339,129.339,43.898,43.898,0.0,85.441,0.0,0.0,0.0,0.0,0.0,2.125,0.0,0.0,5.4,0.496,16.754,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.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,70.439,0.0,15.703,14.653,2.088,0.0,0.0,0.0,0.0,2751.8,3588.0,3620.1,72.051,17.429,0.0,7.179,30.083,0.0,0.0,0.682,7.227,-7.897,0.0,0.0,5.166,0.0,-0.106,25.398,0.0,1.837,0.0,11.755,-8.64,-2.539,0.0,0.586,1.249,0.0,0.0,-0.04,-0.296,6.002,0.0,0.0,0.521,0.0,-0.099,-1.461,-0.332,-0.196,0.0,2.935,5.524,1.377,2176.1,2226.5,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,60193.0,12383.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,22068.0,1589.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7066.0,2630.0,3636.0,800.0 +house025.xml,104.091,104.091,69.05,69.05,35.041,0.0,0.0,0.0,0.0,0.0,6.397,1.052,0.0,0.0,18.525,2.688,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.819,0.0,47.617,8.321,3.83,0.0,0.0,0.0,0.0,4278.9,6845.8,6845.8,36.323,32.839,0.0,3.376,17.544,0.0,0.0,2.164,7.392,-5.637,0.0,0.0,6.835,0.0,-1.322,13.718,0.0,0.41,0.0,4.901,-8.606,-4.03,0.0,1.088,5.672,0.0,0.0,0.437,1.931,12.471,0.0,0.0,5.632,0.0,-1.32,-0.743,-0.165,-0.005,0.0,6.15,11.506,5.233,1341.9,1264.5,3496.9,1343.1,0.0,158000.0,81000.0,33000.0,24.62,91.58,54301.0,20009.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,32309.0,8863.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 +house026.xml,56.708,56.708,24.856,24.856,31.851,0.0,0.0,0.0,0.0,0.0,0.0,0.045,0.0,0.0,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,0.0,17.715,0.0,14.136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,0.0,8.607,2.074,0.0,0.0,0.0,0.0,1553.8,1299.3,1553.8,17.37,0.0,0.0,1.773,6.877,0.233,0.0,0.198,4.408,-2.924,0.0,0.0,7.11,0.0,-0.05,2.498,0.0,3.138,0.0,0.0,-6.701,-3.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1295.2,1282.5,8579.2,3023.4,0.0,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 +house027.xml,72.685,72.685,31.808,31.808,40.877,0.0,0.0,0.0,0.0,0.0,0.0,0.436,0.0,0.0,7.941,1.026,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,0.0,19.929,0.0,17.879,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.773,0.0,23.271,8.564,5.23,0.0,0.0,0.0,0.0,1579.5,3695.5,3695.5,24.05,23.373,0.719,1.784,7.914,0.454,0.0,0.593,4.982,-3.982,0.0,0.0,0.383,3.36,-0.138,1.749,0.0,10.447,0.0,2.033,-8.791,-2.847,0.489,1.123,0.656,0.056,0.0,-0.113,0.132,5.429,0.0,0.0,0.095,3.842,-0.139,-0.365,-0.97,-3.474,0.0,2.62,10.726,3.101,1610.9,1574.7,10579.5,3728.4,0.0,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 +house028.xml,67.95,67.95,30.057,30.057,37.892,0.0,0.0,0.0,0.0,0.0,0.0,0.293,0.0,0.0,7.431,1.533,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,0.0,13.392,0.0,18.114,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.616,0.0,23.425,10.226,3.615,0.0,0.0,0.0,0.0,1526.4,3542.5,3542.5,20.241,23.101,0.776,1.677,7.127,0.354,0.0,0.441,4.982,-3.806,0.0,0.0,0.244,2.53,-0.047,4.065,0.0,4.489,0.0,1.619,-9.073,-2.9,0.604,1.216,-0.632,0.097,0.0,0.058,0.062,6.21,0.0,0.0,0.06,1.836,-0.048,-1.088,-1.222,-1.651,0.0,3.126,11.531,3.238,1857.7,1859.4,12951.6,4219.3,0.0,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 +house029.xml,77.463,77.463,29.992,29.992,47.471,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,6.132,0.863,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,0.0,31.807,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,31.538,0.0,13.477,9.614,0.0,0.0,0.0,0.0,0.0,1614.5,3007.0,3007.0,28.321,13.898,0.0,3.365,14.612,0.393,0.0,0.296,6.291,-6.007,0.0,0.0,6.845,0.0,-0.086,7.294,0.0,7.308,0.0,3.17,-8.385,-3.714,0.0,1.128,-0.713,0.01,0.0,0.069,0.462,5.276,0.0,0.0,-0.446,0.0,-0.081,-0.802,-1.053,-1.528,0.0,1.251,7.159,2.829,1610.9,1574.7,11033.0,3888.2,0.0,77000.0,36000.0,0.0,17.24,91.22,29334.0,2271.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,16288.0,-143.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 +house030.xml,58.703,58.703,17.191,17.191,0.0,0.0,41.512,0.0,0.0,0.0,0.0,0.056,0.0,0.0,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,0.0,23.186,0.0,13.289,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.494,0.0,0.0,7.715,2.206,0.0,0.0,0.0,0.0,1133.9,975.2,1133.9,15.992,0.0,0.0,1.673,10.157,0.486,1.1,1.039,5.182,-3.325,0.0,0.0,0.0,3.437,-0.041,2.741,0.0,5.693,0.0,0.0,-7.831,-2.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,1066.1,992.7,6763.6,2580.9,0.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 +house031.xml,233.805,233.805,50.528,50.528,183.277,0.0,0.0,0.0,0.0,0.0,0.0,3.401,0.0,0.0,13.022,3.414,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.786,0.0,29.094,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.895,0.0,39.786,17.932,5.234,0.0,0.0,48.0,115.0,3051.0,7556.2,7798.1,125.482,49.321,0.0,14.456,42.005,1.048,6.639,1.393,20.051,-16.712,0.0,0.0,1.979,6.048,-0.849,56.89,0.0,0.654,0.0,9.746,-17.118,-6.505,0.0,2.239,5.111,0.174,2.817,0.114,0.456,16.998,0.0,0.0,0.223,-3.626,-0.816,-1.933,-0.385,-0.01,0.0,3.089,11.057,3.856,2593.2,2707.5,18307.9,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 +house032.xml,101.487,101.487,15.551,15.551,85.936,0.0,0.0,0.0,0.0,0.0,0.0,1.509,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.722,0.0,16.238,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.775,0.0,0.0,8.002,4.93,0.0,0.0,153.0,0.0,1348.0,804.3,1348.0,50.432,0.0,0.0,10.402,8.755,1.921,20.407,1.411,8.355,-9.322,0.0,0.0,0.0,4.519,0.02,14.968,0.0,0.624,0.0,0.0,-8.947,-3.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,1341.9,1264.5,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 +house033.xml,107.125,107.125,14.692,14.692,0.0,92.432,0.0,0.0,0.0,0.0,0.0,0.315,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.751,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.86,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.4,771.3,1018.4,48.454,0.0,0.0,19.111,14.553,0.0,0.0,1.0,11.106,-7.521,0.0,0.0,14.621,0.0,-0.352,18.58,0.0,0.792,0.0,0.0,-5.002,-3.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,924.8,0.0,3905.6,1188.1,0.0,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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 +house034.xml,153.733,153.733,43.213,43.213,0.0,0.0,110.52,0.0,0.0,0.0,0.0,0.082,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,89.188,0.0,21.331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.081,0.0,0.0,11.573,5.411,0.0,0.0,0.0,0.0,2949.8,2213.7,2949.8,86.274,0.0,0.0,8.867,26.927,0.0,2.855,1.897,26.618,-26.196,0.0,0.0,10.921,2.675,0.066,34.744,0.0,0.571,0.0,0.0,-16.188,-10.525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1759.0,1745.5,10287.1,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 +house035.xml,63.626,63.626,17.453,17.453,46.173,0.0,0.0,0.0,0.0,0.0,0.0,0.814,0.0,0.0,1.677,0.112,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.705,0.0,9.633,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.855,0.0,2.509,3.92,3.827,0.0,0.0,102.0,0.0,1326.5,1898.9,1898.9,39.115,9.642,0.366,6.131,10.828,0.0,0.0,0.536,6.094,-7.321,0.0,0.0,7.672,0.0,0.004,13.59,0.0,0.49,0.0,0.0,-7.871,-3.466,0.062,-0.545,-1.527,0.0,0.0,-0.08,-1.407,7.072,0.0,0.0,-4.349,0.0,0.009,-2.704,-0.706,-0.127,0.0,0.0,4.962,1.972,924.8,783.5,4210.1,1280.7,0.0,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 +house036.xml,82.453,82.453,25.763,25.763,56.69,0.0,0.0,0.0,0.0,0.0,0.0,0.975,0.0,0.0,5.694,0.997,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.212,0.0,17.478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.228,0.0,14.163,8.219,5.844,0.0,0.0,106.0,124.0,1462.0,3174.5,3174.5,31.777,16.794,5.509,2.255,3.97,0.0,0.0,1.823,6.801,-7.195,0.0,0.0,20.974,0.0,-0.007,7.401,0.0,0.554,0.0,0.0,-6.439,-3.437,1.613,0.139,0.0,0.0,0.0,-0.21,-0.869,5.705,0.0,0.0,2.519,0.0,-0.006,-0.73,-0.392,-0.059,0.0,0.0,4.34,2.012,1341.9,1264.5,6447.0,2476.3,0.0,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 +house037.xml,88.391,88.391,21.781,21.781,0.0,66.61,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,50.453,0.0,16.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,37.433,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1456.9,1117.9,1456.9,29.69,0.0,0.0,16.699,11.313,0.0,0.0,1.562,7.649,-10.338,0.0,0.0,6.474,0.0,-0.325,14.697,0.0,0.46,0.0,0.0,-6.828,-3.864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,8324.2,3197.3,0.0,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 +house038.xml,125.43,125.43,51.181,51.181,74.249,0.0,0.0,0.0,0.0,0.0,0.0,1.03,0.0,0.0,13.725,2.677,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,50.217,0.0,24.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,40.172,0.0,30.931,14.715,4.601,0.0,0.0,0.0,223.0,2455.5,5580.8,5639.6,48.31,27.298,0.0,3.652,14.88,0.651,4.465,0.809,12.429,-10.431,0.0,0.0,1.862,2.347,-0.043,22.465,0.0,0.595,0.0,0.0,-10.145,-3.873,0.0,0.845,2.598,0.14,2.252,0.018,0.918,12.753,0.0,0.0,0.337,-0.579,-0.032,-0.576,-0.139,0.005,0.0,0.0,8.63,3.035,2176.1,2226.5,14642.0,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 +house039.xml,99.857,99.857,24.033,24.033,75.825,0.0,0.0,0.0,0.0,0.0,0.0,0.146,0.0,0.0,0.0,0.0,5.141,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.138,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.881,0.0,0.0,14.272,1.132,0.0,0.0,0.0,0.0,1709.3,1461.4,1709.3,50.008,0.0,0.0,14.208,5.385,0.0,0.0,2.509,16.124,-13.538,0.0,0.0,13.991,0.0,-0.042,13.242,0.0,0.556,0.0,0.0,-4.143,-2.844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2176.1,2226.5,17537.7,5211.7,0.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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 +house040.xml,101.583,101.583,23.52,23.52,78.063,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,7.373,0.0,0.651,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.704,0.0,17.359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.188,0.0,0.0,8.002,5.509,0.0,0.0,0.0,0.0,1751.6,1153.8,1751.6,62.322,0.0,11.265,5.616,22.28,0.0,4.302,2.094,12.881,-12.508,0.0,0.0,2.036,3.382,-0.096,19.721,0.0,0.612,0.0,0.0,-10.087,-4.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 +house041.xml,258.918,258.918,47.054,47.054,211.864,0.0,0.0,0.0,0.0,0.0,0.0,4.162,0.0,0.0,2.508,0.245,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,0.0,185.31,0.0,26.555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174.611,0.0,4.466,15.632,5.04,0.0,0.0,105.0,0.0,3249.4,4610.9,4610.9,77.757,23.918,0.0,11.261,45.049,3.518,35.041,3.141,38.863,-20.773,0.0,0.0,4.608,17.348,-0.578,64.096,0.0,2.766,0.0,0.0,-20.295,-10.998,0.0,0.122,-2.113,-0.121,1.638,-0.218,-2.819,9.454,0.0,0.0,-0.354,-5.262,-0.575,-3.419,-0.97,-0.253,0.0,0.0,6.553,2.945,1857.7,1859.4,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 +house042.xml,231.047,231.047,39.979,39.979,191.067,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,0.0,1.697,0.064,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,0.0,166.624,0.0,24.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,163.83,0.0,2.581,15.632,3.23,0.0,0.0,0.0,0.0,2758.2,3044.8,3044.8,88.115,19.036,0.0,9.174,39.854,4.013,43.723,2.65,34.226,-19.416,0.0,0.0,2.449,14.521,-0.354,56.232,0.0,1.751,0.0,0.0,-19.239,-7.617,0.0,0.218,-1.429,-0.057,2.845,-0.146,-2.942,5.8,0.0,0.0,-0.261,-4.927,-0.35,-2.751,-0.582,-0.14,0.0,0.0,5.472,1.922,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 +house043.xml,158.433,158.433,29.934,29.934,128.499,0.0,0.0,0.0,0.0,0.0,0.0,2.465,0.0,0.0,1.914,0.107,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,0.0,108.596,0.0,19.903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.438,0.0,2.697,13.084,2.209,0.0,0.0,0.0,0.0,1987.8,2760.3,2760.3,54.538,13.381,0.0,3.168,23.196,2.294,33.783,5.576,22.938,-10.008,0.0,0.0,0.549,9.916,-0.296,28.945,0.0,1.578,0.0,0.0,-14.399,-5.171,0.0,0.043,-0.806,-0.089,1.681,-0.346,-2.008,4.659,0.0,0.0,-0.068,-3.583,-0.295,-1.563,-0.499,-0.142,0.0,0.0,4.425,1.391,1610.9,1574.7,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 +house044.xml,226.525,226.525,43.421,43.421,183.104,0.0,0.0,0.0,0.0,0.0,0.0,4.701,0.0,0.0,2.001,0.182,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,0.0,160.533,0.0,22.572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.152,0.0,3.422,13.084,4.455,0.0,0.0,0.0,0.0,3092.7,3545.9,3545.9,80.961,18.73,4.37,6.899,36.505,9.235,19.259,2.757,18.188,-11.677,0.0,0.0,12.916,15.073,-0.492,61.922,0.0,1.436,0.0,0.0,-18.082,-10.281,0.25,0.46,-1.344,-0.105,1.199,-0.116,-0.764,5.624,0.0,0.0,-1.119,-4.82,-0.489,-2.642,-0.448,-0.098,0.0,0.0,5.246,2.674,1610.9,1574.7,12168.1,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 +house045.xml,152.395,152.395,35.192,35.192,117.204,0.0,0.0,0.0,0.0,0.0,0.0,2.775,0.0,0.0,2.364,0.293,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,0.0,94.75,0.0,22.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.031,0.0,3.955,13.084,4.364,0.0,0.0,0.0,0.0,2316.2,3025.6,3025.6,47.196,12.955,3.573,3.08,15.119,2.29,32.747,1.135,18.522,-12.215,1.044,-0.408,0.086,12.611,-0.249,20.639,0.0,10.932,0.0,0.0,-14.635,-7.011,-0.01,0.008,-1.075,-0.123,0.921,-0.085,-1.422,6.252,-0.067,0.396,-0.013,-4.06,-0.248,-1.175,-0.888,-1.254,0.0,0.0,4.853,2.054,1610.9,1574.7,12168.2,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 +house046.xml,25.009,25.009,25.009,25.009,0.0,0.0,0.0,0.0,0.0,0.0,5.323,0.442,0.265,0.009,3.752,1.043,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,0.0,13.797,0.274,12.909,4.305,0.617,0.0,0.0,0.0,0.0,3837.5,2404.7,3837.5,16.151,13.164,0.0,2.519,3.833,0.0,0.0,0.327,2.231,-1.648,0.0,0.0,-0.155,0.0,-0.301,7.957,0.0,0.377,0.0,2.742,-3.562,-0.481,0.0,1.265,2.525,0.0,0.0,0.024,0.772,2.453,0.0,0.0,-0.154,0.0,-0.299,-0.473,-0.141,0.018,0.0,1.819,4.609,0.549,596.8,442.2,5543.5,2208.6,0.0,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,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 +house047.xml,20.762,20.762,14.481,14.481,6.281,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.602,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,0.0,6.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.105,0.0,1.556,4.203,0.0,0.0,0.0,0.0,0.0,873.4,976.6,976.6,4.758,2.585,0.0,-0.001,0.775,0.127,0.0,0.0,1.726,-0.559,0.0,0.0,0.0,1.374,-0.01,1.573,0.0,4.971,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.1,0.032,0.0,0.0,-0.066,0.798,0.0,0.0,0.0,-1.125,-0.01,-0.23,-0.245,-1.381,0.0,-0.0,3.276,0.409,251.7,442.2,5772.6,1524.2,0.0,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,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 +house048.xml,91.383,91.383,39.98,39.98,51.403,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,13.088,3.821,0.0,0.0,0.0,3.691,0.085,0.498,3.005,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,0.0,35.467,0.0,12.598,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.708,0.0,52.275,7.253,2.657,0.0,0.0,0.0,0.0,1538.7,5443.5,5443.5,42.003,33.474,1.023,2.631,12.005,0.0,0.0,0.803,4.609,-2.524,0.0,0.0,0.056,2.012,-0.563,6.783,0.0,4.188,0.0,6.411,-7.337,-1.493,1.319,0.986,9.248,0.0,0.0,0.562,3.662,4.27,0.0,0.0,0.074,10.05,-0.551,0.504,-0.456,1.906,0.0,7.079,11.653,2.198,130.3,817.7,11617.6,3495.1,0.0,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,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 +house049.xml,33.117,33.117,29.621,29.621,3.497,0.0,0.0,0.0,0.0,0.0,7.736,0.047,0.0,0.0,5.052,0.124,2.632,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.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,6.898,0.0,30.734,4.262,1.318,0.0,0.0,0.0,38.0,4645.5,2196.0,4645.5,13.151,17.333,0.0,1.367,4.346,0.0,0.0,0.0,4.228,-5.799,0.0,0.0,0.0,1.257,-0.08,2.646,0.0,1.844,0.0,0.0,-2.544,-0.463,0.0,1.688,7.217,0.0,0.0,0.0,2.962,9.868,0.0,0.0,0.0,3.497,-0.08,-0.044,-2.986,0.698,0.0,0.0,7.434,1.011,728.6,567.4,7487.0,928.5,0.0,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,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 +house050.xml,51.771,51.771,22.077,22.077,29.694,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.0,0.0,2.085,0.381,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,0.0,15.778,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.412,0.0,5.89,8.572,0.0,0.0,0.0,0.0,0.0,1156.6,2822.0,2822.0,11.088,17.378,0.0,4.153,6.538,0.0,0.0,2.036,5.174,-4.145,0.0,0.0,4.905,0.0,-0.163,2.675,0.0,3.682,0.0,1.888,-10.201,-1.222,0.0,-0.32,-0.352,0.0,0.0,-0.402,0.241,4.091,0.0,0.0,-1.016,0.0,-0.162,-0.569,-1.254,-0.777,0.0,0.649,5.335,0.56,1689.0,437.0,10674.9,2994.2,0.0,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,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index ed8e11b143..87fdf5457a 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -1,379 +1,379 @@ HPXML,Bills: Total (USD),Bills: Electricity: Fixed (USD),Bills: Electricity: Energy (USD),Bills: Electricity: PV Credit (USD),Bills: Electricity: Total (USD),Bills: Natural Gas: Fixed (USD),Bills: Natural Gas: Energy (USD),Bills: Natural Gas: Total (USD),Bills: Fuel Oil: Fixed (USD),Bills: Fuel Oil: Energy (USD),Bills: Fuel Oil: Total (USD),Bills: Propane: Fixed (USD),Bills: Propane: Energy (USD),Bills: Propane: Total (USD),Bills: Wood Cord: Fixed (USD),Bills: Wood Cord: Energy (USD),Bills: Wood Cord: Total (USD),Bills: Wood Pellets: Fixed (USD),Bills: Wood Pellets: Energy (USD),Bills: Wood Pellets: Total (USD),Bills: Coal: Fixed (USD),Bills: Coal: Energy (USD),Bills: Coal: Total (USD),Tiered: Total (USD),Tiered: Electricity: Fixed (USD),Tiered: Electricity: Energy (USD),Tiered: Electricity: PV Credit (USD),Tiered: Electricity: Total (USD),Tiered: Natural Gas: Fixed (USD),Tiered: Natural Gas: Energy (USD),Tiered: Natural Gas: Total (USD),Tiered: Fuel Oil: Fixed (USD),Tiered: Fuel Oil: Energy (USD),Tiered: Fuel Oil: Total (USD),Tiered: Propane: Fixed (USD),Tiered: Propane: Energy (USD),Tiered: Propane: Total (USD),Tiered: Wood Cord: Fixed (USD),Tiered: Wood Cord: Energy (USD),Tiered: Wood Cord: Total (USD),Tiered: Wood Pellets: Fixed (USD),Tiered: Wood Pellets: Energy (USD),Tiered: Wood Pellets: Total (USD),Tiered: Coal: Fixed (USD),Tiered: Coal: Energy (USD),Tiered: Coal: Total (USD),TOU: Total (USD),TOU: Electricity: Fixed (USD),TOU: Electricity: Energy (USD),TOU: Electricity: PV Credit (USD),TOU: Electricity: Total (USD),TOU: Natural Gas: Fixed (USD),TOU: Natural Gas: Energy (USD),TOU: Natural Gas: Total (USD),TOU: Fuel Oil: Fixed (USD),TOU: Fuel Oil: Energy (USD),TOU: Fuel Oil: Total (USD),TOU: Propane: Fixed (USD),TOU: Propane: Energy (USD),TOU: Propane: Total (USD),TOU: Wood Cord: Fixed (USD),TOU: Wood Cord: Energy (USD),TOU: Wood Cord: Total (USD),TOU: Wood Pellets: Fixed (USD),TOU: Wood Pellets: Energy (USD),TOU: Wood Pellets: Total (USD),TOU: Coal: Fixed (USD),TOU: Coal: Energy (USD),TOU: Coal: Total (USD),Tiered and TOU: Total (USD),Tiered and TOU: Electricity: Fixed (USD),Tiered and TOU: Electricity: Energy (USD),Tiered and TOU: Electricity: PV Credit (USD),Tiered and TOU: Electricity: Total (USD),Tiered and TOU: Natural Gas: Fixed (USD),Tiered and TOU: Natural Gas: Energy (USD),Tiered and TOU: Natural Gas: Total (USD),Tiered and TOU: Fuel Oil: Fixed (USD),Tiered and TOU: Fuel Oil: Energy (USD),Tiered and TOU: Fuel Oil: Total (USD),Tiered and TOU: Propane: Fixed (USD),Tiered and TOU: Propane: Energy (USD),Tiered and TOU: Propane: Total (USD),Tiered and TOU: Wood Cord: Fixed (USD),Tiered and TOU: Wood Cord: Energy (USD),Tiered and TOU: Wood Cord: Total (USD),Tiered and TOU: Wood Pellets: Fixed (USD),Tiered and TOU: Wood Pellets: Energy (USD),Tiered and TOU: Wood Pellets: Total (USD),Tiered and TOU: Coal: Fixed (USD),Tiered and TOU: Coal: Energy (USD),Tiered and TOU: Coal: Total (USD),Real-Time Pricing: Total (USD),Real-Time Pricing: Electricity: Fixed (USD),Real-Time Pricing: Electricity: Energy (USD),Real-Time Pricing: Electricity: PV Credit (USD),Real-Time Pricing: Electricity: Total (USD),Real-Time Pricing: Natural Gas: Fixed (USD),Real-Time Pricing: Natural Gas: Energy (USD),Real-Time Pricing: Natural Gas: Total (USD),Real-Time Pricing: Fuel Oil: Fixed (USD),Real-Time Pricing: Fuel Oil: Energy (USD),Real-Time Pricing: Fuel Oil: Total (USD),Real-Time Pricing: Propane: Fixed (USD),Real-Time Pricing: Propane: Energy (USD),Real-Time Pricing: Propane: Total (USD),Real-Time Pricing: Wood Cord: Fixed (USD),Real-Time Pricing: Wood Cord: Energy (USD),Real-Time Pricing: Wood Cord: Total (USD),Real-Time Pricing: Wood Pellets: Fixed (USD),Real-Time Pricing: Wood Pellets: Energy (USD),Real-Time Pricing: Wood Pellets: Total (USD),Real-Time Pricing: Coal: Fixed (USD),Real-Time Pricing: Coal: Energy (USD),Real-Time Pricing: Coal: Total (USD),Simple: Total (USD),Simple: Electricity: Fixed (USD),Simple: Electricity: Energy (USD),Simple: Electricity: PV Credit (USD),Simple: Electricity: Total (USD),Simple: Natural Gas: Fixed (USD),Simple: Natural Gas: Energy (USD),Simple: Natural Gas: Total (USD),Simple: Fuel Oil: Fixed (USD),Simple: Fuel Oil: Energy (USD),Simple: Fuel Oil: Total (USD),Simple: Propane: Fixed (USD),Simple: Propane: Energy (USD),Simple: Propane: Total (USD),Simple: Wood Cord: Fixed (USD),Simple: Wood Cord: Energy (USD),Simple: Wood Cord: Total (USD),Simple: Wood Pellets: Fixed (USD),Simple: Wood Pellets: Energy (USD),Simple: Wood Pellets: Total (USD),Simple: Coal: Fixed (USD),Simple: Coal: Energy (USD),Simple: Coal: Total (USD),Detailed: Total (USD),Detailed: Electricity: Fixed (USD),Detailed: Electricity: Energy (USD),Detailed: Electricity: PV Credit (USD),Detailed: Electricity: Total (USD),Detailed: Natural Gas: Fixed (USD),Detailed: Natural Gas: Energy (USD),Detailed: Natural Gas: Total (USD),Detailed: Fuel Oil: Fixed (USD),Detailed: Fuel Oil: Energy (USD),Detailed: Fuel Oil: Total (USD),Detailed: Propane: Fixed (USD),Detailed: Propane: Energy (USD),Detailed: Propane: Total (USD),Detailed: Wood Cord: Fixed (USD),Detailed: Wood Cord: Energy (USD),Detailed: Wood Cord: Total (USD),Detailed: Wood Pellets: Fixed (USD),Detailed: Wood Pellets: Energy (USD),Detailed: Wood Pellets: Total (USD),Detailed: Coal: Fixed (USD),Detailed: Coal: Energy (USD),Detailed: Coal: 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: Energy (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: Energy (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Total (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Wholesale Excess Rate: Propane: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Propane: Energy (USD),Net Metering w/ Wholesale Excess Rate: Propane: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Wholesale Excess Rate: Coal: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Coal: Energy (USD),Net Metering w/ Wholesale Excess Rate: Coal: 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: Energy (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: Energy (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Total (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Retail Excess Rate: Propane: Fixed (USD),Net Metering w/ Retail Excess Rate: Propane: Energy (USD),Net Metering w/ Retail Excess Rate: Propane: Total (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Total (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Retail Excess Rate: Coal: Fixed (USD),Net Metering w/ Retail Excess Rate: Coal: Energy (USD),Net Metering w/ Retail Excess Rate: Coal: Total (USD),Feed-In Tariff: Total (USD),Feed-In Tariff: Electricity: Fixed (USD),Feed-In Tariff: Electricity: Energy (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: Energy (USD),Feed-In Tariff: Natural Gas: Total (USD),Feed-In Tariff: Fuel Oil: Fixed (USD),Feed-In Tariff: Fuel Oil: Energy (USD),Feed-In Tariff: Fuel Oil: Total (USD),Feed-In Tariff: Propane: Fixed (USD),Feed-In Tariff: Propane: Energy (USD),Feed-In Tariff: Propane: Total (USD),Feed-In Tariff: Wood Cord: Fixed (USD),Feed-In Tariff: Wood Cord: Energy (USD),Feed-In Tariff: Wood Cord: Total (USD),Feed-In Tariff: Wood Pellets: Fixed (USD),Feed-In Tariff: Wood Pellets: Energy (USD),Feed-In Tariff: Wood Pellets: Total (USD),Feed-In Tariff: Coal: Fixed (USD),Feed-In Tariff: Coal: Energy (USD),Feed-In Tariff: Coal: Total (USD) -base-appliances-coal.xml,1816.09,144.0,1220.28,0.0,1364.28,144.0,234.82,378.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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1519.1,144.0,1217.42,0.0,1361.42,144.0,13.68,157.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier-ief-whole-home.xml,1520.68,144.0,1219.22,0.0,1363.22,144.0,13.46,157.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1516.97,144.0,1214.56,0.0,1358.56,144.0,14.41,158.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier.xml,1518.22,144.0,1216.69,0.0,1360.69,144.0,13.53,157.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-gas.xml,1794.65,144.0,1220.28,0.0,1364.28,144.0,286.37,430.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-modified.xml,1876.16,144.0,1355.48,0.0,1499.48,144.0,232.68,376.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-none.xml,1592.3,144.0,1041.89,0.0,1185.89,144.0,262.41,406.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-oil-location-miami-fl.xml,2019.3,144.0,1711.68,0.0,1855.68,0.0,0.0,0.0,0.0,163.62,163.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-oil.xml,1913.29,144.0,1220.28,0.0,1364.28,144.0,234.82,378.82,0.0,170.19,170.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-propane-location-portland-or.xml,1528.54,144.0,888.48,0.0,1032.48,144.0,208.88,352.88,0.0,0.0,0.0,0.0,143.18,143.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-propane.xml,1875.18,144.0,1220.28,0.0,1364.28,144.0,234.82,378.82,0.0,0.0,0.0,0.0,132.08,132.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1816.09,144.0,1220.28,0.0,1364.28,144.0,234.82,378.82,0.0,0.0,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1880.04,144.0,1313.15,0.0,1457.15,144.0,278.89,422.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-conditioned.xml,2022.76,144.0,1485.62,0.0,1629.62,144.0,249.14,393.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-flat.xml,1787.49,144.0,1288.51,0.0,1432.51,144.0,210.98,354.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-radiant-barrier.xml,1545.67,144.0,1213.97,0.0,1357.97,144.0,43.7,187.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-unvented-insulated-roof.xml,1818.41,144.0,1294.27,0.0,1438.27,144.0,236.14,380.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-vented.xml,1834.62,144.0,1306.81,0.0,1450.81,144.0,239.81,383.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-battery-scheduled.xml,1912.09,144.0,1382.24,0.0,1526.24,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-battery.xml,1849.21,144.0,1319.36,0.0,1463.36,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-2stories.xml,1738.01,144.0,1269.36,0.0,1413.36,144.0,180.65,324.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-atticroof-cathedral.xml,2299.05,144.0,1366.45,0.0,1510.45,144.0,644.6,788.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-infil-compartmentalization-test.xml,1522.06,144.0,1098.74,0.0,1242.74,144.0,135.32,279.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached.xml,1522.06,144.0,1098.74,0.0,1242.74,144.0,135.32,279.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,1323.83,144.0,910.72,0.0,1054.72,144.0,125.11,269.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1284.68,144.0,926.87,0.0,1070.87,144.0,69.81,213.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,1463.52,144.0,910.91,0.0,1054.91,144.0,264.61,408.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,1208.15,144.0,905.72,0.0,1049.72,144.0,14.43,158.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,1225.66,144.0,925.84,0.0,1069.84,144.0,11.82,155.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-infil-compartmentalization-test.xml,1258.54,144.0,964.64,0.0,1108.64,144.0,5.9,149.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-residents-1.xml,984.25,144.0,682.45,0.0,826.45,144.0,13.8,157.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,1275.16,144.0,979.76,0.0,1123.76,144.0,7.4,151.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,1301.63,144.0,1005.73,0.0,1149.73,144.0,7.9,151.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1286.56,144.0,991.55,0.0,1135.55,144.0,7.01,151.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,1478.36,144.0,1184.6,0.0,1328.6,144.0,5.76,149.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1292.84,144.0,999.08,0.0,1143.08,144.0,5.76,149.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,1127.74,144.0,833.58,0.0,977.58,144.0,6.16,150.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,1128.93,144.0,834.35,0.0,978.35,144.0,6.58,150.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1128.75,144.0,834.88,0.0,978.88,144.0,5.87,149.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,1131.88,144.0,839.62,0.0,983.62,144.0,4.26,148.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,1128.8,144.0,834.96,0.0,978.96,144.0,5.84,149.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,1127.44,144.0,834.64,0.0,978.64,144.0,4.8,148.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,1122.01,144.0,978.01,0.0,1122.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,1146.92,144.0,1002.92,0.0,1146.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1132.06,144.0,988.06,0.0,1132.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1324.25,144.0,1180.25,0.0,1324.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1139.97,144.0,995.97,0.0,1139.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-generator.xml,1642.11,144.0,962.4,0.0,1106.4,144.0,7.16,151.16,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1175.96,144.0,1031.96,0.0,1175.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,1058.78,144.0,609.48,0.0,753.48,144.0,161.3,305.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-laundry-room.xml,1031.55,144.0,602.54,0.0,746.54,144.0,141.01,285.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,1630.77,144.0,1128.08,0.0,1272.08,144.0,214.69,358.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,1348.3,144.0,1003.45,0.0,1147.45,144.0,56.85,200.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-mechvent.xml,1327.28,144.0,998.89,0.0,1142.89,144.0,40.39,184.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-pv.xml,360.31,144.0,962.4,-897.25,209.15,144.0,7.16,151.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,1073.03,144.0,643.41,0.0,787.41,144.0,141.62,285.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-water-heater.xml,1032.81,144.0,603.19,0.0,747.19,144.0,141.62,285.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily.xml,1257.56,144.0,962.4,0.0,1106.4,144.0,7.16,151.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-combi-tankless-outside.xml,1395.79,144.0,786.38,0.0,930.38,144.0,321.41,465.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-combi-tankless.xml,1408.85,144.0,786.73,0.0,930.73,144.0,334.12,478.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-2-speed.xml,1322.95,144.0,1178.95,0.0,1322.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-gshp.xml,1520.79,144.0,1376.79,0.0,1520.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-hpwh.xml,1667.45,144.0,1089.75,0.0,1233.75,144.0,289.7,433.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-tankless.xml,1383.44,144.0,1239.44,0.0,1383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-var-speed.xml,1296.03,144.0,1152.03,0.0,1296.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater.xml,1384.17,144.0,1240.17,0.0,1384.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-dwhr.xml,1766.98,144.0,1237.13,0.0,1381.13,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-detailed-setpoints.xml,1425.13,144.0,786.31,0.0,930.31,144.0,350.82,494.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-coal.xml,1815.09,144.0,1225.09,0.0,1369.09,144.0,229.01,373.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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1528.11,144.0,1226.81,0.0,1370.81,144.0,13.3,157.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier-ief-whole-home.xml,1529.57,144.0,1228.48,0.0,1372.48,144.0,13.09,157.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier-multiple.xml,1526.0,144.0,1223.98,0.0,1367.98,144.0,14.02,158.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier.xml,1527.12,144.0,1225.97,0.0,1369.97,144.0,13.15,157.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-gas.xml,1793.64,144.0,1225.09,0.0,1369.09,144.0,280.55,424.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-modified.xml,1875.23,144.0,1360.33,0.0,1504.33,144.0,226.9,370.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1590.82,144.0,1046.53,0.0,1190.53,144.0,256.29,400.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2011.54,144.0,1703.92,0.0,1847.92,0.0,0.0,0.0,0.0,163.62,163.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-oil.xml,1912.29,144.0,1225.09,0.0,1369.09,144.0,229.01,373.01,0.0,170.19,170.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-propane-location-portland-or.xml,1529.99,144.0,891.57,0.0,1035.57,144.0,207.24,351.24,0.0,0.0,0.0,0.0,143.18,143.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-propane.xml,1874.18,144.0,1225.09,0.0,1369.09,144.0,229.01,373.01,0.0,0.0,0.0,0.0,132.08,132.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-wood.xml,1815.09,144.0,1225.09,0.0,1369.09,144.0,229.01,373.01,0.0,0.0,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1878.48,144.0,1319.09,0.0,1463.09,144.0,271.39,415.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-conditioned.xml,2021.66,144.0,1494.33,0.0,1638.33,144.0,239.33,383.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-flat.xml,1786.42,144.0,1292.31,0.0,1436.31,144.0,206.11,350.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1554.26,144.0,1223.24,0.0,1367.24,144.0,43.02,187.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-unvented-insulated-roof.xml,1817.22,144.0,1298.12,0.0,1442.12,144.0,231.1,375.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-vented.xml,1833.17,144.0,1311.22,0.0,1455.22,144.0,233.95,377.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-battery-scheduled.xml,1910.9,144.0,1386.97,0.0,1530.97,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-battery.xml,1848.02,144.0,1324.09,0.0,1468.09,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached-2stories.xml,1737.42,144.0,1275.68,0.0,1419.68,144.0,173.74,317.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached-atticroof-cathedral.xml,2297.7,144.0,1370.31,0.0,1514.31,144.0,639.39,783.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached-infil-compartmentalization-test.xml,1521.67,144.0,1102.28,0.0,1246.28,144.0,131.39,275.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached.xml,1521.67,144.0,1102.28,0.0,1246.28,144.0,131.39,275.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,1323.11,144.0,911.97,0.0,1055.97,144.0,123.14,267.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-adjacent-to-multiple.xml,1285.45,144.0,930.19,0.0,1074.19,144.0,67.26,211.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,1462.02,144.0,911.97,0.0,1055.97,144.0,262.05,406.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,1209.0,144.0,907.05,0.0,1051.05,144.0,13.95,157.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,1227.06,144.0,927.81,0.0,1071.81,144.0,11.25,155.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-infil-compartmentalization-test.xml,1263.99,144.0,970.51,0.0,1114.51,144.0,5.48,149.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-residents-1.xml,988.29,144.0,687.36,0.0,831.36,144.0,12.93,156.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,1278.78,144.0,983.89,0.0,1127.89,144.0,6.89,150.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,1307.87,144.0,1012.52,0.0,1156.52,144.0,7.35,151.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,1290.46,144.0,995.93,0.0,1139.93,144.0,6.53,150.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,1493.48,144.0,1200.12,0.0,1344.12,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1298.88,144.0,1005.52,0.0,1149.52,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,1126.74,144.0,833.21,0.0,977.21,144.0,5.53,149.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,1127.81,144.0,833.9,0.0,977.9,144.0,5.91,149.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,1127.64,144.0,834.37,0.0,978.37,144.0,5.27,149.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,1130.45,144.0,838.62,0.0,982.62,144.0,3.83,147.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,1127.7,144.0,834.45,0.0,978.45,144.0,5.25,149.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,1126.47,144.0,834.16,0.0,978.16,144.0,4.31,148.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,1126.08,144.0,982.08,0.0,1126.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1153.69,144.0,1009.69,0.0,1153.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1136.49,144.0,992.49,0.0,1136.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1339.61,144.0,1195.61,0.0,1339.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1146.41,144.0,1002.41,0.0,1146.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-generator.xml,1647.37,144.0,968.16,0.0,1112.16,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1179.23,144.0,1035.23,0.0,1179.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,1064.1,144.0,615.29,0.0,759.29,144.0,160.81,304.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-laundry-room.xml,1036.62,144.0,608.2,0.0,752.2,144.0,140.42,284.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-mechvent-multiple.xml,1631.56,144.0,1131.17,0.0,1275.17,144.0,212.39,356.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,1352.59,144.0,1008.52,0.0,1152.52,144.0,56.07,200.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-mechvent.xml,1329.87,144.0,1003.09,0.0,1147.09,144.0,38.78,182.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-pv.xml,365.58,144.0,968.16,-897.25,214.92,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-water-heater-recirc.xml,1077.96,144.0,648.99,0.0,792.99,144.0,140.97,284.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-water-heater.xml,1037.74,144.0,608.77,0.0,752.77,144.0,140.97,284.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily.xml,1262.82,144.0,968.16,0.0,1112.16,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-combi-tankless-outside.xml,1390.26,144.0,786.23,0.0,930.23,144.0,316.03,460.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-combi-tankless.xml,1403.23,144.0,786.58,0.0,930.58,144.0,328.65,472.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-2-speed.xml,1325.43,144.0,1181.43,0.0,1325.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-gshp.xml,1512.73,144.0,1368.73,0.0,1512.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1665.5,144.0,1094.12,0.0,1238.12,144.0,283.38,427.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-tankless.xml,1387.9,144.0,1243.9,0.0,1387.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1298.14,144.0,1154.14,0.0,1298.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater.xml,1388.6,144.0,1244.6,0.0,1388.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-dwhr.xml,1765.82,144.0,1241.89,0.0,1385.89,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-detailed-setpoints.xml,1419.62,144.0,786.17,0.0,930.17,144.0,345.45,489.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-indirect-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1441.74,144.0,786.38,0.0,930.38,144.0,367.36,511.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-standbyloss.xml,1429.08,144.0,786.25,0.0,930.25,144.0,354.83,498.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-with-solar-fraction.xml,1342.92,144.0,786.59,0.0,930.59,144.0,268.33,412.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1426.64,144.0,786.32,0.0,930.32,144.0,352.32,496.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-electric.xml,1839.54,144.0,1307.37,0.0,1451.37,144.0,244.17,388.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-gas.xml,1675.73,144.0,986.84,0.0,1130.84,144.0,400.89,544.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-hpwh.xml,1662.66,144.0,1084.85,0.0,1228.85,144.0,289.81,433.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-indirect.xml,1424.54,144.0,786.38,0.0,930.38,144.0,350.16,494.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-low-flow-fixtures.xml,1835.7,144.0,1305.85,0.0,1449.85,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-multiple.xml,1400.72,144.0,857.94,0.0,1001.94,144.0,254.78,398.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-none.xml,1430.42,144.0,900.9,0.0,1044.9,144.0,241.52,385.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-demand.xml,1847.35,144.0,1317.5,0.0,1461.5,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-manual.xml,1831.69,144.0,1301.84,0.0,1445.84,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-nocontrol.xml,2396.02,144.0,1866.17,0.0,2010.17,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-temperature.xml,2215.8,144.0,1685.95,0.0,1829.95,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-timer.xml,2396.02,144.0,1866.17,0.0,2010.17,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-direct-evacuated-tube.xml,1634.48,144.0,1104.63,0.0,1248.63,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-direct-flat-plate.xml,1580.41,144.0,1050.65,0.0,1194.65,144.0,241.76,385.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-direct-ics.xml,1636.62,144.0,1106.77,0.0,1250.77,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-fraction.xml,1632.17,144.0,1099.43,0.0,1243.43,144.0,244.74,388.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1579.84,144.0,1053.83,0.0,1197.83,144.0,238.01,382.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-thermosyphon-flat-plate.xml,1570.19,144.0,1040.43,0.0,1184.43,144.0,241.76,385.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-coal.xml,1753.04,144.0,988.8,0.0,1132.8,144.0,244.18,388.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,232.06,232.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-detailed-setpoints.xml,1848.75,144.0,1318.96,0.0,1462.96,144.0,241.79,385.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-elec-uef.xml,1851.54,144.0,1322.24,0.0,1466.24,144.0,241.3,385.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas-outside.xml,1697.56,144.0,980.98,0.0,1124.98,144.0,428.58,572.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas-uef-fhr.xml,1680.46,144.0,987.43,0.0,1131.43,144.0,405.03,549.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas-uef.xml,1680.46,144.0,987.43,0.0,1131.43,144.0,405.03,549.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas.xml,1684.87,144.0,988.8,0.0,1132.8,144.0,408.07,552.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-detailed-schedules.xml,1639.54,144.0,1053.13,0.0,1197.13,144.0,298.41,442.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1633.58,144.0,1046.78,0.0,1190.78,144.0,298.8,442.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-outside.xml,1765.65,144.0,1231.36,0.0,1375.36,144.0,246.29,390.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1633.58,144.0,1046.78,0.0,1190.78,144.0,298.8,442.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,1570.13,144.0,1021.15,0.0,1165.15,144.0,260.98,404.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-with-solar.xml,1581.5,144.0,1043.9,0.0,1187.9,144.0,249.6,393.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump.xml,1666.96,144.0,1089.96,0.0,1233.96,144.0,289.0,433.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1846.05,144.0,1306.1,0.0,1450.1,144.0,251.95,395.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-model-type-stratified.xml,1835.46,144.0,1301.85,0.0,1445.85,144.0,245.61,389.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-oil.xml,2062.05,144.0,988.8,0.0,1132.8,144.0,244.18,388.18,0.0,541.07,541.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-wood.xml,1753.04,144.0,988.8,0.0,1132.8,144.0,244.18,388.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,232.06,232.06,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-detailed-setpoints.xml,1635.68,144.0,980.98,0.0,1124.98,144.0,366.7,510.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-electric-outside.xml,1861.52,144.0,1327.23,0.0,1471.23,144.0,246.29,390.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1857.61,144.0,1323.32,0.0,1467.32,144.0,246.29,390.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1861.52,144.0,1327.23,0.0,1471.23,144.0,246.29,390.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1619.4,144.0,980.98,0.0,1124.98,144.0,350.42,494.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas-with-solar-fraction.xml,1557.5,144.0,980.98,0.0,1124.98,144.0,288.52,432.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas-with-solar.xml,1544.57,144.0,996.75,0.0,1140.75,144.0,259.82,403.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas.xml,1635.93,144.0,980.98,0.0,1124.98,144.0,366.95,510.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-propane.xml,1824.45,144.0,980.98,0.0,1124.98,144.0,246.29,390.29,0.0,0.0,0.0,0.0,309.18,309.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-2stories-garage.xml,2058.81,144.0,1500.21,0.0,1644.21,144.0,270.6,414.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-2stories.xml,2230.95,144.0,1621.44,0.0,1765.44,144.0,321.51,465.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-1.xml,1672.75,144.0,1121.63,0.0,1265.63,144.0,263.12,407.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-2.xml,1762.25,144.0,1221.79,0.0,1365.79,144.0,252.46,396.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1934.98,144.0,1415.63,0.0,1559.63,144.0,231.35,375.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-5.xml,2020.27,144.0,1511.3,0.0,1655.3,144.0,220.97,364.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-ceilingtypes.xml,2033.84,144.0,1338.67,0.0,1482.67,144.0,407.17,551.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-floortypes.xml,1771.01,144.0,1077.37,0.0,1221.37,144.0,405.64,549.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-garage.xml,1817.48,144.0,1270.33,0.0,1414.33,144.0,259.15,403.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1849.04,144.0,1319.36,0.0,1463.36,144.0,241.68,385.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-cfm-house-pressure.xml,1849.04,144.0,1319.36,0.0,1463.36,144.0,241.68,385.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-cfm50.xml,1849.21,144.0,1319.36,0.0,1463.36,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-ela.xml,1930.51,144.0,1319.93,0.0,1463.93,144.0,322.58,466.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-flue.xml,1864.21,144.0,1319.33,0.0,1463.33,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1930.51,144.0,1319.93,0.0,1463.93,144.0,322.58,466.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-natural-cfm.xml,1930.51,144.0,1319.93,0.0,1463.93,144.0,322.58,466.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-orientations.xml,1850.98,144.0,1318.48,0.0,1462.48,144.0,244.5,388.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-overhangs.xml,1848.85,144.0,1314.14,0.0,1458.14,144.0,246.71,390.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-rooftypes.xml,1844.12,144.0,1313.33,0.0,1457.33,144.0,242.79,386.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-skylights-physical-properties.xml,1904.39,144.0,1359.67,0.0,1503.67,144.0,256.72,400.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-skylights-shading.xml,1873.92,144.0,1350.34,0.0,1494.34,144.0,235.58,379.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-skylights-storms.xml,1874.16,144.0,1347.01,0.0,1491.01,144.0,239.15,383.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1874.12,144.0,1350.69,0.0,1494.69,144.0,235.43,379.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-split-level.xml,1488.51,144.0,1080.79,0.0,1224.79,144.0,119.72,263.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-thermal-mass.xml,1845.95,144.0,1317.67,0.0,1461.67,144.0,240.28,384.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-walltypes.xml,1990.86,144.0,1276.58,0.0,1420.58,144.0,426.28,570.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-natural-ventilation-availability.xml,1813.99,144.0,1283.38,0.0,1427.38,144.0,242.61,386.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-outside.xml,1436.2,144.0,786.23,0.0,930.23,144.0,361.97,505.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-standbyloss.xml,1423.61,144.0,786.11,0.0,930.11,144.0,349.5,493.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-with-solar-fraction.xml,1337.33,144.0,786.44,0.0,930.44,144.0,262.89,406.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect.xml,1421.12,144.0,786.18,0.0,930.18,144.0,346.94,490.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-jacket-electric.xml,1838.33,144.0,1312.13,0.0,1456.13,144.0,238.2,382.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1674.52,144.0,991.61,0.0,1135.61,144.0,394.91,538.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-jacket-hpwh.xml,1660.21,144.0,1088.74,0.0,1232.74,144.0,283.47,427.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-jacket-indirect.xml,1419.03,144.0,786.24,0.0,930.24,144.0,344.79,488.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-low-flow-fixtures.xml,1834.53,144.0,1310.6,0.0,1454.6,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-multiple.xml,1395.06,144.0,857.77,0.0,1001.77,144.0,249.29,393.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1429.23,144.0,905.65,0.0,1049.65,144.0,235.58,379.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-demand.xml,1846.18,144.0,1322.25,0.0,1466.25,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-manual.xml,1830.52,144.0,1306.59,0.0,1450.59,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-nocontrol.xml,2394.82,144.0,1870.89,0.0,2014.89,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-temperature.xml,2214.6,144.0,1690.67,0.0,1834.67,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-timer.xml,2394.82,144.0,1870.89,0.0,2014.89,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-direct-evacuated-tube.xml,1633.32,144.0,1109.39,0.0,1253.39,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-direct-flat-plate.xml,1579.26,144.0,1055.42,0.0,1199.42,144.0,235.84,379.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-direct-ics.xml,1635.47,144.0,1111.54,0.0,1255.54,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-fraction.xml,1630.97,144.0,1104.19,0.0,1248.19,144.0,238.78,382.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-indirect-flat-plate.xml,1578.77,144.0,1058.63,0.0,1202.63,144.0,232.14,376.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-thermosyphon-flat-plate.xml,1569.01,144.0,1045.17,0.0,1189.17,144.0,235.84,379.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-coal.xml,1751.89,144.0,993.6,0.0,1137.6,144.0,238.29,382.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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1847.57,144.0,1323.71,0.0,1467.71,144.0,235.86,379.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-elec-uef.xml,1850.37,144.0,1326.99,0.0,1470.99,144.0,235.38,379.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-gas-outside.xml,1696.34,144.0,985.74,0.0,1129.74,144.0,422.6,566.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-gas-uef-fhr.xml,1679.28,144.0,992.2,0.0,1136.2,144.0,399.08,543.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1679.28,144.0,992.2,0.0,1136.2,144.0,399.08,543.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1683.73,144.0,993.6,0.0,1137.6,144.0,402.13,546.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-detailed-schedules.xml,1637.82,144.0,1057.68,0.0,1201.68,144.0,292.14,436.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1631.83,144.0,1051.29,0.0,1195.29,144.0,292.54,436.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-outside.xml,1764.44,144.0,1236.12,0.0,1380.12,144.0,240.32,384.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-uef.xml,1631.83,144.0,1051.29,0.0,1195.29,144.0,292.54,436.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,1568.7,144.0,1025.78,0.0,1169.78,144.0,254.92,398.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-with-solar.xml,1580.34,144.0,1048.62,0.0,1192.62,144.0,243.72,387.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump.xml,1665.21,144.0,1094.48,0.0,1238.48,144.0,282.73,426.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1844.88,144.0,1310.86,0.0,1454.86,144.0,246.02,390.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-model-type-stratified.xml,1834.25,144.0,1306.6,0.0,1450.6,144.0,239.65,383.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-oil.xml,2060.83,144.0,993.6,0.0,1137.6,144.0,238.29,382.29,0.0,540.94,540.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-wood.xml,1751.89,144.0,993.6,0.0,1137.6,144.0,238.29,382.29,0.0,0.0,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1634.47,144.0,985.74,0.0,1129.74,144.0,360.73,504.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-electric-outside.xml,1860.3,144.0,1331.98,0.0,1475.98,144.0,240.32,384.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-electric-uef.xml,1856.39,144.0,1328.07,0.0,1472.07,144.0,240.32,384.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-electric.xml,1860.3,144.0,1331.98,0.0,1475.98,144.0,240.32,384.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-gas-uef.xml,1618.18,144.0,985.74,0.0,1129.74,144.0,344.44,488.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-gas-with-solar-fraction.xml,1556.29,144.0,985.74,0.0,1129.74,144.0,282.55,426.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-gas-with-solar.xml,1543.41,144.0,1001.52,0.0,1145.52,144.0,253.89,397.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-gas.xml,1634.72,144.0,985.74,0.0,1129.74,144.0,360.98,504.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-propane.xml,1823.24,144.0,985.74,0.0,1129.74,144.0,240.32,384.32,0.0,0.0,0.0,0.0,309.18,309.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-2stories-garage.xml,2059.14,144.0,1509.39,0.0,1653.39,144.0,261.75,405.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-2stories.xml,2230.04,144.0,1630.73,0.0,1774.73,144.0,311.31,455.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-beds-1.xml,1671.23,144.0,1126.23,0.0,1270.23,144.0,257.0,401.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1760.89,144.0,1226.46,0.0,1370.46,144.0,246.43,390.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-beds-4.xml,1934.04,144.0,1420.49,0.0,1564.49,144.0,225.55,369.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-beds-5.xml,2019.52,144.0,1516.23,0.0,1660.23,144.0,215.29,359.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-ceilingtypes.xml,2031.84,144.0,1342.8,0.0,1486.8,144.0,401.04,545.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-floortypes.xml,1770.03,144.0,1081.98,0.0,1225.98,144.0,400.05,544.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-garage.xml,1816.18,144.0,1274.65,0.0,1418.65,144.0,253.53,397.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-ach-house-pressure.xml,1847.85,144.0,1324.09,0.0,1468.09,144.0,235.76,379.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-cfm-house-pressure.xml,1847.85,144.0,1324.09,0.0,1468.09,144.0,235.76,379.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-cfm50.xml,1848.02,144.0,1324.09,0.0,1468.09,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-ela.xml,1928.93,144.0,1324.52,0.0,1468.52,144.0,316.41,460.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-flue.xml,1862.96,144.0,1324.08,0.0,1468.08,144.0,250.88,394.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1928.93,144.0,1324.52,0.0,1468.52,144.0,316.41,460.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-natural-cfm.xml,1928.93,144.0,1324.52,0.0,1468.52,144.0,316.41,460.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-orientations.xml,1849.73,144.0,1323.19,0.0,1467.19,144.0,238.54,382.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-overhangs.xml,1844.87,144.0,1317.82,0.0,1461.82,144.0,239.05,383.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-rooftypes.xml,1842.79,144.0,1317.96,0.0,1461.96,144.0,236.83,380.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-skylights-physical-properties.xml,1903.52,144.0,1364.62,0.0,1508.62,144.0,250.9,394.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1861.25,144.0,1325.76,0.0,1469.76,144.0,247.49,391.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-skylights-storms.xml,1873.38,144.0,1351.99,0.0,1495.99,144.0,233.39,377.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-skylights.xml,1873.39,144.0,1355.68,0.0,1499.68,144.0,229.71,373.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-split-level.xml,1489.74,144.0,1085.51,0.0,1229.51,144.0,116.23,260.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-thermal-mass.xml,1844.6,144.0,1322.36,0.0,1466.36,144.0,234.24,378.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-walltypes.xml,1989.59,144.0,1274.59,0.0,1418.59,144.0,427.0,571.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1812.3,144.0,1287.62,0.0,1431.62,144.0,236.68,380.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-windows-none.xml,1799.9,144.0,1248.41,0.0,1392.41,144.0,263.49,407.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-physical-properties.xml,1934.99,144.0,1323.65,0.0,1467.65,144.0,323.34,467.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-shading-seasons.xml,1846.89,144.0,1319.8,0.0,1463.8,144.0,239.09,383.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-shading.xml,1792.75,144.0,1232.92,0.0,1376.92,144.0,271.83,415.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-storms.xml,1844.13,144.0,1298.11,0.0,1442.11,144.0,258.02,402.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-ambient.xml,1587.2,144.0,1111.47,0.0,1255.47,144.0,187.73,331.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1701.38,144.0,1198.97,0.0,1342.97,144.0,214.41,358.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-belly-wing-no-skirt.xml,1583.15,144.0,1080.64,0.0,1224.64,144.0,214.51,358.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-belly-wing-skirt.xml,1579.42,144.0,1080.94,0.0,1224.94,144.0,210.48,354.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-complex.xml,2088.15,144.0,1367.49,0.0,1511.49,144.0,432.66,576.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-basement-slab-insulation-full.xml,1834.58,144.0,1338.9,0.0,1482.9,144.0,207.68,351.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-basement-slab-insulation.xml,1842.73,144.0,1326.95,0.0,1470.95,144.0,227.78,371.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-basement-wall-insulation.xml,1823.93,144.0,1302.43,0.0,1446.43,144.0,233.5,377.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-crawlspace.xml,1545.79,144.0,1062.24,0.0,1206.24,144.0,195.55,339.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-multiple.xml,1516.12,144.0,1090.29,0.0,1234.29,144.0,137.83,281.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-slab.xml,1476.21,144.0,1075.4,0.0,1219.4,144.0,112.81,256.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement-above-grade.xml,1532.63,144.0,1095.61,0.0,1239.61,144.0,149.02,293.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement-assembly-r.xml,1487.46,144.0,1073.35,0.0,1217.35,144.0,126.11,270.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1561.27,144.0,1062.73,0.0,1206.73,144.0,210.54,354.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement.xml,1517.6,144.0,1091.42,0.0,1235.42,144.0,138.18,282.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unvented-crawlspace.xml,1497.14,144.0,1094.83,0.0,1238.83,144.0,114.31,258.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-vented-crawlspace.xml,1516.37,144.0,1092.87,0.0,1236.87,144.0,135.5,279.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-walkout-basement.xml,1923.01,144.0,1333.25,0.0,1477.25,144.0,301.76,445.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1421.57,144.0,1277.57,0.0,1421.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1826.3,144.0,1682.3,0.0,1826.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1690.55,144.0,1546.55,0.0,1690.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1824.31,144.0,1680.31,0.0,1824.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1828.51,144.0,1684.51,0.0,1828.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed.xml,1826.3,144.0,1682.3,0.0,1826.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-2-speed.xml,1659.55,144.0,1515.55,0.0,1659.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1862.97,144.0,1417.17,0.0,1561.17,144.0,157.8,301.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1868.94,144.0,1374.89,0.0,1518.89,144.0,206.05,350.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,1868.94,144.0,1374.89,0.0,1518.89,144.0,206.05,350.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1866.48,144.0,1420.64,0.0,1564.64,144.0,157.84,301.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1871.5,144.0,1426.79,0.0,1570.79,144.0,156.71,300.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed.xml,1649.73,144.0,1505.73,0.0,1649.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-sizing-controls.xml,1933.78,144.0,1574.88,0.0,1718.88,144.0,70.9,214.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1868.95,144.0,1329.18,0.0,1473.18,144.0,251.77,395.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-coal-only.xml,1560.56,144.0,1125.23,0.0,1269.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,291.33,291.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1937.89,144.0,1793.89,0.0,1937.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-gas-central-ac-1-speed.xml,1823.87,144.0,1327.07,0.0,1471.07,144.0,208.8,352.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-gas-only-pilot.xml,1669.25,144.0,1121.75,0.0,1265.75,144.0,259.5,403.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-gas-only.xml,1616.44,144.0,1121.75,0.0,1265.75,144.0,206.69,350.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-oil-only.xml,1948.51,144.0,1125.23,0.0,1269.23,0.0,0.0,0.0,0.0,679.28,679.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-propane-only.xml,1795.13,144.0,1120.94,0.0,1264.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,530.19,530.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-wood-only.xml,1557.92,144.0,1120.94,0.0,1264.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,292.98,292.98,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-only-1-speed-seer2.xml,1461.74,144.0,1317.74,0.0,1461.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1462.31,144.0,1318.31,0.0,1462.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-only-2-speed.xml,1402.11,144.0,1258.11,0.0,1402.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1376.7,144.0,1232.7,0.0,1376.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1899.66,144.0,1755.66,0.0,1899.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-crankcase-heater-40w.xml,1843.98,144.0,1314.13,0.0,1458.13,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-physical-properties.xml,1933.5,144.0,1328.23,0.0,1472.23,144.0,317.27,461.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-shading-seasons.xml,1847.97,144.0,1325.17,0.0,1469.17,144.0,234.8,378.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-shading.xml,1779.02,144.0,1232.84,0.0,1376.84,144.0,258.18,402.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-storms.xml,1842.82,144.0,1302.59,0.0,1446.59,144.0,252.23,396.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-ambient.xml,1589.19,144.0,1117.65,0.0,1261.65,144.0,183.54,327.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-basement-garage.xml,1701.07,144.0,1203.85,0.0,1347.85,144.0,209.22,353.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-belly-wing-no-skirt.xml,1582.91,144.0,1083.0,0.0,1227.0,144.0,211.91,355.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-belly-wing-skirt.xml,1579.18,144.0,1083.29,0.0,1227.29,144.0,207.89,351.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-complex.xml,2086.48,144.0,1371.94,0.0,1515.94,144.0,426.54,570.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-basement-slab-insulation-full.xml,1833.85,144.0,1344.01,0.0,1488.01,144.0,201.84,345.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-basement-slab-insulation.xml,1841.59,144.0,1331.78,0.0,1475.78,144.0,221.81,365.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-basement-wall-insulation.xml,1823.17,144.0,1307.21,0.0,1451.21,144.0,227.96,371.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-crawlspace.xml,1544.66,144.0,1066.04,0.0,1210.04,144.0,190.62,334.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-multiple.xml,1518.31,144.0,1096.04,0.0,1240.04,144.0,134.27,278.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-slab.xml,1477.71,144.0,1080.31,0.0,1224.31,144.0,109.4,253.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement-above-grade.xml,1534.42,144.0,1101.15,0.0,1245.15,144.0,145.27,289.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement-assembly-r.xml,1489.89,144.0,1079.16,0.0,1223.16,144.0,122.73,266.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1561.44,144.0,1066.88,0.0,1210.88,144.0,206.56,350.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement.xml,1519.83,144.0,1097.27,0.0,1241.27,144.0,134.56,278.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unvented-crawlspace.xml,1500.1,144.0,1100.87,0.0,1244.87,144.0,111.23,255.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-vented-crawlspace.xml,1518.72,144.0,1098.74,0.0,1242.74,144.0,131.98,275.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-walkout-basement.xml,1921.54,144.0,1337.97,0.0,1481.97,144.0,295.57,439.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1426.77,144.0,1282.77,0.0,1426.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1823.44,144.0,1679.44,0.0,1823.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1681.74,144.0,1537.74,0.0,1681.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1821.74,144.0,1677.74,0.0,1821.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1825.57,144.0,1681.57,0.0,1825.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed.xml,1823.44,144.0,1679.44,0.0,1823.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-2-speed.xml,1671.14,144.0,1527.14,0.0,1671.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1867.33,144.0,1422.41,0.0,1566.41,144.0,156.92,300.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1871.74,144.0,1378.99,0.0,1522.99,144.0,204.75,348.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,1871.74,144.0,1378.99,0.0,1522.99,144.0,204.75,348.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1871.1,144.0,1426.13,0.0,1570.13,144.0,156.97,300.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1875.64,144.0,1431.92,0.0,1575.92,144.0,155.72,299.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed.xml,1659.56,144.0,1515.56,0.0,1659.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-sizing-controls.xml,1938.26,144.0,1581.06,0.0,1725.06,144.0,69.2,213.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1860.58,144.0,1329.08,0.0,1473.08,144.0,243.5,387.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-coal-only.xml,1552.76,144.0,1124.96,0.0,1268.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,283.8,283.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-elec-only.xml,1920.34,144.0,1776.34,0.0,1920.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-gas-central-ac-1-speed.xml,1823.88,144.0,1332.44,0.0,1476.44,144.0,203.44,347.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-gas-only-pilot.xml,1663.58,144.0,1121.57,0.0,1265.57,144.0,254.01,398.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-gas-only.xml,1610.92,144.0,1121.57,0.0,1265.57,144.0,201.35,345.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-oil-only.xml,1930.69,144.0,1124.96,0.0,1268.96,0.0,0.0,0.0,0.0,661.73,661.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1781.26,144.0,1120.78,0.0,1264.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,516.48,516.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-wood-only.xml,1550.19,144.0,1120.78,0.0,1264.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,285.41,285.41,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-central-ac-only-1-speed-seer2.xml,1467.21,144.0,1323.21,0.0,1467.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-central-ac-only-1-speed.xml,1467.8,144.0,1323.8,0.0,1467.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-central-ac-only-2-speed.xml,1405.64,144.0,1261.64,0.0,1405.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-central-ac-only-var-speed.xml,1379.75,144.0,1235.75,0.0,1379.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1896.44,144.0,1752.44,0.0,1896.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-crankcase-heater-40w.xml,1842.79,144.0,1318.86,0.0,1462.86,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1933.35,144.0,1531.69,0.0,1675.69,144.0,113.66,257.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1936.13,144.0,1494.14,0.0,1638.14,144.0,153.99,297.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1823.1,144.0,1376.87,0.0,1520.87,144.0,158.23,302.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1832.17,144.0,1389.65,0.0,1533.65,144.0,154.52,298.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1734.7,144.0,1327.43,0.0,1471.43,144.0,119.27,263.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-area-fractions.xml,2496.29,144.0,1708.98,0.0,1852.98,144.0,499.31,643.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-area-multipliers.xml,1837.6,144.0,1314.69,0.0,1458.69,144.0,234.91,378.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-buried.xml,1813.57,144.0,1305.82,0.0,1449.82,144.0,219.75,363.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-defaults.xml,1933.02,144.0,1491.18,0.0,1635.18,144.0,153.84,297.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-effective-rvalue.xml,1849.14,144.0,1319.33,0.0,1463.33,144.0,241.81,385.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-leakage-cfm50.xml,1840.1,144.0,1315.23,0.0,1459.23,144.0,236.87,380.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-leakage-percent.xml,1867.49,144.0,1326.64,0.0,1470.64,144.0,252.85,396.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1864.01,144.0,1720.01,0.0,1864.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-evap-cooler-furnace-gas.xml,1705.82,144.0,1169.48,0.0,1313.48,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1295.01,144.0,1151.01,0.0,1295.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-evap-cooler-only.xml,1291.95,144.0,1147.95,0.0,1291.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-fireplace-wood-only.xml,1588.58,144.0,1116.36,0.0,1260.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,328.22,328.22,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,1989.07,144.0,1116.36,0.0,1260.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,728.71,728.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-floor-furnace-propane-only.xml,1854.32,144.0,1116.36,0.0,1260.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,593.96,593.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-coal-only.xml,1630.62,144.0,1138.47,0.0,1282.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,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2234.22,144.0,2090.22,0.0,2234.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-elec-only.xml,2082.12,144.0,1938.12,0.0,2082.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-central-ac-2-speed.xml,1801.11,144.0,1271.26,0.0,1415.26,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-central-ac-var-speed.xml,1777.05,144.0,1247.2,0.0,1391.2,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,1494.56,144.0,1125.13,0.0,1269.13,144.0,81.43,225.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only-pilot.xml,1724.25,144.0,1138.47,0.0,1282.47,144.0,297.78,441.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only.xml,1672.34,144.0,1138.47,0.0,1282.47,144.0,245.87,389.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-room-ac.xml,1872.04,144.0,1335.7,0.0,1479.7,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2094.22,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,811.75,811.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-propane-only.xml,1912.48,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,630.01,630.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-wood-only.xml,1630.62,144.0,1138.47,0.0,1282.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,348.15,348.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1931.29,144.0,1530.44,0.0,1674.44,144.0,112.85,256.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1934.46,144.0,1493.83,0.0,1637.83,144.0,152.63,296.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1825.82,144.0,1380.95,0.0,1524.95,144.0,156.87,300.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1833.9,144.0,1392.76,0.0,1536.76,144.0,153.14,297.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1736.49,144.0,1330.51,0.0,1474.51,144.0,117.98,261.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-area-fractions.xml,2491.47,144.0,1718.81,0.0,1862.81,144.0,484.66,628.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-area-multipliers.xml,1836.49,144.0,1319.35,0.0,1463.35,144.0,229.14,373.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-buried.xml,1812.54,144.0,1310.26,0.0,1454.26,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-defaults.xml,1930.25,144.0,1492.3,0.0,1636.3,144.0,149.95,293.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-effective-rvalue.xml,1847.95,144.0,1324.06,0.0,1468.06,144.0,235.89,379.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-leakage-cfm50.xml,1838.95,144.0,1319.9,0.0,1463.9,144.0,231.05,375.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-leakage-percent.xml,1866.21,144.0,1331.53,0.0,1475.53,144.0,246.68,390.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-elec-resistance-only.xml,1848.53,144.0,1704.53,0.0,1848.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-evap-cooler-furnace-gas.xml,1700.15,144.0,1169.87,0.0,1313.87,144.0,242.28,386.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-evap-cooler-only-ducted.xml,1296.0,144.0,1152.0,0.0,1296.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1292.84,144.0,1148.84,0.0,1292.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-fireplace-wood-only.xml,1580.5,144.0,1116.33,0.0,1260.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,320.17,320.17,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-floor-furnace-propane-only-pilot-light.xml,1974.66,144.0,1116.33,0.0,1260.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,714.33,714.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1839.71,144.0,1116.33,0.0,1260.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,579.38,579.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-coal-only.xml,1621.44,144.0,1137.88,0.0,1281.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,339.56,339.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-elec-central-ac-1-speed.xml,2220.07,144.0,2076.07,0.0,2220.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-elec-only.xml,2061.82,144.0,1917.82,0.0,2061.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-central-ac-2-speed.xml,1798.44,144.0,1274.51,0.0,1418.51,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-central-ac-var-speed.xml,1773.91,144.0,1249.98,0.0,1393.98,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,1491.9,144.0,1124.86,0.0,1268.86,144.0,79.04,223.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-only-pilot.xml,1717.69,144.0,1137.88,0.0,1281.88,144.0,291.81,435.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-only.xml,1665.69,144.0,1137.88,0.0,1281.88,144.0,239.81,383.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-room-ac.xml,1871.08,144.0,1340.8,0.0,1484.8,144.0,242.28,386.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-oil-only.xml,2073.62,144.0,1137.88,0.0,1281.88,0.0,0.0,0.0,0.0,791.74,791.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1896.36,144.0,1137.88,0.0,1281.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,614.48,614.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-wood-only.xml,1621.44,144.0,1137.88,0.0,1281.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.56,339.56,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop.xml,1593.41,144.0,1449.41,0.0,1593.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1388.97,144.0,1244.97,0.0,1388.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1602.16,144.0,1458.16,0.0,1602.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1486.02,144.0,1342.02,0.0,1486.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,1519.93,144.0,1375.93,0.0,1519.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1601.47,144.0,1457.47,0.0,1601.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1941.16,144.0,1797.16,0.0,1941.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1753.34,144.0,1609.34,0.0,1753.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1734.42,144.0,1590.42,0.0,1734.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1890.39,144.0,1347.78,0.0,1491.78,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1834.46,144.0,1291.85,0.0,1435.85,144.0,254.61,398.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1810.78,144.0,1268.18,0.0,1412.18,144.0,254.6,398.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-only.xml,1683.54,144.0,1133.54,0.0,1277.54,144.0,262.0,406.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1669.44,144.0,1525.44,0.0,1669.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1392.28,144.0,1248.28,0.0,1392.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1636.52,144.0,1492.52,0.0,1636.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,1368.78,144.0,1224.78,0.0,1368.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,1363.63,144.0,1219.63,0.0,1363.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1343.93,144.0,1199.93,0.0,1343.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1470.2,144.0,1326.2,0.0,1470.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1556.16,144.0,1412.16,0.0,1556.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1540.87,144.0,1396.87,0.0,1540.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1699.19,144.0,1314.99,0.0,1458.99,144.0,96.2,240.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1692.21,144.0,1309.03,0.0,1453.03,144.0,95.18,239.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1881.87,144.0,1305.44,0.0,1449.44,0.0,0.0,0.0,0.0,432.43,432.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1525.19,144.0,1381.19,0.0,1525.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless.xml,1525.19,144.0,1381.19,0.0,1525.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-multiple.xml,2492.27,144.0,1903.15,0.0,2047.15,144.0,75.7,219.7,0.0,125.7,125.7,0.0,99.72,99.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-none.xml,2521.91,144.0,2377.91,0.0,2521.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac-with-heating-electricity.xml,2026.83,144.0,1882.83,0.0,2026.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac-with-heating-natural-gas.xml,1781.03,144.0,1273.0,0.0,1417.0,144.0,220.03,364.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac.xml,1414.41,144.0,1270.41,0.0,1414.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-pthp-heating-capacity-17f.xml,1685.12,144.0,1541.12,0.0,1685.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-pthp.xml,1685.12,144.0,1541.12,0.0,1685.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only-33percent.xml,1329.29,144.0,1185.29,0.0,1329.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1454.0,144.0,1310.0,0.0,1454.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1408.18,144.0,1264.18,0.0,1408.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only.xml,1453.64,144.0,1309.64,0.0,1453.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-with-heating.xml,2067.15,144.0,1923.15,0.0,2067.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-with-reverse-cycle.xml,1685.12,144.0,1541.12,0.0,1685.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-seasons.xml,1845.82,144.0,1317.77,0.0,1461.77,144.0,240.05,384.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints-daily-schedules.xml,1820.2,144.0,1296.93,0.0,1440.93,144.0,235.27,379.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints-daily-setbacks.xml,1817.87,144.0,1302.44,0.0,1446.44,144.0,227.43,371.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints.xml,1619.55,144.0,1251.99,0.0,1395.99,144.0,79.56,223.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-space-heater-gas-only.xml,1578.57,144.0,1116.33,0.0,1260.33,144.0,174.24,318.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-stove-oil-only.xml,2025.2,144.0,1118.79,0.0,1262.79,0.0,0.0,0.0,0.0,762.41,762.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-stove-wood-pellets-only.xml,1589.78,144.0,1118.79,0.0,1262.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,326.99,326.99,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,1810.78,144.0,1303.91,0.0,1447.91,144.0,218.87,362.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-undersized.xml,1669.06,144.0,1216.2,0.0,1360.2,144.0,164.86,308.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-wall-furnace-elec-only.xml,1876.31,144.0,1732.31,0.0,1876.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-ceiling-fans.xml,1863.24,144.0,1333.6,0.0,1477.6,144.0,241.64,385.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-holiday.xml,1856.52,144.0,1326.67,0.0,1470.67,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-kwh-per-year.xml,1961.17,144.0,1451.6,0.0,1595.6,144.0,221.57,365.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-mixed.xml,1855.72,144.0,1325.87,0.0,1469.87,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-none-ceiling-fans.xml,1702.23,144.0,1142.96,0.0,1286.96,144.0,271.27,415.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-none.xml,1688.12,144.0,1128.62,0.0,1272.62,144.0,271.5,415.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-AMY-2012.xml,1912.09,144.0,1279.38,0.0,1423.38,144.0,344.71,488.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-baltimore-md.xml,1592.96,144.0,1170.52,0.0,1314.52,144.0,134.44,278.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop.xml,1579.1,144.0,1435.1,0.0,1579.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1393.78,144.0,1249.78,0.0,1393.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1595.81,144.0,1451.81,0.0,1595.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1474.06,144.0,1330.06,0.0,1474.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,1508.87,144.0,1364.87,0.0,1508.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump.xml,1594.82,144.0,1450.82,0.0,1594.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1936.49,144.0,1792.49,0.0,1936.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1766.48,144.0,1622.48,0.0,1766.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1746.19,144.0,1602.19,0.0,1746.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1889.75,144.0,1353.39,0.0,1497.39,144.0,248.36,392.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1832.63,144.0,1296.27,0.0,1440.27,144.0,248.36,392.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1808.17,144.0,1271.82,0.0,1415.82,144.0,248.35,392.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-only.xml,1676.62,144.0,1133.08,0.0,1277.08,144.0,255.54,399.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1667.95,144.0,1523.95,0.0,1667.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1396.36,144.0,1252.36,0.0,1396.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1646.12,144.0,1502.12,0.0,1646.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,1371.31,144.0,1227.31,0.0,1371.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,1365.77,144.0,1221.77,0.0,1365.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1346.31,144.0,1202.31,0.0,1346.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1476.39,144.0,1332.39,0.0,1476.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ducted.xml,1564.91,144.0,1420.91,0.0,1564.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1547.62,144.0,1403.62,0.0,1547.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1702.28,144.0,1318.9,0.0,1462.9,144.0,95.38,239.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1695.03,144.0,1312.73,0.0,1456.73,144.0,94.3,238.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1882.16,144.0,1309.43,0.0,1453.43,0.0,0.0,0.0,0.0,428.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1533.35,144.0,1389.35,0.0,1533.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless.xml,1533.35,144.0,1389.35,0.0,1533.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-multiple.xml,2487.07,144.0,1904.19,0.0,2048.19,144.0,74.14,218.14,0.0,123.08,123.08,0.0,97.66,97.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-none.xml,2522.31,144.0,2378.31,0.0,2522.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ptac-with-heating-electricity.xml,2015.81,144.0,1871.81,0.0,2015.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ptac-with-heating-natural-gas.xml,1779.92,144.0,1277.48,0.0,1421.48,144.0,214.44,358.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ptac.xml,1418.87,144.0,1274.87,0.0,1418.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-pthp-heating-capacity-17f.xml,1683.26,144.0,1539.26,0.0,1683.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-pthp.xml,1683.26,144.0,1539.26,0.0,1683.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-only-33percent.xml,1331.24,144.0,1187.24,0.0,1331.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-only-ceer.xml,1459.64,144.0,1315.64,0.0,1459.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-only-detailed-setpoints.xml,1413.71,144.0,1269.71,0.0,1413.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-only.xml,1459.27,144.0,1315.27,0.0,1459.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-with-heating.xml,2057.31,144.0,1913.31,0.0,2057.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-with-reverse-cycle.xml,1683.26,144.0,1539.26,0.0,1683.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-seasons.xml,1844.42,144.0,1322.23,0.0,1466.23,144.0,234.19,378.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-setpoints-daily-schedules.xml,1819.52,144.0,1301.63,0.0,1445.63,144.0,229.89,373.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-setpoints-daily-setbacks.xml,1816.82,144.0,1307.2,0.0,1451.2,144.0,221.62,365.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-setpoints.xml,1621.72,144.0,1256.49,0.0,1400.49,144.0,77.23,221.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-space-heater-gas-only.xml,1574.07,144.0,1116.28,0.0,1260.28,144.0,169.79,313.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-stove-oil-only.xml,2006.39,144.0,1118.7,0.0,1262.7,0.0,0.0,0.0,0.0,743.69,743.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-stove-wood-pellets-only.xml,1581.66,144.0,1118.7,0.0,1262.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,318.96,318.96,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,1807.28,144.0,1305.53,0.0,1449.53,144.0,213.75,357.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-undersized.xml,1666.1,144.0,1216.56,0.0,1360.56,144.0,161.54,305.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-wall-furnace-elec-only.xml,1860.52,144.0,1716.52,0.0,1860.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-ceiling-fans.xml,1862.03,144.0,1338.32,0.0,1482.32,144.0,235.71,379.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-holiday.xml,1855.33,144.0,1331.4,0.0,1475.4,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-kwh-per-year.xml,1960.37,144.0,1456.48,0.0,1600.48,144.0,215.89,359.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-mixed.xml,1854.53,144.0,1330.6,0.0,1474.6,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-none-ceiling-fans.xml,1700.63,144.0,1147.55,0.0,1291.55,144.0,265.08,409.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1686.52,144.0,1133.22,0.0,1277.22,144.0,265.3,409.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-AMY-2012.xml,1911.54,144.0,1282.79,0.0,1426.79,144.0,340.75,484.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-baltimore-md.xml,1596.96,144.0,1176.85,0.0,1320.85,144.0,132.11,276.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-location-capetown-zaf.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-dallas-tx.xml,1499.02,144.0,1192.73,0.0,1336.73,144.0,18.29,162.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1705.76,144.0,1107.93,0.0,1251.93,144.0,309.83,453.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-helena-mt.xml,1673.32,144.0,1029.37,0.0,1173.37,144.0,355.95,499.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-honolulu-hi.xml,4504.49,144.0,4360.49,0.0,4504.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-miami-fl.xml,1475.02,144.0,1331.02,0.0,1475.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-phoenix-az.xml,1630.89,144.0,1342.88,0.0,1486.88,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1210.09,144.0,824.06,0.0,968.06,144.0,98.03,242.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-balanced.xml,2124.34,144.0,1387.02,0.0,1531.02,144.0,449.32,593.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-bath-kitchen-fans.xml,1870.53,144.0,1322.74,0.0,1466.74,144.0,259.79,403.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-airflow-fraction-zero.xml,2051.02,144.0,1383.27,0.0,1527.27,144.0,379.75,523.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-dallas-tx.xml,1508.59,144.0,1202.75,0.0,1346.75,144.0,17.84,161.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-duluth-mn.xml,1709.18,144.0,1113.54,0.0,1257.54,144.0,307.64,451.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-helena-mt.xml,1674.67,144.0,1034.18,0.0,1178.18,144.0,352.49,496.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-honolulu-hi.xml,4481.13,144.0,4337.13,0.0,4481.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-miami-fl.xml,1467.88,144.0,1323.88,0.0,1467.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.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1645.96,144.0,1357.95,0.0,1501.95,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1213.47,144.0,828.25,0.0,972.25,144.0,97.22,241.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-balanced.xml,2122.11,144.0,1391.38,0.0,1535.38,144.0,442.73,586.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1869.27,144.0,1327.49,0.0,1471.49,144.0,253.78,397.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-airflow-fraction-zero.xml,2049.18,144.0,1387.94,0.0,1531.94,144.0,373.24,517.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-mechvent-cfis-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-evap-cooler-only-ducted.xml,1397.34,144.0,1253.34,0.0,1397.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,1986.14,144.0,1333.93,0.0,1477.93,144.0,364.21,508.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-supplemental-fan-supply.xml,2009.71,144.0,1334.99,0.0,1478.99,144.0,386.72,530.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis.xml,2061.67,144.0,1380.8,0.0,1524.8,144.0,392.87,536.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-erv-atre-asre.xml,1970.46,144.0,1387.89,0.0,1531.89,144.0,294.57,438.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-erv.xml,1970.5,144.0,1387.89,0.0,1531.89,144.0,294.61,438.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-exhaust-rated-flow-rate.xml,2036.81,144.0,1350.08,0.0,1494.08,144.0,398.73,542.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2036.81,144.0,1350.08,0.0,1494.08,144.0,398.73,542.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1970.55,144.0,1388.01,0.0,1532.01,144.0,294.54,438.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-hrv.xml,1970.59,144.0,1388.01,0.0,1532.01,144.0,294.58,438.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-multiple.xml,2149.74,144.0,1404.44,0.0,1548.44,144.0,457.3,601.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-supply.xml,2023.63,144.0,1352.71,0.0,1496.71,144.0,382.92,526.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-whole-house-fan.xml,1791.22,144.0,1259.46,0.0,1403.46,144.0,243.76,387.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1849.21,144.0,1319.36,0.0,1463.36,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-evap-cooler-only-ducted.xml,1398.02,144.0,1254.02,0.0,1398.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,1984.59,144.0,1338.53,0.0,1482.53,144.0,358.06,502.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-supplemental-fan-supply.xml,2007.74,144.0,1339.5,0.0,1483.5,144.0,380.24,524.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis.xml,2060.22,144.0,1385.43,0.0,1529.43,144.0,386.79,530.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-erv-atre-asre.xml,1968.93,144.0,1392.51,0.0,1536.51,144.0,288.42,432.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-erv.xml,1968.97,144.0,1392.51,0.0,1536.51,144.0,288.46,432.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2034.8,144.0,1354.54,0.0,1498.54,144.0,392.26,536.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-exhaust.xml,2034.8,144.0,1354.54,0.0,1498.54,144.0,392.26,536.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-hrv-asre.xml,1969.03,144.0,1392.63,0.0,1536.63,144.0,288.4,432.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-hrv.xml,1969.07,144.0,1392.63,0.0,1536.63,144.0,288.44,432.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-multiple.xml,2146.73,144.0,1408.6,0.0,1552.6,144.0,450.13,594.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-supply.xml,2021.65,144.0,1357.16,0.0,1501.16,144.0,376.49,520.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-whole-house-fan.xml,1788.95,144.0,1263.11,0.0,1407.11,144.0,237.84,381.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-additional-properties.xml,1848.02,144.0,1324.09,0.0,1468.09,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv-detailed-only.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,766.71,108.0,1261.65,-988.78,380.86,144.0,241.85,385.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,685.41,108.0,783.24,-591.68,299.56,144.0,241.85,385.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,682.17,108.0,751.38,-563.06,296.32,144.0,241.85,385.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,645.83,108.0,707.18,-555.2,259.98,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv-mixed.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,862.47,144.0,1319.36,-986.74,476.62,144.0,241.85,385.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,766.71,108.0,1261.65,-988.78,380.86,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,629.51,465.0,1264.29,-1482.92,246.37,132.0,251.14,383.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,98.55,465.0,1264.29,-2013.87,-284.59,132.0,251.14,383.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,-324.27,210.0,1264.29,-2181.7,-707.41,132.0,251.14,383.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,1803.43,144.0,1264.29,0.0,1408.29,144.0,251.14,395.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-defaults.xml,1073.19,144.0,1156.23,-713.7,586.53,144.0,342.66,486.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-emissions.xml,892.52,144.0,1349.29,-986.62,506.67,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators-battery-scheduled.xml,2299.42,144.0,1382.24,0.0,1526.24,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators-battery.xml,2236.54,144.0,1319.36,0.0,1463.36,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators.xml,2236.54,144.0,1319.36,0.0,1463.36,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-ground-conductivity.xml,1822.54,144.0,1316.42,0.0,1460.42,144.0,218.12,362.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-loads-large-uncommon.xml,3692.47,144.0,2510.26,0.0,2654.26,144.0,743.94,887.94,0.0,0.0,0.0,0.0,67.83,67.83,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3052.47,144.0,2380.0,0.0,2524.0,144.0,214.63,358.63,0.0,87.4,87.4,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1500.61,144.0,906.92,0.0,1050.92,144.0,305.69,449.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,1238.88,144.0,941.51,0.0,1085.51,144.0,9.37,153.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-neighbor-shading.xml,1870.95,144.0,1307.23,0.0,1451.23,144.0,275.72,419.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-shielding-of-home.xml,1849.15,144.0,1324.44,0.0,1468.44,144.0,236.71,380.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-usage-multiplier.xml,3013.64,144.0,1863.4,0.0,2007.4,144.0,726.99,870.99,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-ah.xml,892.52,144.0,1349.29,-986.62,506.67,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-garage.xml,862.93,144.0,1302.32,-986.62,459.71,144.0,259.22,403.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-round-trip-efficiency.xml,942.24,144.0,1399.02,-986.63,556.39,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-scheduled.xml,926.13,144.0,1382.24,-985.96,540.28,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery.xml,892.52,144.0,1349.29,-986.62,506.67,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators-battery-scheduled.xml,1012.91,144.0,1382.24,-1286.5,239.73,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators-battery.xml,980.26,144.0,1350.25,-1287.17,207.08,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators.xml,949.25,144.0,1319.36,-1287.29,176.07,144.0,331.9,475.9,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv.xml,862.47,144.0,1319.36,-986.74,476.62,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-0-runperiod-1-month.xml,128.93,12.0,15.82,0.0,27.82,12.0,89.11,101.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-0.xml,921.81,144.0,266.37,0.0,410.37,144.0,367.44,511.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1-misc-loads-large-uncommon.xml,2787.99,144.0,1908.19,0.0,2052.19,144.0,441.53,585.53,0.0,0.0,0.0,0.0,70.81,70.81,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1-misc-loads-large-uncommon2.xml,2522.05,144.0,1819.16,0.0,1963.16,144.0,244.19,388.19,0.0,91.24,91.24,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1.xml,1593.48,144.0,1041.14,0.0,1185.14,144.0,264.34,408.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-5.xml,1332.73,144.0,1469.54,-743.14,870.4,144.0,318.33,462.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1870.03,144.0,1328.3,0.0,1472.3,144.0,253.73,397.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-mixed-timesteps-power-outage.xml,1392.56,144.0,1051.79,0.0,1195.79,144.0,52.77,196.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-mixed-timesteps.xml,1637.97,144.0,1262.22,0.0,1406.22,144.0,87.75,231.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,1861.75,144.0,1325.29,0.0,1469.29,144.0,248.46,392.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,1554.97,144.0,1110.34,0.0,1254.34,144.0,156.63,300.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-year-round.xml,921.81,144.0,266.37,0.0,410.37,144.0,367.44,511.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,1709.92,144.0,1132.04,0.0,1276.04,144.0,289.88,433.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1859.89,144.0,1323.69,0.0,1467.69,144.0,248.2,392.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints-daily-schedules.xml,1820.19,144.0,1296.92,0.0,1440.92,144.0,235.27,379.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints-daily-setbacks.xml,1817.86,144.0,1302.43,0.0,1446.43,144.0,227.43,371.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints.xml,1619.55,144.0,1251.99,0.0,1395.99,144.0,79.56,223.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage-natvent-available.xml,1722.08,144.0,1191.96,0.0,1335.96,144.0,242.12,386.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage-natvent-unavailable.xml,1728.15,144.0,1198.36,0.0,1342.36,144.0,241.79,385.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage.xml,1725.3,144.0,1193.87,0.0,1337.87,144.0,243.43,387.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-vacancy-year-round.xml,921.81,144.0,266.37,0.0,410.37,144.0,367.44,511.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-vacancy.xml,1700.25,144.0,1124.26,0.0,1268.26,144.0,287.99,431.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple.xml,1851.98,144.0,1320.67,0.0,1464.67,144.0,243.31,387.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-calendar-year-custom.xml,1848.18,144.0,1318.26,0.0,1462.26,144.0,241.92,385.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-daylight-saving-custom.xml,1849.22,144.0,1319.36,0.0,1463.36,144.0,241.86,385.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-daylight-saving-disabled.xml,1848.48,144.0,1318.77,0.0,1462.77,144.0,241.71,385.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-runperiod-1-month.xml,199.77,12.0,107.04,0.0,119.04,12.0,68.73,80.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-temperature-capacitance-multiplier.xml,1845.31,144.0,1315.51,0.0,1459.51,144.0,241.8,385.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1870.05,144.0,1328.16,0.0,1472.16,144.0,253.89,397.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1868.97,144.0,1327.83,0.0,1471.83,144.0,253.14,397.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins.xml,1858.43,144.0,1323.46,0.0,1467.46,144.0,246.97,390.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-30-mins.xml,1854.74,144.0,1321.61,0.0,1465.61,144.0,245.13,389.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base.xml,1849.21,144.0,1319.36,0.0,1463.36,144.0,241.85,385.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-bills-pv-detailed-only.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,764.63,108.0,1266.56,-989.86,384.7,144.0,235.93,379.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,682.76,108.0,786.51,-591.68,302.83,144.0,235.93,379.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,679.46,108.0,753.86,-562.32,299.53,144.0,235.93,379.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,643.06,108.0,710.33,-555.2,263.13,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-bills-pv-mixed.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,861.28,144.0,1324.09,-986.74,481.35,144.0,235.93,379.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,764.63,108.0,1266.56,-989.86,384.7,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-bills-pv.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624.68,465.0,1268.82,-1486.13,247.69,132.0,244.99,376.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,96.94,465.0,1268.82,-2013.87,-280.05,132.0,244.99,376.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,-325.89,210.0,1268.82,-2181.7,-702.88,132.0,244.99,376.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 +base-misc-bills.xml,1801.81,144.0,1268.82,0.0,1412.82,144.0,244.99,388.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-defaults.xml,1070.54,144.0,1159.43,-713.71,589.72,144.0,336.82,480.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-emissions.xml,891.25,144.0,1353.94,-986.62,511.32,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators-battery-scheduled.xml,2298.22,144.0,1386.97,0.0,1530.97,144.0,325.97,469.97,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators-battery.xml,2235.34,144.0,1324.09,0.0,1468.09,144.0,325.97,469.97,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators.xml,2235.34,144.0,1324.09,0.0,1468.09,144.0,325.97,469.97,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-ground-conductivity.xml,1821.58,144.0,1321.3,0.0,1465.3,144.0,212.28,356.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-loads-large-uncommon.xml,3692.53,144.0,2515.37,0.0,2659.37,144.0,738.89,882.89,0.0,0.0,0.0,0.0,67.83,67.83,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3052.53,144.0,2385.11,0.0,2529.11,144.0,209.58,353.58,0.0,87.4,87.4,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1498.71,144.0,911.41,0.0,1055.41,144.0,299.3,443.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-neighbor-shading-bldgtype-multifamily.xml,1243.28,144.0,946.43,0.0,1090.43,144.0,8.85,152.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-neighbor-shading.xml,1894.53,144.0,1314.6,0.0,1458.6,144.0,291.93,435.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-shielding-of-home.xml,1848.13,144.0,1329.29,0.0,1473.29,144.0,230.84,374.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-usage-multiplier.xml,3012.85,144.0,1868.31,0.0,2012.31,144.0,721.29,865.29,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,891.25,144.0,1353.94,-986.62,511.32,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-garage.xml,861.53,144.0,1306.55,-986.62,463.93,144.0,253.6,397.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-round-trip-efficiency.xml,940.84,144.0,1403.54,-986.63,560.91,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-scheduled.xml,924.94,144.0,1386.97,-985.96,545.01,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery.xml,891.25,144.0,1353.94,-986.62,511.32,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators-battery-scheduled.xml,1011.71,144.0,1386.97,-1286.5,244.46,144.0,325.97,469.97,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators-battery.xml,979.11,144.0,1355.03,-1287.17,211.86,144.0,325.97,469.97,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators.xml,948.05,144.0,1324.09,-1287.29,180.8,144.0,325.97,469.97,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv.xml,861.28,144.0,1324.09,-986.74,481.35,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-0-runperiod-1-month.xml,128.19,12.0,15.78,0.0,27.78,12.0,88.41,100.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-0.xml,919.48,144.0,270.79,0.0,414.79,144.0,360.69,504.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-1-misc-loads-large-uncommon.xml,2787.09,144.0,1913.03,0.0,2057.03,144.0,435.79,579.79,0.0,0.0,0.0,0.0,70.81,70.81,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-1-misc-loads-large-uncommon2.xml,2521.16,144.0,1824.0,0.0,1968.0,144.0,238.46,382.46,0.0,91.24,91.24,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-1.xml,1591.96,144.0,1045.73,0.0,1189.73,144.0,258.23,402.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-5.xml,1329.98,144.0,1472.46,-743.14,873.31,144.0,312.67,456.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-all-10-mins.xml,1869.07,144.0,1333.16,0.0,1477.16,144.0,247.91,391.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,1395.76,144.0,1056.43,0.0,1200.43,144.0,51.33,195.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-mixed-timesteps.xml,1640.11,144.0,1266.79,0.0,1410.79,144.0,85.32,229.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,1860.59,144.0,1330.02,0.0,1474.02,144.0,242.57,386.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,1555.16,144.0,1115.16,0.0,1259.16,144.0,152.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-year-round.xml,919.48,144.0,270.79,0.0,414.79,144.0,360.69,504.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,1708.67,144.0,1136.79,0.0,1280.79,144.0,283.88,427.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1858.76,144.0,1328.45,0.0,1472.45,144.0,242.31,386.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-setpoints-daily-schedules.xml,1819.52,144.0,1301.63,0.0,1445.63,144.0,229.89,373.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-setpoints-daily-setbacks.xml,1816.82,144.0,1307.2,0.0,1451.2,144.0,221.62,365.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-setpoints.xml,1621.72,144.0,1256.49,0.0,1400.49,144.0,77.23,221.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-power-outage-natvent-available.xml,1719.81,144.0,1195.63,0.0,1339.63,144.0,236.18,380.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-power-outage-natvent-unavailable.xml,1725.98,144.0,1202.13,0.0,1346.13,144.0,235.85,379.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-power-outage.xml,1723.04,144.0,1197.57,0.0,1341.57,144.0,237.47,381.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-vacancy-year-round.xml,919.48,144.0,270.79,0.0,414.79,144.0,360.69,504.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-vacancy.xml,1698.94,144.0,1129.0,0.0,1273.0,144.0,281.94,425.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple.xml,1850.75,144.0,1325.4,0.0,1469.4,144.0,237.35,381.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-calendar-year-custom.xml,1846.95,144.0,1322.96,0.0,1466.96,144.0,235.99,379.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-daylight-saving-custom.xml,1848.03,144.0,1324.09,0.0,1468.09,144.0,235.94,379.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-daylight-saving-disabled.xml,1847.3,144.0,1323.5,0.0,1467.5,144.0,235.8,379.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-runperiod-1-month.xml,199.04,12.0,107.0,0.0,119.0,12.0,68.04,80.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-temperature-capacitance-multiplier.xml,1844.05,144.0,1320.19,0.0,1464.19,144.0,235.86,379.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1869.09,144.0,1333.02,0.0,1477.02,144.0,248.07,392.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1868.0,144.0,1332.68,0.0,1476.68,144.0,247.32,391.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins.xml,1857.47,144.0,1328.31,0.0,1472.31,144.0,241.16,385.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-30-mins.xml,1853.74,144.0,1326.45,0.0,1470.45,144.0,239.29,383.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base.xml,1848.02,144.0,1324.09,0.0,1468.09,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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_sizing.csv b/workflow/tests/base_results/results_sizing.csv index c665f5a6e7..aa4db98aa0 100644 --- a/workflow/tests/base_results/results_sizing.csv +++ b/workflow/tests/base_results/results_sizing.csv @@ -1,197 +1,393 @@ HPXML,HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h) -base-hvac-autosizeair-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-ACCA.xml,0.0,19922.0,0.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-HERS.xml,0.0,19922.0,0.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-MaxLoad.xml,0.0,19922.0,0.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS.xml,33029.0,33029.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad.xml,65908.0,65908.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad.xml,65908.0,0.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,33029.0,33029.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,65908.0,65908.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS.xml,33029.0,33029.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad.xml,65908.0,65908.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,33029.0,33029.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,65908.0,65908.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,24186.0,24186.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,33416.0,33416.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,65567.0,65567.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA.xml,25997.0,25997.0,23640.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS.xml,33628.0,33628.0,23640.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad.xml,33628.0,33628.0,23640.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA.xml,25997.0,25997.0,23640.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS.xml,33628.0,33628.0,23640.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad.xml,33628.0,33628.0,23640.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA.xml,21623.0,21623.0,23640.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-HERS.xml,33628.0,33628.0,23640.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-MaxLoad.xml,33628.0,33628.0,23640.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2-sizing-methodology-ACCA.xml,21623.0,21623.0,23640.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2-sizing-methodology-HERS.xml,33628.0,33628.0,23640.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2-sizing-methodology-MaxLoad.xml,33628.0,33628.0,23640.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA.xml,25997.0,25997.0,32235.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS.xml,33628.0,33628.0,32235.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad.xml,33628.0,33628.0,32235.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,26367.0,26367.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,33628.0,33628.0,31147.0 -base-hvac-autosizeair-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,50423.0,50423.0,31147.0 -base-hvac-autosizeboiler-coal-only.xml,23640.0,0.0,0.0 -base-hvac-autosizeboiler-elec-only.xml,23640.0,0.0,0.0 -base-hvac-autosizeboiler-gas-central-ac-1-speed.xml,23640.0,19922.0,0.0 -base-hvac-autosizeboiler-gas-only-pilot.xml,23640.0,0.0,0.0 -base-hvac-autosizeboiler-gas-only.xml,23640.0,0.0,0.0 -base-hvac-autosizeboiler-oil-only.xml,23640.0,0.0,0.0 -base-hvac-autosizeboiler-propane-only.xml,23640.0,0.0,0.0 -base-hvac-autosizeboiler-wood-only.xml,23640.0,0.0,0.0 -base-hvac-autosizecentral-ac-only-1-speed-seer2.xml,0.0,19922.0,0.0 -base-hvac-autosizecentral-ac-only-1-speed.xml,0.0,19922.0,0.0 -base-hvac-autosizecentral-ac-only-2-speed.xml,0.0,20155.0,0.0 -base-hvac-autosizecentral-ac-only-var-speed.xml,0.0,20283.0,0.0 -base-hvac-autosizecentral-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA.xml,31147.0,19922.0,31147.0 -base-hvac-autosizecentral-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS.xml,31147.0,19922.0,31147.0 -base-hvac-autosizecentral-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad.xml,65908.0,19922.0,31147.0 -base-hvac-autosizecrankcase-heater-40w.xml,32235.0,19922.0,0.0 -base-hvac-autosizedse.xml,23640.0,14272.0,0.0 -base-hvac-autosizedual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 -base-hvac-autosizedual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,33029.0,33029.0,31147.0 -base-hvac-autosizedual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,33029.0,33029.0,31147.0 -base-hvac-autosizedual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 -base-hvac-autosizedual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,33029.0,33029.0,31147.0 -base-hvac-autosizedual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,33029.0,33029.0,31147.0 -base-hvac-autosizedual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,24186.0,24186.0,31147.0 -base-hvac-autosizedual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,33416.0,33416.0,31147.0 -base-hvac-autosizedual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,33416.0,33416.0,31147.0 -base-hvac-autosizedual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,21623.0,21623.0,31147.0 -base-hvac-autosizedual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,33628.0,33628.0,31147.0 -base-hvac-autosizedual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,33628.0,33628.0,31147.0 -base-hvac-autosizedual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,17355.0,17355.0,26182.0 -base-hvac-autosizedual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,26139.0,26139.0,26182.0 -base-hvac-autosizedual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,26139.0,26139.0,26182.0 -base-hvac-autosizeducts-area-fractions.xml,71259.0,90590.0,0.0 -base-hvac-autosizeducts-area-multipliers.xml,31447.0,19520.0,0.0 -base-hvac-autosizeducts-buried.xml,28612.0,16741.0,0.0 -base-hvac-autosizeducts-defaults.xml,28212.0,14272.0,0.0 -base-hvac-autosizeducts-effective-rvalue.xml,32230.0,19917.0,0.0 -base-hvac-autosizeducts-leakage-cfm50.xml,34496.0,21577.0,0.0 -base-hvac-autosizeducts-leakage-percent.xml,32660.0,21920.0,0.0 -base-hvac-autosizeelec-resistance-only.xml,23640.0,0.0,0.0 -base-hvac-autosizeevap-cooler-furnace-gas.xml,32235.0,13458.0,0.0 -base-hvac-autosizeevap-cooler-only-ducted.xml,0.0,15717.0,0.0 -base-hvac-autosizeevap-cooler-only.xml,0.0,13458.0,0.0 -base-hvac-autosizefireplace-wood-only.xml,23640.0,0.0,0.0 -base-hvac-autosizefloor-furnace-propane-only-pilot-light.xml,23640.0,0.0,0.0 -base-hvac-autosizefloor-furnace-propane-only.xml,23640.0,0.0,0.0 -base-hvac-autosizefurnace-coal-only.xml,32235.0,0.0,0.0 -base-hvac-autosizefurnace-elec-central-ac-1-speed.xml,32235.0,19922.0,0.0 -base-hvac-autosizefurnace-elec-only.xml,32235.0,0.0,0.0 -base-hvac-autosizefurnace-gas-central-ac-2-speed.xml,32235.0,20155.0,0.0 -base-hvac-autosizefurnace-gas-central-ac-var-speed.xml,32235.0,20283.0,0.0 -base-hvac-autosizefurnace-gas-only-detailed-setpoints.xml,32235.0,0.0,0.0 -base-hvac-autosizefurnace-gas-only-pilot.xml,32235.0,0.0,0.0 -base-hvac-autosizefurnace-gas-only.xml,32235.0,0.0,0.0 -base-hvac-autosizefurnace-gas-room-ac.xml,32235.0,14272.0,0.0 -base-hvac-autosizefurnace-oil-only.xml,32235.0,0.0,0.0 -base-hvac-autosizefurnace-propane-only.xml,32235.0,0.0,0.0 -base-hvac-autosizefurnace-wood-only.xml,32235.0,0.0,0.0 -base-hvac-autosizefurnace-x3-dse.xml,23876.0,14272.0,0.0 -base-hvac-autosizegeothermal-loop-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0 -base-hvac-autosizegeothermal-loop-sizing-methodology-HERS.xml,33439.0,33439.0,31147.0 -base-hvac-autosizegeothermal-loop-sizing-methodology-MaxLoad.xml,33439.0,33439.0,31147.0 -base-hvac-autosizeground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,24222.0,0.0 -base-hvac-autosizeground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,24222.0,0.0 -base-hvac-autosizeground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,24222.0,0.0 -base-hvac-autosizeground-to-air-heat-pump-ground-diffusivity-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0 -base-hvac-autosizeground-to-air-heat-pump-ground-diffusivity-sizing-methodology-HERS.xml,33439.0,33439.0,31147.0 -base-hvac-autosizeground-to-air-heat-pump-ground-diffusivity-sizing-methodology-MaxLoad.xml,33439.0,33439.0,31147.0 -base-hvac-autosizeground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0 -base-hvac-autosizeground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0 -base-hvac-autosizeground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,31147.0,0.0,31147.0 -base-hvac-autosizeground-to-air-heat-pump-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0 -base-hvac-autosizeground-to-air-heat-pump-sizing-methodology-HERS.xml,33439.0,33439.0,31147.0 -base-hvac-autosizeground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,33439.0,33439.0,31147.0 -base-hvac-autosizeground-to-air-heat-pump-soil-moisture-type-sizing-methodology-ACCA.xml,29335.0,29335.0,29335.0 -base-hvac-autosizeground-to-air-heat-pump-soil-moisture-type-sizing-methodology-HERS.xml,31692.0,31692.0,29335.0 -base-hvac-autosizeground-to-air-heat-pump-soil-moisture-type-sizing-methodology-MaxLoad.xml,31692.0,31692.0,29335.0 -base-hvac-autosizeinstall-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,25872.0,26949.0,31147.0 -base-hvac-autosizeinstall-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,37299.0,38852.0,31147.0 -base-hvac-autosizeinstall-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,74429.0,77527.0,31147.0 -base-hvac-autosizeinstall-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27281.0,28281.0,31147.0 -base-hvac-autosizeinstall-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,37692.0,39074.0,31147.0 -base-hvac-autosizeinstall-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,73957.0,76669.0,31147.0 -base-hvac-autosizeinstall-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,29743.0,31029.0,31147.0 -base-hvac-autosizeinstall-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,37933.0,39572.0,31147.0 -base-hvac-autosizeinstall-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,56879.0,59333.0,31147.0 -base-hvac-autosizeinstall-quality-furnace-gas-central-ac-1-speed.xml,32235.0,23434.0,0.0 -base-hvac-autosizeinstall-quality-furnace-gas-central-ac-2-speed.xml,32235.0,23567.0,0.0 -base-hvac-autosizeinstall-quality-furnace-gas-central-ac-var-speed.xml,32235.0,23866.0,0.0 -base-hvac-autosizeinstall-quality-furnace-gas-only.xml,32235.0,0.0,0.0 -base-hvac-autosizeinstall-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,35169.0,36836.0,31147.0 -base-hvac-autosizeinstall-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,37758.0,39548.0,31147.0 -base-hvac-autosizeinstall-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,37758.0,39548.0,31147.0 -base-hvac-autosizeinstall-quality-mini-split-air-conditioner-only-ducted.xml,0.0,18073.0,0.0 -base-hvac-autosizeinstall-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,22431.0,23495.0,26182.0 -base-hvac-autosizeinstall-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,29514.0,30914.0,26182.0 -base-hvac-autosizeinstall-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,47246.0,49486.0,26182.0 -base-hvac-autosizemini-split-air-conditioner-only-ducted.xml,0.0,15281.0,0.0 -base-hvac-autosizemini-split-air-conditioner-only-ductless.xml,0.0,13436.0,0.0 -base-hvac-autosizemini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,15281.0,0.0 -base-hvac-autosizemini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,15281.0,0.0 -base-hvac-autosizemini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,15281.0,0.0 -base-hvac-autosizemini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA.xml,26182.0,0.0,26182.0 -base-hvac-autosizemini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS.xml,26182.0,0.0,26182.0 -base-hvac-autosizemini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad.xml,41843.0,0.0,26182.0 -base-hvac-autosizemini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19866.0,19866.0,26182.0 -base-hvac-autosizemini-split-heat-pump-ducted-sizing-methodology-HERS.xml,26139.0,26139.0,26182.0 -base-hvac-autosizemini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,41843.0,41843.0,26182.0 -base-hvac-autosizemini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA.xml,17467.0,17467.0,23640.0 -base-hvac-autosizemini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS.xml,23602.0,23602.0,23640.0 -base-hvac-autosizemini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad.xml,37781.0,37781.0,23640.0 -base-hvac-autosizemini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA.xml,17467.0,17467.0,24589.0 -base-hvac-autosizemini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS.xml,23602.0,23602.0,24589.0 -base-hvac-autosizemini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad.xml,23602.0,23602.0,24589.0 -base-hvac-autosizemini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA.xml,17467.0,17467.0,26570.0 -base-hvac-autosizemini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS.xml,23602.0,23602.0,26570.0 -base-hvac-autosizemini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad.xml,23602.0,23602.0,26570.0 -base-hvac-autosizemini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA.xml,17467.0,17467.0,23640.0 -base-hvac-autosizemini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS.xml,23602.0,23602.0,23640.0 -base-hvac-autosizemini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad.xml,23602.0,23602.0,23640.0 -base-hvac-autosizemini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-ACCA.xml,17467.0,17467.0,0.0 -base-hvac-autosizemini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-HERS.xml,23602.0,23602.0,0.0 -base-hvac-autosizemini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-MaxLoad.xml,37781.0,37781.0,0.0 -base-hvac-autosizemini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,17467.0,17467.0,0.0 -base-hvac-autosizemini-split-heat-pump-ductless-sizing-methodology-HERS.xml,23602.0,23602.0,0.0 -base-hvac-autosizemini-split-heat-pump-ductless-sizing-methodology-MaxLoad.xml,37781.0,37781.0,0.0 -base-hvac-autosizemultiple-sizing-methodology-ACCA.xml,40898.0,28246.0,12676.0 -base-hvac-autosizemultiple-sizing-methodology-HERS.xml,38352.0,25700.0,12676.0 -base-hvac-autosizemultiple-sizing-methodology-MaxLoad.xml,45436.0,32784.0,12676.0 -base-hvac-autosizenone.xml,0.0,0.0,0.0 -base-hvac-autosizeptac-with-heating-electricity.xml,23640.0,14272.0,0.0 -base-hvac-autosizeptac-with-heating-natural-gas.xml,23640.0,14272.0,0.0 -base-hvac-autosizeptac.xml,0.0,14272.0,0.0 -base-hvac-autosizepthp-heating-capacity-17f-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0 -base-hvac-autosizepthp-heating-capacity-17f-sizing-methodology-HERS.xml,25069.0,25069.0,23640.0 -base-hvac-autosizepthp-heating-capacity-17f-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0 -base-hvac-autosizepthp-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0 -base-hvac-autosizepthp-sizing-methodology-HERS.xml,25069.0,25069.0,23640.0 -base-hvac-autosizepthp-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0 -base-hvac-autosizeroom-ac-only-33percent.xml,0.0,4710.0,0.0 -base-hvac-autosizeroom-ac-only-ceer.xml,0.0,14272.0,0.0 -base-hvac-autosizeroom-ac-only-detailed-setpoints.xml,0.0,14272.0,0.0 -base-hvac-autosizeroom-ac-only.xml,0.0,14272.0,0.0 -base-hvac-autosizeroom-ac-with-heating.xml,23640.0,14272.0,0.0 -base-hvac-autosizeroom-ac-with-reverse-cycle-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0 -base-hvac-autosizeroom-ac-with-reverse-cycle-sizing-methodology-HERS.xml,25069.0,25069.0,23640.0 -base-hvac-autosizeroom-ac-with-reverse-cycle-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0 -base-hvac-autosizeseasons.xml,32235.0,19922.0,0.0 -base-hvac-autosizesetpoints-daily-schedules.xml,32235.0,19922.0,0.0 -base-hvac-autosizesetpoints-daily-setbacks.xml,32235.0,19922.0,0.0 -base-hvac-autosizesetpoints.xml,32235.0,19922.0,0.0 -base-hvac-autosizespace-heater-gas-only.xml,23640.0,0.0,0.0 -base-hvac-autosizestove-oil-only.xml,23640.0,0.0,0.0 -base-hvac-autosizestove-wood-pellets-only.xml,23640.0,0.0,0.0 -base-hvac-autosizeundersized-allow-increased-fixed-capacities.xml,28898.0,18434.0,0.0 -base-hvac-autosizeundersized.xml,28898.0,18434.0,0.0 -base-hvac-autosizewall-furnace-elec-only.xml,23640.0,0.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-ACCA.xml,0.0,21310.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-HERS.xml,0.0,18786.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-MaxLoad.xml,0.0,21310.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad.xml,65908.0,65908.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad.xml,65908.0,0.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,65908.0,65908.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad.xml,65908.0,65908.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,65908.0,65908.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,24186.0,24186.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,65567.0,65567.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA.xml,25997.0,25997.0,23640.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS.xml,31147.0,31147.0,23640.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad.xml,33628.0,33628.0,23640.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA.xml,25997.0,25997.0,23640.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS.xml,31147.0,31147.0,23640.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad.xml,33628.0,33628.0,23640.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA.xml,21623.0,21623.0,23640.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-HERS.xml,31147.0,31147.0,23640.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-MaxLoad.xml,33628.0,33628.0,23640.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2-sizing-methodology-ACCA.xml,21623.0,21623.0,23640.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2-sizing-methodology-HERS.xml,31147.0,31147.0,23640.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2-sizing-methodology-MaxLoad.xml,33628.0,33628.0,23640.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA.xml,25997.0,25997.0,32235.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS.xml,31147.0,31147.0,32235.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad.xml,33628.0,33628.0,32235.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,26367.0,26367.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,50423.0,50423.0,31147.0 +denver-hvac-autosize-boiler-coal-only.xml,23640.0,0.0,0.0 +denver-hvac-autosize-boiler-elec-only.xml,23640.0,0.0,0.0 +denver-hvac-autosize-boiler-gas-central-ac-1-speed.xml,23640.0,21310.0,0.0 +denver-hvac-autosize-boiler-gas-only-pilot.xml,23640.0,0.0,0.0 +denver-hvac-autosize-boiler-gas-only.xml,23640.0,0.0,0.0 +denver-hvac-autosize-boiler-oil-only.xml,23640.0,0.0,0.0 +denver-hvac-autosize-boiler-propane-only.xml,23640.0,0.0,0.0 +denver-hvac-autosize-boiler-wood-only.xml,23640.0,0.0,0.0 +denver-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,21310.0,0.0 +denver-hvac-autosize-central-ac-only-1-speed.xml,0.0,21310.0,0.0 +denver-hvac-autosize-central-ac-only-2-speed.xml,0.0,20844.0,0.0 +denver-hvac-autosize-central-ac-only-var-speed.xml,0.0,20283.0,0.0 +denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA.xml,31147.0,21310.0,31147.0 +denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS.xml,31147.0,21310.0,31147.0 +denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad.xml,65908.0,21310.0,31147.0 +denver-hvac-autosize-crankcase-heater-40w.xml,32235.0,21310.0,0.0 +denver-hvac-autosize-dse.xml,23640.0,15266.0,0.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,35330.0,35330.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,35330.0,35330.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,24186.0,24186.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,34558.0,34558.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,21623.0,21623.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,33628.0,33628.0,31147.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,17355.0,17355.0,26182.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,26182.0,26182.0,26182.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,26139.0,26139.0,26182.0 +denver-hvac-autosize-ducts-area-fractions.xml,71259.0,96902.0,0.0 +denver-hvac-autosize-ducts-area-multipliers.xml,31447.0,20880.0,0.0 +denver-hvac-autosize-ducts-buried.xml,28612.0,17907.0,0.0 +denver-hvac-autosize-ducts-defaults.xml,28212.0,14272.0,0.0 +denver-hvac-autosize-ducts-effective-rvalue.xml,32230.0,21305.0,0.0 +denver-hvac-autosize-ducts-leakage-cfm50.xml,34496.0,23080.0,0.0 +denver-hvac-autosize-ducts-leakage-percent.xml,32660.0,23447.0,0.0 +denver-hvac-autosize-elec-resistance-only.xml,23640.0,0.0,0.0 +denver-hvac-autosize-evap-cooler-furnace-gas.xml,32235.0,13458.0,0.0 +denver-hvac-autosize-evap-cooler-only-ducted.xml,0.0,15717.0,0.0 +denver-hvac-autosize-evap-cooler-only.xml,0.0,13458.0,0.0 +denver-hvac-autosize-fireplace-wood-only.xml,23640.0,0.0,0.0 +denver-hvac-autosize-floor-furnace-propane-only-pilot-light.xml,23640.0,0.0,0.0 +denver-hvac-autosize-floor-furnace-propane-only.xml,23640.0,0.0,0.0 +denver-hvac-autosize-furnace-coal-only.xml,32235.0,0.0,0.0 +denver-hvac-autosize-furnace-elec-central-ac-1-speed.xml,32235.0,21310.0,0.0 +denver-hvac-autosize-furnace-elec-only.xml,32235.0,0.0,0.0 +denver-hvac-autosize-furnace-gas-central-ac-2-speed.xml,32235.0,20844.0,0.0 +denver-hvac-autosize-furnace-gas-central-ac-var-speed.xml,32235.0,20283.0,0.0 +denver-hvac-autosize-furnace-gas-only-detailed-setpoints.xml,32235.0,0.0,0.0 +denver-hvac-autosize-furnace-gas-only-pilot.xml,32235.0,0.0,0.0 +denver-hvac-autosize-furnace-gas-only.xml,32235.0,0.0,0.0 +denver-hvac-autosize-furnace-gas-room-ac.xml,32235.0,14272.0,0.0 +denver-hvac-autosize-furnace-oil-only.xml,32235.0,0.0,0.0 +denver-hvac-autosize-furnace-propane-only.xml,32235.0,0.0,0.0 +denver-hvac-autosize-furnace-wood-only.xml,32235.0,0.0,0.0 +denver-hvac-autosize-furnace-x3-dse.xml,23876.0,15266.0,0.0 +denver-hvac-autosize-geothermal-loop-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-geothermal-loop-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-geothermal-loop-sizing-methodology-MaxLoad.xml,38455.0,38455.0,31147.0 +denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,24222.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,18786.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,24222.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-MaxLoad.xml,38455.0,38455.0,31147.0 +denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0 +denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0 +denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,31147.0,0.0,31147.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,38455.0,38455.0,31147.0 +denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-ACCA.xml,29335.0,29335.0,29335.0 +denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-HERS.xml,29335.0,29335.0,29335.0 +denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-MaxLoad.xml,36445.0,36445.0,29335.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,25872.0,26949.0,31147.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,35174.0,36638.0,31147.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,74429.0,77527.0,31147.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27281.0,28281.0,31147.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,35132.0,36420.0,31147.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,73957.0,76669.0,31147.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,29743.0,31029.0,31147.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,35134.0,36650.0,31147.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,56879.0,59333.0,31147.0 +denver-hvac-autosize-install-quality-furnace-gas-central-ac-1-speed.xml,32235.0,25066.0,0.0 +denver-hvac-autosize-install-quality-furnace-gas-central-ac-2-speed.xml,32235.0,24373.0,0.0 +denver-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,32235.0,23866.0,0.0 +denver-hvac-autosize-install-quality-furnace-gas-only.xml,32235.0,0.0,0.0 +denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,35169.0,36836.0,31147.0 +denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,35169.0,36836.0,31147.0 +denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,43421.0,45480.0,31147.0 +denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,18073.0,0.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,22431.0,23495.0,26182.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,29562.0,30964.0,26182.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,47246.0,49486.0,26182.0 +denver-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,15281.0,0.0 +denver-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,13436.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,15281.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,15306.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,15281.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA.xml,26182.0,0.0,26182.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS.xml,26182.0,0.0,26182.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad.xml,41843.0,0.0,26182.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19866.0,19866.0,26182.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,26182.0,26182.0,26182.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,41843.0,41843.0,26182.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA.xml,17467.0,17467.0,23640.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad.xml,37781.0,37781.0,23640.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA.xml,17467.0,17467.0,24589.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS.xml,23640.0,23640.0,24589.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad.xml,23602.0,23602.0,24589.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA.xml,17467.0,17467.0,26570.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS.xml,23640.0,23640.0,26570.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad.xml,23602.0,23602.0,26570.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA.xml,17467.0,17467.0,23640.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad.xml,23602.0,23602.0,23640.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-ACCA.xml,17467.0,17467.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-HERS.xml,23640.0,23640.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-MaxLoad.xml,37781.0,37781.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,17467.0,17467.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-HERS.xml,23640.0,23640.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-MaxLoad.xml,37781.0,37781.0,0.0 +denver-hvac-autosize-multiple-sizing-methodology-ACCA.xml,40898.0,28776.0,12676.0 +denver-hvac-autosize-multiple-sizing-methodology-HERS.xml,37118.0,24996.0,12676.0 +denver-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,46352.0,34230.0,12676.0 +denver-hvac-autosize-none.xml,0.0,0.0,0.0 +denver-hvac-autosize-ptac-with-heating-electricity.xml,23640.0,14272.0,0.0 +denver-hvac-autosize-ptac-with-heating-natural-gas.xml,23640.0,14272.0,0.0 +denver-hvac-autosize-ptac.xml,0.0,14272.0,0.0 +denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0 +denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0 +denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0 +denver-hvac-autosize-pthp-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0 +denver-hvac-autosize-pthp-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0 +denver-hvac-autosize-pthp-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0 +denver-hvac-autosize-room-ac-only-33percent.xml,0.0,4710.0,0.0 +denver-hvac-autosize-room-ac-only-ceer.xml,0.0,14272.0,0.0 +denver-hvac-autosize-room-ac-only-detailed-setpoints.xml,0.0,14272.0,0.0 +denver-hvac-autosize-room-ac-only.xml,0.0,14272.0,0.0 +denver-hvac-autosize-room-ac-with-heating.xml,23640.0,14272.0,0.0 +denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0 +denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0 +denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0 +denver-hvac-autosize-seasons.xml,32235.0,21310.0,0.0 +denver-hvac-autosize-setpoints-daily-schedules.xml,32235.0,21310.0,0.0 +denver-hvac-autosize-setpoints-daily-setbacks.xml,32235.0,21310.0,0.0 +denver-hvac-autosize-setpoints.xml,32235.0,21310.0,0.0 +denver-hvac-autosize-space-heater-gas-only.xml,23640.0,0.0,0.0 +denver-hvac-autosize-stove-oil-only.xml,23640.0,0.0,0.0 +denver-hvac-autosize-stove-wood-pellets-only.xml,23640.0,0.0,0.0 +denver-hvac-autosize-undersized-allow-increased-fixed-capacities.xml,28898.0,19718.0,0.0 +denver-hvac-autosize-undersized.xml,28898.0,19718.0,0.0 +denver-hvac-autosize-wall-furnace-elec-only.xml,23640.0,0.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-ACCA.xml,0.0,27091.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-HERS.xml,0.0,25326.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-MaxLoad.xml,0.0,27091.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA.xml,27091.0,27091.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad.xml,30517.0,30517.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA.xml,20038.0,0.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS.xml,20038.0,0.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad.xml,24146.0,0.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,27091.0,27091.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,30517.0,30517.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA.xml,27091.0,27091.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad.xml,30517.0,30517.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,27091.0,27091.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,30517.0,30517.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27335.0,27335.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,30426.0,30426.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA.xml,25048.0,25048.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS.xml,25326.0,25326.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad.xml,25810.0,25810.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA.xml,25048.0,25048.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS.xml,25326.0,25326.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad.xml,25810.0,25810.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA.xml,25048.0,25048.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-HERS.xml,25326.0,25326.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-MaxLoad.xml,25810.0,25810.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2-sizing-methodology-ACCA.xml,25048.0,25048.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2-sizing-methodology-HERS.xml,25326.0,25326.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2-sizing-methodology-MaxLoad.xml,25810.0,25810.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA.xml,25048.0,25048.0,21260.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS.xml,25326.0,25326.0,21260.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad.xml,25810.0,25810.0,21260.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,25048.0,25048.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,25810.0,25810.0,20038.0 +houston-hvac-autosize-boiler-coal-only.xml,14077.0,0.0,0.0 +houston-hvac-autosize-boiler-elec-only.xml,14077.0,0.0,0.0 +houston-hvac-autosize-boiler-gas-central-ac-1-speed.xml,14077.0,27091.0,0.0 +houston-hvac-autosize-boiler-gas-only-pilot.xml,14077.0,0.0,0.0 +houston-hvac-autosize-boiler-gas-only.xml,14077.0,0.0,0.0 +houston-hvac-autosize-boiler-oil-only.xml,14077.0,0.0,0.0 +houston-hvac-autosize-boiler-propane-only.xml,14077.0,0.0,0.0 +houston-hvac-autosize-boiler-wood-only.xml,14077.0,0.0,0.0 +houston-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,27091.0,0.0 +houston-hvac-autosize-central-ac-only-1-speed.xml,0.0,27091.0,0.0 +houston-hvac-autosize-central-ac-only-2-speed.xml,0.0,27335.0,0.0 +houston-hvac-autosize-central-ac-only-var-speed.xml,0.0,25048.0,0.0 +houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA.xml,20038.0,27091.0,20038.0 +houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS.xml,20038.0,27091.0,20038.0 +houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad.xml,24146.0,27091.0,20038.0 +houston-hvac-autosize-crankcase-heater-40w.xml,21260.0,27091.0,0.0 +houston-hvac-autosize-dse.xml,14077.0,18119.0,0.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,27091.0,27091.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,30517.0,30517.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,27091.0,27091.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,30517.0,30517.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27335.0,27335.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,30426.0,30426.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,25048.0,25048.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,25810.0,25810.0,20038.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19899.0,19899.0,16055.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,19589.0,19589.0,16055.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,19899.0,19899.0,16055.0 +houston-hvac-autosize-ducts-area-fractions.xml,44893.0,118863.0,0.0 +houston-hvac-autosize-ducts-area-multipliers.xml,20588.0,26663.0,0.0 +houston-hvac-autosize-ducts-buried.xml,19021.0,23088.0,0.0 +houston-hvac-autosize-ducts-defaults.xml,18920.0,18119.0,0.0 +houston-hvac-autosize-ducts-effective-rvalue.xml,21256.0,27086.0,0.0 +houston-hvac-autosize-ducts-leakage-cfm50.xml,22510.0,33157.0,0.0 +houston-hvac-autosize-ducts-leakage-percent.xml,19445.0,33294.0,0.0 +houston-hvac-autosize-elec-resistance-only.xml,14077.0,0.0,0.0 +houston-hvac-autosize-evap-cooler-furnace-gas.xml,21260.0,16938.0,0.0 +houston-hvac-autosize-evap-cooler-only-ducted.xml,0.0,18493.0,0.0 +houston-hvac-autosize-evap-cooler-only.xml,0.0,16938.0,0.0 +houston-hvac-autosize-fireplace-wood-only.xml,14077.0,0.0,0.0 +houston-hvac-autosize-floor-furnace-propane-only-pilot-light.xml,14077.0,0.0,0.0 +houston-hvac-autosize-floor-furnace-propane-only.xml,14077.0,0.0,0.0 +houston-hvac-autosize-furnace-coal-only.xml,21260.0,0.0,0.0 +houston-hvac-autosize-furnace-elec-central-ac-1-speed.xml,21260.0,27091.0,0.0 +houston-hvac-autosize-furnace-elec-only.xml,21260.0,0.0,0.0 +houston-hvac-autosize-furnace-gas-central-ac-2-speed.xml,21260.0,27335.0,0.0 +houston-hvac-autosize-furnace-gas-central-ac-var-speed.xml,21260.0,25048.0,0.0 +houston-hvac-autosize-furnace-gas-only-detailed-setpoints.xml,21260.0,0.0,0.0 +houston-hvac-autosize-furnace-gas-only-pilot.xml,21260.0,0.0,0.0 +houston-hvac-autosize-furnace-gas-only.xml,21260.0,0.0,0.0 +houston-hvac-autosize-furnace-gas-room-ac.xml,21260.0,18119.0,0.0 +houston-hvac-autosize-furnace-oil-only.xml,21260.0,0.0,0.0 +houston-hvac-autosize-furnace-propane-only.xml,21260.0,0.0,0.0 +houston-hvac-autosize-furnace-wood-only.xml,21260.0,0.0,0.0 +houston-hvac-autosize-furnace-x3-dse.xml,14219.0,18119.0,0.0 +houston-hvac-autosize-geothermal-loop-sizing-methodology-ACCA.xml,32396.0,32396.0,20038.0 +houston-hvac-autosize-geothermal-loop-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 +houston-hvac-autosize-geothermal-loop-sizing-methodology-MaxLoad.xml,32396.0,32396.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,32396.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,25326.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,32396.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-ACCA.xml,32396.0,32396.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-MaxLoad.xml,32396.0,32396.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,20038.0,0.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,20038.0,0.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,20038.0,0.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,32396.0,32396.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,32396.0,32396.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-ACCA.xml,32396.0,32396.0,18949.0 +houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-HERS.xml,25326.0,25326.0,18949.0 +houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-MaxLoad.xml,32396.0,32396.0,18949.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,33325.0,31848.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31153.0,29772.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,37539.0,35875.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,33601.0,31944.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31131.0,29596.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,37401.0,35557.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,30789.0,29459.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31130.0,29785.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,31725.0,30354.0,20038.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-1-speed.xml,21260.0,31848.0,0.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-2-speed.xml,21260.0,31944.0,0.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,21260.0,29459.0,0.0 +houston-hvac-autosize-install-quality-furnace-gas-only.xml,21260.0,0.0,0.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,39773.0,38290.0,20038.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31093.0,29934.0,20038.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,39773.0,38290.0,20038.0 +houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,23520.0,0.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,24430.0,23520.0,16055.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,24050.0,23153.0,16055.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,24430.0,23520.0,16055.0 +houston-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,19899.0,0.0 +houston-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,17206.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,19899.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,19589.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,19899.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA.xml,16055.0,0.0,16055.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS.xml,16055.0,0.0,16055.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad.xml,16078.0,0.0,16055.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19899.0,19899.0,16055.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,19589.0,19589.0,16055.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,19899.0,19899.0,16055.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA.xml,17206.0,17206.0,14077.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS.xml,16938.0,16938.0,14077.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad.xml,17206.0,17206.0,14077.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA.xml,17206.0,17206.0,15088.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS.xml,16938.0,16938.0,15088.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad.xml,17206.0,17206.0,15088.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA.xml,17206.0,17206.0,16466.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS.xml,16938.0,16938.0,16466.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad.xml,17206.0,17206.0,16466.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA.xml,17206.0,17206.0,14077.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS.xml,16938.0,16938.0,14077.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad.xml,17206.0,17206.0,14077.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-ACCA.xml,17206.0,17206.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-HERS.xml,16938.0,16938.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-MaxLoad.xml,17206.0,17206.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,17206.0,17206.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-HERS.xml,16938.0,16938.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-MaxLoad.xml,17206.0,17206.0,0.0 +houston-hvac-autosize-multiple-sizing-methodology-ACCA.xml,54103.0,50292.0,12670.0 +houston-hvac-autosize-multiple-sizing-methodology-HERS.xml,48790.0,44979.0,12670.0 +houston-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,55936.0,52125.0,12670.0 +houston-hvac-autosize-none.xml,0.0,0.0,0.0 +houston-hvac-autosize-ptac-with-heating-electricity.xml,14077.0,18119.0,0.0 +houston-hvac-autosize-ptac-with-heating-natural-gas.xml,14077.0,18119.0,0.0 +houston-hvac-autosize-ptac.xml,0.0,18119.0,0.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA.xml,18119.0,18119.0,14077.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS.xml,16938.0,16938.0,14077.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad.xml,20410.0,20410.0,14077.0 +houston-hvac-autosize-pthp-sizing-methodology-ACCA.xml,18119.0,18119.0,14077.0 +houston-hvac-autosize-pthp-sizing-methodology-HERS.xml,16938.0,16938.0,14077.0 +houston-hvac-autosize-pthp-sizing-methodology-MaxLoad.xml,20410.0,20410.0,14077.0 +houston-hvac-autosize-room-ac-only-33percent.xml,0.0,5979.0,0.0 +houston-hvac-autosize-room-ac-only-ceer.xml,0.0,18119.0,0.0 +houston-hvac-autosize-room-ac-only-detailed-setpoints.xml,0.0,18119.0,0.0 +houston-hvac-autosize-room-ac-only.xml,0.0,18119.0,0.0 +houston-hvac-autosize-room-ac-with-heating.xml,14077.0,18119.0,0.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA.xml,18119.0,18119.0,14077.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS.xml,16938.0,16938.0,14077.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad.xml,20410.0,20410.0,14077.0 +houston-hvac-autosize-seasons.xml,21260.0,27091.0,0.0 +houston-hvac-autosize-setpoints-daily-schedules.xml,21260.0,27091.0,0.0 +houston-hvac-autosize-setpoints-daily-setbacks.xml,21260.0,27091.0,0.0 +houston-hvac-autosize-setpoints.xml,21260.0,27091.0,0.0 +houston-hvac-autosize-space-heater-gas-only.xml,14077.0,0.0,0.0 +houston-hvac-autosize-stove-oil-only.xml,14077.0,0.0,0.0 +houston-hvac-autosize-stove-wood-pellets-only.xml,14077.0,0.0,0.0 +houston-hvac-autosize-undersized-allow-increased-fixed-capacities.xml,17840.0,23546.0,0.0 +houston-hvac-autosize-undersized.xml,17840.0,23546.0,0.0 +houston-hvac-autosize-wall-furnace-elec-only.xml,14077.0,0.0,0.0 From b003c807fb7cd86dabb25d0c4ddd8d0fb06c2a7b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 24 Oct 2023 21:40:18 +0000 Subject: [PATCH 172/217] Latest results. --- workflow/tests/base_results/results.csv | 838 +++++++++--------- workflow/tests/base_results/results_bills.csv | 644 +++++++------- .../tests/base_results/results_sizing.csv | 482 +++++----- 3 files changed, 982 insertions(+), 982 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index a64c21942c..90bd73e42c 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 Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Permanent Spa Heater (MBtu),End Use: Electricity: Permanent Spa Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Permanent Spa Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu),Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),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) -base-appliances-coal.xml,59.865,59.865,33.381,33.381,21.618,0.0,0.0,0.0,0.0,4.866,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.244,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.4,3617.4,22.974,19.432,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.989,0.0,0.487,0.0,4.709,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.222,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-portable.xml,34.804,34.804,33.521,33.521,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.046,1.936,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.589,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,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.134,0.0,31.411,6.675,0.571,0.0,0.0,0.0,0.0,2183.2,2864.6,2864.6,9.451,15.101,0.0,1.743,1.625,0.0,0.0,0.392,4.895,-4.792,0.0,0.0,0.0,1.264,-0.391,1.046,0.077,0.391,0.0,0.032,-4.642,-0.753,0.0,0.5,-0.056,0.0,0.0,0.202,2.725,17.379,0.0,0.0,0.0,1.741,-0.386,-0.348,-1.933,-0.1,0.0,0.359,9.62,1.894,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-ief-whole-home.xml,34.829,34.829,33.566,33.566,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.046,1.936,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.635,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,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.128,0.0,31.407,6.675,0.571,0.0,0.0,0.0,0.0,2132.2,2864.5,2864.5,9.472,15.101,0.0,1.745,1.629,0.0,0.0,0.394,4.924,-4.781,0.0,0.0,0.0,1.261,-0.397,1.052,0.072,0.393,0.0,0.031,-4.677,-0.757,0.0,0.502,-0.053,0.0,0.0,0.203,2.751,17.39,0.0,0.0,0.0,1.736,-0.392,-0.343,-1.931,-0.098,0.0,0.359,9.6,1.89,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier-multiple.xml,34.796,34.796,33.443,33.443,1.353,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.035,1.933,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.525,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,1.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,1.202,0.0,31.365,6.675,0.571,0.0,0.0,0.0,0.0,2161.6,2868.1,2868.1,9.535,15.101,0.0,1.748,1.629,0.0,0.0,0.392,4.893,-4.849,0.0,0.0,0.0,1.267,-0.39,1.047,0.075,0.393,0.0,0.033,-4.522,-0.76,0.0,0.511,-0.046,0.0,0.0,0.203,2.741,17.322,0.0,0.0,0.0,1.763,-0.385,-0.343,-1.922,-0.096,0.0,0.359,9.569,1.888,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-dehumidifier.xml,34.767,34.767,33.498,33.498,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.039,1.934,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.576,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,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,31.377,6.675,0.571,0.0,0.0,0.0,0.0,2025.5,2864.5,2864.5,9.516,15.101,0.0,1.76,1.641,0.0,0.0,0.394,4.935,-4.861,0.0,0.0,0.0,1.275,-0.393,1.056,0.072,0.397,0.0,0.031,-4.651,-0.763,0.0,0.521,-0.036,0.0,0.0,0.205,2.775,17.309,0.0,0.0,0.0,1.763,-0.387,-0.336,-1.93,-0.093,0.0,0.358,9.557,1.884,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-appliances-gas.xml,59.865,59.865,33.381,33.381,26.484,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.618,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.244,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.4,3617.4,22.974,19.432,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.989,0.0,0.487,0.0,4.709,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.222,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,58.485,58.485,37.066,37.066,21.419,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,4.535,0.887,9.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.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,0.0,21.419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.058,0.0,14.953,9.799,0.613,0.0,0.0,0.0,0.0,2161.6,3468.9,3468.9,22.972,19.348,0.0,3.567,3.65,0.514,7.552,0.632,10.119,-12.663,0.0,0.0,0.0,8.335,-0.066,5.413,0.0,0.0,0.0,4.672,-9.525,-2.496,0.0,-0.077,-0.48,-0.054,2.643,-0.03,-1.454,11.75,0.0,0.0,0.0,-6.421,-0.063,-1.324,-3.168,0.0,0.0,3.296,8.51,2.014,1354.8,1997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,52.709,52.709,28.515,28.515,24.193,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,4.077,0.775,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,0.0,24.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,0.0,0.0,22.658,0.0,13.05,7.908,0.615,0.0,0.0,0.0,0.0,1857.1,3192.9,3192.9,23.372,18.124,0.0,3.528,3.626,0.51,7.473,0.627,10.055,-12.698,0.0,0.0,0.0,8.25,-0.062,5.401,0.0,0.0,0.0,5.203,-7.087,-2.503,0.0,-0.007,-0.425,-0.046,2.794,-0.016,-1.284,11.715,0.0,0.0,0.0,-6.167,-0.058,-1.27,-2.934,0.0,0.0,2.957,5.974,2.006,0.0,0.0,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-oil-location-miami-fl.xml,50.116,50.116,45.25,45.25,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.828,4.098,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,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,67.181,4.659,0.55,0.0,0.0,0.0,0.0,2452.3,3204.2,3204.2,0.0,21.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.813,0.737,0.136,9.768,0.338,3.359,19.842,0.0,0.0,0.0,3.215,-0.01,-0.53,-2.903,-0.004,0.0,10.314,17.693,4.51,1354.8,997.6,8625.2,1979.2,0.0,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21535.0,7579.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3282.0,954.0,1529.0,800.0 -base-appliances-oil.xml,59.865,59.865,33.381,33.381,21.618,4.866,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.618,0.0,0.0,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.244,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.4,3617.4,22.974,19.432,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.989,0.0,0.487,0.0,4.709,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.222,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-propane-location-portland-or.xml,55.078,55.078,29.883,29.883,20.33,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.206,0.38,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,0.0,20.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,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.787,0.0,6.279,8.776,0.614,0.0,0.0,0.0,0.0,1916.8,2801.4,2801.4,14.096,15.742,0.0,3.154,3.302,0.465,7.024,0.65,9.002,-10.815,0.0,0.0,0.0,12.128,-0.091,4.339,0.0,0.553,0.0,4.045,-12.053,-3.157,0.0,-0.141,-0.435,-0.052,1.255,-0.025,-1.176,8.054,0.0,0.0,0.0,-6.2,-0.092,-0.938,-1.961,-0.125,0.0,1.193,5.705,1.352,1354.8,997.6,11239.5,2579.1,0.0,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19188.0,6278.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,768.0,0.0,-32.0,800.0 -base-appliances-propane.xml,59.865,59.865,33.381,33.381,21.618,0.0,4.866,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.244,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.4,3617.4,22.974,19.432,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.989,0.0,0.487,0.0,4.709,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.222,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,59.865,59.865,33.381,33.381,21.618,0.0,0.0,4.866,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.244,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.4,3617.4,22.974,19.432,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.989,0.0,0.487,0.0,4.709,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.222,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,61.561,61.561,35.942,35.942,25.619,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,4.257,0.822,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,0.0,25.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.972,0.0,13.668,9.233,0.615,0.0,0.0,0.0,0.0,2144.5,3449.3,3449.3,22.718,16.558,6.771,0.0,4.231,0.513,7.508,0.633,12.688,-15.638,0.0,0.0,0.0,8.371,-0.086,9.315,0.0,0.729,0.0,0.0,-8.932,-2.503,0.124,0.0,-0.517,-0.049,2.739,-0.02,-1.228,15.662,0.0,0.0,0.0,-6.364,-0.061,-2.102,-3.934,-0.159,0.0,0.0,7.847,2.006,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,63.31,63.31,40.717,40.717,22.593,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.92,0.984,9.067,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.142,0.0,16.415,9.18,0.613,0.0,0.0,0.0,0.0,2372.2,3628.0,3628.0,22.522,19.802,4.57,1.168,5.569,0.52,7.699,0.639,14.497,-17.149,0.0,0.0,0.0,8.589,-0.089,7.102,0.0,0.733,0.0,0.273,-10.225,-3.182,-0.013,0.016,-0.589,-0.056,2.657,-0.033,-1.932,17.689,0.0,0.0,0.0,-6.405,-0.083,-1.705,-4.231,-0.168,0.0,0.094,8.938,2.569,1354.8,997.6,11399.6,2521.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31467.0,777.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,54.669,54.669,35.212,35.212,19.456,0.0,0.0,0.0,0.0,0.0,0.0,0.321,0.0,0.0,3.746,0.704,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.207,0.0,11.696,9.233,0.614,0.0,0.0,0.0,0.0,2122.5,2729.0,2729.0,17.651,12.83,6.045,0.0,3.619,0.509,7.464,0.625,10.03,-12.687,0.0,0.0,0.0,8.217,-0.076,4.803,0.0,0.728,0.0,0.0,-8.908,-2.5,0.291,0.0,-0.456,-0.051,2.711,-0.025,-1.387,11.721,0.0,0.0,0.0,-6.302,-0.051,-1.159,-3.067,-0.164,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,37.574,37.574,33.423,33.423,4.151,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.443,2.011,6.82,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,4.151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.833,0.0,32.58,6.675,0.579,0.0,0.0,0.0,0.0,1835.0,3288.7,3288.7,13.53,18.846,0.0,6.126,1.575,0.0,0.0,0.335,4.353,-5.899,0.0,0.0,0.0,0.826,-0.36,0.993,0.0,0.397,0.0,0.102,-3.998,-0.844,0.0,2.403,0.135,0.0,0.0,0.203,2.884,16.272,0.0,0.0,0.0,2.056,-0.352,-0.28,-1.733,-0.052,0.0,0.38,9.165,1.803,1354.8,997.6,9989.0,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,25731.0,1408.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,22171.0,75.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-atticroof-unvented-insulated-roof.xml,57.187,57.187,35.371,35.371,21.816,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,3.847,0.723,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,0.0,21.816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.417,0.0,11.971,9.233,0.615,0.0,0.0,0.0,0.0,2128.8,2866.4,2866.4,19.25,14.113,0.0,5.474,3.627,0.51,7.484,0.627,10.053,-12.69,0.0,0.0,0.0,8.286,-0.062,4.807,0.0,0.729,0.0,2.654,-8.912,-2.5,0.0,-1.481,-0.423,-0.046,2.812,-0.016,-1.287,11.723,0.0,0.0,0.0,-6.128,-0.053,-1.136,-2.92,-0.161,0.0,1.445,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,30483.0,4824.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1771.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,57.812,57.812,35.728,35.728,22.085,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.989,0.758,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,0.0,22.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,0.0,0.0,20.68,0.0,12.665,9.233,0.803,0.0,0.0,0.0,0.0,2134.0,3014.5,3014.5,21.54,15.428,0.0,3.899,3.639,0.512,7.515,0.63,10.09,-12.691,0.0,0.0,0.0,8.301,-0.063,4.809,0.0,0.729,0.0,4.067,-8.581,-2.501,0.0,-0.528,-0.448,-0.05,2.73,-0.022,-1.355,11.723,0.0,0.0,0.0,-6.277,-0.059,-1.157,-3.029,-0.164,0.0,1.957,7.583,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16424.0,3713.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,60.084,60.084,37.813,37.813,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,1.735,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3537.0,3537.0,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,1.305,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery.xml,58.35,58.35,36.078,36.078,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-2stories.xml,51.16,51.16,34.759,34.759,16.401,0.0,0.0,0.0,0.0,0.0,0.0,0.214,0.0,0.0,3.423,0.619,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,0.0,16.401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.295,0.0,10.304,9.269,0.614,0.0,0.0,0.0,0.0,2112.2,3064.3,3064.3,17.846,15.642,0.0,2.437,5.073,0.298,4.382,0.64,7.13,-8.585,0.0,0.0,0.0,5.027,-0.069,7.108,0.0,0.73,0.0,2.273,-8.897,-2.5,0.0,-0.005,-0.668,-0.027,1.593,-0.021,-1.066,7.911,0.0,0.0,0.0,-4.019,-0.064,-1.709,-2.596,-0.164,0.0,1.389,7.881,2.01,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16950.0,4420.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-atticroof-cathedral.xml,97.696,97.696,37.338,37.338,60.358,0.0,0.0,0.0,0.0,0.0,0.0,0.787,0.0,0.0,5.067,0.972,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,0.0,60.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.282,0.0,15.98,9.269,0.623,0.0,0.0,0.0,0.0,2188.5,4479.9,4479.9,36.454,28.481,49.534,0.0,2.942,0.289,3.702,0.668,4.716,-5.325,0.0,0.0,0.0,3.447,-0.844,7.549,0.0,0.773,0.0,0.0,-9.663,-2.68,8.461,0.0,-0.16,0.004,1.534,0.119,0.028,5.085,0.0,0.0,0.0,-4.279,-0.806,-0.857,-1.185,-0.094,0.0,0.0,7.124,1.829,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-infil-compartmentalization-test.xml,42.438,42.438,30.034,30.034,12.403,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,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,0.0,12.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.502,0.0,8.115,9.387,0.613,0.0,0.0,0.0,0.0,1823.1,2673.0,2673.0,13.17,10.826,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.037,0.0,0.728,0.0,3.16,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.114,-0.042,-0.775,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-attached.xml,42.438,42.438,30.034,30.034,12.403,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,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,0.0,12.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.502,0.0,8.115,9.387,0.613,0.0,0.0,0.0,0.0,1823.1,2673.0,2673.0,13.17,10.826,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.037,0.0,0.728,0.0,3.16,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.114,-0.042,-0.775,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13940.0,5225.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.474,36.474,24.849,24.849,11.625,0.0,0.0,0.0,0.0,0.0,0.0,0.085,0.0,0.0,1.636,0.213,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,0.0,11.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,10.776,0.0,3.159,9.538,0.73,0.0,0.0,0.0,0.0,1572.4,2045.3,2045.3,7.666,6.098,0.0,2.942,3.651,0.0,0.0,0.583,1.31,-1.593,0.0,0.0,2.978,0.0,-0.037,1.669,0.0,0.0,0.0,4.661,-4.243,-1.184,0.0,-0.933,-0.243,0.0,0.0,-0.056,-0.113,1.309,0.0,0.0,-0.947,0.0,-0.033,-0.288,-0.351,0.0,0.0,0.579,3.429,0.842,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-multiple.xml,31.695,31.695,25.346,25.346,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,2.169,0.332,9.716,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,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.89,0.0,5.258,9.538,0.609,0.0,0.0,0.0,1.0,1561.9,2433.7,2433.7,9.392,10.746,0.0,-0.005,3.303,0.0,0.0,1.394,3.737,-4.202,0.0,0.0,4.614,0.0,-0.073,1.253,0.0,0.793,0.0,2.37,-6.263,-1.136,0.0,-0.001,-0.475,0.0,0.0,-0.429,-0.209,4.004,0.0,0.0,-3.094,0.0,-0.068,-0.251,-1.127,-0.133,0.0,0.508,5.736,0.89,1354.8,997.6,11399.5,3156.5,0.0,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,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.586,49.586,24.849,24.849,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,1.491,0.178,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,0.0,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.938,0.0,2.593,9.538,0.818,0.0,0.0,0.0,0.0,1579.8,2297.0,2297.0,11.077,8.743,0.0,5.361,4.203,0.0,0.0,0.789,1.288,-1.709,0.0,0.0,5.413,0.0,-0.062,1.7,0.0,0.0,0.0,11.645,-4.474,-1.246,0.0,-1.205,-0.066,0.0,0.0,-0.056,-0.008,1.194,0.0,0.0,-1.212,0.0,-0.057,-0.194,-0.279,0.0,0.0,0.549,3.198,0.781,1354.8,997.6,11399.5,3156.5,0.0,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,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.032,26.032,24.715,24.715,1.317,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.661,0.22,9.742,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.219,0.0,3.265,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2045.3,2045.3,3.415,6.099,0.0,0.378,3.172,0.0,0.0,0.381,1.385,-1.507,0.0,0.0,0.401,0.0,-0.006,1.706,0.0,0.0,0.0,0.374,-4.015,-1.12,0.0,-0.84,-0.474,0.0,0.0,-0.078,-0.221,1.396,0.0,0.0,-0.856,0.0,-0.002,-0.396,-0.392,0.0,0.0,0.598,3.657,0.907,1354.8,997.6,11399.5,3156.5,0.0,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,8172.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.342,26.342,25.281,25.281,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.153,0.343,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,0.0,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.983,0.0,5.308,9.538,0.586,0.0,0.0,0.0,0.0,1568.6,1862.1,1862.1,3.705,4.57,0.0,-0.004,3.199,0.0,0.0,0.372,1.434,-1.384,0.0,0.0,-0.004,0.0,-0.074,1.765,0.0,0.0,0.0,0.306,-3.658,-1.009,0.0,-0.001,-0.583,0.0,0.0,-0.044,-0.373,1.518,0.0,0.0,-0.001,0.0,-0.071,-0.543,-0.515,0.0,0.0,0.944,4.015,1.017,1354.8,997.6,11399.5,3156.5,0.0,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,6278.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.961,26.961,26.444,26.444,0.517,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.095,0.58,9.682,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.517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,9.42,9.538,0.574,0.0,0.0,0.0,0.0,1710.0,2028.0,2028.0,3.251,7.677,0.0,-0.015,2.451,0.0,0.0,0.424,3.906,-2.465,0.0,0.0,-0.01,0.0,-0.396,0.991,0.0,0.666,0.0,0.0,-4.45,-0.746,0.0,-0.01,-1.157,0.0,0.0,-0.049,-1.212,5.738,0.0,0.0,-0.005,0.0,-0.386,-0.414,-1.343,-0.41,0.0,0.0,7.514,1.28,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 -base-bldgtype-multifamily-residents-1.xml,19.95,19.95,18.729,18.729,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.471,0.422,4.593,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,0.0,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,7.202,4.213,0.584,0.0,0.0,0.0,0.0,1121.4,1672.2,1672.2,3.913,7.193,0.0,-0.018,2.578,0.0,0.0,0.426,4.087,-3.005,0.0,0.0,-0.017,0.0,-0.365,1.302,0.0,0.742,0.0,0.0,-3.752,-0.915,0.0,-0.013,-0.841,0.0,0.0,-0.013,-0.739,5.197,0.0,0.0,-0.012,0.0,-0.356,-0.408,-1.204,-0.286,0.0,0.0,4.875,1.111,817.2,530.6,4779.7,1341.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.459,27.459,26.809,26.809,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.031,0.0,0.0,3.152,0.858,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.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.235,9.538,0.576,0.0,0.0,0.0,7.0,1724.9,2082.2,2082.2,3.451,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11399.5,3156.5,0.0,5886.0,8028.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.283,28.283,27.589,27.589,0.694,0.0,0.0,0.0,0.0,0.0,0.0,0.055,0.0,0.0,3.797,0.97,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.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,0.616,0.0,10.47,9.538,0.576,0.0,0.0,0.0,13.0,1761.3,2255.8,2255.8,3.597,8.103,0.0,-0.015,2.472,0.0,0.0,0.423,3.919,-2.555,0.0,0.0,-0.011,0.0,-0.392,1.275,0.0,0.674,0.0,0.036,-4.548,-0.767,0.0,-0.01,-1.112,0.0,0.0,-0.046,-1.16,5.647,0.0,0.0,-0.005,0.0,-0.381,-0.522,-1.34,-0.394,0.0,1.244,7.418,1.259,1354.8,997.6,11399.5,3156.5,0.0,8647.0,8993.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.753,27.753,27.137,27.137,0.616,0.0,0.0,0.0,0.0,0.0,0.0,0.074,0.0,0.0,3.438,0.858,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.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,0.581,0.0,9.235,9.538,0.576,0.0,0.0,0.0,7.0,1740.0,2153.6,2153.6,3.449,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11399.5,3156.5,0.0,5886.0,8028.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,33.206,33.206,32.7,32.7,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,8.9,0.97,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.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,0.594,0.0,10.47,9.538,0.576,0.0,0.0,0.0,13.0,2025.5,3517.3,3517.3,3.53,8.103,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11399.5,3156.5,0.0,28548.0,8993.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.904,27.904,27.398,27.398,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,3.597,0.97,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.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,0.594,0.0,10.47,9.538,0.576,0.0,0.0,0.0,13.0,1751.2,2206.4,2206.4,3.53,8.103,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11399.5,3156.5,0.0,28548.0,8993.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,23.225,23.225,22.703,22.703,0.522,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,0.0,0.0,9.596,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.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,0.467,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1522.2,1333.9,1522.2,3.443,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11399.5,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-appliances-coal.xml,59.86,59.86,33.381,33.381,21.613,0.0,0.0,0.0,0.0,4.866,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.3,3617.3,22.972,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-portable.xml,34.803,34.803,33.519,33.519,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.045,1.935,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.589,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,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.134,0.0,31.404,6.675,0.571,0.0,0.0,0.0,0.0,2183.2,2864.2,2864.2,9.452,15.097,0.0,1.743,1.625,0.0,0.0,0.392,4.896,-4.792,0.0,0.0,0.0,1.264,-0.392,1.047,0.077,0.391,0.0,0.032,-4.643,-0.753,0.0,0.501,-0.056,0.0,0.0,0.202,2.726,17.379,0.0,0.0,0.0,1.741,-0.386,-0.348,-1.933,-0.1,0.0,0.351,9.619,1.894,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier-ief-whole-home.xml,34.828,34.828,33.564,33.564,1.264,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.044,1.935,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.635,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,1.264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.128,0.0,31.4,6.675,0.571,0.0,0.0,0.0,0.0,2132.2,2864.1,2864.1,9.474,15.097,0.0,1.745,1.629,0.0,0.0,0.394,4.924,-4.781,0.0,0.0,0.0,1.261,-0.397,1.052,0.072,0.393,0.0,0.031,-4.677,-0.757,0.0,0.502,-0.053,0.0,0.0,0.203,2.751,17.39,0.0,0.0,0.0,1.736,-0.392,-0.343,-1.931,-0.098,0.0,0.351,9.6,1.89,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier-multiple.xml,34.794,34.794,33.441,33.441,1.353,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.033,1.933,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.525,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,1.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,1.202,0.0,31.357,6.675,0.571,0.0,0.0,0.0,0.0,2161.6,2867.8,2867.8,9.537,15.097,0.0,1.748,1.629,0.0,0.0,0.392,4.893,-4.849,0.0,0.0,0.0,1.267,-0.39,1.047,0.075,0.393,0.0,0.034,-4.522,-0.76,0.0,0.511,-0.046,0.0,0.0,0.203,2.741,17.322,0.0,0.0,0.0,1.763,-0.385,-0.343,-1.922,-0.096,0.0,0.351,9.569,1.888,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier.xml,34.765,34.765,33.496,33.496,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.037,1.933,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.576,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,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,31.37,6.675,0.571,0.0,0.0,0.0,0.0,2025.2,2864.1,2864.1,9.517,15.097,0.0,1.76,1.641,0.0,0.0,0.394,4.935,-4.861,0.0,0.0,0.0,1.275,-0.393,1.056,0.072,0.397,0.0,0.032,-4.651,-0.763,0.0,0.521,-0.036,0.0,0.0,0.205,2.775,17.309,0.0,0.0,0.0,1.763,-0.387,-0.336,-1.93,-0.093,0.0,0.351,9.557,1.884,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-gas.xml,59.86,59.86,33.381,33.381,26.479,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.613,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.24,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.3,3617.3,22.972,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,58.479,58.479,37.066,37.066,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,4.535,0.887,9.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.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,0.0,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.053,0.0,14.953,9.799,0.613,0.0,0.0,0.0,0.0,2161.6,3468.8,3468.8,22.969,19.347,0.0,3.567,3.65,0.514,7.552,0.632,10.119,-12.663,0.0,0.0,0.0,8.335,-0.066,5.409,0.0,0.0,0.0,4.671,-9.525,-2.496,0.0,-0.077,-0.48,-0.054,2.643,-0.03,-1.454,11.75,0.0,0.0,0.0,-6.421,-0.063,-1.323,-3.168,0.0,0.0,3.296,8.51,2.014,1354.8,1997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,52.703,52.703,28.515,28.515,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,4.077,0.775,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,0.0,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.653,0.0,13.051,7.908,0.615,0.0,0.0,0.0,0.0,1857.1,3193.3,3193.3,23.37,18.123,0.0,3.528,3.626,0.51,7.473,0.627,10.055,-12.698,0.0,0.0,0.0,8.25,-0.062,5.397,0.0,0.0,0.0,5.202,-7.087,-2.503,0.0,-0.007,-0.425,-0.046,2.794,-0.016,-1.284,11.715,0.0,0.0,0.0,-6.167,-0.058,-1.269,-2.934,0.0,0.0,2.957,5.974,2.006,0.0,0.0,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-oil-location-miami-fl.xml,50.117,50.117,45.251,45.251,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.829,4.098,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,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,67.18,4.659,0.55,0.0,0.0,0.0,0.0,2452.4,3204.2,3204.2,0.0,21.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.813,0.737,0.136,9.768,0.338,3.359,19.842,0.0,0.0,0.0,3.215,-0.01,-0.531,-2.903,-0.004,0.0,10.314,17.693,4.51,1354.8,997.6,8625.2,1979.2,0.0,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21537.0,7581.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3284.0,954.0,1530.0,800.0 +base-appliances-oil.xml,59.86,59.86,33.381,33.381,21.613,4.866,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.613,0.0,0.0,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.24,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.3,3617.3,22.972,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-propane-location-portland-or.xml,55.085,55.085,29.882,29.882,20.336,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.205,0.38,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,0.0,20.336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.793,0.0,6.277,8.776,0.614,0.0,0.0,0.0,0.0,1916.8,2801.5,2801.5,14.099,15.743,0.0,3.154,3.302,0.465,7.024,0.65,9.002,-10.815,0.0,0.0,0.0,12.128,-0.092,4.346,0.0,0.553,0.0,4.046,-12.053,-3.157,0.0,-0.141,-0.435,-0.052,1.255,-0.025,-1.176,8.054,0.0,0.0,0.0,-6.2,-0.092,-0.94,-1.961,-0.125,0.0,1.193,5.705,1.352,1354.8,997.6,11239.5,2579.1,0.0,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19189.0,6280.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,769.0,0.0,-31.0,800.0 +base-appliances-propane.xml,59.86,59.86,33.381,33.381,21.613,0.0,4.866,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.3,3617.3,22.972,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,59.86,59.86,33.381,33.381,21.613,0.0,0.0,4.866,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.3,3617.3,22.972,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,61.562,61.562,35.942,35.942,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,4.257,0.822,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,0.0,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.973,0.0,13.668,9.233,0.615,0.0,0.0,0.0,0.0,2144.5,3449.3,3449.3,22.718,16.559,6.771,0.0,4.231,0.513,7.508,0.633,12.688,-15.638,0.0,0.0,0.0,8.371,-0.086,9.316,0.0,0.729,0.0,0.0,-8.932,-2.503,0.124,0.0,-0.517,-0.049,2.739,-0.02,-1.228,15.662,0.0,0.0,0.0,-6.364,-0.061,-2.102,-3.934,-0.159,0.0,0.0,7.847,2.006,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,63.319,63.319,40.717,40.717,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.92,0.984,9.067,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,0.0,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.151,0.0,16.414,9.18,0.613,0.0,0.0,0.0,0.0,2372.2,3628.1,3628.1,22.529,19.803,4.57,1.168,5.569,0.52,7.699,0.639,14.497,-17.149,0.0,0.0,0.0,8.589,-0.089,7.111,0.0,0.733,0.0,0.273,-10.225,-3.182,-0.013,0.016,-0.589,-0.055,2.657,-0.033,-1.932,17.689,0.0,0.0,0.0,-6.404,-0.083,-1.707,-4.231,-0.168,0.0,0.094,8.938,2.569,1354.8,997.6,11399.6,2521.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31468.0,778.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,54.664,54.664,35.212,35.212,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.321,0.0,0.0,3.746,0.704,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.203,0.0,11.696,9.233,0.614,0.0,0.0,0.0,0.0,2122.5,2729.0,2729.0,17.649,12.83,6.045,0.0,3.619,0.509,7.464,0.625,10.031,-12.687,0.0,0.0,0.0,8.217,-0.076,4.799,0.0,0.728,0.0,0.0,-8.908,-2.5,0.291,0.0,-0.456,-0.051,2.711,-0.025,-1.387,11.721,0.0,0.0,0.0,-6.302,-0.051,-1.158,-3.067,-0.164,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier.xml,37.573,37.573,33.421,33.421,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.441,2.011,6.82,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,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.834,0.0,32.573,6.675,0.579,0.0,0.0,0.0,0.0,1834.9,3288.2,3288.2,13.532,18.842,0.0,6.126,1.575,0.0,0.0,0.335,4.353,-5.899,0.0,0.0,0.0,0.826,-0.36,0.993,0.0,0.397,0.0,0.103,-3.998,-0.844,0.0,2.403,0.135,0.0,0.0,0.203,2.884,16.272,0.0,0.0,0.0,2.056,-0.352,-0.28,-1.733,-0.052,0.0,0.372,9.165,1.803,1354.8,997.6,9989.0,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,25742.0,1419.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,22158.0,61.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-atticroof-unvented-insulated-roof.xml,57.182,57.182,35.371,35.371,21.812,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,3.847,0.723,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,0.0,21.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,20.413,0.0,11.971,9.233,0.615,0.0,0.0,0.0,0.0,2128.8,2866.3,2866.3,19.248,14.113,0.0,5.475,3.627,0.51,7.484,0.627,10.053,-12.69,0.0,0.0,0.0,8.285,-0.062,4.803,0.0,0.729,0.0,2.654,-8.912,-2.5,0.0,-1.481,-0.423,-0.046,2.812,-0.016,-1.287,11.723,0.0,0.0,0.0,-6.128,-0.053,-1.135,-2.92,-0.161,0.0,1.445,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,30482.0,4823.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1772.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,57.807,57.807,35.727,35.727,22.08,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.989,0.758,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,0.0,22.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,20.675,0.0,12.665,9.233,0.803,0.0,0.0,0.0,0.0,2134.0,3014.4,3014.4,21.537,15.427,0.0,3.899,3.639,0.512,7.515,0.63,10.087,-12.691,0.0,0.0,0.0,8.3,-0.062,4.804,0.0,0.729,0.0,4.066,-8.579,-2.5,0.0,-0.528,-0.448,-0.05,2.73,-0.022,-1.358,11.723,0.0,0.0,0.0,-6.278,-0.058,-1.157,-3.029,-0.164,0.0,1.957,7.585,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16425.0,3714.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,60.079,60.079,37.813,37.813,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3536.9,3536.9,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,1.305,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-2stories.xml,51.15,51.15,34.759,34.759,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.214,0.0,0.0,3.423,0.619,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,0.0,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.285,0.0,10.305,9.269,0.614,0.0,0.0,0.0,0.0,2112.2,3064.1,3064.1,17.839,15.64,0.0,2.437,5.073,0.298,4.382,0.64,7.13,-8.585,0.0,0.0,0.0,5.027,-0.069,7.099,0.0,0.73,0.0,2.271,-8.897,-2.5,0.0,-0.005,-0.668,-0.027,1.593,-0.021,-1.066,7.911,0.0,0.0,0.0,-4.019,-0.064,-1.707,-2.597,-0.164,0.0,1.389,7.881,2.01,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16951.0,4421.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-atticroof-cathedral.xml,97.685,97.685,37.338,37.338,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.787,0.0,0.0,5.067,0.972,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,0.0,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,15.981,9.269,0.623,0.0,0.0,0.0,0.0,2188.0,4479.8,4479.8,36.448,28.48,49.534,0.0,2.942,0.289,3.702,0.668,4.716,-5.325,0.0,0.0,0.0,3.447,-0.844,7.54,0.0,0.773,0.0,0.0,-9.663,-2.68,8.461,0.0,-0.16,0.004,1.534,0.119,0.028,5.085,0.0,0.0,0.0,-4.279,-0.806,-0.856,-1.185,-0.094,0.0,0.0,7.124,1.829,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-infil-compartmentalization-test.xml,42.445,42.445,30.034,30.034,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.114,9.387,0.613,0.0,0.0,0.0,0.0,1823.1,2675.8,2675.8,13.176,10.827,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-attached.xml,42.445,42.445,30.034,30.034,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.114,9.387,0.613,0.0,0.0,0.0,0.0,1823.1,2675.8,2675.8,13.176,10.827,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21403.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13941.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.474,36.474,24.849,24.849,11.625,0.0,0.0,0.0,0.0,0.0,0.0,0.085,0.0,0.0,1.636,0.213,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,0.0,11.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,10.777,0.0,3.159,9.538,0.73,0.0,0.0,0.0,0.0,1572.4,2045.3,2045.3,7.666,6.098,0.0,2.942,3.651,0.0,0.0,0.583,1.31,-1.593,0.0,0.0,2.978,0.0,-0.037,1.669,0.0,0.0,0.0,4.662,-4.243,-1.184,0.0,-0.933,-0.243,0.0,0.0,-0.056,-0.113,1.309,0.0,0.0,-0.947,0.0,-0.033,-0.288,-0.351,0.0,0.0,0.579,3.429,0.842,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,12345.0,5658.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-multiple.xml,31.695,31.695,25.346,25.346,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,2.169,0.332,9.716,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,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.89,0.0,5.258,9.538,0.609,0.0,0.0,0.0,1.0,1561.9,2433.7,2433.7,9.392,10.746,0.0,-0.005,3.303,0.0,0.0,1.394,3.737,-4.202,0.0,0.0,4.614,0.0,-0.073,1.253,0.0,0.793,0.0,2.37,-6.263,-1.136,0.0,-0.001,-0.475,0.0,0.0,-0.429,-0.209,4.004,0.0,0.0,-3.094,0.0,-0.068,-0.251,-1.127,-0.133,0.0,0.508,5.736,0.89,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,12328.0,5013.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.586,49.586,24.849,24.849,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,1.491,0.178,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,0.0,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.939,0.0,2.593,9.538,0.818,0.0,0.0,0.0,0.0,1579.8,2297.0,2297.0,11.077,8.743,0.0,5.361,4.203,0.0,0.0,0.789,1.288,-1.709,0.0,0.0,5.413,0.0,-0.062,1.7,0.0,0.0,0.0,11.645,-4.474,-1.246,0.0,-1.205,-0.066,0.0,0.0,-0.056,-0.008,1.194,0.0,0.0,-1.212,0.0,-0.057,-0.194,-0.279,0.0,0.0,0.549,3.198,0.781,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,14592.0,6778.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.033,26.033,24.715,24.715,1.317,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.661,0.22,9.742,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.22,0.0,3.265,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2045.2,2045.2,3.415,6.099,0.0,0.378,3.172,0.0,0.0,0.381,1.385,-1.507,0.0,0.0,0.401,0.0,-0.006,1.706,0.0,0.0,0.0,0.374,-4.015,-1.12,0.0,-0.84,-0.474,0.0,0.0,-0.078,-0.221,1.396,0.0,0.0,-0.856,0.0,-0.002,-0.396,-0.392,0.0,0.0,0.598,3.657,0.907,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,8331.0,3673.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.343,26.343,25.281,25.281,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.153,0.343,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,0.0,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.984,0.0,5.308,9.538,0.586,0.0,0.0,0.0,0.0,1568.5,1862.1,1862.1,3.705,4.57,0.0,-0.004,3.199,0.0,0.0,0.372,1.434,-1.384,0.0,0.0,-0.004,0.0,-0.074,1.765,0.0,0.0,0.0,0.306,-3.658,-1.009,0.0,-0.001,-0.583,0.0,0.0,-0.044,-0.373,1.518,0.0,0.0,-0.001,0.0,-0.071,-0.543,-0.515,0.0,0.0,0.944,4.015,1.017,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,7886.0,3453.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,6279.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.961,26.961,26.444,26.444,0.517,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.095,0.58,9.682,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.517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,9.42,9.538,0.574,0.0,0.0,0.0,0.0,1709.9,2028.0,2028.0,3.251,7.677,0.0,-0.015,2.451,0.0,0.0,0.424,3.906,-2.465,0.0,0.0,-0.01,0.0,-0.396,0.991,0.0,0.666,0.0,0.0,-4.45,-0.746,0.0,-0.01,-1.157,0.0,0.0,-0.049,-1.212,5.738,0.0,0.0,-0.005,0.0,-0.386,-0.414,-1.343,-0.41,0.0,0.0,7.514,1.28,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 +base-bldgtype-multifamily-residents-1.xml,19.95,19.95,18.729,18.729,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.471,0.422,4.593,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,0.0,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,7.202,4.213,0.584,0.0,0.0,0.0,0.0,1121.4,1672.2,1672.2,3.913,7.193,0.0,-0.018,2.578,0.0,0.0,0.425,4.087,-3.005,0.0,0.0,-0.017,0.0,-0.365,1.302,0.0,0.742,0.0,0.0,-3.752,-0.915,0.0,-0.013,-0.841,0.0,0.0,-0.013,-0.739,5.197,0.0,0.0,-0.012,0.0,-0.356,-0.408,-1.204,-0.286,0.0,0.0,4.875,1.111,817.2,530.6,4779.7,1341.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.459,27.459,26.809,26.809,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.031,0.0,0.0,3.152,0.858,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.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.235,9.538,0.576,0.0,0.0,0.0,7.0,1724.9,2082.3,2082.3,3.451,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11399.5,3156.5,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.283,28.283,27.589,27.589,0.694,0.0,0.0,0.0,0.0,0.0,0.0,0.055,0.0,0.0,3.797,0.97,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.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,0.616,0.0,10.469,9.538,0.576,0.0,0.0,0.0,13.0,1761.3,2255.9,2255.9,3.597,8.104,0.0,-0.015,2.472,0.0,0.0,0.423,3.919,-2.555,0.0,0.0,-0.011,0.0,-0.392,1.275,0.0,0.674,0.0,0.036,-4.548,-0.767,0.0,-0.01,-1.112,0.0,0.0,-0.046,-1.16,5.647,0.0,0.0,-0.005,0.0,-0.382,-0.522,-1.34,-0.394,0.0,1.244,7.418,1.259,1354.8,997.6,11399.5,3156.5,0.0,8647.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.753,27.753,27.137,27.137,0.616,0.0,0.0,0.0,0.0,0.0,0.0,0.074,0.0,0.0,3.438,0.858,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.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,0.581,0.0,9.235,9.538,0.576,0.0,0.0,0.0,7.0,1740.0,2153.7,2153.7,3.449,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11399.5,3156.5,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,33.206,33.206,32.7,32.7,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,8.9,0.97,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.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,0.594,0.0,10.469,9.538,0.576,0.0,0.0,0.0,13.0,2025.5,3517.6,3517.6,3.53,8.104,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11399.5,3156.5,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.904,27.904,27.398,27.398,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,3.597,0.97,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.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,0.594,0.0,10.469,9.538,0.576,0.0,0.0,0.0,13.0,1751.2,2206.5,2206.5,3.53,8.104,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11399.5,3156.5,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,23.226,23.226,22.703,22.703,0.522,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,0.0,0.0,9.596,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.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,0.467,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1522.2,1333.9,1522.2,3.443,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11399.5,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.28,23.28,22.722,22.722,0.558,0.0,0.0,0.0,0.0,0.0,0.0,0.044,0.0,0.0,0.0,0.0,9.596,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.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.495,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1530.0,1333.9,1530.0,3.595,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.029,-6.076,-1.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,1354.8,997.6,11399.5,3156.5,0.0,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.232,23.232,22.735,22.735,0.497,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,0.0,0.0,9.596,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.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,0.467,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1541.0,1333.9,1541.0,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11399.5,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.232,23.232,22.735,22.735,0.498,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,0.0,0.0,9.596,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.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.467,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1541.0,1333.9,1541.0,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11399.5,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.212,23.212,22.851,22.851,0.361,0.0,0.0,0.0,0.0,0.0,0.116,0.057,0.0,0.0,0.0,0.0,9.596,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1648.3,1333.9,1648.3,3.446,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.076,-1.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,1354.8,997.6,11399.5,3156.5,0.0,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.232,23.232,22.737,22.737,0.496,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,0.0,0.0,9.596,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.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,0.467,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1542.9,1333.9,1542.9,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11399.5,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,23.136,23.136,22.729,22.729,0.407,0.0,0.0,0.0,0.0,0.0,0.026,0.025,0.0,0.0,0.0,0.0,9.596,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.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,0.477,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1536.5,1333.9,1536.5,3.527,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.011,-6.076,-1.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,1354.8,997.6,11399.5,3156.5,0.0,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.759,26.759,26.759,26.759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.134,0.851,9.692,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,0.0,0.0,9.148,9.538,0.584,0.0,0.0,0.0,7.0,1721.8,1999.0,1999.0,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11399.5,3156.5,0.0,0.0,8028.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.512,27.512,27.512,27.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.775,0.962,9.692,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,0.0,0.0,10.377,9.538,0.584,0.0,0.0,0.0,13.0,1757.5,2211.5,2211.5,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11399.5,3156.5,0.0,0.0,8993.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,27.043,27.043,27.043,27.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.418,0.851,9.692,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,0.0,0.0,9.148,9.538,0.584,0.0,0.0,0.0,7.0,1736.7,2061.8,2061.8,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11399.5,3156.5,0.0,0.0,8028.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.578,32.578,32.578,32.578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.841,0.962,9.692,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,0.0,0.0,10.377,9.538,0.584,0.0,0.0,0.0,13.0,2116.8,3355.8,3355.8,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11399.5,3156.5,0.0,0.0,8993.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.313,27.313,27.313,27.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.577,0.962,9.692,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,0.0,0.0,10.377,9.538,0.584,0.0,0.0,0.0,13.0,1747.4,2166.7,2166.7,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11399.5,3156.5,0.0,0.0,8993.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-generator.xml,41.176,34.351,26.38,19.556,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,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,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.58,0.0,9.236,9.538,0.576,0.0,0.0,0.0,0.0,1700.2,2103.3,2103.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.759,26.759,26.759,26.759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.134,0.851,9.692,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,0.0,0.0,9.147,9.538,0.584,0.0,0.0,0.0,7.0,1721.8,1999.1,1999.1,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11399.5,3156.5,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.512,27.512,27.512,27.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.775,0.962,9.692,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,0.0,0.0,10.376,9.538,0.584,0.0,0.0,0.0,13.0,1757.5,2211.4,2211.4,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11399.5,3156.5,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,27.043,27.043,27.043,27.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.418,0.851,9.692,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,0.0,0.0,9.147,9.538,0.584,0.0,0.0,0.0,7.0,1736.7,2061.9,2061.9,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11399.5,3156.5,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.578,32.578,32.578,32.578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.841,0.962,9.692,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,0.0,0.0,10.376,9.538,0.584,0.0,0.0,0.0,13.0,2116.8,3355.7,3355.7,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11399.5,3156.5,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.313,27.313,27.313,27.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.577,0.962,9.692,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,0.0,0.0,10.376,9.538,0.584,0.0,0.0,0.0,13.0,1747.4,2166.6,2166.6,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11399.5,3156.5,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-generator.xml,41.176,34.351,26.38,19.556,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,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,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,9.236,9.538,0.576,0.0,0.0,0.0,0.0,1700.2,2103.3,2103.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,28.208,28.208,28.208,28.208,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.269,0.0,0.0,2.073,2.941,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.0,0.581,0.0,9.235,9.538,0.576,0.0,0.0,0.0,0.0,1743.3,1899.8,1899.8,3.449,7.708,0.0,-0.016,2.485,0.0,0.0,0.427,3.958,-2.568,0.0,0.0,-0.012,0.0,-0.392,1.285,0.0,0.682,0.0,0.0,-4.6,-0.777,0.0,-0.011,-1.098,0.0,0.0,-0.042,-1.121,5.634,0.0,0.0,-0.007,0.0,-0.381,-0.512,-1.333,-0.388,0.0,0.0,7.366,1.25,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.946,31.946,16.765,16.765,15.181,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.097,0.582,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.0,0.571,0.0,14.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.527,0.0,9.529,9.538,2.261,0.0,0.0,0.0,0.0,1022.6,1554.0,1554.0,3.495,7.738,0.0,-0.017,2.437,0.0,0.0,0.425,3.913,-2.473,0.0,0.0,-0.012,0.0,-0.417,2.024,0.0,0.0,0.0,0.0,-4.703,-0.752,0.0,-0.012,-1.156,0.0,0.0,-0.045,-1.182,5.73,0.0,0.0,-0.007,0.0,-0.406,-0.942,-1.35,0.0,0.0,0.0,7.75,1.274,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room.xml,29.828,29.828,16.572,16.572,13.256,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.944,0.541,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.0,0.742,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.685,0.0,8.806,9.539,0.568,0.0,0.0,0.0,0.0,1013.7,1542.1,1542.1,3.653,7.615,0.0,-0.017,2.498,0.0,0.0,0.426,3.976,-2.663,0.0,0.0,-0.014,0.0,-0.395,2.062,0.0,0.0,0.0,0.0,-4.478,-0.8,0.0,-0.012,-1.052,0.0,0.0,-0.036,-1.051,5.54,0.0,0.0,-0.009,0.0,-0.385,-0.862,-1.313,0.0,0.0,0.0,6.883,1.227,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.946,31.946,16.765,16.765,15.181,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.097,0.582,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.0,0.571,0.0,14.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.527,0.0,9.528,9.538,2.261,0.0,0.0,0.0,0.0,1022.6,1554.0,1554.0,3.495,7.738,0.0,-0.017,2.437,0.0,0.0,0.425,3.913,-2.473,0.0,0.0,-0.012,0.0,-0.417,2.025,0.0,0.0,0.0,0.0,-4.703,-0.752,0.0,-0.012,-1.156,0.0,0.0,-0.045,-1.182,5.73,0.0,0.0,-0.007,0.0,-0.406,-0.942,-1.35,0.0,0.0,0.0,7.75,1.274,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-laundry-room.xml,29.828,29.828,16.572,16.572,13.256,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.944,0.541,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.0,0.742,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.685,0.0,8.806,9.539,0.568,0.0,0.0,0.0,0.0,1013.7,1542.1,1542.1,3.653,7.615,0.0,-0.017,2.498,0.0,0.0,0.426,3.976,-2.663,0.0,0.0,-0.014,0.0,-0.395,2.062,0.0,0.0,0.0,0.0,-4.478,-0.8,0.0,-0.012,-1.052,0.0,0.0,-0.036,-1.051,5.54,0.0,0.0,-0.009,0.0,-0.386,-0.862,-1.313,0.0,0.0,0.0,6.883,1.227,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,50.871,50.871,30.822,30.822,20.049,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.808,0.312,9.723,0.0,0.0,2.026,0.0,0.206,3.727,0.946,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,0.0,7.888,0.0,0.0,0.0,0.0,12.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.308,0.0,5.088,9.538,0.615,0.0,0.0,0.0,0.0,1848.3,2269.9,2269.9,7.586,8.979,0.0,-0.017,2.791,0.0,0.0,0.407,4.196,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.34,0.0,0.0,-6.693,-1.194,0.0,-0.013,-0.143,0.0,0.0,0.06,0.126,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.698,-4.228,0.0,0.0,5.312,0.832,1354.8,997.6,11399.5,3156.5,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.772,32.772,27.48,27.48,5.293,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.686,0.467,9.695,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,0.0,1.335,0.0,0.0,0.0,0.0,3.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,1.234,0.0,7.542,9.538,0.586,0.0,0.0,0.0,0.0,1721.3,2073.9,2073.9,4.164,7.879,0.0,-0.018,2.638,0.0,0.0,0.432,4.149,-3.079,0.0,0.0,-0.017,0.0,-0.36,1.775,0.0,1.925,0.0,0.0,-5.318,-0.929,0.0,-0.013,-0.774,0.0,0.0,-0.004,-0.66,5.123,0.0,0.0,-0.012,0.0,-0.352,-0.53,-1.153,-1.781,0.0,0.0,6.659,1.097,1354.8,997.6,11399.5,3156.5,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent.xml,30.992,30.992,27.332,27.332,3.661,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.584,0.44,9.704,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,0.0,3.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,3.389,0.0,7.249,9.538,0.596,0.0,0.0,0.0,0.0,1610.3,2059.7,2059.7,5.987,8.5,0.0,-0.016,2.682,0.0,0.0,0.398,4.038,-3.61,0.0,0.0,-0.018,0.0,-0.253,1.738,0.0,5.306,0.0,0.0,-5.801,-1.04,0.0,-0.011,-0.571,0.0,0.0,-0.008,-0.518,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.44,-1.153,-1.513,0.0,0.0,6.186,0.987,1354.8,997.6,11399.5,3156.5,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-pv.xml,27.009,2.561,26.38,1.932,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,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.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.58,0.0,9.236,9.538,0.576,0.0,0.0,0.0,0.0,1700.2,2103.3,2103.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.991,30.991,17.684,17.684,13.307,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,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.732,0.0,8.892,9.539,0.568,0.0,0.0,0.0,0.0,1059.0,1603.0,1603.0,3.646,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.662,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.037,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater.xml,29.895,29.895,16.588,16.588,13.307,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,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.732,0.0,8.892,9.539,0.568,0.0,0.0,0.0,0.0,1006.3,1550.3,1550.3,3.646,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.662,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.037,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily.xml,27.009,27.009,26.38,26.38,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,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.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.58,0.0,9.236,9.538,0.576,0.0,0.0,0.0,0.0,1700.2,2103.3,2103.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-dhw-combi-tankless-outside.xml,51.256,51.256,21.423,21.423,29.833,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.367,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,16.326,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.811,0.0,0.73,0.0,0.0,-8.575,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,52.456,52.456,21.432,21.432,31.024,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.558,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.376,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1376.9,1017.3,1376.9,17.068,0.0,0.0,3.743,3.642,0.513,7.499,0.631,10.099,-12.691,0.0,0.0,0.0,8.145,-0.067,5.893,0.0,0.729,0.0,0.0,-8.581,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,32.191,32.191,32.191,32.191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.285,0.755,6.875,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.242,9.232,0.661,2.934,0.0,0.0,0.0,2070.1,2830.0,2830.0,0.0,19.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.094,-0.469,-0.052,2.673,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.193,-3.045,-0.166,0.0,3.723,8.627,2.036,1354.8,997.6,11412.2,2618.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.295,37.295,37.295,37.295,0.0,0.0,0.0,0.0,0.0,0.0,5.088,0.488,0.0,0.0,2.85,0.93,6.662,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.769,0.0,13.96,9.232,0.613,2.967,0.0,0.0,0.0,3279.9,2282.9,3279.9,21.515,16.342,0.0,3.603,3.642,0.513,7.524,0.63,10.096,-12.683,0.0,0.0,0.0,8.307,-0.064,4.809,0.0,0.729,0.0,3.415,-8.588,-2.499,0.0,-0.008,-0.463,-0.052,2.691,-0.026,-1.403,11.73,0.0,0.0,0.0,-6.344,-0.06,-1.17,-3.128,-0.165,0.0,2.065,8.497,2.01,1354.8,997.6,11413.8,2619.1,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,56.564,56.564,29.812,29.812,26.751,0.0,0.0,0.0,0.0,0.0,0.0,0.441,0.0,0.0,4.519,0.885,2.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.052,0.0,14.94,9.245,1.81,3.052,0.0,0.0,0.0,1879.5,3184.4,3184.4,23.506,19.709,0.0,3.523,3.636,0.512,7.506,0.627,10.063,-12.738,0.0,0.0,0.0,8.335,-0.05,4.798,0.0,0.727,0.0,5.656,-5.393,-2.509,0.0,-0.019,-0.419,-0.046,2.832,-0.016,-1.279,11.675,0.0,0.0,0.0,-6.108,-0.046,-1.122,-2.946,-0.156,0.0,3.252,7.632,2.001,1354.7,997.5,11382.2,2611.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,33.893,33.893,33.893,33.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.523,1.226,6.868,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.645,9.238,0.0,2.969,0.0,0.0,0.0,1942.3,3302.1,3302.1,0.0,19.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.071,-0.464,-0.051,2.687,-0.03,-1.43,11.85,0.0,0.0,0.0,-6.907,-0.064,-1.187,-3.016,-0.165,0.0,3.291,8.359,2.036,1354.8,997.6,11359.3,2606.6,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,31.448,31.448,31.448,31.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.336,6.871,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.032,9.232,0.661,2.941,0.0,0.0,0.0,2070.2,2556.1,2556.1,0.0,19.549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.135,-0.469,-0.052,2.673,-0.032,-1.446,11.85,0.0,0.0,0.0,-6.915,-0.064,-1.193,-3.048,-0.166,0.0,4.556,8.629,2.036,1354.8,997.6,11411.3,2618.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,33.912,33.912,33.912,33.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.577,1.245,6.814,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.874,9.232,0.661,3.023,0.0,0.0,0.0,2070.2,3315.5,3315.5,0.0,19.413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.077,-0.469,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.193,-3.047,-0.166,0.0,3.328,8.651,2.036,1354.8,997.6,11415.6,2619.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,56.11,56.11,33.838,33.838,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,6.923,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,6.826,0.614,0.0,0.0,0.0,0.0,2106.6,3417.4,3417.4,23.037,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,10264.8,2355.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-detailed-setpoints.xml,54.031,54.031,21.421,21.421,32.61,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,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,0.0,19.122,0.0,13.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.131,0.0,0.0,9.256,2.363,0.0,0.0,0.0,0.0,1376.0,1017.3,1376.0,16.68,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.108,-12.669,0.0,0.0,0.0,8.131,-0.068,5.898,0.0,0.729,0.0,0.0,-9.891,-2.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,1161.6,860.6,9627.0,2209.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-dse.xml,59.001,59.001,21.458,21.458,37.543,0.0,0.0,0.0,0.0,0.0,0.0,0.182,0.0,0.0,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,0.0,23.96,0.0,13.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,16.173,0.0,0.0,9.261,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.777,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.133,-0.07,5.899,0.0,0.729,0.0,0.0,-9.854,-2.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,1071.4,776.1,9071.0,2081.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-outside.xml,55.593,55.593,21.423,21.423,34.17,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.367,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.326,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.811,0.0,0.73,0.0,0.0,-8.575,-2.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,1066.9,770.9,9019.2,2069.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,54.412,54.412,21.42,21.42,32.993,0.0,0.0,0.0,0.0,0.0,0.0,0.143,0.0,0.0,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,0.0,18.912,0.0,14.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,15.952,0.0,0.0,9.263,2.691,0.0,0.0,0.0,0.0,1375.9,1017.3,1375.9,16.729,0.0,0.0,3.746,3.646,0.513,7.512,0.632,10.114,-12.663,0.0,0.0,0.0,8.131,-0.071,5.901,0.0,0.73,0.0,0.0,-10.091,-2.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,1065.3,770.2,9041.3,2074.7,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,46.245,46.245,21.429,21.429,24.817,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.075,0.0,4.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,16.958,0.0,0.0,9.239,0.784,0.0,6.005,0.0,0.0,1376.6,1017.3,1376.6,16.971,0.0,0.0,3.745,3.645,0.513,7.503,0.631,10.103,-12.69,0.0,0.0,0.0,8.144,-0.067,5.896,0.0,0.729,0.0,0.0,-9.024,-2.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,388.8,286.9,3208.7,736.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,54.172,54.172,21.422,21.422,32.751,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,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,0.0,19.168,0.0,13.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,16.173,0.0,0.0,9.261,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.777,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.133,-0.07,5.899,0.0,0.729,0.0,0.0,-9.854,-2.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,1071.4,776.1,9071.0,2081.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,58.239,58.239,35.752,35.752,22.486,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.387,0.851,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,0.0,22.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.058,0.0,14.342,9.233,0.295,0.0,0.0,0.0,0.0,2107.2,3415.9,3415.9,23.089,19.071,0.0,3.554,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.81,0.0,0.729,0.0,4.875,-8.733,-2.499,0.0,-0.054,-0.462,-0.052,2.693,-0.026,-1.399,11.73,0.0,0.0,0.0,-6.338,-0.06,-1.169,-3.09,-0.165,0.0,3.188,7.726,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,64.298,64.298,27.019,27.019,37.279,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.489,0.876,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,0.0,22.891,0.0,14.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.437,0.0,14.763,9.233,2.724,0.0,0.0,0.0,0.0,1464.4,3157.2,3157.2,23.585,19.542,0.0,3.552,3.645,0.513,7.531,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,5.895,0.0,0.729,0.0,4.962,-9.538,-2.499,0.0,-0.06,-0.465,-0.052,2.687,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.346,-0.058,-1.452,-3.115,-0.166,0.0,3.27,8.403,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,56.424,56.424,29.666,29.666,26.759,0.0,0.0,0.0,0.0,0.0,0.0,0.441,0.0,0.0,3.924,0.739,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,0.0,26.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,25.06,0.0,12.495,9.287,1.303,0.0,0.0,0.0,0.0,1896.4,3566.8,3566.8,23.597,19.104,0.0,3.521,3.635,0.511,7.504,0.628,10.066,-12.731,0.0,0.0,0.0,8.331,-0.051,4.799,0.0,0.727,0.0,5.652,-5.369,-2.51,0.0,0.006,-0.412,-0.045,2.855,-0.013,-1.251,11.682,0.0,0.0,0.0,-6.077,-0.048,-1.113,-2.823,-0.154,0.0,2.83,5.407,2.0,1354.8,997.6,10983.2,2520.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-indirect.xml,53.971,53.971,21.423,21.423,32.547,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.387,0.0,13.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.363,0.0,0.0,9.26,1.911,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.825,0.0,0.0,3.746,3.646,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.138,-0.068,5.898,0.0,0.729,0.0,0.0,-9.652,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1075.2,777.5,9105.9,2089.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,57.982,57.982,35.711,35.711,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,8.838,0.614,0.0,0.0,0.0,0.0,2129.0,3421.3,3421.3,23.035,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,10829.5,2485.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-multiple.xml,46.905,46.905,23.372,23.372,23.533,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,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,0.0,19.593,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,16.545,0.0,0.0,9.225,2.814,0.0,5.996,0.0,0.0,2111.5,1815.9,2111.5,18.806,0.0,0.0,3.745,3.645,0.513,7.508,0.631,10.107,-12.678,0.0,0.0,0.0,8.141,-0.068,5.898,0.0,0.729,0.0,0.0,-9.468,-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,472.0,347.5,3998.3,917.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,46.916,46.916,24.677,24.677,22.239,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.38,0.85,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,0.0,22.239,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.826,0.0,14.413,0.0,0.0,0.0,0.0,0.0,0.0,1360.8,3014.3,3014.3,23.074,19.087,0.0,3.558,3.646,0.513,7.535,0.631,10.106,-12.683,0.0,0.0,0.0,8.321,-0.064,5.409,0.0,0.0,0.0,4.829,-8.819,-2.499,0.0,-0.059,-0.466,-0.052,2.681,-0.027,-1.413,11.73,0.0,0.0,0.0,-6.357,-0.06,-1.308,-3.107,0.0,0.0,3.187,7.842,2.011,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,58.3,58.3,36.028,36.028,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.174,0.614,0.0,0.0,0.0,0.0,2132.0,3422.6,3422.6,23.035,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,57.873,57.873,35.602,35.602,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.174,0.614,0.0,0.0,0.0,0.0,2117.1,3408.0,3408.0,23.035,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,73.249,73.249,50.977,50.977,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.268,0.614,0.0,0.0,0.0,0.0,3078.6,4011.9,4011.9,23.034,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,68.338,68.338,46.067,46.067,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.268,0.614,0.0,0.0,0.0,0.0,2760.3,3826.9,3826.9,23.034,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,73.249,73.249,50.977,50.977,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.268,0.614,0.0,0.0,0.0,0.0,3078.6,4011.9,4011.9,23.034,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,52.5,52.5,30.228,30.228,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.417,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.469,9.254,0.627,0.0,6.674,0.0,0.0,2090.5,3145.8,3145.8,23.034,19.138,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.107,-0.166,0.0,3.208,7.886,2.011,1354.7,997.5,11215.4,2573.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,51.021,51.021,28.758,28.758,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.429,0.861,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.0,14.521,9.362,0.693,0.0,8.431,0.0,0.0,2086.3,3149.3,3149.3,23.034,19.167,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.832,-8.912,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.173,-3.112,-0.166,0.0,3.216,7.944,2.011,1354.4,997.2,10423.4,2391.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,52.558,52.558,30.287,30.287,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.422,0.86,3.032,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.492,9.29,0.649,0.0,6.682,0.0,0.0,2102.2,3147.9,3147.9,23.035,19.156,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.684,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.108,-0.166,0.0,3.212,7.908,2.011,1354.7,997.6,10950.1,2512.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,52.627,52.627,30.087,30.087,22.54,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.381,0.85,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,0.0,22.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.109,0.0,14.314,9.233,0.215,0.0,6.002,0.0,0.0,1767.2,3422.0,3422.0,23.101,19.058,0.0,3.554,3.644,0.513,7.529,0.631,10.098,-12.69,0.0,0.0,0.0,8.316,-0.062,4.81,0.0,0.729,0.0,4.886,-8.691,-2.5,0.0,-0.052,-0.461,-0.051,2.696,-0.026,-1.399,11.724,0.0,0.0,0.0,-6.332,-0.059,-1.168,-3.086,-0.165,0.0,3.183,7.688,2.01,474.2,349.2,3989.9,915.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,50.76,50.76,28.845,28.845,21.914,0.0,0.0,0.0,0.0,0.0,0.0,0.362,0.0,0.0,4.532,0.887,1.483,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,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.522,0.0,14.964,9.342,0.681,0.0,8.428,0.0,0.0,2074.7,3182.6,3182.6,23.069,19.439,0.0,3.559,3.645,0.513,7.536,0.63,10.098,-12.669,0.0,0.0,0.0,8.31,-0.061,4.81,0.0,0.729,0.0,4.765,-9.202,-2.496,0.0,-0.069,-0.473,-0.053,2.664,-0.029,-1.44,11.744,0.0,0.0,0.0,-6.388,-0.057,-1.184,-3.16,-0.168,0.0,3.291,8.463,2.013,1354.2,997.1,10553.0,2421.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,50.742,50.742,28.479,28.479,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.428,0.861,1.545,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.0,14.519,9.357,0.69,0.0,8.389,0.0,0.0,2092.5,3117.0,3117.0,23.034,19.165,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.832,-8.912,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.173,-3.112,-0.166,0.0,3.216,7.942,2.011,1354.4,997.3,10455.3,2399.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,65.034,65.034,27.073,27.073,22.494,0.0,0.0,0.0,0.0,15.467,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.065,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.7,3167.7,23.493,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.897,0.0,0.729,0.0,4.885,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.365,-0.058,-1.458,-3.143,-0.167,0.0,3.304,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-detailed-setpoints.xml,58.333,58.333,36.068,36.068,22.265,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.85,0.0,14.458,9.207,0.623,0.0,0.0,0.0,0.0,2477.2,3444.6,3444.6,23.012,19.117,0.0,3.556,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.811,0.0,0.729,0.0,4.832,-8.91,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.107,-0.166,0.0,3.206,7.877,2.01,1354.8,997.6,11442.2,2625.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,58.377,58.377,36.157,36.157,22.219,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.42,0.859,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,0.0,22.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.808,0.0,14.483,9.233,0.691,0.0,0.0,0.0,0.0,2172.6,3607.3,3607.3,23.024,19.135,0.0,3.557,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.824,-8.947,-2.499,0.0,-0.057,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.173,-3.11,-0.166,0.0,3.21,7.908,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,66.752,66.752,26.859,26.859,39.893,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.686,0.0,17.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,21.245,0.0,14.238,9.233,5.067,0.0,0.0,0.0,0.0,1462.6,3100.2,3100.2,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,64.708,64.708,27.035,27.035,37.673,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.504,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,0.0,22.77,0.0,14.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.324,0.0,14.826,9.233,2.977,0.0,0.0,0.0,0.0,1464.3,3160.4,3160.4,23.559,19.57,0.0,3.553,3.645,0.513,7.531,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.896,0.0,0.729,0.0,4.939,-9.636,-2.499,0.0,-0.062,-0.466,-0.052,2.683,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.453,-3.124,-0.166,0.0,3.28,8.483,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,64.708,64.708,27.035,27.035,37.673,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.504,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,0.0,22.77,0.0,14.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.324,0.0,14.826,9.233,2.977,0.0,0.0,0.0,0.0,1464.3,3160.4,3160.4,23.559,19.57,0.0,3.553,3.645,0.513,7.531,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.896,0.0,0.729,0.0,4.939,-9.636,-2.499,0.0,-0.062,-0.466,-0.052,2.683,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.453,-3.124,-0.166,0.0,3.28,8.483,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,65.034,65.034,27.073,27.073,37.961,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.494,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,21.065,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.7,3167.7,23.493,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.897,0.0,0.729,0.0,4.885,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.365,-0.058,-1.458,-3.143,-0.167,0.0,3.304,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,56.397,56.397,28.819,28.819,27.578,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,3.866,0.726,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,0.0,27.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,25.822,0.0,12.242,9.374,1.414,0.0,0.0,0.0,0.0,1847.8,3081.4,3081.4,26.695,18.881,0.0,3.505,3.633,0.511,7.506,0.628,10.08,-12.706,0.0,0.0,0.0,8.337,-0.061,4.801,0.0,0.727,0.0,5.813,-4.801,-2.509,0.0,0.019,-0.396,-0.042,2.895,-0.008,-1.181,11.708,0.0,0.0,0.0,-5.995,-0.057,-1.085,-2.725,-0.154,0.0,2.776,5.019,2.0,1354.8,997.6,10201.9,2341.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.261,56.261,28.645,28.645,27.615,0.0,0.0,0.0,0.0,0.0,0.0,0.456,0.0,0.0,3.852,0.722,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,0.0,27.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,0.0,25.849,0.0,12.191,9.29,1.306,0.0,0.0,0.0,0.0,1860.4,3442.5,3442.5,25.483,19.07,0.0,3.518,3.637,0.512,7.511,0.627,10.064,-12.741,0.0,0.0,0.0,8.354,-0.042,4.799,0.0,0.727,0.0,5.808,-4.777,-2.511,0.0,0.022,-0.397,-0.043,2.901,-0.011,-1.214,11.672,0.0,0.0,0.0,-6.003,-0.038,-1.097,-2.759,-0.152,0.0,2.783,5.017,1.999,1354.8,997.6,10960.7,2515.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,56.367,56.367,33.681,33.681,22.686,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,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,0.0,22.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,21.245,0.0,14.238,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3332.1,3332.1,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11245.7,2580.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,56.261,56.261,28.645,28.645,27.615,0.0,0.0,0.0,0.0,0.0,0.0,0.456,0.0,0.0,3.852,0.722,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,0.0,27.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,0.0,25.849,0.0,12.191,9.29,1.306,0.0,0.0,0.0,0.0,1860.4,3442.5,3442.5,25.483,19.07,0.0,3.518,3.637,0.512,7.511,0.627,10.064,-12.741,0.0,0.0,0.0,8.354,-0.042,4.799,0.0,0.727,0.0,5.808,-4.777,-2.511,0.0,0.022,-0.397,-0.043,2.901,-0.011,-1.214,11.672,0.0,0.0,0.0,-6.003,-0.038,-1.097,-2.759,-0.152,0.0,2.783,5.017,1.999,1354.8,997.6,10960.7,2515.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,52.015,52.015,27.95,27.95,24.065,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.215,0.81,1.253,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,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.532,0.0,13.653,9.266,0.602,0.0,6.023,0.0,0.0,1880.1,3178.1,3178.1,26.022,19.099,0.0,3.544,3.641,0.512,7.517,0.63,10.08,-12.707,0.0,0.0,0.0,8.321,-0.054,4.804,0.0,0.728,0.0,5.166,-7.502,-2.501,0.0,-0.029,-0.442,-0.049,2.751,-0.021,-1.349,11.706,0.0,0.0,0.0,-6.239,-0.05,-1.148,-2.982,-0.162,0.0,3.057,6.853,2.008,474.2,349.2,3898.4,894.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,51.579,51.579,28.573,28.573,23.007,0.0,0.0,0.0,0.0,0.0,0.0,0.38,0.0,0.0,4.566,0.895,1.125,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,0.0,23.007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.544,0.0,15.117,9.179,1.961,0.0,8.149,0.0,0.0,1891.7,3199.1,3199.1,23.383,19.568,0.0,3.554,3.646,0.513,7.539,0.629,10.091,-12.687,0.0,0.0,0.0,8.325,-0.057,4.809,0.0,0.729,0.0,4.966,-8.375,-2.498,0.0,-0.064,-0.466,-0.052,2.683,-0.029,-1.429,11.726,0.0,0.0,0.0,-6.347,-0.053,-1.177,-3.156,-0.166,0.0,3.314,8.556,2.012,1354.5,997.3,11926.7,2736.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,56.512,56.512,29.822,29.822,26.69,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,3.938,0.743,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,0.0,26.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,24.991,0.0,12.561,9.279,1.718,0.0,0.0,0.0,0.0,1871.8,3309.5,3309.5,23.447,19.257,0.0,3.522,3.634,0.511,7.507,0.628,10.071,-12.731,0.0,0.0,0.0,8.342,-0.054,4.8,0.0,0.727,0.0,5.642,-5.46,-2.511,0.0,0.003,-0.415,-0.045,2.847,-0.014,-1.252,11.682,0.0,0.0,0.0,-6.076,-0.05,-1.114,-2.828,-0.154,0.0,2.838,5.479,1.999,1354.8,997.6,11052.3,2536.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.941,58.941,35.718,35.718,23.224,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.453,0.866,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,21.746,0.0,14.577,9.275,0.094,0.0,0.0,0.0,0.0,4636.3,5578.8,5578.8,30.734,19.973,0.0,3.55,3.644,0.513,7.528,0.631,10.102,-12.682,0.0,0.0,0.0,8.311,-0.062,5.268,0.0,0.777,0.0,5.012,-8.678,-2.504,0.0,-0.055,-0.461,-0.051,2.696,-0.025,-1.393,11.731,0.0,0.0,0.0,-6.334,-0.058,-1.27,-3.077,-0.186,0.0,3.233,8.042,2.006,1354.7,998.0,11011.7,2526.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,58.224,58.224,35.602,35.602,22.622,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.371,0.847,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,0.0,22.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.186,0.0,14.272,9.282,0.094,0.0,0.0,0.0,0.0,2012.3,3454.9,3454.9,23.121,19.038,0.0,3.553,3.644,0.513,7.528,0.63,10.097,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.902,-8.625,-2.5,0.0,-0.051,-0.46,-0.051,2.699,-0.025,-1.396,11.724,0.0,0.0,0.0,-6.328,-0.058,-1.167,-3.08,-0.165,0.0,3.177,7.633,2.01,1354.8,997.6,10995.2,2523.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,65.034,65.034,27.073,27.073,22.494,15.467,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.494,0.0,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,21.065,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.7,3167.7,23.493,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.897,0.0,0.729,0.0,4.885,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.365,-0.058,-1.458,-3.143,-0.167,0.0,3.304,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,65.034,65.034,27.073,27.073,22.494,0.0,0.0,15.467,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.494,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.065,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.7,3167.7,23.493,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.897,0.0,0.729,0.0,4.885,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.365,-0.058,-1.458,-3.143,-0.167,0.0,3.304,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,60.911,60.911,26.859,26.859,34.052,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.686,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.245,0.0,14.238,9.214,0.0,0.0,0.0,0.0,0.0,1462.6,3100.2,3100.2,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11575.0,2656.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,58.979,58.979,36.293,36.293,22.686,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.245,0.0,14.238,9.234,0.0,0.0,0.0,0.0,0.0,2022.5,3495.1,3495.1,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,58.873,58.873,36.187,36.187,22.686,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,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,0.0,22.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,21.245,0.0,14.238,9.234,0.0,0.0,0.0,0.0,0.0,2016.1,3490.6,3490.6,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,58.979,58.979,36.293,36.293,22.686,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.245,0.0,14.238,9.234,0.0,0.0,0.0,0.0,0.0,2022.5,3495.1,3495.1,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,59.374,59.374,26.859,26.859,32.515,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.686,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.245,0.0,14.238,9.234,0.0,0.0,0.0,0.0,0.0,1462.6,3100.2,3100.2,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,53.531,53.531,26.859,26.859,26.672,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.686,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.245,0.0,14.238,9.234,0.0,0.0,6.002,0.0,0.0,1462.6,3100.2,3100.2,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,474.2,349.2,3988.9,915.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,51.256,51.256,27.289,27.289,23.967,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.47,0.872,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.328,0.0,1.639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.91,0.0,14.696,9.417,0.0,0.0,8.084,0.0,0.0,1462.4,3166.2,3166.2,23.17,19.302,0.0,3.557,3.645,0.513,7.532,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,4.811,0.0,0.729,0.0,4.845,-8.874,-2.498,0.0,-0.061,-0.467,-0.052,2.68,-0.027,-1.419,11.73,0.0,0.0,0.0,-6.359,-0.058,-1.176,-3.127,-0.166,0.0,3.248,8.126,2.011,1344.9,989.3,10030.6,2301.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,60.935,60.935,26.859,26.859,34.076,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.686,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.245,0.0,14.238,9.234,0.0,0.0,0.0,0.0,0.0,1462.6,3100.2,3100.2,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,60.935,60.935,26.859,26.859,22.686,0.0,11.39,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.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,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.245,0.0,14.238,9.234,0.0,0.0,0.0,0.0,0.0,1462.6,3100.2,3100.2,23.137,19.023,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.809,0.0,0.729,0.0,4.914,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.166,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,65.836,65.836,41.127,41.127,24.709,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,6.442,1.322,9.119,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,0.0,24.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,0.0,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.042,0.0,22.267,9.211,0.609,0.0,0.0,0.0,0.0,2307.2,4586.9,4586.9,30.679,28.149,0.0,3.862,7.596,1.093,5.881,0.688,20.477,-24.88,0.0,0.0,0.867,6.711,-0.179,8.979,0.0,0.763,0.0,3.296,-9.747,-2.93,0.0,-0.11,-1.064,-0.109,1.841,-0.027,-1.632,23.454,0.0,0.0,-0.141,-4.808,-0.17,-1.954,-6.137,-0.162,0.0,2.913,8.485,2.338,1354.8,997.6,11399.5,2576.4,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7646.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25898.0,4444.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,73.821,73.821,44.434,44.434,29.388,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,6.33,1.295,9.004,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,0.0,29.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,27.407,0.0,21.789,9.146,0.612,0.0,0.0,0.0,0.0,2519.1,4711.9,4711.9,33.929,28.29,0.0,3.774,7.88,1.071,7.921,0.667,20.51,-25.19,0.0,0.0,0.0,9.056,-0.136,11.154,0.0,0.747,0.0,3.87,-10.951,-3.54,0.0,-0.076,-1.046,-0.101,2.662,-0.023,-2.118,23.376,0.0,0.0,0.0,-6.456,-0.126,-2.483,-6.302,-0.162,0.0,2.839,9.405,2.832,1354.8,997.6,11399.6,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25800.0,4443.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,54.948,54.948,30.687,30.687,24.261,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.1,0.781,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,0.0,24.261,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.312,5.356,0.615,0.0,0.0,0.0,0.0,1778.7,3279.3,3279.3,23.626,18.495,0.0,3.533,3.635,0.511,7.498,0.63,10.083,-12.698,0.0,0.0,0.0,8.293,-0.065,4.808,0.0,0.727,0.0,5.23,-7.29,-2.504,0.0,-0.019,-0.433,-0.048,2.778,-0.018,-1.304,11.715,0.0,0.0,0.0,-6.199,-0.061,-1.138,-2.942,-0.161,0.0,3.028,6.287,2.006,939.7,637.0,6287.7,1631.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18319.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,56.681,56.681,33.418,33.418,23.262,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.254,0.819,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,0.0,23.262,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.785,0.0,13.878,7.337,0.614,0.0,0.0,0.0,0.0,2047.7,3350.9,3350.9,23.33,18.795,0.0,3.544,3.639,0.512,7.513,0.63,10.088,-12.691,0.0,0.0,0.0,8.302,-0.063,4.808,0.0,0.728,0.0,5.032,-8.097,-2.5,0.0,-0.038,-0.449,-0.05,2.732,-0.022,-1.359,11.723,0.0,0.0,0.0,-6.276,-0.059,-1.156,-3.023,-0.163,0.0,3.117,7.08,2.009,1147.2,817.3,8843.6,2197.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18552.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,59.997,59.997,38.705,38.705,21.292,0.0,0.0,0.0,0.0,0.0,0.0,0.351,0.0,0.0,4.577,0.898,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,0.0,21.292,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.939,0.0,15.047,11.089,0.613,0.0,0.0,0.0,0.0,2192.5,3633.7,3633.7,22.738,19.45,0.0,3.569,3.65,0.514,7.549,0.631,10.109,-12.676,0.0,0.0,0.0,8.327,-0.061,4.812,0.0,0.731,0.0,4.637,-9.709,-2.497,0.0,-0.075,-0.479,-0.054,2.64,-0.031,-1.46,11.737,0.0,0.0,0.0,-6.42,-0.058,-1.189,-3.188,-0.168,0.0,3.296,8.669,2.013,1562.4,1177.9,13955.4,2960.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 -base-enclosure-beds-5.xml,61.637,61.637,41.314,41.314,20.323,0.0,0.0,0.0,0.0,0.0,0.0,0.335,0.0,0.0,4.745,0.939,12.591,0.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,0.0,20.323,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.031,0.0,15.648,12.918,0.612,0.0,0.0,0.0,0.0,2559.7,3923.5,3923.5,22.441,19.772,0.0,3.581,3.657,0.515,7.568,0.633,10.128,-12.669,0.0,0.0,0.0,8.348,-0.064,4.817,0.0,0.733,0.0,4.442,-10.517,-2.496,0.0,-0.092,-0.493,-0.056,2.596,-0.034,-1.503,11.744,0.0,0.0,0.0,-6.484,-0.06,-1.203,-3.267,-0.17,0.0,3.385,9.461,2.013,1770.0,1358.2,16511.3,3258.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19257.0,5338.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 -base-enclosure-ceilingtypes.xml,74.446,74.446,36.588,36.588,37.858,0.0,0.0,0.0,0.0,0.0,0.0,0.625,0.0,0.0,4.612,0.908,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,0.0,37.858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.449,0.0,15.263,9.233,0.618,0.0,0.0,0.0,0.0,2162.8,3488.4,3488.4,29.354,19.726,0.0,17.288,3.592,0.505,7.259,0.62,9.956,-12.802,0.0,0.0,0.0,7.765,-0.075,4.849,0.0,0.734,0.0,6.977,-9.066,-2.542,0.0,0.077,-0.331,-0.033,2.89,0.007,-1.002,11.611,0.0,0.0,0.0,-6.097,-0.066,-1.018,-2.911,-0.141,0.0,2.804,7.716,1.968,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30006.0,5442.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,67.246,67.246,29.481,29.481,37.764,0.0,0.0,0.0,0.0,0.0,0.0,0.623,0.0,0.0,3.689,0.672,9.367,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,37.764,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.371,0.0,11.163,9.342,0.62,0.0,0.0,0.0,2.0,1781.3,3656.1,3656.1,29.151,21.057,0.0,3.488,3.656,0.0,0.0,0.672,9.52,-13.012,0.0,0.0,29.107,0.0,-0.209,2.053,0.0,0.788,0.0,7.865,-7.472,-1.575,0.0,0.406,-0.079,0.0,0.0,0.093,0.884,10.956,0.0,0.0,-8.039,0.0,-0.204,-0.263,-1.883,-0.087,0.0,2.753,5.732,1.072,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19985.0,5355.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-enclosure-garage.xml,58.664,58.664,34.731,34.731,23.933,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.101,0.55,9.267,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,0.0,23.933,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.407,0.0,9.117,9.233,0.724,0.0,0.0,0.0,0.0,2122.7,2939.7,2939.7,18.034,11.764,0.0,3.529,3.789,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.372,0.0,0.0,0.0,3.763,-6.763,-2.508,0.0,0.098,-0.288,-0.036,2.418,-0.001,-1.133,8.269,0.0,0.0,0.0,-5.679,-0.041,-1.226,-2.105,0.0,0.0,1.325,5.683,2.002,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,58.334,58.334,36.078,36.078,22.255,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,20.842,0.0,14.456,9.233,0.614,0.0,0.0,0.0,0.0,2131.9,3422.1,3422.1,23.026,19.121,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.798,0.0,0.729,0.0,4.83,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.684,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.169,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,58.334,58.334,36.078,36.078,22.255,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,20.842,0.0,14.456,9.233,0.614,0.0,0.0,0.0,0.0,2131.9,3422.1,3422.1,23.026,19.121,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.798,0.0,0.729,0.0,4.83,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.684,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.169,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,58.35,58.35,36.078,36.078,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,65.959,65.959,36.09,36.09,29.869,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.324,0.832,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,0.0,29.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.972,0.0,13.991,9.233,0.616,0.0,0.0,0.0,0.0,2154.8,3871.9,3871.9,28.052,20.147,0.0,3.501,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.546,0.0,0.726,0.0,6.344,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.82,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.125,-0.057,-2.426,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,59.761,59.761,36.078,36.078,23.683,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.395,0.852,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,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.179,0.0,14.354,9.233,0.614,0.0,0.0,0.0,0.0,2117.2,3447.7,3447.7,23.775,19.353,0.0,3.544,3.642,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.319,-0.062,5.892,0.0,0.728,0.0,5.115,-8.911,-2.5,0.0,-0.049,-0.456,-0.051,2.716,-0.024,-1.382,11.724,0.0,0.0,0.0,-6.303,-0.058,-1.437,-3.059,-0.164,0.0,3.204,7.868,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,65.959,65.959,36.09,36.09,29.869,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.324,0.832,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,0.0,29.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.972,0.0,13.991,9.233,0.616,0.0,0.0,0.0,0.0,2154.8,3871.9,3871.9,28.052,20.147,0.0,3.501,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.546,0.0,0.726,0.0,6.344,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.82,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.125,-0.057,-2.426,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,65.959,65.959,36.09,36.09,29.869,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.324,0.832,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,0.0,29.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.972,0.0,13.991,9.233,0.616,0.0,0.0,0.0,0.0,2154.8,3871.9,3871.9,28.052,20.147,0.0,3.501,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.546,0.0,0.726,0.0,6.344,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.82,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.125,-0.057,-2.426,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19444.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,58.572,58.572,36.054,36.054,22.518,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.39,0.852,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.088,0.0,14.359,9.233,0.614,0.0,0.0,0.0,0.0,2132.4,3418.5,3418.5,23.05,19.087,0.0,3.551,3.641,0.512,7.521,0.864,10.091,-12.683,0.0,0.0,0.0,8.303,-0.064,4.809,0.0,0.729,0.0,4.879,-8.906,-2.499,0.0,-0.053,-0.461,-0.052,2.692,-0.155,-1.398,11.73,0.0,0.0,0.0,-6.336,-0.06,-1.169,-3.091,-0.165,0.0,3.184,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,58.473,58.473,35.907,35.907,22.566,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.272,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,22.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.132,0.0,13.872,9.233,0.614,0.0,0.0,0.0,0.0,2132.1,3376.2,3376.2,22.989,18.595,0.0,3.548,3.639,0.512,7.51,0.629,10.004,-12.276,0.0,0.0,0.0,8.277,-0.063,4.808,0.0,0.729,0.0,4.883,-8.91,-2.5,0.0,-0.037,-0.451,-0.05,2.717,-0.023,-1.42,11.099,0.0,0.0,0.0,-6.287,-0.059,-1.164,-3.063,-0.164,0.0,3.082,7.868,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,58.268,58.268,35.911,35.911,22.357,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.277,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,0.0,22.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.936,0.0,13.896,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3300.2,3300.2,22.863,18.06,0.0,3.669,3.643,0.513,7.524,0.63,10.094,-12.69,0.0,0.0,0.0,8.307,-0.061,4.81,0.0,0.729,0.0,4.837,-8.908,-2.5,0.0,-0.306,-0.459,-0.051,2.699,-0.025,-1.393,11.724,0.0,0.0,0.0,-6.326,-0.058,-1.169,-3.088,-0.165,0.0,2.846,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,60.867,60.867,37.183,37.183,23.684,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,5.288,1.065,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,23.684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.179,0.0,18.03,9.233,0.612,0.0,0.0,0.0,3.0,2138.5,3597.9,3597.9,24.762,21.557,0.0,3.552,3.66,0.515,7.583,0.634,10.135,-12.625,2.717,-2.174,0.0,8.471,-0.068,4.82,0.0,0.732,0.0,5.145,-8.887,-2.495,0.0,-0.146,-0.516,-0.059,2.583,-0.039,-1.533,11.705,-0.068,3.749,0.0,-6.624,-0.063,-1.188,-3.252,-0.17,0.0,4.013,7.889,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23503.0,5405.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,59.487,59.487,36.124,36.124,23.363,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.436,0.862,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.879,0.0,14.523,9.233,0.614,0.0,0.0,0.0,0.0,2117.0,3460.1,3460.1,23.655,19.388,0.0,3.538,3.64,0.512,7.524,0.63,10.088,-12.677,1.147,-0.32,0.0,8.318,-0.063,4.81,0.0,0.729,0.0,5.049,-8.906,-2.499,0.0,-0.056,-0.458,-0.051,2.705,-0.025,-1.387,11.724,-0.498,0.432,0.0,-6.324,-0.059,-1.164,-3.074,-0.165,0.0,3.237,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19513.0,5321.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,58.87,58.87,36.839,36.839,22.031,0.0,0.0,0.0,0.0,0.0,0.0,0.363,0.0,0.0,5.031,1.005,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,22.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,20.631,0.0,17.0,9.233,0.612,0.0,0.0,0.0,0.0,2133.7,3597.9,3597.9,23.623,20.822,0.0,3.568,3.663,0.516,7.583,0.634,10.138,-12.642,0.857,-1.409,0.0,8.436,-0.063,4.818,0.0,0.732,0.0,4.802,-8.885,-2.496,0.0,-0.128,-0.51,-0.059,2.585,-0.038,-1.534,11.715,0.254,2.537,0.0,-6.586,-0.059,-1.197,-3.257,-0.17,0.0,3.753,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21675.0,5363.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,58.623,58.623,36.939,36.939,21.684,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,5.117,1.026,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,21.684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.306,0.0,17.364,9.233,0.612,0.0,0.0,0.0,0.0,2133.2,3597.9,3597.9,23.539,20.993,0.0,3.574,3.667,0.516,7.595,0.636,10.154,-12.632,0.765,-1.651,0.0,8.463,-0.066,4.822,0.0,0.732,0.0,4.734,-8.884,-2.495,0.0,-0.141,-0.519,-0.06,2.564,-0.04,-1.554,11.716,0.258,2.975,0.0,-6.633,-0.063,-1.202,-3.288,-0.171,0.0,3.822,7.892,2.015,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32878.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21909.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,40.55,40.55,29.578,29.578,10.972,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,3.951,0.751,9.563,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,10.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,10.268,0.0,12.42,9.458,0.606,0.0,0.0,0.0,0.0,1710.6,2631.3,2631.3,13.168,13.025,0.0,3.945,3.838,0.0,0.0,0.691,10.079,-12.095,0.0,0.0,0.0,7.996,-0.152,2.657,0.0,0.776,0.0,0.289,-6.808,-1.452,0.0,-0.102,-0.617,0.0,0.0,-0.024,-0.74,12.161,0.0,0.0,0.0,-1.657,-0.149,-0.598,-3.044,-0.169,0.0,0.091,6.381,1.195,1354.8,997.6,11399.5,3013.0,0.0,36000.0,24000.0,0.0,6.8,91.76,28989.0,1641.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,312.0,0.0,-488.0,800.0 -base-enclosure-thermal-mass.xml,58.143,58.143,36.031,36.031,22.112,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.376,0.85,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.708,0.0,14.333,9.233,0.614,0.0,0.0,0.0,0.0,2131.9,3384.4,3384.4,22.906,18.773,0.0,3.557,3.642,0.513,7.508,0.63,10.116,-12.697,0.0,0.0,0.0,8.279,-0.098,4.805,0.0,0.728,0.0,4.786,-8.907,-2.499,0.0,-0.05,-0.46,-0.051,2.699,-0.026,-1.427,11.731,0.0,0.0,0.0,-6.336,-0.094,-1.176,-3.142,-0.166,0.0,3.139,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,75.038,75.038,34.73,34.73,40.309,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,3.069,0.549,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,0.0,40.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.736,0.0,9.028,9.233,0.622,0.0,0.0,0.0,0.0,2128.5,3062.9,3062.9,25.835,12.743,0.0,3.347,16.952,0.473,7.157,0.836,1.283,-1.612,0.0,0.0,0.0,7.38,-0.045,4.83,0.0,0.732,0.0,7.807,-9.155,-2.566,0.0,0.291,-0.622,-0.009,3.405,-0.085,-0.165,1.409,0.0,0.0,0.0,-4.92,-0.04,-0.966,-0.378,-0.123,0.0,1.78,7.631,1.944,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13670.0,5182.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,57.427,57.427,35.085,35.085,22.343,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,3.619,0.655,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,0.0,22.343,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.923,0.0,10.899,9.233,0.616,0.0,0.0,0.0,0.0,2132.0,3384.8,3384.8,23.037,18.776,0.0,3.555,3.644,0.513,7.537,0.631,10.098,-12.683,0.0,0.0,0.0,8.359,-0.06,4.81,0.0,0.729,0.0,4.849,-8.905,-2.499,0.0,0.012,-0.412,-0.044,2.862,-0.013,-1.248,11.73,0.0,0.0,0.0,-6.094,-0.057,-1.112,-7.006,-0.157,0.0,2.763,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-none.xml,58.889,58.889,34.016,34.016,24.873,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.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,23.285,0.0,7.558,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,2386.2,17.249,8.428,0.0,3.468,5.157,0.5,7.22,0.601,0.0,0.0,0.0,0.0,0.0,7.494,-0.042,4.781,0.0,0.723,0.0,4.878,-9.033,-2.532,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.185,-0.04,-1.103,0.0,-0.144,0.0,1.322,7.749,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5098.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,66.141,66.141,36.191,36.191,29.95,0.0,0.0,0.0,0.0,0.0,0.0,0.494,0.0,0.0,4.406,0.849,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,0.0,29.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.05,0.0,14.278,9.233,0.616,0.0,0.0,0.0,0.0,2150.9,3923.5,3923.5,27.771,20.924,0.0,3.492,3.633,0.511,7.504,0.63,19.595,-16.819,0.0,0.0,0.0,8.427,-0.074,4.829,0.0,0.732,0.0,6.378,-8.965,-2.513,0.0,0.012,-0.392,-0.042,2.826,-0.007,-4.96,14.292,0.0,0.0,0.0,-6.171,-0.068,-1.083,-2.85,-0.155,0.0,3.307,7.815,1.997,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21179.0,5354.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,58.273,58.273,36.108,36.108,22.165,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.439,0.864,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,22.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,20.757,0.0,14.576,9.233,0.613,0.0,0.0,0.0,0.0,2114.8,3422.4,3422.4,23.037,19.123,0.0,3.558,3.645,0.513,7.515,0.631,10.105,-12.683,0.0,0.0,0.0,8.252,-0.071,4.812,0.0,0.73,0.0,4.811,-8.905,-2.499,0.0,-0.075,-0.483,-0.055,2.621,-0.031,-1.316,12.141,0.0,0.0,0.0,-6.498,-0.067,-1.189,-3.219,-0.168,0.0,3.226,7.872,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,57.964,57.964,33.592,33.592,24.372,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,2.368,0.375,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,0.0,24.372,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.824,0.0,6.179,9.233,0.622,0.0,0.0,0.0,0.0,2114.8,2567.5,2567.5,23.08,11.445,0.0,3.574,3.682,0.517,7.568,0.638,10.631,-11.787,0.0,0.0,0.0,8.559,-0.043,4.871,0.0,0.74,0.0,5.22,-9.143,-2.56,0.0,0.353,-0.11,-0.002,3.553,0.056,-3.589,2.911,0.0,0.0,0.0,-4.593,-0.039,-0.913,-2.173,-0.118,0.0,1.429,7.643,1.95,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,59.303,59.303,35.493,35.493,23.811,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,3.919,0.74,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,0.0,23.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,22.299,0.0,12.428,9.233,0.616,0.0,0.0,0.0,0.0,2131.9,3204.9,3204.9,22.497,17.14,0.0,3.514,3.609,0.508,7.424,0.622,8.599,-9.444,0.0,0.0,0.0,8.041,-0.059,4.795,0.0,0.726,0.0,5.094,-8.925,-2.504,0.0,0.015,-0.411,-0.044,2.82,-0.014,-0.74,8.684,0.0,0.0,0.0,-6.06,-0.055,-1.143,-2.918,-0.16,0.0,2.774,7.854,2.006,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17520.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-ambient.xml,47.78,47.78,30.453,30.453,17.326,0.0,0.0,0.0,0.0,0.0,0.0,0.286,0.0,0.0,4.75,0.933,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,0.0,17.326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.232,0.0,15.684,9.342,0.606,0.0,0.0,0.0,3.0,1740.5,3629.1,3629.1,20.511,21.293,0.0,3.811,3.817,0.0,0.0,0.769,10.526,-11.315,0.0,0.0,10.182,0.0,-0.48,2.065,0.0,0.786,0.0,3.899,-6.747,-1.425,0.0,-0.11,-0.589,0.0,0.0,0.029,-0.179,12.654,0.0,0.0,-3.786,0.0,-0.474,-0.413,-2.426,-0.161,0.0,3.693,6.443,1.222,1354.8,997.6,11399.5,2808.9,0.0,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,18957.0,5353.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-basement-garage.xml,52.552,52.552,32.802,32.802,19.75,0.0,0.0,0.0,0.0,0.0,0.0,0.326,0.0,0.0,4.437,0.862,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,0.0,19.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,18.495,0.0,14.518,9.365,0.613,0.0,0.0,0.0,0.0,1892.4,3385.9,3385.9,21.421,19.685,0.0,3.661,4.739,0.514,5.516,0.701,9.837,-12.609,0.0,0.0,0.835,6.146,-0.039,3.253,0.0,0.735,0.0,4.441,-7.701,-1.886,0.0,-0.041,-0.654,-0.057,1.918,-0.044,-1.196,11.679,0.0,0.0,-0.129,-4.618,-0.036,-0.79,-3.022,-0.167,0.0,3.383,6.955,1.52,1354.8,997.6,11399.6,2849.6,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19060.0,5345.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 -base-foundation-belly-wing-no-skirt.xml,49.514,49.514,29.509,29.509,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.95,0.745,9.354,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,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.735,0.0,12.238,9.342,0.607,0.0,0.0,0.0,0.0,1753.5,3254.0,3254.0,24.174,17.955,0.0,3.986,5.373,0.0,0.0,0.756,8.719,-11.134,0.0,0.0,10.274,0.0,-0.363,2.069,0.0,0.793,0.0,6.171,-6.863,-1.453,0.0,0.291,-0.621,0.0,0.0,0.037,0.041,9.561,0.0,0.0,-3.473,0.0,-0.356,-0.4,-2.199,-0.147,0.0,2.254,6.327,1.194,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-belly-wing-skirt.xml,49.142,49.142,29.517,29.517,19.625,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.961,0.748,9.354,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,19.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,18.379,0.0,12.292,9.342,0.606,0.0,0.0,0.0,0.0,1752.3,3222.4,3222.4,24.022,17.914,0.0,3.992,5.382,0.0,0.0,0.757,8.731,-11.127,0.0,0.0,9.978,0.0,-0.357,2.07,0.0,0.794,0.0,6.058,-6.857,-1.453,0.0,0.285,-0.63,0.0,0.0,0.036,0.021,9.567,0.0,0.0,-3.392,0.0,-0.351,-0.402,-2.214,-0.147,0.0,2.26,6.333,1.194,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-complex.xml,77.647,77.647,37.382,37.382,40.265,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,5.221,1.053,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.709,0.0,17.802,9.233,0.617,0.0,0.0,0.0,4.0,2171.2,3631.6,3631.6,33.403,21.552,0.0,3.434,3.659,0.521,19.568,0.65,10.139,-12.837,0.0,0.0,0.0,8.752,-0.11,6.1,0.0,0.739,0.0,8.282,-9.113,-2.555,0.0,0.032,-0.371,-0.046,3.703,-0.007,-1.012,11.574,0.0,0.0,0.0,-4.535,-0.102,-1.239,-3.288,-0.139,0.0,3.795,7.668,1.954,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation-full.xml,55.674,55.674,36.621,36.621,19.053,0.0,0.0,0.0,0.0,0.0,0.0,0.314,0.0,0.0,4.893,0.976,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.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.84,0.0,16.503,9.233,0.611,0.0,0.0,0.0,0.0,2130.3,3597.9,3597.9,22.293,20.652,0.0,3.636,3.705,0.522,8.235,0.644,10.266,-12.652,0.0,0.0,0.0,4.795,-0.064,4.847,0.0,0.735,0.0,4.212,-8.886,-2.496,0.0,-0.114,-0.508,-0.058,2.158,-0.038,-1.547,11.761,0.0,0.0,0.0,-3.714,-0.059,-1.195,-3.314,-0.17,0.0,3.563,7.889,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,57.227,57.227,36.288,36.288,20.939,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.6,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,0.0,20.939,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.608,0.0,15.242,9.233,0.613,0.0,0.0,0.0,0.0,2130.7,3568.4,3568.4,22.766,19.967,0.0,3.584,3.664,0.516,7.833,0.635,10.15,-12.669,0.0,0.0,0.0,6.873,-0.061,4.818,0.0,0.731,0.0,4.579,-8.892,-2.496,0.0,-0.082,-0.484,-0.055,2.495,-0.032,-1.471,11.744,0.0,0.0,0.0,-5.347,-0.057,-1.183,-3.183,-0.168,0.0,3.345,7.885,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,57.138,57.138,35.618,35.618,21.52,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.056,0.768,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,21.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,20.152,0.0,12.894,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,3401.3,3401.3,23.23,18.938,0.0,3.584,3.669,0.516,6.117,0.636,10.166,-12.69,0.0,0.0,0.0,8.986,-0.065,4.831,0.0,0.734,0.0,4.709,-8.905,-2.5,0.0,-0.004,-0.423,-0.046,1.074,-0.017,-1.295,11.724,0.0,0.0,0.0,-6.519,-0.06,-1.144,-2.923,-0.162,0.0,2.994,7.872,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,47.042,47.042,29.047,29.047,17.995,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.591,0.668,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,0.0,17.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,16.839,0.0,11.071,9.342,0.614,0.0,0.0,0.0,0.0,1731.9,2585.4,2585.4,15.896,11.724,0.0,3.711,3.607,0.507,5.113,0.622,9.795,-12.66,0.0,0.0,0.0,10.002,-0.052,3.489,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.025,-0.473,-0.053,1.786,-0.029,-1.225,11.693,0.0,0.0,0.0,-3.856,-0.048,-0.841,-2.99,-0.164,0.0,0.0,6.308,1.18,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 -base-foundation-multiple.xml,42.539,42.539,29.864,29.864,12.675,0.0,0.0,0.0,0.0,0.0,0.0,0.209,0.0,0.0,4.35,0.845,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,0.0,12.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.866,0.0,13.999,9.285,0.692,0.0,0.0,0.0,0.0,1720.7,2780.3,2780.3,15.193,15.265,0.0,3.982,3.869,0.0,0.0,0.78,10.582,-11.178,0.0,0.0,5.3,0.0,-0.384,2.584,0.0,0.0,0.0,1.981,-4.611,-1.419,0.0,-0.151,-0.726,0.0,0.0,-0.016,-0.487,12.79,0.0,0.0,-0.707,0.0,-0.379,-0.574,-2.646,0.0,0.0,1.701,4.255,1.228,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23047.0,4758.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14361.0,307.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-slab.xml,39.763,39.763,29.436,29.436,10.327,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.0,0.0,4.015,0.768,9.352,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,10.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,0.0,12.694,9.342,0.605,0.0,0.0,0.0,0.0,1717.5,2696.4,2696.4,12.685,12.992,0.0,3.935,3.804,0.0,0.0,0.691,10.07,-12.046,0.0,0.0,0.0,7.998,-0.153,2.011,0.0,0.776,0.0,0.272,-6.772,-1.445,0.0,-0.089,-0.602,0.0,0.0,-0.03,-0.815,12.21,0.0,0.0,0.0,-1.718,-0.15,-0.471,-2.884,-0.174,0.0,0.093,6.417,1.202,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,28622.0,1639.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-above-grade.xml,43.717,43.717,30.004,30.004,13.713,0.0,0.0,0.0,0.0,0.0,0.0,0.226,0.0,0.0,4.434,0.864,9.349,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,13.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,0.0,12.839,0.0,14.368,9.285,0.712,0.0,0.0,0.0,0.0,1725.1,3043.2,3043.2,16.454,16.26,0.0,3.988,3.869,0.0,0.0,0.779,10.632,-11.228,0.0,0.0,5.918,0.0,-0.399,2.588,0.0,0.0,0.0,2.398,-4.628,-1.424,0.0,-0.127,-0.706,0.0,0.0,-0.012,-0.481,12.741,0.0,0.0,-0.61,0.0,-0.393,-0.561,-2.633,0.0,0.0,1.985,4.237,1.223,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23008.0,4754.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14355.0,311.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-assembly-r.xml,40.99,40.99,29.405,29.405,11.586,0.0,0.0,0.0,0.0,0.0,0.0,0.191,0.0,0.0,3.982,0.756,9.345,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,11.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,10.847,0.0,12.432,9.285,0.709,0.0,0.0,0.0,0.0,1718.7,2640.2,2640.2,14.628,13.984,0.0,3.978,3.838,0.0,0.0,0.769,10.591,-11.043,0.0,0.0,4.401,0.0,-0.41,2.586,0.0,0.0,0.0,1.763,-4.584,-1.409,0.0,-0.128,-0.681,0.0,0.0,0.011,-0.46,12.925,0.0,0.0,-2.09,0.0,-0.405,-0.578,-2.55,0.0,0.0,1.164,4.282,1.238,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,20536.0,4399.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,14066.0,583.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-wall-insulation.xml,48.569,48.569,29.07,29.07,19.499,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,3.661,0.677,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,0.0,19.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.25,0.0,11.154,9.285,0.639,0.0,0.0,0.0,0.0,1723.8,2485.8,2485.8,16.214,12.583,0.0,3.736,3.634,0.0,0.0,0.636,9.317,-12.475,0.0,0.0,14.441,0.0,-0.046,2.465,0.0,0.0,0.0,2.531,-4.772,-1.48,0.0,0.048,-0.455,0.0,0.0,-0.019,-0.477,11.493,0.0,0.0,-2.826,0.0,-0.044,-0.526,-2.445,0.0,0.0,1.351,4.093,1.167,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23823.0,1626.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,15242.0,151.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement.xml,42.601,42.601,29.898,29.898,12.703,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.369,0.849,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,0.0,12.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,11.892,0.0,14.086,9.285,0.702,0.0,0.0,0.0,0.0,1723.5,2802.5,2802.5,15.434,15.473,0.0,3.973,3.833,0.0,0.0,0.761,10.531,-11.149,0.0,0.0,5.333,0.0,-0.393,2.583,0.0,0.0,0.0,2.078,-4.605,-1.417,0.0,-0.132,-0.685,0.0,0.0,0.003,-0.514,12.819,0.0,0.0,-0.759,0.0,-0.388,-0.574,-2.669,0.0,0.0,1.782,4.261,1.23,1354.8,997.6,11399.6,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23054.0,4758.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14362.0,307.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unvented-crawlspace.xml,40.496,40.496,29.996,29.996,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.173,0.0,0.0,4.386,0.857,9.449,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,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.831,0.0,14.17,9.342,0.708,0.0,0.0,0.0,0.0,1717.9,2726.8,2726.8,14.329,14.741,0.0,3.957,3.815,0.0,0.0,0.781,10.653,-10.714,0.0,0.0,4.565,0.0,-0.459,2.05,0.0,0.775,0.0,1.604,-6.202,-1.377,0.0,-0.243,-0.803,0.0,0.0,-0.001,-0.69,13.255,0.0,0.0,-2.098,0.0,-0.455,-0.49,-2.745,-0.197,0.0,1.307,6.382,1.27,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,20308.0,4130.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,14139.0,645.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace.xml,42.397,42.397,29.938,29.938,12.459,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,4.256,0.822,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,0.0,12.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,11.665,0.0,13.523,9.342,0.786,0.0,0.0,0.0,0.0,1712.4,2927.3,2927.3,15.482,15.244,0.0,3.962,3.816,0.0,0.0,0.766,10.546,-11.029,0.0,0.0,6.731,0.0,-0.434,1.848,0.0,0.782,0.0,2.013,-6.322,-1.406,0.0,-0.128,-0.69,0.0,0.0,0.01,-0.475,12.939,0.0,0.0,-3.039,0.0,-0.429,-0.394,-2.616,-0.18,0.0,1.344,6.262,1.241,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23871.0,6874.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15437.0,1726.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-walkout-basement.xml,64.358,64.358,36.457,36.457,27.901,0.0,0.0,0.0,0.0,0.0,0.0,0.46,0.0,0.0,4.644,0.911,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,0.0,27.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,26.129,0.0,15.354,9.233,0.615,0.0,0.0,0.0,0.0,2148.5,3597.9,3597.9,26.77,20.659,0.0,3.536,3.698,0.521,7.384,0.648,10.878,-12.928,0.0,0.0,0.0,10.191,-0.062,6.643,0.0,0.729,0.0,5.965,-8.927,-2.504,0.0,-0.111,-0.524,-0.061,1.459,-0.034,-1.565,12.043,0.0,0.0,0.0,-3.716,-0.057,-1.541,-3.4,-0.161,0.0,3.356,7.852,2.006,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19160.0,5334.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.952,34.952,34.952,34.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.424,1.045,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3597.0,3597.0,0.0,16.136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.023,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.018,-0.167,0.0,2.021,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.761,45.761,45.761,45.761,0.0,0.0,0.0,0.0,0.0,0.0,9.474,0.974,0.263,0.015,3.519,1.076,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,0.0,21.372,0.279,13.341,9.233,0.614,0.0,0.0,0.0,0.0,6970.2,3292.4,6970.2,24.209,16.403,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.811,0.0,0.729,0.0,5.363,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,41.9,41.9,41.9,41.9,0.0,0.0,0.0,0.0,0.0,0.0,9.499,1.685,0.273,0.027,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,0.0,21.992,0.3,0.0,9.233,0.588,0.0,0.0,0.0,0.0,7243.6,1637.3,7243.6,25.258,0.0,0.0,3.507,3.648,0.513,7.514,0.632,10.114,-12.683,0.0,0.0,0.0,8.15,-0.069,4.814,0.0,0.73,0.0,6.163,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.715,45.715,45.715,45.715,0.0,0.0,0.0,0.0,0.0,0.0,9.026,0.882,0.831,0.048,3.438,1.05,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,0.0,21.651,0.879,13.012,9.233,0.613,0.0,0.0,144.0,0.0,10080.9,3275.9,10080.9,37.465,16.264,0.0,3.616,3.675,0.516,7.775,0.624,10.04,-12.798,0.0,0.0,0.0,9.087,0.059,4.752,0.0,0.762,0.0,4.543,-8.886,-2.51,0.0,0.005,-0.452,-0.051,2.749,-0.035,-1.506,11.615,0.0,0.0,0.0,-6.396,0.05,-1.192,-3.33,-0.163,0.0,2.031,7.891,2.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.819,45.819,45.819,45.819,0.0,0.0,0.0,0.0,0.0,0.0,9.547,0.974,0.263,0.015,3.504,1.076,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,0.0,21.372,0.279,13.341,9.233,0.614,0.0,0.0,0.0,0.0,6970.2,3285.2,6970.2,24.209,16.403,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.811,0.0,0.729,0.0,5.363,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,45.761,45.761,45.761,45.761,0.0,0.0,0.0,0.0,0.0,0.0,9.474,0.974,0.263,0.015,3.519,1.076,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,0.0,21.372,0.279,13.341,9.233,0.614,0.0,0.0,0.0,0.0,6970.2,3292.4,6970.2,24.209,16.403,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.811,0.0,0.729,0.0,5.363,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.611,41.611,41.611,41.611,0.0,0.0,0.0,0.0,0.0,0.0,7.345,0.575,0.261,0.011,2.342,0.638,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,0.0,22.422,0.272,13.577,9.233,0.614,0.0,0.0,0.0,0.0,6943.7,2815.9,6943.7,24.2,17.379,0.0,3.493,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.811,0.0,0.729,0.0,6.446,-8.906,-2.499,0.0,-0.018,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.104,-0.166,0.0,2.311,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.571,53.571,38.757,38.757,14.813,0.0,0.0,0.0,0.0,0.0,4.679,0.5,0.0,0.055,2.557,0.527,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.09,11.086,16.123,9.233,0.614,0.0,0.0,2.0,59.0,3437.0,2870.0,3437.0,23.339,16.597,0.0,3.265,3.605,0.508,7.53,0.616,9.94,-12.591,0.0,0.0,0.0,8.253,-0.031,5.825,0.0,0.721,0.0,11.335,-8.79,-2.477,0.0,-0.187,-0.494,-0.056,2.719,-0.038,-1.537,11.822,0.0,0.0,0.0,-6.372,-0.028,-1.502,-3.083,-0.171,0.0,5.193,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.902,56.902,37.574,37.574,19.328,0.0,0.0,0.0,0.0,0.0,3.595,0.35,0.0,0.073,2.586,0.53,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,27.708,14.421,16.294,9.233,0.615,0.0,0.0,204.0,59.0,3072.2,2739.8,3072.2,23.54,16.598,0.0,3.292,3.615,0.508,7.457,0.619,9.934,-12.681,0.0,0.0,0.0,8.271,-0.026,5.811,0.0,0.721,0.0,10.95,-8.844,-2.484,0.0,-0.165,-0.476,-0.054,2.677,-0.033,-1.514,11.732,0.0,0.0,0.0,-6.301,-0.022,-1.492,-3.071,-0.17,0.0,5.159,7.934,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.902,56.902,37.574,37.574,19.328,0.0,0.0,0.0,0.0,0.0,3.595,0.35,0.0,0.073,2.586,0.53,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,27.708,14.421,16.294,9.233,0.615,0.0,0.0,204.0,59.0,3072.2,2739.8,3072.2,23.54,16.598,0.0,3.292,3.615,0.508,7.457,0.619,9.934,-12.681,0.0,0.0,0.0,8.271,-0.026,5.811,0.0,0.721,0.0,10.95,-8.844,-2.484,0.0,-0.165,-0.476,-0.054,2.677,-0.033,-1.514,11.732,0.0,0.0,0.0,-6.301,-0.022,-1.492,-3.071,-0.17,0.0,5.159,7.934,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.677,53.677,38.859,38.859,14.818,0.0,0.0,0.0,0.0,0.0,4.739,0.507,0.0,0.055,2.587,0.53,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.818,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.366,11.089,16.325,9.233,0.614,0.0,0.0,2.0,59.0,3437.0,2828.6,3437.0,23.339,16.598,0.0,3.307,3.646,0.513,7.531,0.631,10.101,-12.703,0.0,0.0,0.0,8.336,-0.061,5.894,0.0,0.728,0.0,11.477,-8.917,-2.502,0.0,-0.143,-0.455,-0.051,2.713,-0.024,-1.383,11.71,0.0,0.0,0.0,-6.3,-0.057,-1.437,-3.072,-0.164,0.0,5.275,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.716,53.716,39.016,39.016,14.7,0.0,0.0,0.0,0.0,0.0,4.528,0.48,0.0,0.443,2.595,0.53,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,14.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.578,12.203,16.442,9.233,0.614,0.0,0.0,2.0,54.0,3440.1,2827.7,3440.1,26.757,16.586,0.0,3.252,3.648,0.513,7.537,0.631,10.103,-12.695,0.0,0.0,0.0,8.331,-0.06,4.809,0.0,0.729,0.0,12.783,-8.907,-2.499,0.0,-0.152,-0.464,-0.052,2.682,-0.027,-1.415,11.718,0.0,0.0,0.0,-6.348,-0.056,-1.174,-3.118,-0.166,0.0,5.288,7.871,2.011,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,41.295,41.295,41.295,41.295,0.0,0.0,0.0,0.0,0.0,0.0,7.355,0.758,0.148,0.011,2.378,0.206,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,0.0,24.952,0.159,14.829,9.233,0.614,0.0,0.0,0.0,0.0,7044.4,2647.8,7044.4,24.553,18.192,0.0,3.395,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.323,-0.065,4.811,0.0,0.729,0.0,9.048,-8.906,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.347,-0.061,-1.171,-3.105,-0.166,0.0,3.603,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,49.613,49.613,43.08,43.08,6.533,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,3.377,0.538,15.943,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.047,0.0,9.816,16.489,0.642,0.0,0.0,0.0,0.0,2615.2,3547.0,3547.0,17.006,16.126,0.0,2.9,2.833,0.397,5.504,0.423,7.596,-12.563,0.0,0.0,0.0,5.726,-0.058,3.541,0.0,0.582,0.0,1.453,-10.182,-2.473,0.0,-0.155,-0.607,-0.072,2.26,-0.067,-1.871,11.85,0.0,0.0,0.0,-7.696,-0.059,-1.296,-5.333,-0.193,0.0,2.045,9.375,2.036,2181.0,1715.2,21571.8,3761.0,0.0,31430.0,27889.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22992.0,6410.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 -base-hvac-autosize.xml,59.2,59.2,36.214,36.214,22.986,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.506,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,0.0,22.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,21.534,0.0,14.903,9.233,0.614,0.0,0.0,0.0,2.0,2134.9,3328.7,3328.7,23.955,18.93,0.0,3.532,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.811,0.0,0.729,0.0,5.531,-8.905,-2.499,0.0,-0.076,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.172,-3.107,-0.166,0.0,3.661,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,32235.0,21310.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-coal-only.xml,49.573,49.573,30.652,30.652,0.0,0.0,0.0,0.0,0.0,18.92,0.0,0.236,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,18.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2060.6,1637.3,2060.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-elec-only.xml,48.401,48.401,48.401,48.401,0.0,0.0,0.0,0.0,0.0,0.0,17.862,0.123,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,0.0,16.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,6052.3,1637.3,6052.3,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,55.51,55.51,36.306,36.306,19.204,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,4.502,1.219,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,19.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,0.0,0.0,16.182,0.0,14.543,9.233,0.614,0.0,0.0,0.0,0.0,2095.4,3607.7,3607.7,16.438,19.27,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.811,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,-0.062,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.106,-0.166,0.0,3.294,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only-pilot.xml,54.539,54.539,30.56,30.56,23.979,0.0,0.0,0.0,0.0,0.0,0.0,0.144,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,23.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,16.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2045.2,1637.3,2045.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,49.567,49.567,30.56,30.56,19.007,0.0,0.0,0.0,0.0,0.0,0.0,0.144,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,19.007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2045.2,1637.3,2045.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,49.573,49.573,30.652,30.652,0.0,18.92,0.0,0.0,0.0,0.0,0.0,0.236,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,18.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2060.6,1637.3,2060.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,49.566,49.566,30.539,30.539,0.0,0.0,19.027,0.0,0.0,0.0,0.0,0.123,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,19.027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2041.7,1637.3,2041.7,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,49.566,49.566,30.539,30.539,0.0,0.0,0.0,19.027,0.0,0.0,0.0,0.123,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,19.027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2041.7,1637.3,2041.7,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,36.054,36.054,36.054,36.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.386,1.185,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.13,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3897.2,3897.2,0.0,18.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.074,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.195,-3.02,-0.167,0.0,3.217,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,36.07,36.07,36.07,36.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.402,1.185,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.13,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3905.3,3905.3,0.0,18.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.074,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.195,-3.02,-0.167,0.0,3.217,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,34.377,34.377,34.377,34.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.173,0.72,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.516,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3401.3,3401.3,0.0,19.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.091,-0.471,-0.052,2.666,-0.032,-1.453,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.195,-3.02,-0.167,0.0,3.61,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,33.671,33.671,33.671,33.671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.875,0.313,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.345,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3154.6,3154.6,0.0,19.332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.132,-0.471,-0.052,2.667,-0.032,-1.452,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.195,-3.023,-0.167,0.0,4.482,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.75,47.75,47.75,47.75,0.0,0.0,0.0,0.0,0.0,0.0,9.586,1.701,0.274,0.028,4.502,1.219,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,0.0,22.215,0.302,14.544,9.233,0.614,0.0,0.0,0.0,0.0,7315.6,3607.8,7315.6,25.258,19.271,0.0,3.502,3.645,0.513,7.531,0.631,10.104,-12.683,0.0,0.0,0.0,8.317,-0.065,4.811,0.0,0.729,0.0,6.222,-8.906,-2.499,0.0,-0.061,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.171,-3.106,-0.166,0.0,3.294,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-crankcase-heater-40w.xml,58.207,58.207,35.936,35.936,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.271,0.858,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2122.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dse.xml,58.594,58.594,36.979,36.979,21.615,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,5.21,0.973,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,21.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,0.0,16.181,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2118.5,2655.6,2655.6,16.443,11.922,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.81,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.173,-3.095,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.354,52.354,41.701,41.701,10.653,0.0,0.0,0.0,0.0,0.0,5.258,0.479,0.0,0.929,3.519,1.076,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,10.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.772,11.049,13.341,9.233,0.614,0.0,0.0,0.0,0.0,3615.5,3292.4,3615.5,24.197,16.403,0.0,3.472,3.645,0.513,7.532,0.631,10.105,-12.683,0.0,0.0,0.0,8.319,-0.065,4.811,0.0,0.729,0.0,6.813,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.112,55.112,40.703,40.703,14.408,0.0,0.0,0.0,0.0,0.0,3.945,0.335,0.0,1.389,3.519,1.076,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,14.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.682,15.077,13.341,9.233,0.614,0.0,0.0,0.0,0.0,3462.5,3292.4,3462.5,24.195,16.403,0.0,3.435,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.812,0.0,0.729,0.0,7.754,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.436,52.436,37.628,37.628,14.808,0.0,0.0,0.0,0.0,0.0,2.981,0.185,0.0,1.042,2.342,0.638,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,14.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.026,15.109,13.578,9.233,0.614,0.0,0.0,0.0,0.0,2840.5,2815.9,2840.5,24.195,17.379,0.0,3.423,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.321,-0.065,4.812,0.0,0.729,0.0,8.107,-8.906,-2.499,0.0,-0.018,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.104,-0.166,0.0,2.311,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.406,52.406,37.95,37.95,14.457,0.0,0.0,0.0,0.0,0.0,2.935,0.235,0.0,1.755,2.378,0.206,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,14.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,25.709,15.489,14.829,9.233,0.614,0.0,0.0,0.0,0.0,2832.5,2647.8,2832.5,24.548,18.192,0.0,3.362,3.646,0.513,7.535,0.631,10.108,-12.683,0.0,0.0,0.0,8.324,-0.065,4.812,0.0,0.729,0.0,9.833,-8.906,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.347,-0.061,-1.171,-3.105,-0.166,0.0,3.603,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.39,47.39,36.253,36.253,11.137,0.0,0.0,0.0,0.0,0.0,2.468,0.09,0.0,0.916,2.263,0.077,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,11.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,19.246,11.497,12.27,9.233,0.614,0.0,0.0,0.0,0.0,2572.4,2235.3,2572.4,19.299,13.795,0.0,3.614,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.811,0.0,0.73,0.0,3.179,-8.906,-2.499,0.0,0.029,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.171,-3.101,-0.166,0.0,0.99,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-fractions.xml,92.585,92.585,46.834,46.834,45.752,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,8.1,1.711,9.004,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,0.0,45.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,42.703,0.0,29.45,9.146,0.612,0.0,0.0,5.0,77.0,2574.9,5161.9,5161.9,48.976,34.989,0.0,3.225,7.897,1.073,7.933,0.668,20.527,-25.252,0.0,0.0,0.0,9.073,-0.116,11.159,0.0,0.748,0.0,19.687,-10.961,-3.544,0.0,-0.381,-1.035,-0.1,2.663,-0.023,-2.118,23.314,0.0,0.0,0.0,-6.455,-0.104,-2.48,-6.345,-0.161,0.0,10.861,9.395,2.829,1354.8,997.6,11399.6,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,71259.0,33168.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-multipliers.xml,57.58,57.58,35.949,35.949,21.631,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.318,0.835,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,21.631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.262,0.0,14.119,9.233,0.614,0.0,0.0,0.0,0.0,2130.2,3363.4,3363.4,22.361,18.577,0.0,3.578,3.644,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.811,0.0,0.729,0.0,4.22,-8.906,-2.499,0.0,-0.041,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.104,-0.166,0.0,2.856,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18408.0,4949.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,55.929,55.929,35.702,35.702,20.228,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.135,0.794,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,20.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,18.935,0.0,13.273,9.233,0.614,0.0,0.0,0.0,0.0,2126.5,3068.5,3068.5,20.273,15.911,0.0,3.625,3.644,0.513,7.528,0.631,10.099,-12.683,0.0,0.0,0.0,8.31,-0.063,4.811,0.0,0.729,0.0,2.851,-8.905,-2.499,0.0,-0.008,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.172,-3.105,-0.166,0.0,1.988,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,28612.0,4972.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15787.0,2329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-defaults.xml,54.817,54.817,40.662,40.662,14.155,0.0,0.0,0.0,0.0,0.0,4.355,0.368,0.0,0.0,5.499,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,14.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,17.735,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,3047.4,3318.8,3318.8,18.196,11.922,0.0,3.744,3.643,0.513,7.524,0.631,10.098,-12.683,0.0,0.0,0.0,8.304,-0.065,4.811,0.0,0.73,0.0,1.558,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.095,-0.166,0.0,-0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,41910.0,24000.0,0.0,6.8,91.76,28212.0,4572.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,58.345,58.345,36.078,36.078,22.268,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.413,0.858,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,22.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,20.853,0.0,14.453,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3421.8,3421.8,23.032,19.118,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.83,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.204,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18782.0,5324.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,57.776,57.776,35.964,35.964,21.811,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.328,0.837,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,21.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,20.439,0.0,14.263,9.233,0.614,0.0,0.0,0.0,0.0,2130.2,3413.9,3413.9,22.449,19.038,0.0,3.567,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.811,0.0,0.73,0.0,4.424,-8.906,-2.499,0.0,-0.046,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.104,-0.166,0.0,3.061,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34496.0,10856.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20347.0,6889.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-percent.xml,59.567,59.567,36.281,36.281,23.286,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.565,0.893,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,23.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,21.813,0.0,15.122,9.233,0.614,0.0,0.0,0.0,0.0,2134.4,3597.9,3597.9,24.256,20.653,0.0,3.52,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.315,-0.064,4.811,0.0,0.729,0.0,5.822,-8.905,-2.499,0.0,-0.086,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.172,-3.107,-0.166,0.0,3.896,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32660.0,9020.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20670.0,7212.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-elec-resistance-only.xml,46.444,46.444,46.444,46.444,0.0,0.0,0.0,0.0,0.0,0.0,16.028,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,5939.3,1637.3,5939.3,16.443,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.813,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-furnace-gas.xml,54.747,54.747,31.876,31.876,22.871,0.0,0.0,0.0,0.0,0.0,0.0,0.595,0.0,0.0,0.0,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,0.0,22.871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.636,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2119.3,1874.1,2119.3,24.051,11.931,0.0,3.529,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.811,0.0,0.729,0.0,5.629,-8.905,-2.499,0.0,0.037,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.172,-3.095,-0.166,0.0,-0.0,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only-ducted.xml,31.389,31.389,31.389,31.389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.906,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.91,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2149.5,2149.5,0.0,15.978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.015,-0.167,0.0,0.941,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only.xml,31.303,31.303,31.303,31.303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.82,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2011.5,2021.1,0.0,11.731,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.01,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fireplace-wood-only.xml,51.762,51.762,30.417,30.417,0.0,0.0,0.0,21.344,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.062,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2020.8,1637.3,2020.8,17.0,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.894,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,56.733,56.733,30.417,30.417,0.0,0.0,26.316,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.316,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.062,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2020.8,1637.3,2020.8,17.0,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.894,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only.xml,51.762,51.762,30.417,30.417,0.0,0.0,21.344,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.344,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.062,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2020.8,1637.3,2020.8,17.0,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.894,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-coal-only.xml,53.642,53.642,31.005,31.005,0.0,0.0,0.0,0.0,0.0,22.637,0.0,0.588,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,22.637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.415,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.051,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.813,0.0,0.73,0.0,5.573,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-central-ac-1-speed.xml,56.568,56.568,56.568,56.568,0.0,0.0,0.0,0.0,0.0,0.0,20.49,0.367,0.0,0.0,4.414,0.858,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,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,7923.5,3422.4,7923.5,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-only.xml,52.256,52.256,52.256,52.256,0.0,0.0,0.0,0.0,0.0,0.0,21.252,0.588,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,0.0,21.415,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,8308.9,1637.3,8308.9,24.051,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.813,0.0,0.73,0.0,5.573,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-2-speed.xml,56.999,56.999,34.727,34.727,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.221,0.699,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.861,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3127.9,3127.9,23.037,19.624,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.074,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.172,-3.105,-0.166,0.0,3.616,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,56.33,56.33,34.059,34.059,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,2.928,0.324,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,15.756,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,2866.3,2866.3,23.037,19.517,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.119,-0.464,-0.052,2.686,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.348,-0.06,-1.172,-3.109,-0.166,0.0,4.559,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,38.111,38.111,30.65,30.65,7.462,0.0,0.0,0.0,0.0,0.0,0.0,0.194,0.0,0.0,0.0,0.0,9.18,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.462,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.052,0.0,0.0,9.233,0.631,0.0,0.0,0.0,0.0,2067.8,1633.7,2067.8,18.157,0.0,0.0,2.848,2.792,0.391,5.359,0.412,7.471,-12.563,0.0,0.0,0.0,5.445,-0.06,3.488,0.0,0.573,0.0,1.812,-8.806,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-pilot.xml,58.551,58.551,31.005,31.005,27.546,0.0,0.0,0.0,0.0,0.0,0.0,0.588,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,27.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.415,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.051,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.813,0.0,0.73,0.0,5.573,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only.xml,53.642,53.642,31.005,31.005,22.637,0.0,0.0,0.0,0.0,0.0,0.0,0.588,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,22.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,0.0,0.0,21.415,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.051,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.813,0.0,0.73,0.0,5.573,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-room-ac.xml,59.405,59.405,36.534,36.534,22.871,0.0,0.0,0.0,0.0,0.0,0.0,0.595,0.0,0.0,5.5,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,22.871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.636,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2119.3,3318.9,3318.9,24.051,11.922,0.0,3.529,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.811,0.0,0.729,0.0,5.629,-8.905,-2.499,0.0,0.037,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.172,-3.095,-0.166,0.0,-0.0,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-oil-only.xml,53.642,53.642,31.005,31.005,0.0,22.637,0.0,0.0,0.0,0.0,0.0,0.588,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,22.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,21.415,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.051,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.813,0.0,0.73,0.0,5.573,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-propane-only.xml,53.642,53.642,31.005,31.005,0.0,0.0,22.637,0.0,0.0,0.0,0.0,0.588,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,22.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,21.415,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.051,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.813,0.0,0.73,0.0,5.573,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-wood-only.xml,53.642,53.642,31.005,31.005,0.0,0.0,0.0,22.637,0.0,0.0,0.0,0.588,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,22.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,21.415,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.051,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.813,0.0,0.73,0.0,5.573,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-x3-dse.xml,58.592,58.592,37.008,37.008,21.583,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.21,0.973,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,21.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,16.343,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2122.4,2655.6,2655.6,16.607,11.922,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.858,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.173,-3.095,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop.xml,39.103,39.103,39.103,39.103,0.0,0.0,0.0,0.0,0.0,0.0,4.845,0.455,0.0,0.0,2.498,0.865,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,0.0,19.331,0.0,13.241,9.233,0.614,0.0,0.0,0.0,0.0,3192.9,2551.9,3192.9,21.066,15.834,0.0,3.61,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.811,0.0,0.729,0.0,3.264,-8.906,-2.499,0.0,-0.005,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,1.97,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.053,34.053,34.053,34.053,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.77,0.8,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.985,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2856.9,2856.9,0.0,15.858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.026,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.019,-0.167,0.0,2.054,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,39.558,39.558,39.558,39.558,0.0,0.0,0.0,0.0,0.0,0.0,5.007,0.481,0.0,0.0,2.744,0.887,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,0.0,19.431,0.0,13.269,9.233,0.614,0.0,0.0,0.0,0.0,3279.4,2668.4,3279.4,21.43,15.961,0.0,3.606,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.811,0.0,0.729,0.0,3.367,-8.906,-2.499,0.0,-0.006,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,1.997,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.241,36.241,36.241,36.241,0.0,0.0,0.0,0.0,0.0,0.0,5.077,0.748,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,0.0,19.844,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,3365.7,1637.3,3365.7,22.289,0.0,0.0,3.59,3.648,0.513,7.511,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.813,0.0,0.73,0.0,3.957,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,37.189,37.189,37.189,37.189,0.0,0.0,0.0,0.0,0.0,0.0,2.757,0.259,0.0,0.0,2.816,0.921,9.159,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.858,0.0,13.865,9.233,0.609,0.0,0.0,0.0,0.0,2945.0,2681.8,2945.0,17.478,16.593,0.0,3.777,3.774,0.532,5.726,0.657,10.442,-12.583,0.0,0.0,0.0,1.936,-0.042,4.872,0.0,0.74,0.0,1.954,-8.8,-2.478,0.0,-0.092,-0.547,-0.063,0.78,-0.05,-1.683,11.83,0.0,0.0,0.0,-3.437,-0.036,-1.252,-3.28,-0.178,0.0,2.081,7.972,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.531,39.531,39.531,39.531,0.0,0.0,0.0,0.0,0.0,0.0,4.997,0.48,0.0,0.0,2.729,0.885,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,0.0,19.425,0.0,13.267,9.233,0.614,0.0,0.0,0.0,0.0,3274.5,2660.1,3274.5,21.406,15.951,0.0,3.606,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.811,0.0,0.729,0.0,3.361,-8.906,-2.499,0.0,-0.006,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.104,-0.166,0.0,1.995,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.841,48.841,48.841,48.841,0.0,0.0,0.0,0.0,0.0,0.0,12.146,0.674,0.562,0.018,4.281,0.72,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,0.0,22.8,0.579,13.89,9.233,0.614,0.0,0.0,0.0,0.0,7068.4,3549.1,7068.4,24.721,17.543,0.0,3.48,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.811,0.0,0.729,0.0,6.832,-8.906,-2.499,0.0,-0.033,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.106,-0.166,0.0,2.635,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.209,44.209,44.209,44.209,0.0,0.0,0.0,0.0,0.0,0.0,9.176,0.559,0.519,0.016,2.913,0.586,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,0.0,24.062,0.535,14.223,9.233,0.614,0.0,0.0,0.0,0.0,7051.5,3143.6,7051.5,24.716,18.876,0.0,3.43,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.811,0.0,0.729,0.0,8.134,-8.906,-2.499,0.0,-0.046,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.171,-3.105,-0.166,0.0,2.972,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.656,43.656,43.656,43.656,0.0,0.0,0.0,0.0,0.0,0.0,9.048,0.71,0.318,0.016,2.902,0.221,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,0.0,26.149,0.335,15.432,9.233,0.614,0.0,0.0,0.0,0.0,7150.8,3014.4,7150.8,25.037,18.909,0.0,3.35,3.647,0.513,7.536,0.632,10.107,-12.689,0.0,0.0,0.0,8.327,-0.064,4.812,0.0,0.729,0.0,10.281,-8.908,-2.5,0.0,-0.101,-0.463,-0.052,2.687,-0.026,-1.405,11.724,0.0,0.0,0.0,-6.343,-0.06,-1.171,-3.108,-0.166,0.0,4.23,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.322,60.322,36.877,36.877,23.445,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,5.362,0.793,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,23.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,21.848,0.0,15.371,9.233,0.614,0.0,0.0,0.0,5.0,2117.6,3525.8,3525.8,24.079,18.323,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.81,0.0,0.729,0.0,5.858,-8.903,-2.499,0.0,-0.099,-0.464,-0.052,2.686,-0.027,-1.41,11.73,0.0,0.0,0.0,-6.35,-0.059,-1.173,-3.109,-0.166,0.0,4.146,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.765,58.765,35.32,35.32,23.445,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.934,0.665,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,23.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,21.848,0.0,15.787,9.233,0.614,0.0,0.0,0.0,3.0,2117.6,3218.9,3218.9,24.079,18.785,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.81,0.0,0.729,0.0,5.858,-8.903,-2.499,0.0,-0.117,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.173,-3.108,-0.166,0.0,4.568,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.099,58.099,34.654,34.654,23.444,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.516,0.417,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,23.444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.848,0.0,16.445,9.233,0.614,0.0,0.0,0.0,8.0,2117.6,2988.0,2988.0,24.079,18.031,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.81,0.0,0.729,0.0,5.858,-8.903,-2.499,0.0,-0.154,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.173,-3.113,-0.166,0.0,5.274,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-only.xml,54.996,54.996,30.874,30.874,24.123,0.0,0.0,0.0,0.0,0.0,0.0,0.458,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,24.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,22.648,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2096.5,1637.3,2096.5,25.363,0.0,0.0,3.488,3.648,0.513,7.514,0.632,10.112,-12.683,0.0,0.0,0.0,8.148,-0.067,4.813,0.0,0.73,0.0,6.846,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.524,41.524,41.524,41.524,0.0,0.0,0.0,0.0,0.0,0.0,6.469,0.491,0.0,0.0,3.285,0.84,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,0.0,20.419,0.0,13.815,9.233,0.614,0.0,0.0,0.0,0.0,3520.7,2848.0,3520.7,22.482,17.106,0.0,3.573,3.644,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.811,0.0,0.729,0.0,4.383,-8.906,-2.499,0.0,-0.03,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.171,-3.105,-0.166,0.0,2.557,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.124,34.124,34.124,34.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.473,0.168,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.744,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,2967.9,2967.9,0.0,14.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,0.0,0.0,-0.017,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.02,-0.167,0.0,1.829,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.929,40.929,40.929,40.929,0.0,0.0,0.0,0.0,0.0,0.0,6.997,0.563,0.03,0.002,2.747,0.15,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,0.0,19.365,0.032,12.566,9.233,0.614,0.0,0.0,0.0,0.0,4486.7,2367.8,4486.7,19.464,14.239,0.0,3.609,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.811,0.0,0.73,0.0,3.302,-8.906,-2.499,0.0,0.02,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.171,-3.103,-0.166,0.0,1.295,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,33.441,33.441,33.441,33.441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.878,0.079,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.397,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,2445.0,2445.0,0.0,14.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.002,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.018,-0.167,0.0,1.467,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,33.29,33.29,33.29,33.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.78,0.027,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,2260.1,2260.1,0.0,11.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.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.01,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.76,32.76,32.76,32.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.201,0.075,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.909,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2333.0,2333.0,0.0,13.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.013,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.195,-3.016,-0.167,0.0,0.965,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.304,36.304,36.304,36.304,0.0,0.0,0.0,0.0,0.0,0.0,5.586,0.293,0.009,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,0.0,18.722,0.009,0.0,9.233,0.588,0.0,0.0,0.0,0.0,3854.3,1637.3,3854.3,19.302,0.0,0.0,3.629,3.647,0.513,7.511,0.632,10.112,-12.683,0.0,0.0,0.0,8.146,-0.069,4.813,0.0,0.73,0.0,2.807,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,38.716,38.716,38.716,38.716,0.0,0.0,0.0,0.0,0.0,0.0,5.632,0.295,0.009,0.0,2.263,0.077,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,0.0,18.911,0.009,12.27,9.233,0.614,0.0,0.0,0.0,0.0,3854.3,2235.3,3854.3,19.302,13.795,0.0,3.625,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.811,0.0,0.73,0.0,2.834,-8.906,-2.499,0.0,0.029,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.171,-3.101,-0.166,0.0,0.99,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26182.0,2542.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.245,38.245,38.245,38.245,0.0,0.0,0.0,0.0,0.0,0.0,5.213,0.115,0.362,0.0,2.087,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,0.0,16.182,0.362,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4434.5,2211.9,4434.5,16.443,11.922,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.811,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.095,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,44.941,44.941,35.937,35.937,9.004,0.0,0.0,0.0,0.0,0.0,3.07,0.052,0.0,0.271,2.074,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,9.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,17.342,7.474,11.193,9.233,0.614,0.0,0.0,1.0,0.0,2950.1,2213.2,2950.1,17.269,12.085,0.0,3.742,3.641,0.512,7.519,0.63,10.091,-12.69,0.0,0.0,0.0,8.311,-0.063,5.893,0.0,0.729,0.0,0.111,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.436,-3.049,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,24589.0,949.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.671,44.671,35.769,35.769,8.902,0.0,0.0,0.0,0.0,0.0,2.897,0.048,0.0,0.268,2.087,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,8.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.573,7.39,11.294,9.233,0.614,0.0,0.0,1.0,0.0,2863.0,2211.9,2863.0,17.581,11.922,0.0,3.724,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.306,-0.065,4.811,0.0,0.73,0.0,0.41,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.095,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.937,47.937,35.679,35.679,0.0,12.258,0.0,0.0,0.0,0.0,3.067,0.069,0.0,0.0,2.074,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.0,12.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.231,7.355,11.193,9.233,0.614,0.0,0.0,2.0,0.0,2950.1,2213.2,2950.1,17.0,12.085,0.0,3.742,3.641,0.512,7.519,0.63,10.091,-12.69,0.0,0.0,0.0,8.311,-0.063,5.893,0.0,0.729,0.0,0.0,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.436,-3.049,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.856,37.856,37.856,37.856,0.0,0.0,0.0,0.0,0.0,0.0,5.054,0.096,0.0,0.0,2.239,0.028,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,0.0,16.182,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,3544.7,2192.9,3544.7,16.443,11.922,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.811,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.095,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,37.856,37.856,37.856,37.856,0.0,0.0,0.0,0.0,0.0,0.0,5.054,0.096,0.0,0.0,2.239,0.028,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,0.0,16.182,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,3544.7,2192.9,3544.7,16.443,11.922,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.811,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.171,-3.095,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.001,66.001,51.885,51.885,6.999,3.519,3.598,0.0,0.0,0.0,13.406,0.841,0.196,0.008,6.424,0.569,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.519,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,31.973,0.204,19.533,9.233,0.614,0.0,0.0,0.0,6.0,6471.0,4018.0,6471.0,37.556,22.981,0.0,3.431,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.893,0.0,0.728,0.0,14.994,-8.914,-2.501,0.0,-0.137,-0.455,-0.051,2.715,-0.024,-1.38,11.717,0.0,0.0,0.0,-6.299,-0.058,-1.438,-3.088,-0.164,0.0,8.444,7.864,2.008,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36743.0,13103.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23817.0,10359.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-none.xml,19.74,19.74,19.74,19.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,4.61,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,0.0,0.0,4.572,0.33,0.0,0.0,0.0,0.0,1280.6,1085.3,1280.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,1354.8,997.6,8540.7,2104.5,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1251.0,0.0,451.0,800.0 -base-hvac-ptac-with-heating-electricity.xml,51.002,51.002,51.002,51.002,0.0,0.0,0.0,0.0,0.0,0.0,16.194,0.0,0.0,0.0,4.369,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,0.0,16.181,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,5939.3,2889.9,5939.3,16.443,11.922,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.81,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.173,-3.095,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,55.051,55.051,34.808,34.808,20.243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.369,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,20.243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.181,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2021.3,2889.9,2889.9,16.443,11.922,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.81,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.173,-3.095,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac.xml,34.737,34.737,34.737,34.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.254,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3208.2,3208.2,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.01,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp-heating-capacity-17f.xml,41.941,41.941,41.941,41.941,0.0,0.0,0.0,0.0,0.0,0.0,7.23,0.0,0.047,0.0,4.225,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,0.0,16.182,0.047,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4808.2,2870.2,4808.2,16.443,11.922,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.81,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.026,-1.408,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.172,-3.095,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp.xml,41.941,41.941,41.941,41.941,0.0,0.0,0.0,0.0,0.0,0.0,7.23,0.0,0.047,0.0,4.225,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,0.0,16.182,0.047,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4808.2,2870.2,4808.2,16.443,11.922,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.81,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.026,-1.408,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.172,-3.095,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-33percent.xml,32.349,32.349,32.349,32.349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.866,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.615,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2292.9,2292.9,0.0,3.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007,-0.156,-0.017,0.879,-0.011,-0.48,3.911,0.0,0.0,0.0,-2.283,-0.021,-0.394,-0.993,-0.055,0.0,0.0,2.642,0.672,1354.8,997.6,11399.5,2615.8,0.0,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-ceer.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,0.0,5.365,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3636.0,3636.0,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.01,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-detailed-setpoints.xml,34.597,34.597,34.597,34.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.119,0.0,9.201,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.146,9.233,0.653,0.0,0.0,0.0,0.0,2021.1,3404.0,3404.0,0.0,10.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.145,-0.648,-0.078,2.174,-0.077,-1.993,11.85,0.0,0.0,0.0,-7.664,-0.066,-1.339,-3.396,-0.2,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only.xml,35.838,35.838,35.838,35.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.355,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3632.1,3632.1,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.195,-3.01,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-heating.xml,52.133,52.133,52.133,52.133,0.0,0.0,0.0,0.0,0.0,0.0,16.194,0.0,0.0,0.0,5.499,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,0.0,16.181,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,5939.3,3318.8,5939.3,16.443,11.922,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.81,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.173,-3.095,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,41.941,41.941,41.941,41.941,0.0,0.0,0.0,0.0,0.0,0.0,7.23,0.0,0.047,0.0,4.225,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,0.0,16.182,0.047,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4808.2,2870.2,4808.2,16.443,11.922,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.81,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.026,-1.408,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.172,-3.095,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-seasons.xml,58.135,58.135,36.028,36.028,22.107,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.375,0.848,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,22.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,20.703,0.0,14.285,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.0,3422.0,23.037,19.119,0.0,3.516,3.607,0.508,7.531,0.617,9.947,-12.591,0.0,0.0,0.0,8.244,-0.034,4.757,0.0,0.723,0.0,4.803,-8.79,-2.477,0.0,-0.098,-0.501,-0.057,2.689,-0.04,-1.559,11.822,0.0,0.0,0.0,-6.415,-0.03,-1.223,-3.121,-0.173,0.0,3.171,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,57.168,57.168,35.466,35.466,21.701,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.913,0.755,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,0.0,21.701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.95,0.0,12.447,9.233,0.615,0.0,0.0,101.0,55.0,2152.2,3586.3,3586.3,34.947,20.39,0.0,3.517,3.579,0.503,7.523,0.608,9.827,-12.674,0.0,0.0,0.0,8.678,0.006,4.656,0.0,0.727,0.0,4.5,-8.859,-2.496,0.0,-0.073,-0.502,-0.058,2.616,-0.042,-1.591,11.74,0.0,0.0,0.0,-6.667,-0.004,-1.224,-3.407,-0.174,0.0,2.49,7.92,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,56.539,56.539,35.618,35.618,20.921,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.048,0.783,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,0.0,20.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.502,0.0,13.07,9.233,0.616,0.0,0.0,0.0,14.0,2137.2,3597.9,3597.9,25.335,20.814,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.197,-0.023,4.642,0.0,0.724,0.0,4.387,-8.884,-2.501,0.0,-0.057,-0.497,-0.057,2.572,-0.04,-1.578,11.697,0.0,0.0,0.0,-6.644,-0.024,-1.205,-3.354,-0.177,0.0,2.635,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,41.527,41.527,34.236,34.236,7.29,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.107,0.54,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.822,0.0,9.174,9.233,0.645,0.0,0.0,0.0,0.0,2102.1,3212.6,3212.6,17.399,16.359,0.0,2.853,2.787,0.39,5.357,0.411,7.456,-12.563,0.0,0.0,0.0,5.503,-0.06,3.482,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.125,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.262,-5.126,-0.188,0.0,2.129,8.003,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-space-heater-gas-only.xml,46.444,46.444,30.416,30.416,16.028,0.0,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,0.0,16.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,16.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2021.3,1637.3,2021.3,16.443,0.0,0.0,3.745,3.645,0.513,7.507,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.812,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-oil-only.xml,51.746,51.746,30.482,30.482,0.0,21.264,0.0,0.0,0.0,0.0,0.0,0.064,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,21.264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.062,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2023.9,1637.3,2023.9,17.0,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.894,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-wood-pellets-only.xml,51.746,51.746,30.482,30.482,0.0,0.0,0.0,0.0,21.264,0.0,0.0,0.064,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,21.264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.062,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2023.9,1637.3,2023.9,17.0,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.894,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,55.75,55.75,35.573,35.573,20.178,0.0,0.0,0.0,0.0,0.0,0.0,0.317,0.0,0.0,4.04,0.775,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,20.178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.879,0.0,13.019,9.233,0.614,0.0,0.0,0.0,0.0,2123.8,3051.0,3051.0,20.403,15.91,0.0,3.624,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.311,-0.064,4.811,0.0,0.73,0.0,2.808,-8.905,-2.499,0.0,0.006,-0.465,-0.052,2.685,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.172,-3.102,-0.166,0.0,1.76,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,28898.0,19718.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized.xml,48.398,48.398,33.149,33.149,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.246,0.0,0.0,2.091,0.358,9.177,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.279,0.0,6.336,9.233,0.629,0.0,0.0,3653.0,2624.0,2089.4,1834.1,2089.4,3.839,2.674,0.0,2.699,2.924,0.409,5.374,0.449,7.904,-12.797,0.0,0.0,0.0,4.759,-0.121,3.62,0.0,0.6,0.0,9.541,-9.006,-2.517,0.0,-0.382,-0.821,-0.104,1.556,-0.119,-2.517,11.616,0.0,0.0,0.0,-8.136,-0.065,-1.433,-5.136,-0.237,0.0,2.648,7.787,1.992,1354.8,997.6,11399.6,2615.9,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17383.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-wall-furnace-elec-only.xml,46.771,46.771,46.771,46.771,0.0,0.0,0.0,0.0,0.0,0.0,16.355,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.015,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,6033.6,1637.3,6033.6,16.443,0.0,0.0,3.745,3.645,0.513,7.507,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.812,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-ceiling-fans.xml,58.717,58.717,36.466,36.466,22.251,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.306,0.831,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,0.0,22.251,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.837,0.0,14.069,9.233,0.612,0.0,0.0,0.0,0.0,2131.9,3748.3,3748.3,23.037,18.912,0.0,3.557,3.645,0.513,7.528,0.631,10.101,-12.683,0.0,0.0,0.0,8.298,-0.064,4.811,0.0,0.729,0.0,4.829,-8.905,-2.499,0.0,-0.096,-0.511,-0.059,2.557,-0.038,-1.551,11.73,0.0,0.0,0.0,-6.547,-0.06,-1.207,-3.271,-0.174,0.0,3.088,8.396,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-holiday.xml,58.549,58.549,36.278,36.278,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2397.2,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-kwh-per-year.xml,60.065,60.065,39.686,39.686,20.38,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.649,0.916,9.162,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.084,0.0,15.473,9.233,0.612,0.0,0.0,0.0,0.0,2415.9,3928.1,3928.1,22.768,19.627,0.0,3.59,3.667,0.516,7.602,0.636,10.162,-12.654,0.0,0.0,0.0,8.406,-0.069,4.821,0.0,0.731,0.0,4.464,-8.891,-4.249,0.0,-0.097,-0.498,-0.057,2.592,-0.035,-1.503,11.743,0.0,0.0,0.0,-6.501,-0.065,-1.197,-3.238,-0.17,0.0,3.373,7.886,3.428,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-mixed.xml,58.527,58.527,36.256,36.256,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.163,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2140.7,3428.1,3428.1,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none-ceiling-fans.xml,56.291,56.291,31.268,31.268,25.023,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,3.983,0.752,9.163,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.435,0.0,12.694,9.233,0.614,0.0,0.0,0.0,0.0,1751.9,3225.4,3225.4,23.413,18.181,0.0,3.512,3.616,0.509,7.437,0.625,10.03,-12.718,0.0,0.0,0.0,8.185,-0.059,4.802,0.0,0.728,0.0,5.363,-8.928,0.0,0.0,-0.037,-0.463,-0.052,2.696,-0.025,-1.404,11.719,0.0,0.0,0.0,-6.311,-0.055,-1.168,-3.07,-0.168,0.0,2.857,8.374,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none.xml,55.922,55.922,30.878,30.878,25.044,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,4.089,0.778,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,0.0,25.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.455,0.0,13.071,9.233,0.615,0.0,0.0,0.0,0.0,1751.9,3516.3,3516.3,23.413,18.395,0.0,3.512,3.615,0.509,7.439,0.625,10.03,-12.718,0.0,0.0,0.0,8.2,-0.059,4.802,0.0,0.728,0.0,5.367,-8.928,0.0,0.0,0.002,-0.415,-0.045,2.825,-0.014,-1.261,11.719,0.0,0.0,0.0,-6.115,-0.055,-1.133,-2.911,-0.16,0.0,2.973,7.851,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-location-AMY-2012.xml,67.119,67.119,34.953,34.953,32.166,0.0,0.0,0.0,0.0,0.0,0.0,0.523,0.0,0.0,3.001,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,0.0,32.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.118,0.0,8.863,9.674,0.619,0.0,0.0,0.0,0.0,2146.6,2889.7,2889.7,23.484,15.959,0.0,4.266,4.384,0.623,9.837,0.807,12.592,-13.801,0.0,0.0,0.0,10.991,-0.092,5.196,0.0,0.773,0.0,7.111,-10.172,-2.863,0.0,-0.007,-0.342,-0.042,1.616,-0.044,-1.659,9.941,0.0,0.0,0.0,-7.422,-0.082,-0.881,-2.44,-0.097,0.0,2.153,6.66,1.661,1358.5,1000.6,11587.5,2659.0,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18521.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 -base-location-baltimore-md.xml,39.279,39.279,30.07,30.07,9.208,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,5.174,1.068,8.66,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,9.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,0.0,0.0,8.506,0.0,17.289,8.551,0.66,0.0,0.0,0.0,0.0,1686.0,2555.0,2555.0,13.608,14.218,0.0,3.492,3.345,0.0,0.0,0.722,9.055,-8.541,0.0,0.0,3.31,0.0,-0.336,2.06,0.0,0.803,0.0,1.498,-5.842,-1.3,0.0,-0.135,-0.628,0.0,0.0,-0.007,0.03,12.018,0.0,0.0,-0.954,0.0,-0.329,-0.438,-1.537,-0.211,0.0,1.593,6.742,1.348,1354.8,997.6,11035.9,2719.3,0.0,24000.0,24000.0,0.0,17.24,91.22,18289.0,4484.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,15138.0,1182.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1874.0,594.0,480.0,800.0 -base-location-capetown-zaf.xml,28.301,28.301,28.14,28.14,0.161,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,4.337,1.043,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.0,0.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,16.613,7.422,0.693,0.0,0.0,0.0,0.0,1870.7,2278.8,2302.1,4.208,12.626,0.0,1.596,1.352,0.0,0.0,0.569,4.54,-5.631,0.0,0.0,2.602,0.0,-1.073,0.762,0.0,0.326,0.0,0.023,-4.305,-0.792,0.0,-0.908,-1.639,0.0,0.0,-0.468,-0.617,17.811,0.0,0.0,-4.25,0.0,-1.072,-0.604,-2.04,-0.407,0.0,1.03,8.279,1.855,1354.8,997.6,10580.5,2607.1,0.0,24000.0,24000.0,0.0,41.0,84.38,13251.0,5424.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13723.0,2066.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,845.0,26.0,19.0,800.0 -base-location-dallas-tx.xml,34.585,34.585,32.863,32.863,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.99,1.921,6.814,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,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.588,0.0,31.106,6.675,0.573,0.0,0.0,0.0,0.0,1848.0,2862.4,2862.4,9.69,15.1,0.0,1.711,1.591,0.0,0.0,0.368,4.651,-4.907,0.0,0.0,0.0,1.212,-0.34,0.998,0.0,0.383,0.0,0.043,-3.597,-0.743,0.0,0.508,-0.048,0.0,0.0,0.188,2.608,17.264,0.0,0.0,0.0,1.812,-0.335,-0.366,-1.955,-0.099,0.0,0.357,9.56,1.904,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20370.0,1378.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15394.0,82.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1629.0,437.0,392.0,800.0 -base-location-duluth-mn.xml,70.726,70.726,29.939,29.939,40.788,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,2.39,0.361,11.622,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,40.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.957,0.0,5.781,11.597,0.832,0.0,0.0,0.0,0.0,1758.5,2473.3,2473.3,26.409,11.646,0.0,7.032,7.03,0.0,0.0,1.592,19.668,-13.103,0.0,0.0,9.936,0.0,-0.366,6.394,0.0,0.0,0.0,7.532,-6.247,-1.915,0.0,-0.474,-0.829,0.0,0.0,-0.101,-0.954,8.135,0.0,0.0,-1.618,0.0,-0.366,-0.532,-1.023,0.0,0.0,0.368,2.618,0.732,1354.8,997.6,12167.9,2889.4,0.0,36000.0,24000.0,0.0,-13.72,81.14,31119.0,6119.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11786.0,292.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1209.0,246.0,163.0,800.0 -base-location-helena-mt.xml,77.926,77.926,35.478,35.478,42.449,0.0,0.0,0.0,0.0,0.0,0.0,1.04,0.0,0.0,2.442,0.387,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,0.0,42.449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.093,0.0,6.493,10.479,0.625,0.0,0.0,0.0,0.0,2238.1,2943.1,2943.1,30.315,14.97,0.0,5.36,5.465,0.773,11.524,1.049,15.463,-15.392,0.0,0.0,0.0,13.841,-0.19,7.807,0.0,1.206,0.0,8.242,-12.135,-3.367,0.0,0.002,-0.26,-0.028,1.289,0.008,-0.496,8.386,0.0,0.0,0.0,-6.087,-0.184,-0.685,-2.363,-0.123,0.0,1.356,4.654,1.142,1354.8,997.6,11851.9,2719.7,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17991.0,5112.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,80.0,0.0,-720.0,800.0 -base-location-honolulu-hi.xml,35.999,35.999,35.999,35.999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.056,2.997,4.816,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,0.0,48.761,4.572,0.55,0.0,0.0,0.0,0.0,2122.1,2146.5,2335.1,0.0,13.011,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.238,0.753,0.0,0.0,0.303,5.283,20.458,0.0,0.0,0.0,6.02,-0.004,-0.044,-1.672,0.062,0.0,0.718,13.134,2.647,1354.8,997.6,8540.5,2104.4,0.0,12000.0,24000.0,0.0,63.32,89.06,3427.0,602.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,13006.0,3.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1830.0,579.0,451.0,800.0 -base-location-miami-fl.xml,35.158,35.158,35.158,35.158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.287,2.792,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,0.0,0.0,45.294,4.712,0.551,0.0,0.0,0.0,0.0,2098.8,2413.9,2413.9,0.0,13.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.018,0.586,0.0,0.0,0.307,4.475,19.646,0.0,0.0,0.0,5.54,-0.004,-0.213,-2.328,-0.004,0.0,0.664,13.135,2.647,1354.8,997.6,8625.1,2125.3,0.0,12000.0,24000.0,0.0,51.62,90.68,8626.0,801.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,646.0,13291.0,-246.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2518.0,954.0,764.0,800.0 -base-location-phoenix-az.xml,38.859,38.859,38.858,38.858,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.532,3.014,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.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,0.0,53.05,4.955,0.556,0.0,0.0,0.0,0.0,2458.2,3486.9,3486.9,0.564,18.407,0.0,0.703,0.517,0.0,0.0,0.205,2.241,-1.843,0.0,0.0,0.0,-0.075,-0.467,0.365,0.0,0.122,0.0,-0.0,-1.611,-0.274,0.0,1.761,1.4,0.0,0.0,0.802,6.859,24.223,0.0,0.0,0.0,7.006,-0.479,0.01,-3.136,0.116,0.0,0.932,11.529,2.373,1354.8,997.6,8429.2,2077.0,0.0,24000.0,24000.0,0.0,41.36,108.14,13288.0,1067.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1035.0,18562.0,669.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 -base-location-portland-or.xml,37.297,37.297,27.76,27.76,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,2.946,0.564,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,0.0,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,9.043,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2900.1,2900.1,8.448,14.135,0.0,3.436,3.276,0.0,0.0,0.748,8.757,-8.143,0.0,0.0,6.216,0.0,-0.442,1.469,0.0,0.81,0.0,1.633,-7.49,-1.648,0.0,-0.327,-0.797,0.0,0.0,-0.01,-0.756,10.358,0.0,0.0,-2.964,0.0,-0.439,-0.366,-1.84,-0.257,0.0,0.567,5.094,0.999,1354.8,997.6,11239.5,2769.4,0.0,24000.0,24000.0,0.0,28.58,87.08,17541.0,6250.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,15211.0,2157.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 -base-mechvent-balanced.xml,79.705,79.705,37.912,37.912,41.794,0.0,0.0,0.0,0.0,0.0,0.0,0.689,0.0,0.0,4.192,0.791,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,0.0,41.794,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.143,0.0,13.264,9.233,0.62,0.0,0.0,0.0,2.0,2238.9,3658.1,3658.1,32.388,20.91,0.0,3.502,3.716,0.523,7.451,0.654,10.375,-12.838,0.0,0.0,0.0,8.166,-0.114,5.501,0.0,15.075,0.0,8.574,-9.173,-2.568,0.0,0.144,-0.259,-0.023,3.003,0.031,-0.717,11.576,0.0,0.0,0.0,-5.946,-0.11,-1.021,-2.55,-3.554,0.0,3.224,7.611,1.941,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5341.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-bath-kitchen-fans.xml,60.128,60.128,36.171,36.171,23.957,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.376,0.847,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,0.0,23.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,0.0,22.434,0.0,14.266,9.233,0.614,0.0,0.0,0.0,0.0,2165.5,3616.0,3616.0,24.907,20.551,0.0,3.547,3.643,0.513,7.527,0.631,10.093,-12.692,0.0,0.0,0.0,8.326,-0.059,4.325,0.0,2.474,0.0,5.169,-8.912,-2.501,0.0,-0.042,-0.451,-0.05,2.727,-0.023,-1.37,11.721,0.0,0.0,0.0,-6.275,-0.055,-1.047,-3.037,-0.687,0.0,3.188,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,73.052,73.052,37.818,37.818,35.233,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,0.0,4.282,0.816,9.167,0.0,0.0,4.51,0.0,0.334,1.695,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.233,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.999,0.0,13.701,9.233,0.618,0.0,0.0,0.0,0.0,2170.0,3598.0,3598.0,29.392,20.852,0.0,3.484,3.659,0.515,7.505,0.637,10.165,-12.749,0.0,0.0,0.0,8.338,-0.07,1.507,0.0,13.86,0.0,7.362,-9.0,-2.522,0.0,0.036,-0.367,-0.038,2.917,0.001,-1.081,11.664,0.0,0.0,0.0,-5.978,-0.066,-0.256,-2.75,-3.283,0.0,3.25,7.782,1.988,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-dse.xml,73.167,73.167,38.774,38.774,34.393,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,5.004,0.911,9.167,0.0,0.0,4.51,0.0,0.334,1.848,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,25.749,0.0,10.529,9.233,0.618,0.0,0.0,0.0,0.0,2168.2,2842.4,2842.4,21.245,13.45,0.0,3.757,3.654,0.514,7.497,0.636,10.158,-12.737,0.0,0.0,0.0,8.324,-0.073,1.507,0.0,13.737,0.0,0.0,-8.997,-2.521,0.0,0.127,-0.369,-0.038,2.916,0.001,-1.083,11.676,0.0,0.0,0.0,-5.982,-0.069,-0.257,-2.741,-3.253,0.0,0.0,7.785,1.989,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-evap-cooler-only-ducted.xml,34.169,34.169,34.169,34.169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.914,9.231,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,0.0,0.0,11.391,9.233,0.687,0.0,0.0,0.0,0.0,2121.2,2220.9,2220.9,0.0,18.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.146,-0.36,-0.036,2.984,-0.004,-1.109,11.85,0.0,0.0,0.0,-6.577,-0.059,-0.258,-2.577,-3.1,0.0,0.643,8.012,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,70.272,70.272,36.472,36.472,33.801,0.0,0.0,0.0,0.0,0.0,0.0,0.558,0.0,0.0,4.194,0.795,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,0.0,33.801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.656,0.0,13.35,9.233,0.619,0.0,0.0,0.0,0.0,2139.0,3726.9,3726.9,29.394,20.838,0.0,3.517,3.68,0.518,7.479,0.643,10.242,-12.776,0.0,0.0,0.0,8.264,-0.086,1.919,0.0,12.478,0.0,7.088,-9.068,-2.54,0.0,0.091,-0.314,-0.031,2.98,0.015,-0.906,11.637,0.0,0.0,0.0,-5.925,-0.082,-0.256,-2.616,-4.008,0.0,3.173,7.714,1.97,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-supply.xml,72.392,72.392,36.498,36.498,35.894,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.201,0.796,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,0.0,35.894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.618,0.0,13.348,9.233,0.618,0.0,0.0,0.0,0.0,2140.2,3598.1,3598.1,29.393,20.842,0.0,3.49,3.667,0.516,7.492,0.64,10.201,-12.763,0.0,0.0,0.0,8.307,-0.079,1.51,0.0,14.421,0.0,7.476,-9.032,-2.53,0.0,0.066,-0.339,-0.034,2.957,0.009,-0.986,11.65,0.0,0.0,0.0,-5.933,-0.075,-0.247,-2.659,-3.886,0.0,3.198,7.75,1.98,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis.xml,74.262,74.262,37.75,37.75,36.512,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.229,0.802,9.168,0.0,0.0,4.51,0.0,0.334,1.672,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.198,0.0,13.453,9.233,0.618,0.0,0.0,0.0,0.0,2170.0,3598.0,3598.0,29.392,20.835,0.0,3.49,3.703,0.521,7.473,0.651,10.331,-12.78,0.0,0.0,0.0,8.223,-0.114,1.521,0.0,14.05,0.0,8.491,-9.097,-2.548,0.0,0.142,-0.305,-0.029,2.935,0.02,-0.861,11.633,0.0,0.0,0.0,-6.011,-0.11,-0.235,-2.663,-3.054,0.0,2.492,7.686,1.962,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv-atre-asre.xml,65.169,65.169,37.943,37.943,27.227,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.407,0.852,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,0.0,27.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,0.0,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.498,0.0,14.334,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3945.0,3945.0,25.353,20.261,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.402,0.0,3.906,0.0,5.811,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.259,-2.953,-0.853,0.0,3.261,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv.xml,65.173,65.173,37.943,37.943,27.231,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.407,0.852,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,0.0,27.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.502,0.0,14.334,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3945.0,3945.0,25.355,20.261,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.402,0.0,3.909,0.0,5.812,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.259,-2.953,-0.854,0.0,3.261,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust-rated-flow-rate.xml,73.937,73.937,36.908,36.908,37.029,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.168,0.787,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,0.0,37.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.681,0.0,13.2,9.233,0.619,0.0,0.0,0.0,0.0,2172.5,3654.5,3654.5,29.443,20.863,0.0,3.5,3.682,0.518,7.48,0.643,10.243,-12.791,0.0,0.0,0.0,8.263,-0.082,1.464,0.0,15.396,0.0,7.675,-9.072,-2.541,0.0,0.094,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.923,-0.078,-0.233,-2.607,-4.199,0.0,3.184,7.711,1.968,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust.xml,73.937,73.937,36.908,36.908,37.029,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.168,0.787,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,0.0,37.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.681,0.0,13.2,9.233,0.619,0.0,0.0,0.0,0.0,2172.5,3654.5,3654.5,29.443,20.863,0.0,3.5,3.682,0.518,7.48,0.643,10.243,-12.791,0.0,0.0,0.0,8.263,-0.082,1.464,0.0,15.396,0.0,7.675,-9.072,-2.541,0.0,0.094,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.923,-0.078,-0.233,-2.607,-4.199,0.0,3.184,7.711,1.968,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv-asre.xml,65.17,65.17,37.946,37.946,27.224,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.409,0.853,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,0.0,27.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,25.496,0.0,14.336,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3946.2,3946.2,25.352,20.262,0.0,3.52,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.402,0.0,3.904,0.0,5.811,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.259,-2.953,-0.852,0.0,3.263,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv.xml,65.174,65.174,37.946,37.946,27.228,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.409,0.853,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,0.0,27.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,25.5,0.0,14.336,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3946.2,3946.2,25.354,20.263,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.402,0.0,3.907,0.0,5.811,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.259,-2.953,-0.853,0.0,3.263,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-multiple.xml,80.873,80.873,38.381,38.381,42.492,0.0,0.0,0.0,0.0,0.0,0.0,0.698,0.0,0.0,4.557,0.697,9.171,0.0,0.0,4.51,0.0,0.334,1.575,0.0,0.0,0.405,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.492,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.798,0.0,11.684,9.233,0.622,0.0,0.0,0.0,22.0,2289.0,3646.3,3646.3,35.906,22.623,0.0,3.183,3.709,0.522,7.491,0.652,10.33,-12.791,0.0,0.0,0.0,8.289,-0.106,3.848,0.0,9.548,0.0,16.43,-9.091,-2.547,0.0,0.052,-0.213,-0.016,3.196,0.041,-0.606,11.623,0.0,0.0,0.0,-5.618,-0.101,-0.613,0.0,-2.152,-8.169,4.731,7.695,1.963,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24526.0,10276.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-supply.xml,72.52,72.52,36.979,36.979,35.54,0.0,0.0,0.0,0.0,0.0,0.0,0.586,0.0,0.0,4.245,0.807,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,0.0,35.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.287,0.0,13.532,9.233,0.618,0.0,0.0,0.0,0.0,2169.6,3628.1,3628.1,29.258,20.864,0.0,3.493,3.667,0.516,7.492,0.64,10.201,-12.763,0.0,0.0,0.0,8.307,-0.08,1.51,0.0,14.154,0.0,7.41,-9.032,-2.53,0.0,0.063,-0.34,-0.034,2.955,0.009,-0.988,11.65,0.0,0.0,0.0,-5.936,-0.076,-0.247,-2.665,-3.722,0.0,3.233,7.75,1.98,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19951.0,5331.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-whole-house-fan.xml,56.868,56.868,34.417,34.417,22.452,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,2.535,0.4,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.664,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.026,0.0,6.56,9.233,0.622,0.0,0.0,0.0,0.0,2132.2,3105.3,3105.3,23.037,16.246,0.0,3.554,3.643,0.513,7.547,0.63,10.093,-12.683,0.0,0.0,0.0,8.434,-0.057,4.809,0.0,0.729,0.0,4.872,-8.905,-2.499,0.0,0.088,-0.266,-0.023,3.27,0.022,-0.818,11.73,0.0,0.0,0.0,-5.409,-0.053,-0.993,0.0,-0.135,-11.71,1.806,7.881,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-additional-properties.xml,58.35,58.35,36.078,36.078,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-none.xml,58.35,58.35,36.078,36.078,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-detailed-only.xml,58.35,31.463,36.078,9.192,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-mixed.xml,58.35,31.463,36.078,9.192,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv.xml,58.35,1.086,36.078,-21.185,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,58.35,58.35,36.078,36.078,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,63.39,43.94,31.595,12.145,31.795,0.0,0.0,0.0,0.0,0.0,0.0,0.525,0.0,0.0,2.267,0.338,2.184,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.081,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.45,0.0,0.506,31.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,29.762,0.0,5.463,10.64,0.693,0.0,9.152,0.0,0.0,2402.4,2950.3,2950.3,26.047,15.217,0.0,3.491,3.687,0.518,7.47,1.119,10.315,-12.806,0.0,0.0,0.0,8.267,-0.095,1.533,0.0,15.069,0.0,2.756,-9.283,-2.557,0.0,0.69,-0.095,0.001,3.444,-0.195,-0.322,11.607,0.0,0.0,0.0,-5.223,-0.091,-0.199,0.0,-3.419,-10.854,0.449,8.626,1.952,1610.4,1574.2,10560.0,3721.5,2.87,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-emissions.xml,59.166,32.28,36.895,10.009,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.817,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2199.2,3498.3,3498.3,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,13.025,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery-scheduled.xml,77.084,68.895,37.813,29.624,30.771,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,1.735,22.271,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,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3537.0,3537.0,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,1.697,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery.xml,75.35,67.161,36.078,27.889,30.771,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.0,22.271,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,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators.xml,75.35,67.161,36.078,27.889,30.771,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.0,22.271,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,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-ground-conductivity.xml,56.041,56.041,36.002,36.002,20.039,0.0,0.0,0.0,0.0,0.0,0.0,0.331,0.0,0.0,4.383,0.85,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,20.039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.765,0.0,14.314,9.233,0.613,0.0,0.0,0.0,0.0,2110.2,3766.0,3766.0,22.152,19.179,0.0,3.593,3.668,0.516,7.311,0.636,10.165,-12.663,0.0,0.0,0.0,6.695,-0.064,4.817,0.0,0.731,0.0,4.4,-8.891,-2.496,0.0,-0.066,-0.474,-0.053,2.388,-0.029,-1.438,11.75,0.0,0.0,0.0,-6.137,-0.059,-1.182,-3.12,-0.168,0.0,3.192,7.886,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8587.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon.xml,146.284,146.284,68.538,68.538,69.751,0.0,2.499,5.496,0.0,0.0,0.0,0.28,0.0,0.0,5.409,1.107,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,0.0,16.986,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,15.905,0.0,18.753,9.233,0.609,0.0,0.0,0.0,0.0,3234.8,5182.2,5182.2,21.952,20.73,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.836,0.0,0.734,0.0,3.781,-13.808,-2.35,0.0,-0.201,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.272,-3.573,-0.181,0.0,3.874,13.226,2.158,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon2.xml,92.768,92.768,64.989,64.989,19.784,2.499,0.0,0.0,5.496,0.0,0.0,0.28,0.0,0.0,5.409,1.107,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,0.0,16.986,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,15.905,0.0,18.753,9.233,0.609,0.0,0.0,0.0,0.0,3187.7,4779.7,4779.7,21.952,20.73,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.836,0.0,0.734,0.0,3.781,-13.808,-2.35,0.0,-0.201,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.272,-3.573,-0.181,0.0,3.874,13.226,2.158,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-none.xml,53.087,53.087,24.834,24.834,28.253,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,3.725,0.689,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,0.0,28.253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.462,0.0,11.563,9.233,0.617,0.0,0.0,0.0,0.0,1537.9,3128.3,3128.3,24.27,17.327,0.0,3.475,3.599,0.506,7.396,0.622,9.986,-12.73,0.0,0.0,0.0,8.165,-0.054,4.799,0.0,0.726,0.0,5.973,-3.801,-2.512,0.0,0.056,-0.368,-0.038,2.973,-0.001,-1.105,11.683,0.0,0.0,0.0,-5.88,-0.05,-1.086,-2.7,-0.152,0.0,2.706,3.706,1.998,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,26.623,26.623,25.788,25.788,0.835,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.569,0.438,9.693,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.835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.772,0.0,7.007,9.538,0.585,0.0,0.0,0.0,0.0,1642.1,1986.1,1986.1,3.336,8.14,0.0,-0.013,3.83,0.0,0.0,0.417,4.067,-3.186,0.0,0.0,-0.01,0.0,-0.312,1.31,0.0,0.761,0.0,0.0,-5.319,-0.936,0.0,-0.008,-2.783,0.0,0.0,-0.012,-0.688,5.017,0.0,0.0,-0.005,0.0,-0.303,-0.394,-1.178,-0.271,0.0,0.0,6.656,1.09,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-misc-neighbor-shading.xml,63.378,63.378,35.82,35.82,27.558,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,4.134,0.79,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,0.0,27.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.807,0.0,13.302,9.233,0.615,0.0,0.0,0.0,0.0,2126.3,3689.5,3689.5,23.27,18.475,0.0,3.479,3.709,0.541,7.36,0.776,10.707,-8.74,0.0,0.0,0.0,7.861,-0.057,4.79,0.0,0.724,0.0,5.782,-8.918,-2.502,0.0,-0.014,-0.467,-0.054,2.778,-0.04,-1.339,10.323,0.0,0.0,0.0,-6.182,-0.052,-1.15,-2.99,-0.162,0.0,2.965,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-shielding-of-home.xml,58.011,58.011,36.22,36.22,21.791,0.0,0.0,0.0,0.0,0.0,0.0,0.359,0.0,0.0,4.533,0.888,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,21.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,20.406,0.0,14.992,9.233,0.613,0.0,0.0,0.0,0.0,2131.8,3749.4,3749.4,23.017,19.035,0.0,3.562,3.647,0.513,7.535,0.631,10.101,-12.683,0.0,0.0,0.0,8.308,-0.061,4.427,0.0,0.73,0.0,4.741,-8.899,-2.498,0.0,-0.07,-0.476,-0.054,2.649,-0.03,-1.451,11.73,0.0,0.0,0.0,-6.409,-0.058,-1.067,-2.609,-0.168,0.0,3.276,7.878,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31388.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18684.0,5333.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,105.0,0.0,-695.0,800.0 -base-misc-usage-multiplier.xml,126.192,126.192,50.907,50.907,68.089,0.0,2.249,4.947,0.0,0.0,0.0,0.34,0.0,0.0,4.686,0.925,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,0.0,20.601,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.292,0.0,15.608,8.31,0.612,0.0,0.0,0.0,0.0,2765.9,4428.9,4428.9,22.737,19.743,0.0,3.581,3.659,0.515,7.576,0.633,10.138,-12.664,0.0,0.0,0.0,8.363,-0.065,4.867,0.0,0.658,0.0,4.504,-10.586,-2.246,0.0,-0.096,-0.496,-0.056,2.596,-0.035,-1.507,11.751,0.0,0.0,0.0,-6.491,-0.062,-1.212,-3.249,-0.153,0.0,3.386,9.606,1.813,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-pv-battery-ah.xml,59.166,32.28,36.895,10.009,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.817,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2199.2,3498.3,3498.3,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,13.025,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-garage.xml,59.543,32.657,35.604,8.717,23.94,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.107,0.552,9.264,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.886,0.0,0.868,23.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.413,0.0,9.142,9.233,0.722,0.0,0.0,0.0,0.0,2202.1,2829.3,2829.3,18.033,11.776,0.0,3.532,3.792,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.372,0.0,0.0,0.0,3.764,-6.763,-2.508,0.0,0.104,-0.282,-0.037,2.418,-0.001,-1.134,8.269,0.0,0.0,0.0,-5.679,-0.041,-1.226,-2.106,0.0,0.0,1.34,5.683,2.002,1354.8,997.6,11399.5,2615.8,16.797,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15521.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-round-trip-efficiency.xml,60.518,33.631,38.246,11.36,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,2.168,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2306.1,3638.3,3638.3,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,4.296,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-scheduled.xml,60.084,33.198,37.813,10.926,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,1.735,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3537.0,3537.0,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,5.417,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery.xml,59.166,32.28,36.895,10.009,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.817,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2199.2,3498.3,3498.3,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,13.025,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery-scheduled.xml,77.084,42.009,37.813,2.737,30.771,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,1.735,22.271,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,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3537.0,3537.0,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,16.79,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery.xml,76.196,41.12,36.925,1.849,30.771,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.846,22.271,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,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2188.3,3487.4,3487.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,83.201,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators.xml,75.35,40.274,36.078,1.003,30.771,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.0,22.271,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,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv.xml,58.35,31.463,36.078,9.192,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0-runperiod-1-month.xml,8.7756,8.7756,0.4299,0.4299,8.3456,0.0,0.0,0.0,0.0,0.0,0.0,0.1377,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.3456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8123,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.18,0.0,556.18,26.8921,0.0,0.0,0.6029,0.6429,0.0909,1.7457,0.1095,1.7779,-1.9884,0.0,0.0,0.0,2.2351,-0.0005,1.0008,0.0,0.0,0.0,1.7429,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0.xml,41.427,41.427,7.378,7.378,34.049,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.403,0.618,0.576,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.0,0.0,0.0,0.0,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.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,31.893,0.0,10.867,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2257.2,2257.2,25.498,15.666,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.997,-0.063,5.421,0.0,0.0,0.0,7.058,-1.409,0.0,0.0,0.15,-0.28,-0.026,3.18,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.472,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon.xml,101.17,101.17,52.126,52.126,41.138,0.0,2.609,5.297,0.0,0.0,0.0,0.345,0.0,0.0,4.607,0.907,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,0.0,20.916,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.587,0.0,15.486,3.62,0.613,0.0,0.0,0.0,0.0,2589.3,4556.1,4556.1,22.989,19.678,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.818,0.0,0.729,0.0,4.576,-10.198,-2.496,0.0,-0.096,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.195,-3.22,-0.169,0.0,3.382,9.248,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon2.xml,80.116,80.116,49.7,49.7,22.51,2.609,0.0,0.0,5.297,0.0,0.0,0.345,0.0,0.0,4.607,0.907,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,0.0,20.916,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.587,0.0,15.486,3.62,0.613,0.0,0.0,0.0,0.0,2391.0,4296.4,4296.4,22.989,19.678,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.818,0.0,0.729,0.0,4.576,-10.198,-2.496,0.0,-0.096,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.195,-3.22,-0.169,0.0,3.382,9.248,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19990.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1.xml,52.87,52.87,28.494,28.494,24.376,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,4.081,0.777,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,0.0,24.376,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,13.244,3.62,0.615,0.0,0.0,0.0,0.0,1659.4,3261.0,3261.0,23.634,18.44,0.0,3.532,3.634,0.511,7.494,0.629,10.079,-12.698,0.0,0.0,0.0,8.289,-0.064,4.807,0.0,0.727,0.0,5.252,-7.189,-2.504,0.0,-0.017,-0.432,-0.047,2.784,-0.017,-1.299,11.715,0.0,0.0,0.0,-6.191,-0.06,-1.137,-2.934,-0.161,0.0,3.015,6.197,2.006,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-5.xml,69.639,49.388,40.123,19.872,29.516,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,2.386,0.366,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.107,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.251,0.0,0.39,29.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,27.627,0.0,5.885,18.47,0.643,0.0,11.969,0.0,0.0,3177.0,3224.3,3224.3,25.6,15.57,0.0,3.796,3.691,0.519,7.524,0.645,10.259,-12.764,0.0,0.0,0.0,8.385,-0.078,1.526,0.0,14.999,0.0,2.563,-11.178,-2.536,0.0,0.218,-0.167,-0.009,3.395,0.049,-0.49,11.649,0.0,0.0,0.0,-5.263,-0.074,-0.214,0.0,-3.588,-11.536,0.482,10.474,1.974,2592.2,2706.5,21147.6,5662.4,1.824,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-all-10-mins.xml,59.728,59.728,36.325,36.325,23.402,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.59,0.894,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.915,0.0,15.004,9.21,0.638,0.0,0.0,0.333,1.333,9422.1,10708.7,10708.7,37.366,21.894,0.0,3.607,3.669,0.517,7.596,0.642,10.189,-12.601,0.0,0.0,0.0,8.33,-0.062,5.311,0.0,0.775,0.0,5.111,-8.969,-2.509,0.0,-0.179,-0.489,-0.056,2.704,-0.032,-1.437,11.752,0.0,0.0,0.0,-6.328,-0.058,-1.28,-3.003,-0.179,0.0,3.436,8.307,2.0,1354.7,998.0,11489.6,2636.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps-power-outage.xml,33.631,33.631,28.785,28.785,4.846,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.304,0.58,7.441,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,0.0,0.0,4.539,0.0,9.824,7.426,0.56,0.0,0.0,0.5,0.667,9397.3,10444.5,10444.5,41.547,21.475,0.0,2.616,2.464,0.344,4.288,0.336,6.501,-12.497,0.0,0.0,0.0,3.691,-0.104,3.393,0.0,0.384,0.0,1.013,-6.566,-1.596,0.0,-0.248,-0.599,-0.072,2.363,-0.065,-1.808,11.861,0.0,0.0,0.0,-7.639,-0.059,-1.387,-4.976,-0.212,0.0,2.361,8.448,2.023,1141.2,883.5,9401.6,2157.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps.xml,42.572,42.572,34.517,34.517,8.055,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.316,0.583,9.198,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.542,0.0,9.873,9.21,0.669,0.0,0.0,0.0,0.667,9393.9,10447.5,10447.5,31.865,21.476,0.0,2.918,2.81,0.394,5.403,0.421,7.525,-12.492,0.0,0.0,0.0,5.505,-0.059,3.867,0.0,0.581,0.0,1.731,-8.86,-2.486,0.0,-0.252,-0.602,-0.072,2.368,-0.066,-1.818,11.861,0.0,0.0,0.0,-7.571,-0.058,-1.389,-4.989,-0.212,0.0,2.371,8.448,2.023,1354.7,998.0,11490.8,2636.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.138,59.138,36.24,36.24,22.898,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.506,0.88,9.085,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,21.44,0.0,14.797,9.148,0.615,0.0,0.0,0.0,0.0,6842.0,7475.7,9098.5,31.353,20.86,0.0,3.557,3.649,0.513,7.536,0.632,10.11,-12.685,0.0,0.0,0.0,8.318,-0.06,5.326,0.0,0.764,0.0,4.946,-8.988,-2.501,0.0,-0.056,-0.46,-0.051,2.692,-0.025,-1.397,11.729,0.0,0.0,0.0,-6.34,-0.055,-1.288,-3.092,-0.189,0.0,3.271,8.364,1.98,1002.6,945.2,11591.4,2659.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,44.734,44.734,30.385,30.385,14.348,0.0,0.0,0.0,0.0,0.0,0.0,0.237,0.0,0.0,4.476,0.872,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.441,0.0,14.679,7.439,0.517,0.0,0.0,17.0,0.0,6231.1,5705.4,6231.1,36.507,20.005,0.0,3.075,3.07,0.431,5.717,0.489,8.386,-12.686,0.0,0.0,0.0,5.187,-0.154,4.377,0.0,0.513,0.0,3.02,-6.681,-1.621,0.0,-0.056,-0.461,-0.051,2.676,-0.025,-1.397,11.731,0.0,0.0,0.0,-6.442,-0.057,-1.273,-3.091,-0.186,0.0,3.248,8.281,2.006,1141.2,883.5,9318.8,2138.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.427,41.427,7.378,7.378,34.049,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.403,0.618,0.576,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.0,0.0,0.0,0.0,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.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,31.893,0.0,10.867,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2257.2,2257.2,25.498,15.666,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.997,-0.063,5.421,0.0,0.0,0.0,7.058,-1.409,0.0,0.0,0.15,-0.28,-0.026,3.18,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.472,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,57.772,57.772,30.975,30.975,26.798,0.0,0.0,0.0,0.0,0.0,0.0,0.442,0.0,0.0,4.495,0.877,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.095,0.0,14.759,7.43,0.614,0.0,0.0,0.0,0.0,4455.5,5711.9,5711.9,30.778,20.061,0.0,3.504,3.622,0.51,7.453,0.626,10.041,-12.679,0.0,0.0,0.0,8.149,-0.064,5.309,0.0,0.514,0.0,5.698,-6.297,-1.615,0.0,-0.061,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.358,-0.059,-1.277,-3.102,-0.186,0.0,3.261,8.287,2.008,1141.2,883.5,9304.1,2135.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic.xml,59.071,59.071,36.197,36.197,22.874,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.496,0.877,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.419,0.0,14.761,9.229,0.614,0.0,0.0,0.0,0.0,4580.8,5712.1,5712.1,30.651,20.063,0.0,3.553,3.644,0.513,7.53,0.631,10.102,-12.674,0.0,0.0,0.0,8.308,-0.063,5.269,0.0,0.777,0.0,4.944,-8.954,-2.502,0.0,-0.061,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.355,-0.059,-1.277,-3.102,-0.186,0.0,3.262,8.287,2.008,1354.7,998.0,11396.5,2615.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-schedules.xml,57.168,57.168,35.466,35.466,21.701,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.913,0.755,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,0.0,21.701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.95,0.0,12.447,9.233,0.615,0.0,0.0,101.0,55.0,2152.2,3586.3,3586.3,34.947,20.39,0.0,3.517,3.579,0.503,7.523,0.608,9.827,-12.674,0.0,0.0,0.0,8.678,0.006,4.656,0.0,0.727,0.0,4.5,-8.859,-2.496,0.0,-0.073,-0.502,-0.058,2.616,-0.042,-1.591,11.74,0.0,0.0,0.0,-6.667,-0.004,-1.224,-3.407,-0.174,0.0,2.49,7.92,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-setbacks.xml,56.539,56.539,35.618,35.618,20.921,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.048,0.783,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,0.0,20.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.502,0.0,13.07,9.233,0.616,0.0,0.0,0.0,14.0,2137.2,3597.9,3597.9,25.335,20.814,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.197,-0.023,4.642,0.0,0.724,0.0,4.387,-8.884,-2.501,0.0,-0.057,-0.497,-0.057,2.572,-0.04,-1.578,11.697,0.0,0.0,0.0,-6.644,-0.024,-1.205,-3.354,-0.177,0.0,2.635,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints.xml,41.527,41.527,34.236,34.236,7.29,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.107,0.54,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.822,0.0,9.174,9.233,0.645,0.0,0.0,0.0,0.0,2102.1,3212.6,3212.6,17.4,16.358,0.0,2.853,2.787,0.39,5.357,0.411,7.456,-12.563,0.0,0.0,0.0,5.503,-0.06,3.482,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.125,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.262,-5.126,-0.188,0.0,2.129,8.003,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-available.xml,54.873,54.873,32.578,32.578,22.295,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.354,0.611,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.879,0.0,10.367,8.601,0.581,0.0,0.0,0.0,1.0,2132.0,5726.0,5726.0,23.037,19.13,0.0,3.556,3.644,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.312,-0.065,4.767,0.0,0.795,0.0,4.838,-8.906,-2.499,0.0,-0.043,-0.48,-0.054,2.633,-0.03,-1.456,11.731,0.0,0.0,0.0,-6.41,-0.061,-1.181,-4.834,-0.173,0.0,2.289,6.933,1.701,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-unavailable.xml,55.019,55.019,32.755,32.755,22.264,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.498,0.647,8.543,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.849,0.0,10.939,8.601,0.579,0.0,0.0,0.0,10.0,2132.0,5767.6,5767.6,23.037,19.719,0.0,3.557,3.645,0.513,7.527,0.631,10.104,-12.683,0.0,0.0,0.0,8.289,-0.065,4.767,0.0,0.795,0.0,4.831,-8.906,-2.499,0.0,-0.166,-0.606,-0.072,2.302,-0.062,-1.838,11.731,0.0,0.0,0.0,-6.905,-0.061,-1.303,-2.711,-0.174,0.0,2.367,6.931,1.701,1241.6,923.2,10501.6,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage.xml,55.048,55.048,32.631,32.631,22.417,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,3.427,0.629,8.544,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.417,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,10.683,8.601,0.581,0.0,0.0,0.0,5.0,1985.3,5811.0,5811.0,23.071,22.12,0.0,3.554,3.643,0.513,7.523,0.63,10.094,-12.684,0.0,0.0,0.0,8.29,-0.063,4.765,0.0,0.795,0.0,4.861,-8.904,-2.367,0.0,-0.098,-0.536,-0.062,2.488,-0.045,-1.629,11.731,0.0,0.0,0.0,-6.629,-0.059,-1.234,-3.891,-0.174,0.0,2.339,6.934,1.794,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy-year-round.xml,41.427,41.427,7.378,7.378,34.049,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.403,0.618,0.576,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.0,0.0,0.0,0.0,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.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,31.893,0.0,10.867,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2257.2,2257.2,25.498,15.666,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.997,-0.063,5.421,0.0,0.0,0.0,7.058,-1.409,0.0,0.0,0.15,-0.28,-0.026,3.18,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.472,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy.xml,57.378,57.378,30.763,30.763,26.615,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,4.441,0.864,7.484,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.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,0.0,24.925,0.0,14.57,7.429,0.614,0.0,0.0,0.0,0.0,2011.5,3491.1,3491.1,23.126,19.203,0.0,3.503,3.619,0.509,7.446,0.625,10.032,-12.688,0.0,0.0,0.0,8.141,-0.065,4.965,0.0,0.552,0.0,5.668,-6.163,-1.548,0.0,-0.059,-0.466,-0.052,2.681,-0.027,-1.412,11.729,0.0,0.0,0.0,-6.357,-0.06,-1.15,-3.11,-0.2,0.0,3.228,7.872,2.14,1122.2,811.7,9376.7,2151.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple.xml,58.52,58.52,36.114,36.114,22.406,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,4.442,0.865,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,0.0,22.406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.983,0.0,14.574,9.233,0.614,0.0,0.0,0.0,0.0,1985.3,3442.4,3442.4,23.071,19.188,0.0,3.554,3.642,0.513,7.525,0.63,10.091,-12.684,0.0,0.0,0.0,8.301,-0.061,4.808,0.0,0.729,0.0,4.859,-8.902,-2.367,0.0,-0.06,-0.466,-0.052,2.68,-0.027,-1.418,11.729,0.0,0.0,0.0,-6.358,-0.057,-1.174,-3.113,-0.166,0.0,3.227,7.876,2.141,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-calendar-year-custom.xml,58.325,58.325,36.048,36.048,22.277,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.388,0.852,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.862,0.0,14.357,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3434.7,3434.7,23.037,19.125,0.0,3.557,3.645,0.513,7.53,0.631,10.1,-12.683,0.0,0.0,0.0,8.316,-0.063,4.811,0.0,0.729,0.0,4.835,-8.905,-2.499,0.0,-0.051,-0.459,-0.051,2.707,-0.025,-1.394,11.73,0.0,0.0,0.0,-6.328,-0.059,-1.166,-3.252,-0.165,0.0,3.17,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-custom.xml,58.35,58.35,36.078,36.078,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-disabled.xml,58.321,58.321,36.062,36.062,22.259,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.4,0.855,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.845,0.0,14.398,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3344.8,3344.8,23.037,18.729,0.0,3.556,3.643,0.513,7.53,0.63,10.089,-12.683,0.0,0.0,0.0,8.311,-0.06,4.808,0.0,0.727,0.0,4.831,-8.9,-2.496,0.0,-0.056,-0.465,-0.052,2.684,-0.027,-1.417,11.73,0.0,0.0,0.0,-6.348,-0.056,-1.176,-3.131,-0.163,0.0,3.182,7.877,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-runperiod-1-month.xml,9.3387,9.3387,2.9155,2.9155,6.4231,0.0,0.0,0.0,0.0,0.0,0.0,0.106,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0134,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2115.82,0.0,2115.82,24.5082,0.0,0.0,0.6218,0.6514,0.0921,1.7783,0.1114,1.8005,-1.9863,0.0,0.0,0.0,2.3104,0.001,0.8923,0.0,0.1316,0.0,1.3931,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-temperature-capacitance-multiplier.xml,58.237,58.237,35.972,35.972,22.265,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.327,0.838,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.85,0.0,14.107,9.233,0.614,0.0,0.0,0.0,0.0,2131.5,3405.2,3405.2,22.978,19.044,0.0,3.626,3.641,0.512,7.527,0.628,10.073,-12.689,0.0,0.0,0.0,8.292,-0.053,4.807,0.0,0.728,0.0,4.828,-8.896,-2.498,0.0,-0.223,-0.462,-0.052,2.69,-0.027,-1.419,11.724,0.0,0.0,0.0,-6.346,-0.05,-1.18,-3.176,-0.164,0.0,3.051,7.882,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,59.739,59.739,36.322,36.322,23.418,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.588,0.893,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.418,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.929,0.0,14.997,9.232,0.616,0.0,0.0,0.333,1.333,9296.7,8481.7,9322.0,37.369,21.894,0.0,3.607,3.669,0.517,7.596,0.642,10.189,-12.601,0.0,0.0,0.0,8.33,-0.062,5.311,0.0,0.775,0.0,5.114,-8.958,-2.509,0.0,-0.179,-0.489,-0.056,2.705,-0.032,-1.437,11.752,0.0,0.0,0.0,-6.327,-0.058,-1.28,-3.002,-0.179,0.0,3.435,8.297,2.0,1354.7,998.0,11410.4,2618.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,59.659,59.659,36.312,36.312,23.346,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.586,0.893,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,21.862,0.0,14.99,9.229,0.614,0.0,0.0,0.0,0.5,6068.6,7353.6,7353.6,35.103,21.328,0.0,3.607,3.669,0.517,7.594,0.642,10.187,-12.601,0.0,0.0,0.0,8.326,-0.062,5.259,0.0,0.771,0.0,5.103,-8.955,-2.502,0.0,-0.179,-0.489,-0.056,2.704,-0.032,-1.438,11.752,0.0,0.0,0.0,-6.331,-0.057,-1.265,-3.005,-0.186,0.0,3.433,8.284,2.008,1354.7,998.0,11396.5,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins.xml,58.958,58.958,36.193,36.193,22.765,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.503,0.873,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,0.0,22.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,21.318,0.0,14.679,9.233,0.614,0.0,0.0,0.0,0.0,3553.4,5042.5,5042.5,23.32,19.027,0.0,3.612,3.669,0.517,7.595,0.642,10.185,-12.61,0.0,0.0,0.0,8.335,-0.059,4.795,0.0,0.735,0.0,4.996,-8.905,-2.499,0.0,-0.174,-0.487,-0.056,2.71,-0.032,-1.435,11.744,0.0,0.0,0.0,-6.317,-0.055,-1.156,-3.001,-0.172,0.0,3.375,7.873,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-30-mins.xml,58.731,58.731,36.143,36.143,22.589,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.464,0.866,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.153,0.0,14.554,9.233,0.614,0.0,0.0,0.0,0.0,2157.1,3815.6,3815.6,23.224,19.052,0.0,3.594,3.661,0.516,7.566,0.639,10.168,-12.631,0.0,0.0,0.0,8.321,-0.062,4.797,0.0,0.733,0.0,4.933,-8.905,-2.498,0.0,-0.143,-0.482,-0.055,2.704,-0.031,-1.434,11.747,0.0,0.0,0.0,-6.329,-0.058,-1.161,-3.05,-0.17,0.0,3.285,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base.xml,58.35,58.35,36.078,36.078,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.857,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.4,3422.4,23.037,19.123,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.811,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.172,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18786.0,5328.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -house001.xml,86.617,86.617,47.319,47.319,39.299,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,15.975,4.48,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,0.0,22.249,0.0,17.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,18.043,0.0,50.899,10.416,2.683,0.0,0.0,0.0,0.0,1853.7,6691.9,6691.9,37.693,42.618,0.495,1.999,7.301,0.422,0.0,0.982,7.164,-4.978,0.0,0.0,0.485,1.29,-0.286,4.306,0.0,5.162,0.0,3.187,-6.727,-2.915,0.559,1.959,3.663,0.303,0.0,0.228,1.549,11.487,0.0,0.0,0.516,6.78,-0.271,-0.434,-1.439,-0.779,0.0,10.916,11.623,4.465,2104.5,2144.0,14468.8,4385.1,0.0,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,116139.0,88227.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6852.0,3496.0,2156.0,1200.0 -house002.xml,67.376,67.376,40.154,40.154,27.221,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,13.992,3.481,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,0.0,13.734,0.0,13.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.134,0.0,40.207,7.526,2.892,0.0,0.0,0.0,0.0,1553.9,5106.8,5106.8,23.846,29.782,0.0,2.552,5.065,0.0,0.0,0.846,5.729,-4.087,0.0,0.0,0.0,1.809,-0.161,1.578,0.0,3.794,0.0,1.352,-5.039,-2.475,0.0,3.05,2.765,0.0,0.0,0.409,0.355,8.652,0.0,0.0,0.0,8.391,-0.154,-0.19,-1.077,-0.66,0.0,6.001,8.963,3.907,1610.9,1574.7,9989.5,3520.4,0.0,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,35206.0,14858.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3843.0,1748.0,1295.0,800.0 -house003.xml,68.756,68.756,40.506,40.506,28.25,0.0,0.0,0.0,0.0,0.0,0.0,0.168,0.0,0.0,13.083,3.644,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,0.0,15.003,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.163,0.0,42.007,7.526,2.693,0.0,0.0,0.0,0.0,1632.2,5481.4,5481.4,26.247,34.02,0.653,2.805,4.678,0.0,0.0,0.98,6.254,-3.935,0.0,0.0,0.0,1.138,-0.182,1.994,0.0,3.942,0.0,1.584,-5.248,-2.676,0.786,3.005,2.567,0.0,0.0,0.638,1.037,9.843,0.0,0.0,0.0,6.458,-0.174,-0.23,-1.127,-0.664,0.0,6.66,9.233,4.2,1610.9,1574.7,9989.4,3520.4,0.0,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,43299.0,18996.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3962.0,1748.0,1414.0,800.0 -house004.xml,136.358,136.358,75.984,75.984,60.374,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,29.48,9.637,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,0.0,44.221,0.0,16.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,35.761,0.0,109.342,8.985,3.514,0.0,0.0,0.0,158.0,3153.8,7371.6,7371.6,54.626,50.773,0.127,5.509,11.299,0.0,0.0,1.238,13.608,-5.79,0.0,0.0,0.0,3.105,-0.775,4.906,0.0,6.221,0.0,7.03,-7.176,-3.849,0.197,6.642,11.609,0.0,0.0,0.508,7.397,17.81,0.0,0.0,0.0,18.772,-0.762,0.994,0.0,1.799,0.0,21.798,15.181,7.713,1857.7,1859.3,12229.1,3984.0,0.0,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,54843.0,19357.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4607.0,1282.0,2325.0,1000.0 -house005.xml,95.311,95.311,53.927,53.927,41.384,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,18.773,5.3,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,0.0,26.179,0.0,15.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,21.231,0.0,61.39,8.985,2.734,0.0,0.0,0.0,3.0,2076.1,7519.0,7519.0,46.008,52.145,0.0,3.052,8.218,0.27,0.0,1.36,9.437,-6.696,0.0,0.0,0.398,1.313,-0.377,5.059,0.0,5.093,0.0,4.317,-6.822,-3.611,0.0,2.935,4.202,0.209,0.0,0.265,2.282,15.363,0.0,0.0,0.41,7.447,-0.36,-0.512,-1.821,-0.766,0.0,14.906,11.562,5.544,1857.7,1859.4,12229.0,3983.9,0.0,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,67640.0,32901.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6846.0,3496.0,2350.0,1000.0 -house006.xml,139.162,139.162,31.873,31.873,107.289,0.0,0.0,0.0,0.0,0.0,0.0,1.869,0.0,0.0,3.036,0.355,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,0.0,81.443,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,78.407,0.0,8.172,13.084,3.277,0.0,0.0,0.0,0.0,1987.1,2467.4,2467.4,40.487,14.968,0.0,4.264,22.276,1.991,37.138,1.864,17.625,-9.441,0.0,0.0,0.0,9.272,-0.322,9.523,0.0,4.37,0.0,0.0,-14.532,-6.438,0.0,0.172,-0.806,-0.046,2.784,-0.086,-0.558,4.335,0.0,0.0,0.0,-3.919,-0.321,-0.518,-0.614,-0.076,0.0,0.0,5.683,2.249,1610.9,1574.7,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,43332.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5257.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1565.0,0.0,765.0,800.0 -house007.xml,138.686,138.686,34.0,34.0,104.686,0.0,0.0,0.0,0.0,0.0,0.0,1.629,0.0,0.0,2.611,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,0.0,75.019,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,70.638,0.0,6.039,15.632,3.268,0.0,0.0,0.0,0.0,2191.9,2568.2,2568.2,39.657,13.514,0.0,4.727,23.696,4.449,10.124,1.499,18.834,-9.346,0.0,0.0,0.076,11.539,-0.372,6.119,0.0,20.826,0.0,2.861,-17.172,-7.734,0.0,0.2,-0.721,-0.058,0.561,-0.047,-0.336,4.603,0.0,0.0,-0.009,-4.044,-0.368,-0.193,-0.584,-1.905,0.0,0.108,6.368,2.565,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,43725.0,5468.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12280.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2143.0,403.0,740.0,1000.0 -house008.xml,183.036,183.036,39.382,39.382,143.653,0.0,0.0,0.0,0.0,0.0,0.0,2.475,0.0,0.0,3.771,0.574,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,0.0,110.218,0.0,26.374,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,103.856,0.0,10.907,18.129,3.213,0.0,0.0,0.0,0.0,2472.8,3432.3,3432.3,54.881,20.574,0.0,7.246,27.501,4.711,24.32,1.195,21.291,-7.816,0.0,0.0,1.287,17.853,-0.393,18.327,0.0,6.389,0.0,7.877,-18.61,-8.163,0.0,0.292,-1.156,-0.067,1.6,-0.09,-0.438,5.412,0.0,0.0,-0.112,-2.804,-0.393,-0.996,-0.687,-0.286,0.0,0.567,7.342,2.843,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,62680.0,10617.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18541.0,2433.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2478.0,157.0,1121.0,1200.0 -house009.xml,153.799,153.799,34.132,34.132,119.668,0.0,0.0,0.0,0.0,0.0,0.0,2.021,0.0,0.0,2.511,0.314,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,0.0,89.994,0.0,23.288,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.798,0.0,5.74,15.632,3.274,0.0,0.0,0.0,0.0,2226.2,2689.0,2689.0,44.133,14.398,0.0,5.112,28.422,4.319,13.052,2.253,18.889,-8.18,0.0,0.0,0.266,15.624,-0.398,8.733,0.0,21.44,0.0,0.0,-17.429,-7.833,0.0,0.24,-0.73,-0.035,0.709,-0.078,-0.206,4.6,0.0,0.0,-0.029,-4.154,-0.395,-0.262,-0.531,-1.82,0.0,0.0,6.091,2.438,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1792.0,0.0,792.0,1000.0 -house010.xml,153.517,153.517,37.702,37.702,115.815,0.0,0.0,0.0,0.0,0.0,0.0,1.85,0.0,0.0,3.038,0.294,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,0.0,82.38,0.0,26.374,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,77.628,0.0,7.883,18.129,3.212,0.0,0.0,0.0,0.0,2408.6,2877.9,2877.9,45.323,15.822,0.876,4.938,25.515,4.913,9.775,1.266,22.965,-9.184,0.0,0.0,0.928,11.368,-0.399,19.567,0.0,6.404,0.0,4.878,-18.629,-8.154,0.022,0.21,-0.793,-0.102,0.536,-0.077,-0.783,5.164,0.0,0.0,-0.052,-4.233,-0.395,-1.033,-0.682,-0.272,0.0,0.356,7.304,2.833,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10515.0,14180.0,1890.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2618.0,261.0,1157.0,1200.0 -house011.xml,44.814,44.814,44.814,44.814,0.0,0.0,0.0,0.0,0.0,0.0,7.074,0.655,0.095,0.005,7.99,2.359,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,0.0,14.791,0.1,26.03,9.325,1.123,0.0,0.0,0.0,351.0,4986.1,3124.7,4986.1,18.276,15.746,0.0,2.688,5.4,0.0,0.0,1.633,3.458,-3.183,0.0,0.0,1.874,0.0,-0.392,1.843,0.0,5.4,0.0,4.136,-5.992,-2.075,0.0,1.637,1.117,0.0,0.0,0.144,0.29,5.664,0.0,0.0,0.729,0.0,-0.391,-0.203,-0.181,-1.032,0.0,6.676,8.89,2.83,0.0,1859.4,12951.3,4219.2,0.0,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,21011.0,7840.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3063.0,462.0,1601.0,1000.0 -house012.xml,35.612,35.612,35.612,35.612,0.0,0.0,0.0,0.0,0.0,0.0,4.758,0.243,0.0,0.0,5.607,1.543,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,0.0,9.956,0.0,16.415,7.782,1.158,0.0,0.0,0.0,0.0,3031.6,2594.9,3031.6,11.058,11.216,0.0,2.374,4.758,0.0,0.0,0.627,2.68,-1.832,0.0,0.0,2.039,0.0,-0.25,1.644,0.0,4.356,0.0,0.318,-4.814,-1.943,0.0,1.715,1.079,0.0,0.0,-0.037,0.46,3.51,0.0,0.0,1.564,0.0,-0.25,-0.164,-0.165,-0.748,0.0,0.277,6.81,2.435,0.0,1574.7,10579.4,3728.3,0.0,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,11889.0,638.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2496.0,370.0,1326.0,800.0 -house013.xml,30.613,30.613,30.613,30.613,0.0,0.0,0.0,0.0,0.0,0.0,2.82,0.151,0.0,0.0,3.883,1.315,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,0.0,5.976,0.0,15.075,6.85,0.853,0.0,0.0,0.0,0.0,2658.8,2142.7,2658.8,9.739,9.617,0.0,1.625,2.851,0.0,0.0,0.652,2.619,-2.12,0.0,0.0,2.086,0.0,-0.28,1.517,0.0,1.059,0.0,1.11,-3.658,-1.505,0.0,1.07,0.367,0.0,0.0,-0.095,0.206,3.809,0.0,0.0,0.527,0.0,-0.28,-0.258,-0.197,-0.284,0.0,1.461,6.382,2.461,1364.1,1290.1,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,12463.0,3002.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9770.0,1072.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house014.xml,31.643,31.643,31.643,31.643,0.0,0.0,0.0,0.0,0.0,0.0,3.371,0.199,0.004,0.0,4.252,1.437,7.45,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,0.0,7.454,0.004,16.612,6.85,0.597,0.0,0.0,0.0,0.0,2912.2,2163.5,2912.2,10.982,10.462,0.0,1.7,3.69,0.0,0.0,0.583,3.021,-2.479,0.0,0.0,2.201,0.0,-0.243,1.724,0.0,1.115,0.0,1.48,-3.756,-1.617,0.0,1.129,0.535,0.0,0.0,-0.071,0.531,4.749,0.0,0.0,0.599,0.0,-0.242,-0.254,-0.225,-0.263,0.0,1.673,6.113,2.436,1364.1,1290.1,8207.2,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13627.0,3068.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,10994.0,1065.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1681.0,312.0,769.0,600.0 -house015.xml,30.613,30.613,30.613,30.613,0.0,0.0,0.0,0.0,0.0,0.0,2.82,0.151,0.0,0.0,3.883,1.315,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,0.0,5.976,0.0,15.075,6.85,0.853,0.0,0.0,0.0,0.0,2658.8,2142.7,2658.8,9.739,9.617,0.0,1.625,2.851,0.0,0.0,0.652,2.619,-2.12,0.0,0.0,2.086,0.0,-0.28,1.517,0.0,1.059,0.0,1.11,-3.658,-1.505,0.0,1.07,0.367,0.0,0.0,-0.095,0.206,3.809,0.0,0.0,0.527,0.0,-0.28,-0.258,-0.197,-0.284,0.0,1.461,6.382,2.461,1364.1,1290.1,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,12463.0,3002.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9770.0,1072.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1617.0,312.0,705.0,600.0 -house016.xml,61.293,61.293,39.792,39.792,0.0,0.0,21.501,0.0,0.0,0.0,7.654,0.545,0.163,0.004,2.949,0.997,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.313,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.695,0.167,11.49,10.478,0.0,0.0,0.0,1.0,13.0,7481.2,3535.6,7481.2,43.061,18.719,0.0,4.421,10.834,0.618,5.69,0.298,7.711,-7.897,0.0,0.0,0.0,6.738,-0.022,5.729,0.0,3.867,0.0,0.0,-8.639,-4.771,0.0,-0.336,-0.824,-0.019,2.932,-0.046,-1.012,11.998,0.0,0.0,0.0,-8.779,-0.024,-1.359,-1.156,-1.008,0.0,0.0,7.776,3.835,1759.0,1745.5,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1990.0,0.0,1190.0,800.0 -house017.xml,91.785,91.785,27.882,27.882,63.904,0.0,0.0,0.0,0.0,0.0,0.0,1.281,0.0,0.0,4.468,0.634,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.801,0.0,18.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,41.962,0.0,10.102,11.141,3.418,0.0,0.0,151.0,102.0,1729.7,3470.7,3470.7,60.335,19.014,0.0,5.432,14.64,0.652,10.656,0.362,7.456,-9.321,0.0,0.0,0.719,4.356,0.006,19.789,0.0,1.22,0.0,0.0,-11.23,-2.985,0.0,-0.144,-0.973,-0.02,4.679,-0.06,-1.169,7.472,0.0,0.0,-0.009,-4.801,0.008,-2.769,-0.714,-0.258,0.0,0.0,7.225,1.685,1778.7,1768.3,13969.3,4663.9,0.0,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3534.0,0.0,2534.0,1000.0 -house018.xml,36.119,36.119,36.119,36.119,0.0,0.0,0.0,0.0,0.0,0.0,4.633,0.203,0.0,0.0,2.581,0.793,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.67,0.0,9.436,7.32,0.552,0.0,0.0,0.0,0.0,4666.7,2682.0,4666.7,19.963,10.875,0.0,4.564,4.623,0.0,0.0,0.276,3.696,-3.618,0.0,0.0,2.171,0.0,-0.019,2.615,0.0,2.082,0.0,1.828,-7.059,-2.596,0.0,-0.527,-0.811,0.0,0.0,-0.095,-1.34,4.337,0.0,0.0,-0.013,0.0,-0.014,-0.774,-0.637,-0.75,0.0,1.262,6.864,2.164,1341.9,1264.5,9054.5,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,18202.0,4811.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,11169.0,851.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2619.0,1108.0,711.0,800.0 -house019.xml,130.209,130.209,51.671,51.671,78.537,0.0,0.0,0.0,0.0,0.0,0.0,1.13,0.0,0.0,11.054,3.708,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.763,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.653,0.0,43.614,7.894,1.826,0.0,0.0,193.0,269.0,2783.7,6462.7,6641.8,84.762,45.693,0.0,11.38,44.759,0.65,5.035,1.92,16.406,-14.184,0.0,0.0,0.0,5.96,-0.034,8.884,0.0,1.87,0.0,0.0,-10.303,-5.203,0.0,2.977,10.122,0.15,2.881,0.272,1.601,17.047,0.0,0.0,0.0,-4.234,-0.021,-0.157,-0.149,0.025,0.0,0.0,8.091,3.72,1341.9,1264.5,7836.1,3009.8,0.0,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1990.0,0.0,1190.0,800.0 -house020.xml,117.148,117.148,56.409,56.409,0.0,0.0,60.739,0.0,0.0,0.0,0.0,0.825,0.0,0.0,12.86,2.828,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,38.597,0.0,18.911,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.553,0.0,33.301,10.477,4.224,0.0,0.0,0.0,0.0,2703.5,6567.9,6567.9,31.201,31.945,0.908,11.003,10.558,1.131,9.759,0.631,15.146,-15.17,0.0,0.0,0.0,7.469,-0.042,15.223,0.0,0.837,0.0,0.0,-15.243,-7.022,0.245,0.175,0.235,0.059,6.425,0.015,-2.454,20.699,0.0,0.0,0.0,-6.637,-0.032,-2.669,-1.637,-0.195,0.0,0.0,13.51,5.728,1759.0,1745.5,13595.6,4567.6,0.0,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3128.0,0.0,2328.0,800.0 -house021.xml,156.88,156.88,48.118,48.118,108.762,0.0,0.0,0.0,0.0,0.0,0.0,2.008,0.0,0.0,8.074,1.488,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.716,0.0,19.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.771,0.0,17.784,10.989,3.817,0.0,0.0,0.0,0.0,2797.2,4672.2,4672.2,81.253,23.158,0.0,8.265,27.044,2.42,9.184,0.859,21.821,-20.282,0.0,0.0,1.093,9.427,-0.32,26.626,0.0,2.489,0.0,6.098,-14.701,-6.87,0.0,0.047,-0.747,0.016,2.241,-0.09,-2.214,14.693,0.0,0.0,0.041,-6.015,-0.297,-2.377,-0.835,-0.387,0.0,1.235,8.849,3.77,1759.0,1745.5,13752.0,4620.1,0.0,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28789.0,5962.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4904.0,1133.0,2771.0,1000.0 -house022.xml,137.924,137.924,48.711,48.711,0.0,89.213,0.0,0.0,0.0,0.0,0.0,2.219,0.0,0.0,8.679,0.907,12.471,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,89.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,73.231,0.0,18.941,10.989,1.48,0.0,0.0,184.0,120.0,2975.8,5338.4,5338.4,90.751,27.308,3.684,3.759,20.623,0.0,0.0,1.487,16.606,-13.135,0.0,0.0,14.625,0.0,-0.265,37.691,0.0,1.156,0.0,0.0,-9.557,-4.288,1.107,0.17,0.612,0.0,0.0,-0.121,-1.433,11.452,0.0,0.0,2.063,0.0,-0.256,-2.686,-0.616,-0.07,0.0,0.0,6.162,2.402,1759.0,1745.5,13751.5,4619.9,0.0,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5443.0,0.0,4643.0,800.0 -house023.xml,138.0,138.0,62.852,62.852,0.0,75.148,0.0,0.0,0.0,0.0,0.0,1.893,0.0,0.0,5.639,0.785,19.997,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,75.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.739,0.0,16.259,17.1,2.769,0.0,0.0,0.0,0.0,4239.1,4592.7,4592.7,62.493,20.564,0.0,10.208,21.486,1.2,16.451,0.85,9.985,-7.811,0.0,0.0,0.0,6.173,-0.032,23.704,0.0,1.638,0.0,0.0,-15.571,-5.906,0.0,-0.191,-1.022,-0.014,5.967,-0.114,-1.042,9.141,0.0,0.0,0.0,-6.007,-0.009,-2.68,-0.761,-0.315,0.0,0.0,10.086,3.313,2176.1,2226.5,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4273.0,0.0,3273.0,1000.0 -house024.xml,129.339,129.339,43.898,43.898,0.0,85.441,0.0,0.0,0.0,0.0,0.0,2.125,0.0,0.0,5.4,0.496,16.754,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.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,70.439,0.0,15.703,14.653,2.088,0.0,0.0,0.0,0.0,2751.8,3588.0,3620.1,72.051,17.429,0.0,7.179,30.083,0.0,0.0,0.682,7.227,-7.897,0.0,0.0,5.166,0.0,-0.106,25.398,0.0,1.837,0.0,11.755,-8.64,-2.539,0.0,0.586,1.249,0.0,0.0,-0.04,-0.296,6.002,0.0,0.0,0.521,0.0,-0.099,-1.461,-0.332,-0.196,0.0,2.935,5.524,1.377,2176.1,2226.5,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,60193.0,12383.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,22068.0,1589.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7066.0,2630.0,3636.0,800.0 -house025.xml,104.091,104.091,69.05,69.05,35.041,0.0,0.0,0.0,0.0,0.0,6.397,1.052,0.0,0.0,18.525,2.688,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.041,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.819,0.0,47.617,8.321,3.83,0.0,0.0,0.0,0.0,4278.9,6845.8,6845.8,36.323,32.839,0.0,3.376,17.544,0.0,0.0,2.164,7.392,-5.637,0.0,0.0,6.835,0.0,-1.322,13.718,0.0,0.41,0.0,4.901,-8.606,-4.03,0.0,1.088,5.672,0.0,0.0,0.437,1.931,12.471,0.0,0.0,5.632,0.0,-1.32,-0.743,-0.165,-0.005,0.0,6.15,11.506,5.233,1341.9,1264.5,3496.9,1343.1,0.0,158000.0,81000.0,33000.0,24.62,91.58,54301.0,20009.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,32309.0,8863.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9606.0,5960.0,2846.0,800.0 -house026.xml,56.708,56.708,24.856,24.856,31.851,0.0,0.0,0.0,0.0,0.0,0.0,0.045,0.0,0.0,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,0.0,17.715,0.0,14.136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.575,0.0,0.0,8.607,2.074,0.0,0.0,0.0,0.0,1553.8,1299.3,1553.8,17.37,0.0,0.0,1.773,6.877,0.233,0.0,0.198,4.408,-2.924,0.0,0.0,7.11,0.0,-0.05,2.498,0.0,3.138,0.0,0.0,-6.701,-3.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1295.2,1282.5,8579.2,3023.4,0.0,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2342.0,0.0,1542.0,800.0 -house027.xml,72.685,72.685,31.808,31.808,40.877,0.0,0.0,0.0,0.0,0.0,0.0,0.436,0.0,0.0,7.941,1.026,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,0.0,19.929,0.0,17.879,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.773,0.0,23.271,8.564,5.23,0.0,0.0,0.0,0.0,1579.5,3695.5,3695.5,24.05,23.373,0.719,1.784,7.914,0.454,0.0,0.593,4.982,-3.982,0.0,0.0,0.383,3.36,-0.138,1.749,0.0,10.447,0.0,2.033,-8.791,-2.847,0.489,1.123,0.656,0.056,0.0,-0.113,0.132,5.429,0.0,0.0,0.095,3.842,-0.139,-0.365,-0.97,-3.474,0.0,2.62,10.726,3.101,1610.9,1574.7,10579.5,3728.4,0.0,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,19081.0,3675.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5491.0,1756.0,2936.0,800.0 -house028.xml,67.95,67.95,30.057,30.057,37.892,0.0,0.0,0.0,0.0,0.0,0.0,0.293,0.0,0.0,7.431,1.533,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,0.0,13.392,0.0,18.114,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.616,0.0,23.425,10.226,3.615,0.0,0.0,0.0,0.0,1526.4,3542.5,3542.5,20.241,23.101,0.776,1.677,7.127,0.354,0.0,0.441,4.982,-3.806,0.0,0.0,0.244,2.53,-0.047,4.065,0.0,4.489,0.0,1.619,-9.073,-2.9,0.604,1.216,-0.632,0.097,0.0,0.058,0.062,6.21,0.0,0.0,0.06,1.836,-0.048,-1.088,-1.222,-1.651,0.0,3.126,11.531,3.238,1857.7,1859.4,12951.6,4219.3,0.0,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,19786.0,3912.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5044.0,2021.0,2023.0,1000.0 -house029.xml,77.463,77.463,29.992,29.992,47.471,0.0,0.0,0.0,0.0,0.0,0.0,0.7,0.0,0.0,6.132,0.863,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,0.0,31.807,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,31.538,0.0,13.477,9.614,0.0,0.0,0.0,0.0,0.0,1614.5,3007.0,3007.0,28.321,13.898,0.0,3.365,14.612,0.393,0.0,0.296,6.291,-6.007,0.0,0.0,6.845,0.0,-0.086,7.294,0.0,7.308,0.0,3.17,-8.385,-3.714,0.0,1.128,-0.713,0.01,0.0,0.069,0.462,5.276,0.0,0.0,-0.446,0.0,-0.081,-0.802,-1.053,-1.528,0.0,1.251,7.159,2.829,1610.9,1574.7,11033.0,3888.2,0.0,77000.0,36000.0,0.0,17.24,91.22,29334.0,2271.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,16288.0,-143.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3897.0,902.0,2195.0,800.0 -house030.xml,58.703,58.703,17.191,17.191,0.0,0.0,41.512,0.0,0.0,0.0,0.0,0.056,0.0,0.0,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,0.0,23.186,0.0,13.289,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.494,0.0,0.0,7.715,2.206,0.0,0.0,0.0,0.0,1133.9,975.2,1133.9,15.992,0.0,0.0,1.673,10.157,0.486,1.1,1.039,5.182,-3.325,0.0,0.0,0.0,3.437,-0.041,2.741,0.0,5.693,0.0,0.0,-7.831,-2.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,1066.1,992.7,6763.6,2580.9,0.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1712.0,0.0,1112.0,600.0 -house031.xml,233.805,233.805,50.528,50.528,183.277,0.0,0.0,0.0,0.0,0.0,0.0,3.401,0.0,0.0,13.022,3.414,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.786,0.0,29.094,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.895,0.0,39.786,17.932,5.234,0.0,0.0,48.0,115.0,3051.0,7556.2,7798.1,125.482,49.321,0.0,14.456,42.005,1.048,6.639,1.393,20.051,-16.712,0.0,0.0,1.979,6.048,-0.849,56.89,0.0,0.654,0.0,9.746,-17.118,-6.505,0.0,2.239,5.111,0.174,2.817,0.114,0.456,16.998,0.0,0.0,0.223,-3.626,-0.816,-1.933,-0.385,-0.01,0.0,3.089,11.057,3.856,2593.2,2707.5,18307.9,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83012.0,13662.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44183.0,9751.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8612.0,1699.0,5513.0,1400.0 -house032.xml,101.487,101.487,15.551,15.551,85.936,0.0,0.0,0.0,0.0,0.0,0.0,1.509,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.722,0.0,16.238,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.775,0.0,0.0,8.002,4.93,0.0,0.0,153.0,0.0,1348.0,804.3,1348.0,50.432,0.0,0.0,10.402,8.755,1.921,20.407,1.411,8.355,-9.322,0.0,0.0,0.0,4.519,0.02,14.968,0.0,0.624,0.0,0.0,-8.947,-3.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,1341.9,1264.5,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2480.0,0.0,1480.0,1000.0 -house033.xml,107.125,107.125,14.692,14.692,0.0,92.432,0.0,0.0,0.0,0.0,0.0,0.315,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.751,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.86,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.4,771.3,1018.4,48.454,0.0,0.0,19.111,14.553,0.0,0.0,1.0,11.106,-7.521,0.0,0.0,14.621,0.0,-0.352,18.58,0.0,0.792,0.0,0.0,-5.002,-3.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,924.8,0.0,3905.6,1188.1,0.0,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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2665.0,0.0,1665.0,1000.0 -house034.xml,153.733,153.733,43.213,43.213,0.0,0.0,110.52,0.0,0.0,0.0,0.0,0.082,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,89.188,0.0,21.331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.081,0.0,0.0,11.573,5.411,0.0,0.0,0.0,0.0,2949.8,2213.7,2949.8,86.274,0.0,0.0,8.867,26.927,0.0,2.855,1.897,26.618,-26.196,0.0,0.0,10.921,2.675,0.066,34.744,0.0,0.571,0.0,0.0,-16.188,-10.525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1759.0,1745.5,10287.1,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4947.0,0.0,3947.0,1000.0 -house035.xml,63.626,63.626,17.453,17.453,46.173,0.0,0.0,0.0,0.0,0.0,0.0,0.814,0.0,0.0,1.677,0.112,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.705,0.0,9.633,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.855,0.0,2.509,3.92,3.827,0.0,0.0,102.0,0.0,1326.5,1898.9,1898.9,39.115,9.642,0.366,6.131,10.828,0.0,0.0,0.536,6.094,-7.321,0.0,0.0,7.672,0.0,0.004,13.59,0.0,0.49,0.0,0.0,-7.871,-3.466,0.062,-0.545,-1.527,0.0,0.0,-0.08,-1.407,7.072,0.0,0.0,-4.349,0.0,0.009,-2.704,-0.706,-0.127,0.0,0.0,4.962,1.972,924.8,783.5,4210.1,1280.7,0.0,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2958.0,0.0,2158.0,800.0 -house036.xml,82.453,82.453,25.763,25.763,56.69,0.0,0.0,0.0,0.0,0.0,0.0,0.975,0.0,0.0,5.694,0.997,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.212,0.0,17.478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.228,0.0,14.163,8.219,5.844,0.0,0.0,106.0,124.0,1462.0,3174.5,3174.5,31.777,16.794,5.509,2.255,3.97,0.0,0.0,1.823,6.801,-7.195,0.0,0.0,20.974,0.0,-0.007,7.401,0.0,0.554,0.0,0.0,-6.439,-3.437,1.613,0.139,0.0,0.0,0.0,-0.21,-0.869,5.705,0.0,0.0,2.519,0.0,-0.006,-0.73,-0.392,-0.059,0.0,0.0,4.34,2.012,1341.9,1264.5,6447.0,2476.3,0.0,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1673.0,0.0,1073.0,600.0 -house037.xml,88.391,88.391,21.781,21.781,0.0,66.61,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,50.453,0.0,16.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,37.433,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1456.9,1117.9,1456.9,29.69,0.0,0.0,16.699,11.313,0.0,0.0,1.562,7.649,-10.338,0.0,0.0,6.474,0.0,-0.325,14.697,0.0,0.46,0.0,0.0,-6.828,-3.864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,8324.2,3197.3,0.0,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3267.0,0.0,2467.0,800.0 -house038.xml,125.43,125.43,51.181,51.181,74.249,0.0,0.0,0.0,0.0,0.0,0.0,1.03,0.0,0.0,13.725,2.677,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,50.217,0.0,24.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,40.172,0.0,30.931,14.715,4.601,0.0,0.0,0.0,223.0,2455.5,5580.8,5639.6,48.31,27.298,0.0,3.652,14.88,0.651,4.465,0.809,12.429,-10.431,0.0,0.0,1.862,2.347,-0.043,22.465,0.0,0.595,0.0,0.0,-10.145,-3.873,0.0,0.845,2.598,0.14,2.252,0.018,0.918,12.753,0.0,0.0,0.337,-0.579,-0.032,-0.576,-0.139,0.005,0.0,0.0,8.63,3.035,2176.1,2226.5,14642.0,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3750.0,0.0,2350.0,1400.0 -house039.xml,99.857,99.857,24.033,24.033,75.825,0.0,0.0,0.0,0.0,0.0,0.0,0.146,0.0,0.0,0.0,0.0,5.141,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.138,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.881,0.0,0.0,14.272,1.132,0.0,0.0,0.0,0.0,1709.3,1461.4,1709.3,50.008,0.0,0.0,14.208,5.385,0.0,0.0,2.509,16.124,-13.538,0.0,0.0,13.991,0.0,-0.042,13.242,0.0,0.556,0.0,0.0,-4.143,-2.844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2176.1,2226.5,17537.7,5211.7,0.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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3171.0,0.0,2371.0,800.0 -house040.xml,101.583,101.583,23.52,23.52,78.063,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,7.373,0.0,0.651,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.704,0.0,17.359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.188,0.0,0.0,8.002,5.509,0.0,0.0,0.0,0.0,1751.6,1153.8,1751.6,62.322,0.0,11.265,5.616,22.28,0.0,4.302,2.094,12.881,-12.508,0.0,0.0,2.036,3.382,-0.096,19.721,0.0,0.612,0.0,0.0,-10.087,-4.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3330.0,0.0,2530.0,800.0 -house041.xml,258.918,258.918,47.054,47.054,211.864,0.0,0.0,0.0,0.0,0.0,0.0,4.162,0.0,0.0,2.508,0.245,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,0.0,185.31,0.0,26.555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174.611,0.0,4.466,15.632,5.04,0.0,0.0,105.0,0.0,3249.4,4610.9,4610.9,77.757,23.918,0.0,11.261,45.049,3.518,35.041,3.141,38.863,-20.773,0.0,0.0,4.608,17.348,-0.578,64.096,0.0,2.766,0.0,0.0,-20.295,-10.998,0.0,0.122,-2.113,-0.121,1.638,-0.218,-2.819,9.454,0.0,0.0,-0.354,-5.262,-0.575,-3.419,-0.97,-0.253,0.0,0.0,6.553,2.945,1857.7,1859.4,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2261.0,0.0,1261.0,1000.0 -house042.xml,231.047,231.047,39.979,39.979,191.067,0.0,0.0,0.0,0.0,0.0,0.0,3.905,0.0,0.0,1.697,0.064,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,0.0,166.624,0.0,24.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,163.83,0.0,2.581,15.632,3.23,0.0,0.0,0.0,0.0,2758.2,3044.8,3044.8,88.115,19.036,0.0,9.174,39.854,4.013,43.723,2.65,34.226,-19.416,0.0,0.0,2.449,14.521,-0.354,56.232,0.0,1.751,0.0,0.0,-19.239,-7.617,0.0,0.218,-1.429,-0.057,2.845,-0.146,-2.942,5.8,0.0,0.0,-0.261,-4.927,-0.35,-2.751,-0.582,-0.14,0.0,0.0,5.472,1.922,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2109.0,0.0,1109.0,1000.0 -house043.xml,158.433,158.433,29.934,29.934,128.499,0.0,0.0,0.0,0.0,0.0,0.0,2.465,0.0,0.0,1.914,0.107,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,0.0,108.596,0.0,19.903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.438,0.0,2.697,13.084,2.209,0.0,0.0,0.0,0.0,1987.8,2760.3,2760.3,54.538,13.381,0.0,3.168,23.196,2.294,33.783,5.576,22.938,-10.008,0.0,0.0,0.549,9.916,-0.296,28.945,0.0,1.578,0.0,0.0,-14.399,-5.171,0.0,0.043,-0.806,-0.089,1.681,-0.346,-2.008,4.659,0.0,0.0,-0.068,-3.583,-0.295,-1.563,-0.499,-0.142,0.0,0.0,4.425,1.391,1610.9,1574.7,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1455.0,0.0,655.0,800.0 -house044.xml,226.525,226.525,43.421,43.421,183.104,0.0,0.0,0.0,0.0,0.0,0.0,4.701,0.0,0.0,2.001,0.182,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,0.0,160.533,0.0,22.572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.152,0.0,3.422,13.084,4.455,0.0,0.0,0.0,0.0,3092.7,3545.9,3545.9,80.961,18.73,4.37,6.899,36.505,9.235,19.259,2.757,18.188,-11.677,0.0,0.0,12.916,15.073,-0.492,61.922,0.0,1.436,0.0,0.0,-18.082,-10.281,0.25,0.46,-1.344,-0.105,1.199,-0.116,-0.764,5.624,0.0,0.0,-1.119,-4.82,-0.489,-2.642,-0.448,-0.098,0.0,0.0,5.246,2.674,1610.9,1574.7,12168.1,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1980.0,0.0,1180.0,800.0 -house045.xml,152.395,152.395,35.192,35.192,117.204,0.0,0.0,0.0,0.0,0.0,0.0,2.775,0.0,0.0,2.364,0.293,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,0.0,94.75,0.0,22.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.031,0.0,3.955,13.084,4.364,0.0,0.0,0.0,0.0,2316.2,3025.6,3025.6,47.196,12.955,3.573,3.08,15.119,2.29,32.747,1.135,18.522,-12.215,1.044,-0.408,0.086,12.611,-0.249,20.639,0.0,10.932,0.0,0.0,-14.635,-7.011,-0.01,0.008,-1.075,-0.123,0.921,-0.085,-1.422,6.252,-0.067,0.396,-0.013,-4.06,-0.248,-1.175,-0.888,-1.254,0.0,0.0,4.853,2.054,1610.9,1574.7,12168.2,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1422.0,0.0,622.0,800.0 -house046.xml,25.009,25.009,25.009,25.009,0.0,0.0,0.0,0.0,0.0,0.0,5.323,0.442,0.265,0.009,3.752,1.043,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,0.0,13.797,0.274,12.909,4.305,0.617,0.0,0.0,0.0,0.0,3837.5,2404.7,3837.5,16.151,13.164,0.0,2.519,3.833,0.0,0.0,0.327,2.231,-1.648,0.0,0.0,-0.155,0.0,-0.301,7.957,0.0,0.377,0.0,2.742,-3.562,-0.481,0.0,1.265,2.525,0.0,0.0,0.024,0.772,2.453,0.0,0.0,-0.154,0.0,-0.299,-0.473,-0.141,0.018,0.0,1.819,4.609,0.549,596.8,442.2,5543.5,2208.6,0.0,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,15039.0,3885.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3098.0,482.0,2216.0,400.0 -house047.xml,20.762,20.762,14.481,14.481,6.281,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.602,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,0.0,6.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.105,0.0,1.556,4.203,0.0,0.0,0.0,0.0,0.0,873.4,976.6,976.6,4.758,2.585,0.0,-0.001,0.775,0.127,0.0,0.0,1.726,-0.559,0.0,0.0,0.0,1.374,-0.01,1.573,0.0,4.971,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.1,0.032,0.0,0.0,-0.066,0.798,0.0,0.0,0.0,-1.125,-0.01,-0.23,-0.245,-1.381,0.0,-0.0,3.276,0.409,251.7,442.2,5772.6,1524.2,0.0,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,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1598.0,0.0,1198.0,400.0 -house048.xml,91.383,91.383,39.98,39.98,51.403,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,13.088,3.821,0.0,0.0,0.0,3.691,0.085,0.498,3.005,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,0.0,35.467,0.0,12.598,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.708,0.0,52.275,7.253,2.657,0.0,0.0,0.0,0.0,1538.7,5443.5,5443.5,42.003,33.474,1.023,2.631,12.005,0.0,0.0,0.803,4.609,-2.524,0.0,0.0,0.056,2.012,-0.563,6.783,0.0,4.188,0.0,6.411,-7.337,-1.493,1.319,0.986,9.248,0.0,0.0,0.562,3.662,4.27,0.0,0.0,0.074,10.05,-0.551,0.504,-0.456,1.906,0.0,7.079,11.653,2.198,130.3,817.7,11617.6,3495.1,0.0,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,30572.0,8416.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4485.0,1124.0,2361.0,1000.0 -house049.xml,33.117,33.117,29.621,29.621,3.497,0.0,0.0,0.0,0.0,0.0,7.736,0.047,0.0,0.0,5.052,0.124,2.632,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.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,6.898,0.0,30.734,4.262,1.318,0.0,0.0,0.0,38.0,4645.5,2196.0,4645.5,13.151,17.333,0.0,1.367,4.346,0.0,0.0,0.0,4.228,-5.799,0.0,0.0,0.0,1.257,-0.08,2.646,0.0,1.844,0.0,0.0,-2.544,-0.463,0.0,1.688,7.217,0.0,0.0,0.0,2.962,9.868,0.0,0.0,0.0,3.497,-0.08,-0.044,-2.986,0.698,0.0,0.0,7.434,1.011,728.6,567.4,7487.0,928.5,0.0,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,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 -house050.xml,51.771,51.771,22.077,22.077,29.694,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.0,0.0,2.085,0.381,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,0.0,15.778,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.412,0.0,5.89,8.572,0.0,0.0,0.0,0.0,0.0,1156.6,2822.0,2822.0,11.088,17.378,0.0,4.153,6.538,0.0,0.0,2.036,5.174,-4.145,0.0,0.0,4.905,0.0,-0.163,2.675,0.0,3.682,0.0,1.888,-10.201,-1.222,0.0,-0.32,-0.352,0.0,0.0,-0.402,0.241,4.091,0.0,0.0,-1.016,0.0,-0.162,-0.569,-1.254,-0.777,0.0,0.649,5.335,0.56,1689.0,437.0,10674.9,2994.2,0.0,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,18927.0,5163.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,721.0,0.0,-79.0,800.0 +base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.772,32.772,27.48,27.48,5.293,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.686,0.467,9.695,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,0.0,1.335,0.0,0.0,0.0,0.0,3.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,1.234,0.0,7.542,9.538,0.586,0.0,0.0,0.0,0.0,1721.3,2073.9,2073.9,4.164,7.879,0.0,-0.018,2.638,0.0,0.0,0.432,4.149,-3.079,0.0,0.0,-0.017,0.0,-0.36,1.775,0.0,1.925,0.0,0.0,-5.318,-0.929,0.0,-0.013,-0.774,0.0,0.0,-0.004,-0.66,5.123,0.0,0.0,-0.012,0.0,-0.352,-0.53,-1.154,-1.781,0.0,0.0,6.659,1.097,1354.8,997.6,11399.5,3156.5,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-mechvent.xml,30.993,30.993,27.332,27.332,3.661,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.584,0.44,9.704,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,0.0,3.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,3.389,0.0,7.249,9.538,0.596,0.0,0.0,0.0,0.0,1610.3,2059.7,2059.7,5.987,8.5,0.0,-0.016,2.682,0.0,0.0,0.398,4.038,-3.61,0.0,0.0,-0.018,0.0,-0.253,1.739,0.0,5.306,0.0,0.0,-5.801,-1.04,0.0,-0.011,-0.571,0.0,0.0,-0.008,-0.518,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.44,-1.153,-1.513,0.0,0.0,6.186,0.987,1354.8,997.6,11399.5,3156.5,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-pv.xml,27.009,2.561,26.38,1.932,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,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.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.538,0.576,0.0,0.0,0.0,0.0,1700.2,2103.3,2103.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.991,30.991,17.683,17.683,13.307,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,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.732,0.0,8.892,9.539,0.568,0.0,0.0,0.0,0.0,1059.0,1603.0,1603.0,3.646,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.662,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.037,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-water-heater.xml,29.895,29.895,16.587,16.587,13.307,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,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.732,0.0,8.892,9.539,0.568,0.0,0.0,0.0,0.0,1006.3,1550.3,1550.3,3.646,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.662,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.037,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily.xml,27.009,27.009,26.38,26.38,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,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.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.538,0.576,0.0,0.0,0.0,0.0,1700.2,2103.3,2103.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-dhw-combi-tankless-outside.xml,51.252,51.252,21.423,21.423,29.829,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.363,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,16.322,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,52.449,52.449,21.432,21.432,31.017,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.551,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.37,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1376.9,1017.3,1376.9,17.068,0.0,0.0,3.743,3.642,0.513,7.499,0.631,10.099,-12.691,0.0,0.0,0.0,8.145,-0.067,5.887,0.0,0.729,0.0,0.0,-8.581,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,32.191,32.191,32.191,32.191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.285,0.755,6.875,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.243,9.232,0.661,2.934,0.0,0.0,0.0,2070.1,2829.9,2829.9,0.0,19.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.094,-0.469,-0.052,2.672,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.192,-3.046,-0.166,0.0,3.723,8.627,2.036,1354.8,997.6,11412.2,2618.7,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.293,37.293,37.293,37.293,0.0,0.0,0.0,0.0,0.0,0.0,5.086,0.488,0.0,0.0,2.85,0.93,6.662,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.764,0.0,13.96,9.232,0.613,2.967,0.0,0.0,0.0,3279.7,2283.6,3279.7,21.513,16.341,0.0,3.603,3.642,0.513,7.524,0.63,10.096,-12.683,0.0,0.0,0.0,8.307,-0.064,4.805,0.0,0.729,0.0,3.414,-8.588,-2.499,0.0,-0.008,-0.463,-0.052,2.691,-0.026,-1.403,11.73,0.0,0.0,0.0,-6.344,-0.06,-1.169,-3.129,-0.165,0.0,2.065,8.497,2.01,1354.8,997.6,11413.8,2619.1,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,56.558,56.558,29.812,29.812,26.746,0.0,0.0,0.0,0.0,0.0,0.0,0.441,0.0,0.0,4.519,0.885,2.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.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,25.047,0.0,14.94,9.245,1.81,3.052,0.0,0.0,0.0,1879.5,3184.3,3184.3,23.504,19.709,0.0,3.524,3.636,0.512,7.506,0.627,10.063,-12.738,0.0,0.0,0.0,8.335,-0.05,4.794,0.0,0.727,0.0,5.655,-5.393,-2.509,0.0,-0.019,-0.419,-0.046,2.832,-0.016,-1.279,11.675,0.0,0.0,0.0,-6.108,-0.046,-1.121,-2.946,-0.156,0.0,3.252,7.632,2.001,1354.7,997.5,11382.2,2611.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,33.893,33.893,33.893,33.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.523,1.226,6.868,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.645,9.238,0.0,2.969,0.0,0.0,0.0,1942.3,3302.0,3302.0,0.0,19.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.071,-0.464,-0.051,2.687,-0.03,-1.43,11.85,0.0,0.0,0.0,-6.907,-0.064,-1.186,-3.016,-0.165,0.0,3.291,8.36,2.036,1354.8,997.6,11359.3,2606.6,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,31.448,31.448,31.448,31.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.336,6.871,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.033,9.232,0.661,2.941,0.0,0.0,0.0,2070.2,2556.1,2556.1,0.0,19.549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.135,-0.469,-0.052,2.673,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.915,-0.064,-1.192,-3.048,-0.166,0.0,4.556,8.629,2.036,1354.8,997.6,11411.2,2618.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,33.912,33.912,33.912,33.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.577,1.245,6.814,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.874,9.232,0.661,3.023,0.0,0.0,0.0,2070.2,3315.4,3315.4,0.0,19.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,0.0,-0.077,-0.469,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.192,-3.047,-0.166,0.0,3.328,8.651,2.036,1354.8,997.6,11415.6,2619.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,56.105,56.105,33.838,33.838,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,6.923,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,6.826,0.614,0.0,0.0,0.0,0.0,2106.6,3417.3,3417.3,23.034,19.121,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,10264.8,2355.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-detailed-setpoints.xml,54.025,54.025,21.421,21.421,32.604,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,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,0.0,19.115,0.0,13.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,0.0,9.256,2.363,0.0,0.0,0.0,0.0,1376.0,1017.3,1376.0,16.681,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.108,-12.669,0.0,0.0,0.0,8.131,-0.068,5.892,0.0,0.729,0.0,0.0,-9.89,-2.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,1161.6,860.6,9627.0,2209.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-dse.xml,58.992,58.992,21.458,21.458,37.534,0.0,0.0,0.0,0.0,0.0,0.0,0.182,0.0,0.0,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,0.0,23.952,0.0,13.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,16.167,0.0,0.0,9.261,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.134,-0.07,5.893,0.0,0.729,0.0,0.0,-9.854,-2.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,1071.4,776.1,9071.0,2081.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-outside.xml,55.589,55.589,21.423,21.423,34.166,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.363,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.322,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.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,1066.9,770.9,9019.2,2069.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-standbyloss.xml,54.406,54.406,21.42,21.42,32.986,0.0,0.0,0.0,0.0,0.0,0.0,0.143,0.0,0.0,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,0.0,18.906,0.0,14.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,15.947,0.0,0.0,9.263,2.691,0.0,0.0,0.0,0.0,1375.9,1017.3,1375.9,16.729,0.0,0.0,3.746,3.646,0.513,7.512,0.632,10.114,-12.663,0.0,0.0,0.0,8.131,-0.071,5.895,0.0,0.73,0.0,0.0,-10.091,-2.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,1065.3,770.2,9041.3,2074.7,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,46.239,46.239,21.429,21.429,24.81,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.068,0.0,4.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,16.952,0.0,0.0,9.239,0.784,0.0,6.005,0.0,0.0,1376.6,1017.3,1376.6,16.971,0.0,0.0,3.745,3.645,0.513,7.503,0.631,10.103,-12.69,0.0,0.0,0.0,8.144,-0.067,5.89,0.0,0.729,0.0,0.0,-9.024,-2.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,388.8,286.9,3208.7,736.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,54.166,54.166,21.422,21.422,32.744,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,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,0.0,19.161,0.0,13.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,16.167,0.0,0.0,9.261,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.134,-0.07,5.893,0.0,0.729,0.0,0.0,-9.854,-2.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,1071.4,776.1,9071.0,2081.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,58.233,58.233,35.752,35.752,22.481,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.387,0.851,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,0.0,22.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,21.053,0.0,14.342,9.233,0.295,0.0,0.0,0.0,0.0,2107.2,3415.8,3415.8,23.086,19.07,0.0,3.554,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.806,0.0,0.729,0.0,4.874,-8.733,-2.499,0.0,-0.054,-0.462,-0.052,2.693,-0.026,-1.399,11.73,0.0,0.0,0.0,-6.338,-0.06,-1.168,-3.09,-0.165,0.0,3.188,7.726,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,64.289,64.289,27.019,27.019,37.271,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.489,0.876,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,0.0,22.883,0.0,14.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.429,0.0,14.763,9.233,2.724,0.0,0.0,0.0,0.0,1464.4,3157.1,3157.1,23.58,19.541,0.0,3.552,3.645,0.513,7.531,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,5.889,0.0,0.729,0.0,4.96,-9.538,-2.499,0.0,-0.06,-0.465,-0.052,2.687,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.347,-0.058,-1.45,-3.116,-0.166,0.0,3.27,8.403,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,56.421,56.421,29.665,29.665,26.755,0.0,0.0,0.0,0.0,0.0,0.0,0.441,0.0,0.0,3.924,0.739,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,0.0,26.755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,12.496,9.287,1.303,0.0,0.0,0.0,0.0,1896.4,3566.8,3566.8,23.595,19.104,0.0,3.523,3.637,0.512,7.505,0.627,10.066,-12.738,0.0,0.0,0.0,8.335,-0.052,4.796,0.0,0.727,0.0,5.652,-5.373,-2.509,0.0,0.008,-0.41,-0.044,2.854,-0.014,-1.253,11.675,0.0,0.0,0.0,-6.075,-0.048,-1.112,-2.82,-0.154,0.0,2.831,5.404,2.0,1354.8,997.6,10983.2,2520.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-indirect.xml,53.964,53.964,21.423,21.423,32.541,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.381,0.0,13.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.357,0.0,0.0,9.26,1.911,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.825,0.0,0.0,3.746,3.646,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.138,-0.068,5.892,0.0,0.729,0.0,0.0,-9.652,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1075.2,777.5,9105.9,2089.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,57.977,57.977,35.711,35.711,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,8.838,0.614,0.0,0.0,0.0,0.0,2129.0,3421.2,3421.2,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,10829.5,2485.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-multiple.xml,46.898,46.898,23.372,23.372,23.526,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,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,0.0,19.587,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,16.539,0.0,0.0,9.225,2.814,0.0,5.996,0.0,0.0,2111.5,1815.9,2111.5,18.806,0.0,0.0,3.745,3.645,0.513,7.508,0.631,10.107,-12.678,0.0,0.0,0.0,8.141,-0.068,5.891,0.0,0.729,0.0,0.0,-9.468,-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,472.0,347.5,3998.3,917.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,46.91,46.91,24.677,24.677,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.38,0.85,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,0.0,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.822,0.0,14.413,0.0,0.0,0.0,0.0,0.0,0.0,1360.7,3014.2,3014.2,23.072,19.086,0.0,3.558,3.646,0.513,7.535,0.631,10.106,-12.683,0.0,0.0,0.0,8.322,-0.064,5.405,0.0,0.0,0.0,4.828,-8.819,-2.499,0.0,-0.059,-0.466,-0.052,2.68,-0.027,-1.413,11.73,0.0,0.0,0.0,-6.358,-0.06,-1.307,-3.107,0.0,0.0,3.187,7.842,2.011,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,58.294,58.294,36.028,36.028,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.174,0.614,0.0,0.0,0.0,0.0,2132.0,3422.5,3422.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,57.868,57.868,35.601,35.601,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.174,0.614,0.0,0.0,0.0,0.0,2117.0,3407.9,3407.9,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,73.243,73.243,50.977,50.977,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.268,0.614,0.0,0.0,0.0,0.0,3078.6,4011.8,4011.8,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,68.333,68.333,46.067,46.067,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.268,0.614,0.0,0.0,0.0,0.0,2760.3,3826.8,3826.8,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,73.243,73.243,50.977,50.977,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.268,0.614,0.0,0.0,0.0,0.0,3078.6,4011.8,4011.8,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,52.495,52.495,30.228,30.228,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.417,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.469,9.254,0.627,0.0,6.674,0.0,0.0,2090.5,3145.8,3145.8,23.031,19.137,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.208,7.886,2.011,1354.7,997.5,11215.4,2573.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,51.015,51.015,28.758,28.758,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.429,0.861,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.844,0.0,14.521,9.362,0.693,0.0,8.431,0.0,0.0,2086.3,3149.2,3149.2,23.031,19.166,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.912,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.112,-0.166,0.0,3.216,7.944,2.011,1354.4,997.2,10423.4,2391.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-ics.xml,52.553,52.553,30.287,30.287,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.422,0.86,3.032,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.492,9.29,0.649,0.0,6.682,0.0,0.0,2102.1,3147.8,3147.8,23.032,19.155,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.108,-0.166,0.0,3.212,7.908,2.011,1354.7,997.6,10950.1,2512.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,52.622,52.622,30.086,30.086,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.381,0.85,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,0.0,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.104,0.0,14.314,9.233,0.215,0.0,6.002,0.0,0.0,1767.2,3421.9,3421.9,23.098,19.057,0.0,3.554,3.644,0.513,7.529,0.631,10.098,-12.69,0.0,0.0,0.0,8.316,-0.062,4.806,0.0,0.729,0.0,4.885,-8.691,-2.5,0.0,-0.052,-0.461,-0.051,2.696,-0.026,-1.399,11.724,0.0,0.0,0.0,-6.332,-0.059,-1.167,-3.087,-0.165,0.0,3.183,7.688,2.01,474.2,349.2,3989.9,915.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,50.754,50.754,28.845,28.845,21.909,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,4.532,0.887,1.483,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,0.0,21.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,20.517,0.0,14.964,9.342,0.681,0.0,8.428,0.0,0.0,2074.7,3182.5,3182.5,23.066,19.438,0.0,3.559,3.645,0.513,7.536,0.63,10.098,-12.669,0.0,0.0,0.0,8.31,-0.061,4.806,0.0,0.729,0.0,4.764,-9.202,-2.496,0.0,-0.069,-0.473,-0.053,2.663,-0.029,-1.44,11.744,0.0,0.0,0.0,-6.388,-0.057,-1.183,-3.16,-0.168,0.0,3.291,8.463,2.013,1354.2,997.1,10553.0,2421.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,50.736,50.736,28.478,28.478,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.428,0.861,1.545,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.844,0.0,14.519,9.357,0.69,0.0,8.389,0.0,0.0,2092.5,3116.9,3116.9,23.032,19.164,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.912,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.112,-0.166,0.0,3.216,7.942,2.011,1354.4,997.3,10455.3,2399.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-coal.xml,65.026,65.026,27.073,27.073,22.486,0.0,0.0,0.0,0.0,15.467,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.057,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.6,3167.6,23.489,19.633,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-detailed-setpoints.xml,58.327,58.327,36.068,36.068,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,20.846,0.0,14.459,9.207,0.623,0.0,0.0,0.0,0.0,2477.2,3444.5,3444.5,23.009,19.116,0.0,3.556,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.908,-2.499,0.0,-0.058,-0.465,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.206,7.878,2.011,1354.8,997.6,11442.2,2625.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,58.371,58.371,36.157,36.157,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.42,0.859,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,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,0.0,14.483,9.233,0.691,0.0,0.0,0.0,0.0,2172.6,3607.2,3607.2,23.021,19.134,0.0,3.557,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.823,-8.947,-2.499,0.0,-0.057,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.172,-3.11,-0.166,0.0,3.21,7.908,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,66.747,66.747,26.859,26.859,39.888,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,17.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,21.24,0.0,14.239,9.233,5.067,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,64.7,64.7,27.035,27.035,37.665,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.504,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,0.0,22.762,0.0,14.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.316,0.0,14.826,9.233,2.977,0.0,0.0,0.0,0.0,1464.3,3160.3,3160.3,23.554,19.569,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.062,-0.466,-0.052,2.682,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.28,8.483,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,64.7,64.7,27.035,27.035,37.665,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.504,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,0.0,22.762,0.0,14.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.316,0.0,14.826,9.233,2.977,0.0,0.0,0.0,0.0,1464.3,3160.3,3160.3,23.554,19.569,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.062,-0.466,-0.052,2.682,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.28,8.483,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,65.026,65.026,27.073,27.073,37.953,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.486,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,21.057,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.6,3167.6,23.489,19.633,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,56.391,56.391,28.819,28.819,27.572,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,3.866,0.726,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,0.0,27.572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.817,0.0,12.242,9.374,1.414,0.0,0.0,0.0,0.0,1847.7,3081.3,3081.3,26.693,18.88,0.0,3.505,3.633,0.511,7.506,0.628,10.08,-12.706,0.0,0.0,0.0,8.337,-0.061,4.797,0.0,0.727,0.0,5.812,-4.801,-2.509,0.0,0.019,-0.396,-0.042,2.895,-0.008,-1.181,11.708,0.0,0.0,0.0,-5.995,-0.057,-1.084,-2.725,-0.154,0.0,2.776,5.019,2.0,1354.8,997.6,10201.9,2341.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.255,56.255,28.645,28.645,27.61,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,3.852,0.722,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,0.0,27.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.844,0.0,12.191,9.29,1.306,0.0,0.0,0.0,0.0,1860.3,3442.4,3442.4,25.48,19.069,0.0,3.518,3.637,0.512,7.511,0.627,10.064,-12.741,0.0,0.0,0.0,8.354,-0.042,4.795,0.0,0.727,0.0,5.807,-4.777,-2.511,0.0,0.022,-0.397,-0.043,2.901,-0.011,-1.214,11.672,0.0,0.0,0.0,-6.003,-0.038,-1.096,-2.76,-0.152,0.0,2.783,5.017,1.999,1354.8,997.6,10960.7,2515.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,56.362,56.362,33.681,33.681,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3332.0,3332.0,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11245.7,2580.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,56.255,56.255,28.645,28.645,27.61,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,3.852,0.722,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,0.0,27.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.844,0.0,12.191,9.29,1.306,0.0,0.0,0.0,0.0,1860.3,3442.4,3442.4,25.48,19.069,0.0,3.518,3.637,0.512,7.511,0.627,10.064,-12.741,0.0,0.0,0.0,8.354,-0.042,4.795,0.0,0.727,0.0,5.807,-4.777,-2.511,0.0,0.022,-0.397,-0.043,2.901,-0.011,-1.214,11.672,0.0,0.0,0.0,-6.003,-0.038,-1.096,-2.76,-0.152,0.0,2.783,5.017,1.999,1354.8,997.6,10960.7,2515.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,52.01,52.01,27.95,27.95,24.06,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.215,0.81,1.253,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.527,0.0,13.654,9.266,0.602,0.0,6.023,0.0,0.0,1880.1,3178.1,3178.1,26.019,19.098,0.0,3.544,3.641,0.512,7.517,0.63,10.08,-12.707,0.0,0.0,0.0,8.321,-0.054,4.8,0.0,0.728,0.0,5.165,-7.502,-2.501,0.0,-0.029,-0.442,-0.049,2.751,-0.021,-1.349,11.706,0.0,0.0,0.0,-6.239,-0.05,-1.147,-2.983,-0.162,0.0,3.057,6.853,2.008,474.2,349.2,3898.4,894.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,51.574,51.574,28.572,28.572,23.002,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.566,0.895,1.125,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,0.0,23.002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.539,0.0,15.117,9.179,1.961,0.0,8.149,0.0,0.0,1891.6,3199.0,3199.0,23.381,19.567,0.0,3.554,3.646,0.513,7.539,0.629,10.091,-12.687,0.0,0.0,0.0,8.325,-0.057,4.805,0.0,0.729,0.0,4.965,-8.375,-2.498,0.0,-0.064,-0.466,-0.052,2.683,-0.029,-1.429,11.726,0.0,0.0,0.0,-6.347,-0.053,-1.176,-3.156,-0.166,0.0,3.314,8.556,2.012,1354.5,997.3,11926.7,2736.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,56.506,56.506,29.822,29.822,26.684,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,3.938,0.743,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,0.0,26.684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.986,0.0,12.561,9.279,1.718,0.0,0.0,0.0,0.0,1871.8,3309.5,3309.5,23.445,19.256,0.0,3.522,3.634,0.511,7.507,0.628,10.071,-12.731,0.0,0.0,0.0,8.342,-0.054,4.796,0.0,0.727,0.0,5.641,-5.46,-2.511,0.0,0.003,-0.415,-0.045,2.847,-0.014,-1.252,11.682,0.0,0.0,0.0,-6.076,-0.05,-1.113,-2.829,-0.154,0.0,2.838,5.479,1.999,1354.8,997.6,11052.3,2536.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.936,58.936,35.718,35.718,23.219,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.453,0.866,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.742,0.0,14.577,9.275,0.094,0.0,0.0,0.0,0.0,4636.3,5578.8,5578.8,30.734,19.972,0.0,3.55,3.644,0.513,7.528,0.631,10.102,-12.682,0.0,0.0,0.0,8.311,-0.062,5.264,0.0,0.777,0.0,5.011,-8.678,-2.504,0.0,-0.055,-0.461,-0.051,2.696,-0.025,-1.393,11.731,0.0,0.0,0.0,-6.334,-0.058,-1.269,-3.078,-0.186,0.0,3.233,8.042,2.006,1354.7,998.0,11011.7,2526.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,58.219,58.219,35.602,35.602,22.617,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.371,0.847,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,0.0,22.617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.181,0.0,14.272,9.282,0.094,0.0,0.0,0.0,0.0,1992.8,3454.2,3454.2,23.119,19.037,0.0,3.553,3.644,0.513,7.528,0.63,10.097,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.901,-8.625,-2.5,0.0,-0.051,-0.46,-0.051,2.699,-0.025,-1.396,11.724,0.0,0.0,0.0,-6.328,-0.058,-1.166,-3.081,-0.165,0.0,3.177,7.633,2.01,1354.8,997.6,10995.3,2523.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,65.026,65.026,27.073,27.073,22.486,15.467,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.486,0.0,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,21.057,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.6,3167.6,23.489,19.633,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-wood.xml,65.026,65.026,27.073,27.073,22.486,0.0,0.0,15.467,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.057,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.6,3167.6,23.489,19.633,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,60.906,60.906,26.859,26.859,34.047,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,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.24,0.0,14.239,9.214,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11575.0,2656.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,58.974,58.974,36.293,36.293,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.234,0.0,0.0,0.0,0.0,0.0,2022.5,3495.0,3495.0,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,58.867,58.867,36.187,36.187,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.234,0.0,0.0,0.0,0.0,0.0,2016.1,3490.5,3490.5,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,58.974,58.974,36.293,36.293,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.234,0.0,0.0,0.0,0.0,0.0,2022.5,3495.0,3495.0,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,59.369,59.369,26.859,26.859,32.51,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.24,0.0,14.239,9.234,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,53.526,53.526,26.859,26.859,26.667,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,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.24,0.0,14.239,9.234,0.0,0.0,6.002,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,474.2,349.2,3988.9,915.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,51.251,51.251,27.289,27.289,23.962,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.47,0.872,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.323,0.0,1.639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.905,0.0,14.696,9.417,0.0,0.0,8.084,0.0,0.0,1462.4,3166.1,3166.1,23.168,19.301,0.0,3.557,3.645,0.513,7.532,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,4.807,0.0,0.729,0.0,4.844,-8.874,-2.498,0.0,-0.061,-0.467,-0.052,2.68,-0.027,-1.419,11.73,0.0,0.0,0.0,-6.359,-0.058,-1.175,-3.127,-0.166,0.0,3.248,8.126,2.011,1344.9,989.3,10030.6,2301.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,60.93,60.93,26.859,26.859,34.071,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,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.24,0.0,14.239,9.234,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-propane.xml,60.93,60.93,26.859,26.859,22.681,0.0,11.39,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.239,9.234,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,65.848,65.848,41.127,41.127,24.72,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,6.442,1.322,9.119,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,0.0,24.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.053,0.0,22.265,9.211,0.609,0.0,0.0,0.0,0.0,2307.2,4587.1,4587.1,30.688,28.15,0.0,3.862,7.596,1.093,5.881,0.688,20.477,-24.88,0.0,0.0,0.867,6.711,-0.179,8.99,0.0,0.763,0.0,3.298,-9.747,-2.93,0.0,-0.11,-1.064,-0.109,1.841,-0.027,-1.631,23.454,0.0,0.0,-0.141,-4.808,-0.17,-1.956,-6.137,-0.162,0.0,2.913,8.485,2.338,1354.8,997.6,11399.5,2576.4,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7647.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25899.0,4445.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,73.836,73.836,44.433,44.433,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,6.329,1.295,9.004,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,0.0,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.422,0.0,21.787,9.146,0.612,0.0,0.0,0.0,0.0,2519.3,4712.1,4712.1,33.94,28.292,0.0,3.774,7.88,1.071,7.921,0.667,20.509,-25.19,0.0,0.0,0.0,9.056,-0.136,11.167,0.0,0.747,0.0,3.872,-10.951,-3.54,0.0,-0.076,-1.046,-0.101,2.662,-0.023,-2.118,23.376,0.0,0.0,0.0,-6.456,-0.126,-2.486,-6.302,-0.162,0.0,2.839,9.405,2.832,1354.8,997.6,11399.6,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25801.0,4444.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,54.942,54.942,30.687,30.687,24.255,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.1,0.781,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,0.0,24.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,22.716,0.0,13.312,5.356,0.615,0.0,0.0,0.0,0.0,1778.7,3279.2,3279.2,23.623,18.494,0.0,3.533,3.635,0.511,7.498,0.63,10.083,-12.698,0.0,0.0,0.0,8.293,-0.065,4.804,0.0,0.727,0.0,5.229,-7.29,-2.504,0.0,-0.019,-0.434,-0.048,2.778,-0.018,-1.304,11.715,0.0,0.0,0.0,-6.2,-0.061,-1.138,-2.942,-0.161,0.0,3.028,6.287,2.006,939.7,637.0,6287.7,1631.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18320.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,56.675,56.675,33.418,33.418,23.257,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.254,0.819,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,0.0,23.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,21.781,0.0,13.878,7.337,0.614,0.0,0.0,0.0,0.0,2047.7,3350.8,3350.8,23.328,18.794,0.0,3.544,3.639,0.512,7.514,0.63,10.088,-12.691,0.0,0.0,0.0,8.302,-0.063,4.804,0.0,0.728,0.0,5.031,-8.097,-2.5,0.0,-0.038,-0.449,-0.05,2.732,-0.022,-1.359,11.723,0.0,0.0,0.0,-6.276,-0.059,-1.155,-3.024,-0.163,0.0,3.117,7.08,2.009,1147.2,817.3,8843.6,2197.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18553.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,59.992,59.992,38.705,38.705,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.351,0.0,0.0,4.577,0.898,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,0.0,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.934,0.0,15.047,11.089,0.613,0.0,0.0,0.0,0.0,2192.5,3633.6,3633.6,22.736,19.449,0.0,3.569,3.65,0.514,7.549,0.631,10.109,-12.676,0.0,0.0,0.0,8.327,-0.062,4.808,0.0,0.731,0.0,4.636,-9.709,-2.497,0.0,-0.075,-0.479,-0.054,2.64,-0.031,-1.46,11.737,0.0,0.0,0.0,-6.42,-0.058,-1.188,-3.188,-0.168,0.0,3.295,8.669,2.013,1562.4,1177.9,13955.4,2960.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5342.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 +base-enclosure-beds-5.xml,61.632,61.632,41.314,41.314,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.335,0.0,0.0,4.745,0.939,12.591,0.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,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,0.0,15.649,12.918,0.612,0.0,0.0,0.0,0.0,2559.5,3923.2,3923.2,22.438,19.771,0.0,3.582,3.657,0.515,7.568,0.633,10.128,-12.669,0.0,0.0,0.0,8.348,-0.064,4.813,0.0,0.733,0.0,4.441,-10.517,-2.496,0.0,-0.092,-0.493,-0.056,2.596,-0.034,-1.504,11.744,0.0,0.0,0.0,-6.484,-0.06,-1.202,-3.268,-0.17,0.0,3.385,9.461,2.013,1770.0,1358.2,16511.3,3258.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19258.0,5339.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 +base-enclosure-ceilingtypes.xml,74.441,74.441,36.588,36.588,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,0.0,4.612,0.908,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,0.0,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.444,0.0,15.263,9.233,0.618,0.0,0.0,0.0,0.0,2162.8,3488.3,3488.3,29.352,19.725,0.0,17.288,3.592,0.505,7.259,0.62,9.956,-12.802,0.0,0.0,0.0,7.765,-0.075,4.845,0.0,0.734,0.0,6.976,-9.066,-2.542,0.0,0.076,-0.331,-0.033,2.89,0.007,-1.002,11.611,0.0,0.0,0.0,-6.097,-0.066,-1.017,-2.911,-0.141,0.0,2.804,7.716,1.968,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30007.0,5443.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-floortypes.xml,67.246,67.246,29.481,29.481,37.765,0.0,0.0,0.0,0.0,0.0,0.0,0.623,0.0,0.0,3.689,0.672,9.367,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,37.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,35.371,0.0,11.163,9.342,0.62,0.0,0.0,0.0,2.0,1781.3,3656.2,3656.2,29.151,21.057,0.0,3.488,3.656,0.0,0.0,0.672,9.52,-13.012,0.0,0.0,29.107,0.0,-0.209,2.053,0.0,0.788,0.0,7.865,-7.472,-1.575,0.0,0.406,-0.079,0.0,0.0,0.093,0.884,10.956,0.0,0.0,-8.039,0.0,-0.204,-0.263,-1.883,-0.087,0.0,2.753,5.732,1.072,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19986.0,5356.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-enclosure-garage.xml,58.659,58.659,34.731,34.731,23.928,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.101,0.55,9.267,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,0.0,23.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,22.402,0.0,9.117,9.233,0.724,0.0,0.0,0.0,0.0,2122.7,2939.7,2939.7,18.031,11.763,0.0,3.529,3.789,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.368,0.0,0.0,0.0,3.762,-6.763,-2.508,0.0,0.098,-0.288,-0.036,2.418,-0.001,-1.133,8.269,0.0,0.0,0.0,-5.679,-0.041,-1.225,-2.105,0.0,0.0,1.325,5.683,2.002,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15522.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,65.982,65.982,36.09,36.09,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.323,0.832,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,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.99,9.233,0.616,0.0,0.0,0.0,0.0,2154.8,3872.2,3872.2,28.068,20.15,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,59.753,59.753,36.078,36.078,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.395,0.852,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,0.0,14.354,9.233,0.614,0.0,0.0,0.0,0.0,2117.2,3447.5,3447.5,23.77,19.351,0.0,3.545,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.319,-0.062,5.886,0.0,0.728,0.0,5.113,-8.911,-2.5,0.0,-0.049,-0.456,-0.051,2.715,-0.024,-1.382,11.724,0.0,0.0,0.0,-6.303,-0.058,-1.436,-3.06,-0.164,0.0,3.204,7.868,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,65.982,65.982,36.09,36.09,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.323,0.832,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,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.99,9.233,0.616,0.0,0.0,0.0,0.0,2154.8,3872.2,3872.2,28.068,20.15,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,65.982,65.982,36.09,36.09,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.323,0.832,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,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.99,9.233,0.616,0.0,0.0,0.0,0.0,2154.8,3872.2,3872.2,28.068,20.15,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,58.567,58.567,36.054,36.054,22.513,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.39,0.852,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,22.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,21.083,0.0,14.359,9.233,0.614,0.0,0.0,0.0,0.0,2132.4,3418.4,3418.4,23.047,19.086,0.0,3.551,3.641,0.512,7.521,0.864,10.091,-12.683,0.0,0.0,0.0,8.303,-0.064,4.805,0.0,0.729,0.0,4.878,-8.906,-2.499,0.0,-0.053,-0.461,-0.052,2.692,-0.155,-1.398,11.73,0.0,0.0,0.0,-6.336,-0.06,-1.168,-3.092,-0.165,0.0,3.184,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,58.468,58.468,35.907,35.907,22.561,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.272,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,22.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,21.128,0.0,13.872,9.233,0.614,0.0,0.0,0.0,0.0,2132.1,3376.1,3376.1,22.986,18.594,0.0,3.548,3.639,0.512,7.51,0.629,10.004,-12.276,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.729,0.0,4.882,-8.91,-2.5,0.0,-0.037,-0.451,-0.05,2.717,-0.023,-1.42,11.099,0.0,0.0,0.0,-6.287,-0.059,-1.163,-3.063,-0.164,0.0,3.082,7.868,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,58.263,58.263,35.911,35.911,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.277,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,0.0,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.931,0.0,13.896,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3300.1,3300.1,22.861,18.059,0.0,3.669,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.307,-0.061,4.806,0.0,0.729,0.0,4.836,-8.908,-2.5,0.0,-0.306,-0.459,-0.051,2.699,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.327,-0.058,-1.168,-3.089,-0.165,0.0,2.846,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-physical-properties.xml,60.862,60.862,37.183,37.183,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,5.288,1.065,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,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,18.031,9.233,0.612,0.0,0.0,0.0,3.0,2138.5,3597.9,3597.9,24.759,21.557,0.0,3.552,3.66,0.515,7.583,0.634,10.135,-12.625,2.717,-2.174,0.0,8.471,-0.068,4.816,0.0,0.732,0.0,5.144,-8.887,-2.495,0.0,-0.146,-0.516,-0.059,2.583,-0.039,-1.533,11.705,-0.068,3.749,0.0,-6.624,-0.063,-1.187,-3.252,-0.17,0.0,4.013,7.889,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23504.0,5406.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,59.482,59.482,36.124,36.124,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.436,0.862,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.875,0.0,14.523,9.233,0.614,0.0,0.0,0.0,0.0,2117.0,3460.0,3460.0,23.653,19.387,0.0,3.538,3.64,0.512,7.524,0.63,10.088,-12.677,1.147,-0.32,0.0,8.318,-0.063,4.806,0.0,0.729,0.0,5.048,-8.906,-2.499,0.0,-0.056,-0.458,-0.051,2.705,-0.025,-1.387,11.724,-0.498,0.432,0.0,-6.325,-0.059,-1.163,-3.074,-0.165,0.0,3.237,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19514.0,5322.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,58.865,58.865,36.838,36.838,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.363,0.0,0.0,5.031,1.005,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,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.626,0.0,17.0,9.233,0.612,0.0,0.0,0.0,0.0,2133.7,3597.9,3597.9,23.621,20.822,0.0,3.568,3.663,0.516,7.583,0.634,10.138,-12.642,0.857,-1.409,0.0,8.436,-0.063,4.814,0.0,0.732,0.0,4.801,-8.885,-2.496,0.0,-0.128,-0.51,-0.059,2.585,-0.038,-1.535,11.715,0.254,2.537,0.0,-6.587,-0.059,-1.196,-3.257,-0.17,0.0,3.753,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21676.0,5364.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,58.618,58.618,36.939,36.939,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,5.117,1.026,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,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.301,0.0,17.364,9.233,0.612,0.0,0.0,0.0,0.0,2133.2,3597.9,3597.9,23.537,20.992,0.0,3.575,3.667,0.516,7.595,0.636,10.154,-12.632,0.765,-1.651,0.0,8.463,-0.066,4.818,0.0,0.732,0.0,4.733,-8.884,-2.495,0.0,-0.141,-0.519,-0.06,2.564,-0.04,-1.554,11.716,0.258,2.975,0.0,-6.633,-0.063,-1.201,-3.288,-0.171,0.0,3.822,7.892,2.015,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21910.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-split-level.xml,40.55,40.55,29.577,29.577,10.974,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,3.951,0.751,9.563,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,10.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.269,0.0,12.417,9.458,0.606,0.0,0.0,0.0,0.0,1710.6,2631.1,2631.1,13.17,13.022,0.0,3.945,3.838,0.0,0.0,0.691,10.079,-12.095,0.0,0.0,0.0,7.996,-0.152,2.657,0.0,0.776,0.0,0.291,-6.808,-1.452,0.0,-0.102,-0.617,0.0,0.0,-0.024,-0.74,12.161,0.0,0.0,0.0,-1.657,-0.149,-0.598,-3.044,-0.169,0.0,0.089,6.381,1.195,1354.8,997.6,11399.5,3013.0,0.0,36000.0,24000.0,0.0,6.8,91.76,28999.0,1651.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,313.0,0.0,-487.0,800.0 +base-enclosure-thermal-mass.xml,58.138,58.138,36.031,36.031,22.107,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.376,0.85,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.703,0.0,14.333,9.233,0.614,0.0,0.0,0.0,0.0,2131.9,3384.3,3384.3,22.903,18.772,0.0,3.557,3.642,0.513,7.508,0.63,10.116,-12.697,0.0,0.0,0.0,8.279,-0.098,4.801,0.0,0.728,0.0,4.785,-8.907,-2.499,0.0,-0.05,-0.46,-0.051,2.699,-0.026,-1.427,11.731,0.0,0.0,0.0,-6.336,-0.094,-1.175,-3.143,-0.166,0.0,3.139,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,75.033,75.033,34.73,34.73,40.303,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,3.069,0.549,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,0.0,40.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,37.731,0.0,9.028,9.233,0.622,0.0,0.0,0.0,0.0,2128.5,3062.8,3062.8,25.833,12.742,0.0,3.347,16.952,0.473,7.157,0.836,1.283,-1.612,0.0,0.0,0.0,7.38,-0.045,4.826,0.0,0.732,0.0,7.806,-9.155,-2.566,0.0,0.291,-0.623,-0.009,3.405,-0.085,-0.165,1.409,0.0,0.0,0.0,-4.92,-0.04,-0.965,-0.378,-0.123,0.0,1.78,7.631,1.944,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13671.0,5183.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,57.422,57.422,35.084,35.084,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.619,0.655,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,0.0,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.919,0.0,10.899,9.233,0.616,0.0,0.0,0.0,0.0,2132.0,3384.7,3384.7,23.034,18.775,0.0,3.555,3.644,0.513,7.537,0.631,10.098,-12.683,0.0,0.0,0.0,8.359,-0.06,4.806,0.0,0.729,0.0,4.848,-8.905,-2.499,0.0,0.012,-0.412,-0.044,2.862,-0.013,-1.248,11.73,0.0,0.0,0.0,-6.094,-0.057,-1.111,-7.007,-0.157,0.0,2.763,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-none.xml,58.884,58.884,34.016,34.016,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.28,0.0,7.559,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,2386.2,17.246,8.428,0.0,3.468,5.156,0.5,7.22,0.6,0.0,0.0,0.0,0.0,0.0,7.492,-0.043,4.777,0.0,0.723,0.0,4.877,-9.031,-2.531,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.188,-0.041,-1.102,0.0,-0.144,0.0,1.322,7.752,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5099.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,66.136,66.136,36.191,36.191,29.945,0.0,0.0,0.0,0.0,0.0,0.0,0.494,0.0,0.0,4.406,0.849,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,0.0,29.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,0.0,0.0,28.045,0.0,14.278,9.233,0.616,0.0,0.0,0.0,0.0,2150.9,3923.5,3923.5,27.769,20.924,0.0,3.492,3.633,0.511,7.504,0.63,19.595,-16.819,0.0,0.0,0.0,8.427,-0.074,4.825,0.0,0.732,0.0,6.377,-8.965,-2.513,0.0,0.012,-0.392,-0.042,2.826,-0.007,-4.96,14.292,0.0,0.0,0.0,-6.171,-0.068,-1.082,-2.85,-0.155,0.0,3.307,7.815,1.997,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21180.0,5355.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,58.268,58.268,36.108,36.108,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.439,0.864,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,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.753,0.0,14.576,9.233,0.613,0.0,0.0,0.0,0.0,2114.8,3422.3,3422.3,23.034,19.122,0.0,3.558,3.645,0.513,7.515,0.631,10.105,-12.683,0.0,0.0,0.0,8.252,-0.071,4.808,0.0,0.73,0.0,4.81,-8.905,-2.499,0.0,-0.075,-0.483,-0.055,2.62,-0.031,-1.316,12.141,0.0,0.0,0.0,-6.498,-0.067,-1.188,-3.219,-0.168,0.0,3.226,7.872,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,57.959,57.959,33.592,33.592,24.367,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,2.368,0.375,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,0.0,24.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,0.0,0.0,22.819,0.0,6.179,9.233,0.622,0.0,0.0,0.0,0.0,2114.8,2567.4,2567.4,23.078,11.444,0.0,3.574,3.682,0.517,7.568,0.638,10.631,-11.787,0.0,0.0,0.0,8.559,-0.043,4.867,0.0,0.74,0.0,5.219,-9.143,-2.56,0.0,0.353,-0.11,-0.002,3.553,0.056,-3.589,2.911,0.0,0.0,0.0,-4.594,-0.039,-0.912,-2.173,-0.118,0.0,1.429,7.643,1.95,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-storms.xml,59.298,59.298,35.492,35.492,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,3.919,0.74,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,0.0,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.295,0.0,12.428,9.233,0.616,0.0,0.0,0.0,0.0,2131.9,3204.8,3204.8,22.494,17.139,0.0,3.514,3.609,0.508,7.424,0.622,8.599,-9.444,0.0,0.0,0.0,8.041,-0.059,4.791,0.0,0.726,0.0,5.093,-8.925,-2.504,0.0,0.015,-0.411,-0.044,2.82,-0.014,-0.74,8.684,0.0,0.0,0.0,-6.06,-0.055,-1.142,-2.918,-0.16,0.0,2.774,7.854,2.006,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17521.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-ambient.xml,47.78,47.78,30.453,30.453,17.327,0.0,0.0,0.0,0.0,0.0,0.0,0.286,0.0,0.0,4.75,0.933,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,0.0,17.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.232,0.0,15.684,9.342,0.606,0.0,0.0,0.0,3.0,1740.5,3629.1,3629.1,20.511,21.293,0.0,3.811,3.817,0.0,0.0,0.769,10.526,-11.315,0.0,0.0,10.182,0.0,-0.48,2.065,0.0,0.786,0.0,3.899,-6.747,-1.425,0.0,-0.11,-0.589,0.0,0.0,0.029,-0.179,12.654,0.0,0.0,-3.786,0.0,-0.474,-0.413,-2.427,-0.161,0.0,3.693,6.443,1.222,1354.8,997.6,11399.5,2808.9,0.0,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,18957.0,5354.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-basement-garage.xml,52.56,52.56,32.802,32.802,19.758,0.0,0.0,0.0,0.0,0.0,0.0,0.326,0.0,0.0,4.436,0.861,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,0.0,19.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,18.502,0.0,14.517,9.365,0.613,0.0,0.0,0.0,0.0,1892.4,3386.0,3386.0,21.427,19.686,0.0,3.661,4.739,0.514,5.516,0.701,9.837,-12.609,0.0,0.0,0.835,6.146,-0.039,3.259,0.0,0.735,0.0,4.443,-7.701,-1.886,0.0,-0.041,-0.654,-0.057,1.918,-0.044,-1.196,11.679,0.0,0.0,-0.129,-4.618,-0.036,-0.791,-3.022,-0.167,0.0,3.383,6.955,1.52,1354.8,997.6,11399.6,2849.6,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19061.0,5346.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 +base-foundation-belly-wing-no-skirt.xml,49.514,49.514,29.509,29.509,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.95,0.745,9.354,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,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.735,0.0,12.238,9.342,0.607,0.0,0.0,0.0,0.0,1753.5,3254.0,3254.0,24.174,17.955,0.0,3.986,5.373,0.0,0.0,0.756,8.719,-11.134,0.0,0.0,10.274,0.0,-0.363,2.069,0.0,0.793,0.0,6.171,-6.863,-1.453,0.0,0.291,-0.621,0.0,0.0,0.037,0.041,9.561,0.0,0.0,-3.473,0.0,-0.356,-0.4,-2.2,-0.147,0.0,2.254,6.327,1.194,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-belly-wing-skirt.xml,49.142,49.142,29.517,29.517,19.625,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.961,0.748,9.354,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,19.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,18.38,0.0,12.292,9.342,0.606,0.0,0.0,0.0,0.0,1752.3,3222.4,3222.4,24.022,17.914,0.0,3.992,5.382,0.0,0.0,0.757,8.731,-11.127,0.0,0.0,9.978,0.0,-0.357,2.07,0.0,0.794,0.0,6.058,-6.857,-1.453,0.0,0.285,-0.63,0.0,0.0,0.036,0.021,9.567,0.0,0.0,-3.392,0.0,-0.351,-0.403,-2.214,-0.147,0.0,2.26,6.333,1.194,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-complex.xml,77.628,77.628,37.382,37.382,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,5.221,1.053,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.691,0.0,17.803,9.233,0.617,0.0,0.0,0.0,4.0,2171.2,3631.5,3631.5,33.39,21.552,0.0,3.434,3.658,0.521,19.566,0.65,10.136,-12.837,0.0,0.0,0.0,8.756,-0.109,6.085,0.0,0.739,0.0,8.279,-9.111,-2.555,0.0,0.031,-0.372,-0.046,3.7,-0.007,-1.014,11.574,0.0,0.0,0.0,-4.532,-0.101,-1.237,-3.289,-0.139,0.0,3.795,7.67,1.955,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,55.669,55.669,36.621,36.621,19.048,0.0,0.0,0.0,0.0,0.0,0.0,0.314,0.0,0.0,4.893,0.976,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.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,17.836,0.0,16.503,9.233,0.611,0.0,0.0,0.0,0.0,2130.2,3597.9,3597.9,22.291,20.652,0.0,3.636,3.705,0.522,8.235,0.644,10.264,-12.652,0.0,0.0,0.0,4.795,-0.063,4.842,0.0,0.735,0.0,4.211,-8.884,-2.496,0.0,-0.115,-0.509,-0.058,2.158,-0.038,-1.55,11.761,0.0,0.0,0.0,-3.713,-0.057,-1.195,-3.315,-0.17,0.0,3.563,7.891,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,57.222,57.222,36.288,36.288,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.6,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,0.0,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,15.243,9.233,0.613,0.0,0.0,0.0,0.0,2130.7,3568.4,3568.4,22.763,19.966,0.0,3.584,3.664,0.516,7.833,0.635,10.15,-12.669,0.0,0.0,0.0,6.873,-0.061,4.815,0.0,0.731,0.0,4.578,-8.892,-2.496,0.0,-0.082,-0.484,-0.055,2.495,-0.032,-1.471,11.744,0.0,0.0,0.0,-5.347,-0.057,-1.182,-3.183,-0.168,0.0,3.345,7.885,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,57.133,57.133,35.618,35.618,21.515,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.056,0.768,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,21.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.0,0.0,20.147,0.0,12.895,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,3401.2,3401.2,23.227,18.937,0.0,3.584,3.669,0.516,6.117,0.636,10.166,-12.69,0.0,0.0,0.0,8.986,-0.065,4.827,0.0,0.734,0.0,4.708,-8.905,-2.5,0.0,-0.004,-0.423,-0.046,1.073,-0.017,-1.296,11.724,0.0,0.0,0.0,-6.519,-0.06,-1.143,-2.923,-0.162,0.0,2.994,7.872,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,47.048,47.048,29.047,29.047,18.001,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.591,0.668,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,0.0,18.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,16.845,0.0,11.07,9.342,0.614,0.0,0.0,0.0,0.0,1731.9,2585.4,2585.4,15.9,11.724,0.0,3.711,3.607,0.507,5.113,0.622,9.795,-12.66,0.0,0.0,0.0,10.002,-0.052,3.495,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.025,-0.473,-0.053,1.786,-0.029,-1.225,11.693,0.0,0.0,0.0,-3.856,-0.048,-0.842,-2.99,-0.164,0.0,0.0,6.308,1.18,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 +base-foundation-multiple.xml,42.544,42.544,29.864,29.864,12.68,0.0,0.0,0.0,0.0,0.0,0.0,0.209,0.0,0.0,4.349,0.845,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,0.0,12.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.87,0.0,13.997,9.285,0.692,0.0,0.0,0.0,0.0,1720.7,2780.3,2780.3,15.196,15.264,0.0,3.982,3.869,0.0,0.0,0.78,10.582,-11.178,0.0,0.0,5.303,0.0,-0.384,2.584,0.0,0.0,0.0,1.982,-4.611,-1.419,0.0,-0.151,-0.726,0.0,0.0,-0.016,-0.487,12.79,0.0,0.0,-0.709,0.0,-0.379,-0.574,-2.646,0.0,0.0,1.7,4.255,1.228,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23063.0,4774.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14342.0,288.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-slab.xml,39.764,39.764,29.435,29.435,10.328,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.0,0.0,4.015,0.768,9.352,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,10.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,9.666,0.0,12.691,9.342,0.605,0.0,0.0,0.0,0.0,1717.5,2696.1,2696.1,12.687,12.989,0.0,3.935,3.804,0.0,0.0,0.691,10.07,-12.046,0.0,0.0,0.0,7.998,-0.153,2.012,0.0,0.776,0.0,0.274,-6.772,-1.445,0.0,-0.089,-0.602,0.0,0.0,-0.03,-0.815,12.21,0.0,0.0,0.0,-1.718,-0.15,-0.472,-2.884,-0.174,0.0,0.091,6.417,1.202,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,28632.0,1649.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-above-grade.xml,43.721,43.721,30.004,30.004,13.718,0.0,0.0,0.0,0.0,0.0,0.0,0.226,0.0,0.0,4.433,0.864,9.349,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,13.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.843,0.0,14.367,9.285,0.712,0.0,0.0,0.0,0.0,1725.1,3043.2,3043.2,16.456,16.259,0.0,3.987,3.869,0.0,0.0,0.779,10.631,-11.228,0.0,0.0,5.922,0.0,-0.399,2.588,0.0,0.0,0.0,2.4,-4.628,-1.424,0.0,-0.127,-0.706,0.0,0.0,-0.012,-0.481,12.741,0.0,0.0,-0.611,0.0,-0.393,-0.561,-2.633,0.0,0.0,1.985,4.237,1.223,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23024.0,4769.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14337.0,292.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-assembly-r.xml,41.0,41.0,29.404,29.404,11.596,0.0,0.0,0.0,0.0,0.0,0.0,0.191,0.0,0.0,3.981,0.756,9.345,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,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,0.0,10.857,0.0,12.428,9.285,0.709,0.0,0.0,0.0,0.0,1708.0,2811.3,2811.3,14.633,13.982,0.0,3.977,3.838,0.0,0.0,0.769,10.59,-11.043,0.0,0.0,4.41,0.0,-0.41,2.586,0.0,0.0,0.0,1.766,-4.584,-1.409,0.0,-0.128,-0.681,0.0,0.0,0.011,-0.459,12.925,0.0,0.0,-2.093,0.0,-0.406,-0.578,-2.55,0.0,0.0,1.163,4.282,1.238,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,20545.0,4409.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,14055.0,573.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-wall-insulation.xml,48.594,48.594,29.069,29.069,19.525,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,3.659,0.677,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,0.0,19.525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.275,0.0,11.148,9.285,0.639,0.0,0.0,0.0,0.0,1723.9,2491.5,2491.5,16.297,12.58,0.0,3.735,3.633,0.0,0.0,0.636,9.315,-12.475,0.0,0.0,14.463,0.0,-0.046,2.465,0.0,0.0,0.0,2.535,-4.772,-1.48,0.0,0.048,-0.455,0.0,0.0,-0.019,-0.477,11.493,0.0,0.0,-2.833,0.0,-0.044,-0.526,-2.444,0.0,0.0,1.35,4.093,1.167,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23828.0,1631.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,15236.0,146.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement.xml,42.608,42.608,29.897,29.897,12.711,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.369,0.849,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,0.0,12.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,11.9,0.0,14.083,9.285,0.703,0.0,0.0,0.0,0.0,1723.5,2802.3,2802.3,15.438,15.472,0.0,3.973,3.833,0.0,0.0,0.761,10.53,-11.149,0.0,0.0,5.339,0.0,-0.393,2.583,0.0,0.0,0.0,2.081,-4.605,-1.417,0.0,-0.132,-0.685,0.0,0.0,0.003,-0.513,12.819,0.0,0.0,-0.762,0.0,-0.388,-0.574,-2.668,0.0,0.0,1.781,4.261,1.23,1354.8,997.6,11399.6,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23070.0,4774.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14344.0,288.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unvented-crawlspace.xml,40.497,40.497,29.996,29.996,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.173,0.0,0.0,4.386,0.857,9.449,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,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.832,0.0,14.17,9.342,0.708,0.0,0.0,0.0,0.0,1717.9,2726.8,2726.8,14.329,14.741,0.0,3.957,3.815,0.0,0.0,0.781,10.653,-10.714,0.0,0.0,4.565,0.0,-0.459,2.05,0.0,0.775,0.0,1.604,-6.202,-1.377,0.0,-0.243,-0.803,0.0,0.0,-0.001,-0.69,13.255,0.0,0.0,-2.098,0.0,-0.455,-0.49,-2.745,-0.197,0.0,1.307,6.382,1.27,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,20315.0,4137.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,14131.0,637.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace.xml,42.397,42.397,29.938,29.938,12.459,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,4.256,0.822,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,0.0,12.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,11.665,0.0,13.523,9.342,0.786,0.0,0.0,0.0,0.0,1712.4,2927.3,2927.3,15.482,15.244,0.0,3.962,3.816,0.0,0.0,0.766,10.546,-11.029,0.0,0.0,6.731,0.0,-0.434,1.848,0.0,0.782,0.0,2.013,-6.322,-1.406,0.0,-0.128,-0.69,0.0,0.0,0.01,-0.475,12.939,0.0,0.0,-3.039,0.0,-0.429,-0.394,-2.616,-0.18,0.0,1.344,6.262,1.241,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23874.0,6877.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15434.0,1723.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-walkout-basement.xml,64.337,64.337,36.456,36.456,27.88,0.0,0.0,0.0,0.0,0.0,0.0,0.46,0.0,0.0,4.644,0.911,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,0.0,27.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.11,0.0,15.355,9.233,0.615,0.0,0.0,0.0,0.0,2148.5,3597.9,3597.9,26.756,20.659,0.0,3.536,3.698,0.521,7.384,0.648,10.878,-12.928,0.0,0.0,0.0,10.191,-0.062,6.628,0.0,0.729,0.0,5.961,-8.927,-2.504,0.0,-0.111,-0.524,-0.061,1.459,-0.034,-1.566,12.043,0.0,0.0,0.0,-3.716,-0.057,-1.537,-3.4,-0.161,0.0,3.356,7.852,2.006,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19161.0,5335.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.952,34.952,34.952,34.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.424,1.045,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.956,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3596.9,3596.9,0.0,16.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.023,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.021,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.759,45.759,45.759,45.759,0.0,0.0,0.0,0.0,0.0,0.0,9.472,0.974,0.263,0.015,3.519,1.076,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,0.0,21.368,0.279,13.341,9.233,0.614,0.0,0.0,0.0,0.0,6969.5,3292.3,6969.5,24.206,16.402,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.362,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,41.897,41.897,41.897,41.897,0.0,0.0,0.0,0.0,0.0,0.0,9.497,1.684,0.273,0.027,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,0.0,21.987,0.3,0.0,9.233,0.588,0.0,0.0,0.0,0.0,7242.9,1637.3,7242.9,25.256,0.0,0.0,3.507,3.648,0.513,7.514,0.632,10.115,-12.683,0.0,0.0,0.0,8.15,-0.069,4.81,0.0,0.73,0.0,6.162,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.713,45.713,45.713,45.713,0.0,0.0,0.0,0.0,0.0,0.0,9.024,0.882,0.831,0.048,3.438,1.05,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,0.0,21.647,0.878,13.013,9.233,0.613,0.0,0.0,144.0,0.0,10080.5,3275.8,10080.5,37.464,16.263,0.0,3.616,3.675,0.516,7.775,0.624,10.04,-12.798,0.0,0.0,0.0,9.087,0.059,4.748,0.0,0.762,0.0,4.542,-8.886,-2.51,0.0,0.005,-0.452,-0.051,2.749,-0.035,-1.506,11.615,0.0,0.0,0.0,-6.397,0.05,-1.191,-3.331,-0.163,0.0,2.031,7.891,2.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.817,45.817,45.817,45.817,0.0,0.0,0.0,0.0,0.0,0.0,9.545,0.974,0.263,0.015,3.504,1.076,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,0.0,21.368,0.279,13.341,9.233,0.614,0.0,0.0,0.0,0.0,6969.5,3285.1,6969.5,24.206,16.402,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.362,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,45.759,45.759,45.759,45.759,0.0,0.0,0.0,0.0,0.0,0.0,9.472,0.974,0.263,0.015,3.519,1.076,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,0.0,21.368,0.279,13.341,9.233,0.614,0.0,0.0,0.0,0.0,6969.5,3292.3,6969.5,24.206,16.402,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.362,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,41.609,41.609,41.609,41.609,0.0,0.0,0.0,0.0,0.0,0.0,7.343,0.575,0.26,0.011,2.342,0.638,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,0.0,22.418,0.272,13.578,9.233,0.614,0.0,0.0,0.0,0.0,6942.9,2815.8,6942.9,24.198,17.378,0.0,3.493,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.317,-0.065,4.807,0.0,0.729,0.0,6.445,-8.906,-2.499,0.0,-0.018,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.311,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.561,53.561,38.753,38.753,14.808,0.0,0.0,0.0,0.0,0.0,4.677,0.498,0.0,0.055,2.556,0.527,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.076,11.082,16.12,9.233,0.614,0.0,0.0,2.0,58.0,3436.4,2870.4,3436.4,23.339,16.603,0.0,3.266,3.605,0.508,7.53,0.616,9.94,-12.591,0.0,0.0,0.0,8.253,-0.031,5.819,0.0,0.721,0.0,11.327,-8.79,-2.477,0.0,-0.187,-0.494,-0.056,2.719,-0.038,-1.537,11.822,0.0,0.0,0.0,-6.373,-0.028,-1.5,-3.084,-0.171,0.0,5.19,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.892,56.892,37.571,37.571,19.321,0.0,0.0,0.0,0.0,0.0,3.593,0.349,0.0,0.073,2.586,0.531,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,27.694,14.415,16.291,9.233,0.615,0.0,0.0,204.0,58.0,3071.6,2741.0,3071.6,23.539,16.604,0.0,3.292,3.615,0.508,7.457,0.619,9.934,-12.681,0.0,0.0,0.0,8.271,-0.026,5.805,0.0,0.721,0.0,10.942,-8.844,-2.484,0.0,-0.165,-0.476,-0.054,2.677,-0.033,-1.514,11.732,0.0,0.0,0.0,-6.301,-0.022,-1.49,-3.072,-0.17,0.0,5.156,7.934,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.892,56.892,37.571,37.571,19.321,0.0,0.0,0.0,0.0,0.0,3.593,0.349,0.0,0.073,2.586,0.531,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,27.694,14.415,16.291,9.233,0.615,0.0,0.0,204.0,58.0,3071.6,2741.0,3071.6,23.539,16.604,0.0,3.292,3.615,0.508,7.457,0.619,9.934,-12.681,0.0,0.0,0.0,8.271,-0.026,5.805,0.0,0.721,0.0,10.942,-8.844,-2.484,0.0,-0.165,-0.476,-0.054,2.677,-0.033,-1.514,11.732,0.0,0.0,0.0,-6.301,-0.022,-1.49,-3.072,-0.17,0.0,5.156,7.934,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.667,53.667,38.854,38.854,14.813,0.0,0.0,0.0,0.0,0.0,4.737,0.506,0.0,0.055,2.586,0.531,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.352,11.085,16.323,9.233,0.614,0.0,0.0,2.0,58.0,3436.4,2829.0,3436.4,23.339,16.604,0.0,3.307,3.646,0.513,7.531,0.631,10.101,-12.703,0.0,0.0,0.0,8.336,-0.061,5.888,0.0,0.728,0.0,11.469,-8.917,-2.502,0.0,-0.143,-0.455,-0.051,2.713,-0.024,-1.383,11.71,0.0,0.0,0.0,-6.3,-0.057,-1.436,-3.072,-0.164,0.0,5.271,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.708,53.708,39.013,39.013,14.696,0.0,0.0,0.0,0.0,0.0,4.527,0.479,0.0,0.443,2.595,0.53,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,14.696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.567,12.199,16.439,9.233,0.614,0.0,0.0,2.0,54.0,3439.4,2828.1,3439.4,26.752,16.591,0.0,3.253,3.648,0.513,7.537,0.631,10.103,-12.695,0.0,0.0,0.0,8.331,-0.06,4.805,0.0,0.729,0.0,12.775,-8.907,-2.499,0.0,-0.152,-0.464,-0.052,2.682,-0.027,-1.415,11.718,0.0,0.0,0.0,-6.349,-0.056,-1.173,-3.118,-0.166,0.0,5.285,7.871,2.011,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,41.294,41.294,41.294,41.294,0.0,0.0,0.0,0.0,0.0,0.0,7.353,0.758,0.148,0.011,2.378,0.206,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,0.0,24.947,0.159,14.829,9.233,0.614,0.0,0.0,0.0,0.0,7043.7,2647.7,7043.7,24.551,18.191,0.0,3.395,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.323,-0.065,4.808,0.0,0.729,0.0,9.047,-8.906,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.347,-0.061,-1.17,-3.105,-0.166,0.0,3.603,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,49.611,49.611,43.08,43.08,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,3.377,0.538,15.943,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.046,0.0,9.816,16.489,0.642,0.0,0.0,0.0,0.0,2615.1,3542.6,3542.6,17.004,16.125,0.0,2.9,2.833,0.397,5.505,0.423,7.596,-12.563,0.0,0.0,0.0,5.727,-0.058,3.539,0.0,0.582,0.0,1.453,-10.182,-2.473,0.0,-0.155,-0.607,-0.072,2.26,-0.067,-1.871,11.85,0.0,0.0,0.0,-7.696,-0.059,-1.295,-5.333,-0.193,0.0,2.045,9.375,2.036,2181.0,1715.2,21571.8,3761.0,0.0,31430.0,27891.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22993.0,6411.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 +base-hvac-autosize.xml,59.195,59.195,36.214,36.214,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.506,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,0.0,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.529,0.0,14.904,9.233,0.614,0.0,0.0,0.0,2.0,2134.9,3328.6,3328.6,23.952,18.93,0.0,3.532,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.53,-8.905,-2.499,0.0,-0.076,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.107,-0.166,0.0,3.661,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,32235.0,21309.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-coal-only.xml,49.568,49.568,30.652,30.652,0.0,0.0,0.0,0.0,0.0,18.916,0.0,0.236,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,18.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.012,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2060.6,1637.3,2060.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-elec-only.xml,48.397,48.397,48.397,48.397,0.0,0.0,0.0,0.0,0.0,0.0,17.858,0.122,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,0.0,16.012,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,6052.3,1637.3,6052.3,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,55.506,55.506,36.306,36.306,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,4.502,1.219,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,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,14.543,9.233,0.614,0.0,0.0,0.0,0.0,2095.4,3607.6,3607.6,16.438,19.269,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,-0.062,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,3.294,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only-pilot.xml,54.534,54.534,30.56,30.56,23.974,0.0,0.0,0.0,0.0,0.0,0.0,0.144,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,23.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2045.2,1637.3,2045.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,49.563,49.563,30.56,30.56,19.003,0.0,0.0,0.0,0.0,0.0,0.0,0.144,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,19.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,16.012,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2045.2,1637.3,2045.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-oil-only.xml,49.568,49.568,30.652,30.652,0.0,18.916,0.0,0.0,0.0,0.0,0.0,0.236,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,18.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2060.6,1637.3,2060.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-propane-only.xml,49.562,49.562,30.539,30.539,0.0,0.0,19.023,0.0,0.0,0.0,0.0,0.122,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,19.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,16.012,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2041.7,1637.3,2041.7,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,49.562,49.562,30.539,30.539,0.0,0.0,0.0,19.023,0.0,0.0,0.0,0.122,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,19.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,16.012,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2041.7,1637.3,2041.7,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,36.054,36.054,36.054,36.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.386,1.185,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.13,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3897.1,3897.1,0.0,18.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.075,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.217,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed.xml,36.07,36.07,36.07,36.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.402,1.185,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.13,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3905.2,3905.2,0.0,18.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.075,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.217,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,34.377,34.377,34.377,34.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.173,0.72,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.517,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3401.2,3401.2,0.0,19.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.091,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.61,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,33.671,33.671,33.671,33.671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.875,0.313,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.345,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3154.5,3154.5,0.0,19.332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.132,-0.471,-0.052,2.667,-0.032,-1.453,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.194,-3.023,-0.167,0.0,4.482,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.748,47.748,47.748,47.748,0.0,0.0,0.0,0.0,0.0,0.0,9.585,1.701,0.274,0.028,4.502,1.219,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,0.0,22.21,0.302,14.544,9.233,0.614,0.0,0.0,0.0,0.0,7314.9,3607.7,7314.9,25.256,19.27,0.0,3.502,3.645,0.513,7.531,0.631,10.104,-12.683,0.0,0.0,0.0,8.317,-0.065,4.807,0.0,0.729,0.0,6.22,-8.906,-2.499,0.0,-0.061,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.106,-0.166,0.0,3.294,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-crankcase-heater-40w.xml,58.202,58.202,35.936,35.936,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.271,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2122.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dse.xml,58.589,58.589,36.979,36.979,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.356,0.0,0.0,5.21,0.973,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,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.177,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2118.5,2655.5,2655.5,16.441,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.351,52.351,41.7,41.7,10.652,0.0,0.0,0.0,0.0,0.0,5.257,0.479,0.0,0.929,3.519,1.076,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,10.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.768,11.048,13.341,9.233,0.614,0.0,0.0,0.0,0.0,3615.3,3292.3,3615.3,24.195,16.402,0.0,3.472,3.645,0.513,7.532,0.631,10.105,-12.683,0.0,0.0,0.0,8.319,-0.065,4.808,0.0,0.729,0.0,6.812,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.109,55.109,40.702,40.702,14.406,0.0,0.0,0.0,0.0,0.0,3.945,0.335,0.0,1.389,3.519,1.076,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,14.406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.075,13.342,9.233,0.614,0.0,0.0,0.0,0.0,3462.4,3292.3,3462.4,24.193,16.402,0.0,3.435,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,7.753,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.433,52.433,37.627,37.627,14.806,0.0,0.0,0.0,0.0,0.0,2.981,0.185,0.0,1.042,2.342,0.638,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,14.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.021,15.108,13.578,9.233,0.614,0.0,0.0,0.0,0.0,2840.4,2815.8,2840.4,24.192,17.378,0.0,3.423,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.321,-0.065,4.808,0.0,0.729,0.0,8.106,-8.906,-2.499,0.0,-0.018,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.104,-0.166,0.0,2.311,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.404,52.404,37.949,37.949,14.455,0.0,0.0,0.0,0.0,0.0,2.935,0.235,0.0,1.755,2.378,0.206,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,14.455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.705,15.487,14.829,9.233,0.614,0.0,0.0,0.0,0.0,2832.4,2647.7,2832.4,24.546,18.191,0.0,3.362,3.646,0.513,7.535,0.631,10.108,-12.683,0.0,0.0,0.0,8.325,-0.065,4.808,0.0,0.729,0.0,9.832,-8.906,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.347,-0.061,-1.17,-3.105,-0.166,0.0,3.603,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.388,47.388,36.253,36.253,11.135,0.0,0.0,0.0,0.0,0.0,2.467,0.09,0.0,0.916,2.263,0.077,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,11.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,19.241,11.495,12.271,9.233,0.614,0.0,0.0,0.0,0.0,2572.3,2235.3,2572.3,19.297,13.794,0.0,3.614,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.73,0.0,3.178,-8.906,-2.499,0.0,0.029,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.102,-0.166,0.0,0.99,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-fractions.xml,92.606,92.606,46.833,46.833,45.773,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,8.1,1.711,9.004,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,0.0,45.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,42.722,0.0,29.448,9.146,0.612,0.0,0.0,5.0,77.0,2575.1,5162.1,5162.1,48.976,34.989,0.0,3.225,7.897,1.073,7.933,0.668,20.527,-25.252,0.0,0.0,0.0,9.073,-0.115,11.172,0.0,0.748,0.0,19.695,-10.961,-3.544,0.0,-0.381,-1.035,-0.1,2.663,-0.023,-2.118,23.314,0.0,0.0,0.0,-6.455,-0.103,-2.483,-6.345,-0.161,0.0,10.861,9.395,2.829,1354.8,997.6,11399.6,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,71257.0,33166.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,57.575,57.575,35.949,35.949,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.318,0.835,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,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.257,0.0,14.12,9.233,0.614,0.0,0.0,0.0,0.0,2130.2,3363.3,3363.3,22.359,18.576,0.0,3.579,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.219,-8.905,-2.499,0.0,-0.04,-0.464,-0.052,2.684,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.105,-0.166,0.0,2.856,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18409.0,4950.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,55.924,55.924,35.701,35.701,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.135,0.794,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,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.93,0.0,13.273,9.233,0.614,0.0,0.0,0.0,0.0,2126.5,3068.4,3068.4,20.271,15.91,0.0,3.625,3.644,0.513,7.528,0.631,10.097,-12.683,0.0,0.0,0.0,8.31,-0.062,4.806,0.0,0.729,0.0,2.851,-8.903,-2.499,0.0,-0.008,-0.465,-0.052,2.684,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.171,-3.105,-0.166,0.0,1.988,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,28613.0,4973.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15788.0,2330.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-defaults.xml,54.812,54.812,40.661,40.661,14.152,0.0,0.0,0.0,0.0,0.0,4.354,0.368,0.0,0.0,5.499,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,14.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.731,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,3047.2,3318.7,3318.7,18.194,11.921,0.0,3.744,3.643,0.513,7.524,0.631,10.098,-12.683,0.0,0.0,0.0,8.304,-0.065,4.807,0.0,0.73,0.0,1.557,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.096,-0.166,0.0,-0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,41910.0,24000.0,0.0,6.8,91.76,28213.0,4573.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-effective-rvalue.xml,58.34,58.34,36.077,36.077,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.413,0.858,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,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.848,0.0,14.453,9.233,0.614,0.0,0.0,0.0,0.0,2131.9,3421.7,3421.7,23.03,19.117,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.829,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.204,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18783.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,57.77,57.77,35.964,35.964,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.328,0.837,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,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,14.263,9.233,0.614,0.0,0.0,0.0,0.0,2130.2,3413.8,3413.8,22.446,19.037,0.0,3.567,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.807,0.0,0.73,0.0,4.423,-8.906,-2.499,0.0,-0.046,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.105,-0.166,0.0,3.061,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34498.0,10858.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20350.0,6892.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-percent.xml,59.562,59.562,36.281,36.281,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.565,0.893,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,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.808,0.0,15.122,9.233,0.614,0.0,0.0,0.0,0.0,2134.4,3597.9,3597.9,24.254,20.652,0.0,3.52,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.315,-0.064,4.807,0.0,0.729,0.0,5.821,-8.905,-2.499,0.0,-0.086,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.108,-0.166,0.0,3.896,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32661.0,9021.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20673.0,7215.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-elec-resistance-only.xml,46.441,46.441,46.441,46.441,0.0,0.0,0.0,0.0,0.0,0.0,16.025,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,5938.8,1637.3,5938.8,16.441,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-furnace-gas.xml,54.742,54.742,31.876,31.876,22.866,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,0.0,0.0,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,0.0,22.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,21.631,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2119.2,1874.1,2119.2,24.049,11.93,0.0,3.529,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.628,-8.905,-2.499,0.0,0.037,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.096,-0.166,0.0,-0.0,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only-ducted.xml,31.389,31.389,31.389,31.389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.906,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.91,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2149.5,2149.5,0.0,15.977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.015,-0.167,0.0,0.941,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only.xml,31.303,31.303,31.303,31.303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.82,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2011.5,2021.1,0.0,11.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,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-fireplace-wood-only.xml,51.755,51.755,30.417,30.417,0.0,0.0,0.0,21.337,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2020.8,1637.3,2020.8,16.997,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only-pilot-light.xml,56.726,56.726,30.417,30.417,0.0,0.0,26.309,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2020.8,1637.3,2020.8,16.997,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,51.755,51.755,30.417,30.417,0.0,0.0,21.337,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2020.8,1637.3,2020.8,16.997,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-coal-only.xml,53.637,53.637,31.004,31.004,0.0,0.0,0.0,0.0,0.0,22.632,0.0,0.588,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,22.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.049,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,56.563,56.563,56.563,56.563,0.0,0.0,0.0,0.0,0.0,0.0,20.485,0.367,0.0,0.0,4.414,0.858,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,0.0,20.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,7922.8,3422.3,7922.8,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-only.xml,52.251,52.251,52.251,52.251,0.0,0.0,0.0,0.0,0.0,0.0,21.247,0.588,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,0.0,21.41,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,8308.2,1637.3,8308.2,24.049,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,56.994,56.994,34.727,34.727,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.221,0.699,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.861,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3127.8,3127.8,23.034,19.623,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.074,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.106,-0.166,0.0,3.616,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,56.325,56.325,34.059,34.059,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,2.928,0.324,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,15.756,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,2866.3,2866.3,23.034,19.517,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.119,-0.464,-0.052,2.686,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.348,-0.06,-1.171,-3.109,-0.166,0.0,4.559,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,38.109,38.109,30.65,30.65,7.459,0.0,0.0,0.0,0.0,0.0,0.0,0.194,0.0,0.0,0.0,0.0,9.18,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,7.05,0.0,0.0,9.233,0.631,0.0,0.0,0.0,0.0,2067.8,1633.7,2067.8,18.155,0.0,0.0,2.849,2.792,0.391,5.359,0.413,7.471,-12.563,0.0,0.0,0.0,5.445,-0.06,3.485,0.0,0.573,0.0,1.812,-8.806,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-pilot.xml,58.546,58.546,31.004,31.004,27.541,0.0,0.0,0.0,0.0,0.0,0.0,0.588,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,27.541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.049,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only.xml,53.637,53.637,31.004,31.004,22.632,0.0,0.0,0.0,0.0,0.0,0.0,0.588,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,22.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,21.41,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.049,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-room-ac.xml,59.4,59.4,36.534,36.534,22.866,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,0.0,5.5,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,22.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,21.631,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2119.2,3318.8,3318.8,24.049,11.922,0.0,3.529,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.628,-8.905,-2.499,0.0,0.037,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.096,-0.166,0.0,-0.0,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-oil-only.xml,53.637,53.637,31.004,31.004,0.0,22.632,0.0,0.0,0.0,0.0,0.0,0.588,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,22.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,21.41,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.049,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-propane-only.xml,53.637,53.637,31.004,31.004,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.588,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,22.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,21.41,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.049,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,53.637,53.637,31.004,31.004,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.588,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,22.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,21.41,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.049,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,58.586,58.586,37.008,37.008,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.21,0.973,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,21.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,16.339,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2122.4,2655.5,2655.5,16.605,11.921,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,39.102,39.102,39.102,39.102,0.0,0.0,0.0,0.0,0.0,0.0,4.844,0.455,0.0,0.0,2.498,0.865,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,0.0,19.326,0.0,13.241,9.233,0.614,0.0,0.0,0.0,0.0,3192.7,2551.8,3192.7,21.063,15.833,0.0,3.61,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,3.264,-8.906,-2.499,0.0,-0.005,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,1.97,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.054,34.054,34.054,34.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.77,0.8,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2856.9,2856.9,0.0,15.858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.026,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.054,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,39.557,39.557,39.557,39.557,0.0,0.0,0.0,0.0,0.0,0.0,5.006,0.481,0.0,0.0,2.744,0.887,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,0.0,19.426,0.0,13.269,9.233,0.614,0.0,0.0,0.0,0.0,3279.2,2668.4,3279.2,21.428,15.96,0.0,3.606,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.729,0.0,3.366,-8.906,-2.499,0.0,-0.006,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,1.997,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.24,36.24,36.24,36.24,0.0,0.0,0.0,0.0,0.0,0.0,5.076,0.748,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,0.0,19.84,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,3365.5,1637.3,3365.5,22.286,0.0,0.0,3.59,3.648,0.513,7.512,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.956,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,37.188,37.188,37.188,37.188,0.0,0.0,0.0,0.0,0.0,0.0,2.756,0.259,0.0,0.0,2.816,0.921,9.159,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.854,0.0,13.865,9.233,0.609,0.0,0.0,0.0,0.0,2944.8,2680.5,2944.8,17.476,16.592,0.0,3.777,3.774,0.532,5.726,0.657,10.442,-12.583,0.0,0.0,0.0,1.936,-0.042,4.868,0.0,0.74,0.0,1.954,-8.8,-2.478,0.0,-0.092,-0.547,-0.063,0.78,-0.05,-1.683,11.83,0.0,0.0,0.0,-3.437,-0.036,-1.251,-3.28,-0.178,0.0,2.081,7.972,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.53,39.53,39.53,39.53,0.0,0.0,0.0,0.0,0.0,0.0,4.996,0.479,0.0,0.0,2.729,0.885,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,0.0,19.42,0.0,13.267,9.233,0.614,0.0,0.0,0.0,0.0,3274.3,2660.1,3274.3,21.403,15.95,0.0,3.606,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.729,0.0,3.36,-8.906,-2.499,0.0,-0.006,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,1.995,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.838,48.838,48.838,48.838,0.0,0.0,0.0,0.0,0.0,0.0,12.144,0.674,0.562,0.018,4.281,0.72,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,0.0,22.795,0.579,13.89,9.233,0.614,0.0,0.0,0.0,0.0,7067.6,3549.0,7067.6,24.719,17.543,0.0,3.48,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.83,-8.906,-2.499,0.0,-0.033,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.635,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.207,44.207,44.207,44.207,0.0,0.0,0.0,0.0,0.0,0.0,9.174,0.559,0.519,0.016,2.913,0.586,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,0.0,24.057,0.535,14.223,9.233,0.614,0.0,0.0,0.0,0.0,7050.7,3143.5,7050.7,24.714,18.875,0.0,3.43,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,8.132,-8.906,-2.499,0.0,-0.046,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.972,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.654,43.654,43.654,43.654,0.0,0.0,0.0,0.0,0.0,0.0,9.046,0.71,0.318,0.016,2.902,0.221,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,0.0,26.144,0.335,15.433,9.233,0.614,0.0,0.0,0.0,0.0,7150.0,3014.4,7150.0,25.035,18.909,0.0,3.35,3.647,0.513,7.536,0.632,10.108,-12.689,0.0,0.0,0.0,8.327,-0.064,4.808,0.0,0.729,0.0,10.28,-8.908,-2.5,0.0,-0.101,-0.463,-0.052,2.687,-0.026,-1.405,11.724,0.0,0.0,0.0,-6.343,-0.06,-1.17,-3.108,-0.166,0.0,4.23,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.316,60.316,36.877,36.877,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,5.362,0.793,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,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.371,9.233,0.614,0.0,0.0,0.0,5.0,2117.6,3525.8,3525.8,24.077,18.323,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.099,-0.464,-0.052,2.686,-0.027,-1.41,11.73,0.0,0.0,0.0,-6.35,-0.059,-1.172,-3.109,-0.166,0.0,4.146,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.76,58.76,35.32,35.32,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.934,0.665,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,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.787,9.233,0.614,0.0,0.0,0.0,3.0,2117.6,3218.9,3218.9,24.077,18.785,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.117,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.109,-0.166,0.0,4.568,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.093,58.093,34.654,34.654,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.516,0.417,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,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,16.445,9.233,0.614,0.0,0.0,0.0,8.0,2117.6,2988.0,2988.0,24.077,18.031,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.154,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.114,-0.166,0.0,5.274,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-only.xml,54.991,54.991,30.874,30.874,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.457,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,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.643,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2096.4,1637.3,2096.4,25.36,0.0,0.0,3.488,3.648,0.513,7.514,0.632,10.112,-12.683,0.0,0.0,0.0,8.148,-0.067,4.809,0.0,0.73,0.0,6.844,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.523,41.523,41.523,41.523,0.0,0.0,0.0,0.0,0.0,0.0,6.467,0.49,0.0,0.0,3.285,0.84,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,0.0,20.415,0.0,13.815,9.233,0.614,0.0,0.0,0.0,0.0,3520.5,2848.0,3520.5,22.479,17.105,0.0,3.573,3.644,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.729,0.0,4.382,-8.906,-2.499,0.0,-0.03,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.106,-0.166,0.0,2.557,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.124,34.124,34.124,34.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.473,0.168,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.745,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,2967.7,2967.7,0.0,14.329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.017,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.02,-0.167,0.0,1.829,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.928,40.928,40.928,40.928,0.0,0.0,0.0,0.0,0.0,0.0,6.996,0.563,0.03,0.002,2.747,0.15,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,0.0,19.361,0.032,12.566,9.233,0.614,0.0,0.0,0.0,0.0,4486.2,2367.7,4486.2,19.462,14.238,0.0,3.609,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.73,0.0,3.301,-8.906,-2.499,0.0,0.02,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.103,-0.166,0.0,1.295,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,33.441,33.441,33.441,33.441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.878,0.079,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.397,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,2445.0,2445.0,0.0,14.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.002,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.018,-0.167,0.0,1.467,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,33.29,33.29,33.29,33.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.78,0.027,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,2260.1,2260.1,0.0,11.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.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.76,32.76,32.76,32.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.201,0.075,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.909,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2333.0,2333.0,0.0,13.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.016,-0.167,0.0,0.965,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.303,36.303,36.303,36.303,0.0,0.0,0.0,0.0,0.0,0.0,5.585,0.293,0.009,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,0.0,18.718,0.009,0.0,9.233,0.588,0.0,0.0,0.0,0.0,3854.0,1637.3,3854.0,19.299,0.0,0.0,3.629,3.647,0.513,7.511,0.632,10.112,-12.683,0.0,0.0,0.0,8.146,-0.069,4.81,0.0,0.73,0.0,2.807,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,38.715,38.715,38.715,38.715,0.0,0.0,0.0,0.0,0.0,0.0,5.631,0.295,0.009,0.0,2.263,0.077,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,0.0,18.907,0.009,12.271,9.233,0.614,0.0,0.0,0.0,0.0,3854.0,2235.3,3854.0,19.299,13.794,0.0,3.625,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,2.833,-8.906,-2.499,0.0,0.029,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.102,-0.166,0.0,0.99,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.244,38.244,38.244,38.244,0.0,0.0,0.0,0.0,0.0,0.0,5.212,0.115,0.362,0.0,2.087,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,0.0,16.178,0.362,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4434.0,2211.9,4434.0,16.441,11.922,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,44.937,44.937,35.936,35.936,9.001,0.0,0.0,0.0,0.0,0.0,3.069,0.052,0.0,0.271,2.074,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,9.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,17.336,7.472,11.194,9.233,0.614,0.0,0.0,1.0,0.0,2949.6,2213.2,2949.6,17.266,12.084,0.0,3.742,3.641,0.512,7.519,0.63,10.092,-12.69,0.0,0.0,0.0,8.311,-0.063,5.886,0.0,0.729,0.0,0.111,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.435,-3.05,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,24589.0,950.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.669,44.669,35.768,35.768,8.901,0.0,0.0,0.0,0.0,0.0,2.896,0.048,0.0,0.268,2.087,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,8.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,16.569,7.389,11.294,9.233,0.614,0.0,0.0,1.0,0.0,2862.7,2211.9,2862.7,17.579,11.922,0.0,3.724,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.306,-0.065,4.807,0.0,0.73,0.0,0.41,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.933,47.933,35.678,35.678,0.0,12.255,0.0,0.0,0.0,0.0,3.066,0.069,0.0,0.0,2.074,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.0,12.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,17.225,7.353,11.194,9.233,0.614,0.0,0.0,2.0,0.0,2949.6,2213.2,2949.6,16.997,12.084,0.0,3.742,3.641,0.512,7.519,0.63,10.092,-12.69,0.0,0.0,0.0,8.311,-0.063,5.886,0.0,0.729,0.0,0.0,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.435,-3.05,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.855,37.855,37.855,37.855,0.0,0.0,0.0,0.0,0.0,0.0,5.053,0.096,0.0,0.0,2.239,0.028,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,0.0,16.178,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,3544.3,2192.8,3544.3,16.441,11.921,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,37.855,37.855,37.855,37.855,0.0,0.0,0.0,0.0,0.0,0.0,5.053,0.096,0.0,0.0,2.239,0.028,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,0.0,16.178,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,3544.3,2192.8,3544.3,16.441,11.921,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,65.993,65.993,51.881,51.881,6.997,3.518,3.597,0.0,0.0,0.0,13.402,0.841,0.196,0.008,6.424,0.569,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.964,0.204,19.533,9.233,0.614,0.0,0.0,0.0,6.0,6468.0,4018.0,6468.0,37.55,22.981,0.0,3.431,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.887,0.0,0.728,0.0,14.99,-8.914,-2.501,0.0,-0.137,-0.455,-0.051,2.715,-0.024,-1.38,11.717,0.0,0.0,0.0,-6.3,-0.058,-1.436,-3.089,-0.164,0.0,8.444,7.864,2.008,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36744.0,13104.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23818.0,10360.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-none.xml,19.74,19.74,19.74,19.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,4.61,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,0.0,0.0,4.572,0.33,0.0,0.0,0.0,0.0,1280.6,1085.3,1280.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,1354.8,997.6,8540.7,2104.5,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1252.0,0.0,452.0,800.0 +base-hvac-ptac-with-heating-electricity.xml,50.999,50.999,50.999,50.999,0.0,0.0,0.0,0.0,0.0,0.0,16.19,0.0,0.0,0.0,4.369,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,0.0,16.177,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,5938.8,2889.9,5938.8,16.441,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,55.046,55.046,34.808,34.808,20.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.369,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,20.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,16.177,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2021.3,2889.9,2889.9,16.441,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac.xml,34.737,34.737,34.737,34.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.254,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3208.1,3208.1,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp-heating-capacity-17f.xml,41.94,41.94,41.94,41.94,0.0,0.0,0.0,0.0,0.0,0.0,7.228,0.0,0.047,0.0,4.225,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,0.0,16.178,0.047,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4807.5,2870.1,4807.5,16.441,11.921,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.027,-1.409,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.171,-3.096,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp.xml,41.94,41.94,41.94,41.94,0.0,0.0,0.0,0.0,0.0,0.0,7.228,0.0,0.047,0.0,4.225,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,0.0,16.178,0.047,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4807.5,2870.1,4807.5,16.441,11.921,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.027,-1.409,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.171,-3.096,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-33percent.xml,32.349,32.349,32.349,32.349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.866,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.615,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2292.9,2292.9,0.0,3.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007,-0.156,-0.017,0.879,-0.011,-0.48,3.911,0.0,0.0,0.0,-2.283,-0.021,-0.394,-0.994,-0.055,0.0,0.0,2.642,0.672,1354.8,997.6,11399.5,2615.8,0.0,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-ceer.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,0.0,5.365,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3635.9,3635.9,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-detailed-setpoints.xml,34.597,34.597,34.597,34.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.12,0.0,9.201,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.146,9.233,0.653,0.0,0.0,0.0,0.0,2021.1,3402.3,3402.3,0.0,10.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.145,-0.648,-0.078,2.174,-0.077,-1.993,11.85,0.0,0.0,0.0,-7.664,-0.066,-1.338,-3.396,-0.2,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only.xml,35.838,35.838,35.838,35.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.355,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3632.0,3632.0,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-heating.xml,52.129,52.129,52.129,52.129,0.0,0.0,0.0,0.0,0.0,0.0,16.19,0.0,0.0,0.0,5.499,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,0.0,16.177,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,5938.8,3318.7,5938.8,16.441,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,41.94,41.94,41.94,41.94,0.0,0.0,0.0,0.0,0.0,0.0,7.228,0.0,0.047,0.0,4.225,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,0.0,16.178,0.047,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4807.5,2870.1,4807.5,16.441,11.921,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.027,-1.409,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.171,-3.096,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,58.13,58.13,36.028,36.028,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.375,0.848,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,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.698,0.0,14.285,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3421.9,3421.9,23.034,19.118,0.0,3.516,3.607,0.508,7.531,0.617,9.947,-12.591,0.0,0.0,0.0,8.244,-0.034,4.753,0.0,0.723,0.0,4.802,-8.79,-2.477,0.0,-0.098,-0.501,-0.057,2.688,-0.04,-1.559,11.822,0.0,0.0,0.0,-6.415,-0.03,-1.222,-3.122,-0.173,0.0,3.171,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,57.163,57.163,35.466,35.466,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.913,0.755,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,0.0,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.946,0.0,12.447,9.233,0.615,0.0,0.0,101.0,55.0,2152.1,3586.3,3586.3,34.947,20.39,0.0,3.517,3.579,0.503,7.523,0.608,9.828,-12.674,0.0,0.0,0.0,8.679,0.006,4.652,0.0,0.727,0.0,4.499,-8.859,-2.496,0.0,-0.073,-0.502,-0.058,2.615,-0.042,-1.591,11.74,0.0,0.0,0.0,-6.668,-0.004,-1.223,-3.407,-0.174,0.0,2.49,7.92,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,56.534,56.534,35.618,35.618,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.048,0.783,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,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.498,0.0,13.071,9.233,0.616,0.0,0.0,0.0,14.0,2137.2,3597.9,3597.9,25.332,20.814,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.197,-0.023,4.639,0.0,0.724,0.0,4.386,-8.884,-2.501,0.0,-0.057,-0.497,-0.057,2.571,-0.04,-1.578,11.697,0.0,0.0,0.0,-6.644,-0.024,-1.204,-3.355,-0.177,0.0,2.635,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,41.524,41.524,34.236,34.236,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.107,0.54,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.0,9.174,9.233,0.645,0.0,0.0,0.0,0.0,2102.1,3212.6,3212.6,17.397,16.358,0.0,2.853,2.787,0.39,5.357,0.411,7.457,-12.563,0.0,0.0,0.0,5.504,-0.06,3.479,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.125,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.261,-5.126,-0.188,0.0,2.129,8.003,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-space-heater-gas-only.xml,46.44,46.44,30.416,30.416,16.024,0.0,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,0.0,16.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2021.3,1637.3,2021.3,16.441,0.0,0.0,3.745,3.645,0.513,7.507,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.808,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-oil-only.xml,51.738,51.738,30.482,30.482,0.0,21.257,0.0,0.0,0.0,0.0,0.0,0.064,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,21.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,17.056,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2023.9,1637.3,2023.9,16.997,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-wood-pellets-only.xml,51.738,51.738,30.482,30.482,0.0,0.0,0.0,0.0,21.257,0.0,0.0,0.064,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,21.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,17.056,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2023.9,1637.3,2023.9,16.997,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,55.746,55.746,35.573,35.573,20.173,0.0,0.0,0.0,0.0,0.0,0.0,0.317,0.0,0.0,4.04,0.775,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,20.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,0.0,0.0,0.0,0.0,0.0,18.874,0.0,13.019,9.233,0.614,0.0,0.0,0.0,0.0,2123.7,3051.0,3051.0,20.401,15.91,0.0,3.624,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.311,-0.064,4.807,0.0,0.73,0.0,2.807,-8.905,-2.499,0.0,0.006,-0.465,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.102,-0.166,0.0,1.76,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,28898.0,19717.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17384.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized.xml,48.397,48.397,33.149,33.149,15.248,0.0,0.0,0.0,0.0,0.0,0.0,0.246,0.0,0.0,2.091,0.358,9.177,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,6.336,9.233,0.629,0.0,0.0,3652.0,2624.0,2089.4,1834.1,2089.4,3.839,2.674,0.0,2.699,2.924,0.409,5.375,0.449,7.904,-12.797,0.0,0.0,0.0,4.76,-0.121,3.617,0.0,0.6,0.0,9.541,-9.006,-2.517,0.0,-0.382,-0.821,-0.104,1.556,-0.119,-2.517,11.616,0.0,0.0,0.0,-8.136,-0.065,-1.431,-5.137,-0.237,0.0,2.648,7.787,1.992,1354.8,997.6,11399.6,2615.9,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17384.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-wall-furnace-elec-only.xml,46.767,46.767,46.767,46.767,0.0,0.0,0.0,0.0,0.0,0.0,16.351,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,6033.1,1637.3,6033.1,16.441,0.0,0.0,3.745,3.645,0.513,7.507,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.808,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-ceiling-fans.xml,58.711,58.711,36.466,36.466,22.245,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.306,0.831,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,0.0,22.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,20.832,0.0,14.07,9.233,0.612,0.0,0.0,0.0,0.0,2131.9,3748.6,3748.6,23.034,18.911,0.0,3.557,3.645,0.513,7.528,0.631,10.101,-12.683,0.0,0.0,0.0,8.298,-0.064,4.807,0.0,0.729,0.0,4.828,-8.905,-2.499,0.0,-0.096,-0.512,-0.059,2.557,-0.038,-1.551,11.73,0.0,0.0,0.0,-6.547,-0.06,-1.206,-3.271,-0.174,0.0,3.088,8.396,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-holiday.xml,58.544,58.544,36.277,36.277,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2397.2,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-kwh-per-year.xml,60.06,60.06,39.685,39.685,20.375,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.649,0.916,9.162,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.08,0.0,15.473,9.233,0.612,0.0,0.0,0.0,0.0,2415.9,3928.0,3928.0,22.766,19.626,0.0,3.59,3.667,0.516,7.602,0.636,10.162,-12.654,0.0,0.0,0.0,8.406,-0.069,4.817,0.0,0.731,0.0,4.463,-8.891,-4.249,0.0,-0.097,-0.498,-0.057,2.592,-0.035,-1.503,11.743,0.0,0.0,0.0,-6.501,-0.065,-1.196,-3.239,-0.17,0.0,3.373,7.886,3.428,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-mixed.xml,58.522,58.522,36.256,36.256,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.163,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2140.7,3428.0,3428.0,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none-ceiling-fans.xml,56.286,56.286,31.268,31.268,25.018,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,3.983,0.752,9.163,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.0,12.694,9.233,0.614,0.0,0.0,0.0,0.0,1751.9,3225.3,3225.3,23.41,18.18,0.0,3.512,3.616,0.509,7.437,0.625,10.031,-12.718,0.0,0.0,0.0,8.185,-0.059,4.798,0.0,0.728,0.0,5.362,-8.928,0.0,0.0,-0.037,-0.463,-0.052,2.696,-0.025,-1.404,11.719,0.0,0.0,0.0,-6.311,-0.055,-1.167,-3.071,-0.168,0.0,2.857,8.374,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none.xml,55.917,55.917,30.878,30.878,25.039,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,4.089,0.778,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,0.0,25.039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.45,0.0,13.071,9.233,0.615,0.0,0.0,0.0,0.0,1751.9,3516.2,3516.2,23.41,18.394,0.0,3.512,3.615,0.509,7.439,0.625,10.03,-12.718,0.0,0.0,0.0,8.2,-0.059,4.798,0.0,0.728,0.0,5.366,-8.928,0.0,0.0,0.002,-0.415,-0.045,2.824,-0.014,-1.261,11.719,0.0,0.0,0.0,-6.115,-0.055,-1.132,-2.911,-0.16,0.0,2.973,7.851,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-location-AMY-2012.xml,67.13,67.13,34.953,34.953,32.177,0.0,0.0,0.0,0.0,0.0,0.0,0.523,0.0,0.0,3.0,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,0.0,32.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,30.128,0.0,8.862,9.674,0.619,0.0,0.0,0.0,0.0,2146.6,2889.6,2889.6,23.491,15.959,0.0,4.266,4.384,0.623,9.837,0.807,12.591,-13.801,0.0,0.0,0.0,10.991,-0.092,5.205,0.0,0.773,0.0,7.113,-10.172,-2.863,0.0,-0.007,-0.342,-0.042,1.616,-0.044,-1.659,9.941,0.0,0.0,0.0,-7.422,-0.082,-0.883,-2.44,-0.097,0.0,2.153,6.66,1.661,1358.5,1000.6,11587.5,2659.0,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18522.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 +base-location-baltimore-md.xml,39.279,39.279,30.07,30.07,9.208,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,5.174,1.068,8.66,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,9.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,0.0,0.0,8.506,0.0,17.289,8.551,0.66,0.0,0.0,0.0,0.0,1686.0,2554.9,2554.9,13.608,14.218,0.0,3.492,3.345,0.0,0.0,0.722,9.055,-8.541,0.0,0.0,3.31,0.0,-0.336,2.06,0.0,0.803,0.0,1.498,-5.842,-1.3,0.0,-0.135,-0.628,0.0,0.0,-0.007,0.03,12.018,0.0,0.0,-0.954,0.0,-0.329,-0.438,-1.537,-0.211,0.0,1.593,6.742,1.348,1354.8,997.6,11035.9,2719.3,0.0,24000.0,24000.0,0.0,17.24,91.22,18296.0,4491.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,15129.0,1173.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1875.0,594.0,480.0,800.0 +base-location-capetown-zaf.xml,28.302,28.302,28.142,28.142,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,4.338,1.043,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.0,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,16.618,7.422,0.693,0.0,0.0,0.0,0.0,1871.1,2278.8,2302.0,4.202,12.626,0.0,1.596,1.352,0.0,0.0,0.569,4.539,-5.631,0.0,0.0,2.602,0.0,-1.072,0.757,0.0,0.326,0.0,0.023,-4.303,-0.792,0.0,-0.907,-1.638,0.0,0.0,-0.468,-0.619,17.811,0.0,0.0,-4.251,0.0,-1.071,-0.601,-2.04,-0.407,0.0,1.031,8.28,1.855,1354.8,997.6,10580.5,2607.1,0.0,24000.0,24000.0,0.0,41.0,84.38,13253.0,5426.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13721.0,2064.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,846.0,27.0,19.0,800.0 +base-location-dallas-tx.xml,34.583,34.583,32.861,32.861,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.988,1.92,6.814,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,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.589,0.0,31.099,6.675,0.573,0.0,0.0,0.0,0.0,1847.9,2862.1,2862.1,9.691,15.097,0.0,1.711,1.591,0.0,0.0,0.368,4.651,-4.907,0.0,0.0,0.0,1.212,-0.34,0.998,0.0,0.383,0.0,0.043,-3.597,-0.743,0.0,0.508,-0.048,0.0,0.0,0.188,2.608,17.264,0.0,0.0,0.0,1.812,-0.335,-0.366,-1.955,-0.099,0.0,0.35,9.56,1.904,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-location-duluth-mn.xml,70.749,70.749,29.938,29.938,40.81,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,2.39,0.361,11.623,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,40.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.978,0.0,5.779,11.597,0.832,0.0,0.0,0.0,0.0,1758.5,2473.2,2473.2,26.428,11.644,0.0,7.032,7.03,0.0,0.0,1.592,19.667,-13.103,0.0,0.0,9.943,0.0,-0.366,6.402,0.0,0.0,0.0,7.538,-6.247,-1.915,0.0,-0.474,-0.829,0.0,0.0,-0.101,-0.954,8.135,0.0,0.0,-1.619,0.0,-0.366,-0.533,-1.023,0.0,0.0,0.367,2.618,0.732,1354.8,997.6,12167.9,2889.4,0.0,36000.0,24000.0,0.0,-13.72,81.14,31136.0,6137.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11767.0,274.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1210.0,246.0,164.0,800.0 +base-location-helena-mt.xml,77.942,77.942,35.478,35.478,42.465,0.0,0.0,0.0,0.0,0.0,0.0,1.04,0.0,0.0,2.442,0.387,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,0.0,42.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.108,0.0,6.492,10.479,0.625,0.0,0.0,0.0,0.0,2238.1,2943.0,2943.0,30.328,14.97,0.0,5.359,5.464,0.773,11.523,1.049,15.462,-15.392,0.0,0.0,0.0,13.841,-0.19,7.82,0.0,1.206,0.0,8.245,-12.135,-3.367,0.0,0.002,-0.26,-0.028,1.289,0.008,-0.496,8.386,0.0,0.0,0.0,-6.087,-0.184,-0.686,-2.363,-0.123,0.0,1.356,4.654,1.142,1354.8,997.6,11851.9,2719.7,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17992.0,5113.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,81.0,0.0,-719.0,800.0 +base-location-honolulu-hi.xml,35.996,35.996,35.996,35.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.054,2.996,4.816,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,0.0,48.75,4.572,0.55,0.0,0.0,0.0,0.0,2121.9,2146.3,2334.8,0.0,13.008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.238,0.753,0.0,0.0,0.303,5.283,20.458,0.0,0.0,0.0,6.02,-0.004,-0.044,-1.672,0.062,0.0,0.706,13.134,2.647,1354.8,997.6,8540.5,2104.4,0.0,12000.0,24000.0,0.0,63.32,89.06,3432.0,606.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,12993.0,-9.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1831.0,580.0,452.0,800.0 +base-location-miami-fl.xml,35.155,35.155,35.155,35.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.285,2.792,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,0.0,0.0,45.284,4.712,0.551,0.0,0.0,0.0,0.0,2098.6,2413.6,2413.6,0.0,13.449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.018,0.586,0.0,0.0,0.307,4.475,19.646,0.0,0.0,0.0,5.54,-0.004,-0.213,-2.328,-0.004,0.0,0.653,13.135,2.647,1354.8,997.6,8625.1,2125.3,0.0,12000.0,24000.0,0.0,51.62,90.68,8634.0,810.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,646.0,13278.0,-259.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2519.0,954.0,765.0,800.0 +base-location-phoenix-az.xml,38.855,38.855,38.855,38.855,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.529,3.014,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.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,0.0,53.038,4.955,0.556,0.0,0.0,0.0,0.0,2458.0,3486.4,3486.4,0.564,18.402,0.0,0.703,0.517,0.0,0.0,0.205,2.241,-1.843,0.0,0.0,0.0,-0.075,-0.467,0.365,0.0,0.122,0.0,-0.0,-1.611,-0.274,0.0,1.761,1.4,0.0,0.0,0.802,6.859,24.223,0.0,0.0,0.0,7.006,-0.479,0.01,-3.136,0.116,0.0,0.92,11.529,2.373,1354.8,997.6,8429.2,2077.0,0.0,24000.0,24000.0,0.0,41.36,108.14,13297.0,1076.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1035.0,18550.0,658.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 +base-location-portland-or.xml,37.297,37.297,27.76,27.76,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,2.946,0.564,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,0.0,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,9.043,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2900.1,2900.1,8.448,14.135,0.0,3.436,3.276,0.0,0.0,0.748,8.757,-8.143,0.0,0.0,6.216,0.0,-0.442,1.469,0.0,0.81,0.0,1.633,-7.49,-1.648,0.0,-0.327,-0.797,0.0,0.0,-0.01,-0.756,10.358,0.0,0.0,-2.964,0.0,-0.439,-0.366,-1.84,-0.257,0.0,0.567,5.094,0.999,1354.8,997.6,11239.5,2769.4,0.0,24000.0,24000.0,0.0,28.58,87.08,17543.0,6253.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,15209.0,2155.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 +base-mechvent-balanced.xml,79.7,79.7,37.912,37.912,41.788,0.0,0.0,0.0,0.0,0.0,0.0,0.689,0.0,0.0,4.192,0.791,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,0.0,41.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.138,0.0,13.265,9.233,0.62,0.0,0.0,0.0,2.0,2238.9,3658.1,3658.1,32.385,20.91,0.0,3.502,3.716,0.523,7.451,0.654,10.375,-12.838,0.0,0.0,0.0,8.166,-0.114,5.497,0.0,15.075,0.0,8.573,-9.173,-2.568,0.0,0.144,-0.259,-0.023,3.003,0.031,-0.717,11.576,0.0,0.0,0.0,-5.946,-0.11,-1.02,-2.551,-3.554,0.0,3.224,7.611,1.941,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5342.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-bath-kitchen-fans.xml,60.123,60.123,36.171,36.171,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.376,0.847,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,0.0,23.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,22.43,0.0,14.266,9.233,0.614,0.0,0.0,0.0,0.0,2165.4,3616.0,3616.0,24.906,20.551,0.0,3.547,3.643,0.513,7.527,0.631,10.093,-12.692,0.0,0.0,0.0,8.326,-0.059,4.321,0.0,2.474,0.0,5.168,-8.912,-2.501,0.0,-0.042,-0.451,-0.05,2.727,-0.023,-1.37,11.721,0.0,0.0,0.0,-6.275,-0.056,-1.046,-3.038,-0.687,0.0,3.188,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,73.049,73.049,37.818,37.818,35.231,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,0.0,4.282,0.816,9.167,0.0,0.0,4.51,0.0,0.334,1.695,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.997,0.0,13.701,9.233,0.618,0.0,0.0,0.0,0.0,2170.0,3598.0,3598.0,29.391,20.852,0.0,3.484,3.659,0.515,7.505,0.637,10.165,-12.749,0.0,0.0,0.0,8.338,-0.07,1.505,0.0,13.86,0.0,7.362,-9.0,-2.522,0.0,0.036,-0.367,-0.038,2.917,0.001,-1.081,11.664,0.0,0.0,0.0,-5.978,-0.066,-0.256,-2.751,-3.283,0.0,3.25,7.782,1.988,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-dse.xml,73.164,73.164,38.774,38.774,34.39,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,5.004,0.911,9.167,0.0,0.0,4.51,0.0,0.334,1.848,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.747,0.0,10.529,9.233,0.618,0.0,0.0,0.0,0.0,2168.2,2842.4,2842.4,21.244,13.449,0.0,3.757,3.654,0.514,7.497,0.636,10.158,-12.737,0.0,0.0,0.0,8.324,-0.073,1.505,0.0,13.737,0.0,0.0,-8.997,-2.521,0.0,0.127,-0.369,-0.038,2.916,0.001,-1.083,11.676,0.0,0.0,0.0,-5.982,-0.069,-0.256,-2.741,-3.253,0.0,0.0,7.785,1.989,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-evap-cooler-only-ducted.xml,34.169,34.169,34.169,34.169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.914,9.231,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,0.0,0.0,11.391,9.233,0.687,0.0,0.0,0.0,0.0,2121.2,2220.9,2220.9,0.0,18.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.146,-0.36,-0.036,2.984,-0.004,-1.109,11.85,0.0,0.0,0.0,-6.577,-0.059,-0.257,-2.577,-3.1,0.0,0.643,8.012,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,70.269,70.269,36.472,36.472,33.797,0.0,0.0,0.0,0.0,0.0,0.0,0.558,0.0,0.0,4.194,0.795,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,0.0,33.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,31.654,0.0,13.35,9.233,0.619,0.0,0.0,0.0,0.0,2139.0,3727.6,3727.6,29.392,20.838,0.0,3.517,3.68,0.518,7.479,0.643,10.242,-12.776,0.0,0.0,0.0,8.264,-0.086,1.917,0.0,12.478,0.0,7.088,-9.068,-2.54,0.0,0.091,-0.314,-0.031,2.98,0.015,-0.906,11.637,0.0,0.0,0.0,-5.925,-0.082,-0.256,-2.616,-4.008,0.0,3.173,7.714,1.97,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-supply.xml,72.39,72.39,36.498,36.498,35.891,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.2,0.796,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,0.0,35.891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.616,0.0,13.348,9.233,0.618,0.0,0.0,0.0,0.0,2140.2,3598.1,3598.1,29.391,20.842,0.0,3.49,3.667,0.516,7.492,0.64,10.201,-12.763,0.0,0.0,0.0,8.307,-0.079,1.508,0.0,14.421,0.0,7.476,-9.032,-2.53,0.0,0.066,-0.339,-0.034,2.957,0.009,-0.986,11.65,0.0,0.0,0.0,-5.933,-0.075,-0.247,-2.659,-3.886,0.0,3.198,7.75,1.98,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis.xml,74.26,74.26,37.75,37.75,36.51,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.229,0.802,9.168,0.0,0.0,4.51,0.0,0.334,1.672,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.195,0.0,13.452,9.233,0.618,0.0,0.0,0.0,0.0,2170.0,3598.0,3598.0,29.39,20.835,0.0,3.49,3.703,0.521,7.473,0.651,10.331,-12.78,0.0,0.0,0.0,8.223,-0.114,1.519,0.0,14.05,0.0,8.491,-9.096,-2.548,0.0,0.142,-0.305,-0.029,2.935,0.02,-0.861,11.633,0.0,0.0,0.0,-6.011,-0.11,-0.235,-2.663,-3.054,0.0,2.492,7.686,1.962,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv-atre-asre.xml,65.165,65.165,37.942,37.942,27.222,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.407,0.852,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,0.0,27.222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.494,0.0,14.334,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3944.9,3944.9,25.351,20.26,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.906,0.0,5.81,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.057,-1.258,-2.954,-0.853,0.0,3.261,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv.xml,65.168,65.168,37.942,37.942,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.407,0.852,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,0.0,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.497,0.0,14.334,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3944.9,3944.9,25.352,20.261,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.909,0.0,5.811,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.258,-2.954,-0.854,0.0,3.261,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19144.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust-rated-flow-rate.xml,73.934,73.934,36.908,36.908,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.168,0.787,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,0.0,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.678,0.0,13.2,9.233,0.619,0.0,0.0,0.0,0.0,2172.5,3654.8,3654.8,29.442,20.863,0.0,3.5,3.682,0.518,7.48,0.643,10.243,-12.791,0.0,0.0,0.0,8.263,-0.082,1.462,0.0,15.396,0.0,7.675,-9.072,-2.541,0.0,0.094,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.923,-0.078,-0.232,-2.607,-4.199,0.0,3.184,7.711,1.968,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust.xml,73.934,73.934,36.908,36.908,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.168,0.787,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,0.0,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.678,0.0,13.2,9.233,0.619,0.0,0.0,0.0,0.0,2172.5,3654.8,3654.8,29.442,20.863,0.0,3.5,3.682,0.518,7.48,0.643,10.243,-12.791,0.0,0.0,0.0,8.263,-0.082,1.462,0.0,15.396,0.0,7.675,-9.072,-2.541,0.0,0.094,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.923,-0.078,-0.232,-2.607,-4.199,0.0,3.184,7.711,1.968,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv-asre.xml,65.165,65.165,37.946,37.946,27.22,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.409,0.853,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,0.0,27.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,25.492,0.0,14.336,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3946.1,3946.1,25.35,20.261,0.0,3.52,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.904,0.0,5.81,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.057,-1.258,-2.954,-0.852,0.0,3.263,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv.xml,65.168,65.168,37.946,37.946,27.223,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.409,0.853,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,0.0,27.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.495,0.0,14.336,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3946.1,3946.1,25.351,20.262,0.0,3.52,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.906,0.0,5.81,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.258,-2.954,-0.853,0.0,3.263,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19144.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-multiple.xml,80.868,80.868,38.381,38.381,42.487,0.0,0.0,0.0,0.0,0.0,0.0,0.698,0.0,0.0,4.557,0.697,9.171,0.0,0.0,4.51,0.0,0.334,1.575,0.0,0.0,0.405,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.794,0.0,11.684,9.233,0.622,0.0,0.0,0.0,22.0,2289.0,3646.3,3646.3,35.904,22.624,0.0,3.183,3.709,0.522,7.491,0.652,10.33,-12.791,0.0,0.0,0.0,8.289,-0.106,3.845,0.0,9.548,0.0,16.428,-9.091,-2.547,0.0,0.052,-0.213,-0.016,3.196,0.041,-0.606,11.623,0.0,0.0,0.0,-5.618,-0.101,-0.613,0.0,-2.152,-8.169,4.731,7.695,1.963,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24528.0,10278.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-supply.xml,72.517,72.517,36.979,36.979,35.538,0.0,0.0,0.0,0.0,0.0,0.0,0.586,0.0,0.0,4.245,0.807,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,0.0,35.538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.284,0.0,13.531,9.233,0.618,0.0,0.0,0.0,0.0,2169.5,3628.1,3628.1,29.257,20.864,0.0,3.493,3.667,0.516,7.492,0.64,10.201,-12.763,0.0,0.0,0.0,8.307,-0.08,1.508,0.0,14.154,0.0,7.409,-9.032,-2.53,0.0,0.063,-0.34,-0.034,2.955,0.009,-0.988,11.65,0.0,0.0,0.0,-5.936,-0.076,-0.247,-2.665,-3.722,0.0,3.233,7.75,1.98,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-whole-house-fan.xml,56.863,56.863,34.417,34.417,22.447,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,2.535,0.4,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.664,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.021,0.0,6.56,9.233,0.622,0.0,0.0,0.0,0.0,2132.2,3105.2,3105.2,23.034,16.245,0.0,3.554,3.643,0.513,7.547,0.63,10.093,-12.683,0.0,0.0,0.0,8.434,-0.057,4.805,0.0,0.729,0.0,4.871,-8.905,-2.499,0.0,0.088,-0.266,-0.023,3.27,0.022,-0.818,11.73,0.0,0.0,0.0,-5.409,-0.053,-0.992,0.0,-0.135,-11.71,1.806,7.881,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-additional-properties.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-none.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-detailed-only.xml,58.344,31.458,36.078,9.192,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-mixed.xml,58.344,31.458,36.078,9.192,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv.xml,58.344,1.081,36.078,-21.185,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,63.388,43.938,31.595,12.145,31.793,0.0,0.0,0.0,0.0,0.0,0.0,0.524,0.0,0.0,2.267,0.338,2.184,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.081,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.45,0.0,0.506,31.793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.759,0.0,5.463,10.64,0.693,0.0,9.152,0.0,0.0,2402.4,2950.2,2950.2,26.046,15.216,0.0,3.491,3.687,0.518,7.47,1.119,10.315,-12.806,0.0,0.0,0.0,8.267,-0.095,1.531,0.0,15.069,0.0,2.756,-9.283,-2.557,0.0,0.69,-0.095,0.001,3.444,-0.195,-0.322,11.607,0.0,0.0,0.0,-5.223,-0.091,-0.199,0.0,-3.419,-10.854,0.449,8.626,1.952,1610.4,1574.2,10560.0,3721.5,2.87,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-emissions.xml,59.161,32.275,36.895,10.008,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.817,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2199.2,3498.2,3498.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,13.017,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery-scheduled.xml,77.079,68.89,37.813,29.624,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,1.735,22.266,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,20.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3536.9,3536.9,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,1.697,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery.xml,75.344,67.155,36.078,27.889,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.0,22.266,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,20.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators.xml,75.344,67.155,36.078,27.889,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.0,22.266,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,20.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-ground-conductivity.xml,56.036,56.036,36.002,36.002,20.034,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,4.383,0.85,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,20.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.76,0.0,14.314,9.233,0.613,0.0,0.0,0.0,0.0,2110.2,3765.9,3765.9,22.149,19.178,0.0,3.593,3.668,0.516,7.311,0.636,10.165,-12.663,0.0,0.0,0.0,6.694,-0.064,4.813,0.0,0.731,0.0,4.399,-8.891,-2.496,0.0,-0.066,-0.474,-0.053,2.388,-0.029,-1.439,11.75,0.0,0.0,0.0,-6.137,-0.059,-1.181,-3.121,-0.168,0.0,3.192,7.886,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8588.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon.xml,146.279,146.279,68.538,68.538,69.746,0.0,2.499,5.496,0.0,0.0,0.0,0.28,0.0,0.0,5.409,1.107,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,0.0,16.981,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,15.9,0.0,18.753,9.233,0.609,0.0,0.0,0.0,0.0,3234.7,5182.2,5182.2,21.949,20.73,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.832,0.0,0.734,0.0,3.78,-13.808,-2.35,0.0,-0.201,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.271,-3.573,-0.181,0.0,3.874,13.226,2.158,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon2.xml,92.763,92.763,64.989,64.989,19.779,2.499,0.0,0.0,5.496,0.0,0.0,0.28,0.0,0.0,5.409,1.107,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,0.0,16.981,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,15.9,0.0,18.753,9.233,0.609,0.0,0.0,0.0,0.0,3187.7,4779.7,4779.7,21.949,20.73,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.832,0.0,0.734,0.0,3.78,-13.808,-2.35,0.0,-0.201,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.271,-3.573,-0.181,0.0,3.874,13.226,2.158,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-none.xml,53.082,53.082,24.834,24.834,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,3.725,0.689,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,0.0,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.457,0.0,11.563,9.233,0.617,0.0,0.0,0.0,0.0,1537.9,3128.2,3128.2,24.268,17.326,0.0,3.475,3.599,0.506,7.396,0.622,9.986,-12.73,0.0,0.0,0.0,8.165,-0.054,4.795,0.0,0.726,0.0,5.972,-3.801,-2.512,0.0,0.056,-0.368,-0.038,2.973,-0.001,-1.105,11.683,0.0,0.0,0.0,-5.88,-0.05,-1.085,-2.701,-0.152,0.0,2.706,3.706,1.998,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-neighbor-shading-bldgtype-multifamily.xml,26.623,26.623,25.788,25.788,0.835,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.569,0.438,9.693,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.835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.772,0.0,7.007,9.538,0.585,0.0,0.0,0.0,0.0,1642.1,1983.9,1983.9,3.336,8.14,0.0,-0.013,3.83,0.0,0.0,0.417,4.067,-3.186,0.0,0.0,-0.01,0.0,-0.312,1.311,0.0,0.761,0.0,0.0,-5.319,-0.936,0.0,-0.008,-2.783,0.0,0.0,-0.012,-0.688,5.017,0.0,0.0,-0.005,0.0,-0.303,-0.394,-1.178,-0.271,0.0,0.0,6.656,1.09,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-misc-neighbor-shading.xml,63.373,63.373,35.82,35.82,27.553,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,4.134,0.79,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,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.803,0.0,13.302,9.233,0.615,0.0,0.0,0.0,0.0,2126.3,3689.4,3689.4,23.267,18.474,0.0,3.479,3.709,0.541,7.36,0.776,10.707,-8.74,0.0,0.0,0.0,7.861,-0.057,4.786,0.0,0.724,0.0,5.781,-8.918,-2.502,0.0,-0.014,-0.467,-0.054,2.778,-0.04,-1.339,10.323,0.0,0.0,0.0,-6.182,-0.052,-1.149,-2.99,-0.162,0.0,2.965,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-shielding-of-home.xml,58.007,58.007,36.22,36.22,21.787,0.0,0.0,0.0,0.0,0.0,0.0,0.359,0.0,0.0,4.533,0.888,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,21.787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.403,0.0,14.992,9.233,0.613,0.0,0.0,0.0,0.0,2131.8,3749.3,3749.3,23.015,19.034,0.0,3.562,3.647,0.513,7.535,0.631,10.101,-12.683,0.0,0.0,0.0,8.308,-0.061,4.424,0.0,0.73,0.0,4.741,-8.899,-2.498,0.0,-0.07,-0.476,-0.054,2.649,-0.03,-1.451,11.73,0.0,0.0,0.0,-6.41,-0.058,-1.066,-2.609,-0.168,0.0,3.276,7.878,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31389.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18685.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,106.0,0.0,-694.0,800.0 +base-misc-usage-multiplier.xml,126.187,126.187,50.907,50.907,68.084,0.0,2.249,4.947,0.0,0.0,0.0,0.34,0.0,0.0,4.686,0.925,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,0.0,20.596,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.287,0.0,15.608,8.31,0.612,0.0,0.0,0.0,0.0,2765.9,4428.8,4428.8,22.734,19.742,0.0,3.581,3.659,0.515,7.576,0.633,10.138,-12.664,0.0,0.0,0.0,8.363,-0.065,4.863,0.0,0.658,0.0,4.503,-10.586,-2.246,0.0,-0.096,-0.496,-0.056,2.596,-0.035,-1.507,11.751,0.0,0.0,0.0,-6.491,-0.062,-1.211,-3.25,-0.153,0.0,3.386,9.606,1.813,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-pv-battery-ah.xml,59.161,32.275,36.895,10.008,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.817,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2199.2,3498.2,3498.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,13.017,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-garage.xml,59.538,32.652,35.604,8.717,23.934,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.107,0.552,9.264,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.886,0.0,0.868,23.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.408,0.0,9.142,9.233,0.722,0.0,0.0,0.0,0.0,2202.1,2829.1,2829.1,18.031,11.775,0.0,3.532,3.792,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.368,0.0,0.0,0.0,3.763,-6.763,-2.508,0.0,0.104,-0.282,-0.037,2.418,-0.001,-1.134,8.269,0.0,0.0,0.0,-5.68,-0.041,-1.226,-2.106,0.0,0.0,1.34,5.683,2.002,1354.8,997.6,11399.5,2615.8,16.796,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15522.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-round-trip-efficiency.xml,60.512,33.626,38.246,11.36,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,2.168,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2306.0,3638.2,3638.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,4.296,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-scheduled.xml,60.079,33.193,37.813,10.926,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3536.9,3536.9,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,5.417,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery.xml,59.161,32.275,36.895,10.008,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.817,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2199.2,3498.2,3498.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,13.017,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery-scheduled.xml,77.079,42.003,37.813,2.737,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,1.735,22.266,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,20.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3536.9,3536.9,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,16.79,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery.xml,76.191,41.115,36.924,1.849,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.846,22.266,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,20.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2188.3,3487.3,3487.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,83.204,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators.xml,75.344,40.269,36.078,1.003,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.0,22.266,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,20.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv.xml,58.344,31.458,36.078,9.192,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0-runperiod-1-month.xml,8.7747,8.7747,0.4299,0.4299,8.3448,0.0,0.0,0.0,0.0,0.0,0.0,0.1377,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.3448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8115,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.16,0.0,556.16,26.8895,0.0,0.0,0.6029,0.6429,0.0909,1.7457,0.1095,1.7779,-1.9884,0.0,0.0,0.0,2.2351,-0.0005,1.0002,0.0,0.0,0.0,1.7427,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-0.xml,41.422,41.422,7.378,7.378,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.403,0.618,0.576,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.0,0.0,0.0,0.0,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.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.888,0.0,10.868,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2257.1,2257.1,25.495,15.665,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.996,-0.063,5.417,0.0,0.0,0.0,7.057,-1.409,0.0,0.0,0.15,-0.28,-0.026,3.179,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.472,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon.xml,101.165,101.165,52.126,52.126,41.133,0.0,2.609,5.297,0.0,0.0,0.0,0.345,0.0,0.0,4.607,0.907,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,0.0,20.911,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.583,0.0,15.487,3.62,0.613,0.0,0.0,0.0,0.0,2589.3,4556.0,4556.0,22.986,19.677,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.814,0.0,0.729,0.0,4.575,-10.198,-2.496,0.0,-0.096,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.194,-3.22,-0.169,0.0,3.382,9.248,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon2.xml,80.111,80.111,49.7,49.7,22.505,2.609,0.0,0.0,5.297,0.0,0.0,0.345,0.0,0.0,4.607,0.907,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,0.0,20.911,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.583,0.0,15.487,3.62,0.613,0.0,0.0,0.0,0.0,2391.0,4296.3,4296.3,22.986,19.677,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.814,0.0,0.729,0.0,4.575,-10.198,-2.496,0.0,-0.096,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.194,-3.22,-0.169,0.0,3.382,9.248,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1.xml,52.865,52.865,28.494,28.494,24.371,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,4.081,0.777,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,0.0,24.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,22.824,0.0,13.244,3.62,0.615,0.0,0.0,0.0,0.0,1659.3,3260.9,3260.9,23.631,18.44,0.0,3.532,3.634,0.511,7.494,0.629,10.079,-12.698,0.0,0.0,0.0,8.289,-0.064,4.803,0.0,0.727,0.0,5.251,-7.189,-2.504,0.0,-0.017,-0.432,-0.047,2.784,-0.017,-1.299,11.715,0.0,0.0,0.0,-6.191,-0.06,-1.136,-2.934,-0.161,0.0,3.015,6.197,2.006,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,69.637,49.386,40.123,19.872,29.514,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,2.386,0.366,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.107,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.251,0.0,0.39,29.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.625,0.0,5.885,18.47,0.643,0.0,11.969,0.0,0.0,3177.0,3224.3,3224.3,25.599,15.569,0.0,3.796,3.691,0.519,7.524,0.645,10.259,-12.764,0.0,0.0,0.0,8.385,-0.078,1.524,0.0,14.999,0.0,2.562,-11.178,-2.536,0.0,0.218,-0.167,-0.01,3.395,0.049,-0.49,11.649,0.0,0.0,0.0,-5.263,-0.074,-0.214,0.0,-3.588,-11.536,0.482,10.474,1.974,2592.2,2706.5,21147.6,5662.4,1.824,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-all-10-mins.xml,59.723,59.723,36.325,36.325,23.397,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.59,0.894,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.91,0.0,15.004,9.21,0.638,0.0,0.0,0.333,1.333,9422.1,10708.7,10708.7,37.366,21.894,0.0,3.607,3.669,0.517,7.596,0.642,10.189,-12.601,0.0,0.0,0.0,8.33,-0.062,5.307,0.0,0.775,0.0,5.11,-8.969,-2.509,0.0,-0.179,-0.489,-0.056,2.704,-0.032,-1.437,11.752,0.0,0.0,0.0,-6.329,-0.058,-1.279,-3.004,-0.179,0.0,3.436,8.307,2.0,1354.7,998.0,11489.6,2636.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,33.63,33.63,28.785,28.785,4.845,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.304,0.58,7.441,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,4.538,0.0,9.824,7.426,0.56,0.0,0.0,0.5,0.667,9397.3,10444.5,10444.5,41.543,21.475,0.0,2.617,2.464,0.344,4.289,0.336,6.501,-12.497,0.0,0.0,0.0,3.691,-0.104,3.39,0.0,0.384,0.0,1.013,-6.566,-1.596,0.0,-0.248,-0.599,-0.072,2.363,-0.065,-1.808,11.861,0.0,0.0,0.0,-7.639,-0.059,-1.386,-4.977,-0.212,0.0,2.361,8.448,2.023,1141.2,883.5,9401.6,2157.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps.xml,42.569,42.569,34.517,34.517,8.052,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.316,0.583,9.198,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,9.873,9.21,0.669,0.0,0.0,0.0,0.667,9393.9,10447.5,10447.5,31.865,21.476,0.0,2.918,2.81,0.394,5.403,0.421,7.525,-12.492,0.0,0.0,0.0,5.506,-0.059,3.865,0.0,0.581,0.0,1.73,-8.86,-2.486,0.0,-0.252,-0.602,-0.072,2.368,-0.066,-1.818,11.861,0.0,0.0,0.0,-7.571,-0.058,-1.388,-4.989,-0.212,0.0,2.371,8.448,2.023,1354.7,998.0,11490.8,2636.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.133,59.133,36.24,36.24,22.893,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.506,0.88,9.085,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.435,0.0,14.798,9.148,0.615,0.0,0.0,0.0,0.0,6842.0,7475.7,9098.5,31.352,20.86,0.0,3.558,3.649,0.513,7.536,0.632,10.11,-12.685,0.0,0.0,0.0,8.318,-0.06,5.322,0.0,0.764,0.0,4.945,-8.988,-2.501,0.0,-0.056,-0.46,-0.051,2.692,-0.025,-1.398,11.729,0.0,0.0,0.0,-6.34,-0.055,-1.287,-3.092,-0.189,0.0,3.271,8.364,1.98,1002.6,945.2,11591.4,2659.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,44.73,44.73,30.385,30.385,14.345,0.0,0.0,0.0,0.0,0.0,0.0,0.237,0.0,0.0,4.476,0.872,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,13.438,0.0,14.68,7.439,0.517,0.0,0.0,17.0,0.0,6231.1,5705.4,6231.1,36.507,20.005,0.0,3.075,3.07,0.431,5.717,0.489,8.386,-12.686,0.0,0.0,0.0,5.188,-0.154,4.374,0.0,0.513,0.0,3.019,-6.681,-1.621,0.0,-0.056,-0.461,-0.051,2.676,-0.025,-1.397,11.731,0.0,0.0,0.0,-6.442,-0.057,-1.272,-3.091,-0.186,0.0,3.248,8.281,2.006,1141.2,883.5,9318.8,2138.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.422,41.422,7.378,7.378,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.403,0.618,0.576,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.0,0.0,0.0,0.0,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.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.888,0.0,10.868,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2257.1,2257.1,25.495,15.665,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.996,-0.063,5.417,0.0,0.0,0.0,7.057,-1.409,0.0,0.0,0.15,-0.28,-0.026,3.179,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.472,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,57.767,57.767,30.975,30.975,26.792,0.0,0.0,0.0,0.0,0.0,0.0,0.442,0.0,0.0,4.495,0.877,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.09,0.0,14.759,7.43,0.614,0.0,0.0,0.0,0.0,4455.5,5711.8,5711.8,30.777,20.061,0.0,3.504,3.622,0.51,7.453,0.626,10.041,-12.679,0.0,0.0,0.0,8.149,-0.064,5.305,0.0,0.514,0.0,5.697,-6.297,-1.615,0.0,-0.061,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.358,-0.059,-1.276,-3.102,-0.186,0.0,3.261,8.287,2.008,1141.2,883.5,9304.1,2135.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic.xml,59.066,59.066,36.197,36.197,22.869,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.496,0.877,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.414,0.0,14.762,9.229,0.614,0.0,0.0,0.0,0.0,4580.8,5712.0,5712.0,30.65,20.063,0.0,3.553,3.644,0.513,7.53,0.631,10.102,-12.674,0.0,0.0,0.0,8.308,-0.063,5.265,0.0,0.777,0.0,4.943,-8.954,-2.502,0.0,-0.061,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.355,-0.059,-1.276,-3.103,-0.186,0.0,3.262,8.287,2.008,1354.7,998.0,11396.5,2615.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-schedules.xml,57.163,57.163,35.466,35.466,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.913,0.755,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,0.0,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.946,0.0,12.447,9.233,0.615,0.0,0.0,101.0,55.0,2152.1,3586.3,3586.3,34.947,20.39,0.0,3.517,3.579,0.503,7.523,0.608,9.828,-12.674,0.0,0.0,0.0,8.679,0.006,4.652,0.0,0.727,0.0,4.499,-8.859,-2.496,0.0,-0.073,-0.502,-0.058,2.615,-0.042,-1.591,11.74,0.0,0.0,0.0,-6.668,-0.004,-1.223,-3.407,-0.174,0.0,2.49,7.92,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-setbacks.xml,56.534,56.534,35.618,35.618,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.048,0.783,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,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.498,0.0,13.07,9.233,0.616,0.0,0.0,0.0,14.0,2137.2,3597.9,3597.9,25.332,20.814,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.197,-0.023,4.639,0.0,0.724,0.0,4.386,-8.884,-2.501,0.0,-0.057,-0.497,-0.057,2.571,-0.04,-1.578,11.697,0.0,0.0,0.0,-6.644,-0.024,-1.204,-3.355,-0.177,0.0,2.635,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints.xml,41.525,41.525,34.236,34.236,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.107,0.54,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.0,9.174,9.233,0.645,0.0,0.0,0.0,0.0,2102.1,3212.6,3212.6,17.397,16.358,0.0,2.853,2.787,0.39,5.357,0.411,7.457,-12.563,0.0,0.0,0.0,5.504,-0.06,3.479,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.125,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.261,-5.126,-0.188,0.0,2.129,8.003,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-available.xml,54.868,54.868,32.578,32.578,22.29,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.354,0.611,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.874,0.0,10.367,8.601,0.581,0.0,0.0,0.0,1.0,2132.0,5726.0,5726.0,23.034,19.129,0.0,3.556,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.312,-0.065,4.763,0.0,0.795,0.0,4.837,-8.906,-2.499,0.0,-0.043,-0.48,-0.054,2.633,-0.03,-1.456,11.731,0.0,0.0,0.0,-6.41,-0.061,-1.18,-4.835,-0.173,0.0,2.289,6.933,1.701,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-unavailable.xml,55.014,55.014,32.755,32.755,22.259,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.498,0.647,8.543,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.845,0.0,10.939,8.601,0.579,0.0,0.0,0.0,10.0,2132.0,5767.6,5767.6,23.034,19.717,0.0,3.557,3.645,0.513,7.527,0.631,10.104,-12.683,0.0,0.0,0.0,8.289,-0.065,4.763,0.0,0.795,0.0,4.83,-8.906,-2.499,0.0,-0.166,-0.606,-0.072,2.302,-0.062,-1.838,11.731,0.0,0.0,0.0,-6.906,-0.061,-1.302,-2.711,-0.174,0.0,2.367,6.931,1.701,1241.6,923.2,10501.6,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage.xml,55.043,55.043,32.631,32.631,22.412,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,3.427,0.629,8.544,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.989,0.0,10.683,8.601,0.581,0.0,0.0,0.0,5.0,1985.3,5810.9,5810.9,23.069,22.121,0.0,3.554,3.643,0.513,7.524,0.63,10.091,-12.684,0.0,0.0,0.0,8.289,-0.061,4.76,0.0,0.795,0.0,4.86,-8.902,-2.367,0.0,-0.098,-0.536,-0.062,2.488,-0.045,-1.632,11.731,0.0,0.0,0.0,-6.63,-0.057,-1.233,-3.892,-0.174,0.0,2.339,6.936,1.794,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy-year-round.xml,41.422,41.422,7.378,7.378,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.403,0.618,0.576,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.0,0.0,0.0,0.0,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.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.888,0.0,10.868,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2257.1,2257.1,25.495,15.665,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.996,-0.063,5.417,0.0,0.0,0.0,7.057,-1.409,0.0,0.0,0.15,-0.28,-0.026,3.179,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.472,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy.xml,57.373,57.373,30.762,30.762,26.61,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,4.441,0.864,7.484,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.92,0.0,14.571,7.429,0.614,0.0,0.0,0.0,0.0,2011.5,3490.9,3490.9,23.123,19.202,0.0,3.503,3.619,0.509,7.446,0.625,10.032,-12.688,0.0,0.0,0.0,8.141,-0.065,4.961,0.0,0.552,0.0,5.667,-6.163,-1.548,0.0,-0.059,-0.466,-0.052,2.681,-0.027,-1.412,11.729,0.0,0.0,0.0,-6.357,-0.06,-1.149,-3.111,-0.2,0.0,3.227,7.872,2.14,1122.2,811.7,9376.7,2151.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple.xml,58.515,58.515,36.114,36.114,22.401,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,4.442,0.865,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,0.0,22.401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.978,0.0,14.574,9.233,0.614,0.0,0.0,0.0,0.0,1985.3,3442.3,3442.3,23.069,19.187,0.0,3.554,3.642,0.513,7.525,0.63,10.091,-12.684,0.0,0.0,0.0,8.301,-0.061,4.804,0.0,0.729,0.0,4.858,-8.902,-2.367,0.0,-0.06,-0.466,-0.052,2.68,-0.027,-1.418,11.729,0.0,0.0,0.0,-6.358,-0.057,-1.173,-3.114,-0.166,0.0,3.227,7.876,2.141,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-calendar-year-custom.xml,58.32,58.32,36.047,36.047,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.388,0.852,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.857,0.0,14.357,9.233,0.614,0.0,0.0,0.0,0.0,2131.9,3434.7,3434.7,23.034,19.124,0.0,3.557,3.645,0.513,7.53,0.631,10.1,-12.683,0.0,0.0,0.0,8.316,-0.063,4.807,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.051,-0.459,-0.051,2.707,-0.025,-1.394,11.73,0.0,0.0,0.0,-6.328,-0.059,-1.165,-3.252,-0.165,0.0,3.17,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-custom.xml,58.345,58.345,36.078,36.078,22.267,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.853,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-disabled.xml,58.316,58.316,36.062,36.062,22.254,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.4,0.855,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.84,0.0,14.398,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3344.7,3344.7,23.034,18.728,0.0,3.556,3.643,0.513,7.531,0.63,10.089,-12.683,0.0,0.0,0.0,8.311,-0.06,4.804,0.0,0.727,0.0,4.829,-8.9,-2.496,0.0,-0.056,-0.465,-0.052,2.684,-0.027,-1.417,11.73,0.0,0.0,0.0,-6.348,-0.056,-1.175,-3.132,-0.163,0.0,3.182,7.877,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-runperiod-1-month.xml,9.3378,9.3378,2.9155,2.9155,6.4222,0.0,0.0,0.0,0.0,0.0,0.0,0.1059,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0126,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2115.81,0.0,2115.81,24.5056,0.0,0.0,0.6218,0.6514,0.0921,1.7783,0.1114,1.8005,-1.9863,0.0,0.0,0.0,2.3104,0.001,0.8916,0.0,0.1316,0.0,1.3929,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-temperature-capacitance-multiplier.xml,58.232,58.232,35.972,35.972,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.327,0.838,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.846,0.0,14.108,9.233,0.614,0.0,0.0,0.0,0.0,2131.5,3405.1,3405.1,22.976,19.043,0.0,3.626,3.641,0.512,7.527,0.628,10.073,-12.689,0.0,0.0,0.0,8.292,-0.053,4.803,0.0,0.728,0.0,4.827,-8.896,-2.498,0.0,-0.223,-0.462,-0.052,2.69,-0.027,-1.419,11.724,0.0,0.0,0.0,-6.346,-0.05,-1.179,-3.176,-0.164,0.0,3.051,7.882,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,59.734,59.734,36.321,36.321,23.413,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.588,0.893,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.924,0.0,14.997,9.232,0.616,0.0,0.0,0.333,1.333,9296.7,8481.7,9322.0,37.369,21.894,0.0,3.607,3.669,0.517,7.596,0.642,10.189,-12.601,0.0,0.0,0.0,8.33,-0.062,5.307,0.0,0.775,0.0,5.113,-8.958,-2.509,0.0,-0.179,-0.489,-0.056,2.705,-0.032,-1.437,11.752,0.0,0.0,0.0,-6.328,-0.058,-1.279,-3.002,-0.179,0.0,3.435,8.297,2.0,1354.7,998.0,11410.4,2618.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,59.654,59.654,36.312,36.312,23.341,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.586,0.893,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.857,0.0,14.99,9.229,0.614,0.0,0.0,0.0,0.5,6068.6,7353.6,7353.6,35.103,21.328,0.0,3.607,3.669,0.517,7.594,0.642,10.187,-12.601,0.0,0.0,0.0,8.326,-0.062,5.255,0.0,0.771,0.0,5.101,-8.955,-2.502,0.0,-0.179,-0.489,-0.056,2.704,-0.033,-1.438,11.752,0.0,0.0,0.0,-6.332,-0.057,-1.264,-3.005,-0.186,0.0,3.433,8.284,2.008,1354.7,998.0,11396.5,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins.xml,58.953,58.953,36.193,36.193,22.76,0.0,0.0,0.0,0.0,0.0,0.0,0.375,0.0,0.0,4.503,0.873,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,0.0,22.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.313,0.0,14.679,9.233,0.614,0.0,0.0,0.0,0.0,3553.4,5042.4,5042.4,23.317,19.026,0.0,3.612,3.669,0.517,7.595,0.642,10.185,-12.61,0.0,0.0,0.0,8.335,-0.06,4.791,0.0,0.735,0.0,4.995,-8.905,-2.499,0.0,-0.174,-0.487,-0.056,2.71,-0.032,-1.435,11.744,0.0,0.0,0.0,-6.317,-0.055,-1.156,-3.002,-0.172,0.0,3.375,7.873,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-30-mins.xml,58.726,58.726,36.142,36.142,22.584,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.464,0.866,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,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.148,0.0,14.554,9.233,0.614,0.0,0.0,0.0,0.0,2157.1,3815.6,3815.6,23.221,19.052,0.0,3.594,3.661,0.516,7.566,0.639,10.168,-12.631,0.0,0.0,0.0,8.321,-0.062,4.793,0.0,0.733,0.0,4.932,-8.905,-2.498,0.0,-0.143,-0.482,-0.055,2.704,-0.031,-1.434,11.747,0.0,0.0,0.0,-6.329,-0.058,-1.16,-3.05,-0.17,0.0,3.285,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +house001.xml,86.617,86.617,47.318,47.318,39.299,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,15.975,4.48,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,0.0,22.249,0.0,17.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,18.043,0.0,50.899,10.416,2.683,0.0,0.0,0.0,0.0,1853.7,6691.8,6691.8,37.693,42.618,0.495,1.999,7.301,0.422,0.0,0.982,7.164,-4.978,0.0,0.0,0.485,1.29,-0.286,4.306,0.0,5.162,0.0,3.187,-6.727,-2.915,0.559,1.959,3.663,0.303,0.0,0.228,1.549,11.487,0.0,0.0,0.516,6.78,-0.271,-0.434,-1.439,-0.779,0.0,10.916,11.623,4.465,2104.5,2144.0,14468.8,4385.1,0.0,90000.0,60000.0,0.0,25.88,98.42,62095.0,24402.0,7740.0,0.0,942.0,7599.0,453.0,609.0,9636.0,2236.0,8478.0,118221.0,90310.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6860.0,3501.0,2159.0,1200.0 +house002.xml,67.379,67.379,40.154,40.154,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,13.992,3.481,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,0.0,13.737,0.0,13.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,40.207,7.526,2.892,0.0,0.0,0.0,0.0,1553.9,5107.0,5107.0,23.852,29.784,0.0,2.552,5.064,0.0,0.0,0.846,5.729,-4.087,0.0,0.0,0.0,1.809,-0.161,1.581,0.0,3.794,0.0,1.353,-5.039,-2.475,0.0,3.05,2.765,0.0,0.0,0.409,0.355,8.652,0.0,0.0,0.0,8.391,-0.154,-0.19,-1.077,-0.66,0.0,6.001,8.963,3.907,1610.9,1574.7,9989.5,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,47925.0,15312.0,6070.0,0.0,752.0,4731.0,0.0,0.0,12952.0,3120.0,4987.0,35212.0,14864.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3848.0,1750.0,1297.0,800.0 +house003.xml,68.761,68.761,40.507,40.507,28.254,0.0,0.0,0.0,0.0,0.0,0.0,0.168,0.0,0.0,13.083,3.644,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,0.0,15.007,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.166,0.0,42.008,7.526,2.693,0.0,0.0,0.0,0.0,1632.3,5481.4,5481.4,26.254,34.02,0.653,2.805,4.678,0.0,0.0,0.98,6.254,-3.935,0.0,0.0,0.0,1.138,-0.182,1.997,0.0,3.942,0.0,1.585,-5.248,-2.676,0.786,3.006,2.567,0.0,0.0,0.638,1.037,9.843,0.0,0.0,0.0,6.458,-0.174,-0.231,-1.127,-0.664,0.0,6.66,9.233,4.2,1610.9,1574.7,9989.3,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,48412.0,15944.0,6644.0,0.0,892.0,4431.0,610.0,0.0,11450.0,2908.0,5532.0,43305.0,19002.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3967.0,1750.0,1416.0,800.0 +house004.xml,136.371,136.371,75.985,75.985,60.386,0.0,0.0,0.0,0.0,0.0,0.0,0.392,0.0,0.0,29.481,9.637,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,0.0,44.233,0.0,16.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,35.77,0.0,109.343,8.985,3.514,0.0,0.0,0.0,158.0,3153.8,7371.6,7371.6,54.639,50.773,0.127,5.509,11.299,0.0,0.0,1.238,13.608,-5.79,0.0,0.0,0.0,3.105,-0.775,4.914,0.0,6.221,0.0,7.032,-7.176,-3.849,0.197,6.642,11.609,0.0,0.0,0.508,7.397,17.81,0.0,0.0,0.0,18.772,-0.762,0.995,0.0,1.799,0.0,21.798,15.181,7.713,1857.7,1859.3,12229.1,3984.0,0.0,80000.0,60000.0,0.0,25.88,98.42,76552.0,20973.0,11324.0,0.0,882.0,8959.0,101.0,0.0,19021.0,5929.0,9362.0,54906.0,19420.0,12449.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,3550.0,4612.0,1284.0,2328.0,1000.0 +house005.xml,95.319,95.319,53.927,53.927,41.392,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,18.774,5.3,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,0.0,26.187,0.0,15.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,21.237,0.0,61.39,8.985,2.734,0.0,0.0,0.0,3.0,2076.2,7519.0,7519.0,46.019,52.145,0.0,3.051,8.217,0.269,0.0,1.36,9.437,-6.696,0.0,0.0,0.398,1.313,-0.377,5.064,0.0,5.092,0.0,4.318,-6.822,-3.611,0.0,2.935,4.202,0.209,0.0,0.265,2.282,15.363,0.0,0.0,0.41,7.447,-0.36,-0.513,-1.821,-0.766,0.0,14.906,11.562,5.544,1857.7,1859.4,12229.0,3983.9,0.0,90000.0,60000.0,0.0,25.88,98.42,71542.0,26962.0,10216.0,0.0,1260.0,8257.0,0.0,480.0,11638.0,3312.0,9418.0,67659.0,32921.0,13688.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,3550.0,6854.0,3501.0,2354.0,1000.0 +house006.xml,139.17,139.17,31.873,31.873,107.297,0.0,0.0,0.0,0.0,0.0,0.0,1.869,0.0,0.0,3.036,0.355,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,0.0,81.45,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,78.414,0.0,8.172,13.084,3.277,0.0,0.0,0.0,0.0,1987.1,2467.4,2467.4,40.493,14.968,0.0,4.264,22.276,1.991,37.138,1.864,17.625,-9.441,0.0,0.0,0.0,9.272,-0.322,9.531,0.0,4.369,0.0,0.0,-14.532,-6.438,0.0,0.172,-0.806,-0.046,2.784,-0.086,-0.558,4.335,0.0,0.0,0.0,-3.919,-0.321,-0.518,-0.614,-0.076,0.0,0.0,5.683,2.249,1610.9,1574.7,12168.1,4288.2,0.0,80000.0,30000.0,0.0,-13.72,81.14,43331.0,0.0,8907.0,0.0,750.0,24548.0,0.0,0.0,1995.0,1874.0,5256.0,9726.0,0.0,4103.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,3320.0,1566.0,0.0,766.0,800.0 +house007.xml,138.686,138.686,34.0,34.0,104.686,0.0,0.0,0.0,0.0,0.0,0.0,1.629,0.0,0.0,2.611,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,0.0,75.019,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,70.638,0.0,6.039,15.632,3.268,0.0,0.0,0.0,0.0,2191.9,2568.2,2568.2,39.657,13.514,0.0,4.727,23.696,4.449,10.124,1.499,18.834,-9.346,0.0,0.0,0.076,11.539,-0.372,6.119,0.0,20.826,0.0,2.861,-17.172,-7.734,0.0,0.2,-0.721,-0.058,0.561,-0.047,-0.336,4.603,0.0,0.0,-0.009,-4.044,-0.368,-0.193,-0.584,-1.905,0.0,0.108,6.368,2.565,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,42000.0,0.0,-13.72,81.14,43727.0,5470.0,9095.0,0.0,587.0,15303.0,0.0,27.0,2124.0,2001.0,9120.0,12281.0,1093.0,4949.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,3550.0,2145.0,404.0,741.0,1000.0 +house008.xml,183.052,183.052,39.382,39.382,143.669,0.0,0.0,0.0,0.0,0.0,0.0,2.476,0.0,0.0,3.771,0.574,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,0.0,110.234,0.0,26.374,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,103.871,0.0,10.907,18.129,3.213,0.0,0.0,0.0,0.0,2472.9,3432.3,3432.3,54.892,20.574,0.0,7.246,27.501,4.711,24.32,1.195,21.291,-7.816,0.0,0.0,1.287,17.853,-0.393,18.343,0.0,6.388,0.0,7.879,-18.61,-8.163,0.0,0.292,-1.156,-0.067,1.6,-0.09,-0.438,5.412,0.0,0.0,-0.112,-2.804,-0.393,-0.996,-0.687,-0.286,0.0,0.567,7.342,2.843,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,62679.0,10615.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18542.0,2434.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2481.0,158.0,1123.0,1200.0 +house009.xml,153.811,153.811,34.132,34.132,119.68,0.0,0.0,0.0,0.0,0.0,0.0,2.021,0.0,0.0,2.51,0.314,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,0.0,90.006,0.0,23.288,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.809,0.0,5.739,15.632,3.274,0.0,0.0,0.0,0.0,2226.3,2689.0,2689.0,44.142,14.399,0.0,5.112,28.422,4.319,13.051,2.253,18.888,-8.18,0.0,0.0,0.266,15.624,-0.398,8.745,0.0,21.44,0.0,0.0,-17.429,-7.833,0.0,0.24,-0.73,-0.035,0.709,-0.078,-0.206,4.6,0.0,0.0,-0.029,-4.154,-0.395,-0.262,-0.531,-1.82,0.0,0.0,6.091,2.438,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1793.0,0.0,793.0,1000.0 +house010.xml,153.534,153.534,37.702,37.702,115.832,0.0,0.0,0.0,0.0,0.0,0.0,1.85,0.0,0.0,3.038,0.294,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,0.0,82.398,0.0,26.374,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,77.644,0.0,7.883,18.129,3.212,0.0,0.0,0.0,0.0,2408.7,2877.9,2877.9,45.335,15.822,0.876,4.938,25.514,4.913,9.775,1.266,22.965,-9.184,0.0,0.0,0.927,11.368,-0.399,19.584,0.0,6.404,0.0,4.879,-18.629,-8.154,0.022,0.21,-0.793,-0.102,0.536,-0.077,-0.783,5.164,0.0,0.0,-0.052,-4.233,-0.396,-1.034,-0.682,-0.272,0.0,0.356,7.304,2.833,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10514.0,14181.0,1891.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2621.0,261.0,1159.0,1200.0 +house011.xml,44.705,44.705,44.705,44.705,0.0,0.0,0.0,0.0,0.0,0.0,7.004,0.615,0.096,0.005,7.993,2.356,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,0.0,14.602,0.1,26.033,9.325,1.123,0.0,0.0,0.0,351.0,4986.7,3124.4,4986.7,18.277,15.745,0.0,2.696,5.398,0.0,0.0,1.633,3.458,-3.179,0.0,0.0,1.874,0.0,-0.392,1.841,0.0,5.399,0.0,3.94,-5.991,-2.074,0.0,1.634,1.115,0.0,0.0,0.144,0.29,5.667,0.0,0.0,0.729,0.0,-0.392,-0.203,-0.181,-1.033,0.0,6.68,8.891,2.83,0.0,1859.4,12951.3,4219.2,0.0,24000.0,18000.0,34120.0,24.62,91.58,20648.0,6685.0,2440.0,0.0,1007.0,3251.0,0.0,546.0,0.0,1795.0,4923.0,21013.0,7842.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3065.0,463.0,1602.0,1000.0 +house012.xml,35.614,35.614,35.614,35.614,0.0,0.0,0.0,0.0,0.0,0.0,4.76,0.243,0.0,0.0,5.607,1.543,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,0.0,9.96,0.0,16.415,7.782,1.158,0.0,0.0,0.0,0.0,3032.2,2595.0,3032.2,11.061,11.217,0.0,2.374,4.758,0.0,0.0,0.627,2.68,-1.832,0.0,0.0,2.039,0.0,-0.25,1.648,0.0,4.356,0.0,0.318,-4.814,-1.943,0.0,1.715,1.079,0.0,0.0,-0.037,0.46,3.51,0.0,0.0,1.564,0.0,-0.25,-0.164,-0.165,-0.748,0.0,0.277,6.81,2.435,0.0,1574.7,10579.4,3728.3,0.0,23400.0,23200.0,0.0,24.62,91.58,13915.0,1328.0,1906.0,0.0,333.0,2909.0,0.0,1767.0,0.0,1513.0,4159.0,11890.0,639.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2498.0,370.0,1328.0,800.0 +house013.xml,30.613,30.613,30.613,30.613,0.0,0.0,0.0,0.0,0.0,0.0,2.82,0.151,0.0,0.0,3.883,1.315,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,0.0,5.976,0.0,15.075,6.85,0.853,0.0,0.0,0.0,0.0,2658.8,2142.7,2658.8,9.739,9.617,0.0,1.625,2.851,0.0,0.0,0.652,2.619,-2.12,0.0,0.0,2.086,0.0,-0.28,1.517,0.0,1.059,0.0,1.11,-3.658,-1.505,0.0,1.07,0.367,0.0,0.0,-0.095,0.206,3.809,0.0,0.0,0.527,0.0,-0.28,-0.258,-0.197,-0.284,0.0,1.461,6.382,2.461,1364.1,1290.1,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,12472.0,3011.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9760.0,1063.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1618.0,312.0,706.0,600.0 +house014.xml,31.643,31.643,31.643,31.643,0.0,0.0,0.0,0.0,0.0,0.0,3.371,0.199,0.004,0.0,4.252,1.437,7.45,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,0.0,7.454,0.004,16.612,6.85,0.597,0.0,0.0,0.0,0.0,2912.2,2163.5,2912.2,10.982,10.462,0.0,1.7,3.69,0.0,0.0,0.583,3.021,-2.479,0.0,0.0,2.201,0.0,-0.243,1.724,0.0,1.115,0.0,1.48,-3.756,-1.617,0.0,1.129,0.535,0.0,0.0,-0.071,0.531,4.749,0.0,0.0,0.599,0.0,-0.242,-0.254,-0.225,-0.263,0.0,1.673,6.113,2.436,1364.1,1290.1,8207.2,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13637.0,3078.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,10984.0,1055.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1682.0,312.0,770.0,600.0 +house015.xml,30.613,30.613,30.613,30.613,0.0,0.0,0.0,0.0,0.0,0.0,2.82,0.151,0.0,0.0,3.883,1.315,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,0.0,5.976,0.0,15.075,6.85,0.853,0.0,0.0,0.0,0.0,2658.8,2142.7,2658.8,9.739,9.617,0.0,1.625,2.851,0.0,0.0,0.652,2.619,-2.12,0.0,0.0,2.086,0.0,-0.28,1.517,0.0,1.059,0.0,1.11,-3.658,-1.505,0.0,1.07,0.367,0.0,0.0,-0.095,0.206,3.809,0.0,0.0,0.527,0.0,-0.28,-0.258,-0.197,-0.284,0.0,1.461,6.382,2.461,1364.1,1290.1,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,12472.0,3011.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9760.0,1063.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1618.0,312.0,706.0,600.0 +house016.xml,61.293,61.293,39.792,39.792,0.0,0.0,21.501,0.0,0.0,0.0,7.654,0.545,0.163,0.004,2.949,0.997,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,6.313,0.0,15.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.696,0.167,11.489,10.478,0.0,0.0,0.0,1.0,13.0,7481.2,3535.5,7481.2,43.061,18.718,0.0,4.421,10.834,0.618,5.69,0.298,7.711,-7.897,0.0,0.0,0.0,6.738,-0.022,5.729,0.0,3.867,0.0,0.0,-8.639,-4.771,0.0,-0.336,-0.824,-0.019,2.932,-0.046,-1.012,11.998,0.0,0.0,0.0,-8.779,-0.024,-1.359,-1.156,-1.008,0.0,0.0,7.776,3.835,1759.0,1745.5,13591.0,4566.0,0.0,136000.0,36000.0,36000.0,19.22,86.72,26636.0,0.0,5399.0,0.0,171.0,10607.0,0.0,0.0,2485.0,2689.0,5286.0,18696.0,0.0,9204.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,3320.0,1991.0,0.0,1191.0,800.0 +house017.xml,91.779,91.779,27.882,27.882,63.898,0.0,0.0,0.0,0.0,0.0,0.0,1.281,0.0,0.0,4.468,0.634,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.502,0.373,2.776,1.619,0.0,2.274,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.795,0.0,18.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,41.956,0.0,10.102,11.141,3.418,0.0,0.0,151.0,102.0,1729.6,3470.7,3470.7,60.335,19.015,0.0,5.432,14.641,0.652,10.656,0.362,7.456,-9.321,0.0,0.0,0.719,4.357,0.006,19.783,0.0,1.22,0.0,0.0,-11.23,-2.985,0.0,-0.144,-0.973,-0.02,4.679,-0.06,-1.169,7.472,0.0,0.0,-0.009,-4.801,0.008,-2.769,-0.714,-0.258,0.0,0.0,7.225,1.685,1778.7,1768.3,13969.3,4663.9,0.0,60000.0,24000.0,0.0,16.16,89.24,36483.0,0.0,4833.0,0.0,181.0,15153.0,0.0,354.0,1303.0,3048.0,11612.0,17819.0,0.0,7246.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,3550.0,3537.0,0.0,2537.0,1000.0 +house018.xml,36.119,36.119,36.119,36.119,0.0,0.0,0.0,0.0,0.0,0.0,4.633,0.203,0.0,0.0,2.581,0.793,7.873,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,8.67,0.0,9.436,7.32,0.552,0.0,0.0,0.0,0.0,4666.6,2682.0,4666.6,19.963,10.875,0.0,4.564,4.623,0.0,0.0,0.276,3.696,-3.618,0.0,0.0,2.171,0.0,-0.019,2.615,0.0,2.082,0.0,1.828,-7.059,-2.596,0.0,-0.527,-0.811,0.0,0.0,-0.095,-1.34,4.337,0.0,0.0,-0.013,0.0,-0.014,-0.774,-0.637,-0.75,0.0,1.262,6.864,2.164,1341.9,1264.5,9054.5,3477.8,0.0,36000.0,36000.0,36000.0,19.22,86.72,18231.0,4840.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,11138.0,820.0,2046.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,4520.0,2617.0,1105.0,712.0,800.0 +house019.xml,130.219,130.219,51.672,51.672,78.548,0.0,0.0,0.0,0.0,0.0,0.0,1.13,0.0,0.0,11.054,3.708,9.725,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.359,0.282,2.094,0.095,0.0,1.858,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.773,0.0,0.0,0.0,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.662,0.0,43.613,7.894,1.826,0.0,0.0,193.0,269.0,2783.7,6463.0,6642.1,84.769,45.694,0.0,11.38,44.759,0.65,5.035,1.92,16.406,-14.184,0.0,0.0,0.0,5.96,-0.034,8.894,0.0,1.87,0.0,0.0,-10.303,-5.203,0.0,2.976,10.122,0.15,2.881,0.272,1.601,17.047,0.0,0.0,0.0,-4.234,-0.021,-0.157,-0.149,0.025,0.0,0.0,8.091,3.72,1341.9,1264.5,7836.1,3009.8,0.0,100000.0,60000.0,0.0,16.16,89.24,50161.0,0.0,9523.0,0.0,1028.0,26727.0,0.0,0.0,1661.0,5769.0,5453.0,32831.0,0.0,12812.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,4520.0,1991.0,0.0,1191.0,800.0 +house020.xml,117.164,117.164,56.409,56.409,0.0,0.0,60.754,0.0,0.0,0.0,0.0,0.826,0.0,0.0,12.859,2.827,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.496,0.369,2.745,0.11,0.0,2.255,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,0.0,38.612,0.0,18.911,0.0,3.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.567,0.0,33.299,10.477,4.224,0.0,0.0,0.0,0.0,2703.5,6568.5,6568.5,31.214,31.947,0.908,11.003,10.557,1.131,9.759,0.631,15.145,-15.17,0.0,0.0,0.0,7.469,-0.042,15.238,0.0,0.837,0.0,0.0,-15.243,-7.022,0.245,0.175,0.235,0.059,6.426,0.015,-2.454,20.699,0.0,0.0,0.0,-6.636,-0.032,-2.672,-1.637,-0.195,0.0,0.0,13.51,5.728,1759.0,1745.5,13595.6,4567.6,0.0,120000.0,60000.0,0.0,19.22,86.72,45284.0,0.0,10325.0,0.0,395.0,13706.0,598.0,0.0,3105.0,6812.0,10343.0,26478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,4520.0,3130.0,0.0,2330.0,800.0 +house021.xml,156.914,156.914,48.12,48.12,108.793,0.0,0.0,0.0,0.0,0.0,0.0,2.01,0.0,0.0,8.074,1.487,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.496,0.369,2.745,1.608,0.0,2.255,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.747,0.0,19.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.798,0.0,17.782,10.989,3.817,0.0,0.0,0.0,0.0,2797.7,4672.4,4672.4,81.276,23.158,0.0,8.265,27.044,2.42,9.183,0.859,21.82,-20.282,0.0,0.0,1.093,9.427,-0.32,26.651,0.0,2.489,0.0,6.1,-14.701,-6.87,0.0,0.047,-0.747,0.016,2.242,-0.09,-2.213,14.693,0.0,0.0,0.041,-6.014,-0.297,-2.379,-0.835,-0.387,0.0,1.235,8.849,3.77,1759.0,1745.5,13752.0,4620.1,0.0,130000.0,60000.0,0.0,16.16,89.24,52669.0,8042.0,10175.0,0.0,318.0,15825.0,0.0,396.0,1788.0,3431.0,12694.0,28791.0,5964.0,9809.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,4750.0,4908.0,1135.0,2773.0,1000.0 +house022.xml,137.952,137.952,48.709,48.709,0.0,89.243,0.0,0.0,0.0,0.0,0.0,2.219,0.0,0.0,8.679,0.905,12.471,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,89.243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.255,0.0,18.937,10.989,1.48,0.0,0.0,184.0,120.0,2976.0,5337.9,5337.9,90.769,27.305,3.684,3.759,20.622,0.0,0.0,1.487,16.605,-13.135,0.0,0.0,14.643,0.0,-0.265,37.7,0.0,1.156,0.0,0.0,-9.557,-4.288,1.107,0.17,0.612,0.0,0.0,-0.121,-1.432,11.452,0.0,0.0,2.058,0.0,-0.256,-2.686,-0.616,-0.07,0.0,0.0,6.162,2.402,1759.0,1745.5,13751.5,4619.9,0.0,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,25289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,4520.0,5447.0,0.0,4647.0,800.0 +house023.xml,137.995,137.995,62.851,62.851,0.0,75.144,0.0,0.0,0.0,0.0,0.0,1.892,0.0,0.0,5.64,0.784,19.997,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,75.144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.736,0.0,16.259,17.1,2.769,0.0,0.0,0.0,0.0,4239.1,4592.4,4592.4,62.489,20.564,0.0,10.208,21.486,1.2,16.451,0.85,9.985,-7.811,0.0,0.0,0.0,6.173,-0.032,23.701,0.0,1.638,0.0,0.0,-15.571,-5.906,0.0,-0.192,-1.022,-0.014,5.967,-0.114,-1.042,9.141,0.0,0.0,0.0,-6.007,-0.01,-2.68,-0.761,-0.315,0.0,0.0,10.086,3.313,2176.1,2226.5,7845.5,2331.5,0.0,125000.0,42000.0,0.0,16.16,89.24,45394.0,0.0,5067.0,0.0,362.0,18507.0,0.0,0.0,1469.0,4899.0,15091.0,22901.0,0.0,8938.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,4750.0,4276.0,0.0,3276.0,1000.0 +house024.xml,129.387,129.387,43.935,43.935,0.0,85.452,0.0,0.0,0.0,0.0,0.0,2.125,0.0,0.0,5.415,0.518,16.754,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.632,0.457,3.396,1.833,0.0,2.653,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,0.0,85.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.448,0.0,15.733,14.653,2.088,0.0,0.0,0.0,0.0,2752.0,3592.7,3624.1,72.057,17.429,0.0,7.179,30.083,0.0,0.0,0.681,7.227,-7.897,0.0,0.0,5.171,0.0,-0.106,25.399,0.0,1.837,0.0,11.759,-8.64,-2.539,0.0,0.586,1.25,0.0,0.0,-0.04,-0.296,6.002,0.0,0.0,0.498,0.0,-0.099,-1.461,-0.332,-0.196,0.0,2.986,5.524,1.377,2176.1,2226.5,14983.5,4452.7,0.0,85000.0,30000.0,0.0,16.16,89.24,60247.0,12437.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,22015.0,1536.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,3320.0,7065.0,2625.0,3639.0,800.0 +house025.xml,104.089,104.089,69.047,69.047,35.042,0.0,0.0,0.0,0.0,0.0,6.397,1.052,0.0,0.0,18.527,2.683,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.0,47.617,8.321,3.83,0.0,0.0,0.0,0.0,4278.9,6845.1,6845.1,36.324,32.839,0.0,3.377,17.544,0.0,0.0,2.164,7.392,-5.637,0.0,0.0,6.835,0.0,-1.322,13.719,0.0,0.41,0.0,4.901,-8.606,-4.03,0.0,1.088,5.672,0.0,0.0,0.437,1.931,12.471,0.0,0.0,5.632,0.0,-1.32,-0.743,-0.165,-0.005,0.0,6.15,11.506,5.233,1341.9,1264.5,3496.9,1343.1,0.0,158000.0,81000.0,33000.0,24.62,91.58,54341.0,20049.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,32267.0,8820.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9615.0,5967.0,2849.0,800.0 +house026.xml,56.721,56.721,24.856,24.856,31.865,0.0,0.0,0.0,0.0,0.0,0.0,0.045,0.0,0.0,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,0.0,17.729,0.0,14.136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,0.0,0.0,8.607,2.075,0.0,0.0,0.0,0.0,1553.8,1299.3,1553.8,17.371,0.0,0.0,1.773,6.876,0.233,0.0,0.198,4.407,-2.924,0.0,0.0,7.12,0.0,-0.05,2.498,0.0,3.138,0.0,0.0,-6.701,-3.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1295.3,1282.5,8580.0,3023.7,0.0,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2344.0,0.0,1544.0,800.0 +house027.xml,72.687,72.687,31.807,31.807,40.88,0.0,0.0,0.0,0.0,0.0,0.0,0.436,0.0,0.0,7.942,1.023,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,0.0,19.933,0.0,17.879,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.776,0.0,23.27,8.564,5.23,0.0,0.0,0.0,0.0,1579.5,3694.9,3694.9,24.054,23.371,0.719,1.784,7.914,0.454,0.0,0.593,4.982,-3.982,0.0,0.0,0.383,3.36,-0.138,1.752,0.0,10.446,0.0,2.033,-8.791,-2.847,0.489,1.123,0.656,0.056,0.0,-0.113,0.132,5.429,0.0,0.0,0.095,3.842,-0.139,-0.365,-0.97,-3.474,0.0,2.62,10.726,3.101,1610.9,1574.7,10579.5,3728.4,0.0,75000.0,36000.0,0.0,24.62,91.58,33087.0,7577.0,4494.0,0.0,375.0,6506.0,550.0,250.0,4088.0,1516.0,7731.0,19084.0,3678.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5496.0,1758.0,2939.0,800.0 +house028.xml,67.954,67.954,30.055,30.055,37.899,0.0,0.0,0.0,0.0,0.0,0.0,0.293,0.0,0.0,7.432,1.53,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,0.0,13.398,0.0,18.115,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.621,0.0,23.424,10.226,3.615,0.0,0.0,0.0,0.0,1526.4,3541.8,3541.8,20.248,23.099,0.776,1.677,7.127,0.354,0.0,0.441,4.982,-3.806,0.0,0.0,0.244,2.529,-0.047,4.071,0.0,4.489,0.0,1.62,-9.073,-2.9,0.604,1.216,-0.632,0.097,0.0,0.058,0.062,6.21,0.0,0.0,0.06,1.836,-0.048,-1.089,-1.222,-1.651,0.0,3.125,11.531,3.238,1857.7,1859.4,12951.6,4219.3,0.0,75000.0,36000.0,0.0,24.62,91.58,31422.0,8678.0,4365.0,0.0,315.0,5287.0,616.0,180.0,3569.0,1488.0,6925.0,19789.0,3915.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5049.0,2024.0,2025.0,1000.0 +house029.xml,77.49,77.49,29.992,29.992,47.498,0.0,0.0,0.0,0.0,0.0,0.0,0.701,0.0,0.0,6.131,0.862,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,0.0,31.833,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,31.565,0.0,13.473,9.614,0.0,0.0,0.0,0.0,0.0,1614.7,3007.2,3007.2,28.341,13.898,0.0,3.365,14.611,0.393,0.0,0.296,6.291,-6.007,0.0,0.0,6.862,0.0,-0.086,7.303,0.0,7.307,0.0,3.174,-8.385,-3.714,0.0,1.128,-0.712,0.01,0.0,0.069,0.463,5.276,0.0,0.0,-0.452,0.0,-0.081,-0.803,-1.052,-1.527,0.0,1.251,7.159,2.829,1610.9,1574.7,11033.0,3888.2,0.0,77000.0,36000.0,0.0,17.24,91.22,29341.0,2277.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,16280.0,-152.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3901.0,903.0,2197.0,800.0 +house030.xml,58.682,58.682,17.191,17.191,0.0,0.0,41.491,0.0,0.0,0.0,0.0,0.056,0.0,0.0,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,0.0,23.166,0.0,13.289,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.478,0.0,0.0,7.715,2.206,0.0,0.0,0.0,0.0,1133.9,975.2,1133.9,15.963,0.0,0.0,1.673,10.157,0.486,1.1,1.039,5.182,-3.325,0.0,0.0,0.0,3.437,-0.041,2.725,0.0,5.693,0.0,0.0,-7.831,-2.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,1066.1,992.7,6763.6,2580.9,0.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1714.0,0.0,1114.0,600.0 +house031.xml,233.826,233.826,50.533,50.533,183.293,0.0,0.0,0.0,0.0,0.0,0.0,3.407,0.0,0.0,13.023,3.411,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.802,0.0,29.094,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.913,0.0,39.785,17.932,5.234,0.0,0.0,48.0,115.0,3052.5,7556.1,7798.1,125.503,49.321,0.0,14.456,42.005,1.048,6.639,1.393,20.051,-16.712,0.0,0.0,1.979,6.048,-0.849,56.906,0.0,0.654,0.0,9.747,-17.118,-6.505,0.0,2.238,5.111,0.174,2.817,0.114,0.456,16.998,0.0,0.0,0.223,-3.626,-0.816,-1.933,-0.385,-0.01,0.0,3.089,11.057,3.856,2593.2,2707.5,18307.9,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83012.0,13661.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44186.0,9754.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8618.0,1699.0,5518.0,1400.0 +house032.xml,101.487,101.487,15.551,15.551,85.936,0.0,0.0,0.0,0.0,0.0,0.0,1.509,0.0,0.0,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.359,0.282,0.166,0.095,0.0,1.858,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.723,0.0,16.238,2.201,2.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.776,0.0,0.0,8.002,4.93,0.0,0.0,153.0,0.0,1348.0,804.3,1348.0,50.432,0.0,0.0,10.402,8.755,1.921,20.407,1.411,8.355,-9.322,0.0,0.0,0.0,4.519,0.02,14.968,0.0,0.624,0.0,0.0,-8.947,-3.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,1341.9,1264.5,7310.3,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,36045.0,0.0,5132.0,0.0,690.0,16560.0,0.0,0.0,1223.0,5647.0,6794.0,17266.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,3550.0,2481.0,0.0,1481.0,1000.0 +house033.xml,107.138,107.138,14.692,14.692,0.0,92.446,0.0,0.0,0.0,0.0,0.0,0.315,0.0,0.0,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.194,1.443,1.158,0.0,1.46,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,0.0,84.764,0.0,7.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.87,0.0,0.0,3.531,0.0,0.0,0.0,0.0,0.0,1018.4,771.3,1018.4,48.455,0.0,0.0,19.111,14.553,0.0,0.0,0.999,11.106,-7.521,0.0,0.0,14.633,0.0,-0.352,18.58,0.0,0.792,0.0,0.0,-5.002,-3.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,924.8,0.0,3905.6,1188.1,0.0,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,19011.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,3550.0,2666.0,0.0,1666.0,1000.0 +house034.xml,153.724,153.724,43.213,43.213,0.0,0.0,110.511,0.0,0.0,0.0,0.0,0.082,0.0,0.0,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.496,0.369,2.745,1.608,0.0,2.255,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,0.0,89.18,0.0,21.331,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.075,0.0,0.0,11.573,5.411,0.0,0.0,0.0,0.0,2949.8,2213.7,2949.8,86.132,0.0,0.0,8.867,26.927,0.0,2.855,1.897,26.618,-26.196,0.0,0.0,10.921,2.675,0.066,34.737,0.0,0.571,0.0,0.0,-16.188,-10.525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1759.0,1745.5,10287.1,3456.0,0.0,210000.0,0.0,0.0,16.16,89.24,61687.0,0.0,15758.0,0.0,1028.0,15796.0,0.0,4773.0,1642.0,4622.0,18068.0,36334.0,0.0,20262.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,3550.0,4951.0,0.0,3951.0,1000.0 +house035.xml,63.658,63.658,17.453,17.453,46.205,0.0,0.0,0.0,0.0,0.0,0.0,0.814,0.0,0.0,1.676,0.112,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.222,0.194,0.114,0.079,0.0,1.46,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.737,0.0,9.633,1.517,2.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.882,0.0,2.507,3.92,3.827,0.0,0.0,102.0,0.0,1326.7,1898.8,1898.8,39.275,9.641,0.366,6.13,10.827,0.0,0.0,0.536,6.093,-7.321,0.0,0.0,7.691,0.0,0.004,13.601,0.0,0.49,0.0,0.0,-7.872,-3.466,0.062,-0.545,-1.526,0.0,0.0,-0.08,-1.406,7.072,0.0,0.0,-4.353,0.0,0.009,-2.705,-0.706,-0.126,0.0,0.0,4.962,1.972,924.8,783.5,4210.1,1280.7,0.0,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,16107.0,0.0,5653.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,3320.0,2960.0,0.0,2160.0,800.0 +house036.xml,82.476,82.476,25.762,25.762,56.714,0.0,0.0,0.0,0.0,0.0,0.0,0.976,0.0,0.0,5.694,0.997,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.359,0.282,2.094,1.383,0.0,1.858,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.236,0.0,17.478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.248,0.0,14.16,8.219,5.844,0.0,0.0,106.0,124.0,1462.1,3175.7,3175.7,31.789,16.805,5.508,2.255,3.97,0.0,0.0,1.823,6.8,-7.195,0.0,0.0,20.995,0.0,-0.007,7.4,0.0,0.554,0.0,0.0,-6.439,-3.437,1.613,0.139,0.0,0.0,0.0,-0.21,-0.869,5.705,0.0,0.0,2.516,0.0,-0.006,-0.73,-0.392,-0.059,0.0,0.0,4.34,2.012,1341.9,1264.5,6447.0,2476.3,0.0,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,13155.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,3090.0,1674.0,0.0,1074.0,600.0 +house037.xml,88.41,88.41,21.781,21.781,0.0,66.629,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,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.359,0.282,2.094,1.383,0.0,1.858,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,0.0,50.472,0.0,16.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,37.448,0.0,0.0,7.429,0.0,0.0,0.0,0.0,0.0,1456.9,1117.9,1456.9,29.69,0.0,0.0,16.699,11.312,0.0,0.0,1.562,7.648,-10.338,0.0,0.0,6.495,0.0,-0.324,14.693,0.0,0.46,0.0,0.0,-6.828,-3.864,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,8324.2,3197.3,0.0,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,25998.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,3320.0,3269.0,0.0,2469.0,800.0 +house038.xml,125.452,125.452,51.181,51.181,74.271,0.0,0.0,0.0,0.0,0.0,0.0,1.031,0.0,0.0,13.725,2.677,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.632,0.457,3.396,1.833,0.0,2.653,6.085,0.0,0.0,0.0,9.242,0.0,0.0,0.0,0.0,0.0,50.239,0.0,24.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,40.189,0.0,30.931,14.715,4.601,0.0,0.0,0.0,223.0,2455.6,5580.8,5639.6,48.331,27.297,0.0,3.652,14.88,0.651,4.465,0.809,12.429,-10.431,0.0,0.0,1.862,2.347,-0.043,22.483,0.0,0.595,0.0,0.0,-10.145,-3.873,0.0,0.845,2.598,0.14,2.252,0.018,0.918,12.753,0.0,0.0,0.337,-0.579,-0.032,-0.577,-0.139,0.005,0.0,0.0,8.63,3.035,2176.1,2226.5,14642.0,4351.2,0.0,71000.0,36000.0,0.0,16.16,89.24,31058.0,0.0,6993.0,0.0,362.0,9766.0,0.0,865.0,597.0,1706.0,10769.0,18733.0,0.0,9118.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,4010.0,3753.0,0.0,2353.0,1400.0 +house039.xml,99.87,99.87,24.033,24.033,75.837,0.0,0.0,0.0,0.0,0.0,0.0,0.146,0.0,0.0,0.0,0.0,5.141,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.632,0.457,3.396,0.126,0.0,2.653,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.151,0.0,0.0,0.0,3.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.89,0.0,0.0,14.272,1.132,0.0,0.0,0.0,0.0,1709.3,1461.4,1709.3,50.068,0.0,0.0,14.208,5.385,0.0,0.0,2.508,16.124,-13.538,0.0,0.0,13.999,0.0,-0.042,13.243,0.0,0.556,0.0,0.0,-4.143,-2.844,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2176.1,2226.5,17537.7,5211.7,0.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,24809.0,0.0,9879.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,3320.0,3173.0,0.0,2373.0,800.0 +house040.xml,101.602,101.602,23.52,23.52,78.082,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,7.373,0.0,0.651,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.359,0.282,2.094,1.383,0.0,1.858,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.723,0.0,17.359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,57.206,0.0,0.0,8.002,5.509,0.0,0.0,0.0,0.0,1751.7,1153.8,1751.7,62.344,0.0,11.265,5.616,22.28,0.0,4.302,2.094,12.88,-12.508,0.0,0.0,2.036,3.382,-0.096,19.739,0.0,0.612,0.0,0.0,-10.087,-4.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1341.9,1264.5,7310.4,2807.9,0.0,75000.0,0.0,0.0,16.16,89.24,44472.0,0.0,7249.0,0.0,1028.0,13761.0,5873.0,795.0,1107.0,3065.0,11594.0,23964.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,3320.0,3333.0,0.0,2533.0,800.0 +house041.xml,258.93,258.93,47.054,47.054,211.876,0.0,0.0,0.0,0.0,0.0,0.0,4.162,0.0,0.0,2.508,0.245,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,0.0,185.321,0.0,26.555,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,174.622,0.0,4.466,15.632,5.04,0.0,0.0,105.0,0.0,3249.4,4610.9,4610.9,77.757,23.918,0.0,11.261,45.049,3.518,35.041,3.141,38.863,-20.773,0.0,0.0,4.608,17.348,-0.578,64.107,0.0,2.766,0.0,0.0,-20.295,-10.998,0.0,0.122,-2.113,-0.121,1.638,-0.218,-2.819,9.454,0.0,0.0,-0.354,-5.262,-0.575,-3.419,-0.97,-0.253,0.0,0.0,6.553,2.945,1857.7,1859.4,14896.4,4852.9,0.0,75000.0,30000.0,0.0,-13.72,81.14,101779.0,0.0,18666.0,0.0,1544.0,34832.0,0.0,2471.0,7949.0,5077.0,31239.0,28192.0,0.0,17118.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,3550.0,2263.0,0.0,1263.0,1000.0 +house042.xml,231.104,231.104,39.98,39.98,191.124,0.0,0.0,0.0,0.0,0.0,0.0,3.906,0.0,0.0,1.697,0.064,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,0.0,166.681,0.0,24.443,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,163.886,0.0,2.58,15.632,3.23,0.0,0.0,0.0,0.0,2758.4,3044.9,3044.9,88.149,19.036,0.0,9.173,39.855,4.013,43.722,2.65,34.229,-19.417,0.0,0.0,2.449,14.522,-0.355,56.291,0.0,1.751,0.0,0.0,-19.243,-7.618,0.0,0.218,-1.428,-0.057,2.844,-0.145,-2.939,5.799,0.0,0.0,-0.261,-4.926,-0.351,-2.751,-0.582,-0.139,0.0,0.0,5.468,1.921,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,24000.0,0.0,-13.72,81.14,90757.0,0.0,17465.0,0.0,1066.0,36724.0,0.0,927.0,2827.0,4248.0,27501.0,15754.0,0.0,5761.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,3550.0,2111.0,0.0,1111.0,1000.0 +house043.xml,158.464,158.464,29.935,29.935,128.529,0.0,0.0,0.0,0.0,0.0,0.0,2.466,0.0,0.0,1.914,0.107,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,0.0,108.626,0.0,19.903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.466,0.0,2.697,13.084,2.209,0.0,0.0,0.0,0.0,1987.9,2760.3,2760.3,54.557,13.381,0.0,3.168,23.196,2.294,33.782,5.576,22.938,-10.008,0.0,0.0,0.549,9.916,-0.296,28.974,0.0,1.578,0.0,0.0,-14.399,-5.171,0.0,0.043,-0.806,-0.089,1.681,-0.346,-2.008,4.659,0.0,0.0,-0.068,-3.583,-0.295,-1.564,-0.499,-0.142,0.0,0.0,4.425,1.391,1610.9,1574.7,12168.1,4288.2,0.0,90000.0,30000.0,0.0,-13.72,81.14,58971.0,0.0,11581.0,0.0,2417.0,24912.0,0.0,202.0,2107.0,1519.0,16233.0,15217.0,0.0,7585.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,3320.0,1456.0,0.0,656.0,800.0 +house044.xml,226.591,226.591,43.423,43.423,183.169,0.0,0.0,0.0,0.0,0.0,0.0,4.703,0.0,0.0,2.0,0.182,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,0.0,160.597,0.0,22.572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.211,0.0,3.421,13.084,4.455,0.0,0.0,0.0,0.0,3093.0,3546.1,3546.1,80.998,18.73,4.37,6.899,36.505,9.235,19.259,2.757,18.188,-11.677,0.0,0.0,12.916,15.073,-0.492,61.982,0.0,1.436,0.0,0.0,-18.082,-10.281,0.25,0.46,-1.344,-0.105,1.199,-0.116,-0.763,5.624,0.0,0.0,-1.119,-4.82,-0.489,-2.644,-0.448,-0.098,0.0,0.0,5.246,2.674,1610.9,1574.7,12168.1,4288.2,0.0,110000.0,36000.0,0.0,-13.72,81.14,79559.0,0.0,8527.0,0.0,1403.0,27544.0,1911.0,5425.0,1899.0,3592.0,29257.0,20736.0,0.0,10745.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,3320.0,1982.0,0.0,1182.0,800.0 +house045.xml,152.399,152.399,35.192,35.192,117.208,0.0,0.0,0.0,0.0,0.0,0.0,2.775,0.0,0.0,2.364,0.293,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,0.0,94.754,0.0,22.454,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.034,0.0,3.955,13.084,4.364,0.0,0.0,0.0,0.0,2316.2,3025.6,3025.6,47.197,12.955,3.573,3.08,15.119,2.29,32.747,1.135,18.522,-12.215,1.044,-0.408,0.086,12.611,-0.249,20.643,0.0,10.932,0.0,0.0,-14.635,-7.011,-0.01,0.008,-1.075,-0.123,0.921,-0.085,-1.422,6.252,-0.067,0.396,-0.013,-4.06,-0.248,-1.175,-0.888,-1.254,0.0,0.0,4.853,2.054,1610.9,1574.7,12168.2,4288.2,0.0,70000.0,30000.0,0.0,-13.72,81.14,47166.0,0.0,8927.0,496.0,442.0,18970.0,1494.0,31.0,2228.0,1367.0,13211.0,15237.0,0.0,8945.0,856.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,3320.0,1423.0,0.0,623.0,800.0 +house046.xml,25.01,25.01,25.01,25.01,0.0,0.0,0.0,0.0,0.0,0.0,5.324,0.442,0.265,0.009,3.752,1.043,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,0.0,13.798,0.274,12.909,4.305,0.617,0.0,0.0,0.0,0.0,3837.8,2404.7,3837.8,16.152,13.164,0.0,2.519,3.833,0.0,0.0,0.327,2.231,-1.648,0.0,0.0,-0.155,0.0,-0.301,7.958,0.0,0.377,0.0,2.742,-3.562,-0.481,0.0,1.265,2.525,0.0,0.0,0.024,0.772,2.453,0.0,0.0,-0.154,0.0,-0.299,-0.473,-0.141,0.018,0.0,1.819,4.609,0.549,596.8,442.2,5543.5,2208.6,0.0,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,15040.0,3886.0,3222.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2860.0,3101.0,483.0,2218.0,400.0 +house047.xml,20.762,20.762,14.481,14.481,6.281,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.0,0.0,0.602,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,0.0,6.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.105,0.0,1.556,4.203,0.0,0.0,0.0,0.0,0.0,873.4,976.6,976.6,4.758,2.585,0.0,-0.001,0.775,0.127,0.0,0.0,1.726,-0.559,0.0,0.0,0.0,1.374,-0.01,1.573,0.0,4.971,0.0,0.206,-3.59,-0.512,0.0,-0.0,0.1,0.032,0.0,0.0,-0.066,0.798,0.0,0.0,0.0,-1.125,-0.01,-0.23,-0.245,-1.381,0.0,-0.0,3.276,0.409,251.7,442.2,5772.6,1524.2,0.0,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,4112.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2860.0,1599.0,0.0,1199.0,400.0 +house048.xml,91.394,91.394,39.981,39.981,51.414,0.0,0.0,0.0,0.0,0.0,0.0,0.342,0.0,0.0,13.088,3.823,0.0,0.0,0.0,3.691,0.085,0.498,3.005,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,0.0,35.477,0.0,12.598,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.716,0.0,52.274,7.253,2.657,0.0,0.0,0.0,0.0,1538.7,5444.3,5444.3,42.014,33.474,1.023,2.631,12.005,0.0,0.0,0.803,4.609,-2.524,0.0,0.0,0.056,2.012,-0.563,6.79,0.0,4.189,0.0,6.411,-7.337,-1.493,1.319,0.986,9.248,0.0,0.0,0.562,3.662,4.27,0.0,0.0,0.074,10.05,-0.551,0.504,-0.456,1.906,0.0,7.077,11.653,2.198,130.3,817.7,11617.6,3495.1,0.0,63000.0,46500.0,0.0,25.88,98.42,51007.0,12330.0,4499.0,0.0,585.0,9704.0,828.0,45.0,11275.0,2249.0,9492.0,30574.0,8419.0,4431.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,3550.0,4490.0,1126.0,2365.0,1000.0 +house049.xml,33.122,33.122,29.625,29.625,3.497,0.0,0.0,0.0,0.0,0.0,7.74,0.047,0.0,0.0,5.052,0.124,2.632,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.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,6.901,0.0,30.735,4.262,1.318,0.0,0.0,0.0,38.0,4645.5,2195.9,4645.5,13.151,17.333,0.0,1.368,4.348,0.0,0.0,0.0,4.233,-5.804,0.0,0.0,0.0,1.252,-0.081,2.653,0.0,1.846,0.0,0.0,-2.547,-0.463,0.0,1.69,7.219,0.0,0.0,0.0,2.967,9.864,0.0,0.0,0.0,3.492,-0.08,-0.04,-2.986,0.7,0.0,0.0,7.431,1.011,728.6,567.4,7487.0,928.5,0.0,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,21262.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,3090.0,0.0,0.0,0.0,0.0 +house050.xml,51.765,51.765,22.077,22.077,29.688,0.0,0.0,0.0,0.0,0.0,0.0,0.27,0.0,0.0,2.085,0.381,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,0.0,15.772,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.406,0.0,5.891,8.572,0.0,0.0,0.0,0.0,0.0,1156.6,2821.9,2821.9,11.085,17.377,0.0,4.153,6.539,0.0,0.0,2.036,5.175,-4.145,0.0,0.0,4.906,0.0,-0.163,2.669,0.0,3.682,0.0,1.887,-10.201,-1.222,0.0,-0.32,-0.352,0.0,0.0,-0.402,0.241,4.091,0.0,0.0,-1.016,0.0,-0.162,-0.568,-1.254,-0.777,0.0,0.649,5.335,0.56,1689.0,437.0,10674.9,2994.2,0.0,58000.0,29000.0,0.0,28.58,87.08,21919.0,7752.0,3277.0,0.0,856.0,3061.0,0.0,2043.0,0.0,1771.0,3159.0,18928.0,5164.0,5885.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,3320.0,723.0,0.0,-77.0,800.0 diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index 87fdf5457a..4bbd8afd0e 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -1,379 +1,379 @@ HPXML,Bills: Total (USD),Bills: Electricity: Fixed (USD),Bills: Electricity: Energy (USD),Bills: Electricity: PV Credit (USD),Bills: Electricity: Total (USD),Bills: Natural Gas: Fixed (USD),Bills: Natural Gas: Energy (USD),Bills: Natural Gas: Total (USD),Bills: Fuel Oil: Fixed (USD),Bills: Fuel Oil: Energy (USD),Bills: Fuel Oil: Total (USD),Bills: Propane: Fixed (USD),Bills: Propane: Energy (USD),Bills: Propane: Total (USD),Bills: Wood Cord: Fixed (USD),Bills: Wood Cord: Energy (USD),Bills: Wood Cord: Total (USD),Bills: Wood Pellets: Fixed (USD),Bills: Wood Pellets: Energy (USD),Bills: Wood Pellets: Total (USD),Bills: Coal: Fixed (USD),Bills: Coal: Energy (USD),Bills: Coal: Total (USD),Tiered: Total (USD),Tiered: Electricity: Fixed (USD),Tiered: Electricity: Energy (USD),Tiered: Electricity: PV Credit (USD),Tiered: Electricity: Total (USD),Tiered: Natural Gas: Fixed (USD),Tiered: Natural Gas: Energy (USD),Tiered: Natural Gas: Total (USD),Tiered: Fuel Oil: Fixed (USD),Tiered: Fuel Oil: Energy (USD),Tiered: Fuel Oil: Total (USD),Tiered: Propane: Fixed (USD),Tiered: Propane: Energy (USD),Tiered: Propane: Total (USD),Tiered: Wood Cord: Fixed (USD),Tiered: Wood Cord: Energy (USD),Tiered: Wood Cord: Total (USD),Tiered: Wood Pellets: Fixed (USD),Tiered: Wood Pellets: Energy (USD),Tiered: Wood Pellets: Total (USD),Tiered: Coal: Fixed (USD),Tiered: Coal: Energy (USD),Tiered: Coal: Total (USD),TOU: Total (USD),TOU: Electricity: Fixed (USD),TOU: Electricity: Energy (USD),TOU: Electricity: PV Credit (USD),TOU: Electricity: Total (USD),TOU: Natural Gas: Fixed (USD),TOU: Natural Gas: Energy (USD),TOU: Natural Gas: Total (USD),TOU: Fuel Oil: Fixed (USD),TOU: Fuel Oil: Energy (USD),TOU: Fuel Oil: Total (USD),TOU: Propane: Fixed (USD),TOU: Propane: Energy (USD),TOU: Propane: Total (USD),TOU: Wood Cord: Fixed (USD),TOU: Wood Cord: Energy (USD),TOU: Wood Cord: Total (USD),TOU: Wood Pellets: Fixed (USD),TOU: Wood Pellets: Energy (USD),TOU: Wood Pellets: Total (USD),TOU: Coal: Fixed (USD),TOU: Coal: Energy (USD),TOU: Coal: Total (USD),Tiered and TOU: Total (USD),Tiered and TOU: Electricity: Fixed (USD),Tiered and TOU: Electricity: Energy (USD),Tiered and TOU: Electricity: PV Credit (USD),Tiered and TOU: Electricity: Total (USD),Tiered and TOU: Natural Gas: Fixed (USD),Tiered and TOU: Natural Gas: Energy (USD),Tiered and TOU: Natural Gas: Total (USD),Tiered and TOU: Fuel Oil: Fixed (USD),Tiered and TOU: Fuel Oil: Energy (USD),Tiered and TOU: Fuel Oil: Total (USD),Tiered and TOU: Propane: Fixed (USD),Tiered and TOU: Propane: Energy (USD),Tiered and TOU: Propane: Total (USD),Tiered and TOU: Wood Cord: Fixed (USD),Tiered and TOU: Wood Cord: Energy (USD),Tiered and TOU: Wood Cord: Total (USD),Tiered and TOU: Wood Pellets: Fixed (USD),Tiered and TOU: Wood Pellets: Energy (USD),Tiered and TOU: Wood Pellets: Total (USD),Tiered and TOU: Coal: Fixed (USD),Tiered and TOU: Coal: Energy (USD),Tiered and TOU: Coal: Total (USD),Real-Time Pricing: Total (USD),Real-Time Pricing: Electricity: Fixed (USD),Real-Time Pricing: Electricity: Energy (USD),Real-Time Pricing: Electricity: PV Credit (USD),Real-Time Pricing: Electricity: Total (USD),Real-Time Pricing: Natural Gas: Fixed (USD),Real-Time Pricing: Natural Gas: Energy (USD),Real-Time Pricing: Natural Gas: Total (USD),Real-Time Pricing: Fuel Oil: Fixed (USD),Real-Time Pricing: Fuel Oil: Energy (USD),Real-Time Pricing: Fuel Oil: Total (USD),Real-Time Pricing: Propane: Fixed (USD),Real-Time Pricing: Propane: Energy (USD),Real-Time Pricing: Propane: Total (USD),Real-Time Pricing: Wood Cord: Fixed (USD),Real-Time Pricing: Wood Cord: Energy (USD),Real-Time Pricing: Wood Cord: Total (USD),Real-Time Pricing: Wood Pellets: Fixed (USD),Real-Time Pricing: Wood Pellets: Energy (USD),Real-Time Pricing: Wood Pellets: Total (USD),Real-Time Pricing: Coal: Fixed (USD),Real-Time Pricing: Coal: Energy (USD),Real-Time Pricing: Coal: Total (USD),Simple: Total (USD),Simple: Electricity: Fixed (USD),Simple: Electricity: Energy (USD),Simple: Electricity: PV Credit (USD),Simple: Electricity: Total (USD),Simple: Natural Gas: Fixed (USD),Simple: Natural Gas: Energy (USD),Simple: Natural Gas: Total (USD),Simple: Fuel Oil: Fixed (USD),Simple: Fuel Oil: Energy (USD),Simple: Fuel Oil: Total (USD),Simple: Propane: Fixed (USD),Simple: Propane: Energy (USD),Simple: Propane: Total (USD),Simple: Wood Cord: Fixed (USD),Simple: Wood Cord: Energy (USD),Simple: Wood Cord: Total (USD),Simple: Wood Pellets: Fixed (USD),Simple: Wood Pellets: Energy (USD),Simple: Wood Pellets: Total (USD),Simple: Coal: Fixed (USD),Simple: Coal: Energy (USD),Simple: Coal: Total (USD),Detailed: Total (USD),Detailed: Electricity: Fixed (USD),Detailed: Electricity: Energy (USD),Detailed: Electricity: PV Credit (USD),Detailed: Electricity: Total (USD),Detailed: Natural Gas: Fixed (USD),Detailed: Natural Gas: Energy (USD),Detailed: Natural Gas: Total (USD),Detailed: Fuel Oil: Fixed (USD),Detailed: Fuel Oil: Energy (USD),Detailed: Fuel Oil: Total (USD),Detailed: Propane: Fixed (USD),Detailed: Propane: Energy (USD),Detailed: Propane: Total (USD),Detailed: Wood Cord: Fixed (USD),Detailed: Wood Cord: Energy (USD),Detailed: Wood Cord: Total (USD),Detailed: Wood Pellets: Fixed (USD),Detailed: Wood Pellets: Energy (USD),Detailed: Wood Pellets: Total (USD),Detailed: Coal: Fixed (USD),Detailed: Coal: Energy (USD),Detailed: Coal: 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: Energy (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: Energy (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Total (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Wholesale Excess Rate: Propane: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Propane: Energy (USD),Net Metering w/ Wholesale Excess Rate: Propane: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Wholesale Excess Rate: Coal: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Coal: Energy (USD),Net Metering w/ Wholesale Excess Rate: Coal: 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: Energy (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: Energy (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Total (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Retail Excess Rate: Propane: Fixed (USD),Net Metering w/ Retail Excess Rate: Propane: Energy (USD),Net Metering w/ Retail Excess Rate: Propane: Total (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Total (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Retail Excess Rate: Coal: Fixed (USD),Net Metering w/ Retail Excess Rate: Coal: Energy (USD),Net Metering w/ Retail Excess Rate: Coal: Total (USD),Feed-In Tariff: Total (USD),Feed-In Tariff: Electricity: Fixed (USD),Feed-In Tariff: Electricity: Energy (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: Energy (USD),Feed-In Tariff: Natural Gas: Total (USD),Feed-In Tariff: Fuel Oil: Fixed (USD),Feed-In Tariff: Fuel Oil: Energy (USD),Feed-In Tariff: Fuel Oil: Total (USD),Feed-In Tariff: Propane: Fixed (USD),Feed-In Tariff: Propane: Energy (USD),Feed-In Tariff: Propane: Total (USD),Feed-In Tariff: Wood Cord: Fixed (USD),Feed-In Tariff: Wood Cord: Energy (USD),Feed-In Tariff: Wood Cord: Total (USD),Feed-In Tariff: Wood Pellets: Fixed (USD),Feed-In Tariff: Wood Pellets: Energy (USD),Feed-In Tariff: Wood Pellets: Total (USD),Feed-In Tariff: Coal: Fixed (USD),Feed-In Tariff: Coal: Energy (USD),Feed-In Tariff: Coal: Total (USD) -base-appliances-coal.xml,1815.09,144.0,1225.09,0.0,1369.09,144.0,229.01,373.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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1528.11,144.0,1226.81,0.0,1370.81,144.0,13.3,157.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier-ief-whole-home.xml,1529.57,144.0,1228.48,0.0,1372.48,144.0,13.09,157.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier-multiple.xml,1526.0,144.0,1223.98,0.0,1367.98,144.0,14.02,158.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier.xml,1527.12,144.0,1225.97,0.0,1369.97,144.0,13.15,157.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-gas.xml,1793.64,144.0,1225.09,0.0,1369.09,144.0,280.55,424.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-modified.xml,1875.23,144.0,1360.33,0.0,1504.33,144.0,226.9,370.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1590.82,144.0,1046.53,0.0,1190.53,144.0,256.29,400.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2011.54,144.0,1703.92,0.0,1847.92,0.0,0.0,0.0,0.0,163.62,163.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-oil.xml,1912.29,144.0,1225.09,0.0,1369.09,144.0,229.01,373.01,0.0,170.19,170.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-propane-location-portland-or.xml,1529.99,144.0,891.57,0.0,1035.57,144.0,207.24,351.24,0.0,0.0,0.0,0.0,143.18,143.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-propane.xml,1874.18,144.0,1225.09,0.0,1369.09,144.0,229.01,373.01,0.0,0.0,0.0,0.0,132.08,132.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-wood.xml,1815.09,144.0,1225.09,0.0,1369.09,144.0,229.01,373.01,0.0,0.0,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1878.48,144.0,1319.09,0.0,1463.09,144.0,271.39,415.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-conditioned.xml,2021.66,144.0,1494.33,0.0,1638.33,144.0,239.33,383.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-flat.xml,1786.42,144.0,1292.31,0.0,1436.31,144.0,206.11,350.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1554.26,144.0,1223.24,0.0,1367.24,144.0,43.02,187.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-unvented-insulated-roof.xml,1817.22,144.0,1298.12,0.0,1442.12,144.0,231.1,375.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-vented.xml,1833.17,144.0,1311.22,0.0,1455.22,144.0,233.95,377.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-battery-scheduled.xml,1910.9,144.0,1386.97,0.0,1530.97,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-battery.xml,1848.02,144.0,1324.09,0.0,1468.09,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-2stories.xml,1737.42,144.0,1275.68,0.0,1419.68,144.0,173.74,317.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-atticroof-cathedral.xml,2297.7,144.0,1370.31,0.0,1514.31,144.0,639.39,783.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-infil-compartmentalization-test.xml,1521.67,144.0,1102.28,0.0,1246.28,144.0,131.39,275.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached.xml,1521.67,144.0,1102.28,0.0,1246.28,144.0,131.39,275.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,1323.11,144.0,911.97,0.0,1055.97,144.0,123.14,267.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-multiple.xml,1285.45,144.0,930.19,0.0,1074.19,144.0,67.26,211.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-coal.xml,1815.03,144.0,1225.09,0.0,1369.09,144.0,228.95,372.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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1528.05,144.0,1226.74,0.0,1370.74,144.0,13.31,157.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier-ief-whole-home.xml,1529.5,144.0,1228.41,0.0,1372.41,144.0,13.09,157.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier-multiple.xml,1525.92,144.0,1223.9,0.0,1367.9,144.0,14.02,158.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier.xml,1527.06,144.0,1225.9,0.0,1369.9,144.0,13.16,157.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-gas.xml,1793.59,144.0,1225.09,0.0,1369.09,144.0,280.5,424.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-modified.xml,1875.16,144.0,1360.32,0.0,1504.32,144.0,226.84,370.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-none.xml,1590.75,144.0,1046.52,0.0,1190.52,144.0,256.23,400.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-oil-location-miami-fl.xml,2011.55,144.0,1703.93,0.0,1847.93,0.0,0.0,0.0,0.0,163.62,163.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-oil.xml,1912.23,144.0,1225.09,0.0,1369.09,144.0,228.95,372.95,0.0,170.19,170.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-propane-location-portland-or.xml,1530.05,144.0,891.56,0.0,1035.56,144.0,207.31,351.31,0.0,0.0,0.0,0.0,143.18,143.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-propane.xml,1874.12,144.0,1225.09,0.0,1369.09,144.0,228.95,372.95,0.0,0.0,0.0,0.0,132.08,132.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-wood.xml,1815.03,144.0,1225.09,0.0,1369.09,144.0,228.95,372.95,0.0,0.0,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1878.49,144.0,1319.09,0.0,1463.09,144.0,271.4,415.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-conditioned.xml,2021.76,144.0,1494.32,0.0,1638.32,144.0,239.44,383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-flat.xml,1786.37,144.0,1292.31,0.0,1436.31,144.0,206.06,350.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-radiant-barrier.xml,1554.19,144.0,1223.16,0.0,1367.16,144.0,43.03,187.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-unvented-insulated-roof.xml,1817.18,144.0,1298.12,0.0,1442.12,144.0,231.06,375.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-vented.xml,1833.11,144.0,1311.21,0.0,1455.21,144.0,233.9,377.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-battery-scheduled.xml,1910.83,144.0,1386.96,0.0,1530.96,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-battery.xml,1847.95,144.0,1324.08,0.0,1468.08,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached-2stories.xml,1737.31,144.0,1275.68,0.0,1419.68,144.0,173.63,317.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached-atticroof-cathedral.xml,2297.59,144.0,1370.31,0.0,1514.31,144.0,639.28,783.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached-infil-compartmentalization-test.xml,1521.74,144.0,1102.27,0.0,1246.27,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached.xml,1521.74,144.0,1102.27,0.0,1246.27,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,1323.11,144.0,911.96,0.0,1055.96,144.0,123.15,267.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1285.46,144.0,930.19,0.0,1074.19,144.0,67.27,211.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,1462.02,144.0,911.97,0.0,1055.97,144.0,262.05,406.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,1209.0,144.0,907.05,0.0,1051.05,144.0,13.95,157.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,1209.01,144.0,907.05,0.0,1051.05,144.0,13.96,157.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,1227.06,144.0,927.81,0.0,1071.81,144.0,11.25,155.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-infil-compartmentalization-test.xml,1263.99,144.0,970.51,0.0,1114.51,144.0,5.48,149.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-residents-1.xml,988.29,144.0,687.36,0.0,831.36,144.0,12.93,156.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,1278.78,144.0,983.89,0.0,1127.89,144.0,6.89,150.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-infil-compartmentalization-test.xml,1263.98,144.0,970.5,0.0,1114.5,144.0,5.48,149.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-residents-1.xml,988.28,144.0,687.35,0.0,831.35,144.0,12.93,156.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,1278.77,144.0,983.88,0.0,1127.88,144.0,6.89,150.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,1307.87,144.0,1012.52,0.0,1156.52,144.0,7.35,151.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,1290.46,144.0,995.93,0.0,1139.93,144.0,6.53,150.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,1290.45,144.0,995.92,0.0,1139.92,144.0,6.53,150.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,1493.48,144.0,1200.12,0.0,1344.12,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1298.88,144.0,1005.52,0.0,1149.52,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1298.87,144.0,1005.51,0.0,1149.51,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,1126.74,144.0,833.21,0.0,977.21,144.0,5.53,149.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,1127.81,144.0,833.9,0.0,977.9,144.0,5.91,149.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,1127.64,144.0,834.37,0.0,978.37,144.0,5.27,149.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,1130.45,144.0,838.62,0.0,982.62,144.0,3.83,147.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,1127.7,144.0,834.45,0.0,978.45,144.0,5.25,149.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,1126.47,144.0,834.16,0.0,978.16,144.0,4.31,148.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,1126.08,144.0,982.08,0.0,1126.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1126.07,144.0,982.07,0.0,1126.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,1153.69,144.0,1009.69,0.0,1153.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1136.49,144.0,992.49,0.0,1136.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1339.61,144.0,1195.61,0.0,1339.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1146.41,144.0,1002.41,0.0,1146.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-generator.xml,1647.37,144.0,968.16,0.0,1112.16,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1179.23,144.0,1035.23,0.0,1179.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,1064.1,144.0,615.29,0.0,759.29,144.0,160.81,304.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-laundry-room.xml,1036.62,144.0,608.2,0.0,752.2,144.0,140.42,284.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,1064.1,144.0,615.28,0.0,759.28,144.0,160.82,304.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-laundry-room.xml,1036.61,144.0,608.19,0.0,752.19,144.0,140.42,284.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-mechvent-multiple.xml,1631.56,144.0,1131.17,0.0,1275.17,144.0,212.39,356.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,1352.59,144.0,1008.52,0.0,1152.52,144.0,56.07,200.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,1352.58,144.0,1008.51,0.0,1152.51,144.0,56.07,200.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-mechvent.xml,1329.87,144.0,1003.09,0.0,1147.09,144.0,38.78,182.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-pv.xml,365.58,144.0,968.16,-897.25,214.92,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-pv.xml,365.57,144.0,968.16,-897.25,214.91,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-water-heater-recirc.xml,1077.96,144.0,648.99,0.0,792.99,144.0,140.97,284.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily-shared-water-heater.xml,1037.74,144.0,608.77,0.0,752.77,144.0,140.97,284.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-multifamily.xml,1262.82,144.0,968.16,0.0,1112.16,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-combi-tankless-outside.xml,1390.26,144.0,786.23,0.0,930.23,144.0,316.03,460.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-combi-tankless.xml,1403.23,144.0,786.58,0.0,930.58,144.0,328.65,472.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-combi-tankless-outside.xml,1390.21,144.0,786.23,0.0,930.23,144.0,315.98,459.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-combi-tankless.xml,1403.15,144.0,786.58,0.0,930.58,144.0,328.57,472.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-2-speed.xml,1325.43,144.0,1181.43,0.0,1325.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-gshp.xml,1512.73,144.0,1368.73,0.0,1512.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1665.5,144.0,1094.12,0.0,1238.12,144.0,283.38,427.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-tankless.xml,1387.9,144.0,1243.9,0.0,1387.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1512.68,144.0,1368.68,0.0,1512.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-hpwh.xml,1665.45,144.0,1094.12,0.0,1238.12,144.0,283.33,427.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1387.89,144.0,1243.89,0.0,1387.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-var-speed.xml,1298.14,144.0,1154.14,0.0,1298.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater.xml,1388.6,144.0,1244.6,0.0,1388.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-dwhr.xml,1765.82,144.0,1241.89,0.0,1385.89,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-detailed-setpoints.xml,1419.62,144.0,786.17,0.0,930.17,144.0,345.45,489.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1388.59,144.0,1244.59,0.0,1388.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-dwhr.xml,1765.75,144.0,1241.88,0.0,1385.88,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-detailed-setpoints.xml,1419.55,144.0,786.17,0.0,930.17,144.0,345.38,489.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-indirect-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1436.2,144.0,786.23,0.0,930.23,144.0,361.97,505.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-standbyloss.xml,1423.61,144.0,786.11,0.0,930.11,144.0,349.5,493.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-with-solar-fraction.xml,1337.33,144.0,786.44,0.0,930.44,144.0,262.89,406.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect.xml,1421.12,144.0,786.18,0.0,930.18,144.0,346.94,490.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-electric.xml,1838.33,144.0,1312.13,0.0,1456.13,144.0,238.2,382.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1674.52,144.0,991.61,0.0,1135.61,144.0,394.91,538.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-hpwh.xml,1660.21,144.0,1088.74,0.0,1232.74,144.0,283.47,427.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-indirect.xml,1419.03,144.0,786.24,0.0,930.24,144.0,344.79,488.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-low-flow-fixtures.xml,1834.53,144.0,1310.6,0.0,1454.6,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-multiple.xml,1395.06,144.0,857.77,0.0,1001.77,144.0,249.29,393.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1429.23,144.0,905.65,0.0,1049.65,144.0,235.58,379.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-demand.xml,1846.18,144.0,1322.25,0.0,1466.25,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-manual.xml,1830.52,144.0,1306.59,0.0,1450.59,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-nocontrol.xml,2394.82,144.0,1870.89,0.0,2014.89,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-temperature.xml,2214.6,144.0,1690.67,0.0,1834.67,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-timer.xml,2394.82,144.0,1870.89,0.0,2014.89,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-direct-evacuated-tube.xml,1633.32,144.0,1109.39,0.0,1253.39,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-direct-flat-plate.xml,1579.26,144.0,1055.42,0.0,1199.42,144.0,235.84,379.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-direct-ics.xml,1635.47,144.0,1111.54,0.0,1255.54,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-fraction.xml,1630.97,144.0,1104.19,0.0,1248.19,144.0,238.78,382.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-indirect-flat-plate.xml,1578.77,144.0,1058.63,0.0,1202.63,144.0,232.14,376.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-thermosyphon-flat-plate.xml,1569.01,144.0,1045.17,0.0,1189.17,144.0,235.84,379.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-coal.xml,1751.89,144.0,993.6,0.0,1137.6,144.0,238.29,382.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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1847.57,144.0,1323.71,0.0,1467.71,144.0,235.86,379.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-elec-uef.xml,1850.37,144.0,1326.99,0.0,1470.99,144.0,235.38,379.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas-outside.xml,1696.34,144.0,985.74,0.0,1129.74,144.0,422.6,566.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas-uef-fhr.xml,1679.28,144.0,992.2,0.0,1136.2,144.0,399.08,543.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1679.28,144.0,992.2,0.0,1136.2,144.0,399.08,543.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1683.73,144.0,993.6,0.0,1137.6,144.0,402.13,546.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-detailed-schedules.xml,1637.82,144.0,1057.68,0.0,1201.68,144.0,292.14,436.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1631.83,144.0,1051.29,0.0,1195.29,144.0,292.54,436.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-outside.xml,1764.44,144.0,1236.12,0.0,1380.12,144.0,240.32,384.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-uef.xml,1631.83,144.0,1051.29,0.0,1195.29,144.0,292.54,436.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,1568.7,144.0,1025.78,0.0,1169.78,144.0,254.92,398.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-with-solar.xml,1580.34,144.0,1048.62,0.0,1192.62,144.0,243.72,387.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump.xml,1665.21,144.0,1094.48,0.0,1238.48,144.0,282.73,426.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1844.88,144.0,1310.86,0.0,1454.86,144.0,246.02,390.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-model-type-stratified.xml,1834.25,144.0,1306.6,0.0,1450.6,144.0,239.65,383.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-oil.xml,2060.83,144.0,993.6,0.0,1137.6,144.0,238.29,382.29,0.0,540.94,540.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-wood.xml,1751.89,144.0,993.6,0.0,1137.6,144.0,238.29,382.29,0.0,0.0,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1634.47,144.0,985.74,0.0,1129.74,144.0,360.73,504.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-electric-outside.xml,1860.3,144.0,1331.98,0.0,1475.98,144.0,240.32,384.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-electric-uef.xml,1856.39,144.0,1328.07,0.0,1472.07,144.0,240.32,384.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-electric.xml,1860.3,144.0,1331.98,0.0,1475.98,144.0,240.32,384.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas-uef.xml,1618.18,144.0,985.74,0.0,1129.74,144.0,344.44,488.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas-with-solar-fraction.xml,1556.29,144.0,985.74,0.0,1129.74,144.0,282.55,426.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas-with-solar.xml,1543.41,144.0,1001.52,0.0,1145.52,144.0,253.89,397.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas.xml,1634.72,144.0,985.74,0.0,1129.74,144.0,360.98,504.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-propane.xml,1823.24,144.0,985.74,0.0,1129.74,144.0,240.32,384.32,0.0,0.0,0.0,0.0,309.18,309.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-2stories-garage.xml,2059.14,144.0,1509.39,0.0,1653.39,144.0,261.75,405.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-2stories.xml,2230.04,144.0,1630.73,0.0,1774.73,144.0,311.31,455.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-1.xml,1671.23,144.0,1126.23,0.0,1270.23,144.0,257.0,401.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1760.89,144.0,1226.46,0.0,1370.46,144.0,246.43,390.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-4.xml,1934.04,144.0,1420.49,0.0,1564.49,144.0,225.55,369.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-5.xml,2019.52,144.0,1516.23,0.0,1660.23,144.0,215.29,359.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-ceilingtypes.xml,2031.84,144.0,1342.8,0.0,1486.8,144.0,401.04,545.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-outside.xml,1436.16,144.0,786.23,0.0,930.23,144.0,361.93,505.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-standbyloss.xml,1423.54,144.0,786.11,0.0,930.11,144.0,349.43,493.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-with-solar-fraction.xml,1337.26,144.0,786.44,0.0,930.44,144.0,262.82,406.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect.xml,1421.05,144.0,786.18,0.0,930.18,144.0,346.87,490.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-jacket-electric.xml,1838.27,144.0,1312.12,0.0,1456.12,144.0,238.15,382.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1674.42,144.0,991.6,0.0,1135.6,144.0,394.82,538.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-jacket-hpwh.xml,1660.16,144.0,1088.73,0.0,1232.73,144.0,283.43,427.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-jacket-indirect.xml,1418.95,144.0,786.24,0.0,930.24,144.0,344.71,488.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-low-flow-fixtures.xml,1834.47,144.0,1310.6,0.0,1454.6,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-multiple.xml,1394.99,144.0,857.77,0.0,1001.77,144.0,249.22,393.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-none.xml,1429.17,144.0,905.64,0.0,1049.64,144.0,235.53,379.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-demand.xml,1846.12,144.0,1322.25,0.0,1466.25,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-manual.xml,1830.46,144.0,1306.59,0.0,1450.59,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-nocontrol.xml,2394.75,144.0,1870.88,0.0,2014.88,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-temperature.xml,2214.54,144.0,1690.67,0.0,1834.67,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-timer.xml,2394.75,144.0,1870.88,0.0,2014.88,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-direct-evacuated-tube.xml,1633.26,144.0,1109.39,0.0,1253.39,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-direct-flat-plate.xml,1579.19,144.0,1055.41,0.0,1199.41,144.0,235.78,379.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-direct-ics.xml,1635.4,144.0,1111.53,0.0,1255.53,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-fraction.xml,1630.9,144.0,1104.18,0.0,1248.18,144.0,238.72,382.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-indirect-flat-plate.xml,1578.72,144.0,1058.63,0.0,1202.63,144.0,232.09,376.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-thermosyphon-flat-plate.xml,1568.96,144.0,1045.17,0.0,1189.17,144.0,235.79,379.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-coal.xml,1751.8,144.0,993.6,0.0,1137.6,144.0,238.2,382.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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1847.5,144.0,1323.7,0.0,1467.7,144.0,235.8,379.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-elec-uef.xml,1850.31,144.0,1326.99,0.0,1470.99,144.0,235.32,379.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-gas-outside.xml,1696.28,144.0,985.73,0.0,1129.73,144.0,422.55,566.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-gas-uef-fhr.xml,1679.18,144.0,992.19,0.0,1136.19,144.0,398.99,542.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-gas-uef.xml,1679.18,144.0,992.19,0.0,1136.19,144.0,398.99,542.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-gas.xml,1683.65,144.0,993.6,0.0,1137.6,144.0,402.05,546.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-detailed-schedules.xml,1637.75,144.0,1057.67,0.0,1201.67,144.0,292.08,436.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1631.77,144.0,1051.29,0.0,1195.29,144.0,292.48,436.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-outside.xml,1764.37,144.0,1236.11,0.0,1380.11,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-uef.xml,1631.77,144.0,1051.29,0.0,1195.29,144.0,292.48,436.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,1568.64,144.0,1025.77,0.0,1169.77,144.0,254.87,398.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-with-solar.xml,1580.28,144.0,1048.62,0.0,1192.62,144.0,243.66,387.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump.xml,1665.15,144.0,1094.47,0.0,1238.47,144.0,282.68,426.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1844.81,144.0,1310.85,0.0,1454.85,144.0,245.96,389.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-model-type-stratified.xml,1834.19,144.0,1306.6,0.0,1450.6,144.0,239.59,383.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-oil.xml,2060.74,144.0,993.6,0.0,1137.6,144.0,238.2,382.2,0.0,540.94,540.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-wood.xml,1751.8,144.0,993.6,0.0,1137.6,144.0,238.2,382.2,0.0,0.0,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1634.4,144.0,985.73,0.0,1129.73,144.0,360.67,504.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-electric-outside.xml,1860.24,144.0,1331.98,0.0,1475.98,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-electric-uef.xml,1856.33,144.0,1328.07,0.0,1472.07,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-electric.xml,1860.24,144.0,1331.98,0.0,1475.98,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-gas-uef.xml,1618.12,144.0,985.73,0.0,1129.73,144.0,344.39,488.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-gas-with-solar-fraction.xml,1556.23,144.0,985.73,0.0,1129.73,144.0,282.5,426.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-gas-with-solar.xml,1543.36,144.0,1001.52,0.0,1145.52,144.0,253.84,397.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-gas.xml,1634.66,144.0,985.73,0.0,1129.73,144.0,360.93,504.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-propane.xml,1823.17,144.0,985.73,0.0,1129.73,144.0,240.26,384.26,0.0,0.0,0.0,0.0,309.18,309.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-2stories-garage.xml,2059.26,144.0,1509.39,0.0,1653.39,144.0,261.87,405.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-2stories.xml,2230.19,144.0,1630.72,0.0,1774.72,144.0,311.47,455.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-beds-1.xml,1671.17,144.0,1126.22,0.0,1270.22,144.0,256.95,400.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-beds-2.xml,1760.82,144.0,1226.45,0.0,1370.45,144.0,246.37,390.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-beds-4.xml,1933.98,144.0,1420.48,0.0,1564.48,144.0,225.5,369.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-beds-5.xml,2019.46,144.0,1516.22,0.0,1660.22,144.0,215.24,359.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-ceilingtypes.xml,2031.78,144.0,1342.79,0.0,1486.79,144.0,400.99,544.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-floortypes.xml,1770.03,144.0,1081.98,0.0,1225.98,144.0,400.05,544.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-garage.xml,1816.18,144.0,1274.65,0.0,1418.65,144.0,253.53,397.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-ach-house-pressure.xml,1847.85,144.0,1324.09,0.0,1468.09,144.0,235.76,379.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-cfm-house-pressure.xml,1847.85,144.0,1324.09,0.0,1468.09,144.0,235.76,379.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-cfm50.xml,1848.02,144.0,1324.09,0.0,1468.09,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-ela.xml,1928.93,144.0,1324.52,0.0,1468.52,144.0,316.41,460.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-flue.xml,1862.96,144.0,1324.08,0.0,1468.08,144.0,250.88,394.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1928.93,144.0,1324.52,0.0,1468.52,144.0,316.41,460.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-natural-cfm.xml,1928.93,144.0,1324.52,0.0,1468.52,144.0,316.41,460.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-orientations.xml,1849.73,144.0,1323.19,0.0,1467.19,144.0,238.54,382.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-overhangs.xml,1844.87,144.0,1317.82,0.0,1461.82,144.0,239.05,383.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-rooftypes.xml,1842.79,144.0,1317.96,0.0,1461.96,144.0,236.83,380.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-skylights-physical-properties.xml,1903.52,144.0,1364.62,0.0,1508.62,144.0,250.9,394.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1861.25,144.0,1325.76,0.0,1469.76,144.0,247.49,391.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-skylights-storms.xml,1873.38,144.0,1351.99,0.0,1495.99,144.0,233.39,377.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-skylights.xml,1873.39,144.0,1355.68,0.0,1499.68,144.0,229.71,373.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-split-level.xml,1489.74,144.0,1085.51,0.0,1229.51,144.0,116.23,260.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-thermal-mass.xml,1844.6,144.0,1322.36,0.0,1466.36,144.0,234.24,378.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-walltypes.xml,1989.59,144.0,1274.59,0.0,1418.59,144.0,427.0,571.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1812.3,144.0,1287.62,0.0,1431.62,144.0,236.68,380.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-none.xml,1799.9,144.0,1248.41,0.0,1392.41,144.0,263.49,407.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-physical-properties.xml,1933.5,144.0,1328.23,0.0,1472.23,144.0,317.27,461.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-shading-seasons.xml,1847.97,144.0,1325.17,0.0,1469.17,144.0,234.8,378.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-shading.xml,1779.02,144.0,1232.84,0.0,1376.84,144.0,258.18,402.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-storms.xml,1842.82,144.0,1302.59,0.0,1446.59,144.0,252.23,396.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-ambient.xml,1589.19,144.0,1117.65,0.0,1261.65,144.0,183.54,327.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-basement-garage.xml,1701.07,144.0,1203.85,0.0,1347.85,144.0,209.22,353.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-belly-wing-no-skirt.xml,1582.91,144.0,1083.0,0.0,1227.0,144.0,211.91,355.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-belly-wing-skirt.xml,1579.18,144.0,1083.29,0.0,1227.29,144.0,207.89,351.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-complex.xml,2086.48,144.0,1371.94,0.0,1515.94,144.0,426.54,570.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-basement-slab-insulation-full.xml,1833.85,144.0,1344.01,0.0,1488.01,144.0,201.84,345.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-basement-slab-insulation.xml,1841.59,144.0,1331.78,0.0,1475.78,144.0,221.81,365.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-basement-wall-insulation.xml,1823.17,144.0,1307.21,0.0,1451.21,144.0,227.96,371.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-crawlspace.xml,1544.66,144.0,1066.04,0.0,1210.04,144.0,190.62,334.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-multiple.xml,1518.31,144.0,1096.04,0.0,1240.04,144.0,134.27,278.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-slab.xml,1477.71,144.0,1080.31,0.0,1224.31,144.0,109.4,253.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement-above-grade.xml,1534.42,144.0,1101.15,0.0,1245.15,144.0,145.27,289.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement-assembly-r.xml,1489.89,144.0,1079.16,0.0,1223.16,144.0,122.73,266.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1561.44,144.0,1066.88,0.0,1210.88,144.0,206.56,350.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement.xml,1519.83,144.0,1097.27,0.0,1241.27,144.0,134.56,278.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-garage.xml,1816.12,144.0,1274.65,0.0,1418.65,144.0,253.47,397.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-ach-house-pressure.xml,1847.95,144.0,1324.08,0.0,1468.08,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-cfm-house-pressure.xml,1847.95,144.0,1324.08,0.0,1468.08,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-cfm50.xml,1847.95,144.0,1324.08,0.0,1468.08,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-ela.xml,1929.17,144.0,1324.52,0.0,1468.52,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-flue.xml,1862.87,144.0,1324.07,0.0,1468.07,144.0,250.8,394.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-natural-ach.xml,1929.17,144.0,1324.52,0.0,1468.52,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-natural-cfm.xml,1929.17,144.0,1324.52,0.0,1468.52,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-orientations.xml,1849.67,144.0,1323.18,0.0,1467.18,144.0,238.49,382.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-overhangs.xml,1844.8,144.0,1317.81,0.0,1461.81,144.0,238.99,382.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-rooftypes.xml,1842.74,144.0,1317.96,0.0,1461.96,144.0,236.78,380.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-skylights-physical-properties.xml,1903.46,144.0,1364.62,0.0,1508.62,144.0,250.84,394.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1861.19,144.0,1325.75,0.0,1469.75,144.0,247.44,391.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-skylights-storms.xml,1873.31,144.0,1351.98,0.0,1495.98,144.0,233.33,377.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1873.32,144.0,1355.67,0.0,1499.67,144.0,229.65,373.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-split-level.xml,1489.73,144.0,1085.48,0.0,1229.48,144.0,116.25,260.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-thermal-mass.xml,1844.54,144.0,1322.35,0.0,1466.35,144.0,234.19,378.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-walltypes.xml,1989.54,144.0,1274.59,0.0,1418.59,144.0,426.95,570.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-natural-ventilation-availability.xml,1812.24,144.0,1287.61,0.0,1431.61,144.0,236.63,380.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1799.85,144.0,1248.42,0.0,1392.42,144.0,263.43,407.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-physical-properties.xml,1933.44,144.0,1328.22,0.0,1472.22,144.0,317.22,461.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-shading-seasons.xml,1847.92,144.0,1325.17,0.0,1469.17,144.0,234.75,378.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-shading.xml,1778.97,144.0,1232.84,0.0,1376.84,144.0,258.13,402.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-storms.xml,1842.77,144.0,1302.59,0.0,1446.59,144.0,252.18,396.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-ambient.xml,1589.19,144.0,1117.64,0.0,1261.64,144.0,183.55,327.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-basement-garage.xml,1701.14,144.0,1203.84,0.0,1347.84,144.0,209.3,353.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-belly-wing-no-skirt.xml,1582.91,144.0,1082.99,0.0,1226.99,144.0,211.92,355.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-belly-wing-skirt.xml,1579.19,144.0,1083.29,0.0,1227.29,144.0,207.9,351.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2086.27,144.0,1371.93,0.0,1515.93,144.0,426.34,570.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-basement-slab-insulation-full.xml,1833.79,144.0,1344.01,0.0,1488.01,144.0,201.78,345.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-basement-slab-insulation.xml,1841.54,144.0,1331.78,0.0,1475.78,144.0,221.76,365.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-basement-wall-insulation.xml,1823.12,144.0,1307.21,0.0,1451.21,144.0,227.91,371.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-crawlspace.xml,1544.72,144.0,1066.03,0.0,1210.03,144.0,190.69,334.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-multiple.xml,1518.34,144.0,1096.02,0.0,1240.02,144.0,134.32,278.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-slab.xml,1477.69,144.0,1080.28,0.0,1224.28,144.0,109.41,253.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement-above-grade.xml,1534.46,144.0,1101.14,0.0,1245.14,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1489.97,144.0,1079.13,0.0,1223.13,144.0,122.84,266.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement-wall-insulation.xml,1561.68,144.0,1066.84,0.0,1210.84,144.0,206.84,350.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement.xml,1519.9,144.0,1097.25,0.0,1241.25,144.0,134.65,278.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-unvented-crawlspace.xml,1500.1,144.0,1100.87,0.0,1244.87,144.0,111.23,255.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-vented-crawlspace.xml,1518.72,144.0,1098.74,0.0,1242.74,144.0,131.98,275.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-walkout-basement.xml,1921.54,144.0,1337.97,0.0,1481.97,144.0,295.57,439.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-vented-crawlspace.xml,1518.71,144.0,1098.73,0.0,1242.73,144.0,131.98,275.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-walkout-basement.xml,1921.31,144.0,1337.96,0.0,1481.96,144.0,295.35,439.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1426.77,144.0,1282.77,0.0,1426.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1823.44,144.0,1679.44,0.0,1823.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1681.74,144.0,1537.74,0.0,1681.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1821.74,144.0,1677.74,0.0,1821.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1825.57,144.0,1681.57,0.0,1825.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed.xml,1823.44,144.0,1679.44,0.0,1823.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-2-speed.xml,1671.14,144.0,1527.14,0.0,1671.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1867.33,144.0,1422.41,0.0,1566.41,144.0,156.92,300.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1871.74,144.0,1378.99,0.0,1522.99,144.0,204.75,348.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,1871.74,144.0,1378.99,0.0,1522.99,144.0,204.75,348.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1871.1,144.0,1426.13,0.0,1570.13,144.0,156.97,300.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1875.64,144.0,1431.92,0.0,1575.92,144.0,155.72,299.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed.xml,1659.56,144.0,1515.56,0.0,1659.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-sizing-controls.xml,1938.26,144.0,1581.06,0.0,1725.06,144.0,69.2,213.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1860.58,144.0,1329.08,0.0,1473.08,144.0,243.5,387.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-coal-only.xml,1552.76,144.0,1124.96,0.0,1268.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,283.8,283.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-elec-only.xml,1920.34,144.0,1776.34,0.0,1920.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-gas-central-ac-1-speed.xml,1823.88,144.0,1332.44,0.0,1476.44,144.0,203.44,347.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-gas-only-pilot.xml,1663.58,144.0,1121.57,0.0,1265.57,144.0,254.01,398.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-gas-only.xml,1610.92,144.0,1121.57,0.0,1265.57,144.0,201.35,345.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-oil-only.xml,1930.69,144.0,1124.96,0.0,1268.96,0.0,0.0,0.0,0.0,661.73,661.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1781.26,144.0,1120.78,0.0,1264.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,516.48,516.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-wood-only.xml,1550.19,144.0,1120.78,0.0,1264.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,285.41,285.41,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1823.36,144.0,1679.36,0.0,1823.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1681.65,144.0,1537.65,0.0,1681.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1821.67,144.0,1677.67,0.0,1821.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1825.49,144.0,1681.49,0.0,1825.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed.xml,1823.36,144.0,1679.36,0.0,1823.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-2-speed.xml,1671.08,144.0,1527.08,0.0,1671.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1867.12,144.0,1422.25,0.0,1566.25,144.0,156.87,300.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1871.54,144.0,1378.87,0.0,1522.87,144.0,204.67,348.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,1871.54,144.0,1378.87,0.0,1522.87,144.0,204.67,348.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1870.89,144.0,1425.97,0.0,1569.97,144.0,156.92,300.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1875.45,144.0,1431.78,0.0,1575.78,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1659.5,144.0,1515.5,0.0,1659.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-sizing-controls.xml,1938.24,144.0,1581.06,0.0,1725.06,144.0,69.18,213.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize.xml,1860.52,144.0,1329.08,0.0,1473.08,144.0,243.44,387.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-coal-only.xml,1552.7,144.0,1124.96,0.0,1268.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,283.74,283.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1920.19,144.0,1776.19,0.0,1920.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-gas-central-ac-1-speed.xml,1823.83,144.0,1332.44,0.0,1476.44,144.0,203.39,347.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-gas-only-pilot.xml,1663.54,144.0,1121.57,0.0,1265.57,144.0,253.97,397.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-gas-only.xml,1610.87,144.0,1121.57,0.0,1265.57,144.0,201.3,345.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-oil-only.xml,1930.54,144.0,1124.96,0.0,1268.96,0.0,0.0,0.0,0.0,661.58,661.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-propane-only.xml,1781.15,144.0,1120.78,0.0,1264.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,516.37,516.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-wood-only.xml,1550.13,144.0,1120.78,0.0,1264.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,285.35,285.35,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-central-ac-only-1-speed-seer2.xml,1467.21,144.0,1323.21,0.0,1467.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-central-ac-only-1-speed.xml,1467.8,144.0,1323.8,0.0,1467.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-central-ac-only-2-speed.xml,1405.64,144.0,1261.64,0.0,1405.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-central-ac-only-var-speed.xml,1379.75,144.0,1235.75,0.0,1379.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1896.44,144.0,1752.44,0.0,1896.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-crankcase-heater-40w.xml,1842.79,144.0,1318.86,0.0,1462.86,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1896.36,144.0,1752.36,0.0,1896.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-crankcase-heater-40w.xml,1842.72,144.0,1318.85,0.0,1462.85,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1931.29,144.0,1530.44,0.0,1674.44,144.0,112.85,256.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1934.46,144.0,1493.83,0.0,1637.83,144.0,152.63,296.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1825.82,144.0,1380.95,0.0,1524.95,144.0,156.87,300.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1833.9,144.0,1392.76,0.0,1536.76,144.0,153.14,297.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1736.49,144.0,1330.51,0.0,1474.51,144.0,117.98,261.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-area-fractions.xml,2491.47,144.0,1718.81,0.0,1862.81,144.0,484.66,628.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-area-multipliers.xml,1836.49,144.0,1319.35,0.0,1463.35,144.0,229.14,373.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-buried.xml,1812.54,144.0,1310.26,0.0,1454.26,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-defaults.xml,1930.25,144.0,1492.3,0.0,1636.3,144.0,149.95,293.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-effective-rvalue.xml,1847.95,144.0,1324.06,0.0,1468.06,144.0,235.89,379.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-leakage-cfm50.xml,1838.95,144.0,1319.9,0.0,1463.9,144.0,231.05,375.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-leakage-percent.xml,1866.21,144.0,1331.53,0.0,1475.53,144.0,246.68,390.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-elec-resistance-only.xml,1848.53,144.0,1704.53,0.0,1848.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-evap-cooler-furnace-gas.xml,1700.15,144.0,1169.87,0.0,1313.87,144.0,242.28,386.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1931.23,144.0,1530.39,0.0,1674.39,144.0,112.84,256.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1934.4,144.0,1493.79,0.0,1637.79,144.0,152.61,296.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1825.77,144.0,1380.92,0.0,1524.92,144.0,156.85,300.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1833.86,144.0,1392.74,0.0,1536.74,144.0,153.12,297.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1736.45,144.0,1330.49,0.0,1474.49,144.0,117.96,261.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-area-fractions.xml,2491.68,144.0,1718.8,0.0,1862.8,144.0,484.88,628.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-area-multipliers.xml,1836.44,144.0,1319.35,0.0,1463.35,144.0,229.09,373.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-buried.xml,1812.49,144.0,1310.26,0.0,1454.26,144.0,214.23,358.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-defaults.xml,1930.17,144.0,1492.26,0.0,1636.26,144.0,149.91,293.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-effective-rvalue.xml,1847.89,144.0,1324.06,0.0,1468.06,144.0,235.83,379.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-leakage-cfm50.xml,1838.89,144.0,1319.89,0.0,1463.89,144.0,231.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1866.14,144.0,1331.52,0.0,1475.52,144.0,246.62,390.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-elec-resistance-only.xml,1848.39,144.0,1704.39,0.0,1848.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-evap-cooler-furnace-gas.xml,1700.1,144.0,1169.87,0.0,1313.87,144.0,242.23,386.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-evap-cooler-only-ducted.xml,1296.0,144.0,1152.0,0.0,1296.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1292.84,144.0,1148.84,0.0,1292.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-fireplace-wood-only.xml,1580.5,144.0,1116.33,0.0,1260.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,320.17,320.17,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,1974.66,144.0,1116.33,0.0,1260.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,714.33,714.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1839.71,144.0,1116.33,0.0,1260.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,579.38,579.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-coal-only.xml,1621.44,144.0,1137.88,0.0,1281.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,339.56,339.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-elec-central-ac-1-speed.xml,2220.07,144.0,2076.07,0.0,2220.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-elec-only.xml,2061.82,144.0,1917.82,0.0,2061.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-central-ac-2-speed.xml,1798.44,144.0,1274.51,0.0,1418.51,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-central-ac-var-speed.xml,1773.91,144.0,1249.98,0.0,1393.98,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,1491.9,144.0,1124.86,0.0,1268.86,144.0,79.04,223.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only-pilot.xml,1717.69,144.0,1137.88,0.0,1281.88,144.0,291.81,435.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only.xml,1665.69,144.0,1137.88,0.0,1281.88,144.0,239.81,383.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-room-ac.xml,1871.08,144.0,1340.8,0.0,1484.8,144.0,242.28,386.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-oil-only.xml,2073.62,144.0,1137.88,0.0,1281.88,0.0,0.0,0.0,0.0,791.74,791.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1896.36,144.0,1137.88,0.0,1281.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,614.48,614.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-wood-only.xml,1621.44,144.0,1137.88,0.0,1281.88,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.56,339.56,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-fireplace-wood-only.xml,1580.39,144.0,1116.33,0.0,1260.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,320.06,320.06,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-floor-furnace-propane-only-pilot-light.xml,1974.46,144.0,1116.33,0.0,1260.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,714.13,714.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-floor-furnace-propane-only.xml,1839.51,144.0,1116.33,0.0,1260.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,579.18,579.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-coal-only.xml,1621.35,144.0,1137.87,0.0,1281.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,339.48,339.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-elec-central-ac-1-speed.xml,2219.89,144.0,2075.89,0.0,2219.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-elec-only.xml,2061.63,144.0,1917.63,0.0,2061.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1798.37,144.0,1274.5,0.0,1418.5,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-central-ac-var-speed.xml,1773.85,144.0,1249.98,0.0,1393.98,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,1491.88,144.0,1124.86,0.0,1268.86,144.0,79.02,223.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-only-pilot.xml,1717.62,144.0,1137.87,0.0,1281.87,144.0,291.75,435.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-only.xml,1665.62,144.0,1137.87,0.0,1281.87,144.0,239.75,383.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-room-ac.xml,1871.03,144.0,1340.8,0.0,1484.8,144.0,242.23,386.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-oil-only.xml,2073.42,144.0,1137.87,0.0,1281.87,0.0,0.0,0.0,0.0,791.55,791.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-propane-only.xml,1896.21,144.0,1137.87,0.0,1281.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,614.34,614.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-wood-only.xml,1621.35,144.0,1137.87,0.0,1281.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.48,339.48,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop.xml,1579.1,144.0,1435.1,0.0,1579.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop.xml,1579.06,144.0,1435.06,0.0,1579.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,1393.78,144.0,1249.78,0.0,1393.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1595.81,144.0,1451.81,0.0,1595.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1474.06,144.0,1330.06,0.0,1474.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,1508.87,144.0,1364.87,0.0,1508.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1594.82,144.0,1450.82,0.0,1594.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1936.49,144.0,1792.49,0.0,1936.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1766.48,144.0,1622.48,0.0,1766.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1746.19,144.0,1602.19,0.0,1746.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1889.75,144.0,1353.39,0.0,1497.39,144.0,248.36,392.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1832.63,144.0,1296.27,0.0,1440.27,144.0,248.36,392.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1808.17,144.0,1271.82,0.0,1415.82,144.0,248.35,392.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-only.xml,1676.62,144.0,1133.08,0.0,1277.08,144.0,255.54,399.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,1667.95,144.0,1523.95,0.0,1667.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1595.76,144.0,1451.76,0.0,1595.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1474.01,144.0,1330.01,0.0,1474.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,1508.83,144.0,1364.83,0.0,1508.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump.xml,1594.77,144.0,1450.77,0.0,1594.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1936.39,144.0,1792.39,0.0,1936.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1766.41,144.0,1622.41,0.0,1766.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1746.12,144.0,1602.12,0.0,1746.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1889.69,144.0,1353.39,0.0,1497.39,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1832.57,144.0,1296.27,0.0,1440.27,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1808.11,144.0,1271.81,0.0,1415.81,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-only.xml,1676.55,144.0,1133.07,0.0,1277.07,144.0,255.48,399.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1667.9,144.0,1523.9,0.0,1667.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1396.36,144.0,1252.36,0.0,1396.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1646.12,144.0,1502.12,0.0,1646.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1646.06,144.0,1502.06,0.0,1646.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1371.31,144.0,1227.31,0.0,1371.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ductless.xml,1365.77,144.0,1221.77,0.0,1365.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1346.31,144.0,1202.31,0.0,1346.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1476.39,144.0,1332.39,0.0,1476.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted.xml,1564.91,144.0,1420.91,0.0,1564.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1547.62,144.0,1403.62,0.0,1547.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1702.28,144.0,1318.9,0.0,1462.9,144.0,95.38,239.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1695.03,144.0,1312.73,0.0,1456.73,144.0,94.3,238.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1882.16,144.0,1309.43,0.0,1453.43,0.0,0.0,0.0,0.0,428.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1533.35,144.0,1389.35,0.0,1533.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless.xml,1533.35,144.0,1389.35,0.0,1533.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-multiple.xml,2487.07,144.0,1904.19,0.0,2048.19,144.0,74.14,218.14,0.0,123.08,123.08,0.0,97.66,97.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1476.34,144.0,1332.34,0.0,1476.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ducted.xml,1564.86,144.0,1420.86,0.0,1564.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1547.56,144.0,1403.56,0.0,1547.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1702.21,144.0,1318.86,0.0,1462.86,144.0,95.35,239.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1694.99,144.0,1312.7,0.0,1456.7,144.0,94.29,238.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1882.0,144.0,1309.39,0.0,1453.39,0.0,0.0,0.0,0.0,428.61,428.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1533.31,144.0,1389.31,0.0,1533.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless.xml,1533.31,144.0,1389.31,0.0,1533.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-multiple.xml,2486.85,144.0,1904.05,0.0,2048.05,144.0,74.12,218.12,0.0,123.05,123.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2522.31,144.0,2378.31,0.0,2522.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac-with-heating-electricity.xml,2015.81,144.0,1871.81,0.0,2015.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac-with-heating-natural-gas.xml,1779.92,144.0,1277.48,0.0,1421.48,144.0,214.44,358.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ptac-with-heating-electricity.xml,2015.67,144.0,1871.67,0.0,2015.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ptac-with-heating-natural-gas.xml,1779.87,144.0,1277.48,0.0,1421.48,144.0,214.39,358.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac.xml,1418.87,144.0,1274.87,0.0,1418.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-pthp-heating-capacity-17f.xml,1683.26,144.0,1539.26,0.0,1683.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-pthp.xml,1683.26,144.0,1539.26,0.0,1683.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-pthp-heating-capacity-17f.xml,1683.2,144.0,1539.2,0.0,1683.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-pthp.xml,1683.2,144.0,1539.2,0.0,1683.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1331.24,144.0,1187.24,0.0,1331.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-room-ac-only-ceer.xml,1459.64,144.0,1315.64,0.0,1459.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-room-ac-only-detailed-setpoints.xml,1413.71,144.0,1269.71,0.0,1413.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-room-ac-only.xml,1459.27,144.0,1315.27,0.0,1459.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-with-heating.xml,2057.31,144.0,1913.31,0.0,2057.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-with-reverse-cycle.xml,1683.26,144.0,1539.26,0.0,1683.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-seasons.xml,1844.42,144.0,1322.23,0.0,1466.23,144.0,234.19,378.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints-daily-schedules.xml,1819.52,144.0,1301.63,0.0,1445.63,144.0,229.89,373.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints-daily-setbacks.xml,1816.82,144.0,1307.2,0.0,1451.2,144.0,221.62,365.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints.xml,1621.72,144.0,1256.49,0.0,1400.49,144.0,77.23,221.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-space-heater-gas-only.xml,1574.07,144.0,1116.28,0.0,1260.28,144.0,169.79,313.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-stove-oil-only.xml,2006.39,144.0,1118.7,0.0,1262.7,0.0,0.0,0.0,0.0,743.69,743.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-stove-wood-pellets-only.xml,1581.66,144.0,1118.7,0.0,1262.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,318.96,318.96,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,1807.28,144.0,1305.53,0.0,1449.53,144.0,213.75,357.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-undersized.xml,1666.1,144.0,1216.56,0.0,1360.56,144.0,161.54,305.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-wall-furnace-elec-only.xml,1860.52,144.0,1716.52,0.0,1860.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-ceiling-fans.xml,1862.03,144.0,1338.32,0.0,1482.32,144.0,235.71,379.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-holiday.xml,1855.33,144.0,1331.4,0.0,1475.4,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-kwh-per-year.xml,1960.37,144.0,1456.48,0.0,1600.48,144.0,215.89,359.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-mixed.xml,1854.53,144.0,1330.6,0.0,1474.6,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-none-ceiling-fans.xml,1700.63,144.0,1147.55,0.0,1291.55,144.0,265.08,409.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1686.52,144.0,1133.22,0.0,1277.22,144.0,265.3,409.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-AMY-2012.xml,1911.54,144.0,1282.79,0.0,1426.79,144.0,340.75,484.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-with-heating.xml,2057.17,144.0,1913.17,0.0,2057.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-with-reverse-cycle.xml,1683.2,144.0,1539.2,0.0,1683.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1844.37,144.0,1322.23,0.0,1466.23,144.0,234.14,378.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-setpoints-daily-schedules.xml,1819.47,144.0,1301.63,0.0,1445.63,144.0,229.84,373.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-setpoints-daily-setbacks.xml,1816.76,144.0,1307.19,0.0,1451.19,144.0,221.57,365.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-setpoints.xml,1621.69,144.0,1256.48,0.0,1400.48,144.0,77.21,221.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-space-heater-gas-only.xml,1574.03,144.0,1116.28,0.0,1260.28,144.0,169.75,313.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-stove-oil-only.xml,2006.14,144.0,1118.7,0.0,1262.7,0.0,0.0,0.0,0.0,743.44,743.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-stove-wood-pellets-only.xml,1581.55,144.0,1118.7,0.0,1262.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,318.85,318.85,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,1807.23,144.0,1305.53,0.0,1449.53,144.0,213.7,357.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-undersized.xml,1666.09,144.0,1216.56,0.0,1360.56,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1860.38,144.0,1716.38,0.0,1860.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-ceiling-fans.xml,1861.97,144.0,1338.32,0.0,1482.32,144.0,235.65,379.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-holiday.xml,1855.27,144.0,1331.4,0.0,1475.4,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-kwh-per-year.xml,1960.31,144.0,1456.47,0.0,1600.47,144.0,215.84,359.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-mixed.xml,1854.47,144.0,1330.6,0.0,1474.6,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-none-ceiling-fans.xml,1700.56,144.0,1147.54,0.0,1291.54,144.0,265.02,409.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-none.xml,1686.47,144.0,1133.22,0.0,1277.22,144.0,265.25,409.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-AMY-2012.xml,1911.65,144.0,1282.79,0.0,1426.79,144.0,340.86,484.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-location-baltimore-md.xml,1596.96,144.0,1176.85,0.0,1320.85,144.0,132.11,276.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-location-capetown-zaf.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-dallas-tx.xml,1508.59,144.0,1202.75,0.0,1346.75,144.0,17.84,161.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-duluth-mn.xml,1709.18,144.0,1113.54,0.0,1257.54,144.0,307.64,451.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-helena-mt.xml,1674.67,144.0,1034.18,0.0,1178.18,144.0,352.49,496.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-honolulu-hi.xml,4481.13,144.0,4337.13,0.0,4481.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-miami-fl.xml,1467.88,144.0,1323.88,0.0,1467.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.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1645.96,144.0,1357.95,0.0,1501.95,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1508.52,144.0,1202.67,0.0,1346.67,144.0,17.85,161.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-duluth-mn.xml,1709.34,144.0,1113.53,0.0,1257.53,144.0,307.81,451.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-helena-mt.xml,1674.81,144.0,1034.19,0.0,1178.19,144.0,352.62,496.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-honolulu-hi.xml,4480.8,144.0,4336.8,0.0,4480.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-miami-fl.xml,1467.78,144.0,1323.78,0.0,1467.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-phoenix-az.xml,1645.83,144.0,1357.82,0.0,1501.82,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1213.47,144.0,828.25,0.0,972.25,144.0,97.22,241.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-balanced.xml,2122.11,144.0,1391.38,0.0,1535.38,144.0,442.73,586.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1869.27,144.0,1327.49,0.0,1471.49,144.0,253.78,397.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-airflow-fraction-zero.xml,2049.18,144.0,1387.94,0.0,1531.94,144.0,373.24,517.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-balanced.xml,2122.04,144.0,1391.37,0.0,1535.37,144.0,442.67,586.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-bath-kitchen-fans.xml,1869.21,144.0,1327.48,0.0,1471.48,144.0,253.73,397.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2049.15,144.0,1387.94,0.0,1531.94,144.0,373.21,517.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-mechvent-cfis-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-mechvent-cfis-evap-cooler-only-ducted.xml,1398.02,144.0,1254.02,0.0,1398.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,1984.59,144.0,1338.53,0.0,1482.53,144.0,358.06,502.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-supplemental-fan-supply.xml,2007.74,144.0,1339.5,0.0,1483.5,144.0,380.24,524.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis.xml,2060.22,144.0,1385.43,0.0,1529.43,144.0,386.79,530.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-erv-atre-asre.xml,1968.93,144.0,1392.51,0.0,1536.51,144.0,288.42,432.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-erv.xml,1968.97,144.0,1392.51,0.0,1536.51,144.0,288.46,432.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2034.8,144.0,1354.54,0.0,1498.54,144.0,392.26,536.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-exhaust.xml,2034.8,144.0,1354.54,0.0,1498.54,144.0,392.26,536.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-hrv-asre.xml,1969.03,144.0,1392.63,0.0,1536.63,144.0,288.4,432.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-hrv.xml,1969.07,144.0,1392.63,0.0,1536.63,144.0,288.44,432.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-multiple.xml,2146.73,144.0,1408.6,0.0,1552.6,144.0,450.13,594.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-supply.xml,2021.65,144.0,1357.16,0.0,1501.16,144.0,376.49,520.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-whole-house-fan.xml,1788.95,144.0,1263.11,0.0,1407.11,144.0,237.84,381.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-additional-properties.xml,1848.02,144.0,1324.09,0.0,1468.09,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,1984.55,144.0,1338.52,0.0,1482.52,144.0,358.03,502.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-supplemental-fan-supply.xml,2007.71,144.0,1339.5,0.0,1483.5,144.0,380.21,524.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis.xml,2060.19,144.0,1385.43,0.0,1529.43,144.0,386.76,530.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-erv-atre-asre.xml,1968.87,144.0,1392.5,0.0,1536.5,144.0,288.37,432.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-erv.xml,1968.91,144.0,1392.5,0.0,1536.5,144.0,288.41,432.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-exhaust-rated-flow-rate.xml,2034.76,144.0,1354.53,0.0,1498.53,144.0,392.23,536.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-exhaust.xml,2034.76,144.0,1354.53,0.0,1498.53,144.0,392.23,536.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-hrv-asre.xml,1968.97,144.0,1392.62,0.0,1536.62,144.0,288.35,432.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-hrv.xml,1969.0,144.0,1392.62,0.0,1536.62,144.0,288.38,432.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-multiple.xml,2146.68,144.0,1408.6,0.0,1552.6,144.0,450.08,594.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2021.61,144.0,1357.15,0.0,1501.15,144.0,376.46,520.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1788.88,144.0,1263.1,0.0,1407.1,144.0,237.78,381.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-additional-properties.xml,1847.95,144.0,1324.08,0.0,1468.08,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv-detailed-only.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,764.63,108.0,1266.56,-989.86,384.7,144.0,235.93,379.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,682.76,108.0,786.51,-591.68,302.83,144.0,235.93,379.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,679.46,108.0,753.86,-562.32,299.53,144.0,235.93,379.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,643.06,108.0,710.33,-555.2,263.13,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv-mixed.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,861.28,144.0,1324.09,-986.74,481.35,144.0,235.93,379.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,764.63,108.0,1266.56,-989.86,384.7,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624.68,465.0,1268.82,-1486.13,247.69,132.0,244.99,376.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,96.94,465.0,1268.82,-2013.87,-280.05,132.0,244.99,376.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,-325.89,210.0,1268.82,-2181.7,-702.88,132.0,244.99,376.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 -base-misc-bills.xml,1801.81,144.0,1268.82,0.0,1412.82,144.0,244.99,388.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-defaults.xml,1070.54,144.0,1159.43,-713.71,589.72,144.0,336.82,480.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-emissions.xml,891.25,144.0,1353.94,-986.62,511.32,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators-battery-scheduled.xml,2298.22,144.0,1386.97,0.0,1530.97,144.0,325.97,469.97,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators-battery.xml,2235.34,144.0,1324.09,0.0,1468.09,144.0,325.97,469.97,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators.xml,2235.34,144.0,1324.09,0.0,1468.09,144.0,325.97,469.97,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-ground-conductivity.xml,1821.58,144.0,1321.3,0.0,1465.3,144.0,212.28,356.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-loads-large-uncommon.xml,3692.53,144.0,2515.37,0.0,2659.37,144.0,738.89,882.89,0.0,0.0,0.0,0.0,67.83,67.83,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3052.53,144.0,2385.11,0.0,2529.11,144.0,209.58,353.58,0.0,87.4,87.4,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1498.71,144.0,911.41,0.0,1055.41,144.0,299.3,443.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-bills-pv-detailed-only.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,764.56,108.0,1266.55,-989.86,384.69,144.0,235.87,379.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,682.7,108.0,786.51,-591.68,302.83,144.0,235.87,379.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,679.4,108.0,753.85,-562.32,299.53,144.0,235.87,379.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,643.0,108.0,710.33,-555.2,263.13,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-bills-pv-mixed.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,861.21,144.0,1324.08,-986.74,481.34,144.0,235.87,379.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,764.56,108.0,1266.55,-989.86,384.69,144.0,235.87,379.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 +base-misc-bills-pv.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624.62,465.0,1268.82,-1486.13,247.69,132.0,244.93,376.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,96.87,465.0,1268.82,-2013.87,-280.06,132.0,244.93,376.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,-325.95,210.0,1268.82,-2181.7,-702.88,132.0,244.93,376.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-bills.xml,1801.75,144.0,1268.82,0.0,1412.82,144.0,244.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1070.51,144.0,1159.43,-713.71,589.72,144.0,336.79,480.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-emissions.xml,891.18,144.0,1353.94,-986.62,511.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators-battery-scheduled.xml,2298.16,144.0,1386.96,0.0,1530.96,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators-battery.xml,2235.28,144.0,1324.08,0.0,1468.08,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators.xml,2235.28,144.0,1324.08,0.0,1468.08,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-ground-conductivity.xml,1821.52,144.0,1321.29,0.0,1465.29,144.0,212.23,356.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-loads-large-uncommon.xml,3692.48,144.0,2515.37,0.0,2659.37,144.0,738.84,882.84,0.0,0.0,0.0,0.0,67.83,67.83,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3052.48,144.0,2385.11,0.0,2529.11,144.0,209.53,353.53,0.0,87.4,87.4,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1498.64,144.0,911.4,0.0,1055.4,144.0,299.24,443.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-neighbor-shading-bldgtype-multifamily.xml,1243.28,144.0,946.43,0.0,1090.43,144.0,8.85,152.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-neighbor-shading.xml,1894.53,144.0,1314.6,0.0,1458.6,144.0,291.93,435.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-shielding-of-home.xml,1848.13,144.0,1329.29,0.0,1473.29,144.0,230.84,374.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-usage-multiplier.xml,3012.85,144.0,1868.31,0.0,2012.31,144.0,721.29,865.29,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,891.25,144.0,1353.94,-986.62,511.32,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-garage.xml,861.53,144.0,1306.55,-986.62,463.93,144.0,253.6,397.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-round-trip-efficiency.xml,940.84,144.0,1403.54,-986.63,560.91,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-scheduled.xml,924.94,144.0,1386.97,-985.96,545.01,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery.xml,891.25,144.0,1353.94,-986.62,511.32,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators-battery-scheduled.xml,1011.71,144.0,1386.97,-1286.5,244.46,144.0,325.97,469.97,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators-battery.xml,979.11,144.0,1355.03,-1287.17,211.86,144.0,325.97,469.97,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators.xml,948.05,144.0,1324.09,-1287.29,180.8,144.0,325.97,469.97,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv.xml,861.28,144.0,1324.09,-986.74,481.35,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-0-runperiod-1-month.xml,128.19,12.0,15.78,0.0,27.78,12.0,88.41,100.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-0.xml,919.48,144.0,270.79,0.0,414.79,144.0,360.69,504.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1-misc-loads-large-uncommon.xml,2787.09,144.0,1913.03,0.0,2057.03,144.0,435.79,579.79,0.0,0.0,0.0,0.0,70.81,70.81,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1-misc-loads-large-uncommon2.xml,2521.16,144.0,1824.0,0.0,1968.0,144.0,238.46,382.46,0.0,91.24,91.24,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1.xml,1591.96,144.0,1045.73,0.0,1189.73,144.0,258.23,402.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-5.xml,1329.98,144.0,1472.46,-743.14,873.31,144.0,312.67,456.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-all-10-mins.xml,1869.07,144.0,1333.16,0.0,1477.16,144.0,247.91,391.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-mixed-timesteps-power-outage.xml,1395.76,144.0,1056.43,0.0,1200.43,144.0,51.33,195.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-mixed-timesteps.xml,1640.11,144.0,1266.79,0.0,1410.79,144.0,85.32,229.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,1860.59,144.0,1330.02,0.0,1474.02,144.0,242.57,386.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,1555.16,144.0,1115.16,0.0,1259.16,144.0,152.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-year-round.xml,919.48,144.0,270.79,0.0,414.79,144.0,360.69,504.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,1708.67,144.0,1136.79,0.0,1280.79,144.0,283.88,427.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1858.76,144.0,1328.45,0.0,1472.45,144.0,242.31,386.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints-daily-schedules.xml,1819.52,144.0,1301.63,0.0,1445.63,144.0,229.89,373.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints-daily-setbacks.xml,1816.82,144.0,1307.2,0.0,1451.2,144.0,221.62,365.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints.xml,1621.72,144.0,1256.49,0.0,1400.49,144.0,77.23,221.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage-natvent-available.xml,1719.81,144.0,1195.63,0.0,1339.63,144.0,236.18,380.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage-natvent-unavailable.xml,1725.98,144.0,1202.13,0.0,1346.13,144.0,235.85,379.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage.xml,1723.04,144.0,1197.57,0.0,1341.57,144.0,237.47,381.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-vacancy-year-round.xml,919.48,144.0,270.79,0.0,414.79,144.0,360.69,504.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-vacancy.xml,1698.94,144.0,1129.0,0.0,1273.0,144.0,281.94,425.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple.xml,1850.75,144.0,1325.4,0.0,1469.4,144.0,237.35,381.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-calendar-year-custom.xml,1846.95,144.0,1322.96,0.0,1466.96,144.0,235.99,379.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-daylight-saving-custom.xml,1848.03,144.0,1324.09,0.0,1468.09,144.0,235.94,379.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-daylight-saving-disabled.xml,1847.3,144.0,1323.5,0.0,1467.5,144.0,235.8,379.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-runperiod-1-month.xml,199.04,12.0,107.0,0.0,119.0,12.0,68.04,80.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-temperature-capacitance-multiplier.xml,1844.05,144.0,1320.19,0.0,1464.19,144.0,235.86,379.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1869.09,144.0,1333.02,0.0,1477.02,144.0,248.07,392.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1868.0,144.0,1332.68,0.0,1476.68,144.0,247.32,391.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins.xml,1857.47,144.0,1328.31,0.0,1472.31,144.0,241.16,385.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-30-mins.xml,1853.74,144.0,1326.45,0.0,1470.45,144.0,239.29,383.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base.xml,1848.02,144.0,1324.09,0.0,1468.09,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-neighbor-shading.xml,1894.48,144.0,1314.6,0.0,1458.6,144.0,291.88,435.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-shielding-of-home.xml,1848.07,144.0,1329.28,0.0,1473.28,144.0,230.79,374.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-usage-multiplier.xml,3012.79,144.0,1868.3,0.0,2012.3,144.0,721.24,865.24,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,891.18,144.0,1353.94,-986.62,511.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-garage.xml,861.47,144.0,1306.54,-986.62,463.93,144.0,253.54,397.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-round-trip-efficiency.xml,940.78,144.0,1403.54,-986.63,560.91,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-scheduled.xml,924.87,144.0,1386.96,-985.96,545.0,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery.xml,891.18,144.0,1353.94,-986.62,511.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators-battery-scheduled.xml,1011.66,144.0,1386.96,-1286.5,244.46,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators-battery.xml,979.06,144.0,1355.02,-1287.17,211.86,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators.xml,948.0,144.0,1324.08,-1287.29,180.8,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv.xml,861.21,144.0,1324.08,-986.74,481.34,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-0-runperiod-1-month.xml,128.18,12.0,15.78,0.0,27.78,12.0,88.4,100.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-0.xml,919.42,144.0,270.79,0.0,414.79,144.0,360.63,504.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-1-misc-loads-large-uncommon.xml,2787.04,144.0,1913.03,0.0,2057.03,144.0,435.74,579.74,0.0,0.0,0.0,0.0,70.81,70.81,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-1-misc-loads-large-uncommon2.xml,2521.1,144.0,1824.0,0.0,1968.0,144.0,238.4,382.4,0.0,91.24,91.24,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-1.xml,1591.9,144.0,1045.73,0.0,1189.73,144.0,258.17,402.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-5.xml,1329.96,144.0,1472.46,-743.14,873.31,144.0,312.65,456.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-all-10-mins.xml,1869.01,144.0,1333.16,0.0,1477.16,144.0,247.85,391.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,1395.75,144.0,1056.43,0.0,1200.43,144.0,51.32,195.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-mixed-timesteps.xml,1640.09,144.0,1266.79,0.0,1410.79,144.0,85.3,229.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,1860.52,144.0,1330.01,0.0,1474.01,144.0,242.51,386.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,1555.11,144.0,1115.15,0.0,1259.15,144.0,151.96,295.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,919.42,144.0,270.79,0.0,414.79,144.0,360.63,504.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1708.6,144.0,1136.78,0.0,1280.78,144.0,283.82,427.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic.xml,1858.7,144.0,1328.44,0.0,1472.44,144.0,242.26,386.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-setpoints-daily-schedules.xml,1819.47,144.0,1301.63,0.0,1445.63,144.0,229.84,373.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-setpoints-daily-setbacks.xml,1816.76,144.0,1307.19,0.0,1451.19,144.0,221.57,365.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-setpoints.xml,1621.69,144.0,1256.48,0.0,1400.48,144.0,77.21,221.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-power-outage-natvent-available.xml,1719.75,144.0,1195.63,0.0,1339.63,144.0,236.12,380.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-power-outage-natvent-unavailable.xml,1725.91,144.0,1202.12,0.0,1346.12,144.0,235.79,379.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-power-outage.xml,1722.99,144.0,1197.57,0.0,1341.57,144.0,237.42,381.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-vacancy-year-round.xml,919.42,144.0,270.79,0.0,414.79,144.0,360.63,504.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-vacancy.xml,1698.89,144.0,1129.0,0.0,1273.0,144.0,281.89,425.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple.xml,1850.7,144.0,1325.4,0.0,1469.4,144.0,237.3,381.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-calendar-year-custom.xml,1846.89,144.0,1322.96,0.0,1466.96,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-daylight-saving-custom.xml,1847.96,144.0,1324.08,0.0,1468.08,144.0,235.88,379.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-daylight-saving-disabled.xml,1847.24,144.0,1323.5,0.0,1467.5,144.0,235.74,379.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,199.03,12.0,107.0,0.0,119.0,12.0,68.03,80.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-temperature-capacitance-multiplier.xml,1843.98,144.0,1320.18,0.0,1464.18,144.0,235.8,379.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1869.03,144.0,1333.01,0.0,1477.01,144.0,248.02,392.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1867.94,144.0,1332.68,0.0,1476.68,144.0,247.26,391.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins.xml,1857.41,144.0,1328.31,0.0,1472.31,144.0,241.1,385.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-30-mins.xml,1853.68,144.0,1326.44,0.0,1470.44,144.0,239.24,383.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base.xml,1847.95,144.0,1324.08,0.0,1468.08,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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_sizing.csv b/workflow/tests/base_results/results_sizing.csv index aa4db98aa0..47926edfb1 100644 --- a/workflow/tests/base_results/results_sizing.csv +++ b/workflow/tests/base_results/results_sizing.csv @@ -1,25 +1,25 @@ HPXML,HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h) -denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-ACCA.xml,0.0,21310.0,0.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-HERS.xml,0.0,18786.0,0.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-MaxLoad.xml,0.0,21310.0,0.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-ACCA.xml,0.0,21309.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-HERS.xml,0.0,18787.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-MaxLoad.xml,0.0,21309.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0 denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad.xml,65908.0,65908.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0 denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0 denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad.xml,65908.0,0.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad.xml,65909.0,0.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0 denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,65908.0,65908.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0 denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad.xml,65908.0,65908.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0 denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,65908.0,65908.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,24186.0,24186.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,24187.0,24187.0,31147.0 denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,65567.0,65567.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,65568.0,65568.0,31147.0 denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA.xml,25997.0,25997.0,23640.0 denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS.xml,31147.0,31147.0,23640.0 denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad.xml,33628.0,33628.0,23640.0 @@ -35,48 +35,48 @@ denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-tem denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA.xml,25997.0,25997.0,32235.0 denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS.xml,31147.0,31147.0,32235.0 denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad.xml,33628.0,33628.0,32235.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,26367.0,26367.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,26369.0,26369.0,31147.0 denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,50423.0,50423.0,31147.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,50424.0,50424.0,31147.0 denver-hvac-autosize-boiler-coal-only.xml,23640.0,0.0,0.0 denver-hvac-autosize-boiler-elec-only.xml,23640.0,0.0,0.0 -denver-hvac-autosize-boiler-gas-central-ac-1-speed.xml,23640.0,21310.0,0.0 +denver-hvac-autosize-boiler-gas-central-ac-1-speed.xml,23640.0,21309.0,0.0 denver-hvac-autosize-boiler-gas-only-pilot.xml,23640.0,0.0,0.0 denver-hvac-autosize-boiler-gas-only.xml,23640.0,0.0,0.0 denver-hvac-autosize-boiler-oil-only.xml,23640.0,0.0,0.0 denver-hvac-autosize-boiler-propane-only.xml,23640.0,0.0,0.0 denver-hvac-autosize-boiler-wood-only.xml,23640.0,0.0,0.0 -denver-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,21310.0,0.0 -denver-hvac-autosize-central-ac-only-1-speed.xml,0.0,21310.0,0.0 +denver-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,21309.0,0.0 +denver-hvac-autosize-central-ac-only-1-speed.xml,0.0,21309.0,0.0 denver-hvac-autosize-central-ac-only-2-speed.xml,0.0,20844.0,0.0 -denver-hvac-autosize-central-ac-only-var-speed.xml,0.0,20283.0,0.0 -denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA.xml,31147.0,21310.0,31147.0 -denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS.xml,31147.0,21310.0,31147.0 -denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad.xml,65908.0,21310.0,31147.0 -denver-hvac-autosize-crankcase-heater-40w.xml,32235.0,21310.0,0.0 -denver-hvac-autosize-dse.xml,23640.0,15266.0,0.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 +denver-hvac-autosize-central-ac-only-var-speed.xml,0.0,20284.0,0.0 +denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA.xml,31147.0,21309.0,31147.0 +denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS.xml,31147.0,21309.0,31147.0 +denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad.xml,65909.0,21309.0,31147.0 +denver-hvac-autosize-crankcase-heater-40w.xml,32235.0,21309.0,0.0 +denver-hvac-autosize-dse.xml,23640.0,15265.0,0.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0 denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,35330.0,35330.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,22910.0,22910.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,35328.0,35328.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0 denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,35330.0,35330.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,24186.0,24186.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,35328.0,35328.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,24187.0,24187.0,31147.0 denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,34558.0,34558.0,31147.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,34557.0,34557.0,31147.0 denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,21623.0,21623.0,31147.0 denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,33628.0,33628.0,31147.0 -denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,17355.0,17355.0,26182.0 -denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,26182.0,26182.0,26182.0 -denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,26139.0,26139.0,26182.0 -denver-hvac-autosize-ducts-area-fractions.xml,71259.0,96902.0,0.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,17355.0,17355.0,26181.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,26181.0,26181.0,26181.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,26139.0,26139.0,26181.0 +denver-hvac-autosize-ducts-area-fractions.xml,71257.0,96895.0,0.0 denver-hvac-autosize-ducts-area-multipliers.xml,31447.0,20880.0,0.0 -denver-hvac-autosize-ducts-buried.xml,28612.0,17907.0,0.0 -denver-hvac-autosize-ducts-defaults.xml,28212.0,14272.0,0.0 +denver-hvac-autosize-ducts-buried.xml,28613.0,17907.0,0.0 +denver-hvac-autosize-ducts-defaults.xml,28213.0,14272.0,0.0 denver-hvac-autosize-ducts-effective-rvalue.xml,32230.0,21305.0,0.0 -denver-hvac-autosize-ducts-leakage-cfm50.xml,34496.0,23080.0,0.0 -denver-hvac-autosize-ducts-leakage-percent.xml,32660.0,23447.0,0.0 +denver-hvac-autosize-ducts-leakage-cfm50.xml,34498.0,23082.0,0.0 +denver-hvac-autosize-ducts-leakage-percent.xml,32661.0,23448.0,0.0 denver-hvac-autosize-elec-resistance-only.xml,23640.0,0.0,0.0 denver-hvac-autosize-evap-cooler-furnace-gas.xml,32235.0,13458.0,0.0 denver-hvac-autosize-evap-cooler-only-ducted.xml,0.0,15717.0,0.0 @@ -85,10 +85,10 @@ denver-hvac-autosize-fireplace-wood-only.xml,23640.0,0.0,0.0 denver-hvac-autosize-floor-furnace-propane-only-pilot-light.xml,23640.0,0.0,0.0 denver-hvac-autosize-floor-furnace-propane-only.xml,23640.0,0.0,0.0 denver-hvac-autosize-furnace-coal-only.xml,32235.0,0.0,0.0 -denver-hvac-autosize-furnace-elec-central-ac-1-speed.xml,32235.0,21310.0,0.0 +denver-hvac-autosize-furnace-elec-central-ac-1-speed.xml,32235.0,21309.0,0.0 denver-hvac-autosize-furnace-elec-only.xml,32235.0,0.0,0.0 denver-hvac-autosize-furnace-gas-central-ac-2-speed.xml,32235.0,20844.0,0.0 -denver-hvac-autosize-furnace-gas-central-ac-var-speed.xml,32235.0,20283.0,0.0 +denver-hvac-autosize-furnace-gas-central-ac-var-speed.xml,32235.0,20284.0,0.0 denver-hvac-autosize-furnace-gas-only-detailed-setpoints.xml,32235.0,0.0,0.0 denver-hvac-autosize-furnace-gas-only-pilot.xml,32235.0,0.0,0.0 denver-hvac-autosize-furnace-gas-only.xml,32235.0,0.0,0.0 @@ -96,56 +96,56 @@ denver-hvac-autosize-furnace-gas-room-ac.xml,32235.0,14272.0,0.0 denver-hvac-autosize-furnace-oil-only.xml,32235.0,0.0,0.0 denver-hvac-autosize-furnace-propane-only.xml,32235.0,0.0,0.0 denver-hvac-autosize-furnace-wood-only.xml,32235.0,0.0,0.0 -denver-hvac-autosize-furnace-x3-dse.xml,23876.0,15266.0,0.0 +denver-hvac-autosize-furnace-x3-dse.xml,23876.0,15265.0,0.0 denver-hvac-autosize-geothermal-loop-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0 denver-hvac-autosize-geothermal-loop-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-geothermal-loop-sizing-methodology-MaxLoad.xml,38455.0,38455.0,31147.0 -denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,24222.0,0.0 -denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,18786.0,0.0 -denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,24222.0,0.0 +denver-hvac-autosize-geothermal-loop-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0 +denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,24224.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,18787.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,24224.0,0.0 denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0 denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-MaxLoad.xml,38455.0,38455.0,31147.0 +denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0 denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0 denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0 denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,31147.0,0.0,31147.0 denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0 denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,38455.0,38455.0,31147.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0 denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-ACCA.xml,29335.0,29335.0,29335.0 denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-HERS.xml,29335.0,29335.0,29335.0 -denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-MaxLoad.xml,36445.0,36445.0,29335.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,25872.0,26949.0,31147.0 +denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-MaxLoad.xml,36446.0,36446.0,29335.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,25873.0,26950.0,31147.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,35174.0,36638.0,31147.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,74429.0,77527.0,31147.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27281.0,28281.0,31147.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,35132.0,36420.0,31147.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,73957.0,76669.0,31147.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,29743.0,31029.0,31147.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,35134.0,36650.0,31147.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,56879.0,59333.0,31147.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,74430.0,77528.0,31147.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27282.0,28282.0,31147.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,35133.0,36421.0,31147.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,73958.0,76670.0,31147.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,29745.0,31030.0,31147.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,35135.0,36653.0,31147.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,56879.0,59338.0,31147.0 denver-hvac-autosize-install-quality-furnace-gas-central-ac-1-speed.xml,32235.0,25066.0,0.0 denver-hvac-autosize-install-quality-furnace-gas-central-ac-2-speed.xml,32235.0,24373.0,0.0 -denver-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,32235.0,23866.0,0.0 +denver-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,32235.0,23869.0,0.0 denver-hvac-autosize-install-quality-furnace-gas-only.xml,32235.0,0.0,0.0 denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,35169.0,36836.0,31147.0 denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,35169.0,36836.0,31147.0 denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,43421.0,45480.0,31147.0 denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,18073.0,0.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,22431.0,23495.0,26182.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,29562.0,30964.0,26182.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,47246.0,49486.0,26182.0 -denver-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,15281.0,0.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,22431.0,23495.0,26181.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,29562.0,30964.0,26181.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,47245.0,49486.0,26181.0 +denver-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,15282.0,0.0 denver-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,13436.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,15281.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,15282.0,0.0 denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,15306.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,15281.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA.xml,26182.0,0.0,26182.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS.xml,26182.0,0.0,26182.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad.xml,41843.0,0.0,26182.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19866.0,19866.0,26182.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,26182.0,26182.0,26182.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,41843.0,41843.0,26182.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,15282.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA.xml,26181.0,0.0,26181.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS.xml,26181.0,0.0,26181.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad.xml,41842.0,0.0,26181.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19866.0,19866.0,26181.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,26181.0,26181.0,26181.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,41842.0,41842.0,26181.0 denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA.xml,17467.0,17467.0,23640.0 denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0 denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad.xml,37781.0,37781.0,23640.0 @@ -164,9 +164,9 @@ denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-m denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,17467.0,17467.0,0.0 denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-HERS.xml,23640.0,23640.0,0.0 denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-MaxLoad.xml,37781.0,37781.0,0.0 -denver-hvac-autosize-multiple-sizing-methodology-ACCA.xml,40898.0,28776.0,12676.0 -denver-hvac-autosize-multiple-sizing-methodology-HERS.xml,37118.0,24996.0,12676.0 -denver-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,46352.0,34230.0,12676.0 +denver-hvac-autosize-multiple-sizing-methodology-ACCA.xml,40902.0,28777.0,12678.0 +denver-hvac-autosize-multiple-sizing-methodology-HERS.xml,37122.0,24997.0,12678.0 +denver-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,46356.0,34231.0,12678.0 denver-hvac-autosize-none.xml,0.0,0.0,0.0 denver-hvac-autosize-ptac-with-heating-electricity.xml,23640.0,14272.0,0.0 denver-hvac-autosize-ptac-with-heating-natural-gas.xml,23640.0,14272.0,0.0 @@ -185,209 +185,209 @@ denver-hvac-autosize-room-ac-with-heating.xml,23640.0,14272.0,0.0 denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0 denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0 denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0 -denver-hvac-autosize-seasons.xml,32235.0,21310.0,0.0 -denver-hvac-autosize-setpoints-daily-schedules.xml,32235.0,21310.0,0.0 -denver-hvac-autosize-setpoints-daily-setbacks.xml,32235.0,21310.0,0.0 -denver-hvac-autosize-setpoints.xml,32235.0,21310.0,0.0 +denver-hvac-autosize-seasons.xml,32235.0,21309.0,0.0 +denver-hvac-autosize-setpoints-daily-schedules.xml,32235.0,21309.0,0.0 +denver-hvac-autosize-setpoints-daily-setbacks.xml,32235.0,21309.0,0.0 +denver-hvac-autosize-setpoints.xml,32235.0,21309.0,0.0 denver-hvac-autosize-space-heater-gas-only.xml,23640.0,0.0,0.0 denver-hvac-autosize-stove-oil-only.xml,23640.0,0.0,0.0 denver-hvac-autosize-stove-wood-pellets-only.xml,23640.0,0.0,0.0 -denver-hvac-autosize-undersized-allow-increased-fixed-capacities.xml,28898.0,19718.0,0.0 -denver-hvac-autosize-undersized.xml,28898.0,19718.0,0.0 +denver-hvac-autosize-undersized-allow-increased-fixed-capacities.xml,28898.0,19717.0,0.0 +denver-hvac-autosize-undersized.xml,28898.0,19717.0,0.0 denver-hvac-autosize-wall-furnace-elec-only.xml,23640.0,0.0,0.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-ACCA.xml,0.0,27091.0,0.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-HERS.xml,0.0,25326.0,0.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-MaxLoad.xml,0.0,27091.0,0.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA.xml,27091.0,27091.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad.xml,30517.0,30517.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-ACCA.xml,0.0,27095.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-HERS.xml,0.0,25329.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-MaxLoad.xml,0.0,27095.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0 houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA.xml,20038.0,0.0,20038.0 houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS.xml,20038.0,0.0,20038.0 houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad.xml,24146.0,0.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,27091.0,27091.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,30517.0,30517.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA.xml,27091.0,27091.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad.xml,30517.0,30517.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,27091.0,27091.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,30517.0,30517.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27335.0,27335.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,30426.0,30426.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA.xml,25048.0,25048.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS.xml,25326.0,25326.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad.xml,25810.0,25810.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA.xml,25048.0,25048.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS.xml,25326.0,25326.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad.xml,25810.0,25810.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA.xml,25048.0,25048.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-HERS.xml,25326.0,25326.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-MaxLoad.xml,25810.0,25810.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2-sizing-methodology-ACCA.xml,25048.0,25048.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2-sizing-methodology-HERS.xml,25326.0,25326.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2-sizing-methodology-MaxLoad.xml,25810.0,25810.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA.xml,25048.0,25048.0,21260.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS.xml,25326.0,25326.0,21260.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad.xml,25810.0,25810.0,21260.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,25048.0,25048.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,25810.0,25810.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27339.0,27339.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,30431.0,30431.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA.xml,25052.0,25052.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS.xml,25329.0,25329.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad.xml,25813.0,25813.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA.xml,25052.0,25052.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS.xml,25329.0,25329.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad.xml,25813.0,25813.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA.xml,25052.0,25052.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-HERS.xml,25329.0,25329.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-MaxLoad.xml,25813.0,25813.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2-sizing-methodology-ACCA.xml,25052.0,25052.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2-sizing-methodology-HERS.xml,25329.0,25329.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2-sizing-methodology-MaxLoad.xml,25813.0,25813.0,14077.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA.xml,25052.0,25052.0,21260.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS.xml,25329.0,25329.0,21260.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad.xml,25813.0,25813.0,21260.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,25052.0,25052.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,25813.0,25813.0,20038.0 houston-hvac-autosize-boiler-coal-only.xml,14077.0,0.0,0.0 houston-hvac-autosize-boiler-elec-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-boiler-gas-central-ac-1-speed.xml,14077.0,27091.0,0.0 +houston-hvac-autosize-boiler-gas-central-ac-1-speed.xml,14077.0,27095.0,0.0 houston-hvac-autosize-boiler-gas-only-pilot.xml,14077.0,0.0,0.0 houston-hvac-autosize-boiler-gas-only.xml,14077.0,0.0,0.0 houston-hvac-autosize-boiler-oil-only.xml,14077.0,0.0,0.0 houston-hvac-autosize-boiler-propane-only.xml,14077.0,0.0,0.0 houston-hvac-autosize-boiler-wood-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,27091.0,0.0 -houston-hvac-autosize-central-ac-only-1-speed.xml,0.0,27091.0,0.0 -houston-hvac-autosize-central-ac-only-2-speed.xml,0.0,27335.0,0.0 -houston-hvac-autosize-central-ac-only-var-speed.xml,0.0,25048.0,0.0 -houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA.xml,20038.0,27091.0,20038.0 -houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS.xml,20038.0,27091.0,20038.0 -houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad.xml,24146.0,27091.0,20038.0 -houston-hvac-autosize-crankcase-heater-40w.xml,21260.0,27091.0,0.0 -houston-hvac-autosize-dse.xml,14077.0,18119.0,0.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,27091.0,27091.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,30517.0,30517.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,27091.0,27091.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,30517.0,30517.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27335.0,27335.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,30426.0,30426.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,25048.0,25048.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,25810.0,25810.0,20038.0 -houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19899.0,19899.0,16055.0 -houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,19589.0,19589.0,16055.0 -houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,19899.0,19899.0,16055.0 -houston-hvac-autosize-ducts-area-fractions.xml,44893.0,118863.0,0.0 -houston-hvac-autosize-ducts-area-multipliers.xml,20588.0,26663.0,0.0 -houston-hvac-autosize-ducts-buried.xml,19021.0,23088.0,0.0 -houston-hvac-autosize-ducts-defaults.xml,18920.0,18119.0,0.0 -houston-hvac-autosize-ducts-effective-rvalue.xml,21256.0,27086.0,0.0 -houston-hvac-autosize-ducts-leakage-cfm50.xml,22510.0,33157.0,0.0 -houston-hvac-autosize-ducts-leakage-percent.xml,19445.0,33294.0,0.0 +houston-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,27095.0,0.0 +houston-hvac-autosize-central-ac-only-1-speed.xml,0.0,27095.0,0.0 +houston-hvac-autosize-central-ac-only-2-speed.xml,0.0,27339.0,0.0 +houston-hvac-autosize-central-ac-only-var-speed.xml,0.0,25052.0,0.0 +houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA.xml,20038.0,27095.0,20038.0 +houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS.xml,20038.0,27095.0,20038.0 +houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad.xml,24146.0,27095.0,20038.0 +houston-hvac-autosize-crankcase-heater-40w.xml,21260.0,27095.0,0.0 +houston-hvac-autosize-dse.xml,14077.0,18120.0,0.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27339.0,27339.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,30431.0,30431.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,25052.0,25052.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,25813.0,25813.0,20038.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19901.0,19901.0,16055.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,19590.0,19590.0,16055.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,19901.0,19901.0,16055.0 +houston-hvac-autosize-ducts-area-fractions.xml,44891.0,118859.0,0.0 +houston-hvac-autosize-ducts-area-multipliers.xml,20588.0,26667.0,0.0 +houston-hvac-autosize-ducts-buried.xml,19022.0,23092.0,0.0 +houston-hvac-autosize-ducts-defaults.xml,18921.0,18120.0,0.0 +houston-hvac-autosize-ducts-effective-rvalue.xml,21256.0,27089.0,0.0 +houston-hvac-autosize-ducts-leakage-cfm50.xml,22511.0,33165.0,0.0 +houston-hvac-autosize-ducts-leakage-percent.xml,19445.0,33305.0,0.0 houston-hvac-autosize-elec-resistance-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-evap-cooler-furnace-gas.xml,21260.0,16938.0,0.0 -houston-hvac-autosize-evap-cooler-only-ducted.xml,0.0,18493.0,0.0 -houston-hvac-autosize-evap-cooler-only.xml,0.0,16938.0,0.0 +houston-hvac-autosize-evap-cooler-furnace-gas.xml,21260.0,16939.0,0.0 +houston-hvac-autosize-evap-cooler-only-ducted.xml,0.0,18494.0,0.0 +houston-hvac-autosize-evap-cooler-only.xml,0.0,16939.0,0.0 houston-hvac-autosize-fireplace-wood-only.xml,14077.0,0.0,0.0 houston-hvac-autosize-floor-furnace-propane-only-pilot-light.xml,14077.0,0.0,0.0 houston-hvac-autosize-floor-furnace-propane-only.xml,14077.0,0.0,0.0 houston-hvac-autosize-furnace-coal-only.xml,21260.0,0.0,0.0 -houston-hvac-autosize-furnace-elec-central-ac-1-speed.xml,21260.0,27091.0,0.0 +houston-hvac-autosize-furnace-elec-central-ac-1-speed.xml,21260.0,27095.0,0.0 houston-hvac-autosize-furnace-elec-only.xml,21260.0,0.0,0.0 -houston-hvac-autosize-furnace-gas-central-ac-2-speed.xml,21260.0,27335.0,0.0 -houston-hvac-autosize-furnace-gas-central-ac-var-speed.xml,21260.0,25048.0,0.0 +houston-hvac-autosize-furnace-gas-central-ac-2-speed.xml,21260.0,27339.0,0.0 +houston-hvac-autosize-furnace-gas-central-ac-var-speed.xml,21260.0,25052.0,0.0 houston-hvac-autosize-furnace-gas-only-detailed-setpoints.xml,21260.0,0.0,0.0 houston-hvac-autosize-furnace-gas-only-pilot.xml,21260.0,0.0,0.0 houston-hvac-autosize-furnace-gas-only.xml,21260.0,0.0,0.0 -houston-hvac-autosize-furnace-gas-room-ac.xml,21260.0,18119.0,0.0 +houston-hvac-autosize-furnace-gas-room-ac.xml,21260.0,18120.0,0.0 houston-hvac-autosize-furnace-oil-only.xml,21260.0,0.0,0.0 houston-hvac-autosize-furnace-propane-only.xml,21260.0,0.0,0.0 houston-hvac-autosize-furnace-wood-only.xml,21260.0,0.0,0.0 -houston-hvac-autosize-furnace-x3-dse.xml,14219.0,18119.0,0.0 -houston-hvac-autosize-geothermal-loop-sizing-methodology-ACCA.xml,32396.0,32396.0,20038.0 -houston-hvac-autosize-geothermal-loop-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 -houston-hvac-autosize-geothermal-loop-sizing-methodology-MaxLoad.xml,32396.0,32396.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,32396.0,0.0 -houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,25326.0,0.0 -houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,32396.0,0.0 -houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-ACCA.xml,32396.0,32396.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-MaxLoad.xml,32396.0,32396.0,20038.0 +houston-hvac-autosize-furnace-x3-dse.xml,14219.0,18120.0,0.0 +houston-hvac-autosize-geothermal-loop-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0 +houston-hvac-autosize-geothermal-loop-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 +houston-hvac-autosize-geothermal-loop-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,32400.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,25329.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,32400.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0 houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,20038.0,0.0,20038.0 houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,20038.0,0.0,20038.0 houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,20038.0,0.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,32396.0,32396.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,25326.0,25326.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,32396.0,32396.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-ACCA.xml,32396.0,32396.0,18949.0 -houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-HERS.xml,25326.0,25326.0,18949.0 -houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-MaxLoad.xml,32396.0,32396.0,18949.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,33325.0,31848.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31153.0,29772.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,37539.0,35875.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,33601.0,31944.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31131.0,29596.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,37401.0,35557.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,30789.0,29459.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31130.0,29785.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,31725.0,30354.0,20038.0 -houston-hvac-autosize-install-quality-furnace-gas-central-ac-1-speed.xml,21260.0,31848.0,0.0 -houston-hvac-autosize-install-quality-furnace-gas-central-ac-2-speed.xml,21260.0,31944.0,0.0 -houston-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,21260.0,29459.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0 +houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-ACCA.xml,32400.0,32400.0,18949.0 +houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-HERS.xml,25329.0,25329.0,18949.0 +houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-MaxLoad.xml,32400.0,32400.0,18949.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,33330.0,31852.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31158.0,29777.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,37544.0,35880.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,33606.0,31949.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31136.0,29600.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,37407.0,35562.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,30794.0,29463.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31135.0,29787.0,20038.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,31730.0,30358.0,20038.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-1-speed.xml,21260.0,31852.0,0.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-2-speed.xml,21260.0,31949.0,0.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,21260.0,29463.0,0.0 houston-hvac-autosize-install-quality-furnace-gas-only.xml,21260.0,0.0,0.0 -houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,39773.0,38290.0,20038.0 -houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31093.0,29934.0,20038.0 -houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,39773.0,38290.0,20038.0 -houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,23520.0,0.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,24430.0,23520.0,16055.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,24050.0,23153.0,16055.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,24430.0,23520.0,16055.0 -houston-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,19899.0,0.0 -houston-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,17206.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,19899.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,19589.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,19899.0,0.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,39778.0,38295.0,20038.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31097.0,29938.0,20038.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,39778.0,38295.0,20038.0 +houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,23522.0,0.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,24432.0,23522.0,16055.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,24052.0,23155.0,16055.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,24432.0,23522.0,16055.0 +houston-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,19901.0,0.0 +houston-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,17207.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,19901.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,19590.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,19901.0,0.0 houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA.xml,16055.0,0.0,16055.0 houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS.xml,16055.0,0.0,16055.0 houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad.xml,16078.0,0.0,16055.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19899.0,19899.0,16055.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,19589.0,19589.0,16055.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,19899.0,19899.0,16055.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA.xml,17206.0,17206.0,14077.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS.xml,16938.0,16938.0,14077.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad.xml,17206.0,17206.0,14077.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA.xml,17206.0,17206.0,15088.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS.xml,16938.0,16938.0,15088.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad.xml,17206.0,17206.0,15088.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA.xml,17206.0,17206.0,16466.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS.xml,16938.0,16938.0,16466.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad.xml,17206.0,17206.0,16466.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA.xml,17206.0,17206.0,14077.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS.xml,16938.0,16938.0,14077.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad.xml,17206.0,17206.0,14077.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-ACCA.xml,17206.0,17206.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-HERS.xml,16938.0,16938.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-MaxLoad.xml,17206.0,17206.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,17206.0,17206.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-HERS.xml,16938.0,16938.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-MaxLoad.xml,17206.0,17206.0,0.0 -houston-hvac-autosize-multiple-sizing-methodology-ACCA.xml,54103.0,50292.0,12670.0 -houston-hvac-autosize-multiple-sizing-methodology-HERS.xml,48790.0,44979.0,12670.0 -houston-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,55936.0,52125.0,12670.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19901.0,19901.0,16055.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,19590.0,19590.0,16055.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,19901.0,19901.0,16055.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA.xml,17207.0,17207.0,14077.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad.xml,17207.0,17207.0,14077.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA.xml,17207.0,17207.0,15088.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS.xml,16939.0,16939.0,15088.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad.xml,17207.0,17207.0,15088.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA.xml,17207.0,17207.0,16466.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS.xml,16939.0,16939.0,16466.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad.xml,17207.0,17207.0,16466.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA.xml,17207.0,17207.0,14077.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad.xml,17207.0,17207.0,14077.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-ACCA.xml,17207.0,17207.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-HERS.xml,16939.0,16939.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-MaxLoad.xml,17207.0,17207.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,17207.0,17207.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-HERS.xml,16939.0,16939.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-MaxLoad.xml,17207.0,17207.0,0.0 +houston-hvac-autosize-multiple-sizing-methodology-ACCA.xml,54105.0,50295.0,12670.0 +houston-hvac-autosize-multiple-sizing-methodology-HERS.xml,48792.0,44982.0,12670.0 +houston-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,55938.0,52128.0,12670.0 houston-hvac-autosize-none.xml,0.0,0.0,0.0 -houston-hvac-autosize-ptac-with-heating-electricity.xml,14077.0,18119.0,0.0 -houston-hvac-autosize-ptac-with-heating-natural-gas.xml,14077.0,18119.0,0.0 -houston-hvac-autosize-ptac.xml,0.0,18119.0,0.0 -houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA.xml,18119.0,18119.0,14077.0 -houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS.xml,16938.0,16938.0,14077.0 -houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad.xml,20410.0,20410.0,14077.0 -houston-hvac-autosize-pthp-sizing-methodology-ACCA.xml,18119.0,18119.0,14077.0 -houston-hvac-autosize-pthp-sizing-methodology-HERS.xml,16938.0,16938.0,14077.0 -houston-hvac-autosize-pthp-sizing-methodology-MaxLoad.xml,20410.0,20410.0,14077.0 -houston-hvac-autosize-room-ac-only-33percent.xml,0.0,5979.0,0.0 -houston-hvac-autosize-room-ac-only-ceer.xml,0.0,18119.0,0.0 -houston-hvac-autosize-room-ac-only-detailed-setpoints.xml,0.0,18119.0,0.0 -houston-hvac-autosize-room-ac-only.xml,0.0,18119.0,0.0 -houston-hvac-autosize-room-ac-with-heating.xml,14077.0,18119.0,0.0 -houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA.xml,18119.0,18119.0,14077.0 -houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS.xml,16938.0,16938.0,14077.0 -houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad.xml,20410.0,20410.0,14077.0 -houston-hvac-autosize-seasons.xml,21260.0,27091.0,0.0 -houston-hvac-autosize-setpoints-daily-schedules.xml,21260.0,27091.0,0.0 -houston-hvac-autosize-setpoints-daily-setbacks.xml,21260.0,27091.0,0.0 -houston-hvac-autosize-setpoints.xml,21260.0,27091.0,0.0 +houston-hvac-autosize-ptac-with-heating-electricity.xml,14077.0,18120.0,0.0 +houston-hvac-autosize-ptac-with-heating-natural-gas.xml,14077.0,18120.0,0.0 +houston-hvac-autosize-ptac.xml,0.0,18120.0,0.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA.xml,18120.0,18120.0,14077.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad.xml,20411.0,20411.0,14077.0 +houston-hvac-autosize-pthp-sizing-methodology-ACCA.xml,18120.0,18120.0,14077.0 +houston-hvac-autosize-pthp-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0 +houston-hvac-autosize-pthp-sizing-methodology-MaxLoad.xml,20411.0,20411.0,14077.0 +houston-hvac-autosize-room-ac-only-33percent.xml,0.0,5980.0,0.0 +houston-hvac-autosize-room-ac-only-ceer.xml,0.0,18120.0,0.0 +houston-hvac-autosize-room-ac-only-detailed-setpoints.xml,0.0,18120.0,0.0 +houston-hvac-autosize-room-ac-only.xml,0.0,18120.0,0.0 +houston-hvac-autosize-room-ac-with-heating.xml,14077.0,18120.0,0.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA.xml,18120.0,18120.0,14077.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad.xml,20411.0,20411.0,14077.0 +houston-hvac-autosize-seasons.xml,21260.0,27095.0,0.0 +houston-hvac-autosize-setpoints-daily-schedules.xml,21260.0,27095.0,0.0 +houston-hvac-autosize-setpoints-daily-setbacks.xml,21260.0,27095.0,0.0 +houston-hvac-autosize-setpoints.xml,21260.0,27095.0,0.0 houston-hvac-autosize-space-heater-gas-only.xml,14077.0,0.0,0.0 houston-hvac-autosize-stove-oil-only.xml,14077.0,0.0,0.0 houston-hvac-autosize-stove-wood-pellets-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-undersized-allow-increased-fixed-capacities.xml,17840.0,23546.0,0.0 -houston-hvac-autosize-undersized.xml,17840.0,23546.0,0.0 +houston-hvac-autosize-undersized-allow-increased-fixed-capacities.xml,17839.0,23548.0,0.0 +houston-hvac-autosize-undersized.xml,17839.0,23548.0,0.0 houston-hvac-autosize-wall-furnace-elec-only.xml,14077.0,0.0,0.0 From bf03e5528fe8373f17588ba1a61adb92886401f4 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 31 Oct 2023 20:43:11 +0000 Subject: [PATCH 173/217] Latest results. --- workflow/tests/base_results/results.csv | 738 +++++++++--------- workflow/tests/base_results/results_bills.csv | 726 ++++++++--------- 2 files changed, 732 insertions(+), 732 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 90bd73e42c..92b86ff58b 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -1,379 +1,379 @@ HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Permanent Spa Heater (MBtu),End Use: Electricity: Permanent Spa Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Permanent Spa Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu),Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),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) -base-appliances-coal.xml,59.86,59.86,33.381,33.381,21.613,0.0,0.0,0.0,0.0,4.866,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.3,3617.3,22.972,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-portable.xml,34.803,34.803,33.519,33.519,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.045,1.935,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.589,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,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.134,0.0,31.404,6.675,0.571,0.0,0.0,0.0,0.0,2183.2,2864.2,2864.2,9.452,15.097,0.0,1.743,1.625,0.0,0.0,0.392,4.896,-4.792,0.0,0.0,0.0,1.264,-0.392,1.047,0.077,0.391,0.0,0.032,-4.643,-0.753,0.0,0.501,-0.056,0.0,0.0,0.202,2.726,17.379,0.0,0.0,0.0,1.741,-0.386,-0.348,-1.933,-0.1,0.0,0.351,9.619,1.894,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-dehumidifier-ief-whole-home.xml,34.828,34.828,33.564,33.564,1.264,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.044,1.935,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.635,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,1.264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.128,0.0,31.4,6.675,0.571,0.0,0.0,0.0,0.0,2132.2,2864.1,2864.1,9.474,15.097,0.0,1.745,1.629,0.0,0.0,0.394,4.924,-4.781,0.0,0.0,0.0,1.261,-0.397,1.052,0.072,0.393,0.0,0.031,-4.677,-0.757,0.0,0.502,-0.053,0.0,0.0,0.203,2.751,17.39,0.0,0.0,0.0,1.736,-0.392,-0.343,-1.931,-0.098,0.0,0.351,9.6,1.89,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-dehumidifier-multiple.xml,34.794,34.794,33.441,33.441,1.353,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.033,1.933,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.525,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,1.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,1.202,0.0,31.357,6.675,0.571,0.0,0.0,0.0,0.0,2161.6,2867.8,2867.8,9.537,15.097,0.0,1.748,1.629,0.0,0.0,0.392,4.893,-4.849,0.0,0.0,0.0,1.267,-0.39,1.047,0.075,0.393,0.0,0.034,-4.522,-0.76,0.0,0.511,-0.046,0.0,0.0,0.203,2.741,17.322,0.0,0.0,0.0,1.763,-0.385,-0.343,-1.922,-0.096,0.0,0.351,9.569,1.888,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-dehumidifier.xml,34.765,34.765,33.496,33.496,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.037,1.933,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.576,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,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,31.37,6.675,0.571,0.0,0.0,0.0,0.0,2025.2,2864.1,2864.1,9.517,15.097,0.0,1.76,1.641,0.0,0.0,0.394,4.935,-4.861,0.0,0.0,0.0,1.275,-0.393,1.056,0.072,0.397,0.0,0.032,-4.651,-0.763,0.0,0.521,-0.036,0.0,0.0,0.205,2.775,17.309,0.0,0.0,0.0,1.763,-0.387,-0.336,-1.93,-0.093,0.0,0.351,9.557,1.884,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-gas.xml,59.86,59.86,33.381,33.381,26.479,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.613,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.24,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.3,3617.3,22.972,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,58.479,58.479,37.066,37.066,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,4.535,0.887,9.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.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,0.0,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.053,0.0,14.953,9.799,0.613,0.0,0.0,0.0,0.0,2161.6,3468.8,3468.8,22.969,19.347,0.0,3.567,3.65,0.514,7.552,0.632,10.119,-12.663,0.0,0.0,0.0,8.335,-0.066,5.409,0.0,0.0,0.0,4.671,-9.525,-2.496,0.0,-0.077,-0.48,-0.054,2.643,-0.03,-1.454,11.75,0.0,0.0,0.0,-6.421,-0.063,-1.323,-3.168,0.0,0.0,3.296,8.51,2.014,1354.8,1997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,52.703,52.703,28.515,28.515,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,4.077,0.775,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,0.0,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.653,0.0,13.051,7.908,0.615,0.0,0.0,0.0,0.0,1857.1,3193.3,3193.3,23.37,18.123,0.0,3.528,3.626,0.51,7.473,0.627,10.055,-12.698,0.0,0.0,0.0,8.25,-0.062,5.397,0.0,0.0,0.0,5.202,-7.087,-2.503,0.0,-0.007,-0.425,-0.046,2.794,-0.016,-1.284,11.715,0.0,0.0,0.0,-6.167,-0.058,-1.269,-2.934,0.0,0.0,2.957,5.974,2.006,0.0,0.0,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-oil-location-miami-fl.xml,50.117,50.117,45.251,45.251,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.829,4.098,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,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,67.18,4.659,0.55,0.0,0.0,0.0,0.0,2452.4,3204.2,3204.2,0.0,21.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.813,0.737,0.136,9.768,0.338,3.359,19.842,0.0,0.0,0.0,3.215,-0.01,-0.531,-2.903,-0.004,0.0,10.314,17.693,4.51,1354.8,997.6,8625.2,1979.2,0.0,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21537.0,7581.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3284.0,954.0,1530.0,800.0 -base-appliances-oil.xml,59.86,59.86,33.381,33.381,21.613,4.866,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.613,0.0,0.0,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.24,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.3,3617.3,22.972,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-propane-location-portland-or.xml,55.085,55.085,29.882,29.882,20.336,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.205,0.38,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,0.0,20.336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.793,0.0,6.277,8.776,0.614,0.0,0.0,0.0,0.0,1916.8,2801.5,2801.5,14.099,15.743,0.0,3.154,3.302,0.465,7.024,0.65,9.002,-10.815,0.0,0.0,0.0,12.128,-0.092,4.346,0.0,0.553,0.0,4.046,-12.053,-3.157,0.0,-0.141,-0.435,-0.052,1.255,-0.025,-1.176,8.054,0.0,0.0,0.0,-6.2,-0.092,-0.94,-1.961,-0.125,0.0,1.193,5.705,1.352,1354.8,997.6,11239.5,2579.1,0.0,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19189.0,6280.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,769.0,0.0,-31.0,800.0 -base-appliances-propane.xml,59.86,59.86,33.381,33.381,21.613,0.0,4.866,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.3,3617.3,22.972,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,59.86,59.86,33.381,33.381,21.613,0.0,0.0,4.866,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,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,0.0,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.814,9.233,0.613,0.0,0.0,0.0,0.0,1987.6,3617.3,3617.3,22.972,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,61.562,61.562,35.942,35.942,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,4.257,0.822,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,0.0,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.973,0.0,13.668,9.233,0.615,0.0,0.0,0.0,0.0,2144.5,3449.3,3449.3,22.718,16.559,6.771,0.0,4.231,0.513,7.508,0.633,12.688,-15.638,0.0,0.0,0.0,8.371,-0.086,9.316,0.0,0.729,0.0,0.0,-8.932,-2.503,0.124,0.0,-0.517,-0.049,2.739,-0.02,-1.228,15.662,0.0,0.0,0.0,-6.364,-0.061,-2.102,-3.934,-0.159,0.0,0.0,7.847,2.006,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,63.319,63.319,40.717,40.717,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.92,0.984,9.067,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,0.0,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.151,0.0,16.414,9.18,0.613,0.0,0.0,0.0,0.0,2372.2,3628.1,3628.1,22.529,19.803,4.57,1.168,5.569,0.52,7.699,0.639,14.497,-17.149,0.0,0.0,0.0,8.589,-0.089,7.111,0.0,0.733,0.0,0.273,-10.225,-3.182,-0.013,0.016,-0.589,-0.055,2.657,-0.033,-1.932,17.689,0.0,0.0,0.0,-6.404,-0.083,-1.707,-4.231,-0.168,0.0,0.094,8.938,2.569,1354.8,997.6,11399.6,2521.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31468.0,778.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,54.664,54.664,35.212,35.212,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.321,0.0,0.0,3.746,0.704,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.203,0.0,11.696,9.233,0.614,0.0,0.0,0.0,0.0,2122.5,2729.0,2729.0,17.649,12.83,6.045,0.0,3.619,0.509,7.464,0.625,10.031,-12.687,0.0,0.0,0.0,8.217,-0.076,4.799,0.0,0.728,0.0,0.0,-8.908,-2.5,0.291,0.0,-0.456,-0.051,2.711,-0.025,-1.387,11.721,0.0,0.0,0.0,-6.302,-0.051,-1.158,-3.067,-0.164,0.0,0.0,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,37.573,37.573,33.421,33.421,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.441,2.011,6.82,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,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.834,0.0,32.573,6.675,0.579,0.0,0.0,0.0,0.0,1834.9,3288.2,3288.2,13.532,18.842,0.0,6.126,1.575,0.0,0.0,0.335,4.353,-5.899,0.0,0.0,0.0,0.826,-0.36,0.993,0.0,0.397,0.0,0.103,-3.998,-0.844,0.0,2.403,0.135,0.0,0.0,0.203,2.884,16.272,0.0,0.0,0.0,2.056,-0.352,-0.28,-1.733,-0.052,0.0,0.372,9.165,1.803,1354.8,997.6,9989.0,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,25742.0,1419.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,22158.0,61.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-atticroof-unvented-insulated-roof.xml,57.182,57.182,35.371,35.371,21.812,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,3.847,0.723,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,0.0,21.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,20.413,0.0,11.971,9.233,0.615,0.0,0.0,0.0,0.0,2128.8,2866.3,2866.3,19.248,14.113,0.0,5.475,3.627,0.51,7.484,0.627,10.053,-12.69,0.0,0.0,0.0,8.285,-0.062,4.803,0.0,0.729,0.0,2.654,-8.912,-2.5,0.0,-1.481,-0.423,-0.046,2.812,-0.016,-1.287,11.723,0.0,0.0,0.0,-6.128,-0.053,-1.135,-2.92,-0.161,0.0,1.445,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,30482.0,4823.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1772.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,57.807,57.807,35.727,35.727,22.08,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.989,0.758,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,0.0,22.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,20.675,0.0,12.665,9.233,0.803,0.0,0.0,0.0,0.0,2134.0,3014.4,3014.4,21.537,15.427,0.0,3.899,3.639,0.512,7.515,0.63,10.087,-12.691,0.0,0.0,0.0,8.3,-0.062,4.804,0.0,0.729,0.0,4.066,-8.579,-2.5,0.0,-0.528,-0.448,-0.05,2.73,-0.022,-1.358,11.723,0.0,0.0,0.0,-6.278,-0.058,-1.157,-3.029,-0.164,0.0,1.957,7.585,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16425.0,3714.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,60.079,60.079,37.813,37.813,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3536.9,3536.9,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,1.305,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-2stories.xml,51.15,51.15,34.759,34.759,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.214,0.0,0.0,3.423,0.619,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,0.0,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.285,0.0,10.305,9.269,0.614,0.0,0.0,0.0,0.0,2112.2,3064.1,3064.1,17.839,15.64,0.0,2.437,5.073,0.298,4.382,0.64,7.13,-8.585,0.0,0.0,0.0,5.027,-0.069,7.099,0.0,0.73,0.0,2.271,-8.897,-2.5,0.0,-0.005,-0.668,-0.027,1.593,-0.021,-1.066,7.911,0.0,0.0,0.0,-4.019,-0.064,-1.707,-2.597,-0.164,0.0,1.389,7.881,2.01,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16951.0,4421.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-atticroof-cathedral.xml,97.685,97.685,37.338,37.338,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.787,0.0,0.0,5.067,0.972,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,0.0,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,15.981,9.269,0.623,0.0,0.0,0.0,0.0,2188.0,4479.8,4479.8,36.448,28.48,49.534,0.0,2.942,0.289,3.702,0.668,4.716,-5.325,0.0,0.0,0.0,3.447,-0.844,7.54,0.0,0.773,0.0,0.0,-9.663,-2.68,8.461,0.0,-0.16,0.004,1.534,0.119,0.028,5.085,0.0,0.0,0.0,-4.279,-0.806,-0.856,-1.185,-0.094,0.0,0.0,7.124,1.829,1354.8,997.6,11399.5,2678.2,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-infil-compartmentalization-test.xml,42.445,42.445,30.034,30.034,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.114,9.387,0.613,0.0,0.0,0.0,0.0,1823.1,2675.8,2675.8,13.176,10.827,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-attached.xml,42.445,42.445,30.034,30.034,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.114,9.387,0.613,0.0,0.0,0.0,0.0,1823.1,2675.8,2675.8,13.176,10.827,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11399.5,2887.5,0.0,24000.0,24000.0,0.0,6.8,91.76,21403.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13941.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.474,36.474,24.849,24.849,11.625,0.0,0.0,0.0,0.0,0.0,0.0,0.085,0.0,0.0,1.636,0.213,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,0.0,11.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,10.777,0.0,3.159,9.538,0.73,0.0,0.0,0.0,0.0,1572.4,2045.3,2045.3,7.666,6.098,0.0,2.942,3.651,0.0,0.0,0.583,1.31,-1.593,0.0,0.0,2.978,0.0,-0.037,1.669,0.0,0.0,0.0,4.662,-4.243,-1.184,0.0,-0.933,-0.243,0.0,0.0,-0.056,-0.113,1.309,0.0,0.0,-0.947,0.0,-0.033,-0.288,-0.351,0.0,0.0,0.579,3.429,0.842,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,12345.0,5658.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-multiple.xml,31.695,31.695,25.346,25.346,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,2.169,0.332,9.716,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,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.89,0.0,5.258,9.538,0.609,0.0,0.0,0.0,1.0,1561.9,2433.7,2433.7,9.392,10.746,0.0,-0.005,3.303,0.0,0.0,1.394,3.737,-4.202,0.0,0.0,4.614,0.0,-0.073,1.253,0.0,0.793,0.0,2.37,-6.263,-1.136,0.0,-0.001,-0.475,0.0,0.0,-0.429,-0.209,4.004,0.0,0.0,-3.094,0.0,-0.068,-0.251,-1.127,-0.133,0.0,0.508,5.736,0.89,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,12328.0,5013.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.586,49.586,24.849,24.849,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,1.491,0.178,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,0.0,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.939,0.0,2.593,9.538,0.818,0.0,0.0,0.0,0.0,1579.8,2297.0,2297.0,11.077,8.743,0.0,5.361,4.203,0.0,0.0,0.789,1.288,-1.709,0.0,0.0,5.413,0.0,-0.062,1.7,0.0,0.0,0.0,11.645,-4.474,-1.246,0.0,-1.205,-0.066,0.0,0.0,-0.056,-0.008,1.194,0.0,0.0,-1.212,0.0,-0.057,-0.194,-0.279,0.0,0.0,0.549,3.198,0.781,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,14592.0,6778.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.033,26.033,24.715,24.715,1.317,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.661,0.22,9.742,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.22,0.0,3.265,9.538,0.636,0.0,0.0,0.0,0.0,1563.1,2045.2,2045.2,3.415,6.099,0.0,0.378,3.172,0.0,0.0,0.381,1.385,-1.507,0.0,0.0,0.401,0.0,-0.006,1.706,0.0,0.0,0.0,0.374,-4.015,-1.12,0.0,-0.84,-0.474,0.0,0.0,-0.078,-0.221,1.396,0.0,0.0,-0.856,0.0,-0.002,-0.396,-0.392,0.0,0.0,0.598,3.657,0.907,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,8331.0,3673.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.343,26.343,25.281,25.281,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.153,0.343,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,0.0,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.984,0.0,5.308,9.538,0.586,0.0,0.0,0.0,0.0,1568.5,1862.1,1862.1,3.705,4.57,0.0,-0.004,3.199,0.0,0.0,0.372,1.434,-1.384,0.0,0.0,-0.004,0.0,-0.074,1.765,0.0,0.0,0.0,0.306,-3.658,-1.009,0.0,-0.001,-0.583,0.0,0.0,-0.044,-0.373,1.518,0.0,0.0,-0.001,0.0,-0.071,-0.543,-0.515,0.0,0.0,0.944,4.015,1.017,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,7886.0,3453.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,6279.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.961,26.961,26.444,26.444,0.517,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.095,0.58,9.682,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.517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,9.42,9.538,0.574,0.0,0.0,0.0,0.0,1709.9,2028.0,2028.0,3.251,7.677,0.0,-0.015,2.451,0.0,0.0,0.424,3.906,-2.465,0.0,0.0,-0.01,0.0,-0.396,0.991,0.0,0.666,0.0,0.0,-4.45,-0.746,0.0,-0.01,-1.157,0.0,0.0,-0.049,-1.212,5.738,0.0,0.0,-0.005,0.0,-0.386,-0.414,-1.343,-0.41,0.0,0.0,7.514,1.28,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 -base-bldgtype-multifamily-residents-1.xml,19.95,19.95,18.729,18.729,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.471,0.422,4.593,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,0.0,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,7.202,4.213,0.584,0.0,0.0,0.0,0.0,1121.4,1672.2,1672.2,3.913,7.193,0.0,-0.018,2.578,0.0,0.0,0.425,4.087,-3.005,0.0,0.0,-0.017,0.0,-0.365,1.302,0.0,0.742,0.0,0.0,-3.752,-0.915,0.0,-0.013,-0.841,0.0,0.0,-0.013,-0.739,5.197,0.0,0.0,-0.012,0.0,-0.356,-0.408,-1.204,-0.286,0.0,0.0,4.875,1.111,817.2,530.6,4779.7,1341.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.459,27.459,26.809,26.809,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.031,0.0,0.0,3.152,0.858,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.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.235,9.538,0.576,0.0,0.0,0.0,7.0,1724.9,2082.3,2082.3,3.451,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11399.5,3156.5,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.283,28.283,27.589,27.589,0.694,0.0,0.0,0.0,0.0,0.0,0.0,0.055,0.0,0.0,3.797,0.97,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.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,0.616,0.0,10.469,9.538,0.576,0.0,0.0,0.0,13.0,1761.3,2255.9,2255.9,3.597,8.104,0.0,-0.015,2.472,0.0,0.0,0.423,3.919,-2.555,0.0,0.0,-0.011,0.0,-0.392,1.275,0.0,0.674,0.0,0.036,-4.548,-0.767,0.0,-0.01,-1.112,0.0,0.0,-0.046,-1.16,5.647,0.0,0.0,-0.005,0.0,-0.382,-0.522,-1.34,-0.394,0.0,1.244,7.418,1.259,1354.8,997.6,11399.5,3156.5,0.0,8647.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.753,27.753,27.137,27.137,0.616,0.0,0.0,0.0,0.0,0.0,0.0,0.074,0.0,0.0,3.438,0.858,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.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,0.581,0.0,9.235,9.538,0.576,0.0,0.0,0.0,7.0,1740.0,2153.7,2153.7,3.449,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11399.5,3156.5,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,33.206,33.206,32.7,32.7,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,8.9,0.97,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.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,0.594,0.0,10.469,9.538,0.576,0.0,0.0,0.0,13.0,2025.5,3517.6,3517.6,3.53,8.104,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11399.5,3156.5,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.904,27.904,27.398,27.398,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,3.597,0.97,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.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,0.594,0.0,10.469,9.538,0.576,0.0,0.0,0.0,13.0,1751.2,2206.5,2206.5,3.53,8.104,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11399.5,3156.5,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,23.226,23.226,22.703,22.703,0.522,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,0.0,0.0,9.596,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.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,0.467,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1522.2,1333.9,1522.2,3.443,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11399.5,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.28,23.28,22.722,22.722,0.558,0.0,0.0,0.0,0.0,0.0,0.0,0.044,0.0,0.0,0.0,0.0,9.596,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.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.495,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1530.0,1333.9,1530.0,3.595,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.029,-6.076,-1.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,1354.8,997.6,11399.5,3156.5,0.0,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.232,23.232,22.735,22.735,0.498,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,0.0,0.0,9.596,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.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.467,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1541.0,1333.9,1541.0,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11399.5,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.212,23.212,22.851,22.851,0.361,0.0,0.0,0.0,0.0,0.0,0.116,0.057,0.0,0.0,0.0,0.0,9.596,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1648.3,1333.9,1648.3,3.446,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.076,-1.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,1354.8,997.6,11399.5,3156.5,0.0,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.232,23.232,22.737,22.737,0.496,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,0.0,0.0,9.596,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.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,0.467,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1542.9,1333.9,1542.9,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11399.5,3156.5,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,23.136,23.136,22.729,22.729,0.407,0.0,0.0,0.0,0.0,0.0,0.026,0.025,0.0,0.0,0.0,0.0,9.596,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.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,0.477,0.0,0.0,9.538,0.483,0.0,0.0,0.0,0.0,1536.5,1333.9,1536.5,3.527,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.011,-6.076,-1.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,1354.8,997.6,11399.5,3156.5,0.0,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.759,26.759,26.759,26.759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.134,0.851,9.692,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,0.0,0.0,9.147,9.538,0.584,0.0,0.0,0.0,7.0,1721.8,1999.1,1999.1,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11399.5,3156.5,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.512,27.512,27.512,27.512,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.775,0.962,9.692,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,0.0,0.0,10.376,9.538,0.584,0.0,0.0,0.0,13.0,1757.5,2211.4,2211.4,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11399.5,3156.5,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,27.043,27.043,27.043,27.043,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.418,0.851,9.692,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,0.0,0.0,9.147,9.538,0.584,0.0,0.0,0.0,7.0,1736.7,2061.9,2061.9,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11399.5,3156.5,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.578,32.578,32.578,32.578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.841,0.962,9.692,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,0.0,0.0,10.376,9.538,0.584,0.0,0.0,0.0,13.0,2116.8,3355.7,3355.7,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11399.5,3156.5,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.313,27.313,27.313,27.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.577,0.962,9.692,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,0.0,0.0,10.376,9.538,0.584,0.0,0.0,0.0,13.0,1747.4,2166.6,2166.6,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11399.5,3156.5,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-generator.xml,41.176,34.351,26.38,19.556,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,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,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,9.236,9.538,0.576,0.0,0.0,0.0,0.0,1700.2,2103.3,2103.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,28.208,28.208,28.208,28.208,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.269,0.0,0.0,2.073,2.941,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.0,0.581,0.0,9.235,9.538,0.576,0.0,0.0,0.0,0.0,1743.3,1899.8,1899.8,3.449,7.708,0.0,-0.016,2.485,0.0,0.0,0.427,3.958,-2.568,0.0,0.0,-0.012,0.0,-0.392,1.285,0.0,0.682,0.0,0.0,-4.6,-0.777,0.0,-0.011,-1.098,0.0,0.0,-0.042,-1.121,5.634,0.0,0.0,-0.007,0.0,-0.381,-0.512,-1.333,-0.388,0.0,0.0,7.366,1.25,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.946,31.946,16.765,16.765,15.181,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.097,0.582,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.0,0.571,0.0,14.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.527,0.0,9.528,9.538,2.261,0.0,0.0,0.0,0.0,1022.6,1554.0,1554.0,3.495,7.738,0.0,-0.017,2.437,0.0,0.0,0.425,3.913,-2.473,0.0,0.0,-0.012,0.0,-0.417,2.025,0.0,0.0,0.0,0.0,-4.703,-0.752,0.0,-0.012,-1.156,0.0,0.0,-0.045,-1.182,5.73,0.0,0.0,-0.007,0.0,-0.406,-0.942,-1.35,0.0,0.0,0.0,7.75,1.274,1354.8,997.6,11399.8,3156.6,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room.xml,29.828,29.828,16.572,16.572,13.256,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.944,0.541,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.0,0.742,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.685,0.0,8.806,9.539,0.568,0.0,0.0,0.0,0.0,1013.7,1542.1,1542.1,3.653,7.615,0.0,-0.017,2.498,0.0,0.0,0.426,3.976,-2.663,0.0,0.0,-0.014,0.0,-0.395,2.062,0.0,0.0,0.0,0.0,-4.478,-0.8,0.0,-0.012,-1.052,0.0,0.0,-0.036,-1.051,5.54,0.0,0.0,-0.009,0.0,-0.386,-0.862,-1.313,0.0,0.0,0.0,6.883,1.227,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,50.871,50.871,30.822,30.822,20.049,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.808,0.312,9.723,0.0,0.0,2.026,0.0,0.206,3.727,0.946,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,0.0,7.888,0.0,0.0,0.0,0.0,12.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.308,0.0,5.088,9.538,0.615,0.0,0.0,0.0,0.0,1848.3,2269.9,2269.9,7.586,8.979,0.0,-0.017,2.791,0.0,0.0,0.407,4.196,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.34,0.0,0.0,-6.693,-1.194,0.0,-0.013,-0.143,0.0,0.0,0.06,0.126,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.698,-4.228,0.0,0.0,5.312,0.832,1354.8,997.6,11399.5,3156.5,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.772,32.772,27.48,27.48,5.293,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.686,0.467,9.695,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,0.0,1.335,0.0,0.0,0.0,0.0,3.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,1.234,0.0,7.542,9.538,0.586,0.0,0.0,0.0,0.0,1721.3,2073.9,2073.9,4.164,7.879,0.0,-0.018,2.638,0.0,0.0,0.432,4.149,-3.079,0.0,0.0,-0.017,0.0,-0.36,1.775,0.0,1.925,0.0,0.0,-5.318,-0.929,0.0,-0.013,-0.774,0.0,0.0,-0.004,-0.66,5.123,0.0,0.0,-0.012,0.0,-0.352,-0.53,-1.154,-1.781,0.0,0.0,6.659,1.097,1354.8,997.6,11399.5,3156.5,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent.xml,30.993,30.993,27.332,27.332,3.661,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.584,0.44,9.704,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,0.0,3.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,3.389,0.0,7.249,9.538,0.596,0.0,0.0,0.0,0.0,1610.3,2059.7,2059.7,5.987,8.5,0.0,-0.016,2.682,0.0,0.0,0.398,4.038,-3.61,0.0,0.0,-0.018,0.0,-0.253,1.739,0.0,5.306,0.0,0.0,-5.801,-1.04,0.0,-0.011,-0.571,0.0,0.0,-0.008,-0.518,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.44,-1.153,-1.513,0.0,0.0,6.186,0.987,1354.8,997.6,11399.5,3156.5,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-pv.xml,27.009,2.561,26.38,1.932,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,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.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.538,0.576,0.0,0.0,0.0,0.0,1700.2,2103.3,2103.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.991,30.991,17.683,17.683,13.307,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,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.732,0.0,8.892,9.539,0.568,0.0,0.0,0.0,0.0,1059.0,1603.0,1603.0,3.646,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.662,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.037,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater.xml,29.895,29.895,16.587,16.587,13.307,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,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.732,0.0,8.892,9.539,0.568,0.0,0.0,0.0,0.0,1006.3,1550.3,1550.3,3.646,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.662,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.037,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily.xml,27.009,27.009,26.38,26.38,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,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.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.538,0.576,0.0,0.0,0.0,0.0,1700.2,2103.3,2103.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11399.5,3156.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-dhw-combi-tankless-outside.xml,51.252,51.252,21.423,21.423,29.829,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.363,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,16.322,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,52.449,52.449,21.432,21.432,31.017,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.551,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.37,0.0,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1376.9,1017.3,1376.9,17.068,0.0,0.0,3.743,3.642,0.513,7.499,0.631,10.099,-12.691,0.0,0.0,0.0,8.145,-0.067,5.887,0.0,0.729,0.0,0.0,-8.581,-2.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,1068.6,776.0,8563.5,1965.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,32.191,32.191,32.191,32.191,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.285,0.755,6.875,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.243,9.232,0.661,2.934,0.0,0.0,0.0,2070.1,2829.9,2829.9,0.0,19.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.094,-0.469,-0.052,2.672,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.192,-3.046,-0.166,0.0,3.723,8.627,2.036,1354.8,997.6,11412.2,2618.7,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.293,37.293,37.293,37.293,0.0,0.0,0.0,0.0,0.0,0.0,5.086,0.488,0.0,0.0,2.85,0.93,6.662,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.764,0.0,13.96,9.232,0.613,2.967,0.0,0.0,0.0,3279.7,2283.6,3279.7,21.513,16.341,0.0,3.603,3.642,0.513,7.524,0.63,10.096,-12.683,0.0,0.0,0.0,8.307,-0.064,4.805,0.0,0.729,0.0,3.414,-8.588,-2.499,0.0,-0.008,-0.463,-0.052,2.691,-0.026,-1.403,11.73,0.0,0.0,0.0,-6.344,-0.06,-1.169,-3.129,-0.165,0.0,2.065,8.497,2.01,1354.8,997.6,11413.8,2619.1,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,56.558,56.558,29.812,29.812,26.746,0.0,0.0,0.0,0.0,0.0,0.0,0.441,0.0,0.0,4.519,0.885,2.692,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.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,25.047,0.0,14.94,9.245,1.81,3.052,0.0,0.0,0.0,1879.5,3184.3,3184.3,23.504,19.709,0.0,3.524,3.636,0.512,7.506,0.627,10.063,-12.738,0.0,0.0,0.0,8.335,-0.05,4.794,0.0,0.727,0.0,5.655,-5.393,-2.509,0.0,-0.019,-0.419,-0.046,2.832,-0.016,-1.279,11.675,0.0,0.0,0.0,-6.108,-0.046,-1.121,-2.946,-0.156,0.0,3.252,7.632,2.001,1354.7,997.5,11382.2,2611.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,33.893,33.893,33.893,33.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.523,1.226,6.868,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.645,9.238,0.0,2.969,0.0,0.0,0.0,1942.3,3302.0,3302.0,0.0,19.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.071,-0.464,-0.051,2.687,-0.03,-1.43,11.85,0.0,0.0,0.0,-6.907,-0.064,-1.186,-3.016,-0.165,0.0,3.291,8.36,2.036,1354.8,997.6,11359.3,2606.6,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,31.448,31.448,31.448,31.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.336,6.871,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.033,9.232,0.661,2.941,0.0,0.0,0.0,2070.2,2556.1,2556.1,0.0,19.549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.135,-0.469,-0.052,2.673,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.915,-0.064,-1.192,-3.048,-0.166,0.0,4.556,8.629,2.036,1354.8,997.6,11411.2,2618.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,33.912,33.912,33.912,33.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.577,1.245,6.814,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.874,9.232,0.661,3.023,0.0,0.0,0.0,2070.2,3315.4,3315.4,0.0,19.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,0.0,-0.077,-0.469,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.192,-3.047,-0.166,0.0,3.328,8.651,2.036,1354.8,997.6,11415.6,2619.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,56.105,56.105,33.838,33.838,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,6.923,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,6.826,0.614,0.0,0.0,0.0,0.0,2106.6,3417.3,3417.3,23.034,19.121,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,10264.8,2355.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-detailed-setpoints.xml,54.025,54.025,21.421,21.421,32.604,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,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,0.0,19.115,0.0,13.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,0.0,9.256,2.363,0.0,0.0,0.0,0.0,1376.0,1017.3,1376.0,16.681,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.108,-12.669,0.0,0.0,0.0,8.131,-0.068,5.892,0.0,0.729,0.0,0.0,-9.89,-2.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,1161.6,860.6,9627.0,2209.1,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-dse.xml,58.992,58.992,21.458,21.458,37.534,0.0,0.0,0.0,0.0,0.0,0.0,0.182,0.0,0.0,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,0.0,23.952,0.0,13.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,16.167,0.0,0.0,9.261,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.134,-0.07,5.893,0.0,0.729,0.0,0.0,-9.854,-2.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,1071.4,776.1,9071.0,2081.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-outside.xml,55.589,55.589,21.423,21.423,34.166,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.363,0.0,14.803,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.322,0.0,0.0,9.264,3.3,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.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,1066.9,770.9,9019.2,2069.6,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,54.406,54.406,21.42,21.42,32.986,0.0,0.0,0.0,0.0,0.0,0.0,0.143,0.0,0.0,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,0.0,18.906,0.0,14.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,15.947,0.0,0.0,9.263,2.691,0.0,0.0,0.0,0.0,1375.9,1017.3,1375.9,16.729,0.0,0.0,3.746,3.646,0.513,7.512,0.632,10.114,-12.663,0.0,0.0,0.0,8.131,-0.071,5.895,0.0,0.73,0.0,0.0,-10.091,-2.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,1065.3,770.2,9041.3,2074.7,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,46.239,46.239,21.429,21.429,24.81,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.068,0.0,4.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,16.952,0.0,0.0,9.239,0.784,0.0,6.005,0.0,0.0,1376.6,1017.3,1376.6,16.971,0.0,0.0,3.745,3.645,0.513,7.503,0.631,10.103,-12.69,0.0,0.0,0.0,8.144,-0.067,5.89,0.0,0.729,0.0,0.0,-9.024,-2.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,388.8,286.9,3208.7,736.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,54.166,54.166,21.422,21.422,32.744,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,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,0.0,19.161,0.0,13.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,16.167,0.0,0.0,9.261,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.134,-0.07,5.893,0.0,0.729,0.0,0.0,-9.854,-2.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,1071.4,776.1,9071.0,2081.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,58.233,58.233,35.752,35.752,22.481,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.387,0.851,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,0.0,22.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,21.053,0.0,14.342,9.233,0.295,0.0,0.0,0.0,0.0,2107.2,3415.8,3415.8,23.086,19.07,0.0,3.554,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.806,0.0,0.729,0.0,4.874,-8.733,-2.499,0.0,-0.054,-0.462,-0.052,2.693,-0.026,-1.399,11.73,0.0,0.0,0.0,-6.338,-0.06,-1.168,-3.09,-0.165,0.0,3.188,7.726,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,64.289,64.289,27.019,27.019,37.271,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.489,0.876,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,0.0,22.883,0.0,14.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.429,0.0,14.763,9.233,2.724,0.0,0.0,0.0,0.0,1464.4,3157.1,3157.1,23.58,19.541,0.0,3.552,3.645,0.513,7.531,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,5.889,0.0,0.729,0.0,4.96,-9.538,-2.499,0.0,-0.06,-0.465,-0.052,2.687,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.347,-0.058,-1.45,-3.116,-0.166,0.0,3.27,8.403,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,56.421,56.421,29.665,29.665,26.755,0.0,0.0,0.0,0.0,0.0,0.0,0.441,0.0,0.0,3.924,0.739,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,0.0,26.755,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,12.496,9.287,1.303,0.0,0.0,0.0,0.0,1896.4,3566.8,3566.8,23.595,19.104,0.0,3.523,3.637,0.512,7.505,0.627,10.066,-12.738,0.0,0.0,0.0,8.335,-0.052,4.796,0.0,0.727,0.0,5.652,-5.373,-2.509,0.0,0.008,-0.41,-0.044,2.854,-0.014,-1.253,11.675,0.0,0.0,0.0,-6.075,-0.048,-1.112,-2.82,-0.154,0.0,2.831,5.404,2.0,1354.8,997.6,10983.2,2520.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-indirect.xml,53.964,53.964,21.423,21.423,32.541,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.381,0.0,13.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.357,0.0,0.0,9.26,1.911,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.825,0.0,0.0,3.746,3.646,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.138,-0.068,5.892,0.0,0.729,0.0,0.0,-9.652,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1075.2,777.5,9105.9,2089.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-coal.xml,59.712,59.712,33.233,33.233,21.613,0.0,0.0,0.0,0.0,4.866,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-portable.xml,34.697,34.697,33.413,33.413,1.285,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.045,1.936,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.589,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,1.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,1.134,0.0,31.405,6.562,0.571,0.0,0.0,0.0,0.0,2080.2,2858.1,2858.1,9.453,15.097,0.0,1.741,1.624,0.0,0.0,0.392,4.896,-4.781,0.0,0.0,0.0,1.259,-0.393,1.046,0.077,0.391,0.0,0.032,-4.64,-0.753,0.0,0.498,-0.057,0.0,0.0,0.201,2.726,17.39,0.0,0.0,0.0,1.737,-0.388,-0.348,-1.933,-0.1,0.0,0.351,9.622,1.894,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier-ief-whole-home.xml,34.722,34.722,33.458,33.458,1.264,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.044,1.935,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.635,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,1.264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,31.399,6.562,0.571,0.0,0.0,0.0,0.0,2102.6,2858.1,2858.1,9.474,15.097,0.0,1.744,1.629,0.0,0.0,0.394,4.928,-4.773,0.0,0.0,0.0,1.257,-0.398,1.053,0.072,0.394,0.0,0.031,-4.678,-0.757,0.0,0.501,-0.053,0.0,0.0,0.203,2.755,17.398,0.0,0.0,0.0,1.732,-0.393,-0.342,-1.93,-0.097,0.0,0.351,9.599,1.89,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier-multiple.xml,34.688,34.688,33.335,33.335,1.353,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.033,1.932,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.526,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,1.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,1.199,0.0,31.354,6.562,0.571,0.0,0.0,0.0,0.0,2086.3,2858.1,2858.1,9.538,15.097,0.0,1.75,1.63,0.0,0.0,0.392,4.89,-4.859,0.0,0.0,0.0,1.271,-0.388,1.047,0.076,0.393,0.0,0.034,-4.525,-0.76,0.0,0.513,-0.045,0.0,0.0,0.203,2.738,17.312,0.0,0.0,0.0,1.767,-0.383,-0.343,-1.922,-0.096,0.0,0.351,9.566,1.887,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier.xml,34.659,34.659,33.39,33.39,1.27,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.037,1.933,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.576,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,1.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.147,0.0,31.37,6.562,0.571,0.0,0.0,0.0,0.0,1974.6,2858.1,2858.1,9.518,15.097,0.0,1.762,1.642,0.0,0.0,0.395,4.939,-4.864,0.0,0.0,0.0,1.275,-0.394,1.057,0.072,0.397,0.0,0.032,-4.653,-0.764,0.0,0.522,-0.035,0.0,0.0,0.206,2.779,17.306,0.0,0.0,0.0,1.762,-0.389,-0.335,-1.93,-0.093,0.0,0.351,9.555,1.883,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-gas.xml,59.712,59.712,33.233,33.233,26.479,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,58.331,58.331,36.917,36.917,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,4.535,0.887,9.541,0.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,0.0,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.053,0.0,14.953,9.641,0.613,0.0,0.0,0.0,0.0,2160.4,3468.4,3468.4,22.968,19.347,0.0,3.567,3.65,0.514,7.552,0.632,10.119,-12.663,0.0,0.0,0.0,8.335,-0.066,5.409,0.0,0.0,0.0,4.671,-9.525,-2.496,0.0,-0.077,-0.48,-0.054,2.643,-0.03,-1.454,11.75,0.0,0.0,0.0,-6.421,-0.063,-1.323,-3.168,0.0,0.0,3.296,8.51,2.014,1354.8,1997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,52.556,52.556,28.368,28.368,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,4.077,0.775,7.784,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,0.0,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.653,0.0,13.051,7.75,0.615,0.0,0.0,0.0,0.0,1855.8,2988.8,2988.8,23.37,18.123,0.0,3.528,3.626,0.51,7.473,0.627,10.055,-12.698,0.0,0.0,0.0,8.25,-0.062,5.397,0.0,0.0,0.0,5.202,-7.087,-2.503,0.0,-0.007,-0.425,-0.046,2.794,-0.016,-1.284,11.715,0.0,0.0,0.0,-6.167,-0.058,-1.269,-2.934,0.0,0.0,2.957,5.974,2.006,0.0,0.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-oil-location-miami-fl.xml,50.045,50.045,45.179,45.179,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.829,4.098,4.777,0.0,0.0,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,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,67.18,4.583,0.55,0.0,0.0,0.0,0.0,2468.1,3198.7,3198.7,0.0,21.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.813,0.737,0.136,9.768,0.338,3.359,19.842,0.0,0.0,0.0,3.215,-0.01,-0.531,-2.903,-0.004,0.0,10.314,17.693,4.51,1354.8,997.6,8452.7,1939.6,0.0,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21537.0,7581.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3284.0,954.0,1530.0,800.0 +base-appliances-oil.xml,59.712,59.712,33.233,33.233,21.613,4.866,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,0.0,0.0,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-propane-location-portland-or.xml,54.945,54.945,29.743,29.743,20.336,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.205,0.38,8.598,0.0,0.0,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,20.336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.793,0.0,6.277,8.626,0.614,0.0,0.0,0.0,0.0,1915.7,3088.7,3088.7,14.101,15.743,0.0,3.154,3.302,0.465,7.024,0.65,9.002,-10.815,0.0,0.0,0.0,12.128,-0.092,4.346,0.0,0.553,0.0,4.046,-12.053,-3.157,0.0,-0.141,-0.435,-0.052,1.255,-0.025,-1.176,8.054,0.0,0.0,0.0,-6.2,-0.092,-0.94,-1.961,-0.125,0.0,1.193,5.705,1.352,1354.8,997.6,11014.7,2527.5,0.0,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19189.0,6280.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,769.0,0.0,-31.0,800.0 +base-appliances-propane.xml,59.712,59.712,33.233,33.233,21.613,0.0,4.866,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,59.712,59.712,33.233,33.233,21.613,0.0,0.0,4.866,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,61.415,61.415,35.795,35.795,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,4.257,0.822,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.973,0.0,13.668,9.075,0.615,0.0,0.0,0.0,0.0,2143.4,3135.9,3135.9,22.717,16.559,6.771,0.0,4.231,0.513,7.508,0.633,12.688,-15.638,0.0,0.0,0.0,8.371,-0.086,9.316,0.0,0.729,0.0,0.0,-8.932,-2.503,0.124,0.0,-0.517,-0.049,2.739,-0.02,-1.228,15.662,0.0,0.0,0.0,-6.364,-0.061,-2.102,-3.934,-0.159,0.0,0.0,7.847,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,63.174,63.174,40.571,40.571,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.92,0.984,8.922,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,0.0,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.151,0.0,16.414,9.023,0.613,0.0,0.0,0.0,0.0,2374.2,3688.8,3688.8,22.528,19.803,4.57,1.168,5.569,0.52,7.699,0.639,14.497,-17.149,0.0,0.0,0.0,8.589,-0.089,7.111,0.0,0.733,0.0,0.273,-10.225,-3.182,-0.013,0.016,-0.589,-0.055,2.657,-0.033,-1.932,17.689,0.0,0.0,0.0,-6.404,-0.083,-1.707,-4.231,-0.168,0.0,0.094,8.938,2.569,1354.8,997.6,11171.6,2471.3,0.0,36000.0,24000.0,0.0,6.8,91.76,31468.0,778.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,54.517,54.517,35.065,35.065,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.321,0.0,0.0,3.746,0.704,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.203,0.0,11.696,9.075,0.614,0.0,0.0,0.0,0.0,2104.8,2723.1,2723.1,17.648,12.83,6.045,0.0,3.619,0.509,7.464,0.625,10.031,-12.687,0.0,0.0,0.0,8.217,-0.076,4.799,0.0,0.728,0.0,0.0,-8.908,-2.5,0.291,0.0,-0.456,-0.051,2.711,-0.025,-1.387,11.721,0.0,0.0,0.0,-6.302,-0.051,-1.158,-3.067,-0.164,0.0,0.0,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier.xml,37.467,37.467,33.315,33.315,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.441,2.011,6.714,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,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.834,0.0,32.573,6.562,0.579,0.0,0.0,0.0,0.0,1910.2,3261.6,3261.6,13.531,18.842,0.0,6.126,1.575,0.0,0.0,0.335,4.353,-5.899,0.0,0.0,0.0,0.826,-0.36,0.993,0.0,0.397,0.0,0.103,-3.998,-0.844,0.0,2.403,0.135,0.0,0.0,0.203,2.884,16.272,0.0,0.0,0.0,2.056,-0.352,-0.28,-1.733,-0.052,0.0,0.372,9.165,1.803,1354.8,997.6,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,25742.0,1419.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,22158.0,61.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-atticroof-unvented-insulated-roof.xml,57.035,57.035,35.224,35.224,21.812,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,3.847,0.723,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,20.413,0.0,11.971,9.075,0.615,0.0,0.0,0.0,0.0,2127.6,2865.7,2865.7,19.246,14.113,0.0,5.475,3.627,0.51,7.484,0.627,10.053,-12.69,0.0,0.0,0.0,8.285,-0.062,4.803,0.0,0.729,0.0,2.654,-8.912,-2.5,0.0,-1.481,-0.423,-0.046,2.812,-0.016,-1.287,11.723,0.0,0.0,0.0,-6.128,-0.053,-1.135,-2.92,-0.161,0.0,1.445,7.867,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,30482.0,4823.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1772.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,57.66,57.66,35.581,35.581,22.08,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.989,0.758,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.675,0.0,12.665,9.075,0.803,0.0,0.0,0.0,0.0,2132.8,3014.3,3014.3,21.537,15.427,0.0,3.899,3.639,0.512,7.515,0.63,10.087,-12.691,0.0,0.0,0.0,8.3,-0.062,4.804,0.0,0.729,0.0,4.067,-8.579,-2.5,0.0,-0.528,-0.448,-0.05,2.73,-0.022,-1.358,11.723,0.0,0.0,0.0,-6.278,-0.058,-1.157,-3.029,-0.164,0.0,1.957,7.585,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16425.0,3714.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,59.932,59.932,37.665,37.665,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,1.31,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-2stories.xml,51.001,51.001,34.611,34.611,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.214,0.0,0.0,3.423,0.619,9.079,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.285,0.0,10.305,9.11,0.613,0.0,0.0,0.0,0.0,2111.0,3086.6,3086.6,17.841,15.64,0.0,2.437,5.073,0.298,4.382,0.64,7.13,-8.585,0.0,0.0,0.0,5.027,-0.069,7.099,0.0,0.73,0.0,2.271,-8.897,-2.5,0.0,-0.005,-0.668,-0.027,1.593,-0.021,-1.066,7.911,0.0,0.0,0.0,-4.019,-0.064,-1.707,-2.597,-0.164,0.0,1.389,7.881,2.01,1354.8,997.6,11171.5,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16951.0,4421.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-atticroof-cathedral.xml,97.537,97.537,37.19,37.19,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.787,0.0,0.0,5.067,0.972,9.088,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,15.981,9.11,0.623,0.0,0.0,0.0,0.0,2152.6,4300.5,4300.5,36.45,28.479,49.534,0.0,2.942,0.289,3.702,0.668,4.716,-5.325,0.0,0.0,0.0,3.447,-0.844,7.54,0.0,0.773,0.0,0.0,-9.663,-2.68,8.461,0.0,-0.16,0.004,1.534,0.119,0.028,5.085,0.0,0.0,0.0,-4.279,-0.806,-0.856,-1.185,-0.094,0.0,0.0,7.124,1.829,1354.8,997.6,11171.6,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-attached-infil-compartmentalization-test.xml,42.293,42.293,29.882,29.882,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,9.289,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.114,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2578.3,2578.3,13.175,10.827,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-attached.xml,42.293,42.293,29.882,29.882,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,9.289,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.114,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2578.3,2578.3,13.175,10.827,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21403.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13941.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.317,36.317,24.692,24.692,11.625,0.0,0.0,0.0,0.0,0.0,0.0,0.085,0.0,0.0,1.636,0.213,9.675,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,11.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,10.777,0.0,3.159,9.374,0.73,0.0,0.0,0.0,0.0,1571.2,2044.5,2044.5,7.666,6.098,0.0,2.942,3.651,0.0,0.0,0.583,1.31,-1.593,0.0,0.0,2.978,0.0,-0.037,1.669,0.0,0.0,0.0,4.662,-4.243,-1.184,0.0,-0.933,-0.243,0.0,0.0,-0.056,-0.113,1.309,0.0,0.0,-0.947,0.0,-0.033,-0.288,-0.351,0.0,0.0,0.579,3.429,0.842,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12345.0,5658.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-multiple.xml,31.538,31.538,25.188,25.188,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,2.169,0.332,9.559,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,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.89,0.0,5.258,9.374,0.609,0.0,0.0,0.0,1.0,1559.2,2252.6,2252.6,9.392,10.746,0.0,-0.005,3.303,0.0,0.0,1.394,3.737,-4.202,0.0,0.0,4.614,0.0,-0.073,1.253,0.0,0.793,0.0,2.37,-6.263,-1.136,0.0,-0.001,-0.475,0.0,0.0,-0.429,-0.209,4.004,0.0,0.0,-3.094,0.0,-0.068,-0.251,-1.127,-0.133,0.0,0.508,5.736,0.89,1354.8,997.6,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12328.0,5013.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.43,49.43,24.693,24.693,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,1.491,0.178,9.759,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,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.939,0.0,2.593,9.374,0.818,0.0,0.0,0.0,0.0,1572.9,2230.6,2230.6,11.077,8.743,0.0,5.361,4.203,0.0,0.0,0.789,1.288,-1.709,0.0,0.0,5.413,0.0,-0.062,1.7,0.0,0.0,0.0,11.645,-4.474,-1.246,0.0,-1.205,-0.066,0.0,0.0,-0.056,-0.008,1.194,0.0,0.0,-1.212,0.0,-0.057,-0.194,-0.279,0.0,0.0,0.549,3.198,0.781,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,14592.0,6778.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,25.876,25.876,24.558,24.558,1.317,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.661,0.22,9.585,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.22,0.0,3.265,9.374,0.636,0.0,0.0,0.0,0.0,1558.6,1869.1,1869.1,3.415,6.099,0.0,0.378,3.172,0.0,0.0,0.381,1.385,-1.507,0.0,0.0,0.401,0.0,-0.006,1.706,0.0,0.0,0.0,0.374,-4.015,-1.12,0.0,-0.84,-0.474,0.0,0.0,-0.078,-0.221,1.396,0.0,0.0,-0.856,0.0,-0.002,-0.396,-0.392,0.0,0.0,0.598,3.657,0.907,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,8331.0,3673.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.185,26.185,25.123,25.123,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.153,0.343,9.537,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,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.984,0.0,5.308,9.374,0.586,0.0,0.0,0.0,0.0,1578.0,1741.9,1741.9,3.705,4.57,0.0,-0.004,3.199,0.0,0.0,0.372,1.434,-1.384,0.0,0.0,-0.004,0.0,-0.074,1.765,0.0,0.0,0.0,0.306,-3.658,-1.009,0.0,-0.001,-0.583,0.0,0.0,-0.044,-0.373,1.518,0.0,0.0,-0.001,0.0,-0.071,-0.543,-0.515,0.0,0.0,0.944,4.015,1.017,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,7886.0,3453.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,6279.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.804,26.804,26.287,26.287,0.517,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.095,0.58,9.526,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.517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,9.42,9.374,0.574,0.0,0.0,0.0,0.0,1668.0,1953.8,1953.8,3.251,7.677,0.0,-0.015,2.451,0.0,0.0,0.424,3.906,-2.465,0.0,0.0,-0.01,0.0,-0.396,0.991,0.0,0.666,0.0,0.0,-4.45,-0.746,0.0,-0.01,-1.157,0.0,0.0,-0.049,-1.212,5.738,0.0,0.0,-0.005,0.0,-0.386,-0.414,-1.343,-0.41,0.0,0.0,7.514,1.28,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 +base-bldgtype-multifamily-residents-1.xml,19.884,19.884,18.663,18.663,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.471,0.422,4.527,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,0.0,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,7.202,4.144,0.584,0.0,0.0,0.0,0.0,1142.0,1671.8,1671.8,3.916,7.195,0.0,-0.018,2.578,0.0,0.0,0.425,4.087,-3.005,0.0,0.0,-0.017,0.0,-0.365,1.302,0.0,0.742,0.0,0.0,-3.753,-0.915,0.0,-0.013,-0.841,0.0,0.0,-0.013,-0.739,5.197,0.0,0.0,-0.012,0.0,-0.356,-0.408,-1.204,-0.286,0.0,0.0,4.875,1.111,817.2,530.6,4684.1,1314.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.301,27.301,26.651,26.651,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.031,0.0,0.0,3.152,0.858,9.527,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.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,7.0,1676.6,1998.5,1998.5,3.451,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.125,28.125,27.432,27.432,0.694,0.0,0.0,0.0,0.0,0.0,0.0,0.055,0.0,0.0,3.797,0.97,9.527,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.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,0.616,0.0,10.469,9.374,0.575,0.0,0.0,0.0,13.0,1706.3,2202.5,2202.5,3.597,8.104,0.0,-0.015,2.472,0.0,0.0,0.423,3.919,-2.555,0.0,0.0,-0.011,0.0,-0.392,1.275,0.0,0.674,0.0,0.036,-4.548,-0.767,0.0,-0.01,-1.112,0.0,0.0,-0.046,-1.16,5.647,0.0,0.0,-0.005,0.0,-0.382,-0.522,-1.34,-0.394,0.0,1.244,7.418,1.259,1354.8,997.6,11171.5,3093.4,0.0,8647.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.596,27.596,26.979,26.979,0.616,0.0,0.0,0.0,0.0,0.0,0.0,0.074,0.0,0.0,3.438,0.858,9.527,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.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,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,7.0,1687.4,2060.4,2060.4,3.449,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,33.049,33.049,32.543,32.543,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,8.9,0.97,9.527,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.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,0.594,0.0,10.469,9.374,0.575,0.0,0.0,0.0,13.0,2186.4,3395.0,3395.0,3.53,8.104,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.747,27.747,27.241,27.241,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,3.597,0.97,9.527,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.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,0.594,0.0,10.469,9.374,0.575,0.0,0.0,0.0,13.0,1698.7,2155.8,2155.8,3.53,8.104,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,23.068,23.068,22.546,22.546,0.522,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,0.0,0.0,9.438,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.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,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1508.8,1332.5,1508.8,3.443,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.122,23.122,22.564,22.564,0.558,0.0,0.0,0.0,0.0,0.0,0.0,0.044,0.0,0.0,0.0,0.0,9.438,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.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.495,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1527.5,1332.5,1527.5,3.595,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.029,-6.076,-1.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,1354.8,997.6,11171.6,3093.4,0.0,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.075,23.075,22.577,22.577,0.498,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,0.0,0.0,9.438,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.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1538.6,1332.5,1538.6,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.054,23.054,22.693,22.693,0.361,0.0,0.0,0.0,0.0,0.0,0.116,0.057,0.0,0.0,0.0,0.0,9.438,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1647.2,1332.5,1647.2,3.447,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.076,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.075,23.075,22.579,22.579,0.496,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,0.0,0.0,9.438,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.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,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1540.5,1332.5,1540.5,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,22.978,22.978,22.571,22.571,0.407,0.0,0.0,0.0,0.0,0.0,0.026,0.025,0.0,0.0,0.0,0.0,9.438,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.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,0.477,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1532.9,1332.5,1532.9,3.527,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.011,-6.076,-1.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,1354.8,997.6,11171.6,3093.4,0.0,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.602,26.602,26.602,26.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.134,0.851,9.535,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,0.0,0.0,9.147,9.374,0.584,0.0,0.0,0.0,7.0,1677.0,1983.1,1983.1,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.355,27.355,27.355,27.355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.775,0.962,9.535,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,0.0,0.0,10.376,9.374,0.584,0.0,0.0,0.0,13.0,1729.1,2177.1,2177.1,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.886,26.886,26.886,26.886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.418,0.851,9.535,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,0.0,0.0,9.147,9.374,0.584,0.0,0.0,0.0,7.0,1694.4,2044.4,2044.4,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.42,32.42,32.42,32.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.841,0.962,9.535,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,0.0,0.0,10.376,9.374,0.584,0.0,0.0,0.0,13.0,2065.3,3317.6,3317.6,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.156,27.156,27.156,27.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.577,0.962,9.535,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,0.0,0.0,10.376,9.374,0.584,0.0,0.0,0.0,13.0,1715.9,2132.5,2132.5,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-generator.xml,41.018,34.194,26.223,19.398,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,9.527,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,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1657.0,2013.3,2013.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,28.05,28.05,28.05,28.05,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.269,0.0,0.0,2.073,2.941,9.527,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,0.581,0.0,9.234,9.374,0.576,0.0,0.0,0.0,0.0,1719.2,1898.6,1898.6,3.449,7.709,0.0,-0.016,2.485,0.0,0.0,0.427,3.959,-2.568,0.0,0.0,-0.012,0.0,-0.392,1.285,0.0,0.682,0.0,0.0,-4.601,-0.777,0.0,-0.011,-1.098,0.0,0.0,-0.042,-1.119,5.634,0.0,0.0,-0.007,0.0,-0.382,-0.512,-1.333,-0.387,0.0,0.0,7.365,1.249,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.745,31.745,16.765,16.765,14.98,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.097,0.582,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.0,0.572,0.0,14.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.527,0.0,9.528,9.374,2.261,0.0,0.0,0.0,0.0,1022.8,1553.5,1553.5,3.498,7.734,0.0,-0.017,2.435,0.0,0.0,0.425,3.913,-2.47,0.0,0.0,-0.013,0.0,-0.418,2.024,0.0,0.0,0.0,0.0,-4.701,-0.752,0.0,-0.012,-1.157,0.0,0.0,-0.045,-1.182,5.732,0.0,0.0,-0.007,0.0,-0.407,-0.942,-1.35,0.0,0.0,0.0,7.751,1.274,1354.8,997.6,11171.8,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-laundry-room.xml,29.626,29.626,16.572,16.572,13.054,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.944,0.541,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.0,0.742,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,8.806,9.374,0.568,0.0,0.0,0.0,0.0,1013.8,1542.1,1542.1,3.655,7.615,0.0,-0.017,2.498,0.0,0.0,0.426,3.976,-2.663,0.0,0.0,-0.014,0.0,-0.395,2.062,0.0,0.0,0.0,0.0,-4.478,-0.8,0.0,-0.012,-1.052,0.0,0.0,-0.036,-1.051,5.54,0.0,0.0,-0.009,0.0,-0.386,-0.862,-1.313,0.0,0.0,0.0,6.883,1.227,1354.8,997.6,11171.7,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-mechvent-multiple.xml,50.713,50.713,30.664,30.664,20.049,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.808,0.312,9.565,0.0,0.0,2.026,0.0,0.206,3.727,0.946,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,0.0,7.888,0.0,0.0,0.0,0.0,12.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.308,0.0,5.088,9.374,0.615,0.0,0.0,0.0,0.0,1867.2,2269.1,2269.1,7.584,8.979,0.0,-0.017,2.791,0.0,0.0,0.407,4.196,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.34,0.0,0.0,-6.693,-1.194,0.0,-0.013,-0.143,0.0,0.0,0.06,0.126,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.698,-4.228,0.0,0.0,5.312,0.832,1354.8,997.6,11171.5,3093.4,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.615,32.615,27.323,27.323,5.293,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.686,0.467,9.537,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,0.0,1.335,0.0,0.0,0.0,0.0,3.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,1.234,0.0,7.542,9.374,0.586,0.0,0.0,0.0,0.0,1657.3,2031.3,2031.3,4.163,7.879,0.0,-0.018,2.638,0.0,0.0,0.432,4.149,-3.079,0.0,0.0,-0.017,0.0,-0.36,1.775,0.0,1.925,0.0,0.0,-5.318,-0.929,0.0,-0.013,-0.774,0.0,0.0,-0.004,-0.66,5.123,0.0,0.0,-0.012,0.0,-0.352,-0.53,-1.154,-1.781,0.0,0.0,6.659,1.097,1354.8,997.6,11171.5,3093.4,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-mechvent.xml,30.834,30.834,27.174,27.174,3.661,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.584,0.44,9.546,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,0.0,3.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,3.389,0.0,7.249,9.374,0.596,0.0,0.0,0.0,0.0,1646.9,2112.1,2112.1,5.987,8.5,0.0,-0.016,2.682,0.0,0.0,0.398,4.038,-3.61,0.0,0.0,-0.018,0.0,-0.253,1.739,0.0,5.306,0.0,0.0,-5.801,-1.04,0.0,-0.011,-0.571,0.0,0.0,-0.008,-0.518,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.44,-1.153,-1.513,0.0,0.0,6.186,0.987,1354.8,997.6,11171.5,3093.4,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-pv.xml,26.852,2.404,26.223,1.775,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,9.527,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.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1657.0,2013.3,2013.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.789,30.789,17.683,17.683,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1059.1,1602.9,1602.9,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.661,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.038,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.625,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11171.6,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily-shared-water-heater.xml,29.693,29.693,16.587,16.587,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1006.5,1550.2,1550.2,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.661,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.038,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.625,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11171.6,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-multifamily.xml,26.852,26.852,26.223,26.223,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,9.527,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.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1657.0,2013.3,2013.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-dhw-combi-tankless-outside.xml,51.079,51.079,21.423,21.423,29.656,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.363,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.322,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.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,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,52.277,52.277,21.432,21.432,30.845,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.551,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1376.9,1017.3,1376.9,17.068,0.0,0.0,3.743,3.642,0.513,7.499,0.631,10.099,-12.691,0.0,0.0,0.0,8.145,-0.067,5.887,0.0,0.729,0.0,0.0,-8.581,-2.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,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,32.074,32.074,32.074,32.074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.285,0.756,6.757,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.246,9.074,0.661,2.908,0.0,0.0,0.0,2067.1,2830.0,2830.0,0.0,19.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.094,-0.469,-0.052,2.672,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.192,-3.046,-0.166,0.0,3.724,8.63,2.036,1354.8,997.6,11183.0,2566.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.175,37.175,37.175,37.175,0.0,0.0,0.0,0.0,0.0,0.0,5.086,0.488,0.0,0.0,2.851,0.931,6.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.763,0.0,13.964,9.073,0.613,2.942,0.0,0.0,0.0,3258.6,2327.7,3258.6,21.512,16.342,0.0,3.603,3.642,0.513,7.524,0.63,10.096,-12.683,0.0,0.0,0.0,8.308,-0.064,4.805,0.0,0.729,0.0,3.414,-8.59,-2.499,0.0,-0.008,-0.463,-0.052,2.69,-0.026,-1.403,11.73,0.0,0.0,0.0,-6.345,-0.06,-1.169,-3.129,-0.165,0.0,2.066,8.501,2.01,1354.8,997.6,11186.5,2567.0,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,56.444,56.444,29.777,29.777,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,4.523,0.886,2.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,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.972,0.0,14.956,9.085,1.81,3.029,0.0,0.0,0.0,1884.0,3184.7,3184.7,25.892,19.712,0.0,3.522,3.634,0.511,7.504,0.628,10.066,-12.724,0.0,0.0,0.0,8.331,-0.052,4.794,0.0,0.727,0.0,5.64,-5.456,-2.509,0.0,-0.021,-0.422,-0.046,2.83,-0.015,-1.277,11.689,0.0,0.0,0.0,-6.116,-0.048,-1.121,-2.946,-0.156,0.0,3.252,7.661,2.001,1354.7,997.5,11162.4,2561.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,33.765,33.765,33.765,33.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.524,1.227,6.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,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.648,9.08,0.0,2.941,0.0,0.0,0.0,1932.8,3302.0,3302.0,0.0,19.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.071,-0.464,-0.051,2.687,-0.03,-1.43,11.85,0.0,0.0,0.0,-6.907,-0.064,-1.186,-3.016,-0.165,0.0,3.292,8.363,2.036,1354.8,997.6,11131.7,2554.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,31.329,31.329,31.329,31.329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.336,6.752,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.036,9.074,0.661,2.915,0.0,0.0,0.0,2067.1,2556.1,2556.1,0.0,19.549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.135,-0.469,-0.052,2.673,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.915,-0.064,-1.192,-3.049,-0.167,0.0,4.556,8.633,2.036,1354.8,997.6,11183.3,2566.2,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,33.797,33.797,33.797,33.797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.578,1.245,6.698,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.877,9.073,0.661,2.995,0.0,0.0,0.0,2069.0,3315.1,3315.1,0.0,19.409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.078,-0.47,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.192,-3.047,-0.166,0.0,3.328,8.654,2.036,1354.8,997.6,11186.4,2566.9,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,55.925,55.925,33.659,33.659,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,6.744,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,6.634,0.614,0.0,0.0,0.0,0.0,2102.3,3439.6,3439.6,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,10014.1,2297.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-detailed-setpoints.xml,53.845,53.845,21.421,21.421,32.423,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,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,0.0,19.114,0.0,13.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.124,0.0,0.0,9.099,2.365,0.0,0.0,0.0,0.0,1376.0,1017.3,1376.0,16.681,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.108,-12.669,0.0,0.0,0.0,8.131,-0.068,5.892,0.0,0.729,0.0,0.0,-9.892,-2.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,1154.4,852.6,9359.8,2147.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-dse.xml,58.805,58.805,21.458,21.458,37.348,0.0,0.0,0.0,0.0,0.0,0.0,0.182,0.0,0.0,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,0.0,23.952,0.0,13.395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.168,0.0,0.0,9.103,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.134,-0.07,5.893,0.0,0.729,0.0,0.0,-9.854,-2.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,1070.4,771.3,8876.8,2036.9,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-outside.xml,55.4,55.4,21.423,21.423,33.977,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.363,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,16.322,0.0,0.0,9.106,3.299,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.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,1065.0,767.3,8821.4,2024.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-standbyloss.xml,54.218,54.218,21.42,21.42,32.799,0.0,0.0,0.0,0.0,0.0,0.0,0.143,0.0,0.0,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,0.0,18.906,0.0,13.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,15.947,0.0,0.0,9.105,2.69,0.0,0.0,0.0,0.0,1375.9,1017.3,1375.9,16.729,0.0,0.0,3.746,3.646,0.513,7.512,0.632,10.114,-12.663,0.0,0.0,0.0,8.131,-0.071,5.895,0.0,0.73,0.0,0.0,-10.09,-2.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,1059.1,763.7,8811.6,2022.0,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,46.173,46.173,21.429,21.429,24.744,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.069,0.0,4.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.953,0.0,0.0,9.08,0.783,0.0,5.902,0.0,0.0,1376.6,1017.3,1376.6,16.971,0.0,0.0,3.745,3.645,0.513,7.503,0.631,10.103,-12.69,0.0,0.0,0.0,8.144,-0.067,5.89,0.0,0.729,0.0,0.0,-9.023,-2.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,388.7,286.4,3143.6,721.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,53.979,53.979,21.422,21.422,32.557,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,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,0.0,19.162,0.0,13.395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.168,0.0,0.0,9.103,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.134,-0.07,5.893,0.0,0.729,0.0,0.0,-9.854,-2.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,1070.4,771.3,8876.8,2036.9,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,58.086,58.086,35.605,35.605,22.481,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.387,0.851,8.72,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.053,0.0,14.342,9.075,0.295,0.0,0.0,0.0,0.0,2106.1,3415.6,3415.6,23.085,19.07,0.0,3.554,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.806,0.0,0.729,0.0,4.874,-8.733,-2.499,0.0,-0.054,-0.462,-0.052,2.693,-0.026,-1.399,11.73,0.0,0.0,0.0,-6.338,-0.06,-1.168,-3.09,-0.165,0.0,3.188,7.726,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,64.099,64.099,27.019,27.019,37.08,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.489,0.876,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,0.0,22.883,0.0,14.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,21.43,0.0,14.763,9.075,2.724,0.0,0.0,0.0,0.0,1464.4,3156.9,3156.9,23.58,19.54,0.0,3.552,3.645,0.513,7.531,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,5.889,0.0,0.729,0.0,4.961,-9.538,-2.499,0.0,-0.06,-0.465,-0.052,2.687,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.347,-0.058,-1.45,-3.116,-0.166,0.0,3.27,8.403,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,56.318,56.318,29.631,29.631,26.687,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,3.934,0.742,3.239,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,12.535,9.129,1.302,0.0,0.0,0.0,0.0,1880.5,3567.5,3567.5,25.325,19.105,0.0,3.522,3.636,0.512,7.508,0.627,10.062,-12.738,0.0,0.0,0.0,8.34,-0.05,4.794,0.0,0.727,0.0,5.64,-5.436,-2.509,0.0,0.007,-0.412,-0.045,2.851,-0.015,-1.258,11.675,0.0,0.0,0.0,-6.072,-0.046,-1.114,-2.816,-0.154,0.0,2.838,5.444,2.001,1354.8,997.6,10758.2,2468.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-indirect.xml,53.778,53.778,21.423,21.423,32.355,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.38,0.0,12.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.357,0.0,0.0,9.102,1.911,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.825,0.0,0.0,3.746,3.646,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.137,-0.068,5.892,0.0,0.729,0.0,0.0,-9.652,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1075.0,775.0,8916.9,2046.2,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-low-flow-fixtures.xml,57.977,57.977,35.711,35.711,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,8.838,0.614,0.0,0.0,0.0,0.0,2129.0,3421.2,3421.2,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,10829.5,2485.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-multiple.xml,46.898,46.898,23.372,23.372,23.526,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,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,0.0,19.587,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,16.539,0.0,0.0,9.225,2.814,0.0,5.996,0.0,0.0,2111.5,1815.9,2111.5,18.806,0.0,0.0,3.745,3.645,0.513,7.508,0.631,10.107,-12.678,0.0,0.0,0.0,8.141,-0.068,5.891,0.0,0.729,0.0,0.0,-9.468,-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,472.0,347.5,3998.3,917.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-multiple.xml,46.852,46.852,23.349,23.349,23.504,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,0.0,0.0,1.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,0.0,19.59,0.0,3.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,0.0,0.0,0.0,0.0,0.0,16.541,0.0,0.0,9.066,2.815,0.0,5.893,0.0,0.0,2028.1,1810.7,2028.1,16.778,0.0,0.0,3.746,3.646,0.513,7.507,0.631,10.104,-12.678,0.0,0.0,0.0,8.139,-0.067,5.891,0.0,0.729,0.0,0.0,-9.471,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,472.1,347.6,3919.3,899.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-none.xml,46.91,46.91,24.677,24.677,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.38,0.85,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,0.0,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.822,0.0,14.413,0.0,0.0,0.0,0.0,0.0,0.0,1360.7,3014.2,3014.2,23.072,19.086,0.0,3.558,3.646,0.513,7.535,0.631,10.106,-12.683,0.0,0.0,0.0,8.322,-0.064,5.405,0.0,0.0,0.0,4.828,-8.819,-2.499,0.0,-0.059,-0.466,-0.052,2.68,-0.027,-1.413,11.73,0.0,0.0,0.0,-6.358,-0.06,-1.307,-3.107,0.0,0.0,3.187,7.842,2.011,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,58.294,58.294,36.028,36.028,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.174,0.614,0.0,0.0,0.0,0.0,2132.0,3422.5,3422.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,57.868,57.868,35.601,35.601,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.174,0.614,0.0,0.0,0.0,0.0,2117.0,3407.9,3407.9,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2510.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,73.243,73.243,50.977,50.977,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.268,0.614,0.0,0.0,0.0,0.0,3078.6,4011.8,4011.8,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,68.333,68.333,46.067,46.067,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.268,0.614,0.0,0.0,0.0,0.0,2760.3,3826.8,3826.8,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,73.243,73.243,50.977,50.977,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.268,0.614,0.0,0.0,0.0,0.0,3078.6,4011.8,4011.8,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2676.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,52.495,52.495,30.228,30.228,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.417,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.469,9.254,0.627,0.0,6.674,0.0,0.0,2090.5,3145.8,3145.8,23.031,19.137,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.208,7.886,2.011,1354.7,997.5,11215.4,2573.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,51.015,51.015,28.758,28.758,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.429,0.861,1.513,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.844,0.0,14.521,9.362,0.693,0.0,8.431,0.0,0.0,2086.3,3149.2,3149.2,23.031,19.166,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.912,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.112,-0.166,0.0,3.216,7.944,2.011,1354.4,997.2,10423.4,2391.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,52.553,52.553,30.287,30.287,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.422,0.86,3.032,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.492,9.29,0.649,0.0,6.682,0.0,0.0,2102.1,3147.8,3147.8,23.032,19.155,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.108,-0.166,0.0,3.212,7.908,2.011,1354.7,997.6,10950.1,2512.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,52.622,52.622,30.086,30.086,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.381,0.85,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,0.0,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.104,0.0,14.314,9.233,0.215,0.0,6.002,0.0,0.0,1767.2,3421.9,3421.9,23.098,19.057,0.0,3.554,3.644,0.513,7.529,0.631,10.098,-12.69,0.0,0.0,0.0,8.316,-0.062,4.806,0.0,0.729,0.0,4.885,-8.691,-2.5,0.0,-0.052,-0.461,-0.051,2.696,-0.026,-1.399,11.724,0.0,0.0,0.0,-6.332,-0.059,-1.167,-3.087,-0.165,0.0,3.183,7.688,2.01,474.2,349.2,3989.9,915.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,50.754,50.754,28.845,28.845,21.909,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,4.532,0.887,1.483,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,0.0,21.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,20.517,0.0,14.964,9.342,0.681,0.0,8.428,0.0,0.0,2074.7,3182.5,3182.5,23.066,19.438,0.0,3.559,3.645,0.513,7.536,0.63,10.098,-12.669,0.0,0.0,0.0,8.31,-0.061,4.806,0.0,0.729,0.0,4.764,-9.202,-2.496,0.0,-0.069,-0.473,-0.053,2.663,-0.029,-1.44,11.744,0.0,0.0,0.0,-6.388,-0.057,-1.183,-3.16,-0.168,0.0,3.291,8.463,2.013,1354.2,997.1,10553.0,2421.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,50.736,50.736,28.478,28.478,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.428,0.861,1.545,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.844,0.0,14.519,9.357,0.69,0.0,8.389,0.0,0.0,2092.5,3116.9,3116.9,23.032,19.164,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.912,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.112,-0.166,0.0,3.216,7.942,2.011,1354.4,997.3,10455.3,2399.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,65.026,65.026,27.073,27.073,22.486,0.0,0.0,0.0,0.0,15.467,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.057,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.6,3167.6,23.489,19.633,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-detailed-setpoints.xml,58.327,58.327,36.068,36.068,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,20.846,0.0,14.459,9.207,0.623,0.0,0.0,0.0,0.0,2477.2,3444.5,3444.5,23.009,19.116,0.0,3.556,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.908,-2.499,0.0,-0.058,-0.465,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.206,7.878,2.011,1354.8,997.6,11442.2,2625.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,58.371,58.371,36.157,36.157,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.42,0.859,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,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,0.0,14.483,9.233,0.691,0.0,0.0,0.0,0.0,2172.6,3607.2,3607.2,23.021,19.134,0.0,3.557,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.823,-8.947,-2.499,0.0,-0.057,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.172,-3.11,-0.166,0.0,3.21,7.908,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,66.747,66.747,26.859,26.859,39.888,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,17.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,21.24,0.0,14.239,9.233,5.067,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11399.6,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,64.7,64.7,27.035,27.035,37.665,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.504,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,0.0,22.762,0.0,14.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.316,0.0,14.826,9.233,2.977,0.0,0.0,0.0,0.0,1464.3,3160.3,3160.3,23.554,19.569,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.062,-0.466,-0.052,2.682,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.28,8.483,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,64.7,64.7,27.035,27.035,37.665,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.504,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,0.0,22.762,0.0,14.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.316,0.0,14.826,9.233,2.977,0.0,0.0,0.0,0.0,1464.3,3160.3,3160.3,23.554,19.569,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.062,-0.466,-0.052,2.682,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.28,8.483,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,65.026,65.026,27.073,27.073,37.953,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.486,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,21.057,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.6,3167.6,23.489,19.633,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,56.391,56.391,28.819,28.819,27.572,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,3.866,0.726,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,0.0,27.572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.817,0.0,12.242,9.374,1.414,0.0,0.0,0.0,0.0,1847.7,3081.3,3081.3,26.693,18.88,0.0,3.505,3.633,0.511,7.506,0.628,10.08,-12.706,0.0,0.0,0.0,8.337,-0.061,4.797,0.0,0.727,0.0,5.812,-4.801,-2.509,0.0,0.019,-0.396,-0.042,2.895,-0.008,-1.181,11.708,0.0,0.0,0.0,-5.995,-0.057,-1.084,-2.725,-0.154,0.0,2.776,5.019,2.0,1354.8,997.6,10201.9,2341.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.255,56.255,28.645,28.645,27.61,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,3.852,0.722,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,0.0,27.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.844,0.0,12.191,9.29,1.306,0.0,0.0,0.0,0.0,1860.3,3442.4,3442.4,25.48,19.069,0.0,3.518,3.637,0.512,7.511,0.627,10.064,-12.741,0.0,0.0,0.0,8.354,-0.042,4.795,0.0,0.727,0.0,5.807,-4.777,-2.511,0.0,0.022,-0.397,-0.043,2.901,-0.011,-1.214,11.672,0.0,0.0,0.0,-6.003,-0.038,-1.096,-2.76,-0.152,0.0,2.783,5.017,1.999,1354.8,997.6,10960.7,2515.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,56.362,56.362,33.681,33.681,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.255,2.524,0.0,0.0,0.0,0.0,3085.8,3332.0,3332.0,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11245.7,2580.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,56.255,56.255,28.645,28.645,27.61,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,3.852,0.722,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,0.0,27.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.844,0.0,12.191,9.29,1.306,0.0,0.0,0.0,0.0,1860.3,3442.4,3442.4,25.48,19.069,0.0,3.518,3.637,0.512,7.511,0.627,10.064,-12.741,0.0,0.0,0.0,8.354,-0.042,4.795,0.0,0.727,0.0,5.807,-4.777,-2.511,0.0,0.022,-0.397,-0.043,2.901,-0.011,-1.214,11.672,0.0,0.0,0.0,-6.003,-0.038,-1.096,-2.76,-0.152,0.0,2.783,5.017,1.999,1354.8,997.6,10960.7,2515.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,52.01,52.01,27.95,27.95,24.06,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.215,0.81,1.253,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.527,0.0,13.654,9.266,0.602,0.0,6.023,0.0,0.0,1880.1,3178.1,3178.1,26.019,19.098,0.0,3.544,3.641,0.512,7.517,0.63,10.08,-12.707,0.0,0.0,0.0,8.321,-0.054,4.8,0.0,0.728,0.0,5.165,-7.502,-2.501,0.0,-0.029,-0.442,-0.049,2.751,-0.021,-1.349,11.706,0.0,0.0,0.0,-6.239,-0.05,-1.147,-2.983,-0.162,0.0,3.057,6.853,2.008,474.2,349.2,3898.4,894.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,51.574,51.574,28.572,28.572,23.002,0.0,0.0,0.0,0.0,0.0,0.0,0.379,0.0,0.0,4.566,0.895,1.125,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,0.0,23.002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.539,0.0,15.117,9.179,1.961,0.0,8.149,0.0,0.0,1891.6,3199.0,3199.0,23.381,19.567,0.0,3.554,3.646,0.513,7.539,0.629,10.091,-12.687,0.0,0.0,0.0,8.325,-0.057,4.805,0.0,0.729,0.0,4.965,-8.375,-2.498,0.0,-0.064,-0.466,-0.052,2.683,-0.029,-1.429,11.726,0.0,0.0,0.0,-6.347,-0.053,-1.176,-3.156,-0.166,0.0,3.314,8.556,2.012,1354.5,997.3,11926.7,2736.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,56.506,56.506,29.822,29.822,26.684,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,3.938,0.743,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,0.0,26.684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.986,0.0,12.561,9.279,1.718,0.0,0.0,0.0,0.0,1871.8,3309.5,3309.5,23.445,19.256,0.0,3.522,3.634,0.511,7.507,0.628,10.071,-12.731,0.0,0.0,0.0,8.342,-0.054,4.796,0.0,0.727,0.0,5.641,-5.46,-2.511,0.0,0.003,-0.415,-0.045,2.847,-0.014,-1.252,11.682,0.0,0.0,0.0,-6.076,-0.05,-1.113,-2.829,-0.154,0.0,2.838,5.479,1.999,1354.8,997.6,11052.3,2536.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.936,58.936,35.718,35.718,23.219,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.453,0.866,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.742,0.0,14.577,9.275,0.094,0.0,0.0,0.0,0.0,4636.3,5578.8,5578.8,30.734,19.972,0.0,3.55,3.644,0.513,7.528,0.631,10.102,-12.682,0.0,0.0,0.0,8.311,-0.062,5.264,0.0,0.777,0.0,5.011,-8.678,-2.504,0.0,-0.055,-0.461,-0.051,2.696,-0.025,-1.393,11.731,0.0,0.0,0.0,-6.334,-0.058,-1.269,-3.078,-0.186,0.0,3.233,8.042,2.006,1354.7,998.0,11011.7,2526.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,58.219,58.219,35.602,35.602,22.617,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.371,0.847,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,0.0,22.617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.181,0.0,14.272,9.282,0.094,0.0,0.0,0.0,0.0,1992.8,3454.2,3454.2,23.119,19.037,0.0,3.553,3.644,0.513,7.528,0.63,10.097,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.901,-8.625,-2.5,0.0,-0.051,-0.46,-0.051,2.699,-0.025,-1.396,11.724,0.0,0.0,0.0,-6.328,-0.058,-1.166,-3.081,-0.165,0.0,3.177,7.633,2.01,1354.8,997.6,10995.3,2523.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,65.026,65.026,27.073,27.073,22.486,15.467,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.486,0.0,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,21.057,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.6,3167.6,23.489,19.633,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,65.026,65.026,27.073,27.073,22.486,0.0,0.0,15.467,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.486,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,21.057,0.0,14.974,9.233,3.621,0.0,0.0,0.0,0.0,1463.9,3167.6,3167.6,23.489,19.633,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11399.8,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,60.906,60.906,26.859,26.859,34.047,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,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.24,0.0,14.239,9.214,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11575.0,2656.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,58.974,58.974,36.293,36.293,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.234,0.0,0.0,0.0,0.0,0.0,2022.5,3495.0,3495.0,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,58.867,58.867,36.187,36.187,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.234,0.0,0.0,0.0,0.0,0.0,2016.1,3490.5,3490.5,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,58.974,58.974,36.293,36.293,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,9.434,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.234,0.0,0.0,0.0,0.0,0.0,2022.5,3495.0,3495.0,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,59.369,59.369,26.859,26.859,32.51,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,9.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.24,0.0,14.239,9.234,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,53.526,53.526,26.859,26.859,26.667,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,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.24,0.0,14.239,9.234,0.0,0.0,6.002,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,474.2,349.2,3988.9,915.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,51.251,51.251,27.289,27.289,23.962,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.47,0.872,0.0,0.0,0.303,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.323,0.0,1.639,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.905,0.0,14.696,9.417,0.0,0.0,8.084,0.0,0.0,1462.4,3166.1,3166.1,23.168,19.301,0.0,3.557,3.645,0.513,7.532,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,4.807,0.0,0.729,0.0,4.844,-8.874,-2.498,0.0,-0.061,-0.467,-0.052,2.68,-0.027,-1.419,11.73,0.0,0.0,0.0,-6.359,-0.058,-1.175,-3.127,-0.166,0.0,3.248,8.126,2.011,1344.9,989.3,10030.6,2301.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,60.93,60.93,26.859,26.859,34.071,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,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.24,0.0,14.239,9.234,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,60.93,60.93,26.859,26.859,22.681,0.0,11.39,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.239,9.234,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11396.9,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,65.848,65.848,41.127,41.127,24.72,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,6.442,1.322,9.119,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,0.0,24.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.053,0.0,22.265,9.211,0.609,0.0,0.0,0.0,0.0,2307.2,4587.1,4587.1,30.688,28.15,0.0,3.862,7.596,1.093,5.881,0.688,20.477,-24.88,0.0,0.0,0.867,6.711,-0.179,8.99,0.0,0.763,0.0,3.298,-9.747,-2.93,0.0,-0.11,-1.064,-0.109,1.841,-0.027,-1.631,23.454,0.0,0.0,-0.141,-4.808,-0.17,-1.956,-6.137,-0.162,0.0,2.913,8.485,2.338,1354.8,997.6,11399.5,2576.4,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7647.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25899.0,4445.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,73.836,73.836,44.433,44.433,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,6.329,1.295,9.004,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,0.0,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.422,0.0,21.787,9.146,0.612,0.0,0.0,0.0,0.0,2519.3,4712.1,4712.1,33.94,28.292,0.0,3.774,7.88,1.071,7.921,0.667,20.509,-25.19,0.0,0.0,0.0,9.056,-0.136,11.167,0.0,0.747,0.0,3.872,-10.951,-3.54,0.0,-0.076,-1.046,-0.101,2.662,-0.023,-2.118,23.376,0.0,0.0,0.0,-6.456,-0.126,-2.486,-6.302,-0.162,0.0,2.839,9.405,2.832,1354.8,997.6,11399.6,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25801.0,4444.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,54.942,54.942,30.687,30.687,24.255,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.1,0.781,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,0.0,24.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,22.716,0.0,13.312,5.356,0.615,0.0,0.0,0.0,0.0,1778.7,3279.2,3279.2,23.623,18.494,0.0,3.533,3.635,0.511,7.498,0.63,10.083,-12.698,0.0,0.0,0.0,8.293,-0.065,4.804,0.0,0.727,0.0,5.229,-7.29,-2.504,0.0,-0.019,-0.434,-0.048,2.778,-0.018,-1.304,11.715,0.0,0.0,0.0,-6.2,-0.061,-1.138,-2.942,-0.161,0.0,3.028,6.287,2.006,939.7,637.0,6287.7,1631.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18320.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,56.675,56.675,33.418,33.418,23.257,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.254,0.819,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,0.0,23.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,21.781,0.0,13.878,7.337,0.614,0.0,0.0,0.0,0.0,2047.7,3350.8,3350.8,23.328,18.794,0.0,3.544,3.639,0.512,7.514,0.63,10.088,-12.691,0.0,0.0,0.0,8.302,-0.063,4.804,0.0,0.728,0.0,5.031,-8.097,-2.5,0.0,-0.038,-0.449,-0.05,2.732,-0.022,-1.359,11.723,0.0,0.0,0.0,-6.276,-0.059,-1.155,-3.024,-0.163,0.0,3.117,7.08,2.009,1147.2,817.3,8843.6,2197.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18553.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,59.992,59.992,38.705,38.705,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.351,0.0,0.0,4.577,0.898,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,0.0,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.934,0.0,15.047,11.089,0.613,0.0,0.0,0.0,0.0,2192.5,3633.6,3633.6,22.736,19.449,0.0,3.569,3.65,0.514,7.549,0.631,10.109,-12.676,0.0,0.0,0.0,8.327,-0.062,4.808,0.0,0.731,0.0,4.636,-9.709,-2.497,0.0,-0.075,-0.479,-0.054,2.64,-0.031,-1.46,11.737,0.0,0.0,0.0,-6.42,-0.058,-1.188,-3.188,-0.168,0.0,3.295,8.669,2.013,1562.4,1177.9,13955.4,2960.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5342.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 -base-enclosure-beds-5.xml,61.632,61.632,41.314,41.314,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.335,0.0,0.0,4.745,0.939,12.591,0.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,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,0.0,15.649,12.918,0.612,0.0,0.0,0.0,0.0,2559.5,3923.2,3923.2,22.438,19.771,0.0,3.582,3.657,0.515,7.568,0.633,10.128,-12.669,0.0,0.0,0.0,8.348,-0.064,4.813,0.0,0.733,0.0,4.441,-10.517,-2.496,0.0,-0.092,-0.493,-0.056,2.596,-0.034,-1.504,11.744,0.0,0.0,0.0,-6.484,-0.06,-1.202,-3.268,-0.17,0.0,3.385,9.461,2.013,1770.0,1358.2,16511.3,3258.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19258.0,5339.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 -base-enclosure-ceilingtypes.xml,74.441,74.441,36.588,36.588,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,0.0,4.612,0.908,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,0.0,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.444,0.0,15.263,9.233,0.618,0.0,0.0,0.0,0.0,2162.8,3488.3,3488.3,29.352,19.725,0.0,17.288,3.592,0.505,7.259,0.62,9.956,-12.802,0.0,0.0,0.0,7.765,-0.075,4.845,0.0,0.734,0.0,6.976,-9.066,-2.542,0.0,0.076,-0.331,-0.033,2.89,0.007,-1.002,11.611,0.0,0.0,0.0,-6.097,-0.066,-1.017,-2.911,-0.141,0.0,2.804,7.716,1.968,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30007.0,5443.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,67.246,67.246,29.481,29.481,37.765,0.0,0.0,0.0,0.0,0.0,0.0,0.623,0.0,0.0,3.689,0.672,9.367,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,37.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,35.371,0.0,11.163,9.342,0.62,0.0,0.0,0.0,2.0,1781.3,3656.2,3656.2,29.151,21.057,0.0,3.488,3.656,0.0,0.0,0.672,9.52,-13.012,0.0,0.0,29.107,0.0,-0.209,2.053,0.0,0.788,0.0,7.865,-7.472,-1.575,0.0,0.406,-0.079,0.0,0.0,0.093,0.884,10.956,0.0,0.0,-8.039,0.0,-0.204,-0.263,-1.883,-0.087,0.0,2.753,5.732,1.072,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19986.0,5356.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-enclosure-garage.xml,58.659,58.659,34.731,34.731,23.928,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.101,0.55,9.267,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,0.0,23.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,22.402,0.0,9.117,9.233,0.724,0.0,0.0,0.0,0.0,2122.7,2939.7,2939.7,18.031,11.763,0.0,3.529,3.789,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.368,0.0,0.0,0.0,3.762,-6.763,-2.508,0.0,0.098,-0.288,-0.036,2.418,-0.001,-1.133,8.269,0.0,0.0,0.0,-5.679,-0.041,-1.225,-2.105,0.0,0.0,1.325,5.683,2.002,1354.8,997.6,11399.6,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15522.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,65.982,65.982,36.09,36.09,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.323,0.832,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,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.99,9.233,0.616,0.0,0.0,0.0,0.0,2154.8,3872.2,3872.2,28.068,20.15,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,59.753,59.753,36.078,36.078,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.395,0.852,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.172,0.0,14.354,9.233,0.614,0.0,0.0,0.0,0.0,2117.2,3447.5,3447.5,23.77,19.351,0.0,3.545,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.319,-0.062,5.886,0.0,0.728,0.0,5.113,-8.911,-2.5,0.0,-0.049,-0.456,-0.051,2.715,-0.024,-1.382,11.724,0.0,0.0,0.0,-6.303,-0.058,-1.436,-3.06,-0.164,0.0,3.204,7.868,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,65.982,65.982,36.09,36.09,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.323,0.832,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,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.99,9.233,0.616,0.0,0.0,0.0,0.0,2154.8,3872.2,3872.2,28.068,20.15,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,65.982,65.982,36.09,36.09,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.323,0.832,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,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.99,9.233,0.616,0.0,0.0,0.0,0.0,2154.8,3872.2,3872.2,28.068,20.15,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,58.567,58.567,36.054,36.054,22.513,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.39,0.852,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,22.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,21.083,0.0,14.359,9.233,0.614,0.0,0.0,0.0,0.0,2132.4,3418.4,3418.4,23.047,19.086,0.0,3.551,3.641,0.512,7.521,0.864,10.091,-12.683,0.0,0.0,0.0,8.303,-0.064,4.805,0.0,0.729,0.0,4.878,-8.906,-2.499,0.0,-0.053,-0.461,-0.052,2.692,-0.155,-1.398,11.73,0.0,0.0,0.0,-6.336,-0.06,-1.168,-3.092,-0.165,0.0,3.184,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,58.468,58.468,35.907,35.907,22.561,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.272,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,22.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,21.128,0.0,13.872,9.233,0.614,0.0,0.0,0.0,0.0,2132.1,3376.1,3376.1,22.986,18.594,0.0,3.548,3.639,0.512,7.51,0.629,10.004,-12.276,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.729,0.0,4.882,-8.91,-2.5,0.0,-0.037,-0.451,-0.05,2.717,-0.023,-1.42,11.099,0.0,0.0,0.0,-6.287,-0.059,-1.163,-3.063,-0.164,0.0,3.082,7.868,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,58.263,58.263,35.911,35.911,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.277,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,0.0,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.931,0.0,13.896,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3300.1,3300.1,22.861,18.059,0.0,3.669,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.307,-0.061,4.806,0.0,0.729,0.0,4.836,-8.908,-2.5,0.0,-0.306,-0.459,-0.051,2.699,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.327,-0.058,-1.168,-3.089,-0.165,0.0,2.846,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,60.862,60.862,37.183,37.183,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,5.288,1.065,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,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,18.031,9.233,0.612,0.0,0.0,0.0,3.0,2138.5,3597.9,3597.9,24.759,21.557,0.0,3.552,3.66,0.515,7.583,0.634,10.135,-12.625,2.717,-2.174,0.0,8.471,-0.068,4.816,0.0,0.732,0.0,5.144,-8.887,-2.495,0.0,-0.146,-0.516,-0.059,2.583,-0.039,-1.533,11.705,-0.068,3.749,0.0,-6.624,-0.063,-1.187,-3.252,-0.17,0.0,4.013,7.889,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23504.0,5406.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,59.482,59.482,36.124,36.124,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.436,0.862,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.875,0.0,14.523,9.233,0.614,0.0,0.0,0.0,0.0,2117.0,3460.0,3460.0,23.653,19.387,0.0,3.538,3.64,0.512,7.524,0.63,10.088,-12.677,1.147,-0.32,0.0,8.318,-0.063,4.806,0.0,0.729,0.0,5.048,-8.906,-2.499,0.0,-0.056,-0.458,-0.051,2.705,-0.025,-1.387,11.724,-0.498,0.432,0.0,-6.325,-0.059,-1.163,-3.074,-0.165,0.0,3.237,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19514.0,5322.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,58.865,58.865,36.838,36.838,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.363,0.0,0.0,5.031,1.005,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,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.626,0.0,17.0,9.233,0.612,0.0,0.0,0.0,0.0,2133.7,3597.9,3597.9,23.621,20.822,0.0,3.568,3.663,0.516,7.583,0.634,10.138,-12.642,0.857,-1.409,0.0,8.436,-0.063,4.814,0.0,0.732,0.0,4.801,-8.885,-2.496,0.0,-0.128,-0.51,-0.059,2.585,-0.038,-1.535,11.715,0.254,2.537,0.0,-6.587,-0.059,-1.196,-3.257,-0.17,0.0,3.753,7.891,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21676.0,5364.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,58.618,58.618,36.939,36.939,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,5.117,1.026,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,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.301,0.0,17.364,9.233,0.612,0.0,0.0,0.0,0.0,2133.2,3597.9,3597.9,23.537,20.992,0.0,3.575,3.667,0.516,7.595,0.636,10.154,-12.632,0.765,-1.651,0.0,8.463,-0.066,4.818,0.0,0.732,0.0,4.733,-8.884,-2.495,0.0,-0.141,-0.519,-0.06,2.564,-0.04,-1.554,11.716,0.258,2.975,0.0,-6.633,-0.063,-1.201,-3.288,-0.171,0.0,3.822,7.892,2.015,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21910.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,40.55,40.55,29.577,29.577,10.974,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,3.951,0.751,9.563,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,10.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.269,0.0,12.417,9.458,0.606,0.0,0.0,0.0,0.0,1710.6,2631.1,2631.1,13.17,13.022,0.0,3.945,3.838,0.0,0.0,0.691,10.079,-12.095,0.0,0.0,0.0,7.996,-0.152,2.657,0.0,0.776,0.0,0.291,-6.808,-1.452,0.0,-0.102,-0.617,0.0,0.0,-0.024,-0.74,12.161,0.0,0.0,0.0,-1.657,-0.149,-0.598,-3.044,-0.169,0.0,0.089,6.381,1.195,1354.8,997.6,11399.5,3013.0,0.0,36000.0,24000.0,0.0,6.8,91.76,28999.0,1651.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,313.0,0.0,-487.0,800.0 -base-enclosure-thermal-mass.xml,58.138,58.138,36.031,36.031,22.107,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.376,0.85,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.703,0.0,14.333,9.233,0.614,0.0,0.0,0.0,0.0,2131.9,3384.3,3384.3,22.903,18.772,0.0,3.557,3.642,0.513,7.508,0.63,10.116,-12.697,0.0,0.0,0.0,8.279,-0.098,4.801,0.0,0.728,0.0,4.785,-8.907,-2.499,0.0,-0.05,-0.46,-0.051,2.699,-0.026,-1.427,11.731,0.0,0.0,0.0,-6.336,-0.094,-1.175,-3.143,-0.166,0.0,3.139,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,75.033,75.033,34.73,34.73,40.303,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,3.069,0.549,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,0.0,40.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,37.731,0.0,9.028,9.233,0.622,0.0,0.0,0.0,0.0,2128.5,3062.8,3062.8,25.833,12.742,0.0,3.347,16.952,0.473,7.157,0.836,1.283,-1.612,0.0,0.0,0.0,7.38,-0.045,4.826,0.0,0.732,0.0,7.806,-9.155,-2.566,0.0,0.291,-0.623,-0.009,3.405,-0.085,-0.165,1.409,0.0,0.0,0.0,-4.92,-0.04,-0.965,-0.378,-0.123,0.0,1.78,7.631,1.944,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13671.0,5183.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,57.422,57.422,35.084,35.084,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.619,0.655,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,0.0,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.919,0.0,10.899,9.233,0.616,0.0,0.0,0.0,0.0,2132.0,3384.7,3384.7,23.034,18.775,0.0,3.555,3.644,0.513,7.537,0.631,10.098,-12.683,0.0,0.0,0.0,8.359,-0.06,4.806,0.0,0.729,0.0,4.848,-8.905,-2.499,0.0,0.012,-0.412,-0.044,2.862,-0.013,-1.248,11.73,0.0,0.0,0.0,-6.094,-0.057,-1.111,-7.007,-0.157,0.0,2.763,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-none.xml,58.884,58.884,34.016,34.016,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,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,0.0,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.28,0.0,7.559,9.233,0.619,0.0,0.0,0.0,0.0,2108.0,2386.2,2386.2,17.246,8.428,0.0,3.468,5.156,0.5,7.22,0.6,0.0,0.0,0.0,0.0,0.0,7.492,-0.043,4.777,0.0,0.723,0.0,4.877,-9.031,-2.531,0.0,0.204,-0.376,-0.023,3.188,0.013,0.0,0.0,0.0,0.0,0.0,-5.188,-0.041,-1.102,0.0,-0.144,0.0,1.322,7.752,1.978,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5099.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,66.136,66.136,36.191,36.191,29.945,0.0,0.0,0.0,0.0,0.0,0.0,0.494,0.0,0.0,4.406,0.849,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,0.0,29.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,0.0,0.0,28.045,0.0,14.278,9.233,0.616,0.0,0.0,0.0,0.0,2150.9,3923.5,3923.5,27.769,20.924,0.0,3.492,3.633,0.511,7.504,0.63,19.595,-16.819,0.0,0.0,0.0,8.427,-0.074,4.825,0.0,0.732,0.0,6.377,-8.965,-2.513,0.0,0.012,-0.392,-0.042,2.826,-0.007,-4.96,14.292,0.0,0.0,0.0,-6.171,-0.068,-1.082,-2.85,-0.155,0.0,3.307,7.815,1.997,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21180.0,5355.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,58.268,58.268,36.108,36.108,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.439,0.864,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,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.753,0.0,14.576,9.233,0.613,0.0,0.0,0.0,0.0,2114.8,3422.3,3422.3,23.034,19.122,0.0,3.558,3.645,0.513,7.515,0.631,10.105,-12.683,0.0,0.0,0.0,8.252,-0.071,4.808,0.0,0.73,0.0,4.81,-8.905,-2.499,0.0,-0.075,-0.483,-0.055,2.62,-0.031,-1.316,12.141,0.0,0.0,0.0,-6.498,-0.067,-1.188,-3.219,-0.168,0.0,3.226,7.872,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,57.959,57.959,33.592,33.592,24.367,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,2.368,0.375,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,0.0,24.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,0.0,0.0,22.819,0.0,6.179,9.233,0.622,0.0,0.0,0.0,0.0,2114.8,2567.4,2567.4,23.078,11.444,0.0,3.574,3.682,0.517,7.568,0.638,10.631,-11.787,0.0,0.0,0.0,8.559,-0.043,4.867,0.0,0.74,0.0,5.219,-9.143,-2.56,0.0,0.353,-0.11,-0.002,3.553,0.056,-3.589,2.911,0.0,0.0,0.0,-4.594,-0.039,-0.912,-2.173,-0.118,0.0,1.429,7.643,1.95,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,59.298,59.298,35.492,35.492,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,3.919,0.74,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,0.0,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.295,0.0,12.428,9.233,0.616,0.0,0.0,0.0,0.0,2131.9,3204.8,3204.8,22.494,17.139,0.0,3.514,3.609,0.508,7.424,0.622,8.599,-9.444,0.0,0.0,0.0,8.041,-0.059,4.791,0.0,0.726,0.0,5.093,-8.925,-2.504,0.0,0.015,-0.411,-0.044,2.82,-0.014,-0.74,8.684,0.0,0.0,0.0,-6.06,-0.055,-1.142,-2.918,-0.16,0.0,2.774,7.854,2.006,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17521.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-ambient.xml,47.78,47.78,30.453,30.453,17.327,0.0,0.0,0.0,0.0,0.0,0.0,0.286,0.0,0.0,4.75,0.933,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,0.0,17.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.232,0.0,15.684,9.342,0.606,0.0,0.0,0.0,3.0,1740.5,3629.1,3629.1,20.511,21.293,0.0,3.811,3.817,0.0,0.0,0.769,10.526,-11.315,0.0,0.0,10.182,0.0,-0.48,2.065,0.0,0.786,0.0,3.899,-6.747,-1.425,0.0,-0.11,-0.589,0.0,0.0,0.029,-0.179,12.654,0.0,0.0,-3.786,0.0,-0.474,-0.413,-2.427,-0.161,0.0,3.693,6.443,1.222,1354.8,997.6,11399.5,2808.9,0.0,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,18957.0,5354.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-basement-garage.xml,52.56,52.56,32.802,32.802,19.758,0.0,0.0,0.0,0.0,0.0,0.0,0.326,0.0,0.0,4.436,0.861,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,0.0,19.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,18.502,0.0,14.517,9.365,0.613,0.0,0.0,0.0,0.0,1892.4,3386.0,3386.0,21.427,19.686,0.0,3.661,4.739,0.514,5.516,0.701,9.837,-12.609,0.0,0.0,0.835,6.146,-0.039,3.259,0.0,0.735,0.0,4.443,-7.701,-1.886,0.0,-0.041,-0.654,-0.057,1.918,-0.044,-1.196,11.679,0.0,0.0,-0.129,-4.618,-0.036,-0.791,-3.022,-0.167,0.0,3.383,6.955,1.52,1354.8,997.6,11399.6,2849.6,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19061.0,5346.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 -base-foundation-belly-wing-no-skirt.xml,49.514,49.514,29.509,29.509,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.95,0.745,9.354,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,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.735,0.0,12.238,9.342,0.607,0.0,0.0,0.0,0.0,1753.5,3254.0,3254.0,24.174,17.955,0.0,3.986,5.373,0.0,0.0,0.756,8.719,-11.134,0.0,0.0,10.274,0.0,-0.363,2.069,0.0,0.793,0.0,6.171,-6.863,-1.453,0.0,0.291,-0.621,0.0,0.0,0.037,0.041,9.561,0.0,0.0,-3.473,0.0,-0.356,-0.4,-2.2,-0.147,0.0,2.254,6.327,1.194,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-belly-wing-skirt.xml,49.142,49.142,29.517,29.517,19.625,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.961,0.748,9.354,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,19.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,18.38,0.0,12.292,9.342,0.606,0.0,0.0,0.0,0.0,1752.3,3222.4,3222.4,24.022,17.914,0.0,3.992,5.382,0.0,0.0,0.757,8.731,-11.127,0.0,0.0,9.978,0.0,-0.357,2.07,0.0,0.794,0.0,6.058,-6.857,-1.453,0.0,0.285,-0.63,0.0,0.0,0.036,0.021,9.567,0.0,0.0,-3.392,0.0,-0.351,-0.403,-2.214,-0.147,0.0,2.26,6.333,1.194,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-complex.xml,77.628,77.628,37.382,37.382,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,5.221,1.053,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,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.691,0.0,17.803,9.233,0.617,0.0,0.0,0.0,4.0,2171.2,3631.5,3631.5,33.39,21.552,0.0,3.434,3.658,0.521,19.566,0.65,10.136,-12.837,0.0,0.0,0.0,8.756,-0.109,6.085,0.0,0.739,0.0,8.279,-9.111,-2.555,0.0,0.031,-0.372,-0.046,3.7,-0.007,-1.014,11.574,0.0,0.0,0.0,-4.532,-0.101,-1.237,-3.289,-0.139,0.0,3.795,7.67,1.955,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation-full.xml,55.669,55.669,36.621,36.621,19.048,0.0,0.0,0.0,0.0,0.0,0.0,0.314,0.0,0.0,4.893,0.976,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.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,17.836,0.0,16.503,9.233,0.611,0.0,0.0,0.0,0.0,2130.2,3597.9,3597.9,22.291,20.652,0.0,3.636,3.705,0.522,8.235,0.644,10.264,-12.652,0.0,0.0,0.0,4.795,-0.063,4.842,0.0,0.735,0.0,4.211,-8.884,-2.496,0.0,-0.115,-0.509,-0.058,2.158,-0.038,-1.55,11.761,0.0,0.0,0.0,-3.713,-0.057,-1.195,-3.315,-0.17,0.0,3.563,7.891,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,57.222,57.222,36.288,36.288,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.6,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,0.0,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,15.243,9.233,0.613,0.0,0.0,0.0,0.0,2130.7,3568.4,3568.4,22.763,19.966,0.0,3.584,3.664,0.516,7.833,0.635,10.15,-12.669,0.0,0.0,0.0,6.873,-0.061,4.815,0.0,0.731,0.0,4.578,-8.892,-2.496,0.0,-0.082,-0.484,-0.055,2.495,-0.032,-1.471,11.744,0.0,0.0,0.0,-5.347,-0.057,-1.182,-3.183,-0.168,0.0,3.345,7.885,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,57.133,57.133,35.618,35.618,21.515,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.056,0.768,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,21.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.0,0.0,20.147,0.0,12.895,9.233,0.614,0.0,0.0,0.0,0.0,2111.6,3401.2,3401.2,23.227,18.937,0.0,3.584,3.669,0.516,6.117,0.636,10.166,-12.69,0.0,0.0,0.0,8.986,-0.065,4.827,0.0,0.734,0.0,4.708,-8.905,-2.5,0.0,-0.004,-0.423,-0.046,1.073,-0.017,-1.296,11.724,0.0,0.0,0.0,-6.519,-0.06,-1.143,-2.923,-0.162,0.0,2.994,7.872,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,47.048,47.048,29.047,29.047,18.001,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.591,0.668,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,0.0,18.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,16.845,0.0,11.07,9.342,0.614,0.0,0.0,0.0,0.0,1731.9,2585.4,2585.4,15.9,11.724,0.0,3.711,3.607,0.507,5.113,0.622,9.795,-12.66,0.0,0.0,0.0,10.002,-0.052,3.495,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.025,-0.473,-0.053,1.786,-0.029,-1.225,11.693,0.0,0.0,0.0,-3.856,-0.048,-0.842,-2.99,-0.164,0.0,0.0,6.308,1.18,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 -base-foundation-multiple.xml,42.544,42.544,29.864,29.864,12.68,0.0,0.0,0.0,0.0,0.0,0.0,0.209,0.0,0.0,4.349,0.845,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,0.0,12.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.87,0.0,13.997,9.285,0.692,0.0,0.0,0.0,0.0,1720.7,2780.3,2780.3,15.196,15.264,0.0,3.982,3.869,0.0,0.0,0.78,10.582,-11.178,0.0,0.0,5.303,0.0,-0.384,2.584,0.0,0.0,0.0,1.982,-4.611,-1.419,0.0,-0.151,-0.726,0.0,0.0,-0.016,-0.487,12.79,0.0,0.0,-0.709,0.0,-0.379,-0.574,-2.646,0.0,0.0,1.7,4.255,1.228,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23063.0,4774.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14342.0,288.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-slab.xml,39.764,39.764,29.435,29.435,10.328,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.0,0.0,4.015,0.768,9.352,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,10.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,9.666,0.0,12.691,9.342,0.605,0.0,0.0,0.0,0.0,1717.5,2696.1,2696.1,12.687,12.989,0.0,3.935,3.804,0.0,0.0,0.691,10.07,-12.046,0.0,0.0,0.0,7.998,-0.153,2.012,0.0,0.776,0.0,0.274,-6.772,-1.445,0.0,-0.089,-0.602,0.0,0.0,-0.03,-0.815,12.21,0.0,0.0,0.0,-1.718,-0.15,-0.472,-2.884,-0.174,0.0,0.091,6.417,1.202,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,28632.0,1649.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-above-grade.xml,43.721,43.721,30.004,30.004,13.718,0.0,0.0,0.0,0.0,0.0,0.0,0.226,0.0,0.0,4.433,0.864,9.349,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,13.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.843,0.0,14.367,9.285,0.712,0.0,0.0,0.0,0.0,1725.1,3043.2,3043.2,16.456,16.259,0.0,3.987,3.869,0.0,0.0,0.779,10.631,-11.228,0.0,0.0,5.922,0.0,-0.399,2.588,0.0,0.0,0.0,2.4,-4.628,-1.424,0.0,-0.127,-0.706,0.0,0.0,-0.012,-0.481,12.741,0.0,0.0,-0.611,0.0,-0.393,-0.561,-2.633,0.0,0.0,1.985,4.237,1.223,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23024.0,4769.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14337.0,292.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-assembly-r.xml,41.0,41.0,29.404,29.404,11.596,0.0,0.0,0.0,0.0,0.0,0.0,0.191,0.0,0.0,3.981,0.756,9.345,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,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,0.0,10.857,0.0,12.428,9.285,0.709,0.0,0.0,0.0,0.0,1708.0,2811.3,2811.3,14.633,13.982,0.0,3.977,3.838,0.0,0.0,0.769,10.59,-11.043,0.0,0.0,4.41,0.0,-0.41,2.586,0.0,0.0,0.0,1.766,-4.584,-1.409,0.0,-0.128,-0.681,0.0,0.0,0.011,-0.459,12.925,0.0,0.0,-2.093,0.0,-0.406,-0.578,-2.55,0.0,0.0,1.163,4.282,1.238,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,20545.0,4409.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,14055.0,573.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-wall-insulation.xml,48.594,48.594,29.069,29.069,19.525,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,3.659,0.677,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,0.0,19.525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.275,0.0,11.148,9.285,0.639,0.0,0.0,0.0,0.0,1723.9,2491.5,2491.5,16.297,12.58,0.0,3.735,3.633,0.0,0.0,0.636,9.315,-12.475,0.0,0.0,14.463,0.0,-0.046,2.465,0.0,0.0,0.0,2.535,-4.772,-1.48,0.0,0.048,-0.455,0.0,0.0,-0.019,-0.477,11.493,0.0,0.0,-2.833,0.0,-0.044,-0.526,-2.444,0.0,0.0,1.35,4.093,1.167,1354.8,997.6,11399.5,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23828.0,1631.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,15236.0,146.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement.xml,42.608,42.608,29.897,29.897,12.711,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.369,0.849,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,0.0,12.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,11.9,0.0,14.083,9.285,0.703,0.0,0.0,0.0,0.0,1723.5,2802.3,2802.3,15.438,15.472,0.0,3.973,3.833,0.0,0.0,0.761,10.53,-11.149,0.0,0.0,5.339,0.0,-0.393,2.583,0.0,0.0,0.0,2.081,-4.605,-1.417,0.0,-0.132,-0.685,0.0,0.0,0.003,-0.513,12.819,0.0,0.0,-0.762,0.0,-0.388,-0.574,-2.668,0.0,0.0,1.781,4.261,1.23,1354.8,997.6,11399.6,2706.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23070.0,4774.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14344.0,288.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unvented-crawlspace.xml,40.497,40.497,29.996,29.996,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.173,0.0,0.0,4.386,0.857,9.449,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,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.832,0.0,14.17,9.342,0.708,0.0,0.0,0.0,0.0,1717.9,2726.8,2726.8,14.329,14.741,0.0,3.957,3.815,0.0,0.0,0.781,10.653,-10.714,0.0,0.0,4.565,0.0,-0.459,2.05,0.0,0.775,0.0,1.604,-6.202,-1.377,0.0,-0.243,-0.803,0.0,0.0,-0.001,-0.69,13.255,0.0,0.0,-2.098,0.0,-0.455,-0.49,-2.745,-0.197,0.0,1.307,6.382,1.27,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,20315.0,4137.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,14131.0,637.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace.xml,42.397,42.397,29.938,29.938,12.459,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,4.256,0.822,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,0.0,12.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,11.665,0.0,13.523,9.342,0.786,0.0,0.0,0.0,0.0,1712.4,2927.3,2927.3,15.482,15.244,0.0,3.962,3.816,0.0,0.0,0.766,10.546,-11.029,0.0,0.0,6.731,0.0,-0.434,1.848,0.0,0.782,0.0,2.013,-6.322,-1.406,0.0,-0.128,-0.69,0.0,0.0,0.01,-0.475,12.939,0.0,0.0,-3.039,0.0,-0.429,-0.394,-2.616,-0.18,0.0,1.344,6.262,1.241,1354.8,997.6,11399.5,2808.9,0.0,36000.0,24000.0,0.0,6.8,91.76,23874.0,6877.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15434.0,1723.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-walkout-basement.xml,64.337,64.337,36.456,36.456,27.88,0.0,0.0,0.0,0.0,0.0,0.0,0.46,0.0,0.0,4.644,0.911,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,0.0,27.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.11,0.0,15.355,9.233,0.615,0.0,0.0,0.0,0.0,2148.5,3597.9,3597.9,26.756,20.659,0.0,3.536,3.698,0.521,7.384,0.648,10.878,-12.928,0.0,0.0,0.0,10.191,-0.062,6.628,0.0,0.729,0.0,5.961,-8.927,-2.504,0.0,-0.111,-0.524,-0.061,1.459,-0.034,-1.566,12.043,0.0,0.0,0.0,-3.716,-0.057,-1.537,-3.4,-0.161,0.0,3.356,7.852,2.006,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19161.0,5335.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.952,34.952,34.952,34.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.424,1.045,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.956,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3596.9,3596.9,0.0,16.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.023,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.021,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.759,45.759,45.759,45.759,0.0,0.0,0.0,0.0,0.0,0.0,9.472,0.974,0.263,0.015,3.519,1.076,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,0.0,21.368,0.279,13.341,9.233,0.614,0.0,0.0,0.0,0.0,6969.5,3292.3,6969.5,24.206,16.402,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.362,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,41.897,41.897,41.897,41.897,0.0,0.0,0.0,0.0,0.0,0.0,9.497,1.684,0.273,0.027,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,0.0,21.987,0.3,0.0,9.233,0.588,0.0,0.0,0.0,0.0,7242.9,1637.3,7242.9,25.256,0.0,0.0,3.507,3.648,0.513,7.514,0.632,10.115,-12.683,0.0,0.0,0.0,8.15,-0.069,4.81,0.0,0.73,0.0,6.162,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.713,45.713,45.713,45.713,0.0,0.0,0.0,0.0,0.0,0.0,9.024,0.882,0.831,0.048,3.438,1.05,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,0.0,21.647,0.878,13.013,9.233,0.613,0.0,0.0,144.0,0.0,10080.5,3275.8,10080.5,37.464,16.263,0.0,3.616,3.675,0.516,7.775,0.624,10.04,-12.798,0.0,0.0,0.0,9.087,0.059,4.748,0.0,0.762,0.0,4.542,-8.886,-2.51,0.0,0.005,-0.452,-0.051,2.749,-0.035,-1.506,11.615,0.0,0.0,0.0,-6.397,0.05,-1.191,-3.331,-0.163,0.0,2.031,7.891,2.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.817,45.817,45.817,45.817,0.0,0.0,0.0,0.0,0.0,0.0,9.545,0.974,0.263,0.015,3.504,1.076,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,0.0,21.368,0.279,13.341,9.233,0.614,0.0,0.0,0.0,0.0,6969.5,3285.1,6969.5,24.206,16.402,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.362,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,45.759,45.759,45.759,45.759,0.0,0.0,0.0,0.0,0.0,0.0,9.472,0.974,0.263,0.015,3.519,1.076,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,0.0,21.368,0.279,13.341,9.233,0.614,0.0,0.0,0.0,0.0,6969.5,3292.3,6969.5,24.206,16.402,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.362,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.609,41.609,41.609,41.609,0.0,0.0,0.0,0.0,0.0,0.0,7.343,0.575,0.26,0.011,2.342,0.638,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,0.0,22.418,0.272,13.578,9.233,0.614,0.0,0.0,0.0,0.0,6942.9,2815.8,6942.9,24.198,17.378,0.0,3.493,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.317,-0.065,4.807,0.0,0.729,0.0,6.445,-8.906,-2.499,0.0,-0.018,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.311,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.561,53.561,38.753,38.753,14.808,0.0,0.0,0.0,0.0,0.0,4.677,0.498,0.0,0.055,2.556,0.527,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.076,11.082,16.12,9.233,0.614,0.0,0.0,2.0,58.0,3436.4,2870.4,3436.4,23.339,16.603,0.0,3.266,3.605,0.508,7.53,0.616,9.94,-12.591,0.0,0.0,0.0,8.253,-0.031,5.819,0.0,0.721,0.0,11.327,-8.79,-2.477,0.0,-0.187,-0.494,-0.056,2.719,-0.038,-1.537,11.822,0.0,0.0,0.0,-6.373,-0.028,-1.5,-3.084,-0.171,0.0,5.19,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.892,56.892,37.571,37.571,19.321,0.0,0.0,0.0,0.0,0.0,3.593,0.349,0.0,0.073,2.586,0.531,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,27.694,14.415,16.291,9.233,0.615,0.0,0.0,204.0,58.0,3071.6,2741.0,3071.6,23.539,16.604,0.0,3.292,3.615,0.508,7.457,0.619,9.934,-12.681,0.0,0.0,0.0,8.271,-0.026,5.805,0.0,0.721,0.0,10.942,-8.844,-2.484,0.0,-0.165,-0.476,-0.054,2.677,-0.033,-1.514,11.732,0.0,0.0,0.0,-6.301,-0.022,-1.49,-3.072,-0.17,0.0,5.156,7.934,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.892,56.892,37.571,37.571,19.321,0.0,0.0,0.0,0.0,0.0,3.593,0.349,0.0,0.073,2.586,0.531,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,27.694,14.415,16.291,9.233,0.615,0.0,0.0,204.0,58.0,3071.6,2741.0,3071.6,23.539,16.604,0.0,3.292,3.615,0.508,7.457,0.619,9.934,-12.681,0.0,0.0,0.0,8.271,-0.026,5.805,0.0,0.721,0.0,10.942,-8.844,-2.484,0.0,-0.165,-0.476,-0.054,2.677,-0.033,-1.514,11.732,0.0,0.0,0.0,-6.301,-0.022,-1.49,-3.072,-0.17,0.0,5.156,7.934,2.025,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.667,53.667,38.854,38.854,14.813,0.0,0.0,0.0,0.0,0.0,4.737,0.506,0.0,0.055,2.586,0.531,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.352,11.085,16.323,9.233,0.614,0.0,0.0,2.0,58.0,3436.4,2829.0,3436.4,23.339,16.604,0.0,3.307,3.646,0.513,7.531,0.631,10.101,-12.703,0.0,0.0,0.0,8.336,-0.061,5.888,0.0,0.728,0.0,11.469,-8.917,-2.502,0.0,-0.143,-0.455,-0.051,2.713,-0.024,-1.383,11.71,0.0,0.0,0.0,-6.3,-0.057,-1.436,-3.072,-0.164,0.0,5.271,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.708,53.708,39.013,39.013,14.696,0.0,0.0,0.0,0.0,0.0,4.527,0.479,0.0,0.443,2.595,0.53,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,14.696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.567,12.199,16.439,9.233,0.614,0.0,0.0,2.0,54.0,3439.4,2828.1,3439.4,26.752,16.591,0.0,3.253,3.648,0.513,7.537,0.631,10.103,-12.695,0.0,0.0,0.0,8.331,-0.06,4.805,0.0,0.729,0.0,12.775,-8.907,-2.499,0.0,-0.152,-0.464,-0.052,2.682,-0.027,-1.415,11.718,0.0,0.0,0.0,-6.349,-0.056,-1.173,-3.118,-0.166,0.0,5.285,7.871,2.011,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,41.294,41.294,41.294,41.294,0.0,0.0,0.0,0.0,0.0,0.0,7.353,0.758,0.148,0.011,2.378,0.206,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,0.0,24.947,0.159,14.829,9.233,0.614,0.0,0.0,0.0,0.0,7043.7,2647.7,7043.7,24.551,18.191,0.0,3.395,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.323,-0.065,4.808,0.0,0.729,0.0,9.047,-8.906,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.347,-0.061,-1.17,-3.105,-0.166,0.0,3.603,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,49.611,49.611,43.08,43.08,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,3.377,0.538,15.943,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.046,0.0,9.816,16.489,0.642,0.0,0.0,0.0,0.0,2615.1,3542.6,3542.6,17.004,16.125,0.0,2.9,2.833,0.397,5.505,0.423,7.596,-12.563,0.0,0.0,0.0,5.727,-0.058,3.539,0.0,0.582,0.0,1.453,-10.182,-2.473,0.0,-0.155,-0.607,-0.072,2.26,-0.067,-1.871,11.85,0.0,0.0,0.0,-7.696,-0.059,-1.295,-5.333,-0.193,0.0,2.045,9.375,2.036,2181.0,1715.2,21571.8,3761.0,0.0,31430.0,27891.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22993.0,6411.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 -base-hvac-autosize.xml,59.195,59.195,36.214,36.214,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.506,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,0.0,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.529,0.0,14.904,9.233,0.614,0.0,0.0,0.0,2.0,2134.9,3328.6,3328.6,23.952,18.93,0.0,3.532,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.53,-8.905,-2.499,0.0,-0.076,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.107,-0.166,0.0,3.661,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,32235.0,21309.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-coal-only.xml,49.568,49.568,30.652,30.652,0.0,0.0,0.0,0.0,0.0,18.916,0.0,0.236,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,18.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.012,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2060.6,1637.3,2060.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-elec-only.xml,48.397,48.397,48.397,48.397,0.0,0.0,0.0,0.0,0.0,0.0,17.858,0.122,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,0.0,16.012,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,6052.3,1637.3,6052.3,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,55.506,55.506,36.306,36.306,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,4.502,1.219,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,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,14.543,9.233,0.614,0.0,0.0,0.0,0.0,2095.4,3607.6,3607.6,16.438,19.269,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,-0.062,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,3.294,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only-pilot.xml,54.534,54.534,30.56,30.56,23.974,0.0,0.0,0.0,0.0,0.0,0.0,0.144,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,23.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2045.2,1637.3,2045.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,49.563,49.563,30.56,30.56,19.003,0.0,0.0,0.0,0.0,0.0,0.0,0.144,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,19.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,16.012,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2045.2,1637.3,2045.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,49.568,49.568,30.652,30.652,0.0,18.916,0.0,0.0,0.0,0.0,0.0,0.236,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,18.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2060.6,1637.3,2060.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,49.562,49.562,30.539,30.539,0.0,0.0,19.023,0.0,0.0,0.0,0.0,0.122,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,19.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,16.012,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2041.7,1637.3,2041.7,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,49.562,49.562,30.539,30.539,0.0,0.0,0.0,19.023,0.0,0.0,0.0,0.122,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,19.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,16.012,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2041.7,1637.3,2041.7,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,36.054,36.054,36.054,36.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.386,1.185,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.13,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3897.1,3897.1,0.0,18.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.075,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.217,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,36.07,36.07,36.07,36.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.402,1.185,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.13,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3905.2,3905.2,0.0,18.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.075,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.217,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,34.377,34.377,34.377,34.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.173,0.72,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.517,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3401.2,3401.2,0.0,19.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.091,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.61,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,33.671,33.671,33.671,33.671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.875,0.313,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.345,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,3154.5,3154.5,0.0,19.332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.132,-0.471,-0.052,2.667,-0.032,-1.453,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.194,-3.023,-0.167,0.0,4.482,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.748,47.748,47.748,47.748,0.0,0.0,0.0,0.0,0.0,0.0,9.585,1.701,0.274,0.028,4.502,1.219,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,0.0,22.21,0.302,14.544,9.233,0.614,0.0,0.0,0.0,0.0,7314.9,3607.7,7314.9,25.256,19.27,0.0,3.502,3.645,0.513,7.531,0.631,10.104,-12.683,0.0,0.0,0.0,8.317,-0.065,4.807,0.0,0.729,0.0,6.22,-8.906,-2.499,0.0,-0.061,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.106,-0.166,0.0,3.294,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-crankcase-heater-40w.xml,58.202,58.202,35.936,35.936,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.271,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2122.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dse.xml,58.589,58.589,36.979,36.979,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.356,0.0,0.0,5.21,0.973,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,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.177,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2118.5,2655.5,2655.5,16.441,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.351,52.351,41.7,41.7,10.652,0.0,0.0,0.0,0.0,0.0,5.257,0.479,0.0,0.929,3.519,1.076,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,10.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.768,11.048,13.341,9.233,0.614,0.0,0.0,0.0,0.0,3615.3,3292.3,3615.3,24.195,16.402,0.0,3.472,3.645,0.513,7.532,0.631,10.105,-12.683,0.0,0.0,0.0,8.319,-0.065,4.808,0.0,0.729,0.0,6.812,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.109,55.109,40.702,40.702,14.406,0.0,0.0,0.0,0.0,0.0,3.945,0.335,0.0,1.389,3.519,1.076,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,14.406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.075,13.342,9.233,0.614,0.0,0.0,0.0,0.0,3462.4,3292.3,3462.4,24.193,16.402,0.0,3.435,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,7.753,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.433,52.433,37.627,37.627,14.806,0.0,0.0,0.0,0.0,0.0,2.981,0.185,0.0,1.042,2.342,0.638,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,14.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.021,15.108,13.578,9.233,0.614,0.0,0.0,0.0,0.0,2840.4,2815.8,2840.4,24.192,17.378,0.0,3.423,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.321,-0.065,4.808,0.0,0.729,0.0,8.106,-8.906,-2.499,0.0,-0.018,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.104,-0.166,0.0,2.311,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.404,52.404,37.949,37.949,14.455,0.0,0.0,0.0,0.0,0.0,2.935,0.235,0.0,1.755,2.378,0.206,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,14.455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.705,15.487,14.829,9.233,0.614,0.0,0.0,0.0,0.0,2832.4,2647.7,2832.4,24.546,18.191,0.0,3.362,3.646,0.513,7.535,0.631,10.108,-12.683,0.0,0.0,0.0,8.325,-0.065,4.808,0.0,0.729,0.0,9.832,-8.906,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.347,-0.061,-1.17,-3.105,-0.166,0.0,3.603,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.388,47.388,36.253,36.253,11.135,0.0,0.0,0.0,0.0,0.0,2.467,0.09,0.0,0.916,2.263,0.077,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,11.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,19.241,11.495,12.271,9.233,0.614,0.0,0.0,0.0,0.0,2572.3,2235.3,2572.3,19.297,13.794,0.0,3.614,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.73,0.0,3.178,-8.906,-2.499,0.0,0.029,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.102,-0.166,0.0,0.99,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-fractions.xml,92.606,92.606,46.833,46.833,45.773,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,8.1,1.711,9.004,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,0.0,45.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,42.722,0.0,29.448,9.146,0.612,0.0,0.0,5.0,77.0,2575.1,5162.1,5162.1,48.976,34.989,0.0,3.225,7.897,1.073,7.933,0.668,20.527,-25.252,0.0,0.0,0.0,9.073,-0.115,11.172,0.0,0.748,0.0,19.695,-10.961,-3.544,0.0,-0.381,-1.035,-0.1,2.663,-0.023,-2.118,23.314,0.0,0.0,0.0,-6.455,-0.103,-2.483,-6.345,-0.161,0.0,10.861,9.395,2.829,1354.8,997.6,11399.6,2460.1,0.0,48000.0,36000.0,0.0,6.8,91.76,71257.0,33166.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-multipliers.xml,57.575,57.575,35.949,35.949,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.318,0.835,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,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.257,0.0,14.12,9.233,0.614,0.0,0.0,0.0,0.0,2130.2,3363.3,3363.3,22.359,18.576,0.0,3.579,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.219,-8.905,-2.499,0.0,-0.04,-0.464,-0.052,2.684,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.105,-0.166,0.0,2.856,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18409.0,4950.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,55.924,55.924,35.701,35.701,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.135,0.794,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,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.93,0.0,13.273,9.233,0.614,0.0,0.0,0.0,0.0,2126.5,3068.4,3068.4,20.271,15.91,0.0,3.625,3.644,0.513,7.528,0.631,10.097,-12.683,0.0,0.0,0.0,8.31,-0.062,4.806,0.0,0.729,0.0,2.851,-8.903,-2.499,0.0,-0.008,-0.465,-0.052,2.684,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.171,-3.105,-0.166,0.0,1.988,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,28613.0,4973.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15788.0,2330.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-defaults.xml,54.812,54.812,40.661,40.661,14.152,0.0,0.0,0.0,0.0,0.0,4.354,0.368,0.0,0.0,5.499,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,14.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.731,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,3047.2,3318.7,3318.7,18.194,11.921,0.0,3.744,3.643,0.513,7.524,0.631,10.098,-12.683,0.0,0.0,0.0,8.304,-0.065,4.807,0.0,0.73,0.0,1.557,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.096,-0.166,0.0,-0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,41910.0,24000.0,0.0,6.8,91.76,28213.0,4573.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,58.34,58.34,36.077,36.077,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.413,0.858,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,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.848,0.0,14.453,9.233,0.614,0.0,0.0,0.0,0.0,2131.9,3421.7,3421.7,23.03,19.117,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.829,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.204,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18783.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,57.77,57.77,35.964,35.964,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.328,0.837,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,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,14.263,9.233,0.614,0.0,0.0,0.0,0.0,2130.2,3413.8,3413.8,22.446,19.037,0.0,3.567,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.807,0.0,0.73,0.0,4.423,-8.906,-2.499,0.0,-0.046,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.105,-0.166,0.0,3.061,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,34498.0,10858.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20350.0,6892.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-percent.xml,59.562,59.562,36.281,36.281,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.565,0.893,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,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.808,0.0,15.122,9.233,0.614,0.0,0.0,0.0,0.0,2134.4,3597.9,3597.9,24.254,20.652,0.0,3.52,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.315,-0.064,4.807,0.0,0.729,0.0,5.821,-8.905,-2.499,0.0,-0.086,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.108,-0.166,0.0,3.896,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32661.0,9021.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20673.0,7215.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-elec-resistance-only.xml,46.441,46.441,46.441,46.441,0.0,0.0,0.0,0.0,0.0,0.0,16.025,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,5938.8,1637.3,5938.8,16.441,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-furnace-gas.xml,54.742,54.742,31.876,31.876,22.866,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,0.0,0.0,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,0.0,22.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,21.631,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2119.2,1874.1,2119.2,24.049,11.93,0.0,3.529,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.628,-8.905,-2.499,0.0,0.037,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.096,-0.166,0.0,-0.0,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only-ducted.xml,31.389,31.389,31.389,31.389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.906,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.91,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2149.5,2149.5,0.0,15.977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.015,-0.167,0.0,0.941,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-only.xml,31.303,31.303,31.303,31.303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.82,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2011.5,2021.1,0.0,11.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,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-fireplace-wood-only.xml,51.755,51.755,30.417,30.417,0.0,0.0,0.0,21.337,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2020.8,1637.3,2020.8,16.997,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,56.726,56.726,30.417,30.417,0.0,0.0,26.309,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2020.8,1637.3,2020.8,16.997,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only.xml,51.755,51.755,30.417,30.417,0.0,0.0,21.337,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2020.8,1637.3,2020.8,16.997,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-coal-only.xml,53.637,53.637,31.004,31.004,0.0,0.0,0.0,0.0,0.0,22.632,0.0,0.588,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,22.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.049,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-central-ac-1-speed.xml,56.563,56.563,56.563,56.563,0.0,0.0,0.0,0.0,0.0,0.0,20.485,0.367,0.0,0.0,4.414,0.858,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,0.0,20.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,7922.8,3422.3,7922.8,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-only.xml,52.251,52.251,52.251,52.251,0.0,0.0,0.0,0.0,0.0,0.0,21.247,0.588,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,0.0,21.41,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,8308.2,1637.3,8308.2,24.049,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-2-speed.xml,56.994,56.994,34.727,34.727,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.221,0.699,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.861,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3127.8,3127.8,23.034,19.623,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.074,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.106,-0.166,0.0,3.616,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,56.325,56.325,34.059,34.059,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,2.928,0.324,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,15.756,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,2866.3,2866.3,23.034,19.517,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.119,-0.464,-0.052,2.686,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.348,-0.06,-1.171,-3.109,-0.166,0.0,4.559,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,38.109,38.109,30.65,30.65,7.459,0.0,0.0,0.0,0.0,0.0,0.0,0.194,0.0,0.0,0.0,0.0,9.18,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,7.05,0.0,0.0,9.233,0.631,0.0,0.0,0.0,0.0,2067.8,1633.7,2067.8,18.155,0.0,0.0,2.849,2.792,0.391,5.359,0.413,7.471,-12.563,0.0,0.0,0.0,5.445,-0.06,3.485,0.0,0.573,0.0,1.812,-8.806,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-pilot.xml,58.546,58.546,31.004,31.004,27.541,0.0,0.0,0.0,0.0,0.0,0.0,0.588,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,27.541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.049,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only.xml,53.637,53.637,31.004,31.004,22.632,0.0,0.0,0.0,0.0,0.0,0.0,0.588,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,22.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,21.41,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.049,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-room-ac.xml,59.4,59.4,36.534,36.534,22.866,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,0.0,5.5,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,22.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,21.631,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2119.2,3318.8,3318.8,24.049,11.922,0.0,3.529,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.628,-8.905,-2.499,0.0,0.037,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.096,-0.166,0.0,-0.0,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-oil-only.xml,53.637,53.637,31.004,31.004,0.0,22.632,0.0,0.0,0.0,0.0,0.0,0.588,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,22.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,21.41,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.049,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-propane-only.xml,53.637,53.637,31.004,31.004,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.588,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,22.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,21.41,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.049,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-wood-only.xml,53.637,53.637,31.004,31.004,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.588,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,22.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,21.41,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2118.5,1637.3,2118.5,24.049,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-x3-dse.xml,58.586,58.586,37.008,37.008,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.21,0.973,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,21.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,16.339,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2122.4,2655.5,2655.5,16.605,11.921,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop.xml,39.102,39.102,39.102,39.102,0.0,0.0,0.0,0.0,0.0,0.0,4.844,0.455,0.0,0.0,2.498,0.865,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,0.0,19.326,0.0,13.241,9.233,0.614,0.0,0.0,0.0,0.0,3192.7,2551.8,3192.7,21.063,15.833,0.0,3.61,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,3.264,-8.906,-2.499,0.0,-0.005,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,1.97,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.054,34.054,34.054,34.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.77,0.8,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2856.9,2856.9,0.0,15.858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.026,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.054,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,39.557,39.557,39.557,39.557,0.0,0.0,0.0,0.0,0.0,0.0,5.006,0.481,0.0,0.0,2.744,0.887,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,0.0,19.426,0.0,13.269,9.233,0.614,0.0,0.0,0.0,0.0,3279.2,2668.4,3279.2,21.428,15.96,0.0,3.606,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.729,0.0,3.366,-8.906,-2.499,0.0,-0.006,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,1.997,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.24,36.24,36.24,36.24,0.0,0.0,0.0,0.0,0.0,0.0,5.076,0.748,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,0.0,19.84,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,3365.5,1637.3,3365.5,22.286,0.0,0.0,3.59,3.648,0.513,7.512,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.956,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,37.188,37.188,37.188,37.188,0.0,0.0,0.0,0.0,0.0,0.0,2.756,0.259,0.0,0.0,2.816,0.921,9.159,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.854,0.0,13.865,9.233,0.609,0.0,0.0,0.0,0.0,2944.8,2680.5,2944.8,17.476,16.592,0.0,3.777,3.774,0.532,5.726,0.657,10.442,-12.583,0.0,0.0,0.0,1.936,-0.042,4.868,0.0,0.74,0.0,1.954,-8.8,-2.478,0.0,-0.092,-0.547,-0.063,0.78,-0.05,-1.683,11.83,0.0,0.0,0.0,-3.437,-0.036,-1.251,-3.28,-0.178,0.0,2.081,7.972,2.031,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.53,39.53,39.53,39.53,0.0,0.0,0.0,0.0,0.0,0.0,4.996,0.479,0.0,0.0,2.729,0.885,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,0.0,19.42,0.0,13.267,9.233,0.614,0.0,0.0,0.0,0.0,3274.3,2660.1,3274.3,21.403,15.95,0.0,3.606,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.729,0.0,3.36,-8.906,-2.499,0.0,-0.006,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,1.995,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.838,48.838,48.838,48.838,0.0,0.0,0.0,0.0,0.0,0.0,12.144,0.674,0.562,0.018,4.281,0.72,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,0.0,22.795,0.579,13.89,9.233,0.614,0.0,0.0,0.0,0.0,7067.6,3549.0,7067.6,24.719,17.543,0.0,3.48,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.83,-8.906,-2.499,0.0,-0.033,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.635,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.207,44.207,44.207,44.207,0.0,0.0,0.0,0.0,0.0,0.0,9.174,0.559,0.519,0.016,2.913,0.586,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,0.0,24.057,0.535,14.223,9.233,0.614,0.0,0.0,0.0,0.0,7050.7,3143.5,7050.7,24.714,18.875,0.0,3.43,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,8.132,-8.906,-2.499,0.0,-0.046,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.972,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.654,43.654,43.654,43.654,0.0,0.0,0.0,0.0,0.0,0.0,9.046,0.71,0.318,0.016,2.902,0.221,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,0.0,26.144,0.335,15.433,9.233,0.614,0.0,0.0,0.0,0.0,7150.0,3014.4,7150.0,25.035,18.909,0.0,3.35,3.647,0.513,7.536,0.632,10.108,-12.689,0.0,0.0,0.0,8.327,-0.064,4.808,0.0,0.729,0.0,10.28,-8.908,-2.5,0.0,-0.101,-0.463,-0.052,2.687,-0.026,-1.405,11.724,0.0,0.0,0.0,-6.343,-0.06,-1.17,-3.108,-0.166,0.0,4.23,7.87,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.316,60.316,36.877,36.877,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,5.362,0.793,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,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.371,9.233,0.614,0.0,0.0,0.0,5.0,2117.6,3525.8,3525.8,24.077,18.323,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.099,-0.464,-0.052,2.686,-0.027,-1.41,11.73,0.0,0.0,0.0,-6.35,-0.059,-1.172,-3.109,-0.166,0.0,4.146,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.76,58.76,35.32,35.32,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.934,0.665,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,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.787,9.233,0.614,0.0,0.0,0.0,3.0,2117.6,3218.9,3218.9,24.077,18.785,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.117,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.109,-0.166,0.0,4.568,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.093,58.093,34.654,34.654,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.516,0.417,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,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,16.445,9.233,0.614,0.0,0.0,0.0,8.0,2117.6,2988.0,2988.0,24.077,18.031,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.154,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.114,-0.166,0.0,5.274,7.875,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-only.xml,54.991,54.991,30.874,30.874,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.457,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,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.643,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2096.4,1637.3,2096.4,25.36,0.0,0.0,3.488,3.648,0.513,7.514,0.632,10.112,-12.683,0.0,0.0,0.0,8.148,-0.067,4.809,0.0,0.73,0.0,6.844,-8.905,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.523,41.523,41.523,41.523,0.0,0.0,0.0,0.0,0.0,0.0,6.467,0.49,0.0,0.0,3.285,0.84,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,0.0,20.415,0.0,13.815,9.233,0.614,0.0,0.0,0.0,0.0,3520.5,2848.0,3520.5,22.479,17.105,0.0,3.573,3.644,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.729,0.0,4.382,-8.906,-2.499,0.0,-0.03,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.106,-0.166,0.0,2.557,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,34.124,34.124,34.124,34.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.473,0.168,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.745,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,2967.7,2967.7,0.0,14.329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.017,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.02,-0.167,0.0,1.829,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.928,40.928,40.928,40.928,0.0,0.0,0.0,0.0,0.0,0.0,6.996,0.563,0.03,0.002,2.747,0.15,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,0.0,19.361,0.032,12.566,9.233,0.614,0.0,0.0,0.0,0.0,4486.2,2367.7,4486.2,19.462,14.238,0.0,3.609,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.73,0.0,3.301,-8.906,-2.499,0.0,0.02,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.103,-0.166,0.0,1.295,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,33.441,33.441,33.441,33.441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.878,0.079,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.397,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,2445.0,2445.0,0.0,14.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.002,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.018,-0.167,0.0,1.467,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,33.29,33.29,33.29,33.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.78,0.027,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2071.1,2260.1,2260.1,0.0,11.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.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.76,32.76,32.76,32.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.201,0.075,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.909,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2333.0,2333.0,0.0,13.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.016,-0.167,0.0,0.965,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.303,36.303,36.303,36.303,0.0,0.0,0.0,0.0,0.0,0.0,5.585,0.293,0.009,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,0.0,18.718,0.009,0.0,9.233,0.588,0.0,0.0,0.0,0.0,3854.0,1637.3,3854.0,19.299,0.0,0.0,3.629,3.647,0.513,7.511,0.632,10.112,-12.683,0.0,0.0,0.0,8.146,-0.069,4.81,0.0,0.73,0.0,2.807,-8.906,-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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,38.715,38.715,38.715,38.715,0.0,0.0,0.0,0.0,0.0,0.0,5.631,0.295,0.009,0.0,2.263,0.077,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,0.0,18.907,0.009,12.271,9.233,0.614,0.0,0.0,0.0,0.0,3854.0,2235.3,3854.0,19.299,13.794,0.0,3.625,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,2.833,-8.906,-2.499,0.0,0.029,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.102,-0.166,0.0,0.99,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.244,38.244,38.244,38.244,0.0,0.0,0.0,0.0,0.0,0.0,5.212,0.115,0.362,0.0,2.087,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,0.0,16.178,0.362,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4434.0,2211.9,4434.0,16.441,11.922,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,44.937,44.937,35.936,35.936,9.001,0.0,0.0,0.0,0.0,0.0,3.069,0.052,0.0,0.271,2.074,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,9.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,17.336,7.472,11.194,9.233,0.614,0.0,0.0,1.0,0.0,2949.6,2213.2,2949.6,17.266,12.084,0.0,3.742,3.641,0.512,7.519,0.63,10.092,-12.69,0.0,0.0,0.0,8.311,-0.063,5.886,0.0,0.729,0.0,0.111,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.435,-3.05,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,24589.0,950.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.669,44.669,35.768,35.768,8.901,0.0,0.0,0.0,0.0,0.0,2.896,0.048,0.0,0.268,2.087,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,8.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,16.569,7.389,11.294,9.233,0.614,0.0,0.0,1.0,0.0,2862.7,2211.9,2862.7,17.579,11.922,0.0,3.724,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.306,-0.065,4.807,0.0,0.73,0.0,0.41,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.933,47.933,35.678,35.678,0.0,12.255,0.0,0.0,0.0,0.0,3.066,0.069,0.0,0.0,2.074,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.0,12.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,17.225,7.353,11.194,9.233,0.614,0.0,0.0,2.0,0.0,2949.6,2213.2,2949.6,16.997,12.084,0.0,3.742,3.641,0.512,7.519,0.63,10.092,-12.69,0.0,0.0,0.0,8.311,-0.063,5.886,0.0,0.729,0.0,0.0,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.435,-3.05,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11399.5,2615.8,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.855,37.855,37.855,37.855,0.0,0.0,0.0,0.0,0.0,0.0,5.053,0.096,0.0,0.0,2.239,0.028,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,0.0,16.178,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,3544.3,2192.8,3544.3,16.441,11.921,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,37.855,37.855,37.855,37.855,0.0,0.0,0.0,0.0,0.0,0.0,5.053,0.096,0.0,0.0,2.239,0.028,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,0.0,16.178,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,3544.3,2192.8,3544.3,16.441,11.921,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,65.993,65.993,51.881,51.881,6.997,3.518,3.597,0.0,0.0,0.0,13.402,0.841,0.196,0.008,6.424,0.569,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.964,0.204,19.533,9.233,0.614,0.0,0.0,0.0,6.0,6468.0,4018.0,6468.0,37.55,22.981,0.0,3.431,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.887,0.0,0.728,0.0,14.99,-8.914,-2.501,0.0,-0.137,-0.455,-0.051,2.715,-0.024,-1.38,11.717,0.0,0.0,0.0,-6.3,-0.058,-1.436,-3.089,-0.164,0.0,8.444,7.864,2.008,1354.8,997.6,11399.5,2615.8,0.0,59200.0,36799.2,10236.0,6.8,91.76,36744.0,13104.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23818.0,10360.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-none.xml,19.74,19.74,19.74,19.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,4.61,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,0.0,0.0,4.572,0.33,0.0,0.0,0.0,0.0,1280.6,1085.3,1280.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,1354.8,997.6,8540.7,2104.5,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1252.0,0.0,452.0,800.0 -base-hvac-ptac-with-heating-electricity.xml,50.999,50.999,50.999,50.999,0.0,0.0,0.0,0.0,0.0,0.0,16.19,0.0,0.0,0.0,4.369,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,0.0,16.177,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,5938.8,2889.9,5938.8,16.441,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,55.046,55.046,34.808,34.808,20.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.369,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,20.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,16.177,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,2021.3,2889.9,2889.9,16.441,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ptac.xml,34.737,34.737,34.737,34.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.254,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3208.1,3208.1,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp-heating-capacity-17f.xml,41.94,41.94,41.94,41.94,0.0,0.0,0.0,0.0,0.0,0.0,7.228,0.0,0.047,0.0,4.225,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,0.0,16.178,0.047,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4807.5,2870.1,4807.5,16.441,11.921,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.027,-1.409,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.171,-3.096,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-pthp.xml,41.94,41.94,41.94,41.94,0.0,0.0,0.0,0.0,0.0,0.0,7.228,0.0,0.047,0.0,4.225,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,0.0,16.178,0.047,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4807.5,2870.1,4807.5,16.441,11.921,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.027,-1.409,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.171,-3.096,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-33percent.xml,32.349,32.349,32.349,32.349,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.866,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.615,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,2292.9,2292.9,0.0,3.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007,-0.156,-0.017,0.879,-0.011,-0.48,3.911,0.0,0.0,0.0,-2.283,-0.021,-0.394,-0.994,-0.055,0.0,0.0,2.642,0.672,1354.8,997.6,11399.5,2615.8,0.0,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-ceer.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,0.0,5.365,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3635.9,3635.9,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only-detailed-setpoints.xml,34.597,34.597,34.597,34.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.12,0.0,9.201,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.146,9.233,0.653,0.0,0.0,0.0,0.0,2021.1,3402.3,3402.3,0.0,10.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.145,-0.648,-0.078,2.174,-0.077,-1.993,11.85,0.0,0.0,0.0,-7.664,-0.066,-1.338,-3.396,-0.2,0.0,0.0,8.0,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-only.xml,35.838,35.838,35.838,35.838,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.355,0.0,9.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.233,0.661,0.0,0.0,0.0,0.0,2021.1,3632.0,3632.0,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-heating.xml,52.129,52.129,52.129,52.129,0.0,0.0,0.0,0.0,0.0,0.0,16.19,0.0,0.0,0.0,5.499,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,0.0,16.177,0.0,11.294,9.233,0.614,0.0,0.0,0.0,0.0,5938.8,3318.7,5938.8,16.441,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,41.94,41.94,41.94,41.94,0.0,0.0,0.0,0.0,0.0,0.0,7.228,0.0,0.047,0.0,4.225,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,0.0,16.178,0.047,11.294,9.233,0.614,0.0,0.0,0.0,0.0,4807.5,2870.1,4807.5,16.441,11.921,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.027,-1.409,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.171,-3.096,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-seasons.xml,58.13,58.13,36.028,36.028,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.375,0.848,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,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.698,0.0,14.285,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3421.9,3421.9,23.034,19.118,0.0,3.516,3.607,0.508,7.531,0.617,9.947,-12.591,0.0,0.0,0.0,8.244,-0.034,4.753,0.0,0.723,0.0,4.802,-8.79,-2.477,0.0,-0.098,-0.501,-0.057,2.688,-0.04,-1.559,11.822,0.0,0.0,0.0,-6.415,-0.03,-1.222,-3.122,-0.173,0.0,3.171,7.988,2.033,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,57.163,57.163,35.466,35.466,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.913,0.755,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,0.0,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.946,0.0,12.447,9.233,0.615,0.0,0.0,101.0,55.0,2152.1,3586.3,3586.3,34.947,20.39,0.0,3.517,3.579,0.503,7.523,0.608,9.828,-12.674,0.0,0.0,0.0,8.679,0.006,4.652,0.0,0.727,0.0,4.499,-8.859,-2.496,0.0,-0.073,-0.502,-0.058,2.615,-0.042,-1.591,11.74,0.0,0.0,0.0,-6.668,-0.004,-1.223,-3.407,-0.174,0.0,2.49,7.92,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,56.534,56.534,35.618,35.618,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.048,0.783,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,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.498,0.0,13.071,9.233,0.616,0.0,0.0,0.0,14.0,2137.2,3597.9,3597.9,25.332,20.814,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.197,-0.023,4.639,0.0,0.724,0.0,4.386,-8.884,-2.501,0.0,-0.057,-0.497,-0.057,2.571,-0.04,-1.578,11.697,0.0,0.0,0.0,-6.644,-0.024,-1.204,-3.355,-0.177,0.0,2.635,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,41.524,41.524,34.236,34.236,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.107,0.54,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.0,9.174,9.233,0.645,0.0,0.0,0.0,0.0,2102.1,3212.6,3212.6,17.397,16.358,0.0,2.853,2.787,0.39,5.357,0.411,7.457,-12.563,0.0,0.0,0.0,5.504,-0.06,3.479,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.125,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.261,-5.126,-0.188,0.0,2.129,8.003,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-space-heater-gas-only.xml,46.44,46.44,30.416,30.416,16.024,0.0,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,0.0,16.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,2021.3,1637.3,2021.3,16.441,0.0,0.0,3.745,3.645,0.513,7.507,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.808,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-oil-only.xml,51.738,51.738,30.482,30.482,0.0,21.257,0.0,0.0,0.0,0.0,0.0,0.064,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,21.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,17.056,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2023.9,1637.3,2023.9,16.997,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-stove-wood-pellets-only.xml,51.738,51.738,30.482,30.482,0.0,0.0,0.0,0.0,21.257,0.0,0.0,0.064,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,21.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,17.056,0.0,0.0,9.233,0.589,0.0,0.0,0.0,0.0,2023.9,1637.3,2023.9,16.997,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,55.746,55.746,35.573,35.573,20.173,0.0,0.0,0.0,0.0,0.0,0.0,0.317,0.0,0.0,4.04,0.775,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,20.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,0.0,0.0,0.0,0.0,0.0,18.874,0.0,13.019,9.233,0.614,0.0,0.0,0.0,0.0,2123.7,3051.0,3051.0,20.401,15.91,0.0,3.624,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.311,-0.064,4.807,0.0,0.73,0.0,2.807,-8.905,-2.499,0.0,0.006,-0.465,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.102,-0.166,0.0,1.76,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,28898.0,19717.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17384.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized.xml,48.397,48.397,33.149,33.149,15.248,0.0,0.0,0.0,0.0,0.0,0.0,0.246,0.0,0.0,2.091,0.358,9.177,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,6.336,9.233,0.629,0.0,0.0,3652.0,2624.0,2089.4,1834.1,2089.4,3.839,2.674,0.0,2.699,2.924,0.409,5.375,0.449,7.904,-12.797,0.0,0.0,0.0,4.76,-0.121,3.617,0.0,0.6,0.0,9.541,-9.006,-2.517,0.0,-0.382,-0.821,-0.104,1.556,-0.119,-2.517,11.616,0.0,0.0,0.0,-8.136,-0.065,-1.431,-5.137,-0.237,0.0,2.648,7.787,1.992,1354.8,997.6,11399.6,2615.9,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17384.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-wall-furnace-elec-only.xml,46.767,46.767,46.767,46.767,0.0,0.0,0.0,0.0,0.0,0.0,16.351,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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.233,0.588,0.0,0.0,0.0,0.0,6033.1,1637.3,6033.1,16.441,0.0,0.0,3.745,3.645,0.513,7.507,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.808,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-ceiling-fans.xml,58.711,58.711,36.466,36.466,22.245,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.306,0.831,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,0.0,22.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,20.832,0.0,14.07,9.233,0.612,0.0,0.0,0.0,0.0,2131.9,3748.6,3748.6,23.034,18.911,0.0,3.557,3.645,0.513,7.528,0.631,10.101,-12.683,0.0,0.0,0.0,8.298,-0.064,4.807,0.0,0.729,0.0,4.828,-8.905,-2.499,0.0,-0.096,-0.512,-0.059,2.557,-0.038,-1.551,11.73,0.0,0.0,0.0,-6.547,-0.06,-1.206,-3.271,-0.174,0.0,3.088,8.396,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-holiday.xml,58.544,58.544,36.277,36.277,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2397.2,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-kwh-per-year.xml,60.06,60.06,39.685,39.685,20.375,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.649,0.916,9.162,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.08,0.0,15.473,9.233,0.612,0.0,0.0,0.0,0.0,2415.9,3928.0,3928.0,22.766,19.626,0.0,3.59,3.667,0.516,7.602,0.636,10.162,-12.654,0.0,0.0,0.0,8.406,-0.069,4.817,0.0,0.731,0.0,4.463,-8.891,-4.249,0.0,-0.097,-0.498,-0.057,2.592,-0.035,-1.503,11.743,0.0,0.0,0.0,-6.501,-0.065,-1.196,-3.239,-0.17,0.0,3.373,7.886,3.428,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-mixed.xml,58.522,58.522,36.256,36.256,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.163,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2140.7,3428.0,3428.0,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none-ceiling-fans.xml,56.286,56.286,31.268,31.268,25.018,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,3.983,0.752,9.163,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.0,12.694,9.233,0.614,0.0,0.0,0.0,0.0,1751.9,3225.3,3225.3,23.41,18.18,0.0,3.512,3.616,0.509,7.437,0.625,10.031,-12.718,0.0,0.0,0.0,8.185,-0.059,4.798,0.0,0.728,0.0,5.362,-8.928,0.0,0.0,-0.037,-0.463,-0.052,2.696,-0.025,-1.404,11.719,0.0,0.0,0.0,-6.311,-0.055,-1.167,-3.071,-0.168,0.0,2.857,8.374,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none.xml,55.917,55.917,30.878,30.878,25.039,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,4.089,0.778,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,0.0,25.039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.45,0.0,13.071,9.233,0.615,0.0,0.0,0.0,0.0,1751.9,3516.2,3516.2,23.41,18.394,0.0,3.512,3.615,0.509,7.439,0.625,10.03,-12.718,0.0,0.0,0.0,8.2,-0.059,4.798,0.0,0.728,0.0,5.366,-8.928,0.0,0.0,0.002,-0.415,-0.045,2.824,-0.014,-1.261,11.719,0.0,0.0,0.0,-6.115,-0.055,-1.132,-2.911,-0.16,0.0,2.973,7.851,0.0,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-location-AMY-2012.xml,67.13,67.13,34.953,34.953,32.177,0.0,0.0,0.0,0.0,0.0,0.0,0.523,0.0,0.0,3.0,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,0.0,32.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,30.128,0.0,8.862,9.674,0.619,0.0,0.0,0.0,0.0,2146.6,2889.6,2889.6,23.491,15.959,0.0,4.266,4.384,0.623,9.837,0.807,12.591,-13.801,0.0,0.0,0.0,10.991,-0.092,5.205,0.0,0.773,0.0,7.113,-10.172,-2.863,0.0,-0.007,-0.342,-0.042,1.616,-0.044,-1.659,9.941,0.0,0.0,0.0,-7.422,-0.082,-0.883,-2.44,-0.097,0.0,2.153,6.66,1.661,1358.5,1000.6,11587.5,2659.0,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18522.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 -base-location-baltimore-md.xml,39.279,39.279,30.07,30.07,9.208,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,5.174,1.068,8.66,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,9.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,0.0,0.0,8.506,0.0,17.289,8.551,0.66,0.0,0.0,0.0,0.0,1686.0,2554.9,2554.9,13.608,14.218,0.0,3.492,3.345,0.0,0.0,0.722,9.055,-8.541,0.0,0.0,3.31,0.0,-0.336,2.06,0.0,0.803,0.0,1.498,-5.842,-1.3,0.0,-0.135,-0.628,0.0,0.0,-0.007,0.03,12.018,0.0,0.0,-0.954,0.0,-0.329,-0.438,-1.537,-0.211,0.0,1.593,6.742,1.348,1354.8,997.6,11035.9,2719.3,0.0,24000.0,24000.0,0.0,17.24,91.22,18296.0,4491.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,15129.0,1173.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1875.0,594.0,480.0,800.0 -base-location-capetown-zaf.xml,28.302,28.302,28.142,28.142,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,4.338,1.043,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.0,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,16.618,7.422,0.693,0.0,0.0,0.0,0.0,1871.1,2278.8,2302.0,4.202,12.626,0.0,1.596,1.352,0.0,0.0,0.569,4.539,-5.631,0.0,0.0,2.602,0.0,-1.072,0.757,0.0,0.326,0.0,0.023,-4.303,-0.792,0.0,-0.907,-1.638,0.0,0.0,-0.468,-0.619,17.811,0.0,0.0,-4.251,0.0,-1.071,-0.601,-2.04,-0.407,0.0,1.031,8.28,1.855,1354.8,997.6,10580.5,2607.1,0.0,24000.0,24000.0,0.0,41.0,84.38,13253.0,5426.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13721.0,2064.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,846.0,27.0,19.0,800.0 -base-location-dallas-tx.xml,34.583,34.583,32.861,32.861,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.988,1.92,6.814,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,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.589,0.0,31.099,6.675,0.573,0.0,0.0,0.0,0.0,1847.9,2862.1,2862.1,9.691,15.097,0.0,1.711,1.591,0.0,0.0,0.368,4.651,-4.907,0.0,0.0,0.0,1.212,-0.34,0.998,0.0,0.383,0.0,0.043,-3.597,-0.743,0.0,0.508,-0.048,0.0,0.0,0.188,2.608,17.264,0.0,0.0,0.0,1.812,-0.335,-0.366,-1.955,-0.099,0.0,0.35,9.56,1.904,1354.8,997.6,9989.1,2461.3,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-location-duluth-mn.xml,70.749,70.749,29.938,29.938,40.81,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,2.39,0.361,11.623,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,40.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.978,0.0,5.779,11.597,0.832,0.0,0.0,0.0,0.0,1758.5,2473.2,2473.2,26.428,11.644,0.0,7.032,7.03,0.0,0.0,1.592,19.667,-13.103,0.0,0.0,9.943,0.0,-0.366,6.402,0.0,0.0,0.0,7.538,-6.247,-1.915,0.0,-0.474,-0.829,0.0,0.0,-0.101,-0.954,8.135,0.0,0.0,-1.619,0.0,-0.366,-0.533,-1.023,0.0,0.0,0.367,2.618,0.732,1354.8,997.6,12167.9,2889.4,0.0,36000.0,24000.0,0.0,-13.72,81.14,31136.0,6137.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11767.0,274.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1210.0,246.0,164.0,800.0 -base-location-helena-mt.xml,77.942,77.942,35.478,35.478,42.465,0.0,0.0,0.0,0.0,0.0,0.0,1.04,0.0,0.0,2.442,0.387,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,0.0,42.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.108,0.0,6.492,10.479,0.625,0.0,0.0,0.0,0.0,2238.1,2943.0,2943.0,30.328,14.97,0.0,5.359,5.464,0.773,11.523,1.049,15.462,-15.392,0.0,0.0,0.0,13.841,-0.19,7.82,0.0,1.206,0.0,8.245,-12.135,-3.367,0.0,0.002,-0.26,-0.028,1.289,0.008,-0.496,8.386,0.0,0.0,0.0,-6.087,-0.184,-0.686,-2.363,-0.123,0.0,1.356,4.654,1.142,1354.8,997.6,11851.9,2719.7,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17992.0,5113.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,81.0,0.0,-719.0,800.0 -base-location-honolulu-hi.xml,35.996,35.996,35.996,35.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.054,2.996,4.816,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,0.0,48.75,4.572,0.55,0.0,0.0,0.0,0.0,2121.9,2146.3,2334.8,0.0,13.008,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.238,0.753,0.0,0.0,0.303,5.283,20.458,0.0,0.0,0.0,6.02,-0.004,-0.044,-1.672,0.062,0.0,0.706,13.134,2.647,1354.8,997.6,8540.5,2104.4,0.0,12000.0,24000.0,0.0,63.32,89.06,3432.0,606.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,12993.0,-9.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1831.0,580.0,452.0,800.0 -base-location-miami-fl.xml,35.155,35.155,35.155,35.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.285,2.792,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,0.0,0.0,45.284,4.712,0.551,0.0,0.0,0.0,0.0,2098.6,2413.6,2413.6,0.0,13.449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.018,0.586,0.0,0.0,0.307,4.475,19.646,0.0,0.0,0.0,5.54,-0.004,-0.213,-2.328,-0.004,0.0,0.653,13.135,2.647,1354.8,997.6,8625.1,2125.3,0.0,12000.0,24000.0,0.0,51.62,90.68,8634.0,810.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,646.0,13278.0,-259.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2519.0,954.0,765.0,800.0 -base-location-phoenix-az.xml,38.855,38.855,38.855,38.855,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.529,3.014,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.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,0.0,53.038,4.955,0.556,0.0,0.0,0.0,0.0,2458.0,3486.4,3486.4,0.564,18.402,0.0,0.703,0.517,0.0,0.0,0.205,2.241,-1.843,0.0,0.0,0.0,-0.075,-0.467,0.365,0.0,0.122,0.0,-0.0,-1.611,-0.274,0.0,1.761,1.4,0.0,0.0,0.802,6.859,24.223,0.0,0.0,0.0,7.006,-0.479,0.01,-3.136,0.116,0.0,0.92,11.529,2.373,1354.8,997.6,8429.2,2077.0,0.0,24000.0,24000.0,0.0,41.36,108.14,13297.0,1076.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1035.0,18550.0,658.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 -base-location-portland-or.xml,37.297,37.297,27.76,27.76,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,2.946,0.564,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,0.0,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,9.043,8.879,0.78,0.0,0.0,0.0,0.0,1686.4,2900.1,2900.1,8.448,14.135,0.0,3.436,3.276,0.0,0.0,0.748,8.757,-8.143,0.0,0.0,6.216,0.0,-0.442,1.469,0.0,0.81,0.0,1.633,-7.49,-1.648,0.0,-0.327,-0.797,0.0,0.0,-0.01,-0.756,10.358,0.0,0.0,-2.964,0.0,-0.439,-0.366,-1.84,-0.257,0.0,0.567,5.094,0.999,1354.8,997.6,11239.5,2769.4,0.0,24000.0,24000.0,0.0,28.58,87.08,17543.0,6253.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,15209.0,2155.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 -base-mechvent-balanced.xml,79.7,79.7,37.912,37.912,41.788,0.0,0.0,0.0,0.0,0.0,0.0,0.689,0.0,0.0,4.192,0.791,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,0.0,41.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.138,0.0,13.265,9.233,0.62,0.0,0.0,0.0,2.0,2238.9,3658.1,3658.1,32.385,20.91,0.0,3.502,3.716,0.523,7.451,0.654,10.375,-12.838,0.0,0.0,0.0,8.166,-0.114,5.497,0.0,15.075,0.0,8.573,-9.173,-2.568,0.0,0.144,-0.259,-0.023,3.003,0.031,-0.717,11.576,0.0,0.0,0.0,-5.946,-0.11,-1.02,-2.551,-3.554,0.0,3.224,7.611,1.941,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5342.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-bath-kitchen-fans.xml,60.123,60.123,36.171,36.171,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.376,0.847,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,0.0,23.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,22.43,0.0,14.266,9.233,0.614,0.0,0.0,0.0,0.0,2165.4,3616.0,3616.0,24.906,20.551,0.0,3.547,3.643,0.513,7.527,0.631,10.093,-12.692,0.0,0.0,0.0,8.326,-0.059,4.321,0.0,2.474,0.0,5.168,-8.912,-2.501,0.0,-0.042,-0.451,-0.05,2.727,-0.023,-1.37,11.721,0.0,0.0,0.0,-6.275,-0.056,-1.046,-3.038,-0.687,0.0,3.188,7.867,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,73.049,73.049,37.818,37.818,35.231,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,0.0,4.282,0.816,9.167,0.0,0.0,4.51,0.0,0.334,1.695,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.997,0.0,13.701,9.233,0.618,0.0,0.0,0.0,0.0,2170.0,3598.0,3598.0,29.391,20.852,0.0,3.484,3.659,0.515,7.505,0.637,10.165,-12.749,0.0,0.0,0.0,8.338,-0.07,1.505,0.0,13.86,0.0,7.362,-9.0,-2.522,0.0,0.036,-0.367,-0.038,2.917,0.001,-1.081,11.664,0.0,0.0,0.0,-5.978,-0.066,-0.256,-2.751,-3.283,0.0,3.25,7.782,1.988,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-dse.xml,73.164,73.164,38.774,38.774,34.39,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,5.004,0.911,9.167,0.0,0.0,4.51,0.0,0.334,1.848,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.747,0.0,10.529,9.233,0.618,0.0,0.0,0.0,0.0,2168.2,2842.4,2842.4,21.244,13.449,0.0,3.757,3.654,0.514,7.497,0.636,10.158,-12.737,0.0,0.0,0.0,8.324,-0.073,1.505,0.0,13.737,0.0,0.0,-8.997,-2.521,0.0,0.127,-0.369,-0.038,2.916,0.001,-1.083,11.676,0.0,0.0,0.0,-5.982,-0.069,-0.256,-2.741,-3.253,0.0,0.0,7.785,1.989,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-evap-cooler-only-ducted.xml,34.169,34.169,34.169,34.169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.914,9.231,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,0.0,0.0,11.391,9.233,0.687,0.0,0.0,0.0,0.0,2121.2,2220.9,2220.9,0.0,18.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.146,-0.36,-0.036,2.984,-0.004,-1.109,11.85,0.0,0.0,0.0,-6.577,-0.059,-0.257,-2.577,-3.1,0.0,0.643,8.012,2.036,1354.8,997.6,11399.5,2615.8,0.0,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,70.269,70.269,36.472,36.472,33.797,0.0,0.0,0.0,0.0,0.0,0.0,0.558,0.0,0.0,4.194,0.795,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,0.0,33.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,31.654,0.0,13.35,9.233,0.619,0.0,0.0,0.0,0.0,2139.0,3727.6,3727.6,29.392,20.838,0.0,3.517,3.68,0.518,7.479,0.643,10.242,-12.776,0.0,0.0,0.0,8.264,-0.086,1.917,0.0,12.478,0.0,7.088,-9.068,-2.54,0.0,0.091,-0.314,-0.031,2.98,0.015,-0.906,11.637,0.0,0.0,0.0,-5.925,-0.082,-0.256,-2.616,-4.008,0.0,3.173,7.714,1.97,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-supply.xml,72.39,72.39,36.498,36.498,35.891,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.2,0.796,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,0.0,35.891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.616,0.0,13.348,9.233,0.618,0.0,0.0,0.0,0.0,2140.2,3598.1,3598.1,29.391,20.842,0.0,3.49,3.667,0.516,7.492,0.64,10.201,-12.763,0.0,0.0,0.0,8.307,-0.079,1.508,0.0,14.421,0.0,7.476,-9.032,-2.53,0.0,0.066,-0.339,-0.034,2.957,0.009,-0.986,11.65,0.0,0.0,0.0,-5.933,-0.075,-0.247,-2.659,-3.886,0.0,3.198,7.75,1.98,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis.xml,74.26,74.26,37.75,37.75,36.51,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.229,0.802,9.168,0.0,0.0,4.51,0.0,0.334,1.672,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.195,0.0,13.452,9.233,0.618,0.0,0.0,0.0,0.0,2170.0,3598.0,3598.0,29.39,20.835,0.0,3.49,3.703,0.521,7.473,0.651,10.331,-12.78,0.0,0.0,0.0,8.223,-0.114,1.519,0.0,14.05,0.0,8.491,-9.096,-2.548,0.0,0.142,-0.305,-0.029,2.935,0.02,-0.861,11.633,0.0,0.0,0.0,-6.011,-0.11,-0.235,-2.663,-3.054,0.0,2.492,7.686,1.962,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv-atre-asre.xml,65.165,65.165,37.942,37.942,27.222,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.407,0.852,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,0.0,27.222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.494,0.0,14.334,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3944.9,3944.9,25.351,20.26,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.906,0.0,5.81,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.057,-1.258,-2.954,-0.853,0.0,3.261,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv.xml,65.168,65.168,37.942,37.942,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.407,0.852,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,0.0,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.497,0.0,14.334,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3944.9,3944.9,25.352,20.261,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.909,0.0,5.811,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.258,-2.954,-0.854,0.0,3.261,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19144.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust-rated-flow-rate.xml,73.934,73.934,36.908,36.908,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.168,0.787,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,0.0,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.678,0.0,13.2,9.233,0.619,0.0,0.0,0.0,0.0,2172.5,3654.8,3654.8,29.442,20.863,0.0,3.5,3.682,0.518,7.48,0.643,10.243,-12.791,0.0,0.0,0.0,8.263,-0.082,1.462,0.0,15.396,0.0,7.675,-9.072,-2.541,0.0,0.094,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.923,-0.078,-0.232,-2.607,-4.199,0.0,3.184,7.711,1.968,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust.xml,73.934,73.934,36.908,36.908,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.168,0.787,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,0.0,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.678,0.0,13.2,9.233,0.619,0.0,0.0,0.0,0.0,2172.5,3654.8,3654.8,29.442,20.863,0.0,3.5,3.682,0.518,7.48,0.643,10.243,-12.791,0.0,0.0,0.0,8.263,-0.082,1.462,0.0,15.396,0.0,7.675,-9.072,-2.541,0.0,0.094,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.923,-0.078,-0.232,-2.607,-4.199,0.0,3.184,7.711,1.968,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv-asre.xml,65.165,65.165,37.946,37.946,27.22,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.409,0.853,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,0.0,27.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,25.492,0.0,14.336,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3946.1,3946.1,25.35,20.261,0.0,3.52,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.904,0.0,5.81,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.057,-1.258,-2.954,-0.852,0.0,3.263,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv.xml,65.168,65.168,37.946,37.946,27.223,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.409,0.853,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,0.0,27.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.495,0.0,14.336,9.233,0.615,0.0,0.0,0.0,0.0,2205.4,3946.1,3946.1,25.351,20.262,0.0,3.52,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.906,0.0,5.81,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.258,-2.954,-0.853,0.0,3.263,7.851,2.005,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19144.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-multiple.xml,80.868,80.868,38.381,38.381,42.487,0.0,0.0,0.0,0.0,0.0,0.0,0.698,0.0,0.0,4.557,0.697,9.171,0.0,0.0,4.51,0.0,0.334,1.575,0.0,0.0,0.405,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.794,0.0,11.684,9.233,0.622,0.0,0.0,0.0,22.0,2289.0,3646.3,3646.3,35.904,22.624,0.0,3.183,3.709,0.522,7.491,0.652,10.33,-12.791,0.0,0.0,0.0,8.289,-0.106,3.845,0.0,9.548,0.0,16.428,-9.091,-2.547,0.0,0.052,-0.213,-0.016,3.196,0.041,-0.606,11.623,0.0,0.0,0.0,-5.618,-0.101,-0.613,0.0,-2.152,-8.169,4.731,7.695,1.963,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24528.0,10278.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-supply.xml,72.517,72.517,36.979,36.979,35.538,0.0,0.0,0.0,0.0,0.0,0.0,0.586,0.0,0.0,4.245,0.807,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,0.0,35.538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.284,0.0,13.531,9.233,0.618,0.0,0.0,0.0,0.0,2169.5,3628.1,3628.1,29.257,20.864,0.0,3.493,3.667,0.516,7.492,0.64,10.201,-12.763,0.0,0.0,0.0,8.307,-0.08,1.508,0.0,14.154,0.0,7.409,-9.032,-2.53,0.0,0.063,-0.34,-0.034,2.955,0.009,-0.988,11.65,0.0,0.0,0.0,-5.936,-0.076,-0.247,-2.665,-3.722,0.0,3.233,7.75,1.98,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-whole-house-fan.xml,56.863,56.863,34.417,34.417,22.447,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,2.535,0.4,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.664,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.447,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.021,0.0,6.56,9.233,0.622,0.0,0.0,0.0,0.0,2132.2,3105.2,3105.2,23.034,16.245,0.0,3.554,3.643,0.513,7.547,0.63,10.093,-12.683,0.0,0.0,0.0,8.434,-0.057,4.805,0.0,0.729,0.0,4.871,-8.905,-2.499,0.0,0.088,-0.266,-0.023,3.27,0.022,-0.818,11.73,0.0,0.0,0.0,-5.409,-0.053,-0.992,0.0,-0.135,-11.71,1.806,7.881,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-additional-properties.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-none.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-detailed-only.xml,58.344,31.458,36.078,9.192,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-mixed.xml,58.344,31.458,36.078,9.192,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv.xml,58.344,1.081,36.078,-21.185,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,63.388,43.938,31.595,12.145,31.793,0.0,0.0,0.0,0.0,0.0,0.0,0.524,0.0,0.0,2.267,0.338,2.184,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.081,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.45,0.0,0.506,31.793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.759,0.0,5.463,10.64,0.693,0.0,9.152,0.0,0.0,2402.4,2950.2,2950.2,26.046,15.216,0.0,3.491,3.687,0.518,7.47,1.119,10.315,-12.806,0.0,0.0,0.0,8.267,-0.095,1.531,0.0,15.069,0.0,2.756,-9.283,-2.557,0.0,0.69,-0.095,0.001,3.444,-0.195,-0.322,11.607,0.0,0.0,0.0,-5.223,-0.091,-0.199,0.0,-3.419,-10.854,0.449,8.626,1.952,1610.4,1574.2,10560.0,3721.5,2.87,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-emissions.xml,59.161,32.275,36.895,10.008,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.817,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2199.2,3498.2,3498.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,13.017,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery-scheduled.xml,77.079,68.89,37.813,29.624,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,1.735,22.266,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,20.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3536.9,3536.9,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,1.697,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery.xml,75.344,67.155,36.078,27.889,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.0,22.266,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,20.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators.xml,75.344,67.155,36.078,27.889,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.0,22.266,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,20.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-ground-conductivity.xml,56.036,56.036,36.002,36.002,20.034,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,4.383,0.85,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,20.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.76,0.0,14.314,9.233,0.613,0.0,0.0,0.0,0.0,2110.2,3765.9,3765.9,22.149,19.178,0.0,3.593,3.668,0.516,7.311,0.636,10.165,-12.663,0.0,0.0,0.0,6.694,-0.064,4.813,0.0,0.731,0.0,4.399,-8.891,-2.496,0.0,-0.066,-0.474,-0.053,2.388,-0.029,-1.439,11.75,0.0,0.0,0.0,-6.137,-0.059,-1.181,-3.121,-0.168,0.0,3.192,7.886,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8588.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon.xml,146.279,146.279,68.538,68.538,69.746,0.0,2.499,5.496,0.0,0.0,0.0,0.28,0.0,0.0,5.409,1.107,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,0.0,16.981,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,15.9,0.0,18.753,9.233,0.609,0.0,0.0,0.0,0.0,3234.7,5182.2,5182.2,21.949,20.73,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.832,0.0,0.734,0.0,3.78,-13.808,-2.35,0.0,-0.201,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.271,-3.573,-0.181,0.0,3.874,13.226,2.158,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon2.xml,92.763,92.763,64.989,64.989,19.779,2.499,0.0,0.0,5.496,0.0,0.0,0.28,0.0,0.0,5.409,1.107,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,0.0,16.981,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,15.9,0.0,18.753,9.233,0.609,0.0,0.0,0.0,0.0,3187.7,4779.7,4779.7,21.949,20.73,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.832,0.0,0.734,0.0,3.78,-13.808,-2.35,0.0,-0.201,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.271,-3.573,-0.181,0.0,3.874,13.226,2.158,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-none.xml,53.082,53.082,24.834,24.834,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,3.725,0.689,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,0.0,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.457,0.0,11.563,9.233,0.617,0.0,0.0,0.0,0.0,1537.9,3128.2,3128.2,24.268,17.326,0.0,3.475,3.599,0.506,7.396,0.622,9.986,-12.73,0.0,0.0,0.0,8.165,-0.054,4.795,0.0,0.726,0.0,5.972,-3.801,-2.512,0.0,0.056,-0.368,-0.038,2.973,-0.001,-1.105,11.683,0.0,0.0,0.0,-5.88,-0.05,-1.085,-2.701,-0.152,0.0,2.706,3.706,1.998,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,26.623,26.623,25.788,25.788,0.835,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.569,0.438,9.693,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.835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.772,0.0,7.007,9.538,0.585,0.0,0.0,0.0,0.0,1642.1,1983.9,1983.9,3.336,8.14,0.0,-0.013,3.83,0.0,0.0,0.417,4.067,-3.186,0.0,0.0,-0.01,0.0,-0.312,1.311,0.0,0.761,0.0,0.0,-5.319,-0.936,0.0,-0.008,-2.783,0.0,0.0,-0.012,-0.688,5.017,0.0,0.0,-0.005,0.0,-0.303,-0.394,-1.178,-0.271,0.0,0.0,6.656,1.09,1354.8,997.6,11399.5,3156.5,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-misc-neighbor-shading.xml,63.373,63.373,35.82,35.82,27.553,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,4.134,0.79,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,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.803,0.0,13.302,9.233,0.615,0.0,0.0,0.0,0.0,2126.3,3689.4,3689.4,23.267,18.474,0.0,3.479,3.709,0.541,7.36,0.776,10.707,-8.74,0.0,0.0,0.0,7.861,-0.057,4.786,0.0,0.724,0.0,5.781,-8.918,-2.502,0.0,-0.014,-0.467,-0.054,2.778,-0.04,-1.339,10.323,0.0,0.0,0.0,-6.182,-0.052,-1.149,-2.99,-0.162,0.0,2.965,7.861,2.008,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-shielding-of-home.xml,58.007,58.007,36.22,36.22,21.787,0.0,0.0,0.0,0.0,0.0,0.0,0.359,0.0,0.0,4.533,0.888,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,21.787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.403,0.0,14.992,9.233,0.613,0.0,0.0,0.0,0.0,2131.8,3749.3,3749.3,23.015,19.034,0.0,3.562,3.647,0.513,7.535,0.631,10.101,-12.683,0.0,0.0,0.0,8.308,-0.061,4.424,0.0,0.73,0.0,4.741,-8.899,-2.498,0.0,-0.07,-0.476,-0.054,2.649,-0.03,-1.451,11.73,0.0,0.0,0.0,-6.41,-0.058,-1.066,-2.609,-0.168,0.0,3.276,7.878,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,31389.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18685.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,106.0,0.0,-694.0,800.0 -base-misc-usage-multiplier.xml,126.187,126.187,50.907,50.907,68.084,0.0,2.249,4.947,0.0,0.0,0.0,0.34,0.0,0.0,4.686,0.925,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,0.0,20.596,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.287,0.0,15.608,8.31,0.612,0.0,0.0,0.0,0.0,2765.9,4428.8,4428.8,22.734,19.742,0.0,3.581,3.659,0.515,7.576,0.633,10.138,-12.664,0.0,0.0,0.0,8.363,-0.065,4.863,0.0,0.658,0.0,4.503,-10.586,-2.246,0.0,-0.096,-0.496,-0.056,2.596,-0.035,-1.507,11.751,0.0,0.0,0.0,-6.491,-0.062,-1.211,-3.25,-0.153,0.0,3.386,9.606,1.813,1219.3,897.9,10259.6,2354.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-pv-battery-ah.xml,59.161,32.275,36.895,10.008,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.817,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2199.2,3498.2,3498.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,13.017,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-garage.xml,59.538,32.652,35.604,8.717,23.934,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.107,0.552,9.264,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.886,0.0,0.868,23.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.408,0.0,9.142,9.233,0.722,0.0,0.0,0.0,0.0,2202.1,2829.1,2829.1,18.031,11.775,0.0,3.532,3.792,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.368,0.0,0.0,0.0,3.763,-6.763,-2.508,0.0,0.104,-0.282,-0.037,2.418,-0.001,-1.134,8.269,0.0,0.0,0.0,-5.68,-0.041,-1.226,-2.106,0.0,0.0,1.34,5.683,2.002,1354.8,997.6,11399.5,2615.8,16.796,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15522.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-round-trip-efficiency.xml,60.512,33.626,38.246,11.36,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,2.168,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2306.0,3638.2,3638.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,4.296,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-scheduled.xml,60.079,33.193,37.813,10.926,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3536.9,3536.9,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,5.417,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery.xml,59.161,32.275,36.895,10.008,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.817,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2199.2,3498.2,3498.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,13.017,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery-scheduled.xml,77.079,42.003,37.813,2.737,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,1.735,22.266,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,20.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2246.0,3536.9,3536.9,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,16.79,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery.xml,76.191,41.115,36.924,1.849,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.846,22.266,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,20.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2188.3,3487.3,3487.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,83.204,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators.xml,75.344,40.269,36.078,1.003,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,-8.189,0.0,22.266,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,20.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv.xml,58.344,31.458,36.078,9.192,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,58.149,58.149,35.883,35.883,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,8.942,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.017,0.614,0.0,0.0,0.0,0.0,2130.9,3422.1,3422.1,23.033,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,57.729,57.729,35.463,35.463,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,8.531,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.017,0.614,0.0,0.0,0.0,0.0,2115.9,3407.6,3407.6,23.033,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,72.882,72.882,50.616,50.616,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,22.206,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4233.2,4233.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,68.03,68.03,45.764,45.764,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,18.6,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.109,0.614,0.0,0.0,0.0,0.0,2754.3,4049.8,4049.8,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,72.882,72.882,50.616,50.616,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,22.206,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4233.2,4233.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,52.395,52.395,30.129,30.129,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.417,0.858,2.887,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.47,9.097,0.627,0.0,6.623,0.0,0.0,2096.5,3145.8,3145.8,23.033,19.138,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.208,7.886,2.011,1354.7,997.5,10985.6,2520.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,50.957,50.957,28.7,28.7,22.257,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.429,0.862,1.455,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.843,0.0,14.522,9.207,0.694,0.0,8.339,0.0,0.0,2067.2,3149.1,3149.1,23.033,19.166,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.913,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.113,-0.166,0.0,3.217,7.945,2.011,1354.4,997.2,10196.9,2339.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-ics.xml,52.472,52.472,30.206,30.206,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.423,0.86,2.953,0.0,0.328,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.493,9.133,0.649,0.0,6.61,0.0,0.0,2124.6,3147.9,3147.9,23.034,19.155,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.108,-0.166,0.0,3.212,7.909,2.011,1354.7,997.6,10721.2,2460.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,52.569,52.569,30.034,30.034,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.381,0.85,3.156,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.104,0.0,14.314,9.075,0.215,0.0,5.899,0.0,0.0,1786.0,3421.8,3421.8,23.1,19.057,0.0,3.554,3.644,0.513,7.529,0.631,10.098,-12.69,0.0,0.0,0.0,8.316,-0.062,4.806,0.0,0.729,0.0,4.885,-8.691,-2.5,0.0,-0.052,-0.461,-0.051,2.696,-0.026,-1.399,11.724,0.0,0.0,0.0,-6.332,-0.059,-1.167,-3.087,-0.165,0.0,3.183,7.688,2.01,474.2,349.2,3910.1,897.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,50.692,50.692,28.789,28.789,21.902,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,4.533,0.887,1.426,0.0,0.305,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.511,0.0,14.97,9.186,0.682,0.0,8.337,0.0,0.0,2107.1,3183.2,3183.2,23.067,19.444,0.0,3.559,3.645,0.513,7.536,0.63,10.098,-12.669,0.0,0.0,0.0,8.31,-0.061,4.807,0.0,0.729,0.0,4.762,-9.207,-2.496,0.0,-0.069,-0.473,-0.053,2.663,-0.029,-1.44,11.744,0.0,0.0,0.0,-6.388,-0.058,-1.183,-3.161,-0.168,0.0,3.292,8.47,2.013,1354.2,997.1,10323.3,2368.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,50.673,50.673,28.416,28.416,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.428,0.861,1.482,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.844,0.0,14.519,9.2,0.69,0.0,8.299,0.0,0.0,2091.4,3117.0,3117.0,23.033,19.165,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.912,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.172,-3.112,-0.166,0.0,3.216,7.942,2.011,1354.4,997.2,10240.6,2349.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-coal.xml,64.837,64.837,27.073,27.073,22.487,0.0,0.0,0.0,0.0,15.277,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.058,0.0,14.974,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3168.3,3168.3,23.484,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-detailed-setpoints.xml,58.181,58.181,35.921,35.921,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.006,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.846,0.0,14.459,9.049,0.623,0.0,0.0,0.0,0.0,2529.3,3444.1,3444.1,23.009,19.116,0.0,3.556,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.908,-2.499,0.0,-0.058,-0.465,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.206,7.879,2.011,1354.8,997.6,11206.2,2571.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,58.224,58.224,36.01,36.01,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.42,0.859,9.088,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,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,0.0,14.483,9.075,0.691,0.0,0.0,0.0,0.0,2172.7,3489.9,3489.9,23.02,19.134,0.0,3.557,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.823,-8.947,-2.499,0.0,-0.057,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.172,-3.11,-0.166,0.0,3.21,7.908,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,66.557,66.557,26.859,26.859,39.698,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,17.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.075,5.067,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,64.507,64.507,27.035,27.035,37.472,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.504,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,0.0,22.763,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.317,0.0,14.826,9.075,2.977,0.0,0.0,0.0,0.0,1464.3,3160.3,3160.3,23.55,19.567,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.062,-0.466,-0.052,2.683,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.28,8.483,2.011,1354.8,997.6,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,64.507,64.507,27.035,27.035,37.472,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.504,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,0.0,22.763,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.317,0.0,14.826,9.075,2.977,0.0,0.0,0.0,0.0,1464.3,3160.3,3160.3,23.55,19.567,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.062,-0.466,-0.052,2.683,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.28,8.483,2.011,1354.8,997.6,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,64.837,64.837,27.073,27.073,37.764,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.487,0.0,15.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,21.058,0.0,14.974,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3168.3,3168.3,23.484,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,56.284,56.284,28.8,28.8,27.484,0.0,0.0,0.0,0.0,0.0,0.0,0.453,0.0,0.0,3.877,0.728,2.465,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.734,0.0,12.284,9.216,1.415,0.0,0.0,0.0,0.0,1856.0,3082.3,3082.3,26.694,18.889,0.0,3.506,3.633,0.511,7.505,0.628,10.08,-12.706,0.0,0.0,0.0,8.336,-0.061,4.798,0.0,0.727,0.0,5.798,-4.871,-2.509,0.0,0.018,-0.397,-0.042,2.891,-0.009,-1.184,11.708,0.0,0.0,0.0,-6.003,-0.057,-1.085,-2.728,-0.154,0.0,2.787,5.063,2.0,1354.8,997.6,9994.8,2293.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.14,56.14,28.621,28.621,27.519,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.861,0.724,2.306,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,25.759,0.0,12.223,9.132,1.307,0.0,0.0,0.0,0.0,1854.5,3438.1,3438.1,25.444,19.071,0.0,3.516,3.634,0.511,7.509,0.628,10.061,-12.724,0.0,0.0,0.0,8.352,-0.046,4.792,0.0,0.727,0.0,5.79,-4.85,-2.508,0.0,0.019,-0.401,-0.043,2.894,-0.011,-1.219,11.689,0.0,0.0,0.0,-6.009,-0.042,-1.1,-2.763,-0.152,0.0,2.79,5.061,2.001,1354.8,997.6,10745.3,2465.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,56.276,56.276,33.595,33.595,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,6.736,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.096,2.524,0.0,0.0,0.0,0.0,3051.2,3332.0,3332.0,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11023.3,2529.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,56.14,56.14,28.621,28.621,27.519,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.861,0.724,2.306,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,25.759,0.0,12.223,9.132,1.307,0.0,0.0,0.0,0.0,1854.5,3438.1,3438.1,25.444,19.071,0.0,3.516,3.634,0.511,7.509,0.628,10.061,-12.724,0.0,0.0,0.0,8.352,-0.046,4.792,0.0,0.727,0.0,5.79,-4.85,-2.508,0.0,0.019,-0.401,-0.043,2.894,-0.011,-1.219,11.689,0.0,0.0,0.0,-6.009,-0.042,-1.1,-2.763,-0.152,0.0,2.79,5.061,2.001,1354.8,997.6,10745.3,2465.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,51.968,51.968,27.939,27.939,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,4.219,0.81,1.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,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.503,0.0,13.67,9.108,0.602,0.0,5.92,0.0,0.0,1856.3,3178.6,3178.6,25.408,19.104,0.0,3.544,3.64,0.512,7.519,0.629,10.079,-12.705,0.0,0.0,0.0,8.318,-0.055,4.8,0.0,0.728,0.0,5.161,-7.514,-2.501,0.0,-0.031,-0.443,-0.049,2.749,-0.022,-1.352,11.708,0.0,0.0,0.0,-6.242,-0.051,-1.148,-2.981,-0.162,0.0,3.061,6.875,2.009,474.2,349.2,3821.6,876.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,51.489,51.489,28.549,28.549,22.94,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.563,0.895,1.11,0.0,0.327,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.481,0.0,15.104,9.022,1.965,0.0,8.042,0.0,0.0,1896.1,3197.6,3197.6,25.085,19.544,0.0,3.552,3.644,0.513,7.535,0.63,10.094,-12.669,0.0,0.0,0.0,8.316,-0.06,4.805,0.0,0.729,0.0,4.954,-8.422,-2.497,0.0,-0.067,-0.469,-0.053,2.677,-0.028,-1.428,11.744,0.0,0.0,0.0,-6.357,-0.056,-1.178,-3.154,-0.167,0.0,3.307,8.549,2.013,1354.4,997.3,11676.0,2679.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,56.383,56.383,29.782,29.782,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,3.946,0.745,3.376,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.907,0.0,12.593,9.12,1.717,0.0,0.0,0.0,0.0,1874.8,3309.5,3309.5,23.533,19.252,0.0,3.526,3.638,0.512,7.511,0.627,10.061,-12.745,0.0,0.0,0.0,8.343,-0.049,4.795,0.0,0.727,0.0,5.625,-5.52,-2.509,0.0,0.006,-0.413,-0.045,2.848,-0.015,-1.266,11.668,0.0,0.0,0.0,-6.079,-0.045,-1.116,-2.834,-0.155,0.0,2.844,5.524,2.001,1354.8,997.6,10838.8,2487.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.789,58.789,35.57,35.57,23.219,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.453,0.866,8.581,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.742,0.0,14.577,9.117,0.094,0.0,0.0,0.0,0.0,4533.0,5519.6,5519.6,30.734,19.972,0.0,3.55,3.644,0.513,7.528,0.631,10.102,-12.682,0.0,0.0,0.0,8.311,-0.062,5.264,0.0,0.777,0.0,5.011,-8.678,-2.504,0.0,-0.055,-0.461,-0.051,2.696,-0.025,-1.393,11.731,0.0,0.0,0.0,-6.334,-0.058,-1.269,-3.078,-0.186,0.0,3.233,8.042,2.006,1354.7,998.0,10791.1,2476.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,58.072,58.072,35.455,35.455,22.617,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.371,0.847,8.587,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.181,0.0,14.272,9.124,0.094,0.0,0.0,0.0,0.0,2010.8,3460.2,3460.2,23.119,19.037,0.0,3.553,3.644,0.513,7.528,0.63,10.097,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.901,-8.625,-2.5,0.0,-0.051,-0.46,-0.051,2.699,-0.025,-1.396,11.724,0.0,0.0,0.0,-6.328,-0.058,-1.166,-3.081,-0.165,0.0,3.177,7.633,2.01,1354.8,997.6,10775.1,2472.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,64.837,64.837,27.073,27.073,22.487,15.277,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,21.058,0.0,14.974,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3168.3,3168.3,23.484,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-wood.xml,64.837,64.837,27.073,27.073,22.487,0.0,0.0,15.277,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.058,0.0,14.974,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3168.3,3168.3,23.484,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,60.711,60.711,26.859,26.859,33.852,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,11.171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.056,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11343.1,2602.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,58.812,58.812,36.132,36.132,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,9.273,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3488.2,3488.2,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,58.708,58.708,36.027,36.027,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,2006.8,3483.8,3483.8,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,58.812,58.812,36.132,36.132,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,9.273,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3488.2,3488.2,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,59.201,59.201,26.859,26.859,32.342,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,9.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,21.24,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,53.458,53.458,26.859,26.859,26.599,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,3.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.076,0.0,0.0,5.899,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,474.2,349.2,3909.2,897.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,51.173,51.173,27.291,27.291,23.882,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.471,0.872,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,0.0,22.316,0.0,1.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.898,0.0,14.699,9.262,0.0,0.0,7.989,0.0,0.0,1462.4,3166.3,3166.3,23.167,19.303,0.0,3.557,3.645,0.513,7.532,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,4.807,0.0,0.73,0.0,4.843,-8.879,-2.498,0.0,-0.061,-0.467,-0.052,2.679,-0.027,-1.419,11.73,0.0,0.0,0.0,-6.36,-0.058,-1.175,-3.128,-0.166,0.0,3.249,8.131,2.011,1344.9,989.3,9809.8,2251.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,60.735,60.735,26.859,26.859,33.876,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,11.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.24,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-propane.xml,60.735,60.735,26.859,26.859,22.681,0.0,11.195,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.24,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,65.701,65.701,40.981,40.981,24.72,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,6.442,1.322,8.973,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,0.0,24.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.053,0.0,22.265,9.053,0.609,0.0,0.0,0.0,0.0,2295.2,4827.0,4827.0,30.686,28.15,0.0,3.862,7.596,1.093,5.881,0.688,20.477,-24.88,0.0,0.0,0.867,6.711,-0.179,8.99,0.0,0.763,0.0,3.298,-9.747,-2.93,0.0,-0.11,-1.064,-0.109,1.841,-0.027,-1.631,23.454,0.0,0.0,-0.141,-4.808,-0.17,-1.956,-6.137,-0.162,0.0,2.913,8.485,2.338,1354.8,997.6,11171.5,2524.9,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7647.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25899.0,4445.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,73.692,73.692,44.289,44.289,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,6.329,1.295,8.86,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,0.0,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.421,0.0,21.787,8.989,0.612,0.0,0.0,0.0,0.0,2519.0,4711.7,4711.7,33.941,28.292,0.0,3.774,7.88,1.071,7.921,0.667,20.509,-25.19,0.0,0.0,0.0,9.056,-0.136,11.167,0.0,0.747,0.0,3.872,-10.951,-3.54,0.0,-0.076,-1.046,-0.101,2.662,-0.023,-2.118,23.376,0.0,0.0,0.0,-6.456,-0.126,-2.486,-6.302,-0.162,0.0,2.839,9.405,2.832,1354.8,997.6,11171.6,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25801.0,4444.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,54.858,54.858,30.603,30.603,24.255,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.1,0.781,5.473,0.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,0.0,24.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,22.716,0.0,13.312,5.267,0.615,0.0,0.0,0.0,0.0,1683.1,3280.9,3280.9,23.625,18.493,0.0,3.533,3.635,0.511,7.498,0.63,10.083,-12.698,0.0,0.0,0.0,8.293,-0.065,4.804,0.0,0.727,0.0,5.229,-7.29,-2.504,0.0,-0.019,-0.434,-0.048,2.778,-0.018,-1.304,11.715,0.0,0.0,0.0,-6.2,-0.061,-1.138,-2.942,-0.161,0.0,3.028,6.287,2.006,939.7,637.0,6161.9,1598.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18320.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,56.559,56.559,33.302,33.302,23.257,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.254,0.819,7.283,0.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,0.0,23.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,21.78,0.0,13.878,7.212,0.614,0.0,0.0,0.0,0.0,2063.0,3350.6,3350.6,23.329,18.795,0.0,3.545,3.639,0.512,7.514,0.63,10.088,-12.691,0.0,0.0,0.0,8.302,-0.063,4.804,0.0,0.728,0.0,5.031,-8.097,-2.5,0.0,-0.038,-0.449,-0.05,2.732,-0.022,-1.359,11.723,0.0,0.0,0.0,-6.276,-0.059,-1.155,-3.024,-0.163,0.0,3.117,7.081,2.009,1147.2,817.3,8666.7,2153.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18553.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,59.815,59.815,38.528,38.528,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.351,0.0,0.0,4.577,0.898,10.712,0.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,0.0,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.934,0.0,15.047,10.898,0.613,0.0,0.0,0.0,0.0,2183.4,3571.0,3571.0,22.735,19.449,0.0,3.569,3.65,0.514,7.549,0.631,10.109,-12.676,0.0,0.0,0.0,8.327,-0.062,4.808,0.0,0.731,0.0,4.636,-9.709,-2.497,0.0,-0.075,-0.479,-0.054,2.64,-0.031,-1.46,11.737,0.0,0.0,0.0,-6.42,-0.058,-1.188,-3.188,-0.168,0.0,3.295,8.669,2.013,1562.4,1177.9,13676.3,2901.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5342.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 +base-enclosure-beds-5.xml,61.424,61.424,41.106,41.106,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.335,0.0,0.0,4.745,0.939,12.383,0.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,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,0.0,15.649,12.694,0.612,0.0,0.0,0.0,0.0,2527.7,3931.7,3931.7,22.438,19.771,0.0,3.582,3.657,0.515,7.568,0.633,10.128,-12.669,0.0,0.0,0.0,8.348,-0.064,4.813,0.0,0.733,0.0,4.441,-10.517,-2.496,0.0,-0.092,-0.493,-0.056,2.596,-0.034,-1.504,11.744,0.0,0.0,0.0,-6.484,-0.06,-1.202,-3.268,-0.17,0.0,3.385,9.461,2.013,1770.0,1358.2,16181.0,3193.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19258.0,5339.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 +base-enclosure-ceilingtypes.xml,74.293,74.293,36.44,36.44,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,0.0,4.612,0.908,9.02,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.444,0.0,15.263,9.075,0.618,0.0,0.0,0.0,0.0,2135.2,3488.0,3488.0,29.35,19.725,0.0,17.288,3.592,0.505,7.259,0.62,9.956,-12.802,0.0,0.0,0.0,7.765,-0.075,4.845,0.0,0.734,0.0,6.976,-9.065,-2.542,0.0,0.076,-0.331,-0.033,2.89,0.007,-1.002,11.611,0.0,0.0,0.0,-6.097,-0.066,-1.017,-2.911,-0.141,0.0,2.804,7.716,1.968,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30007.0,5443.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-floortypes.xml,67.095,67.095,29.33,29.33,37.765,0.0,0.0,0.0,0.0,0.0,0.0,0.623,0.0,0.0,3.689,0.672,9.216,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,37.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,35.371,0.0,11.163,9.182,0.62,0.0,0.0,0.0,2.0,1765.2,3397.0,3397.0,29.151,21.057,0.0,3.488,3.656,0.0,0.0,0.672,9.52,-13.012,0.0,0.0,29.107,0.0,-0.209,2.053,0.0,0.788,0.0,7.865,-7.472,-1.575,0.0,0.406,-0.079,0.0,0.0,0.093,0.884,10.956,0.0,0.0,-8.039,0.0,-0.204,-0.263,-1.883,-0.087,0.0,2.753,5.732,1.072,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19986.0,5356.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-enclosure-garage.xml,58.511,58.511,34.584,34.584,23.928,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.101,0.55,9.119,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,0.0,23.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,22.402,0.0,9.117,9.075,0.724,0.0,0.0,0.0,0.0,2134.3,2904.8,2904.8,18.031,11.763,0.0,3.529,3.789,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.368,0.0,0.0,0.0,3.762,-6.763,-2.508,0.0,0.098,-0.288,-0.036,2.418,-0.001,-1.133,8.269,0.0,0.0,0.0,-5.679,-0.041,-1.225,-2.105,0.0,0.0,1.325,5.683,2.002,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15522.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,65.834,65.834,35.942,35.942,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.323,0.832,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.99,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3542.6,3542.6,28.066,20.15,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,59.605,59.605,35.93,35.93,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.395,0.852,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.0,14.354,9.075,0.614,0.0,0.0,0.0,0.0,2119.6,3447.0,3447.0,23.768,19.351,0.0,3.545,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.319,-0.062,5.886,0.0,0.728,0.0,5.113,-8.911,-2.5,0.0,-0.049,-0.456,-0.051,2.715,-0.024,-1.382,11.724,0.0,0.0,0.0,-6.303,-0.058,-1.436,-3.06,-0.164,0.0,3.204,7.868,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,65.834,65.834,35.942,35.942,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.323,0.832,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.99,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3542.6,3542.6,28.066,20.15,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,65.834,65.834,35.942,35.942,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.323,0.832,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.99,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3542.6,3542.6,28.066,20.15,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,58.419,58.419,35.906,35.906,22.513,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.39,0.852,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.083,0.0,14.359,9.075,0.614,0.0,0.0,0.0,0.0,2110.9,3417.8,3417.8,23.045,19.086,0.0,3.551,3.641,0.512,7.521,0.864,10.091,-12.683,0.0,0.0,0.0,8.303,-0.064,4.805,0.0,0.729,0.0,4.878,-8.906,-2.499,0.0,-0.053,-0.461,-0.052,2.692,-0.155,-1.398,11.73,0.0,0.0,0.0,-6.336,-0.06,-1.168,-3.092,-0.165,0.0,3.184,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,58.32,58.32,35.76,35.76,22.561,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.272,0.824,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.128,0.0,13.872,9.075,0.614,0.0,0.0,0.0,0.0,2116.9,3375.6,3375.6,22.984,18.594,0.0,3.548,3.639,0.512,7.51,0.629,10.004,-12.276,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.729,0.0,4.882,-8.91,-2.5,0.0,-0.037,-0.451,-0.05,2.717,-0.023,-1.42,11.099,0.0,0.0,0.0,-6.287,-0.059,-1.163,-3.063,-0.164,0.0,3.082,7.868,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,58.115,58.115,35.764,35.764,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.277,0.826,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.931,0.0,13.896,9.075,0.614,0.0,0.0,0.0,0.0,2115.6,3299.5,3299.5,22.859,18.059,0.0,3.669,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.307,-0.061,4.806,0.0,0.729,0.0,4.836,-8.908,-2.5,0.0,-0.306,-0.459,-0.051,2.699,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.327,-0.058,-1.168,-3.089,-0.165,0.0,2.846,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-physical-properties.xml,60.714,60.714,37.035,37.035,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,5.288,1.065,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,18.031,9.075,0.612,0.0,0.0,0.0,3.0,2132.5,3597.6,3597.6,24.757,21.557,0.0,3.552,3.66,0.515,7.583,0.634,10.135,-12.625,2.717,-2.174,0.0,8.471,-0.068,4.816,0.0,0.732,0.0,5.144,-8.887,-2.495,0.0,-0.146,-0.516,-0.059,2.583,-0.039,-1.533,11.705,-0.068,3.749,0.0,-6.624,-0.063,-1.187,-3.252,-0.17,0.0,4.013,7.889,2.014,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23504.0,5406.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,59.334,59.334,35.976,35.976,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.436,0.862,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.875,0.0,14.523,9.075,0.614,0.0,0.0,0.0,0.0,2115.2,3459.6,3459.6,23.651,19.386,0.0,3.538,3.64,0.512,7.524,0.63,10.088,-12.677,1.147,-0.32,0.0,8.319,-0.063,4.806,0.0,0.729,0.0,5.048,-8.906,-2.499,0.0,-0.056,-0.458,-0.051,2.705,-0.025,-1.387,11.724,-0.498,0.432,0.0,-6.325,-0.059,-1.163,-3.074,-0.165,0.0,3.237,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19514.0,5322.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,58.717,58.717,36.691,36.691,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.363,0.0,0.0,5.031,1.005,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.626,0.0,17.0,9.075,0.612,0.0,0.0,0.0,0.0,2127.3,3597.5,3597.5,23.618,20.821,0.0,3.568,3.663,0.516,7.583,0.634,10.138,-12.642,0.857,-1.409,0.0,8.436,-0.063,4.814,0.0,0.732,0.0,4.801,-8.885,-2.496,0.0,-0.128,-0.51,-0.059,2.585,-0.038,-1.535,11.715,0.254,2.537,0.0,-6.587,-0.059,-1.196,-3.257,-0.17,0.0,3.753,7.891,2.014,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21676.0,5364.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,58.47,58.47,36.791,36.791,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,5.117,1.026,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.301,0.0,17.364,9.075,0.612,0.0,0.0,0.0,0.0,2126.9,3597.6,3597.6,23.534,20.992,0.0,3.575,3.667,0.516,7.595,0.636,10.154,-12.632,0.765,-1.651,0.0,8.463,-0.066,4.818,0.0,0.732,0.0,4.733,-8.884,-2.495,0.0,-0.141,-0.519,-0.06,2.564,-0.04,-1.554,11.716,0.258,2.975,0.0,-6.633,-0.063,-1.201,-3.288,-0.171,0.0,3.822,7.892,2.015,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21910.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-split-level.xml,40.396,40.396,29.422,29.422,10.974,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,3.951,0.751,9.409,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,10.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.269,0.0,12.417,9.295,0.606,0.0,0.0,0.0,0.0,1718.3,2561.9,2561.9,13.17,13.022,0.0,3.945,3.838,0.0,0.0,0.691,10.079,-12.095,0.0,0.0,0.0,7.996,-0.152,2.657,0.0,0.776,0.0,0.291,-6.808,-1.452,0.0,-0.102,-0.617,0.0,0.0,-0.024,-0.74,12.161,0.0,0.0,0.0,-1.657,-0.149,-0.598,-3.044,-0.169,0.0,0.089,6.381,1.195,1354.8,997.6,11171.5,2952.8,0.0,36000.0,24000.0,0.0,6.8,91.76,28999.0,1651.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,313.0,0.0,-487.0,800.0 +base-enclosure-thermal-mass.xml,57.991,57.991,35.884,35.884,22.107,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.376,0.85,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.703,0.0,14.333,9.075,0.614,0.0,0.0,0.0,0.0,2110.8,3383.7,3383.7,22.901,18.772,0.0,3.557,3.642,0.513,7.508,0.63,10.116,-12.697,0.0,0.0,0.0,8.279,-0.098,4.801,0.0,0.728,0.0,4.785,-8.907,-2.499,0.0,-0.05,-0.46,-0.051,2.699,-0.026,-1.427,11.731,0.0,0.0,0.0,-6.336,-0.094,-1.175,-3.143,-0.166,0.0,3.139,7.871,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,74.885,74.885,34.582,34.582,40.303,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,3.069,0.549,9.023,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.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,37.731,0.0,9.028,9.075,0.622,0.0,0.0,0.0,0.0,2128.5,2724.8,2724.8,25.831,12.742,0.0,3.347,16.952,0.473,7.157,0.836,1.283,-1.612,0.0,0.0,0.0,7.38,-0.045,4.826,0.0,0.732,0.0,7.806,-9.155,-2.566,0.0,0.291,-0.623,-0.009,3.405,-0.085,-0.165,1.409,0.0,0.0,0.0,-4.92,-0.04,-0.965,-0.378,-0.123,0.0,1.78,7.631,1.944,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13671.0,5183.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,57.275,57.275,34.937,34.937,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.619,0.655,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.919,0.0,10.899,9.075,0.616,0.0,0.0,0.0,0.0,2119.4,3384.3,3384.3,23.032,18.775,0.0,3.555,3.644,0.513,7.537,0.631,10.098,-12.683,0.0,0.0,0.0,8.359,-0.06,4.806,0.0,0.729,0.0,4.848,-8.905,-2.499,0.0,0.012,-0.412,-0.044,2.862,-0.013,-1.248,11.73,0.0,0.0,0.0,-6.094,-0.057,-1.111,-7.007,-0.157,0.0,2.763,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-none.xml,58.736,58.736,33.868,33.868,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,9.021,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.28,0.0,7.559,9.075,0.619,0.0,0.0,0.0,0.0,2107.2,2513.6,2513.6,17.245,8.428,0.0,3.468,5.156,0.5,7.22,0.6,0.0,0.0,0.0,0.0,0.0,7.492,-0.043,4.777,0.0,0.723,0.0,4.877,-9.031,-2.531,0.0,0.204,-0.376,-0.023,3.187,0.013,0.0,0.0,0.0,0.0,0.0,-5.188,-0.041,-1.102,0.0,-0.144,0.0,1.322,7.752,1.978,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5099.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,65.988,65.988,36.043,36.043,29.945,0.0,0.0,0.0,0.0,0.0,0.0,0.494,0.0,0.0,4.406,0.849,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.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,0.0,0.0,28.045,0.0,14.278,9.075,0.616,0.0,0.0,0.0,0.0,2146.8,3597.6,3597.6,27.766,20.924,0.0,3.492,3.633,0.511,7.504,0.63,19.595,-16.819,0.0,0.0,0.0,8.426,-0.074,4.825,0.0,0.732,0.0,6.377,-8.965,-2.513,0.0,0.012,-0.392,-0.042,2.826,-0.007,-4.96,14.292,0.0,0.0,0.0,-6.171,-0.068,-1.082,-2.85,-0.155,0.0,3.307,7.815,1.997,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21180.0,5355.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,58.121,58.121,35.961,35.961,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.439,0.864,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.753,0.0,14.577,9.075,0.613,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.558,3.645,0.513,7.515,0.631,10.105,-12.683,0.0,0.0,0.0,8.252,-0.071,4.808,0.0,0.73,0.0,4.81,-8.905,-2.499,0.0,-0.075,-0.483,-0.055,2.62,-0.031,-1.316,12.141,0.0,0.0,0.0,-6.498,-0.067,-1.188,-3.219,-0.168,0.0,3.226,7.872,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,57.811,57.811,33.445,33.445,24.367,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,2.368,0.375,9.024,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,0.0,0.0,22.819,0.0,6.18,9.075,0.622,0.0,0.0,0.0,0.0,2131.5,2577.1,2577.1,23.076,11.444,0.0,3.574,3.682,0.517,7.568,0.638,10.631,-11.787,0.0,0.0,0.0,8.559,-0.043,4.867,0.0,0.74,0.0,5.219,-9.143,-2.56,0.0,0.353,-0.11,-0.002,3.553,0.056,-3.589,2.911,0.0,0.0,0.0,-4.594,-0.039,-0.912,-2.173,-0.118,0.0,1.429,7.643,1.95,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-storms.xml,59.151,59.151,35.346,35.346,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,3.919,0.74,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.295,0.0,12.428,9.075,0.616,0.0,0.0,0.0,0.0,2130.8,3301.5,3301.5,22.493,17.139,0.0,3.514,3.609,0.508,7.424,0.622,8.599,-9.444,0.0,0.0,0.0,8.041,-0.059,4.791,0.0,0.726,0.0,5.093,-8.925,-2.504,0.0,0.015,-0.411,-0.044,2.82,-0.014,-0.74,8.684,0.0,0.0,0.0,-6.06,-0.055,-1.142,-2.918,-0.16,0.0,2.774,7.854,2.006,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17521.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-ambient.xml,47.629,47.629,30.302,30.302,17.327,0.0,0.0,0.0,0.0,0.0,0.0,0.286,0.0,0.0,4.75,0.933,9.202,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,17.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.232,0.0,15.684,9.182,0.606,0.0,0.0,0.0,3.0,1739.2,3397.0,3397.0,20.513,21.293,0.0,3.811,3.817,0.0,0.0,0.769,10.526,-11.315,0.0,0.0,10.182,0.0,-0.48,2.065,0.0,0.786,0.0,3.899,-6.747,-1.425,0.0,-0.11,-0.589,0.0,0.0,0.029,-0.179,12.654,0.0,0.0,-3.786,0.0,-0.474,-0.413,-2.427,-0.161,0.0,3.693,6.443,1.222,1354.8,997.6,11171.6,2752.7,0.0,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,18957.0,5354.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-basement-garage.xml,52.408,52.408,32.65,32.65,19.758,0.0,0.0,0.0,0.0,0.0,0.0,0.326,0.0,0.0,4.436,0.861,9.25,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,0.0,19.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,18.502,0.0,14.517,9.204,0.613,0.0,0.0,0.0,0.0,1905.4,3385.7,3385.7,21.426,19.687,0.0,3.661,4.739,0.514,5.516,0.701,9.837,-12.609,0.0,0.0,0.835,6.146,-0.039,3.259,0.0,0.735,0.0,4.443,-7.701,-1.886,0.0,-0.041,-0.654,-0.057,1.918,-0.044,-1.196,11.679,0.0,0.0,-0.129,-4.618,-0.036,-0.791,-3.022,-0.167,0.0,3.383,6.955,1.52,1354.8,997.6,11171.6,2792.6,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19061.0,5346.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 +base-foundation-belly-wing-no-skirt.xml,49.363,49.363,29.358,29.358,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.95,0.745,9.203,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,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.735,0.0,12.238,9.182,0.607,0.0,0.0,0.0,0.0,1746.6,3073.8,3073.8,24.177,17.955,0.0,3.986,5.373,0.0,0.0,0.756,8.719,-11.134,0.0,0.0,10.274,0.0,-0.363,2.069,0.0,0.793,0.0,6.171,-6.863,-1.453,0.0,0.291,-0.621,0.0,0.0,0.037,0.041,9.561,0.0,0.0,-3.473,0.0,-0.356,-0.4,-2.2,-0.147,0.0,2.254,6.327,1.194,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-belly-wing-skirt.xml,48.992,48.992,29.366,29.366,19.625,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.961,0.748,9.203,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,19.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,18.38,0.0,12.292,9.182,0.606,0.0,0.0,0.0,0.0,1745.5,3069.4,3069.4,24.024,17.914,0.0,3.992,5.382,0.0,0.0,0.757,8.731,-11.127,0.0,0.0,9.978,0.0,-0.357,2.07,0.0,0.794,0.0,6.058,-6.857,-1.453,0.0,0.285,-0.63,0.0,0.0,0.036,0.021,9.567,0.0,0.0,-3.392,0.0,-0.351,-0.403,-2.214,-0.147,0.0,2.26,6.333,1.194,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-complex.xml,77.48,77.48,37.234,37.234,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,5.221,1.053,9.019,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.691,0.0,17.803,9.075,0.617,0.0,0.0,0.0,4.0,2139.6,3597.5,3597.5,33.388,21.552,0.0,3.434,3.658,0.521,19.566,0.65,10.136,-12.837,0.0,0.0,0.0,8.756,-0.109,6.085,0.0,0.739,0.0,8.279,-9.111,-2.555,0.0,0.031,-0.372,-0.046,3.7,-0.007,-1.014,11.574,0.0,0.0,0.0,-4.532,-0.101,-1.237,-3.289,-0.139,0.0,3.795,7.67,1.955,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,55.522,55.522,36.474,36.474,19.048,0.0,0.0,0.0,0.0,0.0,0.0,0.314,0.0,0.0,4.893,0.976,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,17.836,0.0,16.504,9.075,0.611,0.0,0.0,0.0,0.0,2120.4,3597.5,3597.5,22.288,20.652,0.0,3.636,3.705,0.522,8.235,0.644,10.266,-12.652,0.0,0.0,0.0,4.795,-0.064,4.843,0.0,0.735,0.0,4.211,-8.886,-2.496,0.0,-0.115,-0.508,-0.058,2.158,-0.038,-1.547,11.761,0.0,0.0,0.0,-3.714,-0.059,-1.194,-3.315,-0.17,0.0,3.563,7.889,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,57.074,57.074,36.14,36.14,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.6,0.903,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,15.243,9.075,0.613,0.0,0.0,0.0,0.0,2123.3,3516.7,3516.7,22.76,19.966,0.0,3.584,3.664,0.516,7.833,0.635,10.15,-12.669,0.0,0.0,0.0,6.873,-0.061,4.815,0.0,0.731,0.0,4.578,-8.892,-2.496,0.0,-0.082,-0.484,-0.055,2.495,-0.032,-1.471,11.744,0.0,0.0,0.0,-5.347,-0.057,-1.182,-3.183,-0.168,0.0,3.345,7.885,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,56.986,56.986,35.471,35.471,21.515,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.056,0.768,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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.0,0.0,20.147,0.0,12.895,9.075,0.614,0.0,0.0,0.0,0.0,2124.2,3467.0,3467.0,23.225,18.937,0.0,3.584,3.669,0.516,6.117,0.636,10.166,-12.69,0.0,0.0,0.0,8.986,-0.065,4.827,0.0,0.734,0.0,4.708,-8.905,-2.5,0.0,-0.004,-0.423,-0.046,1.073,-0.017,-1.296,11.724,0.0,0.0,0.0,-6.519,-0.06,-1.143,-2.923,-0.162,0.0,2.994,7.872,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,46.897,46.897,28.896,28.896,18.001,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.591,0.668,9.21,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,18.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,16.845,0.0,11.07,9.182,0.614,0.0,0.0,0.0,0.0,1720.5,2388.8,2388.8,15.899,11.724,0.0,3.711,3.607,0.507,5.113,0.622,9.795,-12.66,0.0,0.0,0.0,10.002,-0.052,3.495,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.025,-0.473,-0.053,1.786,-0.029,-1.225,11.693,0.0,0.0,0.0,-3.856,-0.048,-0.842,-2.99,-0.164,0.0,0.0,6.308,1.18,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 +base-foundation-multiple.xml,42.395,42.395,29.715,29.715,12.68,0.0,0.0,0.0,0.0,0.0,0.0,0.209,0.0,0.0,4.349,0.845,9.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.0,12.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.87,0.0,13.997,9.126,0.692,0.0,0.0,0.0,0.0,1709.3,3117.1,3117.1,15.196,15.264,0.0,3.982,3.869,0.0,0.0,0.78,10.582,-11.178,0.0,0.0,5.303,0.0,-0.384,2.584,0.0,0.0,0.0,1.982,-4.611,-1.419,0.0,-0.151,-0.726,0.0,0.0,-0.016,-0.487,12.79,0.0,0.0,-0.709,0.0,-0.379,-0.574,-2.646,0.0,0.0,1.7,4.255,1.228,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23063.0,4774.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14342.0,288.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-slab.xml,39.613,39.613,29.284,29.284,10.328,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.0,0.0,4.015,0.768,9.201,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,10.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,9.666,0.0,12.691,9.182,0.605,0.0,0.0,0.0,0.0,1716.3,2531.1,2531.1,12.688,12.989,0.0,3.935,3.804,0.0,0.0,0.691,10.07,-12.046,0.0,0.0,0.0,7.998,-0.153,2.012,0.0,0.776,0.0,0.274,-6.772,-1.445,0.0,-0.089,-0.602,0.0,0.0,-0.03,-0.815,12.21,0.0,0.0,0.0,-1.718,-0.15,-0.472,-2.884,-0.174,0.0,0.091,6.417,1.202,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,28632.0,1649.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-above-grade.xml,43.572,43.572,29.854,29.854,13.718,0.0,0.0,0.0,0.0,0.0,0.0,0.226,0.0,0.0,4.433,0.864,9.2,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,13.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.843,0.0,14.367,9.126,0.713,0.0,0.0,0.0,0.0,1726.4,2885.8,2885.8,16.456,16.259,0.0,3.987,3.869,0.0,0.0,0.779,10.631,-11.228,0.0,0.0,5.922,0.0,-0.399,2.588,0.0,0.0,0.0,2.4,-4.628,-1.424,0.0,-0.127,-0.706,0.0,0.0,-0.012,-0.481,12.741,0.0,0.0,-0.611,0.0,-0.393,-0.561,-2.633,0.0,0.0,1.985,4.237,1.223,1354.8,997.6,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23024.0,4769.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14337.0,292.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-assembly-r.xml,40.851,40.851,29.254,29.254,11.596,0.0,0.0,0.0,0.0,0.0,0.0,0.191,0.0,0.0,3.981,0.756,9.196,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,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,0.0,10.857,0.0,12.428,9.126,0.709,0.0,0.0,0.0,0.0,1703.7,2639.6,2639.6,14.633,13.982,0.0,3.977,3.838,0.0,0.0,0.769,10.59,-11.043,0.0,0.0,4.41,0.0,-0.41,2.586,0.0,0.0,0.0,1.766,-4.584,-1.409,0.0,-0.128,-0.681,0.0,0.0,0.011,-0.459,12.925,0.0,0.0,-2.093,0.0,-0.406,-0.578,-2.55,0.0,0.0,1.163,4.282,1.238,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,20545.0,4409.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,14055.0,573.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-wall-insulation.xml,48.445,48.445,28.92,28.92,19.525,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,3.659,0.677,9.131,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,19.525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.275,0.0,11.148,9.126,0.639,0.0,0.0,0.0,0.0,1728.2,2482.4,2482.4,16.297,12.58,0.0,3.735,3.633,0.0,0.0,0.636,9.315,-12.475,0.0,0.0,14.463,0.0,-0.046,2.465,0.0,0.0,0.0,2.535,-4.772,-1.48,0.0,0.048,-0.455,0.0,0.0,-0.019,-0.477,11.493,0.0,0.0,-2.833,0.0,-0.044,-0.526,-2.444,0.0,0.0,1.35,4.093,1.167,1354.8,997.6,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23828.0,1631.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,15236.0,146.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement.xml,42.459,42.459,29.748,29.748,12.711,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.369,0.849,9.19,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,12.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,11.9,0.0,14.083,9.126,0.702,0.0,0.0,0.0,0.0,1709.7,2957.0,2957.0,15.438,15.472,0.0,3.973,3.833,0.0,0.0,0.761,10.53,-11.149,0.0,0.0,5.339,0.0,-0.393,2.583,0.0,0.0,0.0,2.081,-4.605,-1.417,0.0,-0.132,-0.685,0.0,0.0,0.003,-0.513,12.819,0.0,0.0,-0.762,0.0,-0.388,-0.574,-2.668,0.0,0.0,1.781,4.261,1.23,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23070.0,4774.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14344.0,288.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unvented-crawlspace.xml,40.345,40.345,29.845,29.845,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.173,0.0,0.0,4.386,0.857,9.298,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,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.832,0.0,14.17,9.182,0.708,0.0,0.0,0.0,0.0,1705.8,3063.8,3063.8,14.329,14.741,0.0,3.957,3.815,0.0,0.0,0.781,10.653,-10.714,0.0,0.0,4.565,0.0,-0.459,2.05,0.0,0.775,0.0,1.604,-6.202,-1.377,0.0,-0.243,-0.803,0.0,0.0,-0.001,-0.69,13.255,0.0,0.0,-2.098,0.0,-0.455,-0.49,-2.745,-0.197,0.0,1.307,6.382,1.27,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,20315.0,4137.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,14131.0,637.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace.xml,42.246,42.246,29.787,29.787,12.459,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,4.256,0.822,9.372,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,12.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,11.665,0.0,13.523,9.182,0.786,0.0,0.0,0.0,0.0,1723.9,3117.4,3117.4,15.482,15.244,0.0,3.962,3.816,0.0,0.0,0.766,10.546,-11.029,0.0,0.0,6.731,0.0,-0.434,1.848,0.0,0.782,0.0,2.013,-6.322,-1.406,0.0,-0.128,-0.69,0.0,0.0,0.01,-0.475,12.939,0.0,0.0,-3.039,0.0,-0.429,-0.394,-2.616,-0.18,0.0,1.344,6.262,1.241,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,23874.0,6877.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15434.0,1723.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-walkout-basement.xml,64.19,64.19,36.309,36.309,27.88,0.0,0.0,0.0,0.0,0.0,0.0,0.46,0.0,0.0,4.644,0.911,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.11,0.0,15.355,9.075,0.615,0.0,0.0,0.0,0.0,2133.5,3660.3,3660.3,26.753,20.659,0.0,3.536,3.698,0.521,7.384,0.648,10.878,-12.928,0.0,0.0,0.0,10.191,-0.062,6.628,0.0,0.729,0.0,5.961,-8.927,-2.504,0.0,-0.111,-0.524,-0.061,1.459,-0.034,-1.566,12.043,0.0,0.0,0.0,-3.716,-0.057,-1.537,-3.4,-0.161,0.0,3.356,7.852,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19161.0,5335.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.806,34.806,34.806,34.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.424,1.045,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.956,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,3259.0,3259.0,0.0,16.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.023,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.021,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.611,45.611,45.611,45.611,0.0,0.0,0.0,0.0,0.0,0.0,9.472,0.974,0.263,0.015,3.519,1.076,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.368,0.279,13.341,9.075,0.614,0.0,0.0,0.0,0.0,7015.2,3291.7,7015.2,24.205,16.402,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.362,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,41.75,41.75,41.75,41.75,0.0,0.0,0.0,0.0,0.0,0.0,9.497,1.684,0.273,0.027,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.987,0.3,0.0,9.075,0.588,0.0,0.0,0.0,0.0,7126.2,1624.1,7126.2,25.254,0.0,0.0,3.507,3.648,0.513,7.514,0.632,10.115,-12.683,0.0,0.0,0.0,8.15,-0.069,4.81,0.0,0.73,0.0,6.162,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.566,45.566,45.566,45.566,0.0,0.0,0.0,0.0,0.0,0.0,9.024,0.882,0.831,0.048,3.438,1.05,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.647,0.878,13.013,9.075,0.613,0.0,0.0,144.0,0.0,10269.9,3275.4,10269.9,37.464,16.263,0.0,3.616,3.675,0.516,7.775,0.624,10.04,-12.798,0.0,0.0,0.0,9.087,0.059,4.748,0.0,0.762,0.0,4.542,-8.886,-2.51,0.0,0.005,-0.452,-0.051,2.749,-0.035,-1.506,11.615,0.0,0.0,0.0,-6.397,0.05,-1.191,-3.331,-0.163,0.0,2.031,7.891,2.0,1354.8,997.6,11171.5,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.669,45.669,45.669,45.669,0.0,0.0,0.0,0.0,0.0,0.0,9.545,0.974,0.263,0.015,3.504,1.076,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.368,0.279,13.341,9.075,0.614,0.0,0.0,0.0,0.0,7015.2,3284.5,7015.2,24.205,16.402,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.362,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,45.611,45.611,45.611,45.611,0.0,0.0,0.0,0.0,0.0,0.0,9.472,0.974,0.263,0.015,3.519,1.076,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.368,0.279,13.341,9.075,0.614,0.0,0.0,0.0,0.0,7015.2,3291.7,7015.2,24.205,16.402,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.362,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,41.462,41.462,41.462,41.462,0.0,0.0,0.0,0.0,0.0,0.0,7.343,0.575,0.26,0.011,2.342,0.638,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.418,0.272,13.578,9.075,0.614,0.0,0.0,0.0,0.0,6991.3,2815.4,6991.3,24.196,17.378,0.0,3.493,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.317,-0.065,4.807,0.0,0.729,0.0,6.445,-8.906,-2.499,0.0,-0.018,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.311,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.414,53.414,38.606,38.606,14.808,0.0,0.0,0.0,0.0,0.0,4.677,0.498,0.0,0.055,2.556,0.527,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.076,11.082,16.12,9.075,0.614,0.0,0.0,2.0,58.0,3425.3,2790.2,3425.3,23.338,16.603,0.0,3.266,3.605,0.508,7.53,0.616,9.94,-12.591,0.0,0.0,0.0,8.253,-0.031,5.819,0.0,0.721,0.0,11.327,-8.79,-2.477,0.0,-0.187,-0.494,-0.056,2.719,-0.038,-1.537,11.822,0.0,0.0,0.0,-6.373,-0.028,-1.5,-3.084,-0.171,0.0,5.19,7.988,2.033,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.744,56.744,37.423,37.423,19.321,0.0,0.0,0.0,0.0,0.0,3.593,0.349,0.0,0.073,2.586,0.531,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,27.694,14.415,16.291,9.075,0.615,0.0,0.0,204.0,58.0,3014.3,2819.2,3014.3,23.54,16.604,0.0,3.292,3.615,0.508,7.457,0.619,9.934,-12.681,0.0,0.0,0.0,8.271,-0.026,5.805,0.0,0.721,0.0,10.942,-8.844,-2.484,0.0,-0.165,-0.476,-0.054,2.677,-0.033,-1.514,11.732,0.0,0.0,0.0,-6.302,-0.022,-1.49,-3.072,-0.17,0.0,5.156,7.934,2.025,1354.8,997.6,11171.5,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.744,56.744,37.423,37.423,19.321,0.0,0.0,0.0,0.0,0.0,3.593,0.349,0.0,0.073,2.586,0.531,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,27.694,14.415,16.291,9.075,0.615,0.0,0.0,204.0,58.0,3014.3,2819.2,3014.3,23.54,16.604,0.0,3.292,3.615,0.508,7.457,0.619,9.934,-12.681,0.0,0.0,0.0,8.271,-0.026,5.805,0.0,0.721,0.0,10.942,-8.844,-2.484,0.0,-0.165,-0.476,-0.054,2.677,-0.033,-1.514,11.732,0.0,0.0,0.0,-6.302,-0.022,-1.49,-3.072,-0.17,0.0,5.156,7.934,2.025,1354.8,997.6,11171.5,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.519,53.519,38.707,38.707,14.813,0.0,0.0,0.0,0.0,0.0,4.737,0.506,0.0,0.055,2.586,0.531,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.352,11.085,16.323,9.075,0.614,0.0,0.0,2.0,58.0,3425.3,2819.2,3425.3,23.338,16.604,0.0,3.307,3.646,0.513,7.531,0.631,10.101,-12.703,0.0,0.0,0.0,8.336,-0.061,5.888,0.0,0.728,0.0,11.469,-8.917,-2.502,0.0,-0.143,-0.455,-0.051,2.713,-0.024,-1.383,11.71,0.0,0.0,0.0,-6.3,-0.057,-1.436,-3.072,-0.164,0.0,5.271,7.861,2.008,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.561,53.561,38.865,38.865,14.695,0.0,0.0,0.0,0.0,0.0,4.527,0.479,0.0,0.443,2.595,0.53,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,28.567,12.199,16.439,9.075,0.614,0.0,0.0,2.0,54.0,3398.2,2730.6,3398.2,26.749,16.592,0.0,3.253,3.648,0.513,7.537,0.631,10.103,-12.695,0.0,0.0,0.0,8.331,-0.06,4.805,0.0,0.729,0.0,12.775,-8.907,-2.499,0.0,-0.152,-0.464,-0.052,2.682,-0.027,-1.415,11.718,0.0,0.0,0.0,-6.349,-0.056,-1.173,-3.118,-0.166,0.0,5.285,7.871,2.011,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,41.147,41.147,41.147,41.147,0.0,0.0,0.0,0.0,0.0,0.0,7.353,0.758,0.148,0.011,2.378,0.206,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.947,0.159,14.829,9.075,0.614,0.0,0.0,0.0,0.0,7076.3,2607.5,7076.3,24.549,18.191,0.0,3.395,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.323,-0.065,4.808,0.0,0.729,0.0,9.047,-8.906,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.347,-0.061,-1.17,-3.105,-0.166,0.0,3.603,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,49.344,49.344,42.814,42.814,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,3.377,0.538,15.676,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.046,0.0,9.816,16.204,0.642,0.0,0.0,0.0,0.0,2608.0,3550.0,3550.0,17.003,16.125,0.0,2.9,2.833,0.397,5.505,0.423,7.596,-12.563,0.0,0.0,0.0,5.727,-0.058,3.539,0.0,0.582,0.0,1.453,-10.182,-2.473,0.0,-0.155,-0.607,-0.072,2.26,-0.067,-1.871,11.85,0.0,0.0,0.0,-7.696,-0.059,-1.295,-5.333,-0.193,0.0,2.045,9.375,2.036,2181.0,1715.2,21140.4,3685.7,0.0,31430.0,27891.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22993.0,6411.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 +base-hvac-autosize.xml,59.048,59.048,36.067,36.067,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.506,0.883,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.529,0.0,14.904,9.075,0.614,0.0,0.0,0.0,2.0,2124.0,3328.2,3328.2,23.95,18.93,0.0,3.532,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.53,-8.905,-2.499,0.0,-0.076,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.107,-0.166,0.0,3.661,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,32235.0,21309.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-coal-only.xml,49.421,49.421,30.505,30.505,0.0,0.0,0.0,0.0,0.0,18.916,0.0,0.236,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2045.6,1615.7,2045.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-elec-only.xml,48.249,48.249,48.249,48.249,0.0,0.0,0.0,0.0,0.0,0.0,17.858,0.122,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,6027.4,1615.7,6027.4,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,55.358,55.358,36.159,36.159,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,4.502,1.219,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,14.543,9.075,0.614,0.0,0.0,0.0,0.0,2083.0,3607.1,3607.1,16.438,19.269,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,-0.062,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,3.294,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only-pilot.xml,54.387,54.387,30.412,30.412,23.974,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2033.0,1615.7,2033.0,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,49.415,49.415,30.412,30.412,19.003,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2033.0,1615.7,2033.0,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-oil-only.xml,49.421,49.421,30.505,30.505,0.0,18.916,0.0,0.0,0.0,0.0,0.0,0.236,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2045.6,1615.7,2045.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-propane-only.xml,49.414,49.414,30.391,30.391,0.0,0.0,19.023,0.0,0.0,0.0,0.0,0.122,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2030.2,1615.7,2030.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,49.414,49.414,30.391,30.391,0.0,0.0,0.0,19.023,0.0,0.0,0.0,0.122,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2030.2,1615.7,2030.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,35.908,35.908,35.908,35.908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.386,1.185,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.13,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3562.2,3562.2,0.0,18.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.075,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.217,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed.xml,35.924,35.924,35.924,35.924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.402,1.185,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.13,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3570.5,3570.5,0.0,18.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.075,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.217,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,34.23,34.23,34.23,34.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.173,0.72,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.517,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3098.5,3098.5,0.0,19.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.091,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.61,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,33.525,33.525,33.525,33.525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.875,0.313,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.345,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2847.0,2847.0,0.0,19.332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.132,-0.471,-0.052,2.667,-0.032,-1.453,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.194,-3.023,-0.167,0.0,4.482,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.6,47.6,47.6,47.6,0.0,0.0,0.0,0.0,0.0,0.0,9.585,1.701,0.274,0.028,4.502,1.219,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.21,0.302,14.544,9.075,0.614,0.0,0.0,0.0,0.0,7348.2,3607.2,7348.2,25.254,19.27,0.0,3.502,3.645,0.513,7.531,0.631,10.104,-12.683,0.0,0.0,0.0,8.317,-0.065,4.807,0.0,0.729,0.0,6.22,-8.906,-2.499,0.0,-0.061,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.106,-0.166,0.0,3.294,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-crankcase-heater-40w.xml,58.055,58.055,35.788,35.788,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.271,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2109.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dse.xml,58.442,58.442,36.831,36.831,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.356,0.0,0.0,5.21,0.973,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2102.1,2621.3,2621.3,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.204,52.204,41.552,41.552,10.652,0.0,0.0,0.0,0.0,0.0,5.257,0.479,0.0,0.929,3.519,1.076,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.768,11.048,13.342,9.075,0.614,0.0,0.0,0.0,0.0,3613.4,3291.7,3613.4,24.193,16.402,0.0,3.472,3.645,0.513,7.532,0.631,10.105,-12.683,0.0,0.0,0.0,8.319,-0.065,4.808,0.0,0.729,0.0,6.812,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,54.961,54.961,40.555,40.555,14.406,0.0,0.0,0.0,0.0,0.0,3.945,0.335,0.0,1.389,3.519,1.076,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.075,13.342,9.075,0.614,0.0,0.0,0.0,0.0,3460.6,3291.7,3460.6,24.191,16.402,0.0,3.435,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,7.753,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.286,52.286,37.48,37.48,14.806,0.0,0.0,0.0,0.0,0.0,2.981,0.185,0.0,1.042,2.342,0.638,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.021,15.108,13.578,9.075,0.614,0.0,0.0,0.0,0.0,2838.6,2815.4,2838.6,24.191,17.378,0.0,3.423,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.321,-0.065,4.808,0.0,0.729,0.0,8.106,-8.906,-2.499,0.0,-0.018,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.104,-0.166,0.0,2.311,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.256,52.256,37.802,37.802,14.455,0.0,0.0,0.0,0.0,0.0,2.935,0.235,0.0,1.755,2.378,0.206,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.705,15.487,14.829,9.075,0.614,0.0,0.0,0.0,0.0,2830.6,2607.5,2830.6,24.544,18.191,0.0,3.362,3.646,0.513,7.535,0.631,10.108,-12.683,0.0,0.0,0.0,8.325,-0.065,4.808,0.0,0.729,0.0,9.832,-8.906,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.347,-0.061,-1.17,-3.105,-0.166,0.0,3.603,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.24,47.24,36.105,36.105,11.135,0.0,0.0,0.0,0.0,0.0,2.467,0.09,0.0,0.916,2.263,0.077,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,19.241,11.495,12.271,9.075,0.614,0.0,0.0,0.0,0.0,2552.8,2190.2,2552.8,19.295,13.794,0.0,3.614,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.73,0.0,3.178,-8.906,-2.499,0.0,0.029,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.102,-0.166,0.0,0.99,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-fractions.xml,92.462,92.462,46.689,46.689,45.773,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,8.1,1.711,8.86,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,0.0,45.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,42.722,0.0,29.448,8.989,0.612,0.0,0.0,5.0,77.0,2576.6,5032.8,5032.8,48.976,34.989,0.0,3.225,7.897,1.073,7.933,0.668,20.527,-25.252,0.0,0.0,0.0,9.073,-0.115,11.172,0.0,0.748,0.0,19.695,-10.961,-3.544,0.0,-0.381,-1.035,-0.1,2.663,-0.023,-2.118,23.314,0.0,0.0,0.0,-6.455,-0.103,-2.483,-6.345,-0.161,0.0,10.861,9.395,2.829,1354.8,997.6,11171.6,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,71257.0,33166.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,57.428,57.428,35.802,35.802,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.318,0.835,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.257,0.0,14.12,9.075,0.614,0.0,0.0,0.0,0.0,2116.7,3362.7,3362.7,22.356,18.576,0.0,3.579,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.219,-8.905,-2.499,0.0,-0.04,-0.464,-0.052,2.684,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.105,-0.166,0.0,2.856,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18409.0,4950.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,55.777,55.777,35.554,35.554,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.135,0.794,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.93,0.0,13.273,9.075,0.614,0.0,0.0,0.0,0.0,2110.2,3067.9,3067.9,20.269,15.91,0.0,3.625,3.644,0.513,7.528,0.631,10.097,-12.683,0.0,0.0,0.0,8.31,-0.062,4.806,0.0,0.729,0.0,2.851,-8.903,-2.499,0.0,-0.008,-0.465,-0.052,2.684,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.171,-3.105,-0.166,0.0,1.988,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,28613.0,4973.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15788.0,2330.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-defaults.xml,54.665,54.665,40.513,40.513,14.152,0.0,0.0,0.0,0.0,0.0,4.354,0.368,0.0,0.0,5.499,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.731,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3055.2,3318.2,3318.2,18.192,11.921,0.0,3.744,3.643,0.513,7.524,0.631,10.098,-12.683,0.0,0.0,0.0,8.304,-0.065,4.807,0.0,0.73,0.0,1.557,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.096,-0.166,0.0,-0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,41910.0,24000.0,0.0,6.8,91.76,28213.0,4573.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-effective-rvalue.xml,58.193,58.193,35.93,35.93,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.413,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.848,0.0,14.453,9.075,0.614,0.0,0.0,0.0,0.0,2119.3,3421.2,3421.2,23.027,19.117,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.829,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.204,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18783.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,57.623,57.623,35.817,35.817,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.328,0.837,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,14.263,9.075,0.614,0.0,0.0,0.0,0.0,2116.8,3413.2,3413.2,22.444,19.037,0.0,3.567,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.807,0.0,0.73,0.0,4.423,-8.906,-2.499,0.0,-0.046,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.105,-0.166,0.0,3.061,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34498.0,10858.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20350.0,6892.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-percent.xml,59.415,59.415,36.134,36.134,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.565,0.893,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.808,0.0,15.122,9.075,0.614,0.0,0.0,0.0,0.0,2123.4,3597.5,3597.5,24.251,20.652,0.0,3.52,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.315,-0.064,4.807,0.0,0.729,0.0,5.821,-8.905,-2.499,0.0,-0.086,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.108,-0.166,0.0,3.896,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32661.0,9021.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20673.0,7215.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-elec-resistance-only.xml,46.293,46.293,46.293,46.293,0.0,0.0,0.0,0.0,0.0,0.0,16.025,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,5913.9,1615.7,5913.9,16.439,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-furnace-gas.xml,54.595,54.595,31.729,31.729,22.866,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,0.0,0.0,0.842,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.631,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2123.2,1811.2,2123.2,24.046,11.93,0.0,3.529,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.628,-8.905,-2.499,0.0,0.037,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.096,-0.166,0.0,-0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only-ducted.xml,31.243,31.243,31.243,31.243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.906,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.91,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,1920.1,2020.7,0.0,15.977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.015,-0.167,0.0,0.941,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-only.xml,31.157,31.157,31.157,31.157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.82,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,1853.6,2020.7,0.0,11.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,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-fireplace-wood-only.xml,51.606,51.606,30.269,30.269,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2019.6,1637.4,2019.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only-pilot-light.xml,56.578,56.578,30.269,30.269,0.0,0.0,26.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2019.6,1637.4,2019.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,51.606,51.606,30.269,30.269,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2019.6,1637.4,2019.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-coal-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,0.0,0.0,22.632,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,56.416,56.416,56.416,56.416,0.0,0.0,0.0,0.0,0.0,0.0,20.485,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,7897.8,3421.7,7897.8,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-only.xml,52.103,52.103,52.103,52.103,0.0,0.0,0.0,0.0,0.0,0.0,21.247,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,8283.1,1622.9,8283.1,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,56.846,56.846,34.58,34.58,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.221,0.699,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.861,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3127.3,3127.3,23.032,19.623,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.074,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.106,-0.166,0.0,3.616,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,56.178,56.178,33.912,33.912,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,2.928,0.324,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,15.756,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,2865.9,2865.9,23.032,19.517,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.119,-0.464,-0.052,2.686,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.348,-0.06,-1.171,-3.109,-0.166,0.0,4.559,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,37.962,37.962,30.502,30.502,7.459,0.0,0.0,0.0,0.0,0.0,0.0,0.194,0.0,0.0,0.0,0.0,9.032,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,7.05,0.0,0.0,9.075,0.631,0.0,0.0,0.0,0.0,2085.2,1635.6,2085.2,18.154,0.0,0.0,2.849,2.792,0.391,5.359,0.413,7.471,-12.563,0.0,0.0,0.0,5.445,-0.06,3.485,0.0,0.573,0.0,1.812,-8.806,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-pilot.xml,58.398,58.398,30.857,30.857,27.541,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only.xml,53.489,53.489,30.857,30.857,22.632,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-room-ac.xml,59.252,59.252,36.386,36.386,22.866,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,0.0,5.5,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.631,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2123.2,3318.2,3318.2,24.046,11.922,0.0,3.529,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.628,-8.905,-2.499,0.0,0.037,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.096,-0.166,0.0,-0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-oil-only.xml,53.489,53.489,30.857,30.857,0.0,22.632,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-propane-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,58.439,58.439,36.861,36.861,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.21,0.973,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,16.339,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2105.4,2621.3,2621.3,16.604,11.921,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,38.955,38.955,38.955,38.955,0.0,0.0,0.0,0.0,0.0,0.0,4.844,0.455,0.0,0.0,2.498,0.865,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.326,0.0,13.241,9.075,0.614,0.0,0.0,0.0,0.0,3204.4,2512.3,3204.4,21.061,15.833,0.0,3.61,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.264,-8.906,-2.499,0.0,-0.005,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,1.97,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.907,33.907,33.907,33.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.77,0.8,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2753.0,2753.0,0.0,15.858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.026,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.054,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,39.41,39.41,39.41,39.41,0.0,0.0,0.0,0.0,0.0,0.0,5.006,0.481,0.0,0.0,2.744,0.887,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.426,0.0,13.269,9.075,0.614,0.0,0.0,0.0,0.0,3287.1,2622.0,3287.1,21.426,15.96,0.0,3.606,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.729,0.0,3.366,-8.906,-2.499,0.0,-0.006,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,1.997,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.092,36.092,36.092,36.092,0.0,0.0,0.0,0.0,0.0,0.0,5.076,0.748,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.84,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3370.8,1621.9,3370.8,22.284,0.0,0.0,3.59,3.648,0.513,7.512,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.956,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,37.04,37.04,37.04,37.04,0.0,0.0,0.0,0.0,0.0,0.0,2.756,0.259,0.0,0.0,2.816,0.921,9.011,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.854,0.0,13.865,9.075,0.609,0.0,0.0,0.0,0.0,2962.4,2642.2,2962.4,17.473,16.592,0.0,3.777,3.774,0.532,5.726,0.657,10.442,-12.583,0.0,0.0,0.0,1.936,-0.042,4.868,0.0,0.74,0.0,1.954,-8.8,-2.478,0.0,-0.092,-0.547,-0.063,0.779,-0.05,-1.683,11.83,0.0,0.0,0.0,-3.437,-0.036,-1.251,-3.28,-0.178,0.0,2.081,7.972,2.031,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.383,39.383,39.383,39.383,0.0,0.0,0.0,0.0,0.0,0.0,4.996,0.479,0.0,0.0,2.729,0.885,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.42,0.0,13.267,9.075,0.614,0.0,0.0,0.0,0.0,3282.5,2614.8,3282.5,21.401,15.95,0.0,3.606,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.729,0.0,3.36,-8.906,-2.499,0.0,-0.006,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,1.995,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.691,48.691,48.691,48.691,0.0,0.0,0.0,0.0,0.0,0.0,12.144,0.674,0.562,0.018,4.281,0.72,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.795,0.579,13.89,9.075,0.614,0.0,0.0,0.0,0.0,7104.3,3548.4,7104.3,24.717,17.543,0.0,3.48,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.83,-8.906,-2.499,0.0,-0.033,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.635,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.059,44.059,44.059,44.059,0.0,0.0,0.0,0.0,0.0,0.0,9.174,0.559,0.519,0.016,2.913,0.586,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.057,0.535,14.223,9.075,0.614,0.0,0.0,0.0,0.0,7083.4,3143.0,7083.4,24.712,18.875,0.0,3.43,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,8.132,-8.906,-2.499,0.0,-0.046,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.972,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.507,43.507,43.507,43.507,0.0,0.0,0.0,0.0,0.0,0.0,9.046,0.71,0.318,0.016,2.902,0.221,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.144,0.335,15.433,9.075,0.614,0.0,0.0,0.0,0.0,7178.0,3013.9,7178.0,25.033,18.908,0.0,3.35,3.647,0.513,7.536,0.632,10.108,-12.689,0.0,0.0,0.0,8.327,-0.064,4.808,0.0,0.729,0.0,10.28,-8.908,-2.5,0.0,-0.101,-0.463,-0.052,2.687,-0.026,-1.405,11.724,0.0,0.0,0.0,-6.343,-0.06,-1.17,-3.108,-0.166,0.0,4.23,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.169,60.169,36.729,36.729,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,5.362,0.793,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.371,9.075,0.614,0.0,0.0,0.0,5.0,2098.9,3476.1,3476.1,24.074,18.323,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.099,-0.464,-0.052,2.686,-0.027,-1.41,11.73,0.0,0.0,0.0,-6.35,-0.059,-1.172,-3.109,-0.166,0.0,4.146,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.612,58.612,35.173,35.173,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.934,0.665,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.787,9.075,0.614,0.0,0.0,0.0,3.0,2098.9,3154.3,3154.3,24.074,18.785,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.117,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.109,-0.166,0.0,4.568,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,57.946,57.946,34.507,34.507,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.516,0.417,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,16.445,9.075,0.614,0.0,0.0,0.0,8.0,2098.9,2840.6,2840.6,24.074,18.031,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.154,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.114,-0.166,0.0,5.274,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-only.xml,54.843,54.843,30.726,30.726,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.643,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2091.6,1623.6,2091.6,25.358,0.0,0.0,3.488,3.648,0.513,7.514,0.632,10.112,-12.683,0.0,0.0,0.0,8.148,-0.067,4.809,0.0,0.73,0.0,6.844,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.375,41.375,41.375,41.375,0.0,0.0,0.0,0.0,0.0,0.0,6.467,0.49,0.0,0.0,3.285,0.84,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.415,0.0,13.815,9.075,0.614,0.0,0.0,0.0,0.0,3525.2,2793.2,3525.2,22.477,17.105,0.0,3.573,3.644,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.729,0.0,4.382,-8.906,-2.499,0.0,-0.03,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.106,-0.166,0.0,2.557,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.977,33.977,33.977,33.977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.473,0.168,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.745,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2665.4,2665.4,0.0,14.329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.017,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.02,-0.167,0.0,1.829,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.78,40.78,40.78,40.78,0.0,0.0,0.0,0.0,0.0,0.0,6.996,0.563,0.03,0.002,2.747,0.15,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.361,0.032,12.566,9.075,0.614,0.0,0.0,0.0,0.0,4461.3,2331.0,4461.3,19.46,14.238,0.0,3.609,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.73,0.0,3.301,-8.906,-2.499,0.0,0.02,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.103,-0.166,0.0,1.295,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,33.295,33.295,33.295,33.295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.878,0.079,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.397,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2273.8,2273.8,0.0,14.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.002,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.018,-0.167,0.0,1.467,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,33.144,33.144,33.144,33.144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.78,0.027,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2124.9,2124.9,0.0,11.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.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.614,32.614,32.614,32.614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.201,0.075,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.909,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2219.4,2219.4,0.0,13.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.016,-0.167,0.0,0.965,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.156,36.156,36.156,36.156,0.0,0.0,0.0,0.0,0.0,0.0,5.585,0.293,0.009,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.009,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3844.2,1621.8,3844.2,19.298,0.0,0.0,3.629,3.647,0.513,7.511,0.632,10.112,-12.683,0.0,0.0,0.0,8.146,-0.069,4.81,0.0,0.73,0.0,2.807,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,38.568,38.568,38.568,38.568,0.0,0.0,0.0,0.0,0.0,0.0,5.631,0.295,0.009,0.0,2.263,0.077,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.907,0.009,12.271,9.075,0.614,0.0,0.0,0.0,0.0,3844.2,2190.2,3844.2,19.298,13.794,0.0,3.625,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,2.833,-8.906,-2.499,0.0,0.029,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.102,-0.166,0.0,0.99,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.097,38.097,38.097,38.097,0.0,0.0,0.0,0.0,0.0,0.0,5.212,0.115,0.362,0.0,2.087,0.029,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.362,11.294,9.075,0.614,0.0,0.0,0.0,0.0,4409.2,2164.8,4409.2,16.439,11.922,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,44.789,44.789,35.788,35.788,9.001,0.0,0.0,0.0,0.0,0.0,3.069,0.052,0.0,0.271,2.074,0.029,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.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,17.336,7.472,11.194,9.075,0.614,0.0,0.0,1.0,0.0,2854.9,2251.5,2854.9,17.264,12.084,0.0,3.742,3.641,0.512,7.519,0.63,10.092,-12.69,0.0,0.0,0.0,8.311,-0.063,5.886,0.0,0.729,0.0,0.111,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.435,-3.05,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,24589.0,950.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.521,44.521,35.621,35.621,8.901,0.0,0.0,0.0,0.0,0.0,2.896,0.048,0.0,0.268,2.087,0.029,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,16.569,7.389,11.294,9.075,0.614,0.0,0.0,1.0,0.0,2781.4,2164.7,2781.4,17.577,11.922,0.0,3.724,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.306,-0.065,4.807,0.0,0.73,0.0,0.41,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.785,47.785,35.53,35.53,0.0,12.255,0.0,0.0,0.0,0.0,3.066,0.069,0.0,0.0,2.074,0.029,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.225,7.353,11.194,9.075,0.614,0.0,0.0,2.0,0.0,2854.9,2251.5,2854.9,16.995,12.084,0.0,3.742,3.641,0.512,7.519,0.63,10.092,-12.69,0.0,0.0,0.0,8.311,-0.063,5.886,0.0,0.729,0.0,0.0,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.435,-3.05,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.708,37.708,37.708,37.708,0.0,0.0,0.0,0.0,0.0,0.0,5.053,0.096,0.0,0.0,2.239,0.028,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3515.3,2154.3,3515.3,16.439,11.921,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,37.708,37.708,37.708,37.708,0.0,0.0,0.0,0.0,0.0,0.0,5.053,0.096,0.0,0.0,2.239,0.028,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3515.3,2154.3,3515.3,16.439,11.921,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,65.845,65.845,51.733,51.733,6.997,3.518,3.597,0.0,0.0,0.0,13.403,0.841,0.196,0.008,6.424,0.569,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.964,0.204,19.533,9.075,0.614,0.0,0.0,0.0,6.0,6443.2,4017.6,6443.2,37.547,22.98,0.0,3.431,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.887,0.0,0.728,0.0,14.991,-8.914,-2.501,0.0,-0.137,-0.455,-0.051,2.715,-0.024,-1.38,11.717,0.0,0.0,0.0,-6.3,-0.058,-1.436,-3.089,-0.164,0.0,8.444,7.864,2.008,1354.8,997.6,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,36744.0,13104.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23818.0,10360.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-none.xml,19.67,19.67,19.67,19.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,4.539,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,0.0,0.0,4.497,0.33,0.0,0.0,0.0,0.0,1280.4,1085.1,1280.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,1354.8,997.6,8369.8,2062.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1252.0,0.0,452.0,800.0 +base-hvac-ptac-with-heating-electricity.xml,50.851,50.851,50.851,50.851,0.0,0.0,0.0,0.0,0.0,0.0,16.19,0.0,0.0,0.0,4.369,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,5913.9,2889.3,5913.9,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,54.899,54.899,34.661,34.661,20.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.369,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2019.7,2889.3,2889.3,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ptac.xml,34.591,34.591,34.591,34.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.254,0.0,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2870.2,2870.2,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp-heating-capacity-17f.xml,41.792,41.792,41.792,41.792,0.0,0.0,0.0,0.0,0.0,0.0,7.228,0.0,0.047,0.0,4.225,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.047,11.294,9.075,0.614,0.0,0.0,0.0,0.0,4933.1,2869.5,4933.1,16.439,11.921,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.027,-1.409,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.171,-3.096,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-pthp.xml,41.792,41.792,41.792,41.792,0.0,0.0,0.0,0.0,0.0,0.0,7.228,0.0,0.047,0.0,4.225,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.047,11.294,9.075,0.614,0.0,0.0,0.0,0.0,4933.1,2869.5,4933.1,16.439,11.921,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.027,-1.409,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.171,-3.096,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-33percent.xml,32.203,32.203,32.203,32.203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.866,0.0,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.615,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2111.3,2111.3,0.0,3.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007,-0.156,-0.017,0.879,-0.011,-0.48,3.911,0.0,0.0,0.0,-2.283,-0.021,-0.394,-0.994,-0.055,0.0,0.0,2.642,0.672,1354.8,997.6,11171.5,2563.5,0.0,0.0,8000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-ceer.xml,35.702,35.702,35.702,35.702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.365,0.0,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,3298.0,3298.0,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-detailed-setpoints.xml,34.449,34.449,34.449,34.449,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.12,0.0,9.054,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.146,9.075,0.653,0.0,0.0,0.0,0.0,2019.6,3133.1,3133.1,0.0,10.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.145,-0.648,-0.078,2.174,-0.077,-1.993,11.85,0.0,0.0,0.0,-7.664,-0.066,-1.338,-3.396,-0.2,0.0,0.0,8.0,2.036,1354.8,997.6,11171.6,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only.xml,35.692,35.692,35.692,35.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.355,0.0,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,3294.1,3294.1,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-heating.xml,51.982,51.982,51.982,51.982,0.0,0.0,0.0,0.0,0.0,0.0,16.19,0.0,0.0,0.0,5.499,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,5913.9,3318.2,5913.9,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,41.792,41.792,41.792,41.792,0.0,0.0,0.0,0.0,0.0,0.0,7.228,0.0,0.047,0.0,4.225,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.047,11.294,9.075,0.614,0.0,0.0,0.0,0.0,4933.1,2869.5,4933.1,16.439,11.921,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.027,-1.409,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.171,-3.096,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,57.982,57.982,35.88,35.88,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.375,0.848,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.698,0.0,14.285,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.3,3421.3,23.032,19.118,0.0,3.516,3.607,0.508,7.531,0.617,9.947,-12.591,0.0,0.0,0.0,8.244,-0.034,4.753,0.0,0.723,0.0,4.802,-8.79,-2.477,0.0,-0.098,-0.501,-0.057,2.688,-0.04,-1.559,11.822,0.0,0.0,0.0,-6.415,-0.03,-1.222,-3.122,-0.173,0.0,3.171,7.988,2.033,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,57.016,57.016,35.319,35.319,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.913,0.755,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.946,0.0,12.447,9.075,0.615,0.0,0.0,101.0,55.0,2155.4,3710.5,3710.5,34.947,20.39,0.0,3.517,3.579,0.503,7.523,0.608,9.828,-12.674,0.0,0.0,0.0,8.679,0.006,4.652,0.0,0.727,0.0,4.499,-8.859,-2.496,0.0,-0.073,-0.502,-0.058,2.615,-0.042,-1.591,11.74,0.0,0.0,0.0,-6.668,-0.004,-1.223,-3.407,-0.174,0.0,2.49,7.92,2.014,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,56.386,56.386,35.47,35.47,20.915,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.048,0.783,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.498,0.0,13.071,9.075,0.616,0.0,0.0,0.0,14.0,2130.8,3597.4,3597.4,25.333,20.813,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.196,-0.023,4.639,0.0,0.724,0.0,4.386,-8.884,-2.501,0.0,-0.057,-0.497,-0.057,2.571,-0.04,-1.578,11.697,0.0,0.0,0.0,-6.644,-0.024,-1.204,-3.355,-0.177,0.0,2.635,7.896,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,41.377,41.377,34.089,34.089,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.107,0.54,9.046,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.0,9.174,9.075,0.645,0.0,0.0,0.0,0.0,2100.9,3211.6,3211.6,17.396,16.358,0.0,2.853,2.787,0.39,5.357,0.411,7.457,-12.563,0.0,0.0,0.0,5.504,-0.06,3.479,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.125,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.261,-5.126,-0.188,0.0,2.129,8.003,2.036,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-space-heater-gas-only.xml,46.293,46.293,30.268,30.268,16.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2019.6,1614.5,2019.6,16.439,0.0,0.0,3.745,3.645,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.808,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-oil-only.xml,51.59,51.59,30.334,30.334,0.0,21.257,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2022.6,1637.4,2022.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-stove-wood-pellets-only.xml,51.59,51.59,30.334,30.334,0.0,0.0,0.0,0.0,21.257,0.0,0.0,0.064,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2022.6,1637.4,2022.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,55.598,55.598,35.425,35.425,20.173,0.0,0.0,0.0,0.0,0.0,0.0,0.317,0.0,0.0,4.04,0.775,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,0.0,0.0,0.0,0.0,0.0,18.874,0.0,13.019,9.075,0.614,0.0,0.0,0.0,0.0,2106.7,3050.4,3050.4,20.398,15.909,0.0,3.624,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.311,-0.064,4.807,0.0,0.73,0.0,2.807,-8.905,-2.499,0.0,0.006,-0.465,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.102,-0.166,0.0,1.76,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,28898.0,19717.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17384.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized.xml,48.249,48.249,33.001,33.001,15.248,0.0,0.0,0.0,0.0,0.0,0.0,0.246,0.0,0.0,2.091,0.358,9.03,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,6.336,9.075,0.629,0.0,0.0,3652.0,2624.0,2087.0,1833.3,2087.0,3.839,2.674,0.0,2.699,2.924,0.409,5.375,0.449,7.904,-12.797,0.0,0.0,0.0,4.76,-0.121,3.617,0.0,0.6,0.0,9.541,-9.006,-2.517,0.0,-0.382,-0.821,-0.104,1.556,-0.119,-2.517,11.616,0.0,0.0,0.0,-8.136,-0.065,-1.431,-5.137,-0.237,0.0,2.648,7.787,1.992,1354.8,997.6,11171.5,2563.5,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17384.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-wall-furnace-elec-only.xml,46.62,46.62,46.62,46.62,0.0,0.0,0.0,0.0,0.0,0.0,16.351,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,6008.3,1614.5,6008.3,16.439,0.0,0.0,3.745,3.645,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.808,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-ceiling-fans.xml,58.564,58.564,36.318,36.318,22.245,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.306,0.831,9.014,0.0,0.0,4.51,0.0,0.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,0.0,22.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,20.832,0.0,14.07,9.075,0.612,0.0,0.0,0.0,0.0,2119.4,3806.0,3806.0,23.032,18.911,0.0,3.557,3.645,0.513,7.528,0.631,10.101,-12.683,0.0,0.0,0.0,8.298,-0.064,4.807,0.0,0.729,0.0,4.828,-8.905,-2.499,0.0,-0.096,-0.512,-0.059,2.557,-0.038,-1.551,11.73,0.0,0.0,0.0,-6.547,-0.06,-1.206,-3.271,-0.174,0.0,3.088,8.396,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-holiday.xml,58.396,58.396,36.13,36.13,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2407.8,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-kwh-per-year.xml,59.913,59.913,39.538,39.538,20.375,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.649,0.916,9.015,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.08,0.0,15.473,9.075,0.612,0.0,0.0,0.0,0.0,2414.8,3590.1,3590.1,22.763,19.626,0.0,3.59,3.667,0.516,7.602,0.636,10.162,-12.654,0.0,0.0,0.0,8.406,-0.069,4.817,0.0,0.731,0.0,4.463,-8.891,-4.249,0.0,-0.097,-0.498,-0.057,2.592,-0.035,-1.503,11.743,0.0,0.0,0.0,-6.501,-0.065,-1.196,-3.239,-0.17,0.0,3.373,7.886,3.428,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-mixed.xml,58.375,58.375,36.108,36.108,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2131.0,3427.5,3427.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none-ceiling-fans.xml,56.139,56.139,31.121,31.121,25.018,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,3.983,0.752,9.017,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.0,12.694,9.075,0.614,0.0,0.0,0.0,0.0,1722.6,3224.7,3224.7,23.408,18.18,0.0,3.512,3.616,0.509,7.437,0.625,10.031,-12.718,0.0,0.0,0.0,8.185,-0.059,4.798,0.0,0.728,0.0,5.362,-8.928,0.0,0.0,-0.037,-0.463,-0.052,2.696,-0.025,-1.404,11.719,0.0,0.0,0.0,-6.311,-0.055,-1.167,-3.071,-0.168,0.0,2.857,8.374,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-lighting-none.xml,55.77,55.77,30.73,30.73,25.039,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,4.089,0.778,9.018,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,0.0,25.039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.45,0.0,13.071,9.075,0.615,0.0,0.0,0.0,0.0,1722.6,3193.0,3193.0,23.408,18.394,0.0,3.512,3.615,0.509,7.439,0.625,10.03,-12.718,0.0,0.0,0.0,8.2,-0.059,4.798,0.0,0.728,0.0,5.366,-8.928,0.0,0.0,0.002,-0.415,-0.045,2.824,-0.014,-1.261,11.719,0.0,0.0,0.0,-6.115,-0.055,-1.132,-2.911,-0.16,0.0,2.973,7.851,0.0,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-location-AMY-2012.xml,66.976,66.976,34.799,34.799,32.177,0.0,0.0,0.0,0.0,0.0,0.0,0.523,0.0,0.0,3.0,0.508,9.424,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,0.0,32.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,30.128,0.0,8.862,9.508,0.619,0.0,0.0,0.0,0.0,2145.3,2888.8,2888.8,23.49,15.96,0.0,4.266,4.384,0.623,9.837,0.807,12.591,-13.801,0.0,0.0,0.0,10.991,-0.092,5.205,0.0,0.773,0.0,7.113,-10.172,-2.863,0.0,-0.007,-0.342,-0.042,1.616,-0.044,-1.659,9.941,0.0,0.0,0.0,-7.422,-0.082,-0.883,-2.44,-0.097,0.0,2.153,6.66,1.661,1358.5,1000.6,11355.8,2605.8,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18522.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 +base-location-baltimore-md.xml,39.142,39.142,29.933,29.933,9.208,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,5.174,1.068,8.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,0.0,9.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,0.0,0.0,8.506,0.0,17.289,8.405,0.66,0.0,0.0,0.0,0.0,1684.4,2574.3,2574.3,13.608,14.218,0.0,3.492,3.345,0.0,0.0,0.722,9.055,-8.541,0.0,0.0,3.31,0.0,-0.336,2.06,0.0,0.803,0.0,1.498,-5.842,-1.3,0.0,-0.135,-0.628,0.0,0.0,-0.007,0.03,12.018,0.0,0.0,-0.954,0.0,-0.329,-0.438,-1.537,-0.211,0.0,1.593,6.742,1.348,1354.8,997.6,10815.2,2664.9,0.0,24000.0,24000.0,0.0,17.24,91.22,18296.0,4491.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,15129.0,1173.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1875.0,594.0,480.0,800.0 +base-location-capetown-zaf.xml,28.183,28.183,28.023,28.023,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,4.338,1.043,7.511,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.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,16.618,7.296,0.693,0.0,0.0,0.0,0.0,1916.8,2396.9,2396.9,4.202,12.626,0.0,1.596,1.352,0.0,0.0,0.569,4.539,-5.631,0.0,0.0,2.602,0.0,-1.072,0.757,0.0,0.326,0.0,0.023,-4.303,-0.792,0.0,-0.907,-1.638,0.0,0.0,-0.468,-0.619,17.811,0.0,0.0,-4.251,0.0,-1.071,-0.601,-2.04,-0.407,0.0,1.031,8.28,1.855,1354.8,997.6,10368.9,2554.9,0.0,24000.0,24000.0,0.0,41.0,84.38,13253.0,5426.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13721.0,2064.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,846.0,27.0,19.0,800.0 +base-location-dallas-tx.xml,34.477,34.477,32.755,32.755,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.988,1.92,6.709,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,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.589,0.0,31.099,6.562,0.573,0.0,0.0,0.0,0.0,1932.4,2858.3,2858.3,9.692,15.095,0.0,1.711,1.591,0.0,0.0,0.368,4.651,-4.907,0.0,0.0,0.0,1.212,-0.34,0.998,0.0,0.383,0.0,0.043,-3.597,-0.743,0.0,0.508,-0.048,0.0,0.0,0.188,2.608,17.264,0.0,0.0,0.0,1.812,-0.335,-0.366,-1.955,-0.099,0.0,0.35,9.56,1.904,1354.8,997.6,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-location-duluth-mn.xml,70.562,70.562,29.751,29.751,40.81,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,2.39,0.361,11.435,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,40.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.978,0.0,5.779,11.397,0.832,0.0,0.0,0.0,0.0,1764.6,2463.9,2463.9,26.428,11.644,0.0,7.032,7.03,0.0,0.0,1.592,19.667,-13.103,0.0,0.0,9.943,0.0,-0.366,6.402,0.0,0.0,0.0,7.538,-6.247,-1.915,0.0,-0.474,-0.829,0.0,0.0,-0.101,-0.954,8.135,0.0,0.0,-1.619,0.0,-0.366,-0.533,-1.023,0.0,0.0,0.367,2.618,0.732,1354.8,997.6,11924.5,2831.6,0.0,36000.0,24000.0,0.0,-13.72,81.14,31136.0,6137.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11767.0,274.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1210.0,246.0,164.0,800.0 +base-location-helena-mt.xml,77.775,77.775,35.31,35.31,42.465,0.0,0.0,0.0,0.0,0.0,0.0,1.04,0.0,0.0,2.442,0.387,10.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,0.0,42.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.108,0.0,6.492,10.298,0.625,0.0,0.0,0.0,0.0,2236.8,3031.4,3031.4,30.328,14.971,0.0,5.359,5.464,0.773,11.523,1.049,15.462,-15.392,0.0,0.0,0.0,13.841,-0.19,7.82,0.0,1.206,0.0,8.245,-12.135,-3.367,0.0,0.002,-0.26,-0.028,1.289,0.008,-0.496,8.386,0.0,0.0,0.0,-6.087,-0.184,-0.686,-2.363,-0.123,0.0,1.356,4.654,1.142,1354.8,997.6,11614.9,2665.3,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17992.0,5113.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,81.0,0.0,-719.0,800.0 +base-location-honolulu-hi.xml,35.926,35.926,35.926,35.926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.054,2.996,4.745,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,0.0,48.75,4.497,0.55,0.0,0.0,0.0,0.0,2121.9,2146.1,2334.7,0.0,13.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.238,0.753,0.0,0.0,0.303,5.283,20.458,0.0,0.0,0.0,6.02,-0.004,-0.044,-1.672,0.062,0.0,0.706,13.134,2.647,1354.8,997.6,8369.7,2062.3,0.0,12000.0,24000.0,0.0,63.32,89.06,3432.0,606.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,12993.0,-9.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1831.0,580.0,452.0,800.0 +base-location-miami-fl.xml,35.082,35.082,35.082,35.082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.285,2.792,4.875,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,0.0,45.284,4.634,0.551,0.0,0.0,0.0,0.0,2098.4,2422.1,2422.1,0.0,13.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,1.018,0.586,0.0,0.0,0.307,4.475,19.646,0.0,0.0,0.0,5.54,-0.004,-0.213,-2.328,-0.004,0.0,0.653,13.135,2.647,1354.8,997.6,8452.7,2082.8,0.0,12000.0,24000.0,0.0,51.62,90.68,8634.0,810.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,646.0,13278.0,-259.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2519.0,954.0,765.0,800.0 +base-location-phoenix-az.xml,38.779,38.779,38.778,38.778,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.529,3.014,5.104,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.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,0.0,53.038,4.873,0.556,0.0,0.0,0.0,0.0,2458.6,3351.3,3351.3,0.564,18.406,0.0,0.703,0.517,0.0,0.0,0.205,2.241,-1.843,0.0,0.0,0.0,-0.075,-0.467,0.365,0.0,0.122,0.0,-0.0,-1.611,-0.274,0.0,1.761,1.4,0.0,0.0,0.802,6.859,24.223,0.0,0.0,0.0,7.006,-0.479,0.01,-3.136,0.116,0.0,0.92,11.529,2.373,1354.8,997.6,8260.4,2035.4,0.0,24000.0,24000.0,0.0,41.36,108.14,13297.0,1076.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1035.0,18550.0,658.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 +base-location-portland-or.xml,37.155,37.155,27.618,27.618,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,2.946,0.564,8.939,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,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,9.043,8.727,0.78,0.0,0.0,0.0,0.0,1685.4,2715.8,2715.8,8.448,14.135,0.0,3.436,3.276,0.0,0.0,0.748,8.757,-8.143,0.0,0.0,6.216,0.0,-0.442,1.469,0.0,0.81,0.0,1.633,-7.49,-1.648,0.0,-0.327,-0.797,0.0,0.0,-0.01,-0.756,10.358,0.0,0.0,-2.964,0.0,-0.439,-0.366,-1.84,-0.257,0.0,0.567,5.094,0.999,1354.8,997.6,11014.7,2714.0,0.0,24000.0,24000.0,0.0,28.58,87.08,17543.0,6253.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,15209.0,2155.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 +base-mechvent-balanced.xml,79.552,79.552,37.764,37.764,41.788,0.0,0.0,0.0,0.0,0.0,0.0,0.689,0.0,0.0,4.192,0.791,9.022,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,0.0,41.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.138,0.0,13.265,9.075,0.62,0.0,0.0,0.0,2.0,2207.2,3818.5,3818.5,32.383,20.91,0.0,3.502,3.716,0.523,7.451,0.654,10.375,-12.838,0.0,0.0,0.0,8.166,-0.114,5.497,0.0,15.075,0.0,8.573,-9.173,-2.568,0.0,0.144,-0.259,-0.023,3.003,0.031,-0.717,11.576,0.0,0.0,0.0,-5.946,-0.11,-1.02,-2.551,-3.554,0.0,3.224,7.611,1.941,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5342.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-bath-kitchen-fans.xml,59.975,59.975,36.023,36.023,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.376,0.847,9.016,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,0.0,23.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,22.43,0.0,14.266,9.075,0.614,0.0,0.0,0.0,0.0,2158.0,3615.5,3615.5,24.906,20.551,0.0,3.547,3.643,0.513,7.527,0.631,10.093,-12.692,0.0,0.0,0.0,8.326,-0.059,4.321,0.0,2.474,0.0,5.168,-8.912,-2.501,0.0,-0.042,-0.451,-0.05,2.727,-0.023,-1.37,11.721,0.0,0.0,0.0,-6.275,-0.056,-1.046,-3.038,-0.687,0.0,3.188,7.867,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,72.901,72.901,37.671,37.671,35.231,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,0.0,4.282,0.816,9.02,0.0,0.0,4.51,0.0,0.334,1.695,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.997,0.0,13.701,9.075,0.618,0.0,0.0,0.0,0.0,2174.2,3597.8,3597.8,29.389,20.853,0.0,3.484,3.659,0.515,7.505,0.637,10.165,-12.749,0.0,0.0,0.0,8.338,-0.07,1.505,0.0,13.86,0.0,7.362,-9.0,-2.522,0.0,0.036,-0.367,-0.038,2.917,0.001,-1.081,11.664,0.0,0.0,0.0,-5.978,-0.066,-0.256,-2.751,-3.283,0.0,3.25,7.782,1.988,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-dse.xml,73.017,73.017,38.627,38.627,34.39,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,5.004,0.911,9.02,0.0,0.0,4.51,0.0,0.334,1.848,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.747,0.0,10.529,9.075,0.618,0.0,0.0,0.0,0.0,2173.6,2798.3,2798.3,21.242,13.449,0.0,3.757,3.654,0.514,7.497,0.636,10.158,-12.737,0.0,0.0,0.0,8.324,-0.073,1.505,0.0,13.737,0.0,0.0,-8.997,-2.521,0.0,0.127,-0.369,-0.038,2.916,0.001,-1.083,11.676,0.0,0.0,0.0,-5.982,-0.069,-0.256,-2.741,-3.253,0.0,0.0,7.785,1.989,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-evap-cooler-only-ducted.xml,34.022,34.022,34.022,34.022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.914,9.084,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,0.0,0.0,11.391,9.075,0.687,0.0,0.0,0.0,0.0,2119.8,2031.0,2119.8,0.0,18.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.146,-0.36,-0.036,2.984,-0.004,-1.109,11.85,0.0,0.0,0.0,-6.577,-0.059,-0.257,-2.577,-3.1,0.0,0.643,8.012,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,70.121,70.121,36.324,36.324,33.797,0.0,0.0,0.0,0.0,0.0,0.0,0.558,0.0,0.0,4.194,0.795,9.021,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,0.0,33.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,31.654,0.0,13.35,9.075,0.619,0.0,0.0,0.0,0.0,2131.0,3597.8,3597.8,29.39,20.838,0.0,3.517,3.68,0.518,7.479,0.643,10.242,-12.776,0.0,0.0,0.0,8.264,-0.086,1.917,0.0,12.478,0.0,7.088,-9.068,-2.54,0.0,0.091,-0.314,-0.031,2.98,0.015,-0.906,11.637,0.0,0.0,0.0,-5.925,-0.082,-0.256,-2.616,-4.008,0.0,3.173,7.715,1.97,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-supply.xml,72.242,72.242,36.351,36.351,35.891,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.2,0.796,9.021,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,0.0,35.891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.616,0.0,13.348,9.075,0.619,0.0,0.0,0.0,0.0,2161.0,3597.7,3597.7,29.39,20.842,0.0,3.491,3.668,0.516,7.49,0.64,10.204,-12.763,0.0,0.0,0.0,8.302,-0.081,1.508,0.0,14.424,0.0,7.476,-9.034,-2.53,0.0,0.067,-0.338,-0.034,2.955,0.009,-0.983,11.65,0.0,0.0,0.0,-5.938,-0.077,-0.246,-2.659,-3.883,0.0,3.198,7.749,1.98,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis.xml,74.112,74.112,37.603,37.603,36.51,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.229,0.802,9.021,0.0,0.0,4.51,0.0,0.334,1.672,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.195,0.0,13.453,9.075,0.618,0.0,0.0,0.0,0.0,2171.8,3671.6,3671.6,29.388,20.835,0.0,3.49,3.703,0.521,7.473,0.651,10.331,-12.78,0.0,0.0,0.0,8.223,-0.114,1.519,0.0,14.05,0.0,8.491,-9.097,-2.548,0.0,0.142,-0.305,-0.029,2.935,0.02,-0.861,11.633,0.0,0.0,0.0,-6.011,-0.11,-0.235,-2.664,-3.054,0.0,2.492,7.686,1.962,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv-atre-asre.xml,65.017,65.017,37.795,37.795,27.222,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.407,0.852,9.018,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,0.0,27.222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.494,0.0,14.334,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3624.1,3624.1,25.349,20.26,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.906,0.0,5.81,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.057,-1.258,-2.954,-0.853,0.0,3.261,7.851,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-erv.xml,65.021,65.021,37.795,37.795,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.407,0.852,9.018,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,0.0,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.497,0.0,14.334,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3624.2,3624.2,25.35,20.26,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.909,0.0,5.811,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.258,-2.954,-0.854,0.0,3.261,7.851,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19144.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust-rated-flow-rate.xml,73.787,73.787,36.76,36.76,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.168,0.787,9.021,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,0.0,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.678,0.0,13.2,9.075,0.619,0.0,0.0,0.0,0.0,2164.0,3627.8,3627.8,29.44,20.863,0.0,3.5,3.682,0.518,7.48,0.643,10.243,-12.791,0.0,0.0,0.0,8.263,-0.082,1.462,0.0,15.396,0.0,7.675,-9.072,-2.541,0.0,0.094,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.923,-0.078,-0.232,-2.607,-4.199,0.0,3.184,7.711,1.968,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust.xml,73.787,73.787,36.76,36.76,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.168,0.787,9.021,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,0.0,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.678,0.0,13.2,9.075,0.619,0.0,0.0,0.0,0.0,2164.0,3627.8,3627.8,29.44,20.863,0.0,3.5,3.682,0.518,7.48,0.643,10.243,-12.791,0.0,0.0,0.0,8.263,-0.082,1.462,0.0,15.396,0.0,7.675,-9.072,-2.541,0.0,0.094,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.923,-0.078,-0.232,-2.607,-4.199,0.0,3.184,7.711,1.968,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv-asre.xml,65.018,65.018,37.799,37.799,27.22,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.409,0.853,9.018,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,0.0,27.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,25.492,0.0,14.336,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3625.3,3625.3,25.348,20.261,0.0,3.52,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.904,0.0,5.81,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.057,-1.258,-2.954,-0.852,0.0,3.263,7.851,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv.xml,65.021,65.021,37.799,37.799,27.223,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.409,0.853,9.018,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,0.0,27.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.495,0.0,14.336,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3625.4,3625.4,25.349,20.262,0.0,3.52,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.906,0.0,5.81,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.258,-2.954,-0.853,0.0,3.263,7.851,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19144.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-multiple.xml,80.721,80.721,38.234,38.234,42.487,0.0,0.0,0.0,0.0,0.0,0.0,0.698,0.0,0.0,4.557,0.697,9.024,0.0,0.0,4.51,0.0,0.334,1.575,0.0,0.0,0.405,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.794,0.0,11.684,9.075,0.622,0.0,0.0,0.0,22.0,2271.7,3653.3,3653.3,35.903,22.624,0.0,3.183,3.709,0.522,7.491,0.652,10.33,-12.791,0.0,0.0,0.0,8.289,-0.106,3.845,0.0,9.548,0.0,16.428,-9.091,-2.547,0.0,0.052,-0.213,-0.016,3.196,0.041,-0.606,11.623,0.0,0.0,0.0,-5.618,-0.101,-0.613,0.0,-2.152,-8.169,4.731,7.695,1.963,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24528.0,10278.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-supply.xml,72.37,72.37,36.832,36.832,35.538,0.0,0.0,0.0,0.0,0.0,0.0,0.586,0.0,0.0,4.245,0.807,9.021,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,0.0,35.538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.284,0.0,13.531,9.075,0.618,0.0,0.0,0.0,0.0,2190.3,3627.7,3627.7,29.255,20.864,0.0,3.493,3.667,0.516,7.492,0.64,10.201,-12.763,0.0,0.0,0.0,8.307,-0.08,1.508,0.0,14.154,0.0,7.409,-9.032,-2.53,0.0,0.063,-0.34,-0.034,2.955,0.009,-0.988,11.65,0.0,0.0,0.0,-5.936,-0.076,-0.247,-2.665,-3.722,0.0,3.233,7.75,1.98,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 +base-mechvent-whole-house-fan.xml,56.716,56.716,34.269,34.269,22.446,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,2.535,0.4,9.024,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.664,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.021,0.0,6.56,9.075,0.622,0.0,0.0,0.0,0.0,2119.4,3442.0,3442.0,23.032,16.245,0.0,3.554,3.643,0.513,7.547,0.63,10.093,-12.683,0.0,0.0,0.0,8.434,-0.057,4.805,0.0,0.729,0.0,4.871,-8.905,-2.499,0.0,0.088,-0.266,-0.023,3.27,0.022,-0.818,11.73,0.0,0.0,0.0,-5.409,-0.053,-0.992,0.0,-0.135,-11.71,1.806,7.881,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-additional-properties.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-none.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-detailed-only.xml,58.197,31.311,35.931,9.044,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-mixed.xml,58.197,31.311,35.931,9.044,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv.xml,58.197,0.934,35.931,-21.333,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-bills.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,63.307,43.858,31.515,12.065,31.792,0.0,0.0,0.0,0.0,0.0,0.0,0.524,0.0,0.0,2.267,0.338,2.103,0.0,0.313,4.51,0.0,0.334,1.118,0.0,0.0,1.081,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.45,0.0,0.507,31.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.759,0.0,5.464,10.472,0.696,0.0,9.068,0.0,0.0,2428.3,2982.4,2982.4,26.046,15.217,0.0,3.491,3.687,0.518,7.47,1.119,10.315,-12.806,0.0,0.0,0.0,8.267,-0.095,1.531,0.0,15.069,0.0,2.756,-9.283,-2.557,0.0,0.69,-0.095,0.001,3.444,-0.195,-0.322,11.607,0.0,0.0,0.0,-5.223,-0.091,-0.199,0.0,-3.419,-10.855,0.449,8.628,1.952,1610.4,1574.2,10318.8,3636.5,2.873,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-emissions.xml,59.016,32.13,36.75,9.863,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.819,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2176.0,3497.5,3497.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,13.682,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery-scheduled.xml,76.932,68.743,37.665,29.476,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.735,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,1.707,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery.xml,75.197,67.008,35.931,27.742,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators.xml,75.197,67.008,35.931,27.742,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-ground-conductivity.xml,55.888,55.888,35.854,35.854,20.034,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,4.383,0.85,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.76,0.0,14.314,9.075,0.613,0.0,0.0,0.0,0.0,2120.8,3428.3,3428.3,22.146,19.178,0.0,3.593,3.668,0.516,7.311,0.636,10.165,-12.663,0.0,0.0,0.0,6.694,-0.064,4.813,0.0,0.731,0.0,4.399,-8.891,-2.496,0.0,-0.066,-0.474,-0.053,2.388,-0.029,-1.439,11.75,0.0,0.0,0.0,-6.137,-0.059,-1.181,-3.121,-0.168,0.0,3.192,7.886,2.014,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8588.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon.xml,146.132,146.132,68.391,68.391,69.746,0.0,2.499,5.496,0.0,0.0,0.0,0.28,0.0,0.0,5.409,1.107,9.012,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,0.0,16.981,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,15.9,0.0,18.753,9.075,0.609,0.0,0.0,0.0,0.0,3267.1,5181.8,5181.8,21.946,20.73,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.832,0.0,0.734,0.0,3.78,-13.808,-2.35,0.0,-0.201,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.271,-3.573,-0.181,0.0,3.874,13.226,2.158,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon2.xml,92.616,92.616,64.841,64.841,19.779,2.499,0.0,0.0,5.496,0.0,0.0,0.28,0.0,0.0,5.409,1.107,9.012,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,0.0,16.981,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,15.9,0.0,18.753,9.075,0.609,0.0,0.0,0.0,0.0,3218.2,4779.3,4779.3,21.946,20.73,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.832,0.0,0.734,0.0,3.78,-13.808,-2.35,0.0,-0.201,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.271,-3.573,-0.181,0.0,3.874,13.226,2.158,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-misc-loads-none.xml,52.934,52.934,24.686,24.686,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,3.725,0.689,9.02,0.0,0.0,4.51,0.0,0.334,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,0.0,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.457,0.0,11.563,9.075,0.617,0.0,0.0,0.0,0.0,1514.6,2831.7,2831.7,24.266,17.326,0.0,3.475,3.599,0.506,7.396,0.622,9.986,-12.73,0.0,0.0,0.0,8.165,-0.054,4.795,0.0,0.726,0.0,5.972,-3.801,-2.512,0.0,0.056,-0.368,-0.038,2.973,-0.001,-1.105,11.683,0.0,0.0,0.0,-5.88,-0.05,-1.085,-2.701,-0.152,0.0,2.706,3.706,1.998,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-neighbor-shading-bldgtype-multifamily.xml,26.466,26.466,25.631,25.631,0.835,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.569,0.438,9.536,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.835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.772,0.0,7.007,9.374,0.585,0.0,0.0,0.0,0.0,1640.8,2079.1,2079.1,3.335,8.14,0.0,-0.013,3.83,0.0,0.0,0.417,4.067,-3.186,0.0,0.0,-0.01,0.0,-0.312,1.311,0.0,0.761,0.0,0.0,-5.319,-0.936,0.0,-0.008,-2.783,0.0,0.0,-0.012,-0.688,5.017,0.0,0.0,-0.005,0.0,-0.303,-0.394,-1.178,-0.271,0.0,0.0,6.656,1.09,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-misc-neighbor-shading.xml,63.226,63.226,35.673,35.673,27.553,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,4.134,0.79,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,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.803,0.0,13.302,9.075,0.615,0.0,0.0,0.0,0.0,2119.3,3351.5,3351.5,23.266,18.474,0.0,3.479,3.709,0.541,7.36,0.776,10.707,-8.74,0.0,0.0,0.0,7.861,-0.057,4.786,0.0,0.724,0.0,5.781,-8.918,-2.502,0.0,-0.014,-0.467,-0.054,2.778,-0.04,-1.339,10.323,0.0,0.0,0.0,-6.182,-0.052,-1.149,-2.99,-0.162,0.0,2.965,7.861,2.008,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-shielding-of-home.xml,57.859,57.859,36.073,36.073,21.787,0.0,0.0,0.0,0.0,0.0,0.0,0.359,0.0,0.0,4.533,0.888,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.403,0.0,14.992,9.075,0.613,0.0,0.0,0.0,0.0,2130.6,3535.8,3535.8,23.012,19.034,0.0,3.562,3.647,0.513,7.535,0.631,10.101,-12.683,0.0,0.0,0.0,8.308,-0.061,4.424,0.0,0.73,0.0,4.741,-8.899,-2.498,0.0,-0.07,-0.476,-0.054,2.649,-0.03,-1.451,11.73,0.0,0.0,0.0,-6.41,-0.058,-1.066,-2.609,-0.168,0.0,3.276,7.878,2.012,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31389.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18685.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,106.0,0.0,-694.0,800.0 +base-misc-usage-multiplier.xml,126.054,126.054,50.774,50.774,68.084,0.0,2.249,4.947,0.0,0.0,0.0,0.34,0.0,0.0,4.686,0.925,8.17,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,0.0,20.596,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.287,0.0,15.608,8.168,0.612,0.0,0.0,0.0,0.0,2729.6,4428.5,4428.5,22.733,19.742,0.0,3.581,3.659,0.515,7.576,0.633,10.138,-12.664,0.0,0.0,0.0,8.363,-0.065,4.863,0.0,0.658,0.0,4.503,-10.586,-2.246,0.0,-0.096,-0.496,-0.056,2.596,-0.035,-1.507,11.751,0.0,0.0,0.0,-6.491,-0.062,-1.211,-3.25,-0.153,0.0,3.386,9.606,1.813,1219.3,897.9,10054.4,2307.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-pv-battery-ah.xml,59.016,32.13,36.75,9.863,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.819,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2176.0,3497.5,3497.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,13.682,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-garage.xml,59.393,32.506,35.459,8.572,23.934,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.107,0.552,9.117,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.886,0.0,0.87,23.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.408,0.0,9.142,9.075,0.722,0.0,0.0,0.0,0.0,2200.9,2712.0,2712.0,18.031,11.774,0.0,3.532,3.792,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.368,0.0,0.0,0.0,3.763,-6.763,-2.508,0.0,0.104,-0.282,-0.037,2.418,-0.001,-1.134,8.269,0.0,0.0,0.0,-5.68,-0.041,-1.226,-2.106,0.0,0.0,1.34,5.683,2.002,1354.8,997.6,11171.6,2563.5,17.356,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15522.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-round-trip-efficiency.xml,60.371,33.485,38.105,11.219,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,2.174,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2301.3,3637.6,3637.6,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,4.388,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-scheduled.xml,59.932,33.045,37.665,10.779,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,5.642,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery.xml,59.016,32.13,36.75,9.863,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.819,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2176.0,3497.5,3497.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,13.682,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery-scheduled.xml,76.932,41.856,37.665,2.59,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.735,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,16.994,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery.xml,76.043,40.967,36.777,1.701,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.846,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2165.1,3486.7,3486.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,84.182,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators.xml,75.197,40.122,35.931,0.855,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv.xml,58.197,31.311,35.931,9.044,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-residents-0-runperiod-1-month.xml,8.7747,8.7747,0.4299,0.4299,8.3448,0.0,0.0,0.0,0.0,0.0,0.0,0.1377,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.3448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8115,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.16,0.0,556.16,26.8895,0.0,0.0,0.6029,0.6429,0.0909,1.7457,0.1095,1.7779,-1.9884,0.0,0.0,0.0,2.2351,-0.0005,1.0002,0.0,0.0,0.0,1.7427,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-residents-0.xml,41.422,41.422,7.378,7.378,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.403,0.618,0.576,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.0,0.0,0.0,0.0,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.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.888,0.0,10.868,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2257.1,2257.1,25.495,15.665,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.996,-0.063,5.417,0.0,0.0,0.0,7.057,-1.409,0.0,0.0,0.15,-0.28,-0.026,3.179,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.472,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon.xml,101.165,101.165,52.126,52.126,41.133,0.0,2.609,5.297,0.0,0.0,0.0,0.345,0.0,0.0,4.607,0.907,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,0.0,20.911,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.583,0.0,15.487,3.62,0.613,0.0,0.0,0.0,0.0,2589.3,4556.0,4556.0,22.986,19.677,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.814,0.0,0.729,0.0,4.575,-10.198,-2.496,0.0,-0.096,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.194,-3.22,-0.169,0.0,3.382,9.248,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon2.xml,80.111,80.111,49.7,49.7,22.505,2.609,0.0,0.0,5.297,0.0,0.0,0.345,0.0,0.0,4.607,0.907,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,0.0,20.911,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.583,0.0,15.487,3.62,0.613,0.0,0.0,0.0,0.0,2391.0,4296.3,4296.3,22.986,19.677,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.814,0.0,0.729,0.0,4.575,-10.198,-2.496,0.0,-0.096,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.194,-3.22,-0.169,0.0,3.382,9.248,2.014,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1.xml,52.865,52.865,28.494,28.494,24.371,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,4.081,0.777,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,0.0,24.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,22.824,0.0,13.244,3.62,0.615,0.0,0.0,0.0,0.0,1659.3,3260.9,3260.9,23.631,18.44,0.0,3.532,3.634,0.511,7.494,0.629,10.079,-12.698,0.0,0.0,0.0,8.289,-0.064,4.803,0.0,0.727,0.0,5.251,-7.189,-2.504,0.0,-0.017,-0.432,-0.047,2.784,-0.017,-1.299,11.715,0.0,0.0,0.0,-6.191,-0.06,-1.136,-2.934,-0.161,0.0,3.015,6.197,2.006,777.8,496.4,4294.1,850.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-5.xml,69.637,49.386,40.123,19.872,29.514,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,2.386,0.366,7.153,0.0,0.327,4.51,0.0,0.334,1.118,0.0,0.0,1.107,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.251,0.0,0.39,29.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.625,0.0,5.885,18.47,0.643,0.0,11.969,0.0,0.0,3177.0,3224.3,3224.3,25.599,15.569,0.0,3.796,3.691,0.519,7.524,0.645,10.259,-12.764,0.0,0.0,0.0,8.385,-0.078,1.524,0.0,14.999,0.0,2.562,-11.178,-2.536,0.0,0.218,-0.167,-0.01,3.395,0.049,-0.49,11.649,0.0,0.0,0.0,-5.263,-0.074,-0.214,0.0,-3.588,-11.536,0.482,10.474,1.974,2592.2,2706.5,21147.6,5662.4,1.824,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-all-10-mins.xml,59.723,59.723,36.325,36.325,23.397,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.59,0.894,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.91,0.0,15.004,9.21,0.638,0.0,0.0,0.333,1.333,9422.1,10708.7,10708.7,37.366,21.894,0.0,3.607,3.669,0.517,7.596,0.642,10.189,-12.601,0.0,0.0,0.0,8.33,-0.062,5.307,0.0,0.775,0.0,5.11,-8.969,-2.509,0.0,-0.179,-0.489,-0.056,2.704,-0.032,-1.437,11.752,0.0,0.0,0.0,-6.329,-0.058,-1.279,-3.004,-0.179,0.0,3.436,8.307,2.0,1354.7,998.0,11489.6,2636.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps-power-outage.xml,33.63,33.63,28.785,28.785,4.845,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.304,0.58,7.441,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,4.538,0.0,9.824,7.426,0.56,0.0,0.0,0.5,0.667,9397.3,10444.5,10444.5,41.543,21.475,0.0,2.617,2.464,0.344,4.289,0.336,6.501,-12.497,0.0,0.0,0.0,3.691,-0.104,3.39,0.0,0.384,0.0,1.013,-6.566,-1.596,0.0,-0.248,-0.599,-0.072,2.363,-0.065,-1.808,11.861,0.0,0.0,0.0,-7.639,-0.059,-1.386,-4.977,-0.212,0.0,2.361,8.448,2.023,1141.2,883.5,9401.6,2157.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps.xml,42.569,42.569,34.517,34.517,8.052,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.316,0.583,9.198,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,9.873,9.21,0.669,0.0,0.0,0.0,0.667,9393.9,10447.5,10447.5,31.865,21.476,0.0,2.918,2.81,0.394,5.403,0.421,7.525,-12.492,0.0,0.0,0.0,5.506,-0.059,3.865,0.0,0.581,0.0,1.73,-8.86,-2.486,0.0,-0.252,-0.602,-0.072,2.368,-0.066,-1.818,11.861,0.0,0.0,0.0,-7.571,-0.058,-1.388,-4.989,-0.212,0.0,2.371,8.448,2.023,1354.7,998.0,11490.8,2636.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.133,59.133,36.24,36.24,22.893,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.506,0.88,9.085,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.435,0.0,14.798,9.148,0.615,0.0,0.0,0.0,0.0,6842.0,7475.7,9098.5,31.352,20.86,0.0,3.558,3.649,0.513,7.536,0.632,10.11,-12.685,0.0,0.0,0.0,8.318,-0.06,5.322,0.0,0.764,0.0,4.945,-8.988,-2.501,0.0,-0.056,-0.46,-0.051,2.692,-0.025,-1.398,11.729,0.0,0.0,0.0,-6.34,-0.055,-1.287,-3.092,-0.189,0.0,3.271,8.364,1.98,1002.6,945.2,11591.4,2659.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,44.73,44.73,30.385,30.385,14.345,0.0,0.0,0.0,0.0,0.0,0.0,0.237,0.0,0.0,4.476,0.872,7.411,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,13.438,0.0,14.68,7.439,0.517,0.0,0.0,17.0,0.0,6231.1,5705.4,6231.1,36.507,20.005,0.0,3.075,3.07,0.431,5.717,0.489,8.386,-12.686,0.0,0.0,0.0,5.188,-0.154,4.374,0.0,0.513,0.0,3.019,-6.681,-1.621,0.0,-0.056,-0.461,-0.051,2.676,-0.025,-1.397,11.731,0.0,0.0,0.0,-6.442,-0.057,-1.272,-3.091,-0.186,0.0,3.248,8.281,2.006,1141.2,883.5,9318.8,2138.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon.xml,101.111,101.111,52.071,52.071,41.133,0.0,2.609,5.297,0.0,0.0,0.0,0.345,0.0,0.0,4.607,0.907,3.885,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,0.0,20.911,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.583,0.0,15.487,3.562,0.613,0.0,0.0,0.0,0.0,2604.8,4555.8,4555.8,22.989,19.677,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.814,0.0,0.729,0.0,4.575,-10.198,-2.496,0.0,-0.096,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.194,-3.22,-0.169,0.0,3.382,9.248,2.014,777.8,496.4,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon2.xml,80.056,80.056,49.645,49.645,22.505,2.609,0.0,0.0,5.297,0.0,0.0,0.345,0.0,0.0,4.607,0.907,3.885,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,0.0,20.911,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.583,0.0,15.487,3.562,0.613,0.0,0.0,0.0,0.0,2406.4,4296.1,4296.1,22.989,19.677,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.814,0.0,0.729,0.0,4.575,-10.198,-2.496,0.0,-0.096,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.194,-3.22,-0.169,0.0,3.382,9.248,2.014,777.8,496.4,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-residents-1.xml,52.81,52.81,28.439,28.439,24.371,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,4.081,0.777,3.887,0.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,0.0,24.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,22.824,0.0,13.244,3.562,0.615,0.0,0.0,0.0,0.0,1640.1,3237.9,3237.9,23.634,18.44,0.0,3.532,3.634,0.511,7.494,0.629,10.079,-12.698,0.0,0.0,0.0,8.289,-0.064,4.803,0.0,0.727,0.0,5.251,-7.189,-2.504,0.0,-0.017,-0.432,-0.047,2.784,-0.017,-1.299,11.715,0.0,0.0,0.0,-6.191,-0.06,-1.136,-2.934,-0.161,0.0,3.015,6.197,2.006,777.8,496.4,4208.3,833.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,69.406,49.155,39.892,19.641,29.514,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,2.386,0.366,6.918,0.0,0.326,4.51,0.0,0.334,1.118,0.0,0.0,1.107,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.251,0.0,0.395,29.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.625,0.0,5.885,18.165,0.644,0.0,11.901,0.0,0.0,3043.8,3224.5,3224.5,25.599,15.571,0.0,3.796,3.691,0.519,7.524,0.645,10.259,-12.764,0.0,0.0,0.0,8.385,-0.078,1.524,0.0,14.999,0.0,2.562,-11.178,-2.536,0.0,0.218,-0.167,-0.01,3.395,0.049,-0.49,11.649,0.0,0.0,0.0,-5.263,-0.074,-0.214,0.0,-3.588,-11.536,0.482,10.475,1.974,2592.1,2706.5,20695.1,5541.3,1.837,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-all-10-mins.xml,59.576,59.576,36.179,36.179,23.397,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.59,0.894,9.022,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.91,0.0,15.004,9.053,0.638,0.0,0.0,0.333,1.333,9422.1,10717.0,10717.0,37.366,21.894,0.0,3.607,3.669,0.517,7.596,0.642,10.189,-12.601,0.0,0.0,0.0,8.33,-0.062,5.307,0.0,0.775,0.0,5.11,-8.969,-2.509,0.0,-0.179,-0.489,-0.056,2.704,-0.032,-1.437,11.752,0.0,0.0,0.0,-6.329,-0.058,-1.279,-3.004,-0.179,0.0,3.436,8.308,2.0,1354.7,998.0,11252.3,2582.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,33.513,33.513,28.668,28.668,4.845,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.304,0.58,7.324,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,4.538,0.0,9.824,7.3,0.56,0.0,0.0,0.5,0.667,9397.2,10452.9,10452.9,41.543,21.475,0.0,2.617,2.464,0.344,4.289,0.336,6.501,-12.497,0.0,0.0,0.0,3.691,-0.104,3.39,0.0,0.384,0.0,1.013,-6.566,-1.596,0.0,-0.248,-0.599,-0.072,2.363,-0.065,-1.808,11.861,0.0,0.0,0.0,-7.639,-0.059,-1.386,-4.977,-0.212,0.0,2.361,8.448,2.023,1141.2,883.5,9207.0,2112.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps.xml,42.423,42.423,34.37,34.37,8.052,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.316,0.583,9.051,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,9.873,9.053,0.67,0.0,0.0,0.0,0.667,9393.8,10455.9,10455.9,31.865,21.476,0.0,2.918,2.81,0.394,5.403,0.421,7.525,-12.492,0.0,0.0,0.0,5.506,-0.059,3.865,0.0,0.581,0.0,1.73,-8.86,-2.486,0.0,-0.252,-0.602,-0.072,2.368,-0.066,-1.818,11.861,0.0,0.0,0.0,-7.571,-0.058,-1.388,-4.99,-0.212,0.0,2.371,8.448,2.023,1354.7,998.0,11253.5,2582.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,58.983,58.983,36.09,36.09,22.893,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.506,0.88,8.936,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.435,0.0,14.798,8.987,0.615,0.0,0.0,0.0,0.0,6629.1,7202.8,9091.3,31.35,20.86,0.0,3.558,3.649,0.513,7.536,0.632,10.11,-12.685,0.0,0.0,0.0,8.318,-0.06,5.322,0.0,0.764,0.0,4.945,-8.988,-2.501,0.0,-0.056,-0.46,-0.051,2.692,-0.025,-1.398,11.729,0.0,0.0,0.0,-6.34,-0.055,-1.287,-3.092,-0.189,0.0,3.271,8.364,1.98,1002.6,945.2,11359.3,2606.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,44.612,44.612,30.267,30.267,14.345,0.0,0.0,0.0,0.0,0.0,0.0,0.237,0.0,0.0,4.476,0.872,7.293,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,13.438,0.0,14.68,7.313,0.517,0.0,0.0,17.0,0.0,6231.1,5704.5,6231.1,36.507,20.005,0.0,3.075,3.07,0.431,5.717,0.489,8.386,-12.686,0.0,0.0,0.0,5.187,-0.154,4.374,0.0,0.513,0.0,3.019,-6.68,-1.621,0.0,-0.056,-0.461,-0.051,2.676,-0.025,-1.397,11.731,0.0,0.0,0.0,-6.442,-0.057,-1.272,-3.091,-0.186,0.0,3.248,8.28,2.006,1141.2,883.5,9132.4,2095.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.422,41.422,7.378,7.378,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.403,0.618,0.576,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.0,0.0,0.0,0.0,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.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.888,0.0,10.868,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2257.1,2257.1,25.495,15.665,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.996,-0.063,5.417,0.0,0.0,0.0,7.057,-1.409,0.0,0.0,0.15,-0.28,-0.026,3.179,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.472,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,57.767,57.767,30.975,30.975,26.792,0.0,0.0,0.0,0.0,0.0,0.0,0.442,0.0,0.0,4.495,0.877,7.485,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.09,0.0,14.759,7.43,0.614,0.0,0.0,0.0,0.0,4455.5,5711.8,5711.8,30.777,20.061,0.0,3.504,3.622,0.51,7.453,0.626,10.041,-12.679,0.0,0.0,0.0,8.149,-0.064,5.305,0.0,0.514,0.0,5.697,-6.297,-1.615,0.0,-0.061,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.358,-0.059,-1.276,-3.102,-0.186,0.0,3.261,8.287,2.008,1141.2,883.5,9304.1,2135.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic.xml,59.066,59.066,36.197,36.197,22.869,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.496,0.877,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.414,0.0,14.762,9.229,0.614,0.0,0.0,0.0,0.0,4580.8,5712.0,5712.0,30.65,20.063,0.0,3.553,3.644,0.513,7.53,0.631,10.102,-12.674,0.0,0.0,0.0,8.308,-0.063,5.265,0.0,0.777,0.0,4.943,-8.954,-2.502,0.0,-0.061,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.355,-0.059,-1.276,-3.103,-0.186,0.0,3.262,8.287,2.008,1354.7,998.0,11396.5,2615.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-schedules.xml,57.163,57.163,35.466,35.466,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.913,0.755,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,0.0,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.946,0.0,12.447,9.233,0.615,0.0,0.0,101.0,55.0,2152.1,3586.3,3586.3,34.947,20.39,0.0,3.517,3.579,0.503,7.523,0.608,9.828,-12.674,0.0,0.0,0.0,8.679,0.006,4.652,0.0,0.727,0.0,4.499,-8.859,-2.496,0.0,-0.073,-0.502,-0.058,2.615,-0.042,-1.591,11.74,0.0,0.0,0.0,-6.668,-0.004,-1.223,-3.407,-0.174,0.0,2.49,7.92,2.014,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-setbacks.xml,56.534,56.534,35.618,35.618,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.048,0.783,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,0.0,20.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.498,0.0,13.07,9.233,0.616,0.0,0.0,0.0,14.0,2137.2,3597.9,3597.9,25.332,20.814,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.197,-0.023,4.639,0.0,0.724,0.0,4.386,-8.884,-2.501,0.0,-0.057,-0.497,-0.057,2.571,-0.04,-1.578,11.697,0.0,0.0,0.0,-6.644,-0.024,-1.204,-3.355,-0.177,0.0,2.635,7.896,2.009,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints.xml,41.525,41.525,34.236,34.236,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.107,0.54,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.0,9.174,9.233,0.645,0.0,0.0,0.0,0.0,2102.1,3212.6,3212.6,17.397,16.358,0.0,2.853,2.787,0.39,5.357,0.411,7.457,-12.563,0.0,0.0,0.0,5.504,-0.06,3.479,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.125,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.261,-5.126,-0.188,0.0,2.129,8.003,2.036,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-available.xml,54.868,54.868,32.578,32.578,22.29,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.354,0.611,8.545,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.874,0.0,10.367,8.601,0.581,0.0,0.0,0.0,1.0,2132.0,5726.0,5726.0,23.034,19.129,0.0,3.556,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.312,-0.065,4.763,0.0,0.795,0.0,4.837,-8.906,-2.499,0.0,-0.043,-0.48,-0.054,2.633,-0.03,-1.456,11.731,0.0,0.0,0.0,-6.41,-0.061,-1.18,-4.835,-0.173,0.0,2.289,6.933,1.701,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-unavailable.xml,55.014,55.014,32.755,32.755,22.259,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.498,0.647,8.543,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.845,0.0,10.939,8.601,0.579,0.0,0.0,0.0,10.0,2132.0,5767.6,5767.6,23.034,19.717,0.0,3.557,3.645,0.513,7.527,0.631,10.104,-12.683,0.0,0.0,0.0,8.289,-0.065,4.763,0.0,0.795,0.0,4.83,-8.906,-2.499,0.0,-0.166,-0.606,-0.072,2.302,-0.062,-1.838,11.731,0.0,0.0,0.0,-6.906,-0.061,-1.302,-2.711,-0.174,0.0,2.367,6.931,1.701,1241.6,923.2,10501.6,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage.xml,55.043,55.043,32.631,32.631,22.412,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,3.427,0.629,8.544,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.989,0.0,10.683,8.601,0.581,0.0,0.0,0.0,5.0,1985.3,5810.9,5810.9,23.069,22.121,0.0,3.554,3.643,0.513,7.524,0.63,10.091,-12.684,0.0,0.0,0.0,8.289,-0.061,4.76,0.0,0.795,0.0,4.86,-8.902,-2.367,0.0,-0.098,-0.536,-0.062,2.488,-0.045,-1.632,11.731,0.0,0.0,0.0,-6.63,-0.057,-1.233,-3.892,-0.174,0.0,2.339,6.936,1.794,1241.6,923.2,10501.7,2409.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,57.65,57.65,30.858,30.858,26.793,0.0,0.0,0.0,0.0,0.0,0.0,0.442,0.0,0.0,4.495,0.877,7.368,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.09,0.0,14.759,7.303,0.614,0.0,0.0,0.0,0.0,4487.7,5710.9,5710.9,30.776,20.061,0.0,3.504,3.622,0.51,7.453,0.626,10.041,-12.679,0.0,0.0,0.0,8.149,-0.064,5.305,0.0,0.514,0.0,5.697,-6.297,-1.615,0.0,-0.061,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.358,-0.059,-1.276,-3.102,-0.186,0.0,3.261,8.286,2.008,1141.2,883.5,9118.0,2092.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic.xml,58.918,58.918,36.05,36.05,22.869,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.496,0.877,9.012,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.414,0.0,14.762,9.071,0.614,0.0,0.0,0.0,0.0,4690.7,5711.1,5711.1,30.649,20.063,0.0,3.553,3.644,0.513,7.53,0.631,10.102,-12.674,0.0,0.0,0.0,8.308,-0.063,5.265,0.0,0.777,0.0,4.943,-8.954,-2.502,0.0,-0.061,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.355,-0.059,-1.276,-3.103,-0.186,0.0,3.262,8.286,2.008,1354.7,998.0,11168.6,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-schedules.xml,57.016,57.016,35.319,35.319,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.913,0.755,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.946,0.0,12.447,9.075,0.615,0.0,0.0,101.0,55.0,2155.4,3710.6,3710.6,34.947,20.39,0.0,3.517,3.579,0.503,7.523,0.608,9.828,-12.674,0.0,0.0,0.0,8.679,0.006,4.652,0.0,0.727,0.0,4.499,-8.859,-2.496,0.0,-0.073,-0.502,-0.058,2.615,-0.042,-1.591,11.74,0.0,0.0,0.0,-6.668,-0.004,-1.223,-3.407,-0.174,0.0,2.49,7.92,2.014,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-setbacks.xml,56.386,56.386,35.47,35.47,20.915,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.048,0.783,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.498,0.0,13.07,9.075,0.616,0.0,0.0,0.0,14.0,2130.8,3597.4,3597.4,25.333,20.813,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.196,-0.023,4.639,0.0,0.724,0.0,4.386,-8.884,-2.501,0.0,-0.057,-0.497,-0.057,2.571,-0.04,-1.578,11.697,0.0,0.0,0.0,-6.644,-0.024,-1.204,-3.355,-0.177,0.0,2.635,7.896,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints.xml,41.378,41.378,34.089,34.089,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.107,0.54,9.046,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.0,9.174,9.075,0.645,0.0,0.0,0.0,0.0,2100.9,3211.6,3211.6,17.397,16.358,0.0,2.853,2.787,0.39,5.357,0.411,7.457,-12.563,0.0,0.0,0.0,5.504,-0.06,3.479,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.125,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.261,-5.126,-0.188,0.0,2.129,8.003,2.036,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-available.xml,54.73,54.73,32.44,32.44,22.29,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.354,0.611,8.407,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.874,0.0,10.367,8.454,0.581,0.0,0.0,0.0,1.0,2119.2,5726.9,5726.9,23.032,19.129,0.0,3.556,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.312,-0.065,4.763,0.0,0.795,0.0,4.837,-8.906,-2.499,0.0,-0.043,-0.48,-0.054,2.633,-0.03,-1.456,11.731,0.0,0.0,0.0,-6.41,-0.061,-1.18,-4.835,-0.173,0.0,2.289,6.932,1.701,1241.6,923.2,10291.7,2361.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage-natvent-unavailable.xml,54.876,54.876,32.617,32.617,22.259,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.498,0.647,8.405,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.845,0.0,10.939,8.454,0.579,0.0,0.0,0.0,10.0,2119.2,5768.8,5768.8,23.032,19.717,0.0,3.557,3.645,0.513,7.527,0.631,10.104,-12.683,0.0,0.0,0.0,8.289,-0.065,4.763,0.0,0.795,0.0,4.83,-8.906,-2.499,0.0,-0.166,-0.606,-0.072,2.302,-0.062,-1.838,11.731,0.0,0.0,0.0,-6.906,-0.061,-1.302,-2.711,-0.174,0.0,2.367,6.93,1.701,1241.6,923.2,10291.6,2361.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage.xml,54.905,54.905,32.493,32.493,22.412,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,3.427,0.629,8.407,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.989,0.0,10.683,8.454,0.58,0.0,0.0,0.0,5.0,1990.4,5812.2,5812.2,23.066,22.121,0.0,3.554,3.643,0.513,7.524,0.63,10.091,-12.684,0.0,0.0,0.0,8.289,-0.061,4.76,0.0,0.795,0.0,4.86,-8.902,-2.367,0.0,-0.098,-0.536,-0.062,2.488,-0.045,-1.632,11.731,0.0,0.0,0.0,-6.63,-0.057,-1.233,-3.892,-0.174,0.0,2.339,6.936,1.794,1241.6,923.2,10291.7,2361.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-simple-vacancy-year-round.xml,41.422,41.422,7.378,7.378,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.403,0.618,0.576,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.0,0.0,0.0,0.0,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.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.888,0.0,10.868,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2257.1,2257.1,25.495,15.665,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.996,-0.063,5.417,0.0,0.0,0.0,7.057,-1.409,0.0,0.0,0.15,-0.28,-0.026,3.179,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.472,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy.xml,57.373,57.373,30.762,30.762,26.61,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,4.441,0.864,7.484,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.92,0.0,14.571,7.429,0.614,0.0,0.0,0.0,0.0,2011.5,3490.9,3490.9,23.123,19.202,0.0,3.503,3.619,0.509,7.446,0.625,10.032,-12.688,0.0,0.0,0.0,8.141,-0.065,4.961,0.0,0.552,0.0,5.667,-6.163,-1.548,0.0,-0.059,-0.466,-0.052,2.681,-0.027,-1.412,11.729,0.0,0.0,0.0,-6.357,-0.06,-1.149,-3.111,-0.2,0.0,3.227,7.872,2.14,1122.2,811.7,9376.7,2151.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple.xml,58.515,58.515,36.114,36.114,22.401,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,4.442,0.865,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,0.0,22.401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.978,0.0,14.574,9.233,0.614,0.0,0.0,0.0,0.0,1985.3,3442.3,3442.3,23.069,19.187,0.0,3.554,3.642,0.513,7.525,0.63,10.091,-12.684,0.0,0.0,0.0,8.301,-0.061,4.804,0.0,0.729,0.0,4.858,-8.902,-2.367,0.0,-0.06,-0.466,-0.052,2.68,-0.027,-1.418,11.729,0.0,0.0,0.0,-6.358,-0.057,-1.173,-3.114,-0.166,0.0,3.227,7.876,2.141,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-calendar-year-custom.xml,58.32,58.32,36.047,36.047,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.388,0.852,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.857,0.0,14.357,9.233,0.614,0.0,0.0,0.0,0.0,2131.9,3434.7,3434.7,23.034,19.124,0.0,3.557,3.645,0.513,7.53,0.631,10.1,-12.683,0.0,0.0,0.0,8.316,-0.063,4.807,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.051,-0.459,-0.051,2.707,-0.025,-1.394,11.73,0.0,0.0,0.0,-6.328,-0.059,-1.165,-3.252,-0.165,0.0,3.17,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-custom.xml,58.345,58.345,36.078,36.078,22.267,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.853,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-disabled.xml,58.316,58.316,36.062,36.062,22.254,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.4,0.855,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.84,0.0,14.398,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3344.7,3344.7,23.034,18.728,0.0,3.556,3.643,0.513,7.531,0.63,10.089,-12.683,0.0,0.0,0.0,8.311,-0.06,4.804,0.0,0.727,0.0,4.829,-8.9,-2.496,0.0,-0.056,-0.465,-0.052,2.684,-0.027,-1.417,11.73,0.0,0.0,0.0,-6.348,-0.056,-1.175,-3.132,-0.163,0.0,3.182,7.877,2.013,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-runperiod-1-month.xml,9.3378,9.3378,2.9155,2.9155,6.4222,0.0,0.0,0.0,0.0,0.0,0.0,0.1059,0.0,0.0,0.1034,0.0,0.841,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0126,0.0,0.0,0.8531,0.0511,0.0,0.0,0.0,0.0,2115.81,0.0,2115.81,24.5056,0.0,0.0,0.6218,0.6514,0.0921,1.7783,0.1114,1.8005,-1.9863,0.0,0.0,0.0,2.3104,0.001,0.8916,0.0,0.1316,0.0,1.3929,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,925.54,212.38,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-temperature-capacitance-multiplier.xml,58.232,58.232,35.972,35.972,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.327,0.838,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.846,0.0,14.108,9.233,0.614,0.0,0.0,0.0,0.0,2131.5,3405.1,3405.1,22.976,19.043,0.0,3.626,3.641,0.512,7.527,0.628,10.073,-12.689,0.0,0.0,0.0,8.292,-0.053,4.803,0.0,0.728,0.0,4.827,-8.896,-2.498,0.0,-0.223,-0.462,-0.052,2.69,-0.027,-1.419,11.724,0.0,0.0,0.0,-6.346,-0.05,-1.179,-3.176,-0.164,0.0,3.051,7.882,2.012,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,59.734,59.734,36.321,36.321,23.413,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.588,0.893,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.924,0.0,14.997,9.232,0.616,0.0,0.0,0.333,1.333,9296.7,8481.7,9322.0,37.369,21.894,0.0,3.607,3.669,0.517,7.596,0.642,10.189,-12.601,0.0,0.0,0.0,8.33,-0.062,5.307,0.0,0.775,0.0,5.113,-8.958,-2.509,0.0,-0.179,-0.489,-0.056,2.705,-0.032,-1.437,11.752,0.0,0.0,0.0,-6.328,-0.058,-1.279,-3.002,-0.179,0.0,3.435,8.297,2.0,1354.7,998.0,11410.4,2618.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,59.654,59.654,36.312,36.312,23.341,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.586,0.893,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.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.857,0.0,14.99,9.229,0.614,0.0,0.0,0.0,0.5,6068.6,7353.6,7353.6,35.103,21.328,0.0,3.607,3.669,0.517,7.594,0.642,10.187,-12.601,0.0,0.0,0.0,8.326,-0.062,5.255,0.0,0.771,0.0,5.101,-8.955,-2.502,0.0,-0.179,-0.489,-0.056,2.704,-0.033,-1.438,11.752,0.0,0.0,0.0,-6.332,-0.057,-1.264,-3.005,-0.186,0.0,3.433,8.284,2.008,1354.7,998.0,11396.5,2615.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins.xml,58.953,58.953,36.193,36.193,22.76,0.0,0.0,0.0,0.0,0.0,0.0,0.375,0.0,0.0,4.503,0.873,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,0.0,22.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.313,0.0,14.679,9.233,0.614,0.0,0.0,0.0,0.0,3553.4,5042.4,5042.4,23.317,19.026,0.0,3.612,3.669,0.517,7.595,0.642,10.185,-12.61,0.0,0.0,0.0,8.335,-0.06,4.791,0.0,0.735,0.0,4.995,-8.905,-2.499,0.0,-0.174,-0.487,-0.056,2.71,-0.032,-1.435,11.744,0.0,0.0,0.0,-6.317,-0.055,-1.156,-3.002,-0.172,0.0,3.375,7.873,2.011,1354.8,997.6,11399.7,2615.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-30-mins.xml,58.726,58.726,36.142,36.142,22.584,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.464,0.866,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,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.148,0.0,14.554,9.233,0.614,0.0,0.0,0.0,0.0,2157.1,3815.6,3815.6,23.221,19.052,0.0,3.594,3.661,0.516,7.566,0.639,10.168,-12.631,0.0,0.0,0.0,8.321,-0.062,4.793,0.0,0.733,0.0,4.932,-8.905,-2.498,0.0,-0.143,-0.482,-0.055,2.704,-0.031,-1.434,11.747,0.0,0.0,0.0,-6.329,-0.058,-1.16,-3.05,-0.17,0.0,3.285,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base.xml,58.344,58.344,36.078,36.078,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.233,0.614,0.0,0.0,0.0,0.0,2132.0,3422.3,3422.3,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11399.5,2615.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy.xml,57.254,57.254,30.644,30.644,26.61,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,4.441,0.864,7.366,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.92,0.0,14.571,7.302,0.614,0.0,0.0,0.0,0.0,1965.3,3444.2,3444.2,23.124,19.202,0.0,3.503,3.619,0.509,7.446,0.625,10.032,-12.688,0.0,0.0,0.0,8.141,-0.065,4.961,0.0,0.552,0.0,5.667,-6.163,-1.548,0.0,-0.059,-0.466,-0.052,2.681,-0.027,-1.412,11.729,0.0,0.0,0.0,-6.357,-0.06,-1.149,-3.111,-0.2,0.0,3.227,7.872,2.14,1122.2,811.7,9189.2,2108.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple.xml,58.368,58.368,35.967,35.967,22.401,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,4.442,0.865,9.016,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,0.0,22.401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.978,0.0,14.574,9.075,0.614,0.0,0.0,0.0,0.0,1984.0,3441.8,3441.8,23.066,19.187,0.0,3.554,3.642,0.513,7.525,0.63,10.091,-12.684,0.0,0.0,0.0,8.301,-0.061,4.804,0.0,0.729,0.0,4.858,-8.902,-2.367,0.0,-0.06,-0.466,-0.052,2.68,-0.027,-1.418,11.729,0.0,0.0,0.0,-6.358,-0.057,-1.173,-3.114,-0.166,0.0,3.227,7.876,2.141,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-calendar-year-custom.xml,58.172,58.172,35.9,35.9,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.388,0.852,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.857,0.0,14.357,9.075,0.614,0.0,0.0,0.0,0.0,2119.6,3434.2,3434.2,23.032,19.124,0.0,3.557,3.645,0.513,7.53,0.631,10.1,-12.683,0.0,0.0,0.0,8.316,-0.063,4.807,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.051,-0.459,-0.051,2.707,-0.025,-1.394,11.73,0.0,0.0,0.0,-6.328,-0.059,-1.165,-3.252,-0.165,0.0,3.17,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-custom.xml,58.198,58.198,35.931,35.931,22.267,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.853,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-disabled.xml,58.169,58.169,35.915,35.915,22.254,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.4,0.855,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.84,0.0,14.398,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3344.2,3344.2,23.032,18.728,0.0,3.556,3.643,0.513,7.531,0.63,10.089,-12.683,0.0,0.0,0.0,8.311,-0.06,4.804,0.0,0.727,0.0,4.829,-8.9,-2.496,0.0,-0.056,-0.465,-0.052,2.684,-0.027,-1.417,11.73,0.0,0.0,0.0,-6.348,-0.056,-1.175,-3.132,-0.163,0.0,3.182,7.877,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-runperiod-1-month.xml,9.3245,9.3245,2.9023,2.9023,6.4222,0.0,0.0,0.0,0.0,0.0,0.0,0.1059,0.0,0.0,0.1034,0.0,0.8277,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0126,0.0,0.0,0.8385,0.0511,0.0,0.0,0.0,0.0,2100.14,0.0,2100.14,24.5039,0.0,0.0,0.6218,0.6514,0.0921,1.7783,0.1114,1.8005,-1.9863,0.0,0.0,0.0,2.3104,0.001,0.8916,0.0,0.1316,0.0,1.3929,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,907.03,208.14,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-temperature-capacitance-multiplier.xml,58.084,58.084,35.824,35.824,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.327,0.838,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.846,0.0,14.108,9.075,0.614,0.0,0.0,0.0,0.0,2110.3,3404.6,3404.6,22.973,19.043,0.0,3.626,3.641,0.512,7.527,0.628,10.073,-12.689,0.0,0.0,0.0,8.292,-0.053,4.803,0.0,0.728,0.0,4.827,-8.896,-2.498,0.0,-0.223,-0.462,-0.052,2.69,-0.027,-1.419,11.724,0.0,0.0,0.0,-6.346,-0.05,-1.179,-3.176,-0.164,0.0,3.051,7.882,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,59.586,59.586,36.173,36.173,23.413,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.588,0.893,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.924,0.0,14.997,9.074,0.616,0.0,0.0,0.333,1.333,8643.3,8934.0,9252.7,37.369,21.894,0.0,3.607,3.669,0.517,7.596,0.642,10.189,-12.601,0.0,0.0,0.0,8.33,-0.062,5.307,0.0,0.775,0.0,5.113,-8.958,-2.509,0.0,-0.179,-0.489,-0.056,2.705,-0.032,-1.437,11.752,0.0,0.0,0.0,-6.328,-0.058,-1.279,-3.002,-0.179,0.0,3.435,8.296,2.0,1354.7,998.0,11182.0,2565.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,59.507,59.507,36.166,36.166,23.341,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.586,0.893,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.857,0.0,14.991,9.071,0.614,0.0,0.0,0.0,0.5,6063.1,7350.9,7350.9,35.1,21.328,0.0,3.607,3.669,0.517,7.594,0.642,10.187,-12.601,0.0,0.0,0.0,8.326,-0.062,5.255,0.0,0.771,0.0,5.101,-8.955,-2.502,0.0,-0.179,-0.489,-0.056,2.704,-0.033,-1.438,11.752,0.0,0.0,0.0,-6.332,-0.057,-1.264,-3.005,-0.186,0.0,3.433,8.284,2.008,1354.7,998.0,11168.8,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins.xml,58.805,58.805,36.045,36.045,22.76,0.0,0.0,0.0,0.0,0.0,0.0,0.375,0.0,0.0,4.503,0.873,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.313,0.0,14.679,9.075,0.614,0.0,0.0,0.0,0.0,3549.1,4946.5,4946.5,23.32,19.028,0.0,3.612,3.669,0.517,7.595,0.642,10.185,-12.61,0.0,0.0,0.0,8.335,-0.06,4.791,0.0,0.735,0.0,4.995,-8.905,-2.499,0.0,-0.174,-0.487,-0.056,2.71,-0.032,-1.435,11.744,0.0,0.0,0.0,-6.317,-0.055,-1.156,-3.002,-0.172,0.0,3.375,7.873,2.011,1354.8,997.6,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-30-mins.xml,58.579,58.579,35.995,35.995,22.584,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.464,0.866,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,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.148,0.0,14.554,9.075,0.614,0.0,0.0,0.0,0.0,2158.3,3792.8,3792.8,23.223,19.05,0.0,3.594,3.661,0.516,7.566,0.639,10.168,-12.631,0.0,0.0,0.0,8.321,-0.062,4.793,0.0,0.733,0.0,4.932,-8.905,-2.498,0.0,-0.143,-0.482,-0.055,2.704,-0.031,-1.434,11.747,0.0,0.0,0.0,-6.329,-0.058,-1.16,-3.05,-0.17,0.0,3.285,7.873,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 house001.xml,86.617,86.617,47.318,47.318,39.299,0.0,0.0,0.0,0.0,0.0,0.0,0.25,0.0,0.0,15.975,4.48,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,0.0,22.249,0.0,17.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,18.043,0.0,50.899,10.416,2.683,0.0,0.0,0.0,0.0,1853.7,6691.8,6691.8,37.693,42.618,0.495,1.999,7.301,0.422,0.0,0.982,7.164,-4.978,0.0,0.0,0.485,1.29,-0.286,4.306,0.0,5.162,0.0,3.187,-6.727,-2.915,0.559,1.959,3.663,0.303,0.0,0.228,1.549,11.487,0.0,0.0,0.516,6.78,-0.271,-0.434,-1.439,-0.779,0.0,10.916,11.623,4.465,2104.5,2144.0,14468.8,4385.1,0.0,90000.0,60000.0,0.0,25.88,98.42,62095.0,24402.0,7740.0,0.0,942.0,7599.0,453.0,609.0,9636.0,2236.0,8478.0,118221.0,90310.0,9481.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,3780.0,6860.0,3501.0,2159.0,1200.0 house002.xml,67.379,67.379,40.154,40.154,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,13.992,3.481,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,0.0,13.737,0.0,13.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.136,0.0,40.207,7.526,2.892,0.0,0.0,0.0,0.0,1553.9,5107.0,5107.0,23.852,29.784,0.0,2.552,5.064,0.0,0.0,0.846,5.729,-4.087,0.0,0.0,0.0,1.809,-0.161,1.581,0.0,3.794,0.0,1.353,-5.039,-2.475,0.0,3.05,2.765,0.0,0.0,0.409,0.355,8.652,0.0,0.0,0.0,8.391,-0.154,-0.19,-1.077,-0.66,0.0,6.001,8.963,3.907,1610.9,1574.7,9989.5,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,47925.0,15312.0,6070.0,0.0,752.0,4731.0,0.0,0.0,12952.0,3120.0,4987.0,35212.0,14864.0,6693.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,3320.0,3848.0,1750.0,1297.0,800.0 house003.xml,68.761,68.761,40.507,40.507,28.254,0.0,0.0,0.0,0.0,0.0,0.0,0.168,0.0,0.0,13.083,3.644,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,0.0,15.007,0.0,13.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.166,0.0,42.008,7.526,2.693,0.0,0.0,0.0,0.0,1632.3,5481.4,5481.4,26.254,34.02,0.653,2.805,4.678,0.0,0.0,0.98,6.254,-3.935,0.0,0.0,0.0,1.138,-0.182,1.997,0.0,3.942,0.0,1.585,-5.248,-2.676,0.786,3.006,2.567,0.0,0.0,0.638,1.037,9.843,0.0,0.0,0.0,6.458,-0.174,-0.231,-1.127,-0.664,0.0,6.66,9.233,4.2,1610.9,1574.7,9989.3,3520.4,0.0,90000.0,60000.0,0.0,25.88,98.42,48412.0,15944.0,6644.0,0.0,892.0,4431.0,610.0,0.0,11450.0,2908.0,5532.0,43305.0,19002.0,9071.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,3320.0,3967.0,1750.0,1416.0,800.0 diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index 4bbd8afd0e..715afbbdc4 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -1,379 +1,379 @@ HPXML,Bills: Total (USD),Bills: Electricity: Fixed (USD),Bills: Electricity: Energy (USD),Bills: Electricity: PV Credit (USD),Bills: Electricity: Total (USD),Bills: Natural Gas: Fixed (USD),Bills: Natural Gas: Energy (USD),Bills: Natural Gas: Total (USD),Bills: Fuel Oil: Fixed (USD),Bills: Fuel Oil: Energy (USD),Bills: Fuel Oil: Total (USD),Bills: Propane: Fixed (USD),Bills: Propane: Energy (USD),Bills: Propane: Total (USD),Bills: Wood Cord: Fixed (USD),Bills: Wood Cord: Energy (USD),Bills: Wood Cord: Total (USD),Bills: Wood Pellets: Fixed (USD),Bills: Wood Pellets: Energy (USD),Bills: Wood Pellets: Total (USD),Bills: Coal: Fixed (USD),Bills: Coal: Energy (USD),Bills: Coal: Total (USD),Tiered: Total (USD),Tiered: Electricity: Fixed (USD),Tiered: Electricity: Energy (USD),Tiered: Electricity: PV Credit (USD),Tiered: Electricity: Total (USD),Tiered: Natural Gas: Fixed (USD),Tiered: Natural Gas: Energy (USD),Tiered: Natural Gas: Total (USD),Tiered: Fuel Oil: Fixed (USD),Tiered: Fuel Oil: Energy (USD),Tiered: Fuel Oil: Total (USD),Tiered: Propane: Fixed (USD),Tiered: Propane: Energy (USD),Tiered: Propane: Total (USD),Tiered: Wood Cord: Fixed (USD),Tiered: Wood Cord: Energy (USD),Tiered: Wood Cord: Total (USD),Tiered: Wood Pellets: Fixed (USD),Tiered: Wood Pellets: Energy (USD),Tiered: Wood Pellets: Total (USD),Tiered: Coal: Fixed (USD),Tiered: Coal: Energy (USD),Tiered: Coal: Total (USD),TOU: Total (USD),TOU: Electricity: Fixed (USD),TOU: Electricity: Energy (USD),TOU: Electricity: PV Credit (USD),TOU: Electricity: Total (USD),TOU: Natural Gas: Fixed (USD),TOU: Natural Gas: Energy (USD),TOU: Natural Gas: Total (USD),TOU: Fuel Oil: Fixed (USD),TOU: Fuel Oil: Energy (USD),TOU: Fuel Oil: Total (USD),TOU: Propane: Fixed (USD),TOU: Propane: Energy (USD),TOU: Propane: Total (USD),TOU: Wood Cord: Fixed (USD),TOU: Wood Cord: Energy (USD),TOU: Wood Cord: Total (USD),TOU: Wood Pellets: Fixed (USD),TOU: Wood Pellets: Energy (USD),TOU: Wood Pellets: Total (USD),TOU: Coal: Fixed (USD),TOU: Coal: Energy (USD),TOU: Coal: Total (USD),Tiered and TOU: Total (USD),Tiered and TOU: Electricity: Fixed (USD),Tiered and TOU: Electricity: Energy (USD),Tiered and TOU: Electricity: PV Credit (USD),Tiered and TOU: Electricity: Total (USD),Tiered and TOU: Natural Gas: Fixed (USD),Tiered and TOU: Natural Gas: Energy (USD),Tiered and TOU: Natural Gas: Total (USD),Tiered and TOU: Fuel Oil: Fixed (USD),Tiered and TOU: Fuel Oil: Energy (USD),Tiered and TOU: Fuel Oil: Total (USD),Tiered and TOU: Propane: Fixed (USD),Tiered and TOU: Propane: Energy (USD),Tiered and TOU: Propane: Total (USD),Tiered and TOU: Wood Cord: Fixed (USD),Tiered and TOU: Wood Cord: Energy (USD),Tiered and TOU: Wood Cord: Total (USD),Tiered and TOU: Wood Pellets: Fixed (USD),Tiered and TOU: Wood Pellets: Energy (USD),Tiered and TOU: Wood Pellets: Total (USD),Tiered and TOU: Coal: Fixed (USD),Tiered and TOU: Coal: Energy (USD),Tiered and TOU: Coal: Total (USD),Real-Time Pricing: Total (USD),Real-Time Pricing: Electricity: Fixed (USD),Real-Time Pricing: Electricity: Energy (USD),Real-Time Pricing: Electricity: PV Credit (USD),Real-Time Pricing: Electricity: Total (USD),Real-Time Pricing: Natural Gas: Fixed (USD),Real-Time Pricing: Natural Gas: Energy (USD),Real-Time Pricing: Natural Gas: Total (USD),Real-Time Pricing: Fuel Oil: Fixed (USD),Real-Time Pricing: Fuel Oil: Energy (USD),Real-Time Pricing: Fuel Oil: Total (USD),Real-Time Pricing: Propane: Fixed (USD),Real-Time Pricing: Propane: Energy (USD),Real-Time Pricing: Propane: Total (USD),Real-Time Pricing: Wood Cord: Fixed (USD),Real-Time Pricing: Wood Cord: Energy (USD),Real-Time Pricing: Wood Cord: Total (USD),Real-Time Pricing: Wood Pellets: Fixed (USD),Real-Time Pricing: Wood Pellets: Energy (USD),Real-Time Pricing: Wood Pellets: Total (USD),Real-Time Pricing: Coal: Fixed (USD),Real-Time Pricing: Coal: Energy (USD),Real-Time Pricing: Coal: Total (USD),Simple: Total (USD),Simple: Electricity: Fixed (USD),Simple: Electricity: Energy (USD),Simple: Electricity: PV Credit (USD),Simple: Electricity: Total (USD),Simple: Natural Gas: Fixed (USD),Simple: Natural Gas: Energy (USD),Simple: Natural Gas: Total (USD),Simple: Fuel Oil: Fixed (USD),Simple: Fuel Oil: Energy (USD),Simple: Fuel Oil: Total (USD),Simple: Propane: Fixed (USD),Simple: Propane: Energy (USD),Simple: Propane: Total (USD),Simple: Wood Cord: Fixed (USD),Simple: Wood Cord: Energy (USD),Simple: Wood Cord: Total (USD),Simple: Wood Pellets: Fixed (USD),Simple: Wood Pellets: Energy (USD),Simple: Wood Pellets: Total (USD),Simple: Coal: Fixed (USD),Simple: Coal: Energy (USD),Simple: Coal: Total (USD),Detailed: Total (USD),Detailed: Electricity: Fixed (USD),Detailed: Electricity: Energy (USD),Detailed: Electricity: PV Credit (USD),Detailed: Electricity: Total (USD),Detailed: Natural Gas: Fixed (USD),Detailed: Natural Gas: Energy (USD),Detailed: Natural Gas: Total (USD),Detailed: Fuel Oil: Fixed (USD),Detailed: Fuel Oil: Energy (USD),Detailed: Fuel Oil: Total (USD),Detailed: Propane: Fixed (USD),Detailed: Propane: Energy (USD),Detailed: Propane: Total (USD),Detailed: Wood Cord: Fixed (USD),Detailed: Wood Cord: Energy (USD),Detailed: Wood Cord: Total (USD),Detailed: Wood Pellets: Fixed (USD),Detailed: Wood Pellets: Energy (USD),Detailed: Wood Pellets: Total (USD),Detailed: Coal: Fixed (USD),Detailed: Coal: Energy (USD),Detailed: Coal: 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: Energy (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: Energy (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Total (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Wholesale Excess Rate: Propane: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Propane: Energy (USD),Net Metering w/ Wholesale Excess Rate: Propane: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Wholesale Excess Rate: Coal: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Coal: Energy (USD),Net Metering w/ Wholesale Excess Rate: Coal: 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: Energy (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: Energy (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Total (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Retail Excess Rate: Propane: Fixed (USD),Net Metering w/ Retail Excess Rate: Propane: Energy (USD),Net Metering w/ Retail Excess Rate: Propane: Total (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Total (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Retail Excess Rate: Coal: Fixed (USD),Net Metering w/ Retail Excess Rate: Coal: Energy (USD),Net Metering w/ Retail Excess Rate: Coal: Total (USD),Feed-In Tariff: Total (USD),Feed-In Tariff: Electricity: Fixed (USD),Feed-In Tariff: Electricity: Energy (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: Energy (USD),Feed-In Tariff: Natural Gas: Total (USD),Feed-In Tariff: Fuel Oil: Fixed (USD),Feed-In Tariff: Fuel Oil: Energy (USD),Feed-In Tariff: Fuel Oil: Total (USD),Feed-In Tariff: Propane: Fixed (USD),Feed-In Tariff: Propane: Energy (USD),Feed-In Tariff: Propane: Total (USD),Feed-In Tariff: Wood Cord: Fixed (USD),Feed-In Tariff: Wood Cord: Energy (USD),Feed-In Tariff: Wood Cord: Total (USD),Feed-In Tariff: Wood Pellets: Fixed (USD),Feed-In Tariff: Wood Pellets: Energy (USD),Feed-In Tariff: Wood Pellets: Total (USD),Feed-In Tariff: Coal: Fixed (USD),Feed-In Tariff: Coal: Energy (USD),Feed-In Tariff: Coal: Total (USD) -base-appliances-coal.xml,1815.03,144.0,1225.09,0.0,1369.09,144.0,228.95,372.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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1528.05,144.0,1226.74,0.0,1370.74,144.0,13.31,157.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier-ief-whole-home.xml,1529.5,144.0,1228.41,0.0,1372.41,144.0,13.09,157.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier-multiple.xml,1525.92,144.0,1223.9,0.0,1367.9,144.0,14.02,158.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier.xml,1527.06,144.0,1225.9,0.0,1369.9,144.0,13.16,157.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-gas.xml,1793.59,144.0,1225.09,0.0,1369.09,144.0,280.5,424.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-modified.xml,1875.16,144.0,1360.32,0.0,1504.32,144.0,226.84,370.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-none.xml,1590.75,144.0,1046.52,0.0,1190.52,144.0,256.23,400.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-oil-location-miami-fl.xml,2011.55,144.0,1703.93,0.0,1847.93,0.0,0.0,0.0,0.0,163.62,163.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-oil.xml,1912.23,144.0,1225.09,0.0,1369.09,144.0,228.95,372.95,0.0,170.19,170.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-propane-location-portland-or.xml,1530.05,144.0,891.56,0.0,1035.56,144.0,207.31,351.31,0.0,0.0,0.0,0.0,143.18,143.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-propane.xml,1874.12,144.0,1225.09,0.0,1369.09,144.0,228.95,372.95,0.0,0.0,0.0,0.0,132.08,132.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-wood.xml,1815.03,144.0,1225.09,0.0,1369.09,144.0,228.95,372.95,0.0,0.0,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1878.49,144.0,1319.09,0.0,1463.09,144.0,271.4,415.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-conditioned.xml,2021.76,144.0,1494.32,0.0,1638.32,144.0,239.44,383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-flat.xml,1786.37,144.0,1292.31,0.0,1436.31,144.0,206.06,350.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-radiant-barrier.xml,1554.19,144.0,1223.16,0.0,1367.16,144.0,43.03,187.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-unvented-insulated-roof.xml,1817.18,144.0,1298.12,0.0,1442.12,144.0,231.06,375.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-vented.xml,1833.11,144.0,1311.21,0.0,1455.21,144.0,233.9,377.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-battery-scheduled.xml,1910.83,144.0,1386.96,0.0,1530.96,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-battery.xml,1847.95,144.0,1324.08,0.0,1468.08,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-2stories.xml,1737.31,144.0,1275.68,0.0,1419.68,144.0,173.63,317.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-atticroof-cathedral.xml,2297.59,144.0,1370.31,0.0,1514.31,144.0,639.28,783.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-infil-compartmentalization-test.xml,1521.74,144.0,1102.27,0.0,1246.27,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached.xml,1521.74,144.0,1102.27,0.0,1246.27,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,1323.11,144.0,911.96,0.0,1055.96,144.0,123.15,267.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1285.46,144.0,930.19,0.0,1074.19,144.0,67.27,211.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,1462.02,144.0,911.97,0.0,1055.97,144.0,262.05,406.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,1209.01,144.0,907.05,0.0,1051.05,144.0,13.96,157.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,1227.06,144.0,927.81,0.0,1071.81,144.0,11.25,155.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-infil-compartmentalization-test.xml,1263.98,144.0,970.5,0.0,1114.5,144.0,5.48,149.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-residents-1.xml,988.28,144.0,687.35,0.0,831.35,144.0,12.93,156.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,1278.77,144.0,983.88,0.0,1127.88,144.0,6.89,150.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,1307.87,144.0,1012.52,0.0,1156.52,144.0,7.35,151.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,1290.45,144.0,995.92,0.0,1139.92,144.0,6.53,150.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,1493.48,144.0,1200.12,0.0,1344.12,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1298.87,144.0,1005.51,0.0,1149.51,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,1126.74,144.0,833.21,0.0,977.21,144.0,5.53,149.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,1127.81,144.0,833.9,0.0,977.9,144.0,5.91,149.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,1127.64,144.0,834.37,0.0,978.37,144.0,5.27,149.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,1130.45,144.0,838.62,0.0,982.62,144.0,3.83,147.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,1127.7,144.0,834.45,0.0,978.45,144.0,5.25,149.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,1126.47,144.0,834.16,0.0,978.16,144.0,4.31,148.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,1126.07,144.0,982.07,0.0,1126.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,1153.69,144.0,1009.69,0.0,1153.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1136.49,144.0,992.49,0.0,1136.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1339.61,144.0,1195.61,0.0,1339.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1146.41,144.0,1002.41,0.0,1146.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-generator.xml,1647.37,144.0,968.16,0.0,1112.16,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1179.23,144.0,1035.23,0.0,1179.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,1064.1,144.0,615.28,0.0,759.28,144.0,160.82,304.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-laundry-room.xml,1036.61,144.0,608.19,0.0,752.19,144.0,140.42,284.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,1631.56,144.0,1131.17,0.0,1275.17,144.0,212.39,356.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,1352.58,144.0,1008.51,0.0,1152.51,144.0,56.07,200.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-mechvent.xml,1329.87,144.0,1003.09,0.0,1147.09,144.0,38.78,182.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-pv.xml,365.57,144.0,968.16,-897.25,214.91,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,1077.96,144.0,648.99,0.0,792.99,144.0,140.97,284.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-water-heater.xml,1037.74,144.0,608.77,0.0,752.77,144.0,140.97,284.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily.xml,1262.82,144.0,968.16,0.0,1112.16,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-combi-tankless-outside.xml,1390.21,144.0,786.23,0.0,930.23,144.0,315.98,459.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-combi-tankless.xml,1403.15,144.0,786.58,0.0,930.58,144.0,328.57,472.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-2-speed.xml,1325.43,144.0,1181.43,0.0,1325.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-gshp.xml,1512.68,144.0,1368.68,0.0,1512.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-hpwh.xml,1665.45,144.0,1094.12,0.0,1238.12,144.0,283.33,427.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1387.89,144.0,1243.89,0.0,1387.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-var-speed.xml,1298.14,144.0,1154.14,0.0,1298.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater.xml,1388.59,144.0,1244.59,0.0,1388.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-dwhr.xml,1765.75,144.0,1241.88,0.0,1385.88,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-detailed-setpoints.xml,1419.55,144.0,786.17,0.0,930.17,144.0,345.38,489.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-coal.xml,1809.62,144.0,1219.68,0.0,1363.68,144.0,228.95,372.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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1524.19,144.0,1222.87,0.0,1366.87,144.0,13.32,157.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier-ief-whole-home.xml,1525.62,144.0,1224.52,0.0,1368.52,144.0,13.1,157.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier-multiple.xml,1522.05,144.0,1220.03,0.0,1364.03,144.0,14.02,158.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier.xml,1523.18,144.0,1222.02,0.0,1366.02,144.0,13.16,157.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-gas.xml,1788.18,144.0,1219.68,0.0,1363.68,144.0,280.5,424.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-modified.xml,1869.73,144.0,1354.89,0.0,1498.89,144.0,226.84,370.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-none.xml,1585.34,144.0,1041.11,0.0,1185.11,144.0,256.23,400.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-oil-location-miami-fl.xml,2008.86,144.0,1701.24,0.0,1845.24,0.0,0.0,0.0,0.0,163.62,163.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-oil.xml,1906.82,144.0,1219.68,0.0,1363.68,144.0,228.95,372.95,0.0,170.19,170.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-propane-location-portland-or.xml,1525.89,144.0,887.4,0.0,1031.4,144.0,207.31,351.31,0.0,0.0,0.0,0.0,143.18,143.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-propane.xml,1868.71,144.0,1219.68,0.0,1363.68,144.0,228.95,372.95,0.0,0.0,0.0,0.0,132.08,132.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1809.62,144.0,1219.68,0.0,1363.68,144.0,228.95,372.95,0.0,0.0,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1873.1,144.0,1313.7,0.0,1457.7,144.0,271.4,415.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-conditioned.xml,2016.42,144.0,1488.98,0.0,1632.98,144.0,239.44,383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-flat.xml,1780.97,144.0,1286.91,0.0,1430.91,144.0,206.06,350.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-radiant-barrier.xml,1550.31,144.0,1219.28,0.0,1363.28,144.0,43.03,187.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-unvented-insulated-roof.xml,1811.78,144.0,1292.72,0.0,1436.72,144.0,231.06,375.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-vented.xml,1827.72,144.0,1305.82,0.0,1449.82,144.0,233.9,377.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-battery-scheduled.xml,1905.42,144.0,1381.55,0.0,1525.55,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-battery.xml,1842.55,144.0,1318.68,0.0,1462.68,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached-2stories.xml,1731.87,144.0,1270.24,0.0,1414.24,144.0,173.63,317.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached-atticroof-cathedral.xml,2292.15,144.0,1364.87,0.0,1508.87,144.0,639.28,783.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached-infil-compartmentalization-test.xml,1516.14,144.0,1096.67,0.0,1240.67,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-attached.xml,1516.14,144.0,1096.67,0.0,1240.67,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,1317.34,144.0,906.19,0.0,1050.19,144.0,123.15,267.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1279.69,144.0,924.42,0.0,1068.42,144.0,67.27,211.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,1456.28,144.0,906.23,0.0,1050.23,144.0,262.05,406.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,1203.25,144.0,901.29,0.0,1045.29,144.0,13.96,157.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,1221.26,144.0,922.01,0.0,1066.01,144.0,11.25,155.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-infil-compartmentalization-test.xml,1258.24,144.0,964.76,0.0,1108.76,144.0,5.48,149.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-residents-1.xml,985.86,144.0,684.93,0.0,828.93,144.0,12.93,156.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,1273.0,144.0,978.11,0.0,1122.11,144.0,6.89,150.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,1302.1,144.0,1006.75,0.0,1150.75,144.0,7.35,151.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,1284.68,144.0,990.15,0.0,1134.15,144.0,6.53,150.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,1487.7,144.0,1194.34,0.0,1338.34,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1293.1,144.0,999.74,0.0,1143.74,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,1120.96,144.0,827.43,0.0,971.43,144.0,5.53,149.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,1122.03,144.0,828.12,0.0,972.12,144.0,5.91,149.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,1121.86,144.0,828.59,0.0,972.59,144.0,5.27,149.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,1124.68,144.0,832.85,0.0,976.85,144.0,3.83,147.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,1121.92,144.0,828.67,0.0,972.67,144.0,5.25,149.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,1120.69,144.0,828.38,0.0,972.38,144.0,4.31,148.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,1120.31,144.0,976.31,0.0,1120.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,1147.92,144.0,1003.92,0.0,1147.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1130.72,144.0,986.72,0.0,1130.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1333.84,144.0,1189.84,0.0,1333.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1140.64,144.0,996.64,0.0,1140.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-generator.xml,1641.6,144.0,962.39,0.0,1106.39,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1173.46,144.0,1029.46,0.0,1173.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1061.97,144.0,615.28,0.0,759.28,144.0,158.69,302.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-laundry-room.xml,1034.48,144.0,608.19,0.0,752.19,144.0,138.29,282.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1625.79,144.0,1125.4,0.0,1269.4,144.0,212.39,356.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,1346.82,144.0,1002.75,0.0,1146.75,144.0,56.07,200.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-mechvent.xml,1324.07,144.0,997.29,0.0,1141.29,144.0,38.78,182.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-pv.xml,359.8,144.0,962.39,-897.25,209.14,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-water-heater-recirc.xml,1075.82,144.0,648.99,0.0,792.99,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily-shared-water-heater.xml,1035.6,144.0,608.77,0.0,752.77,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-multifamily.xml,1257.05,144.0,962.39,0.0,1106.39,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-combi-tankless-outside.xml,1388.39,144.0,786.23,0.0,930.23,144.0,314.16,458.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-combi-tankless.xml,1401.33,144.0,786.58,0.0,930.58,144.0,326.75,470.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-2-speed.xml,1321.11,144.0,1177.11,0.0,1321.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1508.35,144.0,1364.35,0.0,1508.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-hpwh.xml,1663.33,144.0,1092.84,0.0,1236.84,144.0,282.49,426.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-tankless.xml,1383.2,144.0,1239.2,0.0,1383.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1293.79,144.0,1149.79,0.0,1293.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater.xml,1384.37,144.0,1240.37,0.0,1384.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-dwhr.xml,1759.17,144.0,1235.3,0.0,1379.3,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-detailed-setpoints.xml,1417.64,144.0,786.17,0.0,930.17,144.0,343.47,487.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-indirect-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1436.16,144.0,786.23,0.0,930.23,144.0,361.93,505.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-standbyloss.xml,1423.54,144.0,786.11,0.0,930.11,144.0,349.43,493.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-with-solar-fraction.xml,1337.26,144.0,786.44,0.0,930.44,144.0,262.82,406.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect.xml,1421.05,144.0,786.18,0.0,930.18,144.0,346.87,490.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-electric.xml,1838.27,144.0,1312.12,0.0,1456.12,144.0,238.15,382.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1674.42,144.0,991.6,0.0,1135.6,144.0,394.82,538.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-hpwh.xml,1660.16,144.0,1088.73,0.0,1232.73,144.0,283.43,427.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-jacket-indirect.xml,1418.95,144.0,786.24,0.0,930.24,144.0,344.71,488.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-outside.xml,1434.16,144.0,786.23,0.0,930.23,144.0,359.93,503.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-standbyloss.xml,1421.56,144.0,786.11,0.0,930.11,144.0,347.45,491.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1336.56,144.0,786.44,0.0,930.44,144.0,262.12,406.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect.xml,1419.07,144.0,786.18,0.0,930.18,144.0,344.89,488.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-jacket-electric.xml,1832.87,144.0,1306.72,0.0,1450.72,144.0,238.15,382.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1672.4,144.0,991.6,0.0,1135.6,144.0,392.8,536.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-jacket-hpwh.xml,1658.18,144.0,1087.47,0.0,1231.47,144.0,282.71,426.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-jacket-indirect.xml,1416.98,144.0,786.24,0.0,930.24,144.0,342.74,486.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1834.47,144.0,1310.6,0.0,1454.6,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-multiple.xml,1394.99,144.0,857.77,0.0,1001.77,144.0,249.22,393.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-multiple.xml,1393.88,144.0,856.9,0.0,1000.9,144.0,248.98,392.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-none.xml,1429.17,144.0,905.64,0.0,1049.64,144.0,235.53,379.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-demand.xml,1846.12,144.0,1322.25,0.0,1466.25,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-manual.xml,1830.46,144.0,1306.59,0.0,1450.59,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-nocontrol.xml,2394.75,144.0,1870.88,0.0,2014.88,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-temperature.xml,2214.54,144.0,1690.67,0.0,1834.67,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-recirc-timer.xml,2394.75,144.0,1870.88,0.0,2014.88,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-direct-evacuated-tube.xml,1633.26,144.0,1109.39,0.0,1253.39,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-direct-flat-plate.xml,1579.19,144.0,1055.41,0.0,1199.41,144.0,235.78,379.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-direct-ics.xml,1635.4,144.0,1111.53,0.0,1255.53,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-fraction.xml,1630.9,144.0,1104.18,0.0,1248.18,144.0,238.72,382.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-indirect-flat-plate.xml,1578.72,144.0,1058.63,0.0,1202.63,144.0,232.09,376.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-thermosyphon-flat-plate.xml,1568.96,144.0,1045.17,0.0,1189.17,144.0,235.79,379.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-coal.xml,1751.8,144.0,993.6,0.0,1137.6,144.0,238.2,382.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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1847.5,144.0,1323.7,0.0,1467.7,144.0,235.8,379.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-elec-uef.xml,1850.31,144.0,1326.99,0.0,1470.99,144.0,235.32,379.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas-outside.xml,1696.28,144.0,985.73,0.0,1129.73,144.0,422.55,566.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas-uef-fhr.xml,1679.18,144.0,992.19,0.0,1136.19,144.0,398.99,542.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas-uef.xml,1679.18,144.0,992.19,0.0,1136.19,144.0,398.99,542.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-gas.xml,1683.65,144.0,993.6,0.0,1137.6,144.0,402.05,546.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-detailed-schedules.xml,1637.75,144.0,1057.67,0.0,1201.67,144.0,292.08,436.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1631.77,144.0,1051.29,0.0,1195.29,144.0,292.48,436.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-outside.xml,1764.37,144.0,1236.11,0.0,1380.11,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-uef.xml,1631.77,144.0,1051.29,0.0,1195.29,144.0,292.48,436.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,1568.64,144.0,1025.77,0.0,1169.77,144.0,254.87,398.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-with-solar.xml,1580.28,144.0,1048.62,0.0,1192.62,144.0,243.66,387.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump.xml,1665.15,144.0,1094.47,0.0,1238.47,144.0,282.68,426.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1844.81,144.0,1310.85,0.0,1454.85,144.0,245.96,389.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-model-type-stratified.xml,1834.19,144.0,1306.6,0.0,1450.6,144.0,239.59,383.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-oil.xml,2060.74,144.0,993.6,0.0,1137.6,144.0,238.2,382.2,0.0,540.94,540.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-wood.xml,1751.8,144.0,993.6,0.0,1137.6,144.0,238.2,382.2,0.0,0.0,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1634.4,144.0,985.73,0.0,1129.73,144.0,360.67,504.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-electric-outside.xml,1860.24,144.0,1331.98,0.0,1475.98,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-electric-uef.xml,1856.33,144.0,1328.07,0.0,1472.07,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-electric.xml,1860.24,144.0,1331.98,0.0,1475.98,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas-uef.xml,1618.12,144.0,985.73,0.0,1129.73,144.0,344.39,488.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas-with-solar-fraction.xml,1556.23,144.0,985.73,0.0,1129.73,144.0,282.5,426.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas-with-solar.xml,1543.36,144.0,1001.52,0.0,1145.52,144.0,253.84,397.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-gas.xml,1634.66,144.0,985.73,0.0,1129.73,144.0,360.93,504.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-propane.xml,1823.17,144.0,985.73,0.0,1129.73,144.0,240.26,384.26,0.0,0.0,0.0,0.0,309.18,309.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-2stories-garage.xml,2059.26,144.0,1509.39,0.0,1653.39,144.0,261.87,405.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-2stories.xml,2230.19,144.0,1630.72,0.0,1774.72,144.0,311.47,455.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-1.xml,1671.17,144.0,1126.22,0.0,1270.22,144.0,256.95,400.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-2.xml,1760.82,144.0,1226.45,0.0,1370.45,144.0,246.37,390.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-4.xml,1933.98,144.0,1420.48,0.0,1564.48,144.0,225.5,369.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-5.xml,2019.46,144.0,1516.22,0.0,1660.22,144.0,215.24,359.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-ceilingtypes.xml,2031.78,144.0,1342.79,0.0,1486.79,144.0,400.99,544.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-floortypes.xml,1770.03,144.0,1081.98,0.0,1225.98,144.0,400.05,544.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-garage.xml,1816.12,144.0,1274.65,0.0,1418.65,144.0,253.47,397.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-ach-house-pressure.xml,1847.95,144.0,1324.08,0.0,1468.08,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-cfm-house-pressure.xml,1847.95,144.0,1324.08,0.0,1468.08,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-cfm50.xml,1847.95,144.0,1324.08,0.0,1468.08,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-ela.xml,1929.17,144.0,1324.52,0.0,1468.52,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-flue.xml,1862.87,144.0,1324.07,0.0,1468.07,144.0,250.8,394.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-natural-ach.xml,1929.17,144.0,1324.52,0.0,1468.52,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-natural-cfm.xml,1929.17,144.0,1324.52,0.0,1468.52,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-orientations.xml,1849.67,144.0,1323.18,0.0,1467.18,144.0,238.49,382.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-overhangs.xml,1844.8,144.0,1317.81,0.0,1461.81,144.0,238.99,382.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-rooftypes.xml,1842.74,144.0,1317.96,0.0,1461.96,144.0,236.78,380.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-skylights-physical-properties.xml,1903.46,144.0,1364.62,0.0,1508.62,144.0,250.84,394.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1861.19,144.0,1325.75,0.0,1469.75,144.0,247.44,391.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-skylights-storms.xml,1873.31,144.0,1351.98,0.0,1495.98,144.0,233.33,377.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1873.32,144.0,1355.67,0.0,1499.67,144.0,229.65,373.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-split-level.xml,1489.73,144.0,1085.48,0.0,1229.48,144.0,116.25,260.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-thermal-mass.xml,1844.54,144.0,1322.35,0.0,1466.35,144.0,234.19,378.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-walltypes.xml,1989.54,144.0,1274.59,0.0,1418.59,144.0,426.95,570.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-natural-ventilation-availability.xml,1812.24,144.0,1287.61,0.0,1431.61,144.0,236.63,380.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1799.85,144.0,1248.42,0.0,1392.42,144.0,263.43,407.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-physical-properties.xml,1933.44,144.0,1328.22,0.0,1472.22,144.0,317.22,461.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-shading-seasons.xml,1847.92,144.0,1325.17,0.0,1469.17,144.0,234.75,378.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-shading.xml,1778.97,144.0,1232.84,0.0,1376.84,144.0,258.13,402.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-windows-storms.xml,1842.77,144.0,1302.59,0.0,1446.59,144.0,252.18,396.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-ambient.xml,1589.19,144.0,1117.64,0.0,1261.64,144.0,183.55,327.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-basement-garage.xml,1701.14,144.0,1203.84,0.0,1347.84,144.0,209.3,353.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-belly-wing-no-skirt.xml,1582.91,144.0,1082.99,0.0,1226.99,144.0,211.92,355.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-belly-wing-skirt.xml,1579.19,144.0,1083.29,0.0,1227.29,144.0,207.9,351.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2086.27,144.0,1371.93,0.0,1515.93,144.0,426.34,570.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-basement-slab-insulation-full.xml,1833.79,144.0,1344.01,0.0,1488.01,144.0,201.78,345.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-basement-slab-insulation.xml,1841.54,144.0,1331.78,0.0,1475.78,144.0,221.76,365.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-basement-wall-insulation.xml,1823.12,144.0,1307.21,0.0,1451.21,144.0,227.91,371.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-conditioned-crawlspace.xml,1544.72,144.0,1066.03,0.0,1210.03,144.0,190.69,334.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-multiple.xml,1518.34,144.0,1096.02,0.0,1240.02,144.0,134.32,278.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-slab.xml,1477.69,144.0,1080.28,0.0,1224.28,144.0,109.41,253.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement-above-grade.xml,1534.46,144.0,1101.14,0.0,1245.14,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1489.97,144.0,1079.13,0.0,1223.13,144.0,122.84,266.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement-wall-insulation.xml,1561.68,144.0,1066.84,0.0,1210.84,144.0,206.84,350.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement.xml,1519.9,144.0,1097.25,0.0,1241.25,144.0,134.65,278.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unvented-crawlspace.xml,1500.1,144.0,1100.87,0.0,1244.87,144.0,111.23,255.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-vented-crawlspace.xml,1518.71,144.0,1098.73,0.0,1242.73,144.0,131.98,275.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-walkout-basement.xml,1921.31,144.0,1337.96,0.0,1481.96,144.0,295.35,439.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1426.77,144.0,1282.77,0.0,1426.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1823.36,144.0,1679.36,0.0,1823.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1681.65,144.0,1537.65,0.0,1681.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1821.67,144.0,1677.67,0.0,1821.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1825.49,144.0,1681.49,0.0,1825.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-1-speed.xml,1823.36,144.0,1679.36,0.0,1823.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-2-speed.xml,1671.08,144.0,1527.08,0.0,1671.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1867.12,144.0,1422.25,0.0,1566.25,144.0,156.87,300.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1871.54,144.0,1378.87,0.0,1522.87,144.0,204.67,348.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,1871.54,144.0,1378.87,0.0,1522.87,144.0,204.67,348.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1870.89,144.0,1425.97,0.0,1569.97,144.0,156.92,300.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1875.45,144.0,1431.78,0.0,1575.78,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1659.5,144.0,1515.5,0.0,1659.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-sizing-controls.xml,1938.24,144.0,1581.06,0.0,1725.06,144.0,69.18,213.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize.xml,1860.52,144.0,1329.08,0.0,1473.08,144.0,243.44,387.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-coal-only.xml,1552.7,144.0,1124.96,0.0,1268.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,283.74,283.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1920.19,144.0,1776.19,0.0,1920.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-gas-central-ac-1-speed.xml,1823.83,144.0,1332.44,0.0,1476.44,144.0,203.39,347.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-gas-only-pilot.xml,1663.54,144.0,1121.57,0.0,1265.57,144.0,253.97,397.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-gas-only.xml,1610.87,144.0,1121.57,0.0,1265.57,144.0,201.3,345.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-oil-only.xml,1930.54,144.0,1124.96,0.0,1268.96,0.0,0.0,0.0,0.0,661.58,661.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-propane-only.xml,1781.15,144.0,1120.78,0.0,1264.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,516.37,516.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-boiler-wood-only.xml,1550.13,144.0,1120.78,0.0,1264.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,285.35,285.35,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-only-1-speed-seer2.xml,1467.21,144.0,1323.21,0.0,1467.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-only-1-speed.xml,1467.8,144.0,1323.8,0.0,1467.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-only-2-speed.xml,1405.64,144.0,1261.64,0.0,1405.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-only-var-speed.xml,1379.75,144.0,1235.75,0.0,1379.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1896.36,144.0,1752.36,0.0,1896.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-crankcase-heater-40w.xml,1842.72,144.0,1318.85,0.0,1462.85,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-demand.xml,1840.79,144.0,1316.92,0.0,1460.92,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-manual.xml,1825.37,144.0,1301.5,0.0,1445.5,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-nocontrol.xml,2381.49,144.0,1857.62,0.0,2001.62,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-temperature.xml,2203.43,144.0,1679.56,0.0,1823.56,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-recirc-timer.xml,2381.49,144.0,1857.62,0.0,2001.62,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-direct-evacuated-tube.xml,1629.62,144.0,1105.75,0.0,1249.75,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-direct-flat-plate.xml,1577.09,144.0,1053.31,0.0,1197.31,144.0,235.78,379.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-direct-ics.xml,1632.45,144.0,1108.58,0.0,1252.58,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-fraction.xml,1628.99,144.0,1102.27,0.0,1246.27,144.0,238.72,382.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-indirect-flat-plate.xml,1576.59,144.0,1056.57,0.0,1200.57,144.0,232.02,376.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-thermosyphon-flat-plate.xml,1566.64,144.0,1042.86,0.0,1186.86,144.0,235.78,379.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-coal.xml,1748.96,144.0,993.59,0.0,1137.59,144.0,238.21,382.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,229.16,229.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-detailed-setpoints.xml,1842.13,144.0,1318.33,0.0,1462.33,144.0,235.8,379.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-elec-uef.xml,1844.89,144.0,1321.57,0.0,1465.57,144.0,235.32,379.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-gas-outside.xml,1694.27,144.0,985.73,0.0,1129.73,144.0,420.54,564.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-gas-uef-fhr.xml,1677.14,144.0,992.19,0.0,1136.19,144.0,396.95,540.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-gas-uef.xml,1677.14,144.0,992.19,0.0,1136.19,144.0,396.95,540.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-gas.xml,1681.63,144.0,993.59,0.0,1137.59,144.0,400.04,544.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-detailed-schedules.xml,1636.1,144.0,1056.95,0.0,1200.95,144.0,291.15,435.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1629.92,144.0,1050.4,0.0,1194.4,144.0,291.52,435.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-outside.xml,1761.22,144.0,1232.96,0.0,1376.96,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-uef.xml,1629.92,144.0,1050.4,0.0,1194.4,144.0,291.52,435.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,1567.91,144.0,1025.36,0.0,1169.36,144.0,254.55,398.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-with-solar.xml,1578.78,144.0,1047.77,0.0,1191.77,144.0,243.01,387.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump.xml,1662.81,144.0,1093.02,0.0,1237.02,144.0,281.79,425.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1839.4,144.0,1305.44,0.0,1449.44,144.0,245.96,389.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-model-type-stratified.xml,1828.79,144.0,1301.2,0.0,1445.2,144.0,239.59,383.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-oil.xml,2054.11,144.0,993.59,0.0,1137.59,144.0,238.21,382.21,0.0,534.31,534.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-wood.xml,1748.96,144.0,993.59,0.0,1137.59,144.0,238.21,382.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.16,229.16,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-detailed-setpoints.xml,1632.34,144.0,985.73,0.0,1129.73,144.0,358.61,502.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-electric-outside.xml,1854.31,144.0,1326.05,0.0,1470.05,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-electric-uef.xml,1850.46,144.0,1322.2,0.0,1466.2,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-electric.xml,1854.31,144.0,1326.05,0.0,1470.05,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-gas-uef.xml,1616.34,144.0,985.73,0.0,1129.73,144.0,342.61,486.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-gas-with-solar-fraction.xml,1555.5,144.0,985.73,0.0,1129.73,144.0,281.77,425.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-gas-with-solar.xml,1542.59,144.0,1001.6,0.0,1145.6,144.0,252.99,396.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-gas.xml,1632.59,144.0,985.73,0.0,1129.73,144.0,358.86,502.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-propane.xml,1817.88,144.0,985.73,0.0,1129.73,144.0,240.26,384.26,0.0,0.0,0.0,0.0,303.89,303.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-2stories-garage.xml,2053.87,144.0,1504.0,0.0,1648.0,144.0,261.87,405.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-2stories.xml,2224.9,144.0,1625.43,0.0,1769.43,144.0,311.47,455.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-beds-1.xml,1668.09,144.0,1123.14,0.0,1267.14,144.0,256.95,400.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-beds-2.xml,1756.57,144.0,1222.2,0.0,1366.2,144.0,246.37,390.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-beds-4.xml,1927.48,144.0,1413.98,0.0,1557.98,144.0,225.5,369.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-beds-5.xml,2011.84,144.0,1508.6,0.0,1652.6,144.0,215.24,359.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-ceilingtypes.xml,2026.36,144.0,1337.37,0.0,1481.37,144.0,400.99,544.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-floortypes.xml,1764.48,144.0,1076.43,0.0,1220.43,144.0,400.05,544.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-garage.xml,1810.7,144.0,1269.23,0.0,1413.23,144.0,253.47,397.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-ach-house-pressure.xml,1842.55,144.0,1318.68,0.0,1462.68,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-cfm-house-pressure.xml,1842.55,144.0,1318.68,0.0,1462.68,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-cfm50.xml,1842.55,144.0,1318.68,0.0,1462.68,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-ela.xml,1923.75,144.0,1319.1,0.0,1463.1,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-flue.xml,1857.44,144.0,1318.64,0.0,1462.64,144.0,250.8,394.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-natural-ach.xml,1923.75,144.0,1319.1,0.0,1463.1,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-infil-natural-cfm.xml,1923.75,144.0,1319.1,0.0,1463.1,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-orientations.xml,1844.27,144.0,1317.78,0.0,1461.78,144.0,238.49,382.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-overhangs.xml,1839.39,144.0,1312.4,0.0,1456.4,144.0,238.99,382.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-rooftypes.xml,1837.32,144.0,1312.54,0.0,1456.54,144.0,236.78,380.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-skylights-physical-properties.xml,1898.04,144.0,1359.2,0.0,1503.2,144.0,250.84,394.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1855.76,144.0,1320.32,0.0,1464.32,144.0,247.44,391.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-skylights-storms.xml,1867.9,144.0,1346.57,0.0,1490.57,144.0,233.33,377.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1867.9,144.0,1350.25,0.0,1494.25,144.0,229.65,373.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-split-level.xml,1484.06,144.0,1079.81,0.0,1223.81,144.0,116.25,260.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-thermal-mass.xml,1839.13,144.0,1316.94,0.0,1460.94,144.0,234.19,378.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-walltypes.xml,1984.11,144.0,1269.16,0.0,1413.16,144.0,426.95,570.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-natural-ventilation-availability.xml,1806.84,144.0,1282.21,0.0,1426.21,144.0,236.63,380.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1794.41,144.0,1242.98,0.0,1386.98,144.0,263.43,407.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-physical-properties.xml,1928.02,144.0,1322.8,0.0,1466.8,144.0,317.22,461.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-shading-seasons.xml,1842.52,144.0,1319.77,0.0,1463.77,144.0,234.75,378.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-shading.xml,1773.56,144.0,1227.43,0.0,1371.43,144.0,258.13,402.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-windows-storms.xml,1837.39,144.0,1297.21,0.0,1441.21,144.0,252.18,396.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-ambient.xml,1583.66,144.0,1112.11,0.0,1256.11,144.0,183.55,327.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-basement-garage.xml,1695.57,144.0,1198.27,0.0,1342.27,144.0,209.3,353.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-belly-wing-no-skirt.xml,1577.38,144.0,1077.46,0.0,1221.46,144.0,211.92,355.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-belly-wing-skirt.xml,1573.65,144.0,1077.75,0.0,1221.75,144.0,207.9,351.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2080.85,144.0,1366.51,0.0,1510.51,144.0,426.34,570.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-basement-slab-insulation-full.xml,1828.38,144.0,1338.6,0.0,1482.6,144.0,201.78,345.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-basement-slab-insulation.xml,1836.12,144.0,1326.36,0.0,1470.36,144.0,221.76,365.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-basement-wall-insulation.xml,1817.72,144.0,1301.81,0.0,1445.81,144.0,227.91,371.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-conditioned-crawlspace.xml,1539.17,144.0,1060.48,0.0,1204.48,144.0,190.69,334.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-multiple.xml,1512.88,144.0,1090.56,0.0,1234.56,144.0,134.32,278.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-slab.xml,1472.16,144.0,1074.75,0.0,1218.75,144.0,109.41,253.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement-above-grade.xml,1528.98,144.0,1095.66,0.0,1239.66,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1484.49,144.0,1073.65,0.0,1217.65,144.0,122.84,266.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement-wall-insulation.xml,1556.2,144.0,1061.36,0.0,1205.36,144.0,206.84,350.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement.xml,1514.42,144.0,1091.77,0.0,1235.77,144.0,134.65,278.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unvented-crawlspace.xml,1494.55,144.0,1095.32,0.0,1239.32,144.0,111.23,255.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-vented-crawlspace.xml,1513.18,144.0,1093.2,0.0,1237.2,144.0,131.98,275.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-walkout-basement.xml,1915.91,144.0,1332.56,0.0,1476.56,144.0,295.35,439.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1421.39,144.0,1277.39,0.0,1421.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1817.96,144.0,1673.96,0.0,1817.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1676.24,144.0,1532.24,0.0,1676.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1816.28,144.0,1672.28,0.0,1816.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1820.08,144.0,1676.08,0.0,1820.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1817.96,144.0,1673.96,0.0,1817.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-2-speed.xml,1665.68,144.0,1521.68,0.0,1665.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1861.71,144.0,1416.84,0.0,1560.84,144.0,156.87,300.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1866.12,144.0,1373.45,0.0,1517.45,144.0,204.67,348.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,1866.12,144.0,1373.45,0.0,1517.45,144.0,204.67,348.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1865.47,144.0,1420.55,0.0,1564.55,144.0,156.92,300.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1870.04,144.0,1426.37,0.0,1570.37,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1654.1,144.0,1510.1,0.0,1654.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-sizing-controls.xml,1928.45,144.0,1571.27,0.0,1715.27,144.0,69.18,213.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize.xml,1855.11,144.0,1323.67,0.0,1467.67,144.0,243.44,387.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-coal-only.xml,1547.28,144.0,1119.54,0.0,1263.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,283.74,283.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1914.77,144.0,1770.77,0.0,1914.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-gas-central-ac-1-speed.xml,1818.42,144.0,1327.03,0.0,1471.03,144.0,203.39,347.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-gas-only-pilot.xml,1658.12,144.0,1116.15,0.0,1260.15,144.0,253.97,397.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-gas-only.xml,1605.45,144.0,1116.15,0.0,1260.15,144.0,201.3,345.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-oil-only.xml,1925.12,144.0,1119.54,0.0,1263.54,0.0,0.0,0.0,0.0,661.58,661.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-propane-only.xml,1775.73,144.0,1115.36,0.0,1259.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,516.37,516.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-boiler-wood-only.xml,1544.71,144.0,1115.36,0.0,1259.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,285.35,285.35,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-central-ac-only-1-speed-seer2.xml,1461.83,144.0,1317.83,0.0,1461.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-central-ac-only-1-speed.xml,1462.42,144.0,1318.42,0.0,1462.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-central-ac-only-2-speed.xml,1400.26,144.0,1256.26,0.0,1400.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-central-ac-only-var-speed.xml,1374.37,144.0,1230.37,0.0,1374.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1890.95,144.0,1746.95,0.0,1890.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-crankcase-heater-40w.xml,1837.31,144.0,1313.44,0.0,1457.44,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1931.23,144.0,1530.39,0.0,1674.39,144.0,112.84,256.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1934.4,144.0,1493.79,0.0,1637.79,144.0,152.61,296.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1825.77,144.0,1380.92,0.0,1524.92,144.0,156.85,300.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1833.86,144.0,1392.74,0.0,1536.74,144.0,153.12,297.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1736.45,144.0,1330.49,0.0,1474.49,144.0,117.96,261.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-area-fractions.xml,2491.68,144.0,1718.8,0.0,1862.8,144.0,484.88,628.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-area-multipliers.xml,1836.44,144.0,1319.35,0.0,1463.35,144.0,229.09,373.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-buried.xml,1812.49,144.0,1310.26,0.0,1454.26,144.0,214.23,358.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-defaults.xml,1930.17,144.0,1492.26,0.0,1636.26,144.0,149.91,293.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-effective-rvalue.xml,1847.89,144.0,1324.06,0.0,1468.06,144.0,235.83,379.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-leakage-cfm50.xml,1838.89,144.0,1319.89,0.0,1463.89,144.0,231.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1866.14,144.0,1331.52,0.0,1475.52,144.0,246.62,390.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-elec-resistance-only.xml,1848.39,144.0,1704.39,0.0,1848.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-evap-cooler-furnace-gas.xml,1700.1,144.0,1169.87,0.0,1313.87,144.0,242.23,386.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-evap-cooler-only-ducted.xml,1296.0,144.0,1152.0,0.0,1296.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1292.84,144.0,1148.84,0.0,1292.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-fireplace-wood-only.xml,1580.39,144.0,1116.33,0.0,1260.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,320.06,320.06,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,1974.46,144.0,1116.33,0.0,1260.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,714.13,714.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-floor-furnace-propane-only.xml,1839.51,144.0,1116.33,0.0,1260.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,579.18,579.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-coal-only.xml,1621.35,144.0,1137.87,0.0,1281.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,339.48,339.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-elec-central-ac-1-speed.xml,2219.89,144.0,2075.89,0.0,2219.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-elec-only.xml,2061.63,144.0,1917.63,0.0,2061.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1798.37,144.0,1274.5,0.0,1418.5,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-central-ac-var-speed.xml,1773.85,144.0,1249.98,0.0,1393.98,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,1491.88,144.0,1124.86,0.0,1268.86,144.0,79.02,223.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only-pilot.xml,1717.62,144.0,1137.87,0.0,1281.87,144.0,291.75,435.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only.xml,1665.62,144.0,1137.87,0.0,1281.87,144.0,239.75,383.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-room-ac.xml,1871.03,144.0,1340.8,0.0,1484.8,144.0,242.23,386.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-oil-only.xml,2073.42,144.0,1137.87,0.0,1281.87,0.0,0.0,0.0,0.0,791.55,791.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-propane-only.xml,1896.21,144.0,1137.87,0.0,1281.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,614.34,614.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-wood-only.xml,1621.35,144.0,1137.87,0.0,1281.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.48,339.48,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1925.82,144.0,1524.98,0.0,1668.98,144.0,112.84,256.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1928.99,144.0,1488.38,0.0,1632.38,144.0,152.61,296.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1820.36,144.0,1375.51,0.0,1519.51,144.0,156.85,300.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1828.45,144.0,1387.33,0.0,1531.33,144.0,153.12,297.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1731.04,144.0,1325.08,0.0,1469.08,144.0,117.96,261.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-area-fractions.xml,2486.39,144.0,1713.51,0.0,1857.51,144.0,484.88,628.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1831.03,144.0,1313.94,0.0,1457.94,144.0,229.09,373.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-buried.xml,1807.08,144.0,1304.85,0.0,1448.85,144.0,214.23,358.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-defaults.xml,1924.76,144.0,1486.85,0.0,1630.85,144.0,149.91,293.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-effective-rvalue.xml,1842.48,144.0,1318.65,0.0,1462.65,144.0,235.83,379.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-leakage-cfm50.xml,1833.49,144.0,1314.49,0.0,1458.49,144.0,231.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1860.73,144.0,1326.11,0.0,1470.11,144.0,246.62,390.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-elec-resistance-only.xml,1842.97,144.0,1698.97,0.0,1842.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-evap-cooler-furnace-gas.xml,1694.69,144.0,1164.46,0.0,1308.46,144.0,242.23,386.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-evap-cooler-only-ducted.xml,1290.62,144.0,1146.62,0.0,1290.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-evap-cooler-only.xml,1287.46,144.0,1143.46,0.0,1287.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1574.96,144.0,1110.9,0.0,1254.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,320.06,320.06,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-floor-furnace-propane-only-pilot-light.xml,1969.03,144.0,1110.9,0.0,1254.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,714.13,714.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-floor-furnace-propane-only.xml,1834.08,144.0,1110.9,0.0,1254.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,579.18,579.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-coal-only.xml,1615.94,144.0,1132.46,0.0,1276.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,339.48,339.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-elec-central-ac-1-speed.xml,2214.48,144.0,2070.48,0.0,2214.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-elec-only.xml,2056.22,144.0,1912.22,0.0,2056.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-central-ac-2-speed.xml,1792.97,144.0,1269.1,0.0,1413.1,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-central-ac-var-speed.xml,1768.44,144.0,1244.57,0.0,1388.57,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,1486.47,144.0,1119.45,0.0,1263.45,144.0,79.02,223.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-only-pilot.xml,1712.21,144.0,1132.46,0.0,1276.46,144.0,291.75,435.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-only.xml,1660.21,144.0,1132.46,0.0,1276.46,144.0,239.75,383.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-gas-room-ac.xml,1865.62,144.0,1335.39,0.0,1479.39,144.0,242.23,386.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-oil-only.xml,2068.01,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,791.55,791.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-propane-only.xml,1890.8,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,614.34,614.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-furnace-wood-only.xml,1615.94,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.48,339.48,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop.xml,1579.06,144.0,1435.06,0.0,1579.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1393.78,144.0,1249.78,0.0,1393.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1595.76,144.0,1451.76,0.0,1595.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1474.01,144.0,1330.01,0.0,1474.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,1508.83,144.0,1364.83,0.0,1508.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1594.77,144.0,1450.77,0.0,1594.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1936.39,144.0,1792.39,0.0,1936.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1766.41,144.0,1622.41,0.0,1766.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1746.12,144.0,1602.12,0.0,1746.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1889.69,144.0,1353.39,0.0,1497.39,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1832.57,144.0,1296.27,0.0,1440.27,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1808.11,144.0,1271.81,0.0,1415.81,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-only.xml,1676.55,144.0,1133.07,0.0,1277.07,144.0,255.48,399.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,1667.9,144.0,1523.9,0.0,1667.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1396.36,144.0,1252.36,0.0,1396.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1646.06,144.0,1502.06,0.0,1646.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,1371.31,144.0,1227.31,0.0,1371.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,1365.77,144.0,1221.77,0.0,1365.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1346.31,144.0,1202.31,0.0,1346.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1476.34,144.0,1332.34,0.0,1476.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted.xml,1564.86,144.0,1420.86,0.0,1564.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1547.56,144.0,1403.56,0.0,1547.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1702.21,144.0,1318.86,0.0,1462.86,144.0,95.35,239.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1694.99,144.0,1312.7,0.0,1456.7,144.0,94.29,238.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1882.0,144.0,1309.39,0.0,1453.39,0.0,0.0,0.0,0.0,428.61,428.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1533.31,144.0,1389.31,0.0,1533.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless.xml,1533.31,144.0,1389.31,0.0,1533.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-multiple.xml,2486.85,144.0,1904.05,0.0,2048.05,144.0,74.12,218.12,0.0,123.05,123.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2522.31,144.0,2378.31,0.0,2522.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac-with-heating-electricity.xml,2015.67,144.0,1871.67,0.0,2015.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac-with-heating-natural-gas.xml,1779.87,144.0,1277.48,0.0,1421.48,144.0,214.39,358.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac.xml,1418.87,144.0,1274.87,0.0,1418.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-pthp-heating-capacity-17f.xml,1683.2,144.0,1539.2,0.0,1683.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-pthp.xml,1683.2,144.0,1539.2,0.0,1683.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1331.24,144.0,1187.24,0.0,1331.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only-ceer.xml,1459.64,144.0,1315.64,0.0,1459.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only-detailed-setpoints.xml,1413.71,144.0,1269.71,0.0,1413.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only.xml,1459.27,144.0,1315.27,0.0,1459.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-with-heating.xml,2057.17,144.0,1913.17,0.0,2057.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-with-reverse-cycle.xml,1683.2,144.0,1539.2,0.0,1683.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1844.37,144.0,1322.23,0.0,1466.23,144.0,234.14,378.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints-daily-schedules.xml,1819.47,144.0,1301.63,0.0,1445.63,144.0,229.84,373.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints-daily-setbacks.xml,1816.76,144.0,1307.19,0.0,1451.19,144.0,221.57,365.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints.xml,1621.69,144.0,1256.48,0.0,1400.48,144.0,77.21,221.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-space-heater-gas-only.xml,1574.03,144.0,1116.28,0.0,1260.28,144.0,169.75,313.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-stove-oil-only.xml,2006.14,144.0,1118.7,0.0,1262.7,0.0,0.0,0.0,0.0,743.44,743.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-stove-wood-pellets-only.xml,1581.55,144.0,1118.7,0.0,1262.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,318.85,318.85,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,1807.23,144.0,1305.53,0.0,1449.53,144.0,213.7,357.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-undersized.xml,1666.09,144.0,1216.56,0.0,1360.56,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1860.38,144.0,1716.38,0.0,1860.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-ceiling-fans.xml,1861.97,144.0,1338.32,0.0,1482.32,144.0,235.65,379.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-holiday.xml,1855.27,144.0,1331.4,0.0,1475.4,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-kwh-per-year.xml,1960.31,144.0,1456.47,0.0,1600.47,144.0,215.84,359.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-mixed.xml,1854.47,144.0,1330.6,0.0,1474.6,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-none-ceiling-fans.xml,1700.56,144.0,1147.54,0.0,1291.54,144.0,265.02,409.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-none.xml,1686.47,144.0,1133.22,0.0,1277.22,144.0,265.25,409.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-AMY-2012.xml,1911.65,144.0,1282.79,0.0,1426.79,144.0,340.86,484.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-baltimore-md.xml,1596.96,144.0,1176.85,0.0,1320.85,144.0,132.11,276.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop.xml,1573.65,144.0,1429.65,0.0,1573.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1388.4,144.0,1244.4,0.0,1388.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1590.36,144.0,1446.36,0.0,1590.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1468.59,144.0,1324.59,0.0,1468.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,1503.4,144.0,1359.4,0.0,1503.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump.xml,1589.36,144.0,1445.36,0.0,1589.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1930.98,144.0,1786.98,0.0,1930.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1761.0,144.0,1617.0,0.0,1761.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1740.72,144.0,1596.72,0.0,1740.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1884.28,144.0,1347.98,0.0,1491.98,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1827.16,144.0,1290.86,0.0,1434.86,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1802.71,144.0,1266.41,0.0,1410.41,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-furnace-gas-only.xml,1671.13,144.0,1127.65,0.0,1271.65,144.0,255.48,399.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1662.49,144.0,1518.49,0.0,1662.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1390.98,144.0,1246.98,0.0,1390.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1640.65,144.0,1496.65,0.0,1640.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,1365.93,144.0,1221.93,0.0,1365.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,1360.39,144.0,1216.39,0.0,1360.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1340.93,144.0,1196.93,0.0,1340.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1470.92,144.0,1326.92,0.0,1470.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ducted.xml,1559.46,144.0,1415.46,0.0,1559.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1542.16,144.0,1398.16,0.0,1542.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1696.77,144.0,1313.42,0.0,1457.42,144.0,95.35,239.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1689.58,144.0,1307.29,0.0,1451.29,144.0,94.29,238.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1876.57,144.0,1303.96,0.0,1447.96,0.0,0.0,0.0,0.0,428.61,428.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1527.9,144.0,1383.9,0.0,1527.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1527.9,144.0,1383.9,0.0,1527.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2481.42,144.0,1898.62,0.0,2042.62,144.0,74.12,218.12,0.0,123.05,123.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2513.83,144.0,2369.83,0.0,2513.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ptac-with-heating-electricity.xml,2010.26,144.0,1866.26,0.0,2010.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ptac-with-heating-natural-gas.xml,1774.46,144.0,1272.07,0.0,1416.07,144.0,214.39,358.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ptac.xml,1413.49,144.0,1269.49,0.0,1413.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-pthp-heating-capacity-17f.xml,1677.79,144.0,1533.79,0.0,1677.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-pthp.xml,1677.79,144.0,1533.79,0.0,1677.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-only-33percent.xml,1325.86,144.0,1181.86,0.0,1325.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-only-ceer.xml,1454.26,144.0,1310.26,0.0,1454.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-only-detailed-setpoints.xml,1408.31,144.0,1264.31,0.0,1408.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-only.xml,1453.89,144.0,1309.89,0.0,1453.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-with-heating.xml,2051.76,144.0,1907.76,0.0,2051.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-room-ac-with-reverse-cycle.xml,1677.79,144.0,1533.79,0.0,1677.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-seasons.xml,1838.95,144.0,1316.81,0.0,1460.81,144.0,234.14,378.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-setpoints-daily-schedules.xml,1814.05,144.0,1296.21,0.0,1440.21,144.0,229.84,373.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-setpoints-daily-setbacks.xml,1811.33,144.0,1301.77,0.0,1445.77,144.0,221.56,365.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-setpoints.xml,1616.3,144.0,1251.09,0.0,1395.09,144.0,77.21,221.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-space-heater-gas-only.xml,1568.61,144.0,1110.86,0.0,1254.86,144.0,169.75,313.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-stove-oil-only.xml,2000.7,144.0,1113.26,0.0,1257.26,0.0,0.0,0.0,0.0,743.44,743.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-stove-wood-pellets-only.xml,1576.11,144.0,1113.26,0.0,1257.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,318.85,318.85,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,1801.82,144.0,1300.12,0.0,1444.12,144.0,213.7,357.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-undersized.xml,1660.68,144.0,1211.15,0.0,1355.15,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1854.96,144.0,1710.96,0.0,1854.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-ceiling-fans.xml,1856.55,144.0,1332.9,0.0,1476.9,144.0,235.65,379.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-holiday.xml,1849.86,144.0,1325.99,0.0,1469.99,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-kwh-per-year.xml,1954.92,144.0,1451.08,0.0,1595.08,144.0,215.84,359.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-mixed.xml,1849.06,144.0,1325.19,0.0,1469.19,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-none-ceiling-fans.xml,1695.18,144.0,1142.16,0.0,1286.16,144.0,265.02,409.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-lighting-none.xml,1681.07,144.0,1127.82,0.0,1271.82,144.0,265.25,409.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-AMY-2012.xml,1905.99,144.0,1277.13,0.0,1421.13,144.0,340.86,484.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-baltimore-md.xml,1591.6,144.0,1171.49,0.0,1315.49,144.0,132.11,276.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-location-capetown-zaf.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-dallas-tx.xml,1508.52,144.0,1202.67,0.0,1346.67,144.0,17.85,161.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-duluth-mn.xml,1709.34,144.0,1113.53,0.0,1257.53,144.0,307.81,451.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-helena-mt.xml,1674.81,144.0,1034.19,0.0,1178.19,144.0,352.62,496.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-honolulu-hi.xml,4480.8,144.0,4336.8,0.0,4480.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-miami-fl.xml,1467.78,144.0,1323.78,0.0,1467.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-phoenix-az.xml,1645.83,144.0,1357.82,0.0,1501.82,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1213.47,144.0,828.25,0.0,972.25,144.0,97.22,241.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-balanced.xml,2122.04,144.0,1391.37,0.0,1535.37,144.0,442.67,586.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-bath-kitchen-fans.xml,1869.21,144.0,1327.48,0.0,1471.48,144.0,253.73,397.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2049.15,144.0,1387.94,0.0,1531.94,144.0,373.21,517.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-dallas-tx.xml,1504.65,144.0,1198.8,0.0,1342.8,144.0,17.85,161.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-duluth-mn.xml,1702.38,144.0,1106.57,0.0,1250.57,144.0,307.81,451.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-helena-mt.xml,1669.92,144.0,1029.3,0.0,1173.3,144.0,352.62,496.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-honolulu-hi.xml,4472.33,144.0,4328.33,0.0,4472.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1465.04,144.0,1321.04,0.0,1465.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-phoenix-az.xml,1643.14,144.0,1355.13,0.0,1499.13,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1209.24,144.0,824.02,0.0,968.02,144.0,97.22,241.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-balanced.xml,2116.63,144.0,1385.96,0.0,1529.96,144.0,442.67,586.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-bath-kitchen-fans.xml,1863.78,144.0,1322.05,0.0,1466.05,144.0,253.73,397.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2043.74,144.0,1382.53,0.0,1526.53,144.0,373.21,517.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-mechvent-cfis-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-evap-cooler-only-ducted.xml,1398.02,144.0,1254.02,0.0,1398.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,1984.55,144.0,1338.52,0.0,1482.52,144.0,358.03,502.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-supplemental-fan-supply.xml,2007.71,144.0,1339.5,0.0,1483.5,144.0,380.21,524.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis.xml,2060.19,144.0,1385.43,0.0,1529.43,144.0,386.76,530.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-erv-atre-asre.xml,1968.87,144.0,1392.5,0.0,1536.5,144.0,288.37,432.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-erv.xml,1968.91,144.0,1392.5,0.0,1536.5,144.0,288.41,432.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-exhaust-rated-flow-rate.xml,2034.76,144.0,1354.53,0.0,1498.53,144.0,392.23,536.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-exhaust.xml,2034.76,144.0,1354.53,0.0,1498.53,144.0,392.23,536.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-hrv-asre.xml,1968.97,144.0,1392.62,0.0,1536.62,144.0,288.35,432.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-hrv.xml,1969.0,144.0,1392.62,0.0,1536.62,144.0,288.38,432.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-multiple.xml,2146.68,144.0,1408.6,0.0,1552.6,144.0,450.08,594.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2021.61,144.0,1357.15,0.0,1501.15,144.0,376.46,520.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1788.88,144.0,1263.1,0.0,1407.1,144.0,237.78,381.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-additional-properties.xml,1847.95,144.0,1324.08,0.0,1468.08,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-evap-cooler-only-ducted.xml,1392.63,144.0,1248.63,0.0,1392.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1979.13,144.0,1333.1,0.0,1477.1,144.0,358.03,502.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-supplemental-fan-supply.xml,2002.31,144.0,1334.1,0.0,1478.1,144.0,380.21,524.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis.xml,2054.79,144.0,1380.03,0.0,1524.03,144.0,386.76,530.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-erv-atre-asre.xml,1963.47,144.0,1387.1,0.0,1531.1,144.0,288.37,432.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-erv.xml,1963.51,144.0,1387.1,0.0,1531.1,144.0,288.41,432.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-exhaust-rated-flow-rate.xml,2029.34,144.0,1349.11,0.0,1493.11,144.0,392.23,536.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-exhaust.xml,2029.34,144.0,1349.11,0.0,1493.11,144.0,392.23,536.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-hrv-asre.xml,1963.57,144.0,1387.22,0.0,1531.22,144.0,288.35,432.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-hrv.xml,1963.6,144.0,1387.22,0.0,1531.22,144.0,288.38,432.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-multiple.xml,2141.27,144.0,1403.19,0.0,1547.19,144.0,450.08,594.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2016.21,144.0,1351.75,0.0,1495.75,144.0,376.46,520.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1783.48,144.0,1257.7,0.0,1401.7,144.0,237.78,381.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-additional-properties.xml,1842.55,144.0,1318.68,0.0,1462.68,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv-detailed-only.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,764.56,108.0,1266.55,-989.86,384.69,144.0,235.87,379.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,682.7,108.0,786.51,-591.68,302.83,144.0,235.87,379.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,679.4,108.0,753.85,-562.32,299.53,144.0,235.87,379.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,643.0,108.0,710.33,-555.2,263.13,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv-mixed.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,861.21,144.0,1324.08,-986.74,481.34,144.0,235.87,379.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,764.56,108.0,1266.55,-989.86,384.69,144.0,235.87,379.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 -base-misc-bills-pv.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,624.62,465.0,1268.82,-1486.13,247.69,132.0,244.93,376.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,96.87,465.0,1268.82,-2013.87,-280.06,132.0,244.93,376.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,-325.95,210.0,1268.82,-2181.7,-702.88,132.0,244.93,376.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,1801.75,144.0,1268.82,0.0,1412.82,144.0,244.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1070.51,144.0,1159.43,-713.71,589.72,144.0,336.79,480.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-emissions.xml,891.18,144.0,1353.94,-986.62,511.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators-battery-scheduled.xml,2298.16,144.0,1386.96,0.0,1530.96,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators-battery.xml,2235.28,144.0,1324.08,0.0,1468.08,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators.xml,2235.28,144.0,1324.08,0.0,1468.08,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-ground-conductivity.xml,1821.52,144.0,1321.29,0.0,1465.29,144.0,212.23,356.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-loads-large-uncommon.xml,3692.48,144.0,2515.37,0.0,2659.37,144.0,738.84,882.84,0.0,0.0,0.0,0.0,67.83,67.83,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3052.48,144.0,2385.11,0.0,2529.11,144.0,209.53,353.53,0.0,87.4,87.4,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1498.64,144.0,911.4,0.0,1055.4,144.0,299.24,443.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,1243.28,144.0,946.43,0.0,1090.43,144.0,8.85,152.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-neighbor-shading.xml,1894.48,144.0,1314.6,0.0,1458.6,144.0,291.88,435.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-shielding-of-home.xml,1848.07,144.0,1329.28,0.0,1473.28,144.0,230.79,374.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-usage-multiplier.xml,3012.79,144.0,1868.3,0.0,2012.3,144.0,721.24,865.24,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,891.18,144.0,1353.94,-986.62,511.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-garage.xml,861.47,144.0,1306.54,-986.62,463.93,144.0,253.54,397.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-round-trip-efficiency.xml,940.78,144.0,1403.54,-986.63,560.91,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-scheduled.xml,924.87,144.0,1386.96,-985.96,545.0,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery.xml,891.18,144.0,1353.94,-986.62,511.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators-battery-scheduled.xml,1011.66,144.0,1386.96,-1286.5,244.46,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators-battery.xml,979.06,144.0,1355.02,-1287.17,211.86,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators.xml,948.0,144.0,1324.08,-1287.29,180.8,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv.xml,861.21,144.0,1324.08,-986.74,481.34,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-bills-pv-detailed-only.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759.8,108.0,1260.94,-989.01,379.93,144.0,235.87,379.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,679.49,108.0,783.3,-591.68,299.62,144.0,235.87,379.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,676.11,108.0,750.56,-562.33,296.24,144.0,235.87,379.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,639.76,108.0,707.09,-555.2,259.89,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-bills-pv-mixed.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855.8,144.0,1318.68,-986.74,475.93,144.0,235.87,379.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,759.8,108.0,1260.94,-989.01,379.93,144.0,235.87,379.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 +base-misc-bills-pv.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,623.11,465.0,1263.64,-1482.46,246.18,132.0,244.93,376.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,91.69,465.0,1263.64,-2013.87,-285.24,132.0,244.93,376.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,-331.13,210.0,1263.64,-2181.7,-708.06,132.0,244.93,376.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-bills.xml,1796.57,144.0,1263.64,0.0,1407.64,144.0,244.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1067.59,144.0,1156.51,-713.7,586.8,144.0,336.79,480.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-emissions.xml,885.86,144.0,1348.61,-986.62,505.99,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators-battery-scheduled.xml,2292.75,144.0,1381.55,0.0,1525.55,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators-battery.xml,2229.88,144.0,1318.68,0.0,1462.68,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-generators.xml,2229.88,144.0,1318.68,0.0,1462.68,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-ground-conductivity.xml,1816.08,144.0,1315.86,0.0,1459.86,144.0,212.22,356.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-loads-large-uncommon.xml,3687.07,144.0,2509.96,0.0,2653.96,144.0,738.84,882.84,0.0,0.0,0.0,0.0,67.83,67.83,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3047.08,144.0,2379.71,0.0,2523.71,144.0,209.53,353.53,0.0,87.4,87.4,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-loads-none.xml,1493.23,144.0,905.99,0.0,1049.99,144.0,299.24,443.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-neighbor-shading-bldgtype-multifamily.xml,1237.52,144.0,940.67,0.0,1084.67,144.0,8.85,152.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-neighbor-shading.xml,1889.09,144.0,1309.21,0.0,1453.21,144.0,291.88,435.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1842.67,144.0,1323.88,0.0,1467.88,144.0,230.79,374.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-usage-multiplier.xml,3007.91,144.0,1863.42,0.0,2007.42,144.0,721.24,865.24,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,885.86,144.0,1348.61,-986.62,505.99,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-garage.xml,856.14,144.0,1301.22,-986.62,458.6,144.0,253.54,397.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-round-trip-efficiency.xml,935.6,144.0,1398.36,-986.63,555.73,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery-scheduled.xml,919.46,144.0,1381.55,-985.96,539.59,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-battery.xml,885.86,144.0,1348.61,-986.62,505.99,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators-battery-scheduled.xml,1006.25,144.0,1381.55,-1286.5,239.05,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators-battery.xml,973.64,144.0,1349.61,-1287.17,206.44,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv-generators.xml,942.59,144.0,1318.68,-1287.29,175.39,144.0,325.92,469.92,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-pv.xml,855.8,144.0,1318.68,-986.74,475.93,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-0-runperiod-1-month.xml,128.18,12.0,15.78,0.0,27.78,12.0,88.4,100.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-0.xml,919.42,144.0,270.79,0.0,414.79,144.0,360.63,504.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1-misc-loads-large-uncommon.xml,2787.04,144.0,1913.03,0.0,2057.03,144.0,435.74,579.74,0.0,0.0,0.0,0.0,70.81,70.81,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1-misc-loads-large-uncommon2.xml,2521.1,144.0,1824.0,0.0,1968.0,144.0,238.4,382.4,0.0,91.24,91.24,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1.xml,1591.9,144.0,1045.73,0.0,1189.73,144.0,258.17,402.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-5.xml,1329.96,144.0,1472.46,-743.14,873.31,144.0,312.65,456.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-all-10-mins.xml,1869.01,144.0,1333.16,0.0,1477.16,144.0,247.85,391.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-mixed-timesteps-power-outage.xml,1395.75,144.0,1056.43,0.0,1200.43,144.0,51.32,195.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-mixed-timesteps.xml,1640.09,144.0,1266.79,0.0,1410.79,144.0,85.3,229.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,1860.52,144.0,1330.01,0.0,1474.01,144.0,242.51,386.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,1555.11,144.0,1115.15,0.0,1259.15,144.0,151.96,295.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-1-misc-loads-large-uncommon.xml,2785.05,144.0,1911.04,0.0,2055.04,144.0,435.74,579.74,0.0,0.0,0.0,0.0,70.81,70.81,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-1-misc-loads-large-uncommon2.xml,2519.1,144.0,1822.0,0.0,1966.0,144.0,238.4,382.4,0.0,91.24,91.24,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-1.xml,1589.9,144.0,1043.73,0.0,1187.73,144.0,258.17,402.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-5.xml,1321.49,144.0,1463.98,-743.14,864.84,144.0,312.65,456.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-all-10-mins.xml,1863.63,144.0,1327.78,0.0,1471.78,144.0,247.85,391.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,1391.45,144.0,1052.13,0.0,1196.13,144.0,51.32,195.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-mixed-timesteps.xml,1634.71,144.0,1261.41,0.0,1405.41,144.0,85.3,229.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,1855.03,144.0,1324.52,0.0,1468.52,144.0,242.51,386.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,1550.78,144.0,1110.82,0.0,1254.82,144.0,151.96,295.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,919.42,144.0,270.79,0.0,414.79,144.0,360.63,504.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1708.6,144.0,1136.78,0.0,1280.78,144.0,283.82,427.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic.xml,1858.7,144.0,1328.44,0.0,1472.44,144.0,242.26,386.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints-daily-schedules.xml,1819.47,144.0,1301.63,0.0,1445.63,144.0,229.84,373.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints-daily-setbacks.xml,1816.76,144.0,1307.19,0.0,1451.19,144.0,221.57,365.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints.xml,1621.69,144.0,1256.48,0.0,1400.48,144.0,77.21,221.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage-natvent-available.xml,1719.75,144.0,1195.63,0.0,1339.63,144.0,236.12,380.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage-natvent-unavailable.xml,1725.91,144.0,1202.12,0.0,1346.12,144.0,235.79,379.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage.xml,1722.99,144.0,1197.57,0.0,1341.57,144.0,237.42,381.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,1704.31,144.0,1132.49,0.0,1276.49,144.0,283.82,427.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-occupancy-stochastic.xml,1853.29,144.0,1323.04,0.0,1467.04,144.0,242.25,386.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-setpoints-daily-schedules.xml,1814.05,144.0,1296.21,0.0,1440.21,144.0,229.84,373.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-setpoints-daily-setbacks.xml,1811.33,144.0,1301.77,0.0,1445.77,144.0,221.56,365.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-detailed-setpoints.xml,1616.3,144.0,1251.09,0.0,1395.09,144.0,77.21,221.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-power-outage-natvent-available.xml,1714.69,144.0,1190.57,0.0,1334.57,144.0,236.12,380.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-power-outage-natvent-unavailable.xml,1720.85,144.0,1197.06,0.0,1341.06,144.0,235.79,379.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-power-outage.xml,1717.93,144.0,1192.51,0.0,1336.51,144.0,237.42,381.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-simple-vacancy-year-round.xml,919.42,144.0,270.79,0.0,414.79,144.0,360.63,504.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-vacancy.xml,1698.89,144.0,1129.0,0.0,1273.0,144.0,281.89,425.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple.xml,1850.7,144.0,1325.4,0.0,1469.4,144.0,237.3,381.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-calendar-year-custom.xml,1846.89,144.0,1322.96,0.0,1466.96,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-daylight-saving-custom.xml,1847.96,144.0,1324.08,0.0,1468.08,144.0,235.88,379.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-daylight-saving-disabled.xml,1847.24,144.0,1323.5,0.0,1467.5,144.0,235.74,379.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,199.03,12.0,107.0,0.0,119.0,12.0,68.03,80.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-temperature-capacitance-multiplier.xml,1843.98,144.0,1320.18,0.0,1464.18,144.0,235.8,379.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1869.03,144.0,1333.01,0.0,1477.01,144.0,248.02,392.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1867.94,144.0,1332.68,0.0,1476.68,144.0,247.26,391.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins.xml,1857.41,144.0,1328.31,0.0,1472.31,144.0,241.1,385.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-30-mins.xml,1853.68,144.0,1326.44,0.0,1470.44,144.0,239.24,383.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base.xml,1847.95,144.0,1324.08,0.0,1468.08,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple-vacancy.xml,1694.54,144.0,1124.65,0.0,1268.65,144.0,281.89,425.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-schedules-simple.xml,1845.29,144.0,1319.99,0.0,1463.99,144.0,237.3,381.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-calendar-year-custom.xml,1841.47,144.0,1317.54,0.0,1461.54,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-daylight-saving-custom.xml,1842.56,144.0,1318.68,0.0,1462.68,144.0,235.88,379.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1841.83,144.0,1318.09,0.0,1462.09,144.0,235.74,379.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,198.54,12.0,106.51,0.0,118.51,12.0,68.03,80.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-temperature-capacitance-multiplier.xml,1838.56,144.0,1314.76,0.0,1458.76,144.0,235.8,379.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1863.59,144.0,1327.57,0.0,1471.57,144.0,248.02,392.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1862.56,144.0,1327.3,0.0,1471.3,144.0,247.26,391.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-10-mins.xml,1851.98,144.0,1322.88,0.0,1466.88,144.0,241.1,385.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-simcontrol-timestep-30-mins.xml,1848.28,144.0,1321.04,0.0,1465.04,144.0,239.24,383.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base.xml,1842.55,144.0,1318.68,0.0,1462.68,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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 9e0ff5a856608c4e367d9c3032e60c666a6c6eba Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Wed, 1 Nov 2023 15:24:03 -0600 Subject: [PATCH 174/217] Update new test. --- HPXMLtoOpenStudio/measure.xml | 6 +-- HPXMLtoOpenStudio/tests/test_defaults.rb | 66 ++++++++++++------------ 2 files changed, 36 insertions(+), 36 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index c9619983d1..fe7ae31d01 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - a3cfbe69-2d96-49b6-9a98-6996156a81ad - 2023-11-01T21:21:09Z + 5db59ec6-463f-4a14-915a-6104f0d57bba + 2023-11-01T21:23:54Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -586,7 +586,7 @@ test_defaults.rb rb test - B048A0D9 + EE636DD4 test_enclosure.rb diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 77610eff06..032ce55101 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1686,44 +1686,44 @@ def test_ground_source_heat_pumps def test_geothermal_loops # Test inputs not overridden by defaults - hpxml = _create_hpxml('base-hvac-geothermal-loop.xml') - hpxml.geothermal_loops[0].loop_configuration = HPXML::GeothermalLoopLoopConfigurationVertical - hpxml.geothermal_loops[0].loop_flow = 1 - hpxml.geothermal_loops[0].num_bore_holes = 2 - hpxml.geothermal_loops[0].bore_spacing = 3 - hpxml.geothermal_loops[0].bore_length = 100 - hpxml.geothermal_loops[0].bore_diameter = 5 - hpxml.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced - hpxml.geothermal_loops[0].grout_conductivity = 6 - hpxml.geothermal_loops[0].pipe_conductivity = 7 - hpxml.geothermal_loops[0].pipe_diameter = 1.0 - hpxml.geothermal_loops[0].shank_spacing = 9 - hpxml.geothermal_loops[0].bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle - XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, 2, 3, 100, 5, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 6, 7, 1.0, 9, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + hpxml, hpxml_bldg = _create_hpxml('base-hvac-geothermal-loop.xml') + hpxml_bldg.geothermal_loops[0].loop_configuration = HPXML::GeothermalLoopLoopConfigurationVertical + hpxml_bldg.geothermal_loops[0].loop_flow = 1 + hpxml_bldg.geothermal_loops[0].num_bore_holes = 2 + hpxml_bldg.geothermal_loops[0].bore_spacing = 3 + hpxml_bldg.geothermal_loops[0].bore_length = 100 + hpxml_bldg.geothermal_loops[0].bore_diameter = 5 + hpxml_bldg.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced + hpxml_bldg.geothermal_loops[0].grout_conductivity = 6 + hpxml_bldg.geothermal_loops[0].pipe_conductivity = 7 + hpxml_bldg.geothermal_loops[0].pipe_diameter = 1.0 + hpxml_bldg.geothermal_loops[0].shank_spacing = 9 + hpxml_bldg.geothermal_loops[0].bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, 2, 3, 100, 5, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 6, 7, 1.0, 9, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults - hpxml.geothermal_loops[0].loop_flow = nil - hpxml.geothermal_loops[0].num_bore_holes = nil - hpxml.geothermal_loops[0].bore_spacing = nil - hpxml.geothermal_loops[0].bore_length = nil - hpxml.geothermal_loops[0].bore_diameter = nil - hpxml.geothermal_loops[0].grout_type = nil - hpxml.geothermal_loops[0].grout_conductivity = nil - hpxml.geothermal_loops[0].pipe_conductivity = nil - hpxml.geothermal_loops[0].pipe_diameter = nil - hpxml.geothermal_loops[0].shank_spacing = nil - hpxml.geothermal_loops[0].bore_config = nil - XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + hpxml_bldg.geothermal_loops[0].loop_flow = nil + hpxml_bldg.geothermal_loops[0].num_bore_holes = nil + hpxml_bldg.geothermal_loops[0].bore_spacing = nil + hpxml_bldg.geothermal_loops[0].bore_length = nil + hpxml_bldg.geothermal_loops[0].bore_diameter = nil + hpxml_bldg.geothermal_loops[0].grout_type = nil + hpxml_bldg.geothermal_loops[0].grout_conductivity = nil + hpxml_bldg.geothermal_loops[0].pipe_conductivity = nil + hpxml_bldg.geothermal_loops[0].pipe_diameter = nil + hpxml_bldg.geothermal_loops[0].shank_spacing = nil + hpxml_bldg.geothermal_loops[0].bore_config = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults w/ thermally enhanced grout type - hpxml.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced + hpxml_bldg.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) - hpxml_default = _test_measure() - _test_default_geothermal_loop_values(hpxml_default.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.8, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.8, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) end def test_hvac_location From 7c753dee8ebc9986da3d0bc30c965e81abc53908 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Wed, 1 Nov 2023 16:25:09 -0600 Subject: [PATCH 175/217] Update a few more new tests. --- HPXMLtoOpenStudio/measure.xml | 8 ++--- HPXMLtoOpenStudio/tests/test_hvac_sizing.rb | 38 ++++++++++----------- HPXMLtoOpenStudio/tests/test_validation.rb | 6 ++-- 3 files changed, 26 insertions(+), 26 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index fe7ae31d01..d1980df0e5 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 5db59ec6-463f-4a14-915a-6104f0d57bba - 2023-11-01T21:23:54Z + 569a3af0-ccf0-4920-9643-b013a73e9591 + 2023-11-01T22:19:28Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -616,7 +616,7 @@ test_hvac_sizing.rb rb test - 37BD6472 + C7C1FFD4 test_lighting.rb @@ -658,7 +658,7 @@ test_validation.rb rb test - 9C5DD428 + 86FDCA01 test_water_heater.rb diff --git a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb index 4e74ee36df..210b3297ce 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb @@ -412,35 +412,35 @@ def test_ground_loop args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) # Base case - hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml, _hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) - _model, hpxml = _test_measure(args_hash) - assert_equal(3, hpxml.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(884.6 / 3 + 5.0, hpxml.geothermal_loops[0].bore_length, 0.01) + _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) + assert_equal(3, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) + assert_in_epsilon(884.6 / 3 + 5.0, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) # Bore depth greater than the max -> increase number of boreholes - hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') - hpxml.site.ground_conductivity = 0.2 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml_bldg.site.ground_conductivity = 0.2 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) - _model, hpxml = _test_measure(args_hash) - assert_equal(5, hpxml.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(2450.2 / 5 + 5, hpxml.geothermal_loops[0].bore_length, 0.01) + _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) + assert_equal(5, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) + assert_in_epsilon(2450.2 / 5 + 5, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) # Bore depth greater than the max -> increase number of boreholes until the max, set depth to the max, and issue warning - hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') - hpxml.site.ground_conductivity = 0.08 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml_bldg.site.ground_conductivity = 0.08 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) - _model, hpxml = _test_measure(args_hash) - assert_equal(10, hpxml.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(500.0, hpxml.geothermal_loops[0].bore_length, 0.01) + _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) + assert_equal(10, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) + assert_in_epsilon(500.0, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) # Boreholes greater than the max -> decrease the number of boreholes until the max - hpxml = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') - hpxml.heat_pumps[0].cooling_capacity *= 5 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml_bldg.heat_pumps[0].cooling_capacity *= 5 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) - _model, hpxml = _test_measure(args_hash) - assert_equal(10, hpxml.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(3434.3 / 10 + 5, hpxml.geothermal_loops[0].bore_length, 0.01) + _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) + assert_equal(10, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) + assert_in_epsilon(3434.3 / 10 + 5, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) end def _test_measure(args_hash) diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 574060732b..d7b203cb95 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -182,7 +182,7 @@ def test_schema_schematron_error_messages 'invalid-number-of-conditioned-floors' => ['Expected NumberofConditionedFloors to be greater than or equal to NumberofConditionedFloorsAboveGrade [context: /HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction, id: "MyBuilding"]'], 'invalid-number-of-units-served' => ['Expected NumberofUnitsServed to be greater than 1 [context: /HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem[IsSharedSystem="true"], id: "WaterHeatingSystem1"]'], 'invalid-pilot-light-heating-system' => ['Expected 1 element(s) for xpath: ../../HeatingSystemFuel[text()!="electricity"]'], - 'invalid-soil-type' => ["Expected SoilType to be 'sand' or 'silt' or 'clay' or 'loam' or 'gravel' or 'unknown' [context: /HPXML/Building/BuildingDetails/BuildingSummary/Site/Soil]"], + 'invalid-soil-type' => ["Expected SoilType to be 'sand' or 'silt' or 'clay' or 'loam' or 'gravel' or 'unknown' [context: /HPXML/Building/BuildingDetails/BuildingSummary/Site/Soil, id: \"MyBuilding\"]"], 'invalid-shared-vent-in-unit-flowrate' => ['Expected RatedFlowRate to be greater than extension/InUnitFlowRate [context: /HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan[UsedForWholeBuildingVentilation="true" and IsSharedSystem="true"], id: "VentilationFan1"]'], 'invalid-timestep' => ['Expected Timestep to be 60, 30, 20, 15, 12, 10, 6, 5, 4, 3, 2, or 1'], 'invalid-timezone-utcoffset-low' => ["Element 'UTCOffset': [facet 'minInclusive'] The value '-13.0' is less than the minimum value allowed ('-12')."], @@ -1507,8 +1507,8 @@ def test_ruby_warning_messages duct.duct_location = nil end elsif ['hvac-gshp-bore-depth-autosized-high'].include? warning_case - hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-hvac-ground-to-air-heat-pump.xml')) - hpxml.site.ground_conductivity = 0.08 + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') + hpxml_bldg.site.ground_conductivity = 0.08 elsif ['hvac-setpoint-adjustments'].include? warning_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.hvac_controls[0].heating_setpoint_temp = 76.0 From 818aacae4a67a803578ca41d6fb49851dceb8318 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Wed, 1 Nov 2023 17:41:09 -0600 Subject: [PATCH 176/217] Found it. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/hpxml.rb | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index d1980df0e5..fd3f3cd4ee 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 569a3af0-ccf0-4920-9643-b013a73e9591 - 2023-11-01T22:19:28Z + 431afb2f-42b7-4642-a06f-d2e3969435f0 + 2023-11-01T23:40:56Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -298,7 +298,7 @@ hpxml.rb rb resource - 2C576271 + 723967EE hpxml_defaults.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index bafbf5314e..f8baa240ef 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -4400,7 +4400,7 @@ def from_doc(cooling_system) class GeothermalLoops < BaseArrayElement def add(**kwargs) - self << GeothermalLoop.new(@hpxml_object, **kwargs) + self << GeothermalLoop.new(@parent_object, **kwargs) end def from_doc(building) From 3eeec58b57e1efe6405a729a7197c7fd1240762e Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 2 Nov 2023 01:30:45 +0000 Subject: [PATCH 177/217] Latest results. --- workflow/tests/base_results/results.csv | 156 ++++++++---------- workflow/tests/base_results/results_bills.csv | 100 +++++------ 2 files changed, 118 insertions(+), 138 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 92b86ff58b..d909d871c1 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -7,9 +7,7 @@ base-appliances-dehumidifier.xml,34.659,34.659,33.39,33.39,1.27,0.0,0.0,0.0,0.0, base-appliances-gas.xml,59.712,59.712,33.233,33.233,26.479,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-appliances-modified.xml,58.331,58.331,36.917,36.917,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,4.535,0.887,9.541,0.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,0.0,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.053,0.0,14.953,9.641,0.613,0.0,0.0,0.0,0.0,2160.4,3468.4,3468.4,22.968,19.347,0.0,3.567,3.65,0.514,7.552,0.632,10.119,-12.663,0.0,0.0,0.0,8.335,-0.066,5.409,0.0,0.0,0.0,4.671,-9.525,-2.496,0.0,-0.077,-0.48,-0.054,2.643,-0.03,-1.454,11.75,0.0,0.0,0.0,-6.421,-0.063,-1.323,-3.168,0.0,0.0,3.296,8.51,2.014,1354.8,1997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-appliances-none.xml,52.556,52.556,28.368,28.368,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,4.077,0.775,7.784,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,0.0,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.653,0.0,13.051,7.75,0.615,0.0,0.0,0.0,0.0,1855.8,2988.8,2988.8,23.37,18.123,0.0,3.528,3.626,0.51,7.473,0.627,10.055,-12.698,0.0,0.0,0.0,8.25,-0.062,5.397,0.0,0.0,0.0,5.202,-7.087,-2.503,0.0,-0.007,-0.425,-0.046,2.794,-0.016,-1.284,11.715,0.0,0.0,0.0,-6.167,-0.058,-1.269,-2.934,0.0,0.0,2.957,5.974,2.006,0.0,0.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-oil-location-miami-fl.xml,50.045,50.045,45.179,45.179,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.829,4.098,4.777,0.0,0.0,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,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,67.18,4.583,0.55,0.0,0.0,0.0,0.0,2468.1,3198.7,3198.7,0.0,21.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.813,0.737,0.136,9.768,0.338,3.359,19.842,0.0,0.0,0.0,3.215,-0.01,-0.531,-2.903,-0.004,0.0,10.314,17.693,4.51,1354.8,997.6,8452.7,1939.6,0.0,12000.0,24000.0,0.0,51.62,90.68,12376.0,5547.0,2184.0,0.0,167.0,1989.0,0.0,0.0,567.0,631.0,1291.0,21537.0,7581.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,3320.0,3284.0,954.0,1530.0,800.0 base-appliances-oil.xml,59.712,59.712,33.233,33.233,21.613,4.866,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,0.0,0.0,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-propane-location-portland-or.xml,54.945,54.945,29.743,29.743,20.336,0.0,4.866,0.0,0.0,0.0,0.0,0.084,0.0,0.0,2.205,0.38,8.598,0.0,0.0,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,20.336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.793,0.0,6.277,8.626,0.614,0.0,0.0,0.0,0.0,1915.7,3088.7,3088.7,14.101,15.743,0.0,3.154,3.302,0.465,7.024,0.65,9.002,-10.815,0.0,0.0,0.0,12.128,-0.092,4.346,0.0,0.553,0.0,4.046,-12.053,-3.157,0.0,-0.141,-0.435,-0.052,1.255,-0.025,-1.176,8.054,0.0,0.0,0.0,-6.2,-0.092,-0.94,-1.961,-0.125,0.0,1.193,5.705,1.352,1354.8,997.6,11014.7,2527.5,0.0,24000.0,24000.0,0.0,28.58,87.08,23355.0,7559.0,4921.0,0.0,377.0,4483.0,0.0,0.0,1278.0,1423.0,3315.0,19189.0,6280.0,6570.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,3320.0,769.0,0.0,-31.0,800.0 base-appliances-propane.xml,59.712,59.712,33.233,33.233,21.613,0.0,4.866,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-appliances-wood.xml,59.712,59.712,33.233,33.233,21.613,0.0,0.0,4.866,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-atticroof-cathedral.xml,61.415,61.415,35.795,35.795,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,4.257,0.822,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.973,0.0,13.668,9.075,0.615,0.0,0.0,0.0,0.0,2143.4,3135.9,3135.9,22.717,16.559,6.771,0.0,4.231,0.513,7.508,0.633,12.688,-15.638,0.0,0.0,0.0,8.371,-0.086,9.316,0.0,0.729,0.0,0.0,-8.932,-2.503,0.124,0.0,-0.517,-0.049,2.739,-0.02,-1.228,15.662,0.0,0.0,0.0,-6.364,-0.061,-2.102,-3.934,-0.159,0.0,0.0,7.847,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 @@ -18,46 +16,46 @@ base-atticroof-flat.xml,54.517,54.517,35.065,35.065,19.452,0.0,0.0,0.0,0.0,0.0,0 base-atticroof-radiant-barrier.xml,37.467,37.467,33.315,33.315,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.441,2.011,6.714,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,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.834,0.0,32.573,6.562,0.579,0.0,0.0,0.0,0.0,1910.2,3261.6,3261.6,13.531,18.842,0.0,6.126,1.575,0.0,0.0,0.335,4.353,-5.899,0.0,0.0,0.0,0.826,-0.36,0.993,0.0,0.397,0.0,0.103,-3.998,-0.844,0.0,2.403,0.135,0.0,0.0,0.203,2.884,16.272,0.0,0.0,0.0,2.056,-0.352,-0.28,-1.733,-0.052,0.0,0.372,9.165,1.803,1354.8,997.6,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,25742.0,1419.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,22158.0,61.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1630.0,438.0,393.0,800.0 base-atticroof-unvented-insulated-roof.xml,57.035,57.035,35.224,35.224,21.812,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,3.847,0.723,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,20.413,0.0,11.971,9.075,0.615,0.0,0.0,0.0,0.0,2127.6,2865.7,2865.7,19.246,14.113,0.0,5.475,3.627,0.51,7.484,0.627,10.053,-12.69,0.0,0.0,0.0,8.285,-0.062,4.803,0.0,0.729,0.0,2.654,-8.912,-2.5,0.0,-1.481,-0.423,-0.046,2.812,-0.016,-1.287,11.723,0.0,0.0,0.0,-6.128,-0.053,-1.135,-2.92,-0.161,0.0,1.445,7.867,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,30482.0,4823.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1772.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-atticroof-vented.xml,57.66,57.66,35.581,35.581,22.08,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.989,0.758,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.675,0.0,12.665,9.075,0.803,0.0,0.0,0.0,0.0,2132.8,3014.3,3014.3,21.537,15.427,0.0,3.899,3.639,0.512,7.515,0.63,10.087,-12.691,0.0,0.0,0.0,8.3,-0.062,4.804,0.0,0.729,0.0,4.067,-8.579,-2.5,0.0,-0.528,-0.448,-0.05,2.73,-0.022,-1.358,11.723,0.0,0.0,0.0,-6.278,-0.058,-1.157,-3.029,-0.164,0.0,1.957,7.585,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16425.0,3714.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,59.932,59.932,37.665,37.665,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,1.31,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,59.932,59.932,37.665,37.665,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,1.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-battery.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-2stories.xml,51.001,51.001,34.611,34.611,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.214,0.0,0.0,3.423,0.619,9.079,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.285,0.0,10.305,9.11,0.613,0.0,0.0,0.0,0.0,2111.0,3086.6,3086.6,17.841,15.64,0.0,2.437,5.073,0.298,4.382,0.64,7.13,-8.585,0.0,0.0,0.0,5.027,-0.069,7.099,0.0,0.73,0.0,2.271,-8.897,-2.5,0.0,-0.005,-0.668,-0.027,1.593,-0.021,-1.066,7.911,0.0,0.0,0.0,-4.019,-0.064,-1.707,-2.597,-0.164,0.0,1.389,7.881,2.01,1354.8,997.6,11171.5,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16951.0,4421.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-atticroof-cathedral.xml,97.537,97.537,37.19,37.19,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.787,0.0,0.0,5.067,0.972,9.088,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,15.981,9.11,0.623,0.0,0.0,0.0,0.0,2152.6,4300.5,4300.5,36.45,28.479,49.534,0.0,2.942,0.289,3.702,0.668,4.716,-5.325,0.0,0.0,0.0,3.447,-0.844,7.54,0.0,0.773,0.0,0.0,-9.663,-2.68,8.461,0.0,-0.16,0.004,1.534,0.119,0.028,5.085,0.0,0.0,0.0,-4.279,-0.806,-0.856,-1.185,-0.094,0.0,0.0,7.124,1.829,1354.8,997.6,11171.6,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-attached-infil-compartmentalization-test.xml,42.293,42.293,29.882,29.882,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,9.289,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.114,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2578.3,2578.3,13.175,10.827,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-attached.xml,42.293,42.293,29.882,29.882,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,9.289,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.114,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2578.3,2578.3,13.175,10.827,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21403.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13941.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.317,36.317,24.692,24.692,11.625,0.0,0.0,0.0,0.0,0.0,0.0,0.085,0.0,0.0,1.636,0.213,9.675,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,11.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,10.777,0.0,3.159,9.374,0.73,0.0,0.0,0.0,0.0,1571.2,2044.5,2044.5,7.666,6.098,0.0,2.942,3.651,0.0,0.0,0.583,1.31,-1.593,0.0,0.0,2.978,0.0,-0.037,1.669,0.0,0.0,0.0,4.662,-4.243,-1.184,0.0,-0.933,-0.243,0.0,0.0,-0.056,-0.113,1.309,0.0,0.0,-0.947,0.0,-0.033,-0.288,-0.351,0.0,0.0,0.579,3.429,0.842,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12345.0,5658.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-multiple.xml,31.538,31.538,25.188,25.188,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,2.169,0.332,9.559,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,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.89,0.0,5.258,9.374,0.609,0.0,0.0,0.0,1.0,1559.2,2252.6,2252.6,9.392,10.746,0.0,-0.005,3.303,0.0,0.0,1.394,3.737,-4.202,0.0,0.0,4.614,0.0,-0.073,1.253,0.0,0.793,0.0,2.37,-6.263,-1.136,0.0,-0.001,-0.475,0.0,0.0,-0.429,-0.209,4.004,0.0,0.0,-3.094,0.0,-0.068,-0.251,-1.127,-0.133,0.0,0.508,5.736,0.89,1354.8,997.6,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12328.0,5013.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.43,49.43,24.693,24.693,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,1.491,0.178,9.759,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,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.939,0.0,2.593,9.374,0.818,0.0,0.0,0.0,0.0,1572.9,2230.6,2230.6,11.077,8.743,0.0,5.361,4.203,0.0,0.0,0.789,1.288,-1.709,0.0,0.0,5.413,0.0,-0.062,1.7,0.0,0.0,0.0,11.645,-4.474,-1.246,0.0,-1.205,-0.066,0.0,0.0,-0.056,-0.008,1.194,0.0,0.0,-1.212,0.0,-0.057,-0.194,-0.279,0.0,0.0,0.549,3.198,0.781,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,14592.0,6778.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,25.876,25.876,24.558,24.558,1.317,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.661,0.22,9.585,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.22,0.0,3.265,9.374,0.636,0.0,0.0,0.0,0.0,1558.6,1869.1,1869.1,3.415,6.099,0.0,0.378,3.172,0.0,0.0,0.381,1.385,-1.507,0.0,0.0,0.401,0.0,-0.006,1.706,0.0,0.0,0.0,0.374,-4.015,-1.12,0.0,-0.84,-0.474,0.0,0.0,-0.078,-0.221,1.396,0.0,0.0,-0.856,0.0,-0.002,-0.396,-0.392,0.0,0.0,0.598,3.657,0.907,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,8331.0,3673.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.185,26.185,25.123,25.123,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.153,0.343,9.537,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,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.984,0.0,5.308,9.374,0.586,0.0,0.0,0.0,0.0,1578.0,1741.9,1741.9,3.705,4.57,0.0,-0.004,3.199,0.0,0.0,0.372,1.434,-1.384,0.0,0.0,-0.004,0.0,-0.074,1.765,0.0,0.0,0.0,0.306,-3.658,-1.009,0.0,-0.001,-0.583,0.0,0.0,-0.044,-0.373,1.518,0.0,0.0,-0.001,0.0,-0.071,-0.543,-0.515,0.0,0.0,0.944,4.015,1.017,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,7886.0,3453.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,6279.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-infil-compartmentalization-test.xml,26.804,26.804,26.287,26.287,0.517,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.095,0.58,9.526,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.517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,9.42,9.374,0.574,0.0,0.0,0.0,0.0,1668.0,1953.8,1953.8,3.251,7.677,0.0,-0.015,2.451,0.0,0.0,0.424,3.906,-2.465,0.0,0.0,-0.01,0.0,-0.396,0.991,0.0,0.666,0.0,0.0,-4.45,-0.746,0.0,-0.01,-1.157,0.0,0.0,-0.049,-1.212,5.738,0.0,0.0,-0.005,0.0,-0.386,-0.414,-1.343,-0.41,0.0,0.0,7.514,1.28,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 -base-bldgtype-multifamily-residents-1.xml,19.884,19.884,18.663,18.663,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.471,0.422,4.527,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,0.0,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,7.202,4.144,0.584,0.0,0.0,0.0,0.0,1142.0,1671.8,1671.8,3.916,7.195,0.0,-0.018,2.578,0.0,0.0,0.425,4.087,-3.005,0.0,0.0,-0.017,0.0,-0.365,1.302,0.0,0.742,0.0,0.0,-3.753,-0.915,0.0,-0.013,-0.841,0.0,0.0,-0.013,-0.739,5.197,0.0,0.0,-0.012,0.0,-0.356,-0.408,-1.204,-0.286,0.0,0.0,4.875,1.111,817.2,530.6,4684.1,1314.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.301,27.301,26.651,26.651,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.031,0.0,0.0,3.152,0.858,9.527,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.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,7.0,1676.6,1998.5,1998.5,3.451,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.125,28.125,27.432,27.432,0.694,0.0,0.0,0.0,0.0,0.0,0.0,0.055,0.0,0.0,3.797,0.97,9.527,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.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,0.616,0.0,10.469,9.374,0.575,0.0,0.0,0.0,13.0,1706.3,2202.5,2202.5,3.597,8.104,0.0,-0.015,2.472,0.0,0.0,0.423,3.919,-2.555,0.0,0.0,-0.011,0.0,-0.392,1.275,0.0,0.674,0.0,0.036,-4.548,-0.767,0.0,-0.01,-1.112,0.0,0.0,-0.046,-1.16,5.647,0.0,0.0,-0.005,0.0,-0.382,-0.522,-1.34,-0.394,0.0,1.244,7.418,1.259,1354.8,997.6,11171.5,3093.4,0.0,8647.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.596,27.596,26.979,26.979,0.616,0.0,0.0,0.0,0.0,0.0,0.0,0.074,0.0,0.0,3.438,0.858,9.527,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.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,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,7.0,1687.4,2060.4,2060.4,3.449,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,33.049,33.049,32.543,32.543,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,8.9,0.97,9.527,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.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,0.594,0.0,10.469,9.374,0.575,0.0,0.0,0.0,13.0,2186.4,3395.0,3395.0,3.53,8.104,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.747,27.747,27.241,27.241,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,3.597,0.97,9.527,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.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,0.594,0.0,10.469,9.374,0.575,0.0,0.0,0.0,13.0,1698.7,2155.8,2155.8,3.53,8.104,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,23.068,23.068,22.546,22.546,0.522,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,0.0,0.0,9.438,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.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,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1508.8,1332.5,1508.8,3.443,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.122,23.122,22.564,22.564,0.558,0.0,0.0,0.0,0.0,0.0,0.0,0.044,0.0,0.0,0.0,0.0,9.438,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.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.495,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1527.5,1332.5,1527.5,3.595,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.029,-6.076,-1.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,1354.8,997.6,11171.6,3093.4,0.0,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.075,23.075,22.577,22.577,0.498,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,0.0,0.0,9.438,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.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1538.6,1332.5,1538.6,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,23.054,23.054,22.693,22.693,0.361,0.0,0.0,0.0,0.0,0.0,0.116,0.057,0.0,0.0,0.0,0.0,9.438,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1647.2,1332.5,1647.2,3.447,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.076,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.075,23.075,22.579,22.579,0.496,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,0.0,0.0,9.438,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.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,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1540.5,1332.5,1540.5,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,22.978,22.978,22.571,22.571,0.407,0.0,0.0,0.0,0.0,0.0,0.026,0.025,0.0,0.0,0.0,0.0,9.438,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.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,0.477,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1532.9,1332.5,1532.9,3.527,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.011,-6.076,-1.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,1354.8,997.6,11171.6,3093.4,0.0,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.602,26.602,26.602,26.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.134,0.851,9.535,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,0.0,0.0,9.147,9.374,0.584,0.0,0.0,0.0,7.0,1677.0,1983.1,1983.1,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.355,27.355,27.355,27.355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.775,0.962,9.535,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,0.0,0.0,10.376,9.374,0.584,0.0,0.0,0.0,13.0,1729.1,2177.1,2177.1,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.886,26.886,26.886,26.886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.418,0.851,9.535,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,0.0,0.0,9.147,9.374,0.584,0.0,0.0,0.0,7.0,1694.4,2044.4,2044.4,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.42,32.42,32.42,32.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.841,0.962,9.535,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,0.0,0.0,10.376,9.374,0.584,0.0,0.0,0.0,13.0,2065.3,3317.6,3317.6,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.156,27.156,27.156,27.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.577,0.962,9.535,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,0.0,0.0,10.376,9.374,0.584,0.0,0.0,0.0,13.0,1715.9,2132.5,2132.5,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-generator.xml,41.018,34.194,26.223,19.398,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,9.527,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,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1657.0,2013.3,2013.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,28.05,28.05,28.05,28.05,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.269,0.0,0.0,2.073,2.941,9.527,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,0.581,0.0,9.234,9.374,0.576,0.0,0.0,0.0,0.0,1719.2,1898.6,1898.6,3.449,7.709,0.0,-0.016,2.485,0.0,0.0,0.427,3.959,-2.568,0.0,0.0,-0.012,0.0,-0.392,1.285,0.0,0.682,0.0,0.0,-4.601,-0.777,0.0,-0.011,-1.098,0.0,0.0,-0.042,-1.119,5.634,0.0,0.0,-0.007,0.0,-0.382,-0.512,-1.333,-0.387,0.0,0.0,7.365,1.249,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.745,31.745,16.765,16.765,14.98,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.097,0.582,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.0,0.572,0.0,14.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.527,0.0,9.528,9.374,2.261,0.0,0.0,0.0,0.0,1022.8,1553.5,1553.5,3.498,7.734,0.0,-0.017,2.435,0.0,0.0,0.425,3.913,-2.47,0.0,0.0,-0.013,0.0,-0.418,2.024,0.0,0.0,0.0,0.0,-4.701,-0.752,0.0,-0.012,-1.157,0.0,0.0,-0.045,-1.182,5.732,0.0,0.0,-0.007,0.0,-0.407,-0.942,-1.35,0.0,0.0,0.0,7.751,1.274,1354.8,997.6,11171.8,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-laundry-room.xml,29.626,29.626,16.572,16.572,13.054,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.944,0.541,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.0,0.742,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,8.806,9.374,0.568,0.0,0.0,0.0,0.0,1013.8,1542.1,1542.1,3.655,7.615,0.0,-0.017,2.498,0.0,0.0,0.426,3.976,-2.663,0.0,0.0,-0.014,0.0,-0.395,2.062,0.0,0.0,0.0,0.0,-4.478,-0.8,0.0,-0.012,-1.052,0.0,0.0,-0.036,-1.051,5.54,0.0,0.0,-0.009,0.0,-0.386,-0.862,-1.313,0.0,0.0,0.0,6.883,1.227,1354.8,997.6,11171.7,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,50.713,50.713,30.664,30.664,20.049,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.808,0.312,9.565,0.0,0.0,2.026,0.0,0.206,3.727,0.946,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,0.0,7.888,0.0,0.0,0.0,0.0,12.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.308,0.0,5.088,9.374,0.615,0.0,0.0,0.0,0.0,1867.2,2269.1,2269.1,7.584,8.979,0.0,-0.017,2.791,0.0,0.0,0.407,4.196,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.34,0.0,0.0,-6.693,-1.194,0.0,-0.013,-0.143,0.0,0.0,0.06,0.126,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.698,-4.228,0.0,0.0,5.312,0.832,1354.8,997.6,11171.5,3093.4,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.615,32.615,27.323,27.323,5.293,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.686,0.467,9.537,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,0.0,1.335,0.0,0.0,0.0,0.0,3.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,1.234,0.0,7.542,9.374,0.586,0.0,0.0,0.0,0.0,1657.3,2031.3,2031.3,4.163,7.879,0.0,-0.018,2.638,0.0,0.0,0.432,4.149,-3.079,0.0,0.0,-0.017,0.0,-0.36,1.775,0.0,1.925,0.0,0.0,-5.318,-0.929,0.0,-0.013,-0.774,0.0,0.0,-0.004,-0.66,5.123,0.0,0.0,-0.012,0.0,-0.352,-0.53,-1.154,-1.781,0.0,0.0,6.659,1.097,1354.8,997.6,11171.5,3093.4,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-mechvent.xml,30.834,30.834,27.174,27.174,3.661,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.584,0.44,9.546,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,0.0,3.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,3.389,0.0,7.249,9.374,0.596,0.0,0.0,0.0,0.0,1646.9,2112.1,2112.1,5.987,8.5,0.0,-0.016,2.682,0.0,0.0,0.398,4.038,-3.61,0.0,0.0,-0.018,0.0,-0.253,1.739,0.0,5.306,0.0,0.0,-5.801,-1.04,0.0,-0.011,-0.571,0.0,0.0,-0.008,-0.518,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.44,-1.153,-1.513,0.0,0.0,6.186,0.987,1354.8,997.6,11171.5,3093.4,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-pv.xml,26.852,2.404,26.223,1.775,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,9.527,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.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1657.0,2013.3,2013.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.789,30.789,17.683,17.683,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1059.1,1602.9,1602.9,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.661,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.038,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.625,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11171.6,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily-shared-water-heater.xml,29.693,29.693,16.587,16.587,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1006.5,1550.2,1550.2,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.661,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.038,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.625,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11171.6,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-multifamily.xml,26.852,26.852,26.223,26.223,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,9.527,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.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1657.0,2013.3,2013.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,36.317,36.317,24.692,24.692,11.625,0.0,0.0,0.0,0.0,0.0,0.0,0.085,0.0,0.0,1.636,0.213,9.675,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,11.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,10.777,0.0,3.159,9.374,0.73,0.0,0.0,0.0,0.0,1571.2,2044.5,2044.5,7.666,6.098,0.0,2.942,3.651,0.0,0.0,0.583,1.31,-1.593,0.0,0.0,2.978,0.0,-0.037,1.669,0.0,0.0,0.0,4.662,-4.243,-1.184,0.0,-0.933,-0.243,0.0,0.0,-0.056,-0.113,1.309,0.0,0.0,-0.947,0.0,-0.033,-0.288,-0.351,0.0,0.0,0.579,3.429,0.842,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12345.0,5658.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,31.538,31.538,25.188,25.188,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,2.169,0.332,9.559,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,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.89,0.0,5.258,9.374,0.609,0.0,0.0,0.0,1.0,1559.2,2252.6,2252.6,9.392,10.746,0.0,-0.005,3.303,0.0,0.0,1.394,3.737,-4.202,0.0,0.0,4.614,0.0,-0.073,1.253,0.0,0.793,0.0,2.37,-6.263,-1.136,0.0,-0.001,-0.475,0.0,0.0,-0.429,-0.209,4.004,0.0,0.0,-3.094,0.0,-0.068,-0.251,-1.127,-0.133,0.0,0.508,5.736,0.89,1354.8,997.6,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12328.0,5013.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,49.43,49.43,24.693,24.693,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,1.491,0.178,9.76,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,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.939,0.0,2.593,9.374,0.818,0.0,0.0,0.0,0.0,1572.9,2230.6,2230.6,11.077,8.743,0.0,5.361,4.203,0.0,0.0,0.789,1.288,-1.709,0.0,0.0,5.413,0.0,-0.062,1.7,0.0,0.0,0.0,11.645,-4.474,-1.246,0.0,-1.205,-0.066,0.0,0.0,-0.056,-0.008,1.194,0.0,0.0,-1.212,0.0,-0.057,-0.194,-0.279,0.0,0.0,0.549,3.198,0.781,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,14592.0,6778.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,25.876,25.876,24.558,24.558,1.317,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.661,0.22,9.585,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.22,0.0,3.265,9.374,0.636,0.0,0.0,0.0,0.0,1558.6,1869.1,1869.1,3.415,6.099,0.0,0.378,3.172,0.0,0.0,0.381,1.385,-1.507,0.0,0.0,0.401,0.0,-0.006,1.706,0.0,0.0,0.0,0.374,-4.015,-1.12,0.0,-0.84,-0.474,0.0,0.0,-0.078,-0.221,1.396,0.0,0.0,-0.856,0.0,-0.002,-0.396,-0.392,0.0,0.0,0.598,3.657,0.907,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,8331.0,3673.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,26.185,26.185,25.123,25.123,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.153,0.343,9.537,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,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.984,0.0,5.308,9.374,0.586,0.0,0.0,0.0,0.0,1578.0,1741.9,1741.9,3.705,4.57,0.0,-0.004,3.199,0.0,0.0,0.372,1.434,-1.384,0.0,0.0,-0.004,0.0,-0.074,1.765,0.0,0.0,0.0,0.306,-3.658,-1.009,0.0,-0.001,-0.583,0.0,0.0,-0.044,-0.373,1.518,0.0,0.0,-0.001,0.0,-0.071,-0.543,-0.515,0.0,0.0,0.944,4.015,1.017,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,7886.0,3453.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,6279.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-infil-compartmentalization-test.xml,26.804,26.804,26.287,26.287,0.517,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.095,0.58,9.526,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.517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,9.42,9.374,0.574,0.0,0.0,0.0,0.0,1668.0,1953.8,1953.8,3.251,7.677,0.0,-0.015,2.451,0.0,0.0,0.424,3.906,-2.465,0.0,0.0,-0.01,0.0,-0.396,0.991,0.0,0.666,0.0,0.0,-4.45,-0.746,0.0,-0.01,-1.157,0.0,0.0,-0.049,-1.212,5.738,0.0,0.0,-0.005,0.0,-0.386,-0.414,-1.343,-0.41,0.0,0.0,7.514,1.28,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 +base-bldgtype-mf-unit-residents-1.xml,19.884,19.884,18.663,18.663,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.471,0.422,4.527,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,0.0,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,7.202,4.144,0.584,0.0,0.0,0.0,0.0,1142.0,1671.8,1671.8,3.916,7.195,0.0,-0.018,2.578,0.0,0.0,0.425,4.087,-3.005,0.0,0.0,-0.017,0.0,-0.365,1.302,0.0,0.742,0.0,0.0,-3.753,-0.915,0.0,-0.013,-0.841,0.0,0.0,-0.013,-0.739,5.197,0.0,0.0,-0.012,0.0,-0.356,-0.408,-1.204,-0.286,0.0,0.0,4.875,1.111,817.2,530.6,4684.1,1314.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,27.301,27.301,26.651,26.651,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.031,0.0,0.0,3.152,0.858,9.527,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.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,7.0,1676.6,1998.5,1998.5,3.451,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,28.125,28.125,27.432,27.432,0.694,0.0,0.0,0.0,0.0,0.0,0.0,0.055,0.0,0.0,3.797,0.97,9.527,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.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,0.616,0.0,10.469,9.374,0.575,0.0,0.0,0.0,13.0,1706.3,2202.5,2202.5,3.597,8.104,0.0,-0.015,2.472,0.0,0.0,0.423,3.919,-2.555,0.0,0.0,-0.011,0.0,-0.392,1.275,0.0,0.674,0.0,0.036,-4.548,-0.767,0.0,-0.01,-1.112,0.0,0.0,-0.046,-1.16,5.647,0.0,0.0,-0.005,0.0,-0.382,-0.522,-1.34,-0.394,0.0,1.244,7.418,1.259,1354.8,997.6,11171.5,3093.4,0.0,8647.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,27.596,27.596,26.979,26.979,0.616,0.0,0.0,0.0,0.0,0.0,0.0,0.074,0.0,0.0,3.438,0.858,9.527,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.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,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,7.0,1687.4,2060.4,2060.4,3.449,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,33.049,33.049,32.543,32.543,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,8.9,0.97,9.527,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.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,0.594,0.0,10.469,9.374,0.575,0.0,0.0,0.0,13.0,2186.4,3395.0,3395.0,3.53,8.104,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.747,27.747,27.241,27.241,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,3.597,0.97,9.527,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.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,0.594,0.0,10.469,9.374,0.575,0.0,0.0,0.0,13.0,1698.7,2155.8,2155.8,3.53,8.104,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,23.068,23.068,22.546,22.546,0.522,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,0.0,0.0,9.438,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.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,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1508.8,1332.5,1508.8,3.443,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,23.122,23.122,22.564,22.564,0.558,0.0,0.0,0.0,0.0,0.0,0.0,0.044,0.0,0.0,0.0,0.0,9.438,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.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.495,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1527.5,1332.5,1527.5,3.595,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.029,-6.076,-1.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,1354.8,997.6,11171.6,3093.4,0.0,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,23.075,23.075,22.577,22.577,0.498,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,0.0,0.0,9.438,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.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1538.6,1332.5,1538.6,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,23.054,23.054,22.693,22.693,0.361,0.0,0.0,0.0,0.0,0.0,0.116,0.057,0.0,0.0,0.0,0.0,9.438,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1647.2,1332.5,1647.2,3.447,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.076,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,23.075,23.075,22.579,22.579,0.496,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,0.0,0.0,9.438,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.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,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1540.5,1332.5,1540.5,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,22.978,22.978,22.571,22.571,0.407,0.0,0.0,0.0,0.0,0.0,0.026,0.025,0.0,0.0,0.0,0.0,9.438,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.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,0.477,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1532.9,1332.5,1532.9,3.527,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.011,-6.076,-1.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,1354.8,997.6,11171.6,3093.4,0.0,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,26.602,26.602,26.602,26.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.134,0.851,9.535,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,0.0,0.0,9.147,9.374,0.584,0.0,0.0,0.0,7.0,1677.0,1983.1,1983.1,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,27.355,27.355,27.355,27.355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.775,0.962,9.535,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,0.0,0.0,10.376,9.374,0.584,0.0,0.0,0.0,13.0,1729.1,2177.1,2177.1,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,26.886,26.886,26.886,26.886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.418,0.851,9.535,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,0.0,0.0,9.147,9.374,0.584,0.0,0.0,0.0,7.0,1694.4,2044.4,2044.4,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,32.42,32.42,32.42,32.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.841,0.962,9.535,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,0.0,0.0,10.376,9.374,0.584,0.0,0.0,0.0,13.0,2065.3,3317.6,3317.6,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,27.156,27.156,27.156,27.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.577,0.962,9.535,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,0.0,0.0,10.376,9.374,0.584,0.0,0.0,0.0,13.0,1715.9,2132.5,2132.5,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-generator.xml,41.018,34.194,26.223,19.398,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,9.527,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,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1657.0,2013.3,2013.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.05,28.05,28.05,28.05,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.269,0.0,0.0,2.073,2.941,9.527,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,0.581,0.0,9.234,9.374,0.576,0.0,0.0,0.0,0.0,1719.2,1898.6,1898.6,3.449,7.709,0.0,-0.016,2.485,0.0,0.0,0.427,3.959,-2.568,0.0,0.0,-0.012,0.0,-0.392,1.285,0.0,0.682,0.0,0.0,-4.601,-0.777,0.0,-0.011,-1.098,0.0,0.0,-0.042,-1.119,5.634,0.0,0.0,-0.007,0.0,-0.382,-0.512,-1.333,-0.387,0.0,0.0,7.365,1.249,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,31.745,31.745,16.765,16.765,14.98,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.097,0.582,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.0,0.572,0.0,14.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.527,0.0,9.528,9.374,2.261,0.0,0.0,0.0,0.0,1022.8,1553.5,1553.5,3.498,7.734,0.0,-0.017,2.435,0.0,0.0,0.425,3.913,-2.47,0.0,0.0,-0.013,0.0,-0.418,2.024,0.0,0.0,0.0,0.0,-4.701,-0.752,0.0,-0.012,-1.157,0.0,0.0,-0.045,-1.182,5.732,0.0,0.0,-0.007,0.0,-0.407,-0.942,-1.35,0.0,0.0,0.0,7.751,1.274,1354.8,997.6,11171.8,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-laundry-room.xml,29.626,29.626,16.572,16.572,13.054,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.944,0.541,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.0,0.742,0.0,12.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,8.806,9.374,0.568,0.0,0.0,0.0,0.0,1013.8,1542.1,1542.1,3.655,7.615,0.0,-0.017,2.498,0.0,0.0,0.426,3.976,-2.663,0.0,0.0,-0.014,0.0,-0.395,2.062,0.0,0.0,0.0,0.0,-4.478,-0.8,0.0,-0.012,-1.052,0.0,0.0,-0.036,-1.051,5.54,0.0,0.0,-0.009,0.0,-0.386,-0.862,-1.313,0.0,0.0,0.0,6.883,1.227,1354.8,997.6,11171.7,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,50.713,50.713,30.664,30.664,20.049,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.808,0.312,9.565,0.0,0.0,2.026,0.0,0.206,3.727,0.946,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,0.0,7.888,0.0,0.0,0.0,0.0,12.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.308,0.0,5.088,9.374,0.615,0.0,0.0,0.0,0.0,1867.2,2269.1,2269.1,7.584,8.979,0.0,-0.017,2.791,0.0,0.0,0.407,4.196,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.34,0.0,0.0,-6.693,-1.194,0.0,-0.013,-0.143,0.0,0.0,0.06,0.126,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.698,-4.228,0.0,0.0,5.312,0.832,1354.8,997.6,11171.5,3093.4,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,32.615,32.615,27.323,27.323,5.293,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.686,0.467,9.537,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,0.0,1.335,0.0,0.0,0.0,0.0,3.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,1.234,0.0,7.542,9.374,0.586,0.0,0.0,0.0,0.0,1657.3,2031.3,2031.3,4.163,7.879,0.0,-0.018,2.638,0.0,0.0,0.432,4.149,-3.079,0.0,0.0,-0.017,0.0,-0.36,1.775,0.0,1.925,0.0,0.0,-5.318,-0.929,0.0,-0.013,-0.774,0.0,0.0,-0.004,-0.66,5.123,0.0,0.0,-0.012,0.0,-0.352,-0.53,-1.154,-1.781,0.0,0.0,6.659,1.097,1354.8,997.6,11171.5,3093.4,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,30.834,30.834,27.174,27.174,3.661,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.584,0.44,9.546,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,0.0,3.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,3.389,0.0,7.249,9.374,0.596,0.0,0.0,0.0,0.0,1646.9,2112.1,2112.1,5.987,8.5,0.0,-0.016,2.682,0.0,0.0,0.398,4.038,-3.61,0.0,0.0,-0.018,0.0,-0.253,1.739,0.0,5.306,0.0,0.0,-5.801,-1.04,0.0,-0.011,-0.571,0.0,0.0,-0.008,-0.518,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.44,-1.153,-1.513,0.0,0.0,6.186,0.987,1354.8,997.6,11171.5,3093.4,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-pv.xml,26.852,2.404,26.223,1.775,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,9.527,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.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1657.0,2013.3,2013.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,30.789,30.789,17.683,17.683,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1059.1,1602.9,1602.9,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.661,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.038,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.625,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11171.6,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-water-heater.xml,29.693,29.693,16.587,16.587,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1006.5,1550.2,1550.2,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.661,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.038,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.625,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11171.6,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit.xml,26.852,26.852,26.223,26.223,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,9.527,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.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1657.0,2013.3,2013.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-sfa-unit-2stories.xml,51.001,51.001,34.611,34.611,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.214,0.0,0.0,3.423,0.619,9.079,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.285,0.0,10.305,9.11,0.613,0.0,0.0,0.0,0.0,2111.0,3086.6,3086.6,17.841,15.64,0.0,2.437,5.073,0.298,4.382,0.64,7.13,-8.585,0.0,0.0,0.0,5.027,-0.069,7.099,0.0,0.73,0.0,2.271,-8.897,-2.5,0.0,-0.005,-0.668,-0.027,1.593,-0.021,-1.066,7.911,0.0,0.0,0.0,-4.019,-0.064,-1.707,-2.597,-0.164,0.0,1.389,7.881,2.01,1354.8,997.6,11171.5,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16951.0,4421.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-atticroof-cathedral.xml,97.537,97.537,37.19,37.19,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.787,0.0,0.0,5.067,0.972,9.088,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,15.981,9.11,0.623,0.0,0.0,0.0,0.0,2152.6,4300.5,4300.5,36.45,28.479,49.534,0.0,2.942,0.289,3.702,0.668,4.716,-5.325,0.0,0.0,0.0,3.447,-0.844,7.54,0.0,0.773,0.0,0.0,-9.663,-2.68,8.461,0.0,-0.16,0.004,1.534,0.119,0.028,5.085,0.0,0.0,0.0,-4.279,-0.806,-0.856,-1.185,-0.094,0.0,0.0,7.124,1.829,1354.8,997.6,11171.6,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,42.293,42.293,29.882,29.882,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,9.289,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.114,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2578.3,2578.3,13.175,10.827,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-sfa-unit.xml,42.293,42.293,29.882,29.882,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,9.289,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.114,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2578.3,2578.3,13.175,10.827,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21403.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13941.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 base-dhw-combi-tankless-outside.xml,51.079,51.079,21.423,21.423,29.656,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.363,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.322,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.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,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,52.277,52.277,21.432,21.432,30.845,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.551,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1376.9,1017.3,1376.9,17.068,0.0,0.0,3.743,3.642,0.513,7.499,0.631,10.099,-12.691,0.0,0.0,0.0,8.145,-0.067,5.887,0.0,0.729,0.0,0.0,-8.581,-2.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,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,32.074,32.074,32.074,32.074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.285,0.756,6.757,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.246,9.074,0.661,2.908,0.0,0.0,0.0,2067.1,2830.0,2830.0,0.0,19.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.094,-0.469,-0.052,2.672,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.192,-3.046,-0.166,0.0,3.724,8.63,2.036,1354.8,997.6,11183.0,2566.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -73,7 +71,7 @@ base-dhw-indirect-outside.xml,55.4,55.4,21.423,21.423,33.977,0.0,0.0,0.0,0.0,0.0 base-dhw-indirect-standbyloss.xml,54.218,54.218,21.42,21.42,32.799,0.0,0.0,0.0,0.0,0.0,0.0,0.143,0.0,0.0,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,0.0,18.906,0.0,13.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,15.947,0.0,0.0,9.105,2.69,0.0,0.0,0.0,0.0,1375.9,1017.3,1375.9,16.729,0.0,0.0,3.746,3.646,0.513,7.512,0.632,10.114,-12.663,0.0,0.0,0.0,8.131,-0.071,5.895,0.0,0.73,0.0,0.0,-10.09,-2.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,1059.1,763.7,8811.6,2022.0,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-indirect-with-solar-fraction.xml,46.173,46.173,21.429,21.429,24.744,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.069,0.0,4.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.953,0.0,0.0,9.08,0.783,0.0,5.902,0.0,0.0,1376.6,1017.3,1376.6,16.971,0.0,0.0,3.745,3.645,0.513,7.503,0.631,10.103,-12.69,0.0,0.0,0.0,8.144,-0.067,5.89,0.0,0.729,0.0,0.0,-9.023,-2.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,388.7,286.4,3143.6,721.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-indirect.xml,53.979,53.979,21.422,21.422,32.557,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,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,0.0,19.162,0.0,13.395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.168,0.0,0.0,9.103,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.134,-0.07,5.893,0.0,0.729,0.0,0.0,-9.854,-2.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,1070.4,771.3,8876.8,2036.9,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,58.086,58.086,35.605,35.605,22.481,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.387,0.851,8.72,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.053,0.0,14.342,9.075,0.295,0.0,0.0,0.0,0.0,2106.1,3415.6,3415.6,23.085,19.07,0.0,3.554,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.806,0.0,0.729,0.0,4.874,-8.733,-2.499,0.0,-0.054,-0.462,-0.052,2.693,-0.026,-1.399,11.73,0.0,0.0,0.0,-6.338,-0.06,-1.168,-3.09,-0.165,0.0,3.188,7.726,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,58.086,58.086,35.605,35.605,22.481,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.387,0.851,8.719,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.053,0.0,14.342,9.075,0.295,0.0,0.0,0.0,0.0,2106.1,3415.6,3415.6,23.085,19.07,0.0,3.554,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.806,0.0,0.729,0.0,4.874,-8.733,-2.499,0.0,-0.054,-0.462,-0.052,2.693,-0.026,-1.399,11.73,0.0,0.0,0.0,-6.338,-0.06,-1.168,-3.09,-0.165,0.0,3.188,7.726,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-jacket-gas.xml,64.099,64.099,27.019,27.019,37.08,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.489,0.876,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,0.0,22.883,0.0,14.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,21.43,0.0,14.763,9.075,2.724,0.0,0.0,0.0,0.0,1464.4,3156.9,3156.9,23.58,19.54,0.0,3.552,3.645,0.513,7.531,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,5.889,0.0,0.729,0.0,4.961,-9.538,-2.499,0.0,-0.06,-0.465,-0.052,2.687,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.347,-0.058,-1.45,-3.116,-0.166,0.0,3.27,8.403,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-jacket-hpwh.xml,56.318,56.318,29.631,29.631,26.687,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,3.934,0.742,3.239,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,12.535,9.129,1.302,0.0,0.0,0.0,0.0,1880.5,3567.5,3567.5,25.325,19.105,0.0,3.522,3.636,0.512,7.508,0.627,10.062,-12.738,0.0,0.0,0.0,8.34,-0.05,4.794,0.0,0.727,0.0,5.64,-5.436,-2.509,0.0,0.007,-0.412,-0.045,2.851,-0.015,-1.258,11.675,0.0,0.0,0.0,-6.072,-0.046,-1.114,-2.816,-0.154,0.0,2.838,5.444,2.001,1354.8,997.6,10758.2,2468.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-jacket-indirect.xml,53.778,53.778,21.423,21.423,32.355,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.38,0.0,12.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.357,0.0,0.0,9.102,1.911,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.825,0.0,0.0,3.746,3.646,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.137,-0.068,5.892,0.0,0.729,0.0,0.0,-9.652,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1075.0,775.0,8916.9,2046.2,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -82,15 +80,15 @@ base-dhw-multiple.xml,46.852,46.852,23.349,23.349,23.504,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-none.xml,46.91,46.91,24.677,24.677,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.38,0.85,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,0.0,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.822,0.0,14.413,0.0,0.0,0.0,0.0,0.0,0.0,1360.7,3014.2,3014.2,23.072,19.086,0.0,3.558,3.646,0.513,7.535,0.631,10.106,-12.683,0.0,0.0,0.0,8.322,-0.064,5.405,0.0,0.0,0.0,4.828,-8.819,-2.499,0.0,-0.059,-0.466,-0.052,2.68,-0.027,-1.413,11.73,0.0,0.0,0.0,-6.358,-0.06,-1.307,-3.107,0.0,0.0,3.187,7.842,2.011,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-recirc-demand.xml,58.149,58.149,35.883,35.883,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,8.942,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.017,0.614,0.0,0.0,0.0,0.0,2130.9,3422.1,3422.1,23.033,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-recirc-manual.xml,57.729,57.729,35.463,35.463,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,8.531,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.017,0.614,0.0,0.0,0.0,0.0,2115.9,3407.6,3407.6,23.033,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,72.882,72.882,50.616,50.616,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,22.206,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4233.2,4233.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,72.882,72.882,50.616,50.616,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,22.207,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4233.2,4233.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-recirc-temperature.xml,68.03,68.03,45.764,45.764,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,18.6,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.109,0.614,0.0,0.0,0.0,0.0,2754.3,4049.8,4049.8,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,72.882,72.882,50.616,50.616,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,22.206,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4233.2,4233.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,52.395,52.395,30.129,30.129,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.417,0.858,2.887,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.47,9.097,0.627,0.0,6.623,0.0,0.0,2096.5,3145.8,3145.8,23.033,19.138,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.208,7.886,2.011,1354.7,997.5,10985.6,2520.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,50.957,50.957,28.7,28.7,22.257,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.429,0.862,1.455,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.843,0.0,14.522,9.207,0.694,0.0,8.339,0.0,0.0,2067.2,3149.1,3149.1,23.033,19.166,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.913,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.113,-0.166,0.0,3.217,7.945,2.011,1354.4,997.2,10196.9,2339.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,52.472,52.472,30.206,30.206,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.423,0.86,2.953,0.0,0.328,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.493,9.133,0.649,0.0,6.61,0.0,0.0,2124.6,3147.9,3147.9,23.034,19.155,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.108,-0.166,0.0,3.212,7.909,2.011,1354.7,997.6,10721.2,2460.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,72.882,72.882,50.616,50.616,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,22.207,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4233.2,4233.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,52.394,52.394,30.128,30.128,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.417,0.859,2.885,0.0,0.323,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.47,9.098,0.628,0.0,6.625,0.0,0.0,2096.5,3145.5,3145.5,23.033,19.136,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.208,7.887,2.011,1354.7,997.5,10979.9,2519.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,50.957,50.957,28.7,28.7,22.257,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.429,0.862,1.455,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.843,0.0,14.522,9.207,0.694,0.0,8.339,0.0,0.0,2067.2,3149.1,3149.1,23.033,19.166,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.913,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.113,-0.166,0.0,3.217,7.945,2.011,1354.4,997.2,10197.2,2339.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-ics.xml,52.472,52.472,30.206,30.206,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.423,0.86,2.953,0.0,0.328,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.493,9.133,0.649,0.0,6.61,0.0,0.0,2124.6,3147.9,3147.9,23.034,19.155,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.108,-0.166,0.0,3.212,7.909,2.011,1354.7,997.6,10721.3,2460.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-solar-fraction.xml,52.569,52.569,30.034,30.034,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.381,0.85,3.156,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.104,0.0,14.314,9.075,0.215,0.0,5.899,0.0,0.0,1786.0,3421.8,3421.8,23.1,19.057,0.0,3.554,3.644,0.513,7.529,0.631,10.098,-12.69,0.0,0.0,0.0,8.316,-0.062,4.806,0.0,0.729,0.0,4.885,-8.691,-2.5,0.0,-0.052,-0.461,-0.051,2.696,-0.026,-1.399,11.724,0.0,0.0,0.0,-6.332,-0.059,-1.167,-3.087,-0.165,0.0,3.183,7.688,2.01,474.2,349.2,3910.1,897.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,50.692,50.692,28.789,28.789,21.902,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,4.533,0.887,1.426,0.0,0.305,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.902,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.511,0.0,14.97,9.186,0.682,0.0,8.337,0.0,0.0,2107.1,3183.2,3183.2,23.067,19.444,0.0,3.559,3.645,0.513,7.536,0.63,10.098,-12.669,0.0,0.0,0.0,8.31,-0.061,4.807,0.0,0.729,0.0,4.762,-9.207,-2.496,0.0,-0.069,-0.473,-0.053,2.663,-0.029,-1.44,11.744,0.0,0.0,0.0,-6.388,-0.058,-1.183,-3.161,-0.168,0.0,3.292,8.47,2.013,1354.2,997.1,10323.3,2368.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,50.673,50.673,28.416,28.416,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.428,0.861,1.482,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.844,0.0,14.519,9.2,0.69,0.0,8.299,0.0,0.0,2091.4,3117.0,3117.0,23.033,19.165,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.912,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.172,-3.112,-0.166,0.0,3.216,7.942,2.011,1354.4,997.2,10240.6,2349.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,50.692,50.692,28.789,28.789,21.903,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,4.533,0.887,1.426,0.0,0.305,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.511,0.0,14.969,9.186,0.682,0.0,8.337,0.0,0.0,2107.1,3183.2,3183.2,23.067,19.444,0.0,3.559,3.645,0.513,7.536,0.63,10.098,-12.669,0.0,0.0,0.0,8.31,-0.061,4.807,0.0,0.729,0.0,4.762,-9.207,-2.496,0.0,-0.069,-0.473,-0.053,2.663,-0.029,-1.44,11.744,0.0,0.0,0.0,-6.388,-0.058,-1.183,-3.161,-0.168,0.0,3.291,8.469,2.013,1354.2,997.1,10322.8,2368.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,50.673,50.673,28.416,28.416,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.428,0.861,1.482,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.844,0.0,14.519,9.2,0.69,0.0,8.299,0.0,0.0,2091.4,3117.0,3117.0,23.033,19.165,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.912,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.172,-3.112,-0.166,0.0,3.216,7.942,2.011,1354.4,997.2,10240.9,2350.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tank-coal.xml,64.837,64.837,27.073,27.073,22.487,0.0,0.0,0.0,0.0,15.277,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.058,0.0,14.974,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3168.3,3168.3,23.484,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tank-detailed-setpoints.xml,58.181,58.181,35.921,35.921,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.006,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.846,0.0,14.459,9.049,0.623,0.0,0.0,0.0,0.0,2529.3,3444.1,3444.1,23.009,19.116,0.0,3.556,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.908,-2.499,0.0,-0.058,-0.465,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.206,7.879,2.011,1354.8,997.6,11206.2,2571.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tank-elec-uef.xml,58.224,58.224,36.01,36.01,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.42,0.859,9.088,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,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,0.0,14.483,9.075,0.691,0.0,0.0,0.0,0.0,2172.7,3489.9,3489.9,23.02,19.134,0.0,3.557,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.823,-8.947,-2.499,0.0,-0.057,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.172,-3.11,-0.166,0.0,3.21,7.908,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -103,10 +101,10 @@ base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.14,56.14,28.621,28. base-dhw-tank-heat-pump-outside.xml,56.276,56.276,33.595,33.595,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,6.736,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.096,2.524,0.0,0.0,0.0,0.0,3051.2,3332.0,3332.0,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11023.3,2529.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tank-heat-pump-uef.xml,56.14,56.14,28.621,28.621,27.519,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.861,0.724,2.306,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,25.759,0.0,12.223,9.132,1.307,0.0,0.0,0.0,0.0,1854.5,3438.1,3438.1,25.444,19.071,0.0,3.516,3.634,0.511,7.509,0.628,10.061,-12.724,0.0,0.0,0.0,8.352,-0.046,4.792,0.0,0.727,0.0,5.79,-4.85,-2.508,0.0,0.019,-0.401,-0.043,2.894,-0.011,-1.219,11.689,0.0,0.0,0.0,-6.009,-0.042,-1.1,-2.763,-0.152,0.0,2.79,5.061,2.001,1354.8,997.6,10745.3,2465.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tank-heat-pump-with-solar-fraction.xml,51.968,51.968,27.939,27.939,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,4.219,0.81,1.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,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.503,0.0,13.67,9.108,0.602,0.0,5.92,0.0,0.0,1856.3,3178.6,3178.6,25.408,19.104,0.0,3.544,3.64,0.512,7.519,0.629,10.079,-12.705,0.0,0.0,0.0,8.318,-0.055,4.8,0.0,0.728,0.0,5.161,-7.514,-2.501,0.0,-0.031,-0.443,-0.049,2.749,-0.022,-1.352,11.708,0.0,0.0,0.0,-6.242,-0.051,-1.148,-2.981,-0.162,0.0,3.061,6.875,2.009,474.2,349.2,3821.6,876.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,51.489,51.489,28.549,28.549,22.94,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.563,0.895,1.11,0.0,0.327,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.481,0.0,15.104,9.022,1.965,0.0,8.042,0.0,0.0,1896.1,3197.6,3197.6,25.085,19.544,0.0,3.552,3.644,0.513,7.535,0.63,10.094,-12.669,0.0,0.0,0.0,8.316,-0.06,4.805,0.0,0.729,0.0,4.954,-8.422,-2.497,0.0,-0.067,-0.469,-0.053,2.677,-0.028,-1.428,11.744,0.0,0.0,0.0,-6.357,-0.056,-1.178,-3.154,-0.167,0.0,3.307,8.549,2.013,1354.4,997.3,11676.0,2679.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,51.492,51.492,28.55,28.55,22.943,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.562,0.895,1.111,0.0,0.327,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.484,0.0,15.102,9.023,1.965,0.0,8.039,0.0,0.0,1896.1,3197.7,3197.7,25.085,19.545,0.0,3.556,3.646,0.513,7.537,0.63,10.093,-12.686,0.0,0.0,0.0,8.324,-0.056,4.806,0.0,0.729,0.0,4.955,-8.421,-2.498,0.0,-0.064,-0.467,-0.052,2.678,-0.028,-1.429,11.727,0.0,0.0,0.0,-6.349,-0.053,-1.177,-3.153,-0.166,0.0,3.306,8.548,2.011,1354.4,997.3,11673.7,2678.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tank-heat-pump.xml,56.383,56.383,29.782,29.782,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,3.946,0.745,3.376,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.907,0.0,12.593,9.12,1.717,0.0,0.0,0.0,0.0,1874.8,3309.5,3309.5,23.533,19.252,0.0,3.526,3.638,0.512,7.511,0.627,10.061,-12.745,0.0,0.0,0.0,8.343,-0.049,4.795,0.0,0.727,0.0,5.625,-5.52,-2.509,0.0,0.006,-0.413,-0.045,2.848,-0.015,-1.266,11.668,0.0,0.0,0.0,-6.079,-0.045,-1.116,-2.834,-0.155,0.0,2.844,5.524,2.001,1354.8,997.6,10838.8,2487.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.789,58.789,35.57,35.57,23.219,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,4.453,0.866,8.581,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.219,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.742,0.0,14.577,9.117,0.094,0.0,0.0,0.0,0.0,4533.0,5519.6,5519.6,30.734,19.972,0.0,3.55,3.644,0.513,7.528,0.631,10.102,-12.682,0.0,0.0,0.0,8.311,-0.062,5.264,0.0,0.777,0.0,5.011,-8.678,-2.504,0.0,-0.055,-0.461,-0.051,2.696,-0.025,-1.393,11.731,0.0,0.0,0.0,-6.334,-0.058,-1.269,-3.078,-0.186,0.0,3.233,8.042,2.006,1354.7,998.0,10791.1,2476.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,58.072,58.072,35.455,35.455,22.617,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.371,0.847,8.587,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.617,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.181,0.0,14.272,9.124,0.094,0.0,0.0,0.0,0.0,2010.8,3460.2,3460.2,23.119,19.037,0.0,3.553,3.644,0.513,7.528,0.63,10.097,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.901,-8.625,-2.5,0.0,-0.051,-0.46,-0.051,2.699,-0.025,-1.396,11.724,0.0,0.0,0.0,-6.328,-0.058,-1.166,-3.081,-0.165,0.0,3.177,7.633,2.01,1354.8,997.6,10775.1,2472.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.751,58.751,35.484,35.484,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.447,0.865,8.501,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.788,0.0,14.551,9.117,0.021,0.0,0.0,0.0,0.0,4528.4,5582.3,5582.3,30.746,19.96,0.0,3.55,3.645,0.513,7.528,0.631,10.104,-12.683,0.0,0.0,0.0,8.312,-0.062,5.265,0.0,0.776,0.0,5.021,-8.643,-2.504,0.0,-0.054,-0.459,-0.051,2.698,-0.025,-1.389,11.73,0.0,0.0,0.0,-6.33,-0.058,-1.267,-3.074,-0.186,0.0,3.229,8.004,2.005,1354.7,998.0,10786.2,2475.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,58.035,58.035,35.368,35.368,22.667,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.365,0.846,8.507,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.227,0.0,14.246,9.125,0.021,0.0,0.0,0.0,0.0,1987.5,3452.5,3452.5,23.132,19.025,0.0,3.553,3.644,0.513,7.528,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.91,-8.585,-2.5,0.0,-0.051,-0.459,-0.051,2.701,-0.025,-1.395,11.724,0.0,0.0,0.0,-6.326,-0.058,-1.165,-3.077,-0.165,0.0,3.172,7.6,2.01,1354.8,997.6,10766.1,2470.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tank-oil.xml,64.837,64.837,27.073,27.073,22.487,15.277,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,21.058,0.0,14.974,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3168.3,3168.3,23.484,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tank-wood.xml,64.837,64.837,27.073,27.073,22.487,0.0,0.0,15.277,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.058,0.0,14.974,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3168.3,3168.3,23.484,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tankless-detailed-setpoints.xml,60.711,60.711,26.859,26.859,33.852,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,11.171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.056,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11343.1,2602.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -115,13 +113,13 @@ base-dhw-tankless-electric-uef.xml,58.708,58.708,36.027,36.027,22.681,0.0,0.0,0. base-dhw-tankless-electric.xml,58.812,58.812,36.132,36.132,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,9.273,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3488.2,3488.2,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tankless-gas-uef.xml,59.201,59.201,26.859,26.859,32.342,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,9.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,21.24,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tankless-gas-with-solar-fraction.xml,53.458,53.458,26.859,26.859,26.599,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,3.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.076,0.0,0.0,5.899,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,474.2,349.2,3909.2,897.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,51.173,51.173,27.291,27.291,23.882,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.471,0.872,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,0.0,22.316,0.0,1.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.898,0.0,14.699,9.262,0.0,0.0,7.989,0.0,0.0,1462.4,3166.3,3166.3,23.167,19.303,0.0,3.557,3.645,0.513,7.532,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,4.807,0.0,0.73,0.0,4.843,-8.879,-2.498,0.0,-0.061,-0.467,-0.052,2.679,-0.027,-1.419,11.73,0.0,0.0,0.0,-6.36,-0.058,-1.175,-3.128,-0.166,0.0,3.249,8.131,2.011,1344.9,989.3,9809.8,2251.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,51.173,51.173,27.291,27.291,23.882,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.471,0.872,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,0.0,22.316,0.0,1.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.899,0.0,14.698,9.262,0.0,0.0,7.989,0.0,0.0,1462.4,3166.3,3166.3,23.167,19.302,0.0,3.557,3.645,0.513,7.532,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,4.807,0.0,0.73,0.0,4.843,-8.879,-2.498,0.0,-0.061,-0.467,-0.052,2.679,-0.027,-1.419,11.73,0.0,0.0,0.0,-6.36,-0.058,-1.175,-3.128,-0.166,0.0,3.249,8.131,2.011,1344.9,989.3,9809.3,2250.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tankless-gas.xml,60.735,60.735,26.859,26.859,33.876,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,11.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.24,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-tankless-propane.xml,60.735,60.735,26.859,26.859,22.681,0.0,11.195,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.24,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-2stories-garage.xml,65.701,65.701,40.981,40.981,24.72,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,6.442,1.322,8.973,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,0.0,24.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.053,0.0,22.265,9.053,0.609,0.0,0.0,0.0,0.0,2295.2,4827.0,4827.0,30.686,28.15,0.0,3.862,7.596,1.093,5.881,0.688,20.477,-24.88,0.0,0.0,0.867,6.711,-0.179,8.99,0.0,0.763,0.0,3.298,-9.747,-2.93,0.0,-0.11,-1.064,-0.109,1.841,-0.027,-1.631,23.454,0.0,0.0,-0.141,-4.808,-0.17,-1.956,-6.137,-0.162,0.0,2.913,8.485,2.338,1354.8,997.6,11171.5,2524.9,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7647.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25899.0,4445.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-2stories.xml,73.692,73.692,44.289,44.289,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,6.329,1.295,8.86,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,0.0,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.421,0.0,21.787,8.989,0.612,0.0,0.0,0.0,0.0,2519.0,4711.7,4711.7,33.941,28.292,0.0,3.774,7.88,1.071,7.921,0.667,20.509,-25.19,0.0,0.0,0.0,9.056,-0.136,11.167,0.0,0.747,0.0,3.872,-10.951,-3.54,0.0,-0.076,-1.046,-0.101,2.662,-0.023,-2.118,23.376,0.0,0.0,0.0,-6.456,-0.126,-2.486,-6.302,-0.162,0.0,2.839,9.405,2.832,1354.8,997.6,11171.6,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25801.0,4444.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-beds-1.xml,54.858,54.858,30.603,30.603,24.255,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.1,0.781,5.473,0.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,0.0,24.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,22.716,0.0,13.312,5.267,0.615,0.0,0.0,0.0,0.0,1683.1,3280.9,3280.9,23.625,18.493,0.0,3.533,3.635,0.511,7.498,0.63,10.083,-12.698,0.0,0.0,0.0,8.293,-0.065,4.804,0.0,0.727,0.0,5.229,-7.29,-2.504,0.0,-0.019,-0.434,-0.048,2.778,-0.018,-1.304,11.715,0.0,0.0,0.0,-6.2,-0.061,-1.138,-2.942,-0.161,0.0,3.028,6.287,2.006,939.7,637.0,6161.9,1598.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18320.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,56.559,56.559,33.302,33.302,23.257,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.254,0.819,7.283,0.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,0.0,23.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,21.78,0.0,13.878,7.212,0.614,0.0,0.0,0.0,0.0,2063.0,3350.6,3350.6,23.329,18.795,0.0,3.545,3.639,0.512,7.514,0.63,10.088,-12.691,0.0,0.0,0.0,8.302,-0.063,4.804,0.0,0.728,0.0,5.031,-8.097,-2.5,0.0,-0.038,-0.449,-0.05,2.732,-0.022,-1.359,11.723,0.0,0.0,0.0,-6.276,-0.059,-1.155,-3.024,-0.163,0.0,3.117,7.081,2.009,1147.2,817.3,8666.7,2153.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18553.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,56.559,56.559,33.302,33.302,23.257,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.254,0.819,7.282,0.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,0.0,23.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,21.78,0.0,13.878,7.212,0.614,0.0,0.0,0.0,0.0,2063.0,3350.6,3350.6,23.329,18.795,0.0,3.545,3.639,0.512,7.514,0.63,10.088,-12.691,0.0,0.0,0.0,8.302,-0.063,4.804,0.0,0.728,0.0,5.031,-8.097,-2.5,0.0,-0.038,-0.449,-0.05,2.732,-0.022,-1.359,11.723,0.0,0.0,0.0,-6.276,-0.059,-1.155,-3.024,-0.163,0.0,3.117,7.081,2.009,1147.2,817.3,8666.7,2153.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18553.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 base-enclosure-beds-4.xml,59.815,59.815,38.528,38.528,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.351,0.0,0.0,4.577,0.898,10.712,0.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,0.0,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.934,0.0,15.047,10.898,0.613,0.0,0.0,0.0,0.0,2183.4,3571.0,3571.0,22.735,19.449,0.0,3.569,3.65,0.514,7.549,0.631,10.109,-12.676,0.0,0.0,0.0,8.327,-0.062,4.808,0.0,0.731,0.0,4.636,-9.709,-2.497,0.0,-0.075,-0.479,-0.054,2.64,-0.031,-1.46,11.737,0.0,0.0,0.0,-6.42,-0.058,-1.188,-3.188,-0.168,0.0,3.295,8.669,2.013,1562.4,1177.9,13676.3,2901.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5342.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 base-enclosure-beds-5.xml,61.424,61.424,41.106,41.106,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.335,0.0,0.0,4.745,0.939,12.383,0.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,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,0.0,15.649,12.694,0.612,0.0,0.0,0.0,0.0,2527.7,3931.7,3931.7,22.438,19.771,0.0,3.582,3.657,0.515,7.568,0.633,10.128,-12.669,0.0,0.0,0.0,8.348,-0.064,4.813,0.0,0.733,0.0,4.441,-10.517,-2.496,0.0,-0.092,-0.493,-0.056,2.596,-0.034,-1.504,11.744,0.0,0.0,0.0,-6.484,-0.06,-1.202,-3.268,-0.17,0.0,3.385,9.461,2.013,1770.0,1358.2,16181.0,3193.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19258.0,5339.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 base-enclosure-ceilingtypes.xml,74.293,74.293,36.44,36.44,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,0.0,4.612,0.908,9.02,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.444,0.0,15.263,9.075,0.618,0.0,0.0,0.0,0.0,2135.2,3488.0,3488.0,29.35,19.725,0.0,17.288,3.592,0.505,7.259,0.62,9.956,-12.802,0.0,0.0,0.0,7.765,-0.075,4.845,0.0,0.734,0.0,6.976,-9.065,-2.542,0.0,0.076,-0.331,-0.033,2.89,0.007,-1.002,11.611,0.0,0.0,0.0,-6.097,-0.066,-1.017,-2.911,-0.141,0.0,2.804,7.716,1.968,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30007.0,5443.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -140,7 +138,7 @@ base-enclosure-rooftypes.xml,58.115,58.115,35.764,35.764,22.352,0.0,0.0,0.0,0.0, base-enclosure-skylights-physical-properties.xml,60.714,60.714,37.035,37.035,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,5.288,1.065,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,18.031,9.075,0.612,0.0,0.0,0.0,3.0,2132.5,3597.6,3597.6,24.757,21.557,0.0,3.552,3.66,0.515,7.583,0.634,10.135,-12.625,2.717,-2.174,0.0,8.471,-0.068,4.816,0.0,0.732,0.0,5.144,-8.887,-2.495,0.0,-0.146,-0.516,-0.059,2.583,-0.039,-1.533,11.705,-0.068,3.749,0.0,-6.624,-0.063,-1.187,-3.252,-0.17,0.0,4.013,7.889,2.014,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23504.0,5406.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-skylights-shading.xml,59.334,59.334,35.976,35.976,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.436,0.862,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.875,0.0,14.523,9.075,0.614,0.0,0.0,0.0,0.0,2115.2,3459.6,3459.6,23.651,19.386,0.0,3.538,3.64,0.512,7.524,0.63,10.088,-12.677,1.147,-0.32,0.0,8.319,-0.063,4.806,0.0,0.729,0.0,5.048,-8.906,-2.499,0.0,-0.056,-0.458,-0.051,2.705,-0.025,-1.387,11.724,-0.498,0.432,0.0,-6.325,-0.059,-1.163,-3.074,-0.165,0.0,3.237,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19514.0,5322.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-skylights-storms.xml,58.717,58.717,36.691,36.691,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.363,0.0,0.0,5.031,1.005,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.626,0.0,17.0,9.075,0.612,0.0,0.0,0.0,0.0,2127.3,3597.5,3597.5,23.618,20.821,0.0,3.568,3.663,0.516,7.583,0.634,10.138,-12.642,0.857,-1.409,0.0,8.436,-0.063,4.814,0.0,0.732,0.0,4.801,-8.885,-2.496,0.0,-0.128,-0.51,-0.059,2.585,-0.038,-1.535,11.715,0.254,2.537,0.0,-6.587,-0.059,-1.196,-3.257,-0.17,0.0,3.753,7.891,2.014,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21676.0,5364.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,58.47,58.47,36.791,36.791,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,5.117,1.026,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.301,0.0,17.364,9.075,0.612,0.0,0.0,0.0,0.0,2126.9,3597.6,3597.6,23.534,20.992,0.0,3.575,3.667,0.516,7.595,0.636,10.154,-12.632,0.765,-1.651,0.0,8.463,-0.066,4.818,0.0,0.732,0.0,4.733,-8.884,-2.495,0.0,-0.141,-0.519,-0.06,2.564,-0.04,-1.554,11.716,0.258,2.975,0.0,-6.633,-0.063,-1.201,-3.288,-0.171,0.0,3.822,7.892,2.015,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21910.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,58.47,58.47,36.791,36.791,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,5.117,1.026,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.301,0.0,17.364,9.075,0.612,0.0,0.0,0.0,0.0,2126.9,3597.6,3597.6,23.534,20.992,0.0,3.575,3.667,0.516,7.595,0.636,10.154,-12.632,0.765,-1.651,0.0,8.463,-0.066,4.818,0.0,0.732,0.0,4.733,-8.884,-2.495,0.0,-0.141,-0.519,-0.06,2.564,-0.04,-1.554,11.716,0.258,2.975,0.0,-6.633,-0.063,-1.201,-3.288,-0.171,0.0,3.822,7.892,2.015,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21910.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-split-level.xml,40.396,40.396,29.422,29.422,10.974,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,3.951,0.751,9.409,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,10.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.269,0.0,12.417,9.295,0.606,0.0,0.0,0.0,0.0,1718.3,2561.9,2561.9,13.17,13.022,0.0,3.945,3.838,0.0,0.0,0.691,10.079,-12.095,0.0,0.0,0.0,7.996,-0.152,2.657,0.0,0.776,0.0,0.291,-6.808,-1.452,0.0,-0.102,-0.617,0.0,0.0,-0.024,-0.74,12.161,0.0,0.0,0.0,-1.657,-0.149,-0.598,-3.044,-0.169,0.0,0.089,6.381,1.195,1354.8,997.6,11171.5,2952.8,0.0,36000.0,24000.0,0.0,6.8,91.76,28999.0,1651.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,313.0,0.0,-487.0,800.0 base-enclosure-thermal-mass.xml,57.991,57.991,35.884,35.884,22.107,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.376,0.85,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.703,0.0,14.333,9.075,0.614,0.0,0.0,0.0,0.0,2110.8,3383.7,3383.7,22.901,18.772,0.0,3.557,3.642,0.513,7.508,0.63,10.116,-12.697,0.0,0.0,0.0,8.279,-0.098,4.801,0.0,0.728,0.0,4.785,-8.907,-2.499,0.0,-0.05,-0.46,-0.051,2.699,-0.026,-1.427,11.731,0.0,0.0,0.0,-6.336,-0.094,-1.175,-3.143,-0.166,0.0,3.139,7.871,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-walltypes.xml,74.885,74.885,34.582,34.582,40.303,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,3.069,0.549,9.023,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.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,37.731,0.0,9.028,9.075,0.622,0.0,0.0,0.0,0.0,2128.5,2724.8,2724.8,25.831,12.742,0.0,3.347,16.952,0.473,7.157,0.836,1.283,-1.612,0.0,0.0,0.0,7.38,-0.045,4.826,0.0,0.732,0.0,7.806,-9.155,-2.566,0.0,0.291,-0.623,-0.009,3.405,-0.085,-0.165,1.409,0.0,0.0,0.0,-4.92,-0.04,-0.965,-0.378,-0.123,0.0,1.78,7.631,1.944,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13671.0,5183.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -177,7 +175,6 @@ base-hvac-air-to-air-heat-pump-1-speed.xml,45.611,45.611,45.611,45.611,0.0,0.0,0 base-hvac-air-to-air-heat-pump-2-speed.xml,41.462,41.462,41.462,41.462,0.0,0.0,0.0,0.0,0.0,0.0,7.343,0.575,0.26,0.011,2.342,0.638,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.418,0.272,13.578,9.075,0.614,0.0,0.0,0.0,0.0,6991.3,2815.4,6991.3,24.196,17.378,0.0,3.493,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.317,-0.065,4.807,0.0,0.729,0.0,6.445,-8.906,-2.499,0.0,-0.018,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.311,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.414,53.414,38.606,38.606,14.808,0.0,0.0,0.0,0.0,0.0,4.677,0.498,0.0,0.055,2.556,0.527,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.076,11.082,16.12,9.075,0.614,0.0,0.0,2.0,58.0,3425.3,2790.2,3425.3,23.338,16.603,0.0,3.266,3.605,0.508,7.53,0.616,9.94,-12.591,0.0,0.0,0.0,8.253,-0.031,5.819,0.0,0.721,0.0,11.327,-8.79,-2.477,0.0,-0.187,-0.494,-0.056,2.719,-0.038,-1.537,11.822,0.0,0.0,0.0,-6.373,-0.028,-1.5,-3.084,-0.171,0.0,5.19,7.988,2.033,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.744,56.744,37.423,37.423,19.321,0.0,0.0,0.0,0.0,0.0,3.593,0.349,0.0,0.073,2.586,0.531,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,27.694,14.415,16.291,9.075,0.615,0.0,0.0,204.0,58.0,3014.3,2819.2,3014.3,23.54,16.604,0.0,3.292,3.615,0.508,7.457,0.619,9.934,-12.681,0.0,0.0,0.0,8.271,-0.026,5.805,0.0,0.721,0.0,10.942,-8.844,-2.484,0.0,-0.165,-0.476,-0.054,2.677,-0.033,-1.514,11.732,0.0,0.0,0.0,-6.302,-0.022,-1.49,-3.072,-0.17,0.0,5.156,7.934,2.025,1354.8,997.6,11171.5,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,56.744,56.744,37.423,37.423,19.321,0.0,0.0,0.0,0.0,0.0,3.593,0.349,0.0,0.073,2.586,0.531,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,27.694,14.415,16.291,9.075,0.615,0.0,0.0,204.0,58.0,3014.3,2819.2,3014.3,23.54,16.604,0.0,3.292,3.615,0.508,7.457,0.619,9.934,-12.681,0.0,0.0,0.0,8.271,-0.026,5.805,0.0,0.721,0.0,10.942,-8.844,-2.484,0.0,-0.165,-0.476,-0.054,2.677,-0.033,-1.514,11.732,0.0,0.0,0.0,-6.302,-0.022,-1.49,-3.072,-0.17,0.0,5.156,7.934,2.025,1354.8,997.6,11171.5,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.519,53.519,38.707,38.707,14.813,0.0,0.0,0.0,0.0,0.0,4.737,0.506,0.0,0.055,2.586,0.531,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.352,11.085,16.323,9.075,0.614,0.0,0.0,2.0,58.0,3425.3,2819.2,3425.3,23.338,16.604,0.0,3.307,3.646,0.513,7.531,0.631,10.101,-12.703,0.0,0.0,0.0,8.336,-0.061,5.888,0.0,0.728,0.0,11.469,-8.917,-2.502,0.0,-0.143,-0.455,-0.051,2.713,-0.024,-1.383,11.71,0.0,0.0,0.0,-6.3,-0.057,-1.436,-3.072,-0.164,0.0,5.271,7.861,2.008,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.561,53.561,38.865,38.865,14.695,0.0,0.0,0.0,0.0,0.0,4.527,0.479,0.0,0.443,2.595,0.53,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,28.567,12.199,16.439,9.075,0.614,0.0,0.0,2.0,54.0,3398.2,2730.6,3398.2,26.749,16.592,0.0,3.253,3.648,0.513,7.537,0.631,10.103,-12.695,0.0,0.0,0.0,8.331,-0.06,4.805,0.0,0.729,0.0,12.775,-8.907,-2.499,0.0,-0.152,-0.464,-0.052,2.682,-0.027,-1.415,11.718,0.0,0.0,0.0,-6.349,-0.056,-1.173,-3.118,-0.166,0.0,5.285,7.871,2.011,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed.xml,41.147,41.147,41.147,41.147,0.0,0.0,0.0,0.0,0.0,0.0,7.353,0.758,0.148,0.011,2.378,0.206,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.947,0.159,14.829,9.075,0.614,0.0,0.0,0.0,0.0,7076.3,2607.5,7076.3,24.549,18.191,0.0,3.395,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.323,-0.065,4.808,0.0,0.729,0.0,9.047,-8.906,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.347,-0.061,-1.17,-3.105,-0.166,0.0,3.603,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -196,7 +193,6 @@ base-hvac-central-ac-only-1-speed.xml,35.924,35.924,35.924,35.924,0.0,0.0,0.0,0. base-hvac-central-ac-only-2-speed.xml,34.23,34.23,34.23,34.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.173,0.72,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.517,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3098.5,3098.5,0.0,19.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.091,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.61,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-var-speed.xml,33.525,33.525,33.525,33.525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.875,0.313,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.345,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2847.0,2847.0,0.0,19.332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.132,-0.471,-0.052,2.667,-0.032,-1.453,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.194,-3.023,-0.167,0.0,4.482,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.6,47.6,47.6,47.6,0.0,0.0,0.0,0.0,0.0,0.0,9.585,1.701,0.274,0.028,4.502,1.219,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.21,0.302,14.544,9.075,0.614,0.0,0.0,0.0,0.0,7348.2,3607.2,7348.2,25.254,19.27,0.0,3.502,3.645,0.513,7.531,0.631,10.104,-12.683,0.0,0.0,0.0,8.317,-0.065,4.807,0.0,0.729,0.0,6.22,-8.906,-2.499,0.0,-0.061,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.106,-0.166,0.0,3.294,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-crankcase-heater-40w.xml,58.055,58.055,35.788,35.788,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.271,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2109.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-dse.xml,58.442,58.442,36.831,36.831,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.356,0.0,0.0,5.21,0.973,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2102.1,2621.3,2621.3,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.204,52.204,41.552,41.552,10.652,0.0,0.0,0.0,0.0,0.0,5.257,0.479,0.0,0.929,3.519,1.076,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.768,11.048,13.342,9.075,0.614,0.0,0.0,0.0,0.0,3613.4,3291.7,3613.4,24.193,16.402,0.0,3.472,3.645,0.513,7.532,0.631,10.105,-12.683,0.0,0.0,0.0,8.319,-0.065,4.808,0.0,0.729,0.0,6.812,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,54.961,54.961,40.555,40.555,14.406,0.0,0.0,0.0,0.0,0.0,3.945,0.335,0.0,1.389,3.519,1.076,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.075,13.342,9.075,0.614,0.0,0.0,0.0,0.0,3460.6,3291.7,3460.6,24.191,16.402,0.0,3.435,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,7.753,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -215,8 +211,7 @@ base-hvac-evap-cooler-furnace-gas.xml,54.595,54.595,31.729,31.729,22.866,0.0,0.0 base-hvac-evap-cooler-only-ducted.xml,31.243,31.243,31.243,31.243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.906,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.91,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,1920.1,2020.7,0.0,15.977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.015,-0.167,0.0,0.941,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-evap-cooler-only.xml,31.157,31.157,31.157,31.157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.82,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,1853.6,2020.7,0.0,11.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,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-fireplace-wood-only.xml,51.606,51.606,30.269,30.269,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2019.6,1637.4,2019.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,56.578,56.578,30.269,30.269,0.0,0.0,26.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2019.6,1637.4,2019.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-floor-furnace-propane-only.xml,51.606,51.606,30.269,30.269,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2019.6,1637.4,2019.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,56.578,56.578,30.269,30.269,0.0,0.0,26.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2019.6,1637.4,2019.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-coal-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,0.0,0.0,22.632,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-elec-central-ac-1-speed.xml,56.416,56.416,56.416,56.416,0.0,0.0,0.0,0.0,0.0,0.0,20.485,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,7897.8,3421.7,7897.8,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-elec-only.xml,52.103,52.103,52.103,52.103,0.0,0.0,0.0,0.0,0.0,0.0,21.247,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,8283.1,1622.9,8283.1,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -277,7 +272,6 @@ base-hvac-setpoints.xml,41.377,41.377,34.089,34.089,7.288,0.0,0.0,0.0,0.0,0.0,0. base-hvac-space-heater-gas-only.xml,46.293,46.293,30.268,30.268,16.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2019.6,1614.5,2019.6,16.439,0.0,0.0,3.745,3.645,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.808,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-stove-oil-only.xml,51.59,51.59,30.334,30.334,0.0,21.257,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2022.6,1637.4,2022.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-stove-wood-pellets-only.xml,51.59,51.59,30.334,30.334,0.0,0.0,0.0,0.0,21.257,0.0,0.0,0.064,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2022.6,1637.4,2022.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,55.598,55.598,35.425,35.425,20.173,0.0,0.0,0.0,0.0,0.0,0.0,0.317,0.0,0.0,4.04,0.775,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,0.0,0.0,0.0,0.0,0.0,18.874,0.0,13.019,9.075,0.614,0.0,0.0,0.0,0.0,2106.7,3050.4,3050.4,20.398,15.909,0.0,3.624,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.311,-0.064,4.807,0.0,0.73,0.0,2.807,-8.905,-2.499,0.0,0.006,-0.465,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.102,-0.166,0.0,1.76,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,28898.0,19717.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17384.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-undersized.xml,48.249,48.249,33.001,33.001,15.248,0.0,0.0,0.0,0.0,0.0,0.0,0.246,0.0,0.0,2.091,0.358,9.03,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,6.336,9.075,0.629,0.0,0.0,3652.0,2624.0,2087.0,1833.3,2087.0,3.839,2.674,0.0,2.699,2.924,0.409,5.375,0.449,7.904,-12.797,0.0,0.0,0.0,4.76,-0.121,3.617,0.0,0.6,0.0,9.541,-9.006,-2.517,0.0,-0.382,-0.821,-0.104,1.556,-0.119,-2.517,11.616,0.0,0.0,0.0,-8.136,-0.065,-1.431,-5.137,-0.237,0.0,2.648,7.787,1.992,1354.8,997.6,11171.5,2563.5,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17384.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-wall-furnace-elec-only.xml,46.62,46.62,46.62,46.62,0.0,0.0,0.0,0.0,0.0,0.0,16.351,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,6008.3,1614.5,6008.3,16.439,0.0,0.0,3.745,3.645,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.808,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-lighting-ceiling-fans.xml,58.564,58.564,36.318,36.318,22.245,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.306,0.831,9.014,0.0,0.0,4.51,0.0,0.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,0.0,22.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,20.832,0.0,14.07,9.075,0.612,0.0,0.0,0.0,0.0,2119.4,3806.0,3806.0,23.032,18.911,0.0,3.557,3.645,0.513,7.528,0.631,10.101,-12.683,0.0,0.0,0.0,8.298,-0.064,4.807,0.0,0.729,0.0,4.828,-8.905,-2.499,0.0,-0.096,-0.512,-0.059,2.557,-0.038,-1.551,11.73,0.0,0.0,0.0,-6.547,-0.06,-1.206,-3.271,-0.174,0.0,3.088,8.396,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -289,7 +283,7 @@ base-lighting-none.xml,55.77,55.77,30.73,30.73,25.039,0.0,0.0,0.0,0.0,0.0,0.0,0. base-location-AMY-2012.xml,66.976,66.976,34.799,34.799,32.177,0.0,0.0,0.0,0.0,0.0,0.0,0.523,0.0,0.0,3.0,0.508,9.424,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,0.0,32.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,30.128,0.0,8.862,9.508,0.619,0.0,0.0,0.0,0.0,2145.3,2888.8,2888.8,23.49,15.96,0.0,4.266,4.384,0.623,9.837,0.807,12.591,-13.801,0.0,0.0,0.0,10.991,-0.092,5.205,0.0,0.773,0.0,7.113,-10.172,-2.863,0.0,-0.007,-0.342,-0.042,1.616,-0.044,-1.659,9.941,0.0,0.0,0.0,-7.422,-0.082,-0.883,-2.44,-0.097,0.0,2.153,6.66,1.661,1358.5,1000.6,11355.8,2605.8,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18522.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 base-location-baltimore-md.xml,39.142,39.142,29.933,29.933,9.208,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,5.174,1.068,8.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,0.0,9.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,0.0,0.0,8.506,0.0,17.289,8.405,0.66,0.0,0.0,0.0,0.0,1684.4,2574.3,2574.3,13.608,14.218,0.0,3.492,3.345,0.0,0.0,0.722,9.055,-8.541,0.0,0.0,3.31,0.0,-0.336,2.06,0.0,0.803,0.0,1.498,-5.842,-1.3,0.0,-0.135,-0.628,0.0,0.0,-0.007,0.03,12.018,0.0,0.0,-0.954,0.0,-0.329,-0.438,-1.537,-0.211,0.0,1.593,6.742,1.348,1354.8,997.6,10815.2,2664.9,0.0,24000.0,24000.0,0.0,17.24,91.22,18296.0,4491.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,15129.0,1173.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1875.0,594.0,480.0,800.0 base-location-capetown-zaf.xml,28.183,28.183,28.023,28.023,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,4.338,1.043,7.511,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.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,16.618,7.296,0.693,0.0,0.0,0.0,0.0,1916.8,2396.9,2396.9,4.202,12.626,0.0,1.596,1.352,0.0,0.0,0.569,4.539,-5.631,0.0,0.0,2.602,0.0,-1.072,0.757,0.0,0.326,0.0,0.023,-4.303,-0.792,0.0,-0.907,-1.638,0.0,0.0,-0.468,-0.619,17.811,0.0,0.0,-4.251,0.0,-1.071,-0.601,-2.04,-0.407,0.0,1.031,8.28,1.855,1354.8,997.6,10368.9,2554.9,0.0,24000.0,24000.0,0.0,41.0,84.38,13253.0,5426.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13721.0,2064.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,846.0,27.0,19.0,800.0 -base-location-dallas-tx.xml,34.477,34.477,32.755,32.755,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.988,1.92,6.709,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,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.589,0.0,31.099,6.562,0.573,0.0,0.0,0.0,0.0,1932.4,2858.3,2858.3,9.692,15.095,0.0,1.711,1.591,0.0,0.0,0.368,4.651,-4.907,0.0,0.0,0.0,1.212,-0.34,0.998,0.0,0.383,0.0,0.043,-3.597,-0.743,0.0,0.508,-0.048,0.0,0.0,0.188,2.608,17.264,0.0,0.0,0.0,1.812,-0.335,-0.366,-1.955,-0.099,0.0,0.35,9.56,1.904,1354.8,997.6,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-location-dallas-tx.xml,34.477,34.477,32.755,32.755,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.988,1.92,6.708,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,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.589,0.0,31.099,6.562,0.573,0.0,0.0,0.0,0.0,1932.4,2858.3,2858.3,9.692,15.095,0.0,1.711,1.591,0.0,0.0,0.368,4.651,-4.907,0.0,0.0,0.0,1.212,-0.34,0.998,0.0,0.383,0.0,0.043,-3.597,-0.743,0.0,0.508,-0.048,0.0,0.0,0.188,2.608,17.264,0.0,0.0,0.0,1.812,-0.335,-0.366,-1.955,-0.099,0.0,0.35,9.56,1.904,1354.8,997.6,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 base-location-duluth-mn.xml,70.562,70.562,29.751,29.751,40.81,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,2.39,0.361,11.435,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,40.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.978,0.0,5.779,11.397,0.832,0.0,0.0,0.0,0.0,1764.6,2463.9,2463.9,26.428,11.644,0.0,7.032,7.03,0.0,0.0,1.592,19.667,-13.103,0.0,0.0,9.943,0.0,-0.366,6.402,0.0,0.0,0.0,7.538,-6.247,-1.915,0.0,-0.474,-0.829,0.0,0.0,-0.101,-0.954,8.135,0.0,0.0,-1.619,0.0,-0.366,-0.533,-1.023,0.0,0.0,0.367,2.618,0.732,1354.8,997.6,11924.5,2831.6,0.0,36000.0,24000.0,0.0,-13.72,81.14,31136.0,6137.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11767.0,274.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1210.0,246.0,164.0,800.0 base-location-helena-mt.xml,77.775,77.775,35.31,35.31,42.465,0.0,0.0,0.0,0.0,0.0,0.0,1.04,0.0,0.0,2.442,0.387,10.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,0.0,42.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.108,0.0,6.492,10.298,0.625,0.0,0.0,0.0,0.0,2236.8,3031.4,3031.4,30.328,14.971,0.0,5.359,5.464,0.773,11.523,1.049,15.462,-15.392,0.0,0.0,0.0,13.841,-0.19,7.82,0.0,1.206,0.0,8.245,-12.135,-3.367,0.0,0.002,-0.26,-0.028,1.289,0.008,-0.496,8.386,0.0,0.0,0.0,-6.087,-0.184,-0.686,-2.363,-0.123,0.0,1.356,4.654,1.142,1354.8,997.6,11614.9,2665.3,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17992.0,5113.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,81.0,0.0,-719.0,800.0 base-location-honolulu-hi.xml,35.926,35.926,35.926,35.926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.054,2.996,4.745,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,0.0,48.75,4.497,0.55,0.0,0.0,0.0,0.0,2121.9,2146.1,2334.7,0.0,13.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.238,0.753,0.0,0.0,0.303,5.283,20.458,0.0,0.0,0.0,6.02,-0.004,-0.044,-1.672,0.062,0.0,0.706,13.134,2.647,1354.8,997.6,8369.7,2062.3,0.0,12000.0,24000.0,0.0,63.32,89.06,3432.0,606.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,12993.0,-9.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1831.0,580.0,452.0,800.0 @@ -314,31 +308,31 @@ base-mechvent-multiple.xml,80.721,80.721,38.234,38.234,42.487,0.0,0.0,0.0,0.0,0. base-mechvent-supply.xml,72.37,72.37,36.832,36.832,35.538,0.0,0.0,0.0,0.0,0.0,0.0,0.586,0.0,0.0,4.245,0.807,9.021,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,0.0,35.538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.284,0.0,13.531,9.075,0.618,0.0,0.0,0.0,0.0,2190.3,3627.7,3627.7,29.255,20.864,0.0,3.493,3.667,0.516,7.492,0.64,10.201,-12.763,0.0,0.0,0.0,8.307,-0.08,1.508,0.0,14.154,0.0,7.409,-9.032,-2.53,0.0,0.063,-0.34,-0.034,2.955,0.009,-0.988,11.65,0.0,0.0,0.0,-5.936,-0.076,-0.247,-2.665,-3.722,0.0,3.233,7.75,1.98,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 base-mechvent-whole-house-fan.xml,56.716,56.716,34.269,34.269,22.446,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,2.535,0.4,9.024,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.664,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.021,0.0,6.56,9.075,0.622,0.0,0.0,0.0,0.0,2119.4,3442.0,3442.0,23.032,16.245,0.0,3.554,3.643,0.513,7.547,0.63,10.093,-12.683,0.0,0.0,0.0,8.434,-0.057,4.805,0.0,0.729,0.0,4.871,-8.905,-2.499,0.0,0.088,-0.266,-0.023,3.27,0.022,-0.818,11.73,0.0,0.0,0.0,-5.409,-0.053,-0.992,0.0,-0.135,-11.71,1.806,7.881,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-additional-properties.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-none.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-bills-pv-detailed-only.xml,58.197,31.311,35.931,9.044,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-bills-pv-mixed.xml,58.197,31.311,35.931,9.044,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-bills-pv.xml,58.197,0.934,35.931,-21.333,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-bills.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,63.307,43.858,31.515,12.065,31.792,0.0,0.0,0.0,0.0,0.0,0.0,0.524,0.0,0.0,2.267,0.338,2.103,0.0,0.313,4.51,0.0,0.334,1.118,0.0,0.0,1.081,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.45,0.0,0.507,31.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.759,0.0,5.464,10.472,0.696,0.0,9.068,0.0,0.0,2428.3,2982.4,2982.4,26.046,15.217,0.0,3.491,3.687,0.518,7.47,1.119,10.315,-12.806,0.0,0.0,0.0,8.267,-0.095,1.531,0.0,15.069,0.0,2.756,-9.283,-2.557,0.0,0.69,-0.095,0.001,3.444,-0.195,-0.322,11.607,0.0,0.0,0.0,-5.223,-0.091,-0.199,0.0,-3.419,-10.855,0.449,8.628,1.952,1610.4,1574.2,10318.8,3636.5,2.873,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-emissions.xml,59.016,32.13,36.75,9.863,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.819,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2176.0,3497.5,3497.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,13.682,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery-scheduled.xml,76.932,68.743,37.665,29.476,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.735,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,1.707,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,63.307,43.858,31.515,12.065,31.792,0.0,0.0,0.0,0.0,0.0,0.0,0.524,0.0,0.0,2.267,0.338,2.103,0.0,0.313,4.51,0.0,0.334,1.118,0.0,0.0,1.081,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.45,0.0,0.507,31.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.759,0.0,5.464,10.472,0.696,0.0,9.068,0.0,0.0,2428.2,2982.4,2982.4,26.046,15.217,0.0,3.491,3.687,0.518,7.47,1.119,10.315,-12.806,0.0,0.0,0.0,8.267,-0.095,1.531,0.0,15.069,0.0,2.756,-9.283,-2.557,0.0,0.69,-0.095,0.001,3.444,-0.195,-0.322,11.607,0.0,0.0,0.0,-5.223,-0.091,-0.199,0.0,-3.419,-10.855,0.449,8.628,1.952,1610.4,1574.2,10319.0,3636.6,2.882,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-emissions.xml,59.016,32.13,36.75,9.863,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.819,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2176.0,3497.5,3497.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,13.658,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery-scheduled.xml,76.932,68.743,37.665,29.476,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.735,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,1.675,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-generators-battery.xml,75.197,67.008,35.931,27.742,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-generators.xml,75.197,67.008,35.931,27.742,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-ground-conductivity.xml,55.888,55.888,35.854,35.854,20.034,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,4.383,0.85,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.76,0.0,14.314,9.075,0.613,0.0,0.0,0.0,0.0,2120.8,3428.3,3428.3,22.146,19.178,0.0,3.593,3.668,0.516,7.311,0.636,10.165,-12.663,0.0,0.0,0.0,6.694,-0.064,4.813,0.0,0.731,0.0,4.399,-8.891,-2.496,0.0,-0.066,-0.474,-0.053,2.388,-0.029,-1.439,11.75,0.0,0.0,0.0,-6.137,-0.059,-1.181,-3.121,-0.168,0.0,3.192,7.886,2.014,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8588.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-loads-large-uncommon.xml,146.132,146.132,68.391,68.391,69.746,0.0,2.499,5.496,0.0,0.0,0.0,0.28,0.0,0.0,5.409,1.107,9.012,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,0.0,16.981,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,15.9,0.0,18.753,9.075,0.609,0.0,0.0,0.0,0.0,3267.1,5181.8,5181.8,21.946,20.73,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.832,0.0,0.734,0.0,3.78,-13.808,-2.35,0.0,-0.201,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.271,-3.573,-0.181,0.0,3.874,13.226,2.158,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-misc-loads-large-uncommon2.xml,92.616,92.616,64.841,64.841,19.779,2.499,0.0,0.0,5.496,0.0,0.0,0.28,0.0,0.0,5.409,1.107,9.012,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,0.0,16.981,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,15.9,0.0,18.753,9.075,0.609,0.0,0.0,0.0,0.0,3218.2,4779.3,4779.3,21.946,20.73,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.832,0.0,0.734,0.0,3.78,-13.808,-2.35,0.0,-0.201,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.271,-3.573,-0.181,0.0,3.874,13.226,2.158,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-none.xml,52.934,52.934,24.686,24.686,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,3.725,0.689,9.02,0.0,0.0,4.51,0.0,0.334,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,0.0,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.457,0.0,11.563,9.075,0.617,0.0,0.0,0.0,0.0,1514.6,2831.7,2831.7,24.266,17.326,0.0,3.475,3.599,0.506,7.396,0.622,9.986,-12.73,0.0,0.0,0.0,8.165,-0.054,4.795,0.0,0.726,0.0,5.972,-3.801,-2.512,0.0,0.056,-0.368,-0.038,2.973,-0.001,-1.105,11.683,0.0,0.0,0.0,-5.88,-0.05,-1.085,-2.701,-0.152,0.0,2.706,3.706,1.998,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-loads-none.xml,52.934,52.934,24.686,24.686,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,3.725,0.689,9.019,0.0,0.0,4.51,0.0,0.334,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,0.0,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.457,0.0,11.563,9.075,0.617,0.0,0.0,0.0,0.0,1514.6,2831.7,2831.7,24.266,17.326,0.0,3.475,3.599,0.506,7.396,0.622,9.986,-12.73,0.0,0.0,0.0,8.165,-0.054,4.795,0.0,0.726,0.0,5.972,-3.801,-2.512,0.0,0.056,-0.368,-0.038,2.973,-0.001,-1.105,11.683,0.0,0.0,0.0,-5.88,-0.05,-1.085,-2.701,-0.152,0.0,2.706,3.706,1.998,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-neighbor-shading-bldgtype-multifamily.xml,26.466,26.466,25.631,25.631,0.835,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.569,0.438,9.536,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.835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.772,0.0,7.007,9.374,0.585,0.0,0.0,0.0,0.0,1640.8,2079.1,2079.1,3.335,8.14,0.0,-0.013,3.83,0.0,0.0,0.417,4.067,-3.186,0.0,0.0,-0.01,0.0,-0.312,1.311,0.0,0.761,0.0,0.0,-5.319,-0.936,0.0,-0.008,-2.783,0.0,0.0,-0.012,-0.688,5.017,0.0,0.0,-0.005,0.0,-0.303,-0.394,-1.178,-0.271,0.0,0.0,6.656,1.09,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-misc-neighbor-shading.xml,63.226,63.226,35.673,35.673,27.553,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,4.134,0.79,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,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.803,0.0,13.302,9.075,0.615,0.0,0.0,0.0,0.0,2119.3,3351.5,3351.5,23.266,18.474,0.0,3.479,3.709,0.541,7.36,0.776,10.707,-8.74,0.0,0.0,0.0,7.861,-0.057,4.786,0.0,0.724,0.0,5.781,-8.918,-2.502,0.0,-0.014,-0.467,-0.054,2.778,-0.04,-1.339,10.323,0.0,0.0,0.0,-6.182,-0.052,-1.149,-2.99,-0.162,0.0,2.965,7.861,2.008,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-misc-shielding-of-home.xml,57.859,57.859,36.073,36.073,21.787,0.0,0.0,0.0,0.0,0.0,0.0,0.359,0.0,0.0,4.533,0.888,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.403,0.0,14.992,9.075,0.613,0.0,0.0,0.0,0.0,2130.6,3535.8,3535.8,23.012,19.034,0.0,3.562,3.647,0.513,7.535,0.631,10.101,-12.683,0.0,0.0,0.0,8.308,-0.061,4.424,0.0,0.73,0.0,4.741,-8.899,-2.498,0.0,-0.07,-0.476,-0.054,2.649,-0.03,-1.451,11.73,0.0,0.0,0.0,-6.41,-0.058,-1.066,-2.609,-0.168,0.0,3.276,7.878,2.012,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31389.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18685.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,106.0,0.0,-694.0,800.0 -base-misc-usage-multiplier.xml,126.054,126.054,50.774,50.774,68.084,0.0,2.249,4.947,0.0,0.0,0.0,0.34,0.0,0.0,4.686,0.925,8.17,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,0.0,20.596,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.287,0.0,15.608,8.168,0.612,0.0,0.0,0.0,0.0,2729.6,4428.5,4428.5,22.733,19.742,0.0,3.581,3.659,0.515,7.576,0.633,10.138,-12.664,0.0,0.0,0.0,8.363,-0.065,4.863,0.0,0.658,0.0,4.503,-10.586,-2.246,0.0,-0.096,-0.496,-0.056,2.596,-0.035,-1.507,11.751,0.0,0.0,0.0,-6.491,-0.062,-1.211,-3.25,-0.153,0.0,3.386,9.606,1.813,1219.3,897.9,10054.4,2307.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-pv-battery-ah.xml,59.016,32.13,36.75,9.863,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.819,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2176.0,3497.5,3497.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,13.682,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-garage.xml,59.393,32.506,35.459,8.572,23.934,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.107,0.552,9.117,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.886,0.0,0.87,23.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.408,0.0,9.142,9.075,0.722,0.0,0.0,0.0,0.0,2200.9,2712.0,2712.0,18.031,11.774,0.0,3.532,3.792,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.368,0.0,0.0,0.0,3.763,-6.763,-2.508,0.0,0.104,-0.282,-0.037,2.418,-0.001,-1.134,8.269,0.0,0.0,0.0,-5.68,-0.041,-1.226,-2.106,0.0,0.0,1.34,5.683,2.002,1354.8,997.6,11171.6,2563.5,17.356,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15522.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-round-trip-efficiency.xml,60.371,33.485,38.105,11.219,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,2.174,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2301.3,3637.6,3637.6,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,4.388,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-scheduled.xml,59.932,33.045,37.665,10.779,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,5.642,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery.xml,59.016,32.13,36.75,9.863,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.819,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2176.0,3497.5,3497.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,13.682,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery-scheduled.xml,76.932,41.856,37.665,2.59,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.735,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,16.994,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery.xml,76.043,40.967,36.777,1.701,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.846,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2165.1,3486.7,3486.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,84.182,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-misc-unit-multiplier.xml,581.975,581.975,359.309,359.309,222.666,0.0,0.0,0.0,0.0,0.0,0.0,3.673,0.0,0.0,44.137,8.577,90.16,0.0,0.0,45.096,0.0,3.337,0.0,0.0,0.0,0.0,22.196,0.0,0.0,3.185,3.653,15.127,15.28,0.0,21.142,83.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,222.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,208.521,0.0,144.557,90.753,6.137,0.0,0.0,0.0,0.0,21193.7,34217.2,34217.2,230.319,191.217,0.0,35.573,36.457,5.131,75.308,6.309,101.023,-126.896,0.0,0.0,0.0,83.175,-0.635,48.076,0.0,7.296,0.0,48.328,-89.081,-24.996,0.0,-0.561,-4.631,-0.518,26.862,-0.262,-14.063,117.236,0.0,0.0,0.0,-63.454,-0.596,-11.7,-31.061,-1.655,0.0,32.059,78.695,20.1,13548.2,9976.1,111715.5,25635.3,0.0,360000.0,240000.0,0.0,6.8,91.76,322350.0,85950.0,75080.0,0.0,5750.0,68400.0,0.0,0.0,19490.0,21710.0,45970.0,187870.0,53290.0,70370.0,0.0,2070.0,2650.0,0.0,0.0,0.0,20100.0,6190.0,33200.0,0.0,0.0,0.0,0.0 +base-misc-usage-multiplier.xml,126.054,126.054,50.774,50.774,68.084,0.0,2.249,4.947,0.0,0.0,0.0,0.34,0.0,0.0,4.686,0.925,8.171,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,0.0,20.596,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.287,0.0,15.608,8.168,0.612,0.0,0.0,0.0,0.0,2729.6,4428.5,4428.5,22.733,19.742,0.0,3.581,3.659,0.515,7.576,0.633,10.138,-12.664,0.0,0.0,0.0,8.363,-0.065,4.863,0.0,0.658,0.0,4.503,-10.586,-2.246,0.0,-0.096,-0.496,-0.056,2.596,-0.035,-1.507,11.751,0.0,0.0,0.0,-6.491,-0.062,-1.211,-3.25,-0.153,0.0,3.386,9.606,1.813,1219.3,897.9,10054.4,2307.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 +base-pv-battery-ah.xml,59.016,32.13,36.75,9.863,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.819,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2176.0,3497.5,3497.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,13.658,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-garage.xml,59.393,32.506,35.459,8.572,23.934,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.107,0.552,9.117,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.886,0.0,0.87,23.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.408,0.0,9.142,9.075,0.722,0.0,0.0,0.0,0.0,2200.9,2712.0,2712.0,18.031,11.774,0.0,3.532,3.792,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.368,0.0,0.0,0.0,3.763,-6.763,-2.508,0.0,0.104,-0.282,-0.037,2.418,-0.001,-1.134,8.269,0.0,0.0,0.0,-5.68,-0.041,-1.226,-2.106,0.0,0.0,1.34,5.683,2.002,1354.8,997.6,11171.6,2563.5,17.305,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15522.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-round-trip-efficiency.xml,60.371,33.485,38.105,11.219,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,2.174,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2301.3,3637.6,3637.6,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,4.375,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery-scheduled.xml,59.932,33.045,37.665,10.779,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,5.54,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-battery.xml,59.016,32.13,36.75,9.863,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.819,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2176.0,3497.5,3497.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,13.658,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery-scheduled.xml,76.932,41.856,37.665,2.59,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.735,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,16.713,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery.xml,76.043,40.967,36.777,1.701,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.846,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2165.1,3486.7,3486.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,84.143,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-pv-generators.xml,75.197,40.122,35.931,0.855,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-pv.xml,58.197,31.311,35.931,9.044,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-residents-0-runperiod-1-month.xml,8.7747,8.7747,0.4299,0.4299,8.3448,0.0,0.0,0.0,0.0,0.0,0.0,0.1377,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.3448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8115,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.16,0.0,556.16,26.8895,0.0,0.0,0.6029,0.6429,0.0909,1.7457,0.1095,1.7779,-1.9884,0.0,0.0,0.0,2.2351,-0.0005,1.0002,0.0,0.0,0.0,1.7427,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -346,22 +340,18 @@ base-residents-0.xml,41.422,41.422,7.378,7.378,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0. base-residents-1-misc-loads-large-uncommon.xml,101.111,101.111,52.071,52.071,41.133,0.0,2.609,5.297,0.0,0.0,0.0,0.345,0.0,0.0,4.607,0.907,3.885,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,0.0,20.911,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.583,0.0,15.487,3.562,0.613,0.0,0.0,0.0,0.0,2604.8,4555.8,4555.8,22.989,19.677,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.814,0.0,0.729,0.0,4.575,-10.198,-2.496,0.0,-0.096,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.194,-3.22,-0.169,0.0,3.382,9.248,2.014,777.8,496.4,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-residents-1-misc-loads-large-uncommon2.xml,80.056,80.056,49.645,49.645,22.505,2.609,0.0,0.0,5.297,0.0,0.0,0.345,0.0,0.0,4.607,0.907,3.885,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,0.0,20.911,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.583,0.0,15.487,3.562,0.613,0.0,0.0,0.0,0.0,2406.4,4296.1,4296.1,22.989,19.677,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.814,0.0,0.729,0.0,4.575,-10.198,-2.496,0.0,-0.096,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.194,-3.22,-0.169,0.0,3.382,9.248,2.014,777.8,496.4,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 base-residents-1.xml,52.81,52.81,28.439,28.439,24.371,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,4.081,0.777,3.887,0.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,0.0,24.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,22.824,0.0,13.244,3.562,0.615,0.0,0.0,0.0,0.0,1640.1,3237.9,3237.9,23.634,18.44,0.0,3.532,3.634,0.511,7.494,0.629,10.079,-12.698,0.0,0.0,0.0,8.289,-0.064,4.803,0.0,0.727,0.0,5.251,-7.189,-2.504,0.0,-0.017,-0.432,-0.047,2.784,-0.017,-1.299,11.715,0.0,0.0,0.0,-6.191,-0.06,-1.136,-2.934,-0.161,0.0,3.015,6.197,2.006,777.8,496.4,4208.3,833.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-5.xml,69.406,49.155,39.892,19.641,29.514,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,2.386,0.366,6.918,0.0,0.326,4.51,0.0,0.334,1.118,0.0,0.0,1.107,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.251,0.0,0.395,29.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.625,0.0,5.885,18.165,0.644,0.0,11.901,0.0,0.0,3043.8,3224.5,3224.5,25.599,15.571,0.0,3.796,3.691,0.519,7.524,0.645,10.259,-12.764,0.0,0.0,0.0,8.385,-0.078,1.524,0.0,14.999,0.0,2.562,-11.178,-2.536,0.0,0.218,-0.167,-0.01,3.395,0.049,-0.49,11.649,0.0,0.0,0.0,-5.263,-0.074,-0.214,0.0,-3.588,-11.536,0.482,10.475,1.974,2592.1,2706.5,20695.1,5541.3,1.837,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,69.406,49.155,39.893,19.641,29.514,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,2.386,0.366,6.918,0.0,0.326,4.51,0.0,0.334,1.118,0.0,0.0,1.107,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.251,0.0,0.395,29.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.625,0.0,5.885,18.166,0.644,0.0,11.901,0.0,0.0,3043.8,3224.5,3224.5,25.599,15.571,0.0,3.796,3.691,0.519,7.524,0.645,10.259,-12.764,0.0,0.0,0.0,8.385,-0.078,1.524,0.0,14.999,0.0,2.562,-11.178,-2.536,0.0,0.218,-0.167,-0.01,3.395,0.049,-0.49,11.649,0.0,0.0,0.0,-5.263,-0.074,-0.214,0.0,-3.588,-11.536,0.482,10.475,1.974,2592.1,2706.5,20694.5,5541.1,1.842,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-all-10-mins.xml,59.576,59.576,36.179,36.179,23.397,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.59,0.894,9.022,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.91,0.0,15.004,9.053,0.638,0.0,0.0,0.333,1.333,9422.1,10717.0,10717.0,37.366,21.894,0.0,3.607,3.669,0.517,7.596,0.642,10.189,-12.601,0.0,0.0,0.0,8.33,-0.062,5.307,0.0,0.775,0.0,5.11,-8.969,-2.509,0.0,-0.179,-0.489,-0.056,2.704,-0.032,-1.437,11.752,0.0,0.0,0.0,-6.329,-0.058,-1.279,-3.004,-0.179,0.0,3.436,8.308,2.0,1354.7,998.0,11252.3,2582.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-mixed-timesteps-power-outage.xml,33.513,33.513,28.668,28.668,4.845,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.304,0.58,7.324,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,4.538,0.0,9.824,7.3,0.56,0.0,0.0,0.5,0.667,9397.2,10452.9,10452.9,41.543,21.475,0.0,2.617,2.464,0.344,4.289,0.336,6.501,-12.497,0.0,0.0,0.0,3.691,-0.104,3.39,0.0,0.384,0.0,1.013,-6.566,-1.596,0.0,-0.248,-0.599,-0.072,2.363,-0.065,-1.808,11.861,0.0,0.0,0.0,-7.639,-0.059,-1.386,-4.977,-0.212,0.0,2.361,8.448,2.023,1141.2,883.5,9207.0,2112.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-mixed-timesteps.xml,42.423,42.423,34.37,34.37,8.052,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.316,0.583,9.051,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,9.873,9.053,0.67,0.0,0.0,0.0,0.667,9393.8,10455.9,10455.9,31.865,21.476,0.0,2.918,2.81,0.394,5.403,0.421,7.525,-12.492,0.0,0.0,0.0,5.506,-0.059,3.865,0.0,0.581,0.0,1.73,-8.86,-2.486,0.0,-0.252,-0.602,-0.072,2.368,-0.066,-1.818,11.861,0.0,0.0,0.0,-7.571,-0.058,-1.388,-4.99,-0.212,0.0,2.371,8.448,2.023,1354.7,998.0,11253.5,2582.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-occupancy-stochastic-10-mins.xml,58.983,58.983,36.09,36.09,22.893,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.506,0.88,8.936,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.435,0.0,14.798,8.987,0.615,0.0,0.0,0.0,0.0,6629.1,7202.8,9091.3,31.35,20.86,0.0,3.558,3.649,0.513,7.536,0.632,10.11,-12.685,0.0,0.0,0.0,8.318,-0.06,5.322,0.0,0.764,0.0,4.945,-8.988,-2.501,0.0,-0.056,-0.46,-0.051,2.692,-0.025,-1.398,11.729,0.0,0.0,0.0,-6.34,-0.055,-1.287,-3.092,-0.189,0.0,3.271,8.364,1.98,1002.6,945.2,11359.3,2606.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-occupancy-stochastic-power-outage.xml,44.612,44.612,30.267,30.267,14.345,0.0,0.0,0.0,0.0,0.0,0.0,0.237,0.0,0.0,4.476,0.872,7.293,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,13.438,0.0,14.68,7.313,0.517,0.0,0.0,17.0,0.0,6231.1,5704.5,6231.1,36.507,20.005,0.0,3.075,3.07,0.431,5.717,0.489,8.386,-12.686,0.0,0.0,0.0,5.187,-0.154,4.374,0.0,0.513,0.0,3.019,-6.68,-1.621,0.0,-0.056,-0.461,-0.051,2.676,-0.025,-1.397,11.731,0.0,0.0,0.0,-6.442,-0.057,-1.272,-3.091,-0.186,0.0,3.248,8.28,2.006,1141.2,883.5,9132.4,2095.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,41.422,41.422,7.378,7.378,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.403,0.618,0.576,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.0,0.0,0.0,0.0,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.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.888,0.0,10.868,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2257.1,2257.1,25.495,15.665,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.996,-0.063,5.417,0.0,0.0,0.0,7.057,-1.409,0.0,0.0,0.15,-0.28,-0.026,3.179,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.472,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-occupancy-stochastic-vacancy.xml,57.65,57.65,30.858,30.858,26.793,0.0,0.0,0.0,0.0,0.0,0.0,0.442,0.0,0.0,4.495,0.877,7.368,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.09,0.0,14.759,7.303,0.614,0.0,0.0,0.0,0.0,4487.7,5710.9,5710.9,30.776,20.061,0.0,3.504,3.622,0.51,7.453,0.626,10.041,-12.679,0.0,0.0,0.0,8.149,-0.064,5.305,0.0,0.514,0.0,5.697,-6.297,-1.615,0.0,-0.061,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.358,-0.059,-1.276,-3.102,-0.186,0.0,3.261,8.286,2.008,1141.2,883.5,9118.0,2092.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic.xml,58.918,58.918,36.05,36.05,22.869,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.496,0.877,9.012,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.414,0.0,14.762,9.071,0.614,0.0,0.0,0.0,0.0,4690.7,5711.1,5711.1,30.649,20.063,0.0,3.553,3.644,0.513,7.53,0.631,10.102,-12.674,0.0,0.0,0.0,8.308,-0.063,5.265,0.0,0.777,0.0,4.943,-8.954,-2.502,0.0,-0.061,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.355,-0.059,-1.276,-3.103,-0.186,0.0,3.262,8.286,2.008,1354.7,998.0,11168.6,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic.xml,58.918,58.918,36.05,36.05,22.869,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.496,0.877,9.013,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.414,0.0,14.762,9.071,0.614,0.0,0.0,0.0,0.0,4690.7,5711.1,5711.1,30.649,20.063,0.0,3.553,3.644,0.513,7.53,0.631,10.102,-12.674,0.0,0.0,0.0,8.308,-0.063,5.265,0.0,0.777,0.0,4.943,-8.954,-2.502,0.0,-0.061,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.355,-0.059,-1.276,-3.103,-0.186,0.0,3.262,8.286,2.008,1354.7,998.0,11168.6,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-setpoints-daily-schedules.xml,57.016,57.016,35.319,35.319,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.913,0.755,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.946,0.0,12.447,9.075,0.615,0.0,0.0,101.0,55.0,2155.4,3710.6,3710.6,34.947,20.39,0.0,3.517,3.579,0.503,7.523,0.608,9.828,-12.674,0.0,0.0,0.0,8.679,0.006,4.652,0.0,0.727,0.0,4.499,-8.859,-2.496,0.0,-0.073,-0.502,-0.058,2.615,-0.042,-1.591,11.74,0.0,0.0,0.0,-6.668,-0.004,-1.223,-3.407,-0.174,0.0,2.49,7.92,2.014,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-setpoints-daily-setbacks.xml,56.386,56.386,35.47,35.47,20.915,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.048,0.783,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.498,0.0,13.07,9.075,0.616,0.0,0.0,0.0,14.0,2130.8,3597.4,3597.4,25.333,20.813,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.196,-0.023,4.639,0.0,0.724,0.0,4.386,-8.884,-2.501,0.0,-0.057,-0.497,-0.057,2.571,-0.04,-1.578,11.697,0.0,0.0,0.0,-6.644,-0.024,-1.204,-3.355,-0.177,0.0,2.635,7.896,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-detailed-setpoints.xml,41.378,41.378,34.089,34.089,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.107,0.54,9.046,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.0,9.174,9.075,0.645,0.0,0.0,0.0,0.0,2100.9,3211.6,3211.6,17.397,16.358,0.0,2.853,2.787,0.39,5.357,0.411,7.457,-12.563,0.0,0.0,0.0,5.504,-0.06,3.479,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.125,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.261,-5.126,-0.188,0.0,2.129,8.003,2.036,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-available.xml,54.73,54.73,32.44,32.44,22.29,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.354,0.611,8.407,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.874,0.0,10.367,8.454,0.581,0.0,0.0,0.0,1.0,2119.2,5726.9,5726.9,23.032,19.129,0.0,3.556,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.312,-0.065,4.763,0.0,0.795,0.0,4.837,-8.906,-2.499,0.0,-0.043,-0.48,-0.054,2.633,-0.03,-1.456,11.731,0.0,0.0,0.0,-6.41,-0.061,-1.18,-4.835,-0.173,0.0,2.289,6.932,1.701,1241.6,923.2,10291.7,2361.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage-natvent-unavailable.xml,54.876,54.876,32.617,32.617,22.259,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.498,0.647,8.405,0.0,0.0,4.2,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.845,0.0,10.939,8.454,0.579,0.0,0.0,0.0,10.0,2119.2,5768.8,5768.8,23.032,19.717,0.0,3.557,3.645,0.513,7.527,0.631,10.104,-12.683,0.0,0.0,0.0,8.289,-0.065,4.763,0.0,0.795,0.0,4.83,-8.906,-2.499,0.0,-0.166,-0.606,-0.072,2.302,-0.062,-1.838,11.731,0.0,0.0,0.0,-6.906,-0.061,-1.302,-2.711,-0.174,0.0,2.367,6.93,1.701,1241.6,923.2,10291.6,2361.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage.xml,54.905,54.905,32.493,32.493,22.412,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,3.427,0.629,8.407,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.989,0.0,10.683,8.454,0.58,0.0,0.0,0.0,5.0,1990.4,5812.2,5812.2,23.066,22.121,0.0,3.554,3.643,0.513,7.524,0.63,10.091,-12.684,0.0,0.0,0.0,8.289,-0.061,4.76,0.0,0.795,0.0,4.86,-8.902,-2.367,0.0,-0.098,-0.536,-0.062,2.488,-0.045,-1.632,11.731,0.0,0.0,0.0,-6.63,-0.057,-1.233,-3.892,-0.174,0.0,2.339,6.936,1.794,1241.6,923.2,10291.7,2361.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy-year-round.xml,41.422,41.422,7.378,7.378,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.403,0.618,0.576,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.0,0.0,0.0,0.0,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.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.888,0.0,10.868,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2257.1,2257.1,25.495,15.665,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.996,-0.063,5.417,0.0,0.0,0.0,7.057,-1.409,0.0,0.0,0.15,-0.28,-0.026,3.179,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.472,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage.xml,54.905,54.905,32.493,32.493,22.412,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,3.427,0.629,8.406,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.989,0.0,10.683,8.454,0.58,0.0,0.0,0.0,5.0,1990.4,5812.2,5812.2,23.066,22.121,0.0,3.554,3.643,0.513,7.524,0.63,10.091,-12.684,0.0,0.0,0.0,8.289,-0.061,4.76,0.0,0.795,0.0,4.86,-8.902,-2.367,0.0,-0.098,-0.536,-0.062,2.488,-0.045,-1.632,11.731,0.0,0.0,0.0,-6.63,-0.057,-1.233,-3.892,-0.174,0.0,2.339,6.936,1.794,1241.6,923.2,10291.7,2361.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-simple-vacancy.xml,57.254,57.254,30.644,30.644,26.61,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,4.441,0.864,7.366,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.92,0.0,14.571,7.302,0.614,0.0,0.0,0.0,0.0,1965.3,3444.2,3444.2,23.124,19.202,0.0,3.503,3.619,0.509,7.446,0.625,10.032,-12.688,0.0,0.0,0.0,8.141,-0.065,4.961,0.0,0.552,0.0,5.667,-6.163,-1.548,0.0,-0.059,-0.466,-0.052,2.681,-0.027,-1.412,11.729,0.0,0.0,0.0,-6.357,-0.06,-1.149,-3.111,-0.2,0.0,3.227,7.872,2.14,1122.2,811.7,9189.2,2108.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-schedules-simple.xml,58.368,58.368,35.967,35.967,22.401,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,4.442,0.865,9.016,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,0.0,22.401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.978,0.0,14.574,9.075,0.614,0.0,0.0,0.0,0.0,1984.0,3441.8,3441.8,23.066,19.187,0.0,3.554,3.642,0.513,7.525,0.63,10.091,-12.684,0.0,0.0,0.0,8.301,-0.061,4.804,0.0,0.729,0.0,4.858,-8.902,-2.367,0.0,-0.06,-0.466,-0.052,2.68,-0.027,-1.418,11.729,0.0,0.0,0.0,-6.358,-0.057,-1.173,-3.114,-0.166,0.0,3.227,7.876,2.141,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-simcontrol-calendar-year-custom.xml,58.172,58.172,35.9,35.9,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.388,0.852,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.857,0.0,14.357,9.075,0.614,0.0,0.0,0.0,0.0,2119.6,3434.2,3434.2,23.032,19.124,0.0,3.557,3.645,0.513,7.53,0.631,10.1,-12.683,0.0,0.0,0.0,8.316,-0.063,4.807,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.051,-0.459,-0.051,2.707,-0.025,-1.394,11.73,0.0,0.0,0.0,-6.328,-0.059,-1.165,-3.252,-0.165,0.0,3.17,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -384,7 +374,7 @@ house007.xml,138.686,138.686,34.0,34.0,104.686,0.0,0.0,0.0,0.0,0.0,0.0,1.629,0.0 house008.xml,183.052,183.052,39.382,39.382,143.669,0.0,0.0,0.0,0.0,0.0,0.0,2.476,0.0,0.0,3.771,0.574,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,0.0,110.234,0.0,26.374,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,103.871,0.0,10.907,18.129,3.213,0.0,0.0,0.0,0.0,2472.9,3432.3,3432.3,54.892,20.574,0.0,7.246,27.501,4.711,24.32,1.195,21.291,-7.816,0.0,0.0,1.287,17.853,-0.393,18.343,0.0,6.388,0.0,7.879,-18.61,-8.163,0.0,0.292,-1.156,-0.067,1.6,-0.09,-0.438,5.412,0.0,0.0,-0.112,-2.804,-0.393,-0.996,-0.687,-0.286,0.0,0.567,7.342,2.843,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,36000.0,0.0,-13.72,81.14,62679.0,10615.0,10314.0,0.0,587.0,23387.0,0.0,891.0,4041.0,3226.0,9618.0,18542.0,2434.0,8639.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,3780.0,2481.0,158.0,1123.0,1200.0 house009.xml,153.811,153.811,34.132,34.132,119.68,0.0,0.0,0.0,0.0,0.0,0.0,2.021,0.0,0.0,2.51,0.314,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,0.0,90.006,0.0,23.288,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.809,0.0,5.739,15.632,3.274,0.0,0.0,0.0,0.0,2226.3,2689.0,2689.0,44.142,14.399,0.0,5.112,28.422,4.319,13.051,2.253,18.888,-8.18,0.0,0.0,0.266,15.624,-0.398,8.745,0.0,21.44,0.0,0.0,-17.429,-7.833,0.0,0.24,-0.73,-0.035,0.709,-0.078,-0.206,4.6,0.0,0.0,-0.029,-4.154,-0.395,-0.262,-0.531,-1.82,0.0,0.0,6.091,2.438,1857.7,1859.4,14896.3,4852.9,0.0,90000.0,36000.0,0.0,-13.72,81.14,44332.0,0.0,8913.0,0.0,885.0,18597.0,0.0,95.0,2819.0,2204.0,10820.0,12518.0,0.0,6041.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,3550.0,1793.0,0.0,793.0,1000.0 house010.xml,153.534,153.534,37.702,37.702,115.832,0.0,0.0,0.0,0.0,0.0,0.0,1.85,0.0,0.0,3.038,0.294,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,0.0,82.398,0.0,26.374,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,77.644,0.0,7.883,18.129,3.212,0.0,0.0,0.0,0.0,2408.7,2877.9,2877.9,45.335,15.822,0.876,4.938,25.514,4.913,9.775,1.266,22.965,-9.184,0.0,0.0,0.927,11.368,-0.399,19.584,0.0,6.404,0.0,4.879,-18.629,-8.154,0.022,0.21,-0.793,-0.102,0.536,-0.077,-0.783,5.164,0.0,0.0,-0.052,-4.233,-0.396,-1.034,-0.682,-0.272,0.0,0.356,7.304,2.833,2104.5,2144.0,17624.6,5341.6,0.0,90000.0,30000.0,0.0,-13.72,81.14,51306.0,8285.0,10714.0,0.0,587.0,16663.0,359.0,532.0,1487.0,2165.0,10514.0,14181.0,1891.0,5286.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,3780.0,2621.0,261.0,1159.0,1200.0 -house011.xml,44.705,44.705,44.705,44.705,0.0,0.0,0.0,0.0,0.0,0.0,7.004,0.615,0.096,0.005,7.993,2.356,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,0.0,14.602,0.1,26.033,9.325,1.123,0.0,0.0,0.0,351.0,4986.7,3124.4,4986.7,18.277,15.745,0.0,2.696,5.398,0.0,0.0,1.633,3.458,-3.179,0.0,0.0,1.874,0.0,-0.392,1.841,0.0,5.399,0.0,3.94,-5.991,-2.074,0.0,1.634,1.115,0.0,0.0,0.144,0.29,5.667,0.0,0.0,0.729,0.0,-0.392,-0.203,-0.181,-1.033,0.0,6.68,8.891,2.83,0.0,1859.4,12951.3,4219.2,0.0,24000.0,18000.0,34120.0,24.62,91.58,20648.0,6685.0,2440.0,0.0,1007.0,3251.0,0.0,546.0,0.0,1795.0,4923.0,21013.0,7842.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3065.0,463.0,1602.0,1000.0 +house011.xml,44.772,44.772,44.772,44.772,0.0,0.0,0.0,0.0,0.0,0.0,7.028,0.617,0.096,0.005,8.023,2.366,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,0.0,14.66,0.101,26.161,9.325,1.123,0.0,0.0,0.0,359.0,4988.0,3124.4,4988.0,18.281,15.789,0.0,2.692,5.464,0.0,0.0,1.635,3.459,-3.191,0.0,0.0,1.872,0.0,-0.39,1.842,0.0,5.405,0.0,3.95,-6.003,-2.078,0.0,1.637,1.229,0.0,0.0,0.146,0.29,5.658,0.0,0.0,0.727,0.0,-0.389,-0.202,-0.182,-1.027,0.0,6.709,8.879,2.826,0.0,1859.4,12951.3,4219.2,0.0,24000.0,18000.0,34120.0,24.62,91.58,20648.0,6685.0,2440.0,0.0,1007.0,3251.0,0.0,546.0,0.0,1795.0,4923.0,21013.0,7842.0,3667.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,3550.0,3065.0,463.0,1602.0,1000.0 house012.xml,35.614,35.614,35.614,35.614,0.0,0.0,0.0,0.0,0.0,0.0,4.76,0.243,0.0,0.0,5.607,1.543,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,0.0,9.96,0.0,16.415,7.782,1.158,0.0,0.0,0.0,0.0,3032.2,2595.0,3032.2,11.061,11.217,0.0,2.374,4.758,0.0,0.0,0.627,2.68,-1.832,0.0,0.0,2.039,0.0,-0.25,1.648,0.0,4.356,0.0,0.318,-4.814,-1.943,0.0,1.715,1.079,0.0,0.0,-0.037,0.46,3.51,0.0,0.0,1.564,0.0,-0.25,-0.164,-0.165,-0.748,0.0,0.277,6.81,2.435,0.0,1574.7,10579.4,3728.3,0.0,23400.0,23200.0,0.0,24.62,91.58,13915.0,1328.0,1906.0,0.0,333.0,2909.0,0.0,1767.0,0.0,1513.0,4159.0,11890.0,639.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,3320.0,2498.0,370.0,1328.0,800.0 house013.xml,30.613,30.613,30.613,30.613,0.0,0.0,0.0,0.0,0.0,0.0,2.82,0.151,0.0,0.0,3.883,1.315,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,0.0,5.976,0.0,15.075,6.85,0.853,0.0,0.0,0.0,0.0,2658.8,2142.7,2658.8,9.739,9.617,0.0,1.625,2.851,0.0,0.0,0.652,2.619,-2.12,0.0,0.0,2.086,0.0,-0.28,1.517,0.0,1.059,0.0,1.11,-3.658,-1.505,0.0,1.07,0.367,0.0,0.0,-0.095,0.206,3.809,0.0,0.0,0.527,0.0,-0.28,-0.258,-0.197,-0.284,0.0,1.461,6.382,2.461,1364.1,1290.1,8207.3,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,12472.0,3011.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9760.0,1063.0,2097.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,3090.0,1618.0,312.0,706.0,600.0 house014.xml,31.643,31.643,31.643,31.643,0.0,0.0,0.0,0.0,0.0,0.0,3.371,0.199,0.004,0.0,4.252,1.437,7.45,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,0.0,7.454,0.004,16.612,6.85,0.597,0.0,0.0,0.0,0.0,2912.2,2163.5,2912.2,10.982,10.462,0.0,1.7,3.69,0.0,0.0,0.583,3.021,-2.479,0.0,0.0,2.201,0.0,-0.243,1.724,0.0,1.115,0.0,1.48,-3.756,-1.617,0.0,1.129,0.535,0.0,0.0,-0.071,0.531,4.749,0.0,0.0,0.599,0.0,-0.242,-0.254,-0.225,-0.263,0.0,1.673,6.113,2.436,1364.1,1290.1,8207.2,3131.8,0.0,18000.0,18000.0,17060.0,24.62,91.58,13637.0,3078.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,10984.0,1055.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,3090.0,1682.0,312.0,770.0,600.0 @@ -401,7 +391,7 @@ house024.xml,129.387,129.387,43.935,43.935,0.0,85.452,0.0,0.0,0.0,0.0,0.0,2.125, house025.xml,104.089,104.089,69.047,69.047,35.042,0.0,0.0,0.0,0.0,0.0,6.397,1.052,0.0,0.0,18.527,2.683,12.215,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.359,0.282,2.094,1.383,0.0,1.858,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.0,47.617,8.321,3.83,0.0,0.0,0.0,0.0,4278.9,6845.1,6845.1,36.324,32.839,0.0,3.377,17.544,0.0,0.0,2.164,7.392,-5.637,0.0,0.0,6.835,0.0,-1.322,13.719,0.0,0.41,0.0,4.901,-8.606,-4.03,0.0,1.088,5.672,0.0,0.0,0.437,1.931,12.471,0.0,0.0,5.632,0.0,-1.32,-0.743,-0.165,-0.005,0.0,6.15,11.506,5.233,1341.9,1264.5,3496.9,1343.1,0.0,158000.0,81000.0,33000.0,24.62,91.58,54341.0,20049.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,32267.0,8820.0,7687.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,4520.0,9615.0,5967.0,2849.0,800.0 house026.xml,56.721,56.721,24.856,24.856,31.865,0.0,0.0,0.0,0.0,0.0,0.0,0.045,0.0,0.0,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,0.0,17.729,0.0,14.136,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,0.0,0.0,8.607,2.075,0.0,0.0,0.0,0.0,1553.8,1299.3,1553.8,17.371,0.0,0.0,1.773,6.876,0.233,0.0,0.198,4.407,-2.924,0.0,0.0,7.12,0.0,-0.05,2.498,0.0,3.138,0.0,0.0,-6.701,-3.094,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1295.3,1282.5,8580.0,3023.7,0.0,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,16896.0,0.0,5493.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,3320.0,2344.0,0.0,1544.0,800.0 house027.xml,72.687,72.687,31.807,31.807,40.88,0.0,0.0,0.0,0.0,0.0,0.0,0.436,0.0,0.0,7.942,1.023,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,0.0,19.933,0.0,17.879,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.776,0.0,23.27,8.564,5.23,0.0,0.0,0.0,0.0,1579.5,3694.9,3694.9,24.054,23.371,0.719,1.784,7.914,0.454,0.0,0.593,4.982,-3.982,0.0,0.0,0.383,3.36,-0.138,1.752,0.0,10.446,0.0,2.033,-8.791,-2.847,0.489,1.123,0.656,0.056,0.0,-0.113,0.132,5.429,0.0,0.0,0.095,3.842,-0.139,-0.365,-0.97,-3.474,0.0,2.62,10.726,3.101,1610.9,1574.7,10579.5,3728.4,0.0,75000.0,36000.0,0.0,24.62,91.58,33087.0,7577.0,4494.0,0.0,375.0,6506.0,550.0,250.0,4088.0,1516.0,7731.0,19084.0,3678.0,4014.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,3320.0,5496.0,1758.0,2939.0,800.0 -house028.xml,67.954,67.954,30.055,30.055,37.899,0.0,0.0,0.0,0.0,0.0,0.0,0.293,0.0,0.0,7.432,1.53,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,0.0,13.398,0.0,18.115,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.621,0.0,23.424,10.226,3.615,0.0,0.0,0.0,0.0,1526.4,3541.8,3541.8,20.248,23.099,0.776,1.677,7.127,0.354,0.0,0.441,4.982,-3.806,0.0,0.0,0.244,2.529,-0.047,4.071,0.0,4.489,0.0,1.62,-9.073,-2.9,0.604,1.216,-0.632,0.097,0.0,0.058,0.062,6.21,0.0,0.0,0.06,1.836,-0.048,-1.089,-1.222,-1.651,0.0,3.125,11.531,3.238,1857.7,1859.4,12951.6,4219.3,0.0,75000.0,36000.0,0.0,24.62,91.58,31422.0,8678.0,4365.0,0.0,315.0,5287.0,616.0,180.0,3569.0,1488.0,6925.0,19789.0,3915.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5049.0,2024.0,2025.0,1000.0 +house028.xml,68.052,68.052,30.1,30.1,37.951,0.0,0.0,0.0,0.0,0.0,0.0,0.294,0.0,0.0,7.468,1.538,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,0.0,13.451,0.0,18.114,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.672,0.0,23.566,10.226,3.615,0.0,0.0,0.0,0.0,1527.5,3542.8,3542.8,20.253,23.125,0.77,1.666,7.189,0.358,0.0,0.442,4.977,-3.803,0.0,0.0,0.246,2.526,-0.046,4.068,0.0,4.486,0.0,1.624,-9.071,-2.899,0.603,1.214,-0.513,0.104,0.0,0.06,0.058,6.213,0.0,0.0,0.064,1.834,-0.047,-1.09,-1.226,-1.653,0.0,3.143,11.532,3.238,1857.7,1859.4,12951.6,4219.3,0.0,75000.0,36000.0,0.0,24.62,91.58,31422.0,8678.0,4365.0,0.0,315.0,5287.0,616.0,180.0,3569.0,1488.0,6925.0,19789.0,3915.0,5630.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,3550.0,5049.0,2024.0,2025.0,1000.0 house029.xml,77.49,77.49,29.992,29.992,47.498,0.0,0.0,0.0,0.0,0.0,0.0,0.701,0.0,0.0,6.131,0.862,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,0.0,31.833,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,31.565,0.0,13.473,9.614,0.0,0.0,0.0,0.0,0.0,1614.7,3007.2,3007.2,28.341,13.898,0.0,3.365,14.611,0.393,0.0,0.296,6.291,-6.007,0.0,0.0,6.862,0.0,-0.086,7.303,0.0,7.307,0.0,3.174,-8.385,-3.714,0.0,1.128,-0.712,0.01,0.0,0.069,0.463,5.276,0.0,0.0,-0.452,0.0,-0.081,-0.803,-1.052,-1.527,0.0,1.251,7.159,2.829,1610.9,1574.7,11033.0,3888.2,0.0,77000.0,36000.0,0.0,17.24,91.22,29341.0,2277.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,16280.0,-152.0,4914.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,3320.0,3901.0,903.0,2197.0,800.0 house030.xml,58.682,58.682,17.191,17.191,0.0,0.0,41.491,0.0,0.0,0.0,0.0,0.056,0.0,0.0,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,0.0,23.166,0.0,13.289,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.478,0.0,0.0,7.715,2.206,0.0,0.0,0.0,0.0,1133.9,975.2,1133.9,15.963,0.0,0.0,1.673,10.157,0.486,1.1,1.039,5.182,-3.325,0.0,0.0,0.0,3.437,-0.041,2.725,0.0,5.693,0.0,0.0,-7.831,-2.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,1066.1,992.7,6763.6,2580.9,0.0,87000.0,0.0,0.0,17.24,91.22,19021.0,0.0,3366.0,0.0,474.0,6930.0,0.0,0.0,3528.0,1036.0,3688.0,10321.0,0.0,2595.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,3090.0,1714.0,0.0,1114.0,600.0 house031.xml,233.826,233.826,50.533,50.533,183.293,0.0,0.0,0.0,0.0,0.0,0.0,3.407,0.0,0.0,13.023,3.411,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.769,0.544,0.32,0.141,0.0,3.051,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.802,0.0,29.094,4.254,4.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.913,0.0,39.785,17.932,5.234,0.0,0.0,48.0,115.0,3052.5,7556.1,7798.1,125.503,49.321,0.0,14.456,42.005,1.048,6.639,1.393,20.051,-16.712,0.0,0.0,1.979,6.048,-0.849,56.906,0.0,0.654,0.0,9.747,-17.118,-6.505,0.0,2.238,5.111,0.174,2.817,0.114,0.456,16.998,0.0,0.0,0.223,-3.626,-0.816,-1.933,-0.385,-0.01,0.0,3.089,11.057,3.856,2593.2,2707.5,18307.9,4902.1,0.0,200000.0,96000.0,0.0,16.16,89.24,83012.0,13661.0,10261.0,0.0,650.0,23580.0,0.0,869.0,1398.0,7333.0,25259.0,44186.0,9754.0,13165.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,4010.0,8618.0,1699.0,5518.0,1400.0 diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index 715afbbdc4..493793147d 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -7,9 +7,7 @@ base-appliances-dehumidifier.xml,1523.18,144.0,1222.02,0.0,1366.02,144.0,13.16,1 base-appliances-gas.xml,1788.18,144.0,1219.68,0.0,1363.68,144.0,280.5,424.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-appliances-modified.xml,1869.73,144.0,1354.89,0.0,1498.89,144.0,226.84,370.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-appliances-none.xml,1585.34,144.0,1041.11,0.0,1185.11,144.0,256.23,400.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-oil-location-miami-fl.xml,2008.86,144.0,1701.24,0.0,1845.24,0.0,0.0,0.0,0.0,163.62,163.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-appliances-oil.xml,1906.82,144.0,1219.68,0.0,1363.68,144.0,228.95,372.95,0.0,170.19,170.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-propane-location-portland-or.xml,1525.89,144.0,887.4,0.0,1031.4,144.0,207.31,351.31,0.0,0.0,0.0,0.0,143.18,143.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-appliances-propane.xml,1868.71,144.0,1219.68,0.0,1363.68,144.0,228.95,372.95,0.0,0.0,0.0,0.0,132.08,132.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1809.62,144.0,1219.68,0.0,1363.68,144.0,228.95,372.95,0.0,0.0,0.0,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1873.1,144.0,1313.7,0.0,1457.7,144.0,271.4,415.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -20,44 +18,44 @@ base-atticroof-unvented-insulated-roof.xml,1811.78,144.0,1292.72,0.0,1436.72,144 base-atticroof-vented.xml,1827.72,144.0,1305.82,0.0,1449.82,144.0,233.9,377.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-battery-scheduled.xml,1905.42,144.0,1381.55,0.0,1525.55,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-battery.xml,1842.55,144.0,1318.68,0.0,1462.68,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-2stories.xml,1731.87,144.0,1270.24,0.0,1414.24,144.0,173.63,317.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-atticroof-cathedral.xml,2292.15,144.0,1364.87,0.0,1508.87,144.0,639.28,783.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached-infil-compartmentalization-test.xml,1516.14,144.0,1096.67,0.0,1240.67,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-attached.xml,1516.14,144.0,1096.67,0.0,1240.67,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,1317.34,144.0,906.19,0.0,1050.19,144.0,123.15,267.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1279.69,144.0,924.42,0.0,1068.42,144.0,67.27,211.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,1456.28,144.0,906.23,0.0,1050.23,144.0,262.05,406.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,1203.25,144.0,901.29,0.0,1045.29,144.0,13.96,157.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,1221.26,144.0,922.01,0.0,1066.01,144.0,11.25,155.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-infil-compartmentalization-test.xml,1258.24,144.0,964.76,0.0,1108.76,144.0,5.48,149.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-residents-1.xml,985.86,144.0,684.93,0.0,828.93,144.0,12.93,156.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,1273.0,144.0,978.11,0.0,1122.11,144.0,6.89,150.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,1302.1,144.0,1006.75,0.0,1150.75,144.0,7.35,151.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,1284.68,144.0,990.15,0.0,1134.15,144.0,6.53,150.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,1487.7,144.0,1194.34,0.0,1338.34,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1293.1,144.0,999.74,0.0,1143.74,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,1120.96,144.0,827.43,0.0,971.43,144.0,5.53,149.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,1122.03,144.0,828.12,0.0,972.12,144.0,5.91,149.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,1121.86,144.0,828.59,0.0,972.59,144.0,5.27,149.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-fireplace-elec.xml,1124.68,144.0,832.85,0.0,976.85,144.0,3.83,147.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,1121.92,144.0,828.67,0.0,972.67,144.0,5.25,149.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,1120.69,144.0,828.38,0.0,972.38,144.0,4.31,148.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,1120.31,144.0,976.31,0.0,1120.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,1147.92,144.0,1003.92,0.0,1147.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,1130.72,144.0,986.72,0.0,1130.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,1333.84,144.0,1189.84,0.0,1333.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,1140.64,144.0,996.64,0.0,1140.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-generator.xml,1641.6,144.0,962.39,0.0,1106.39,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1173.46,144.0,1029.46,0.0,1173.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1061.97,144.0,615.28,0.0,759.28,144.0,158.69,302.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-laundry-room.xml,1034.48,144.0,608.19,0.0,752.19,144.0,138.29,282.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1625.79,144.0,1125.4,0.0,1269.4,144.0,212.39,356.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,1346.82,144.0,1002.75,0.0,1146.75,144.0,56.07,200.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-mechvent.xml,1324.07,144.0,997.29,0.0,1141.29,144.0,38.78,182.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-pv.xml,359.8,144.0,962.39,-897.25,209.14,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,1075.82,144.0,648.99,0.0,792.99,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily-shared-water-heater.xml,1035.6,144.0,608.77,0.0,752.77,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-multifamily.xml,1257.05,144.0,962.39,0.0,1106.39,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,1317.34,144.0,906.19,0.0,1050.19,144.0,123.15,267.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,1279.69,144.0,924.42,0.0,1068.42,144.0,67.27,211.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,1456.28,144.0,906.23,0.0,1050.23,144.0,262.05,406.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,1203.25,144.0,901.29,0.0,1045.29,144.0,13.96,157.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,1221.26,144.0,922.01,0.0,1066.01,144.0,11.25,155.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-infil-compartmentalization-test.xml,1258.24,144.0,964.76,0.0,1108.76,144.0,5.48,149.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-residents-1.xml,985.86,144.0,684.93,0.0,828.93,144.0,12.93,156.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,1273.0,144.0,978.11,0.0,1122.11,144.0,6.89,150.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,1302.1,144.0,1006.75,0.0,1150.75,144.0,7.35,151.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,1284.68,144.0,990.15,0.0,1134.15,144.0,6.53,150.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,1487.7,144.0,1194.34,0.0,1338.34,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1293.1,144.0,999.74,0.0,1143.74,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,1120.96,144.0,827.43,0.0,971.43,144.0,5.53,149.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,1122.03,144.0,828.12,0.0,972.12,144.0,5.91,149.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,1121.86,144.0,828.59,0.0,972.59,144.0,5.27,149.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,1124.68,144.0,832.85,0.0,976.85,144.0,3.83,147.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,1121.92,144.0,828.67,0.0,972.67,144.0,5.25,149.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,1120.69,144.0,828.38,0.0,972.38,144.0,4.31,148.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,1120.31,144.0,976.31,0.0,1120.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,1147.92,144.0,1003.92,0.0,1147.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,1130.72,144.0,986.72,0.0,1130.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1333.84,144.0,1189.84,0.0,1333.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,1140.64,144.0,996.64,0.0,1140.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-generator.xml,1641.6,144.0,962.39,0.0,1106.39,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1173.46,144.0,1029.46,0.0,1173.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1061.97,144.0,615.28,0.0,759.28,144.0,158.69,302.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-laundry-room.xml,1034.48,144.0,608.19,0.0,752.19,144.0,138.29,282.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1625.79,144.0,1125.4,0.0,1269.4,144.0,212.39,356.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1346.82,144.0,1002.75,0.0,1146.75,144.0,56.07,200.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-mechvent.xml,1324.07,144.0,997.29,0.0,1141.29,144.0,38.78,182.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-pv.xml,359.8,144.0,962.39,-897.25,209.14,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,1075.82,144.0,648.99,0.0,792.99,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-water-heater.xml,1035.6,144.0,608.77,0.0,752.77,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit.xml,1257.05,144.0,962.39,0.0,1106.39,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-sfa-unit-2stories.xml,1731.87,144.0,1270.24,0.0,1414.24,144.0,173.63,317.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-sfa-unit-atticroof-cathedral.xml,2292.15,144.0,1364.87,0.0,1508.87,144.0,639.28,783.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,1516.14,144.0,1096.67,0.0,1240.67,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-sfa-unit.xml,1516.14,144.0,1096.67,0.0,1240.67,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-combi-tankless-outside.xml,1388.39,144.0,786.23,0.0,930.23,144.0,314.16,458.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-combi-tankless.xml,1401.33,144.0,786.58,0.0,930.58,144.0,326.75,470.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-2-speed.xml,1321.11,144.0,1177.11,0.0,1321.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,7 +83,7 @@ base-dhw-recirc-manual.xml,1825.37,144.0,1301.5,0.0,1445.5,144.0,235.87,379.87,0 base-dhw-recirc-nocontrol.xml,2381.49,144.0,1857.62,0.0,2001.62,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-recirc-temperature.xml,2203.43,144.0,1679.56,0.0,1823.56,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-recirc-timer.xml,2381.49,144.0,1857.62,0.0,2001.62,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-direct-evacuated-tube.xml,1629.62,144.0,1105.75,0.0,1249.75,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-direct-evacuated-tube.xml,1629.58,144.0,1105.71,0.0,1249.71,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-solar-direct-flat-plate.xml,1577.09,144.0,1053.31,0.0,1197.31,144.0,235.78,379.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-solar-direct-ics.xml,1632.45,144.0,1108.58,0.0,1252.58,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-solar-fraction.xml,1628.99,144.0,1102.27,0.0,1246.27,144.0,238.72,382.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -103,10 +101,10 @@ base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1629.92,144.0,1050.4,0 base-dhw-tank-heat-pump-outside.xml,1761.22,144.0,1232.96,0.0,1376.96,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-tank-heat-pump-uef.xml,1629.92,144.0,1050.4,0.0,1194.4,144.0,291.52,435.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-tank-heat-pump-with-solar-fraction.xml,1567.91,144.0,1025.36,0.0,1169.36,144.0,254.55,398.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-with-solar.xml,1578.78,144.0,1047.77,0.0,1191.77,144.0,243.01,387.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-heat-pump-with-solar.xml,1578.82,144.0,1047.78,0.0,1191.78,144.0,243.04,387.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-tank-heat-pump.xml,1662.81,144.0,1093.02,0.0,1237.02,144.0,281.79,425.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1839.4,144.0,1305.44,0.0,1449.44,144.0,245.96,389.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-model-type-stratified.xml,1828.79,144.0,1301.2,0.0,1445.2,144.0,239.59,383.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1836.74,144.0,1302.26,0.0,1446.26,144.0,246.48,390.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-model-type-stratified.xml,1826.15,144.0,1298.03,0.0,1442.03,144.0,240.12,384.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-tank-oil.xml,2054.11,144.0,993.59,0.0,1137.59,144.0,238.21,382.21,0.0,534.31,534.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-tank-wood.xml,1748.96,144.0,993.59,0.0,1137.59,144.0,238.21,382.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.16,229.16,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-tankless-detailed-setpoints.xml,1632.34,144.0,985.73,0.0,1129.73,144.0,358.61,502.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -177,7 +175,6 @@ base-hvac-air-to-air-heat-pump-1-speed.xml,1817.96,144.0,1673.96,0.0,1817.96,0.0 base-hvac-air-to-air-heat-pump-2-speed.xml,1665.68,144.0,1521.68,0.0,1665.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1861.71,144.0,1416.84,0.0,1560.84,144.0,156.87,300.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1866.12,144.0,1373.45,0.0,1517.45,144.0,204.67,348.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature2.xml,1866.12,144.0,1373.45,0.0,1517.45,144.0,204.67,348.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1865.47,144.0,1420.55,0.0,1564.55,144.0,156.92,300.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1870.04,144.0,1426.37,0.0,1570.37,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1654.1,144.0,1510.1,0.0,1654.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -196,7 +193,6 @@ base-hvac-central-ac-only-1-speed.xml,1462.42,144.0,1318.42,0.0,1462.42,0.0,0.0, base-hvac-central-ac-only-2-speed.xml,1400.26,144.0,1256.26,0.0,1400.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-central-ac-only-var-speed.xml,1374.37,144.0,1230.37,0.0,1374.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1890.95,144.0,1746.95,0.0,1890.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-crankcase-heater-40w.xml,1837.31,144.0,1313.44,0.0,1457.44,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1925.82,144.0,1524.98,0.0,1668.98,144.0,112.84,256.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1928.99,144.0,1488.38,0.0,1632.38,144.0,152.61,296.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -215,8 +211,7 @@ base-hvac-evap-cooler-furnace-gas.xml,1694.69,144.0,1164.46,0.0,1308.46,144.0,24 base-hvac-evap-cooler-only-ducted.xml,1290.62,144.0,1146.62,0.0,1290.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-evap-cooler-only.xml,1287.46,144.0,1143.46,0.0,1287.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1574.96,144.0,1110.9,0.0,1254.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,320.06,320.06,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-floor-furnace-propane-only-pilot-light.xml,1969.03,144.0,1110.9,0.0,1254.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,714.13,714.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-floor-furnace-propane-only.xml,1834.08,144.0,1110.9,0.0,1254.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,579.18,579.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-floor-furnace-propane-only.xml,1969.03,144.0,1110.9,0.0,1254.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,714.13,714.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-coal-only.xml,1615.94,144.0,1132.46,0.0,1276.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,339.48,339.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-elec-central-ac-1-speed.xml,2214.48,144.0,2070.48,0.0,2214.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-elec-only.xml,2056.22,144.0,1912.22,0.0,2056.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -277,7 +272,6 @@ base-hvac-setpoints.xml,1616.3,144.0,1251.09,0.0,1395.09,144.0,77.21,221.21,0.0, base-hvac-space-heater-gas-only.xml,1568.61,144.0,1110.86,0.0,1254.86,144.0,169.75,313.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-stove-oil-only.xml,2000.7,144.0,1113.26,0.0,1257.26,0.0,0.0,0.0,0.0,743.44,743.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-stove-wood-pellets-only.xml,1576.11,144.0,1113.26,0.0,1257.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,318.85,318.85,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,1801.82,144.0,1300.12,0.0,1444.12,144.0,213.7,357.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-undersized.xml,1660.68,144.0,1211.15,0.0,1355.15,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1854.96,144.0,1710.96,0.0,1854.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-lighting-ceiling-fans.xml,1856.55,144.0,1332.9,0.0,1476.9,144.0,235.65,379.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -314,7 +308,6 @@ base-mechvent-multiple.xml,2141.27,144.0,1403.19,0.0,1547.19,144.0,450.08,594.08 base-mechvent-supply.xml,2016.21,144.0,1351.75,0.0,1495.75,144.0,376.46,520.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1783.48,144.0,1257.7,0.0,1401.7,144.0,237.78,381.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-additional-properties.xml,1842.55,144.0,1318.68,0.0,1462.68,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-bills-pv-detailed-only.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,759.8,108.0,1260.94,-989.01,379.93,144.0,235.87,379.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,679.49,108.0,783.3,-591.68,299.62,144.0,235.87,379.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,676.11,108.0,750.56,-562.33,296.24,144.0,235.87,379.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,639.76,108.0,707.09,-555.2,259.89,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-bills-pv-mixed.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,855.8,144.0,1318.68,-986.74,475.93,144.0,235.87,379.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,759.8,108.0,1260.94,-989.01,379.93,144.0,235.87,379.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 base-misc-bills-pv.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,623.11,465.0,1263.64,-1482.46,246.18,132.0,244.93,376.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,91.69,465.0,1263.64,-2013.87,-285.24,132.0,244.93,376.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,-331.13,210.0,1263.64,-2181.7,-708.06,132.0,244.93,376.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 @@ -331,6 +324,7 @@ base-misc-loads-none.xml,1493.23,144.0,905.99,0.0,1049.99,144.0,299.24,443.24,0. base-misc-neighbor-shading-bldgtype-multifamily.xml,1237.52,144.0,940.67,0.0,1084.67,144.0,8.85,152.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-neighbor-shading.xml,1889.09,144.0,1309.21,0.0,1453.21,144.0,291.88,435.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1842.67,144.0,1323.88,0.0,1467.88,144.0,230.79,374.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-misc-unit-multiplier.xml,18425.55,1440.0,13186.78,0.0,14626.78,1440.0,2358.77,3798.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-misc-usage-multiplier.xml,3007.91,144.0,1863.42,0.0,2007.42,144.0,721.24,865.24,0.0,0.0,0.0,0.0,61.05,61.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,885.86,144.0,1348.61,-986.62,505.99,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-pv-battery-garage.xml,856.14,144.0,1301.22,-986.62,458.6,144.0,253.54,397.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -346,22 +340,18 @@ base-residents-0.xml,919.42,144.0,270.79,0.0,414.79,144.0,360.63,504.63,0.0,0.0, base-residents-1-misc-loads-large-uncommon.xml,2785.05,144.0,1911.04,0.0,2055.04,144.0,435.74,579.74,0.0,0.0,0.0,0.0,70.81,70.81,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-1-misc-loads-large-uncommon2.xml,2519.1,144.0,1822.0,0.0,1966.0,144.0,238.4,382.4,0.0,91.24,91.24,0.0,0.0,0.0,0.0,0.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-residents-1.xml,1589.9,144.0,1043.73,0.0,1187.73,144.0,258.17,402.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-5.xml,1321.49,144.0,1463.98,-743.14,864.84,144.0,312.65,456.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-residents-5.xml,1321.5,144.0,1463.99,-743.14,864.85,144.0,312.65,456.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-all-10-mins.xml,1863.63,144.0,1327.78,0.0,1471.78,144.0,247.85,391.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-mixed-timesteps-power-outage.xml,1391.45,144.0,1052.13,0.0,1196.13,144.0,51.32,195.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-mixed-timesteps.xml,1634.71,144.0,1261.41,0.0,1405.41,144.0,85.3,229.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-occupancy-stochastic-10-mins.xml,1855.03,144.0,1324.52,0.0,1468.52,144.0,242.51,386.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-occupancy-stochastic-power-outage.xml,1550.78,144.0,1110.82,0.0,1254.82,144.0,151.96,295.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml,919.42,144.0,270.79,0.0,414.79,144.0,360.63,504.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1704.31,144.0,1132.49,0.0,1276.49,144.0,283.82,427.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-occupancy-stochastic.xml,1853.29,144.0,1323.04,0.0,1467.04,144.0,242.25,386.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-setpoints-daily-schedules.xml,1814.05,144.0,1296.21,0.0,1440.21,144.0,229.84,373.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-setpoints-daily-setbacks.xml,1811.33,144.0,1301.77,0.0,1445.77,144.0,221.56,365.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-detailed-setpoints.xml,1616.3,144.0,1251.09,0.0,1395.09,144.0,77.21,221.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage-natvent-available.xml,1714.69,144.0,1190.57,0.0,1334.57,144.0,236.12,380.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage-natvent-unavailable.xml,1720.85,144.0,1197.06,0.0,1341.06,144.0,235.79,379.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-simple-power-outage.xml,1717.93,144.0,1192.51,0.0,1336.51,144.0,237.42,381.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-vacancy-year-round.xml,919.42,144.0,270.79,0.0,414.79,144.0,360.63,504.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-simple-vacancy.xml,1694.54,144.0,1124.65,0.0,1268.65,144.0,281.89,425.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-schedules-simple.xml,1845.29,144.0,1319.99,0.0,1463.99,144.0,237.3,381.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-simcontrol-calendar-year-custom.xml,1841.47,144.0,1317.54,0.0,1461.54,144.0,235.93,379.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From b9fc6283fb13c853a14f9b7df8156f2558be2b81 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Fri, 3 Nov 2023 11:45:07 -0700 Subject: [PATCH 178/217] Update tests after ground temps merge. --- HPXMLtoOpenStudio/measure.xml | 8 ++++---- HPXMLtoOpenStudio/tests/test_hvac_sizing.rb | 8 ++++---- HPXMLtoOpenStudio/tests/test_validation.rb | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 9d7ceeb5e4..e65ca731b4 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - d47a5bc2-bae0-4110-bce6-60435fb82f77 - 2023-11-03T18:37:56Z + 487ba3f5-f541-4b50-baea-789d028e3229 + 2023-11-03T18:44:49Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -622,7 +622,7 @@ test_hvac_sizing.rb rb test - C7C1FFD4 + 81BC03ED test_lighting.rb @@ -664,7 +664,7 @@ test_validation.rb rb test - 86FDCA01 + 7950F999 test_water_heater.rb diff --git a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb index 210b3297ce..2f9bea6256 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb @@ -416,7 +416,7 @@ def test_ground_loop XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) assert_equal(3, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(884.6 / 3 + 5.0, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) + assert_in_epsilon(776.7 / 3 + 5.0, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) # Bore depth greater than the max -> increase number of boreholes hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') @@ -424,11 +424,11 @@ def test_ground_loop XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) assert_equal(5, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(2450.2 / 5 + 5, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) + assert_in_epsilon(2151.1 / 5 + 5, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) # Bore depth greater than the max -> increase number of boreholes until the max, set depth to the max, and issue warning hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') - hpxml_bldg.site.ground_conductivity = 0.08 + hpxml_bldg.site.ground_conductivity = 0.07 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) assert_equal(10, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) @@ -440,7 +440,7 @@ def test_ground_loop XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) assert_equal(10, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(3434.3 / 10 + 5, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) + assert_in_epsilon(3761.5 / 10 + 5, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) end def _test_measure(args_hash) diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index d7b203cb95..792b6c2e4d 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -1508,7 +1508,7 @@ def test_ruby_warning_messages end elsif ['hvac-gshp-bore-depth-autosized-high'].include? warning_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') - hpxml_bldg.site.ground_conductivity = 0.08 + hpxml_bldg.site.ground_conductivity = 0.07 elsif ['hvac-setpoint-adjustments'].include? warning_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.hvac_controls[0].heating_setpoint_temp = 76.0 From 30dcc2a2c37f94dc8cca40c6efd9784c91eed0cd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 3 Nov 2023 20:35:40 +0000 Subject: [PATCH 179/217] Latest results. --- .../base_results/results_sample_files.csv | 64 +++++++++---------- .../results_sample_files_bills.csv | 54 ++++++++-------- 2 files changed, 59 insertions(+), 59 deletions(-) diff --git a/workflow/tests/base_results/results_sample_files.csv b/workflow/tests/base_results/results_sample_files.csv index e1e27a1780..5c6e9012ad 100644 --- a/workflow/tests/base_results/results_sample_files.csv +++ b/workflow/tests/base_results/results_sample_files.csv @@ -1,9 +1,9 @@ HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Permanent Spa Heater (MBtu),End Use: Electricity: Permanent Spa Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Permanent Spa Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu),Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),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) base-appliances-coal.xml,59.712,59.712,33.233,33.233,21.613,0.0,0.0,0.0,0.0,4.866,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-portable.xml,34.697,34.697,33.413,33.413,1.285,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.045,1.936,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.589,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,1.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,1.134,0.0,31.405,6.562,0.571,0.0,0.0,0.0,0.0,2080.2,2858.1,2858.1,9.453,15.097,0.0,1.741,1.624,0.0,0.0,0.392,4.896,-4.781,0.0,0.0,0.0,1.259,-0.393,1.046,0.077,0.391,0.0,0.032,-4.64,-0.753,0.0,0.498,-0.057,0.0,0.0,0.201,2.726,17.39,0.0,0.0,0.0,1.737,-0.388,-0.348,-1.933,-0.1,0.0,0.351,9.622,1.894,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-dehumidifier-ief-whole-home.xml,34.722,34.722,33.458,33.458,1.264,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.044,1.935,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.635,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,1.264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.126,0.0,31.399,6.562,0.571,0.0,0.0,0.0,0.0,2102.6,2858.1,2858.1,9.474,15.097,0.0,1.744,1.629,0.0,0.0,0.394,4.928,-4.773,0.0,0.0,0.0,1.257,-0.398,1.053,0.072,0.394,0.0,0.031,-4.678,-0.757,0.0,0.501,-0.053,0.0,0.0,0.203,2.755,17.398,0.0,0.0,0.0,1.732,-0.393,-0.342,-1.93,-0.097,0.0,0.351,9.599,1.89,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-dehumidifier-multiple.xml,34.688,34.688,33.335,33.335,1.353,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.033,1.932,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.526,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,1.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,1.199,0.0,31.354,6.562,0.571,0.0,0.0,0.0,0.0,2086.3,2858.1,2858.1,9.538,15.097,0.0,1.75,1.63,0.0,0.0,0.392,4.89,-4.859,0.0,0.0,0.0,1.271,-0.388,1.047,0.076,0.393,0.0,0.034,-4.525,-0.76,0.0,0.513,-0.045,0.0,0.0,0.203,2.738,17.312,0.0,0.0,0.0,1.767,-0.383,-0.343,-1.922,-0.096,0.0,0.351,9.566,1.887,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-dehumidifier.xml,34.659,34.659,33.39,33.39,1.27,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.037,1.933,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.576,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,1.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.147,0.0,31.37,6.562,0.571,0.0,0.0,0.0,0.0,1974.6,2858.1,2858.1,9.518,15.097,0.0,1.762,1.642,0.0,0.0,0.395,4.939,-4.864,0.0,0.0,0.0,1.275,-0.394,1.057,0.072,0.397,0.0,0.032,-4.653,-0.764,0.0,0.522,-0.035,0.0,0.0,0.206,2.779,17.306,0.0,0.0,0.0,1.762,-0.389,-0.335,-1.93,-0.093,0.0,0.351,9.555,1.883,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier-ief-portable.xml,34.698,34.698,33.413,33.413,1.285,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.045,1.936,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.589,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,1.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,1.134,0.0,31.406,6.562,0.571,0.0,0.0,0.0,0.0,2080.2,2858.2,2858.2,9.452,15.098,0.0,1.741,1.624,0.0,0.0,0.392,4.896,-4.781,0.0,0.0,0.0,1.259,-0.393,1.046,0.077,0.391,0.0,0.032,-4.64,-0.753,0.0,0.498,-0.057,0.0,0.0,0.201,2.726,17.39,0.0,0.0,0.0,1.737,-0.388,-0.348,-1.933,-0.1,0.0,0.353,9.622,1.894,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier-ief-whole-home.xml,34.723,34.723,33.46,33.46,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.045,1.935,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.636,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,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.125,0.0,31.401,6.562,0.571,0.0,0.0,0.0,0.0,2102.6,2858.2,2858.2,9.474,15.098,0.0,1.744,1.628,0.0,0.0,0.394,4.928,-4.771,0.0,0.0,0.0,1.254,-0.399,1.052,0.072,0.394,0.0,0.031,-4.678,-0.757,0.0,0.5,-0.054,0.0,0.0,0.203,2.754,17.4,0.0,0.0,0.0,1.729,-0.394,-0.343,-1.929,-0.098,0.0,0.353,9.601,1.89,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier-multiple.xml,34.689,34.689,33.336,33.336,1.353,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.034,1.933,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.526,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,1.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,1.199,0.0,31.356,6.562,0.571,0.0,0.0,0.0,0.0,2086.3,2858.2,2858.2,9.538,15.098,0.0,1.75,1.63,0.0,0.0,0.392,4.89,-4.859,0.0,0.0,0.0,1.271,-0.388,1.047,0.076,0.393,0.0,0.034,-4.525,-0.76,0.0,0.513,-0.045,0.0,0.0,0.203,2.738,17.312,0.0,0.0,0.0,1.767,-0.383,-0.343,-1.922,-0.096,0.0,0.353,9.566,1.887,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier.xml,34.66,34.66,33.39,33.39,1.27,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.038,1.933,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.576,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,1.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.146,0.0,31.372,6.562,0.571,0.0,0.0,0.0,0.0,1974.6,2858.2,2858.2,9.517,15.098,0.0,1.762,1.642,0.0,0.0,0.395,4.938,-4.866,0.0,0.0,0.0,1.276,-0.393,1.057,0.072,0.397,0.0,0.032,-4.654,-0.764,0.0,0.523,-0.035,0.0,0.0,0.205,2.778,17.305,0.0,0.0,0.0,1.763,-0.388,-0.335,-1.929,-0.093,0.0,0.353,9.555,1.883,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 base-appliances-gas.xml,59.712,59.712,33.233,33.233,26.479,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-appliances-modified.xml,58.331,58.331,36.917,36.917,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,4.535,0.887,9.541,0.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,0.0,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.053,0.0,14.953,9.641,0.613,0.0,0.0,0.0,0.0,2160.4,3468.4,3468.4,22.968,19.347,0.0,3.567,3.65,0.514,7.552,0.632,10.119,-12.663,0.0,0.0,0.0,8.335,-0.066,5.409,0.0,0.0,0.0,4.671,-9.525,-2.496,0.0,-0.077,-0.48,-0.054,2.643,-0.03,-1.454,11.75,0.0,0.0,0.0,-6.421,-0.063,-1.323,-3.168,0.0,0.0,3.296,8.51,2.014,1354.8,1997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-appliances-none.xml,52.556,52.556,28.368,28.368,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,4.077,0.775,7.784,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,0.0,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.653,0.0,13.051,7.75,0.615,0.0,0.0,0.0,0.0,1855.8,2988.8,2988.8,23.37,18.123,0.0,3.528,3.626,0.51,7.473,0.627,10.055,-12.698,0.0,0.0,0.0,8.25,-0.062,5.397,0.0,0.0,0.0,5.202,-7.087,-2.503,0.0,-0.007,-0.425,-0.046,2.794,-0.016,-1.284,11.715,0.0,0.0,0.0,-6.167,-0.058,-1.269,-2.934,0.0,0.0,2.957,5.974,2.006,0.0,0.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -13,7 +13,7 @@ base-appliances-wood.xml,59.712,59.712,33.233,33.233,21.613,0.0,0.0,4.866,0.0,0. base-atticroof-cathedral.xml,61.415,61.415,35.795,35.795,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,4.257,0.822,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.973,0.0,13.668,9.075,0.615,0.0,0.0,0.0,0.0,2143.4,3135.9,3135.9,22.717,16.559,6.771,0.0,4.231,0.513,7.508,0.633,12.688,-15.638,0.0,0.0,0.0,8.371,-0.086,9.316,0.0,0.729,0.0,0.0,-8.932,-2.503,0.124,0.0,-0.517,-0.049,2.739,-0.02,-1.228,15.662,0.0,0.0,0.0,-6.364,-0.061,-2.102,-3.934,-0.159,0.0,0.0,7.847,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 base-atticroof-conditioned.xml,63.174,63.174,40.571,40.571,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.92,0.984,8.922,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,0.0,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.151,0.0,16.414,9.023,0.613,0.0,0.0,0.0,0.0,2374.2,3688.8,3688.8,22.528,19.803,4.57,1.168,5.569,0.52,7.699,0.639,14.497,-17.149,0.0,0.0,0.0,8.589,-0.089,7.111,0.0,0.733,0.0,0.273,-10.225,-3.182,-0.013,0.016,-0.589,-0.055,2.657,-0.033,-1.932,17.689,0.0,0.0,0.0,-6.404,-0.083,-1.707,-4.231,-0.168,0.0,0.094,8.938,2.569,1354.8,997.6,11171.6,2471.3,0.0,36000.0,24000.0,0.0,6.8,91.76,31468.0,778.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 base-atticroof-flat.xml,54.517,54.517,35.065,35.065,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.321,0.0,0.0,3.746,0.704,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.203,0.0,11.696,9.075,0.614,0.0,0.0,0.0,0.0,2104.8,2723.1,2723.1,17.648,12.83,6.045,0.0,3.619,0.509,7.464,0.625,10.031,-12.687,0.0,0.0,0.0,8.217,-0.076,4.799,0.0,0.728,0.0,0.0,-8.908,-2.5,0.291,0.0,-0.456,-0.051,2.711,-0.025,-1.387,11.721,0.0,0.0,0.0,-6.302,-0.051,-1.158,-3.067,-0.164,0.0,0.0,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,37.467,37.467,33.315,33.315,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.441,2.011,6.714,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,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.834,0.0,32.573,6.562,0.579,0.0,0.0,0.0,0.0,1910.2,3261.6,3261.6,13.531,18.842,0.0,6.126,1.575,0.0,0.0,0.335,4.353,-5.899,0.0,0.0,0.0,0.826,-0.36,0.993,0.0,0.397,0.0,0.103,-3.998,-0.844,0.0,2.403,0.135,0.0,0.0,0.203,2.884,16.272,0.0,0.0,0.0,2.056,-0.352,-0.28,-1.733,-0.052,0.0,0.372,9.165,1.803,1354.8,997.6,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,25742.0,1419.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,22158.0,61.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-atticroof-radiant-barrier.xml,37.467,37.467,33.315,33.315,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.442,2.011,6.714,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,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.834,0.0,32.575,6.562,0.579,0.0,0.0,0.0,0.0,1910.2,3261.7,3261.7,13.531,18.843,0.0,6.126,1.575,0.0,0.0,0.335,4.353,-5.899,0.0,0.0,0.0,0.826,-0.36,0.993,0.0,0.397,0.0,0.103,-3.998,-0.844,0.0,2.403,0.135,0.0,0.0,0.203,2.884,16.272,0.0,0.0,0.0,2.056,-0.352,-0.28,-1.733,-0.052,0.0,0.374,9.165,1.803,1354.8,997.6,9789.3,2412.1,0.0,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,22161.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1630.0,438.0,393.0,800.0 base-atticroof-unvented-insulated-roof.xml,57.035,57.035,35.224,35.224,21.812,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,3.847,0.723,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,20.413,0.0,11.971,9.075,0.615,0.0,0.0,0.0,0.0,2127.6,2865.7,2865.7,19.246,14.113,0.0,5.475,3.627,0.51,7.484,0.627,10.053,-12.69,0.0,0.0,0.0,8.285,-0.062,4.803,0.0,0.729,0.0,2.654,-8.912,-2.5,0.0,-1.481,-0.423,-0.046,2.812,-0.016,-1.287,11.723,0.0,0.0,0.0,-6.128,-0.053,-1.135,-2.92,-0.161,0.0,1.445,7.867,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,30482.0,4823.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1772.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-atticroof-vented.xml,57.66,57.66,35.581,35.581,22.08,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.989,0.758,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.675,0.0,12.665,9.075,0.803,0.0,0.0,0.0,0.0,2132.8,3014.3,3014.3,21.537,15.427,0.0,3.899,3.639,0.512,7.515,0.63,10.087,-12.691,0.0,0.0,0.0,8.3,-0.062,4.804,0.0,0.729,0.0,4.067,-8.579,-2.5,0.0,-0.528,-0.448,-0.05,2.73,-0.022,-1.358,11.723,0.0,0.0,0.0,-6.278,-0.058,-1.157,-3.029,-0.164,0.0,1.957,7.585,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16425.0,3714.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-battery-scheduled.xml,59.932,59.932,37.665,37.665,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,1.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -42,7 +42,7 @@ base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,26.886,26.886,26.886,26.8 base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,32.42,32.42,32.42,32.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.841,0.962,9.535,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,0.0,0.0,10.376,9.374,0.584,0.0,0.0,0.0,13.0,2065.3,3317.6,3317.6,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,27.156,27.156,27.156,27.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.577,0.962,9.535,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,0.0,0.0,10.376,9.374,0.584,0.0,0.0,0.0,13.0,1715.9,2132.5,2132.5,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-generator.xml,41.018,34.194,26.223,19.398,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,9.527,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,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1657.0,2013.3,2013.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.05,28.05,28.05,28.05,0.0,0.0,0.0,0.0,0.0,0.0,0.157,0.269,0.0,0.0,2.073,2.941,9.527,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,0.581,0.0,9.234,9.374,0.576,0.0,0.0,0.0,0.0,1719.2,1898.6,1898.6,3.449,7.709,0.0,-0.016,2.485,0.0,0.0,0.427,3.959,-2.568,0.0,0.0,-0.012,0.0,-0.392,1.285,0.0,0.682,0.0,0.0,-4.601,-0.777,0.0,-0.011,-1.098,0.0,0.0,-0.042,-1.119,5.634,0.0,0.0,-0.007,0.0,-0.382,-0.512,-1.333,-0.387,0.0,0.0,7.365,1.249,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.234,28.234,28.234,28.234,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.255,0.0,0.0,2.257,2.959,9.527,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,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,0.0,1716.7,1945.0,1945.0,3.449,7.707,0.0,-0.016,2.483,0.0,0.0,0.426,3.954,-2.567,0.0,0.0,-0.012,0.0,-0.391,1.284,0.0,0.681,0.0,0.0,-4.595,-0.776,0.0,-0.011,-1.1,0.0,0.0,-0.042,-1.124,5.636,0.0,0.0,-0.007,0.0,-0.381,-0.513,-1.333,-0.388,0.0,0.0,7.371,1.25,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,31.745,31.745,16.765,16.765,14.98,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.097,0.582,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.0,0.572,0.0,14.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.527,0.0,9.528,9.374,2.261,0.0,0.0,0.0,0.0,1022.8,1553.5,1553.5,3.498,7.734,0.0,-0.017,2.435,0.0,0.0,0.425,3.913,-2.47,0.0,0.0,-0.013,0.0,-0.418,2.024,0.0,0.0,0.0,0.0,-4.701,-0.752,0.0,-0.012,-1.157,0.0,0.0,-0.045,-1.182,5.732,0.0,0.0,-0.007,0.0,-0.407,-0.942,-1.35,0.0,0.0,0.0,7.751,1.274,1354.8,997.6,11171.8,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-laundry-room.xml,29.626,29.626,16.572,16.572,13.054,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.944,0.541,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.0,0.742,0.0,12.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,8.806,9.374,0.568,0.0,0.0,0.0,0.0,1013.8,1542.1,1542.1,3.655,7.615,0.0,-0.017,2.498,0.0,0.0,0.426,3.976,-2.663,0.0,0.0,-0.014,0.0,-0.395,2.062,0.0,0.0,0.0,0.0,-4.478,-0.8,0.0,-0.012,-1.052,0.0,0.0,-0.036,-1.051,5.54,0.0,0.0,-0.009,0.0,-0.386,-0.862,-1.313,0.0,0.0,0.0,6.883,1.227,1354.8,997.6,11171.7,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-mechvent-multiple.xml,50.713,50.713,30.664,30.664,20.049,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.808,0.312,9.565,0.0,0.0,2.026,0.0,0.206,3.727,0.946,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,0.0,7.888,0.0,0.0,0.0,0.0,12.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.308,0.0,5.088,9.374,0.615,0.0,0.0,0.0,0.0,1867.2,2269.1,2269.1,7.584,8.979,0.0,-0.017,2.791,0.0,0.0,0.407,4.196,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.34,0.0,0.0,-6.693,-1.194,0.0,-0.013,-0.143,0.0,0.0,0.06,0.126,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.698,-4.228,0.0,0.0,5.312,0.832,1354.8,997.6,11171.5,3093.4,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 @@ -59,7 +59,7 @@ base-bldgtype-sfa-unit.xml,42.293,42.293,29.882,29.882,12.411,0.0,0.0,0.0,0.0,0. base-dhw-combi-tankless-outside.xml,51.079,51.079,21.423,21.423,29.656,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.363,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.322,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.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,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,52.277,52.277,21.432,21.432,30.845,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.551,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1376.9,1017.3,1376.9,17.068,0.0,0.0,3.743,3.642,0.513,7.499,0.631,10.099,-12.691,0.0,0.0,0.0,8.145,-0.067,5.887,0.0,0.729,0.0,0.0,-8.581,-2.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,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,32.074,32.074,32.074,32.074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.285,0.756,6.757,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.246,9.074,0.661,2.908,0.0,0.0,0.0,2067.1,2830.0,2830.0,0.0,19.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.094,-0.469,-0.052,2.672,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.192,-3.046,-0.166,0.0,3.724,8.63,2.036,1354.8,997.6,11183.0,2566.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.175,37.175,37.175,37.175,0.0,0.0,0.0,0.0,0.0,0.0,5.086,0.488,0.0,0.0,2.851,0.931,6.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.763,0.0,13.964,9.073,0.613,2.942,0.0,0.0,0.0,3258.6,2327.7,3258.6,21.512,16.342,0.0,3.603,3.642,0.513,7.524,0.63,10.096,-12.683,0.0,0.0,0.0,8.308,-0.064,4.805,0.0,0.729,0.0,3.414,-8.59,-2.499,0.0,-0.008,-0.463,-0.052,2.69,-0.026,-1.403,11.73,0.0,0.0,0.0,-6.345,-0.06,-1.169,-3.129,-0.165,0.0,2.066,8.501,2.01,1354.8,997.6,11186.5,2567.0,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.426,37.426,37.426,37.426,0.0,0.0,0.0,0.0,0.0,0.0,4.999,0.475,0.0,0.0,3.18,0.96,6.536,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.713,0.0,14.0,9.074,0.613,2.953,0.0,0.0,0.0,3245.1,2373.7,3245.1,21.47,16.472,0.0,3.605,3.642,0.513,7.524,0.63,10.096,-12.683,0.0,0.0,0.0,8.307,-0.064,4.805,0.0,0.729,0.0,3.363,-8.59,-2.499,0.0,-0.01,-0.463,-0.052,2.69,-0.026,-1.403,11.73,0.0,0.0,0.0,-6.345,-0.06,-1.169,-3.129,-0.165,0.0,2.099,8.505,2.01,1354.8,997.6,11185.2,2566.7,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-hpwh.xml,56.444,56.444,29.777,29.777,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,4.523,0.886,2.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,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.972,0.0,14.956,9.085,1.81,3.029,0.0,0.0,0.0,1884.0,3184.7,3184.7,25.892,19.712,0.0,3.522,3.634,0.511,7.504,0.628,10.066,-12.724,0.0,0.0,0.0,8.331,-0.052,4.794,0.0,0.727,0.0,5.64,-5.456,-2.509,0.0,-0.021,-0.422,-0.046,2.83,-0.015,-1.277,11.689,0.0,0.0,0.0,-6.116,-0.048,-1.121,-2.946,-0.156,0.0,3.252,7.661,2.001,1354.7,997.5,11162.4,2561.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-tankless.xml,33.765,33.765,33.765,33.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.524,1.227,6.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,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.648,9.08,0.0,2.941,0.0,0.0,0.0,1932.8,3302.0,3302.0,0.0,19.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.071,-0.464,-0.051,2.687,-0.03,-1.43,11.85,0.0,0.0,0.0,-6.907,-0.064,-1.186,-3.016,-0.165,0.0,3.292,8.363,2.036,1354.8,997.6,11131.7,2554.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-var-speed.xml,31.329,31.329,31.329,31.329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.336,6.752,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.036,9.074,0.661,2.915,0.0,0.0,0.0,2067.1,2556.1,2556.1,0.0,19.549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.135,-0.469,-0.052,2.673,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.915,-0.064,-1.192,-3.049,-0.167,0.0,4.556,8.633,2.036,1354.8,997.6,11183.3,2566.2,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -139,7 +139,7 @@ base-enclosure-skylights-physical-properties.xml,60.714,60.714,37.035,37.035,23. base-enclosure-skylights-shading.xml,59.334,59.334,35.976,35.976,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.436,0.862,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.875,0.0,14.523,9.075,0.614,0.0,0.0,0.0,0.0,2115.2,3459.6,3459.6,23.651,19.386,0.0,3.538,3.64,0.512,7.524,0.63,10.088,-12.677,1.147,-0.32,0.0,8.319,-0.063,4.806,0.0,0.729,0.0,5.048,-8.906,-2.499,0.0,-0.056,-0.458,-0.051,2.705,-0.025,-1.387,11.724,-0.498,0.432,0.0,-6.325,-0.059,-1.163,-3.074,-0.165,0.0,3.237,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19514.0,5322.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-skylights-storms.xml,58.717,58.717,36.691,36.691,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.363,0.0,0.0,5.031,1.005,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.626,0.0,17.0,9.075,0.612,0.0,0.0,0.0,0.0,2127.3,3597.5,3597.5,23.618,20.821,0.0,3.568,3.663,0.516,7.583,0.634,10.138,-12.642,0.857,-1.409,0.0,8.436,-0.063,4.814,0.0,0.732,0.0,4.801,-8.885,-2.496,0.0,-0.128,-0.51,-0.059,2.585,-0.038,-1.535,11.715,0.254,2.537,0.0,-6.587,-0.059,-1.196,-3.257,-0.17,0.0,3.753,7.891,2.014,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21676.0,5364.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-skylights.xml,58.47,58.47,36.791,36.791,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,5.117,1.026,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.301,0.0,17.364,9.075,0.612,0.0,0.0,0.0,0.0,2126.9,3597.6,3597.6,23.534,20.992,0.0,3.575,3.667,0.516,7.595,0.636,10.154,-12.632,0.765,-1.651,0.0,8.463,-0.066,4.818,0.0,0.732,0.0,4.733,-8.884,-2.495,0.0,-0.141,-0.519,-0.06,2.564,-0.04,-1.554,11.716,0.258,2.975,0.0,-6.633,-0.063,-1.201,-3.288,-0.171,0.0,3.822,7.892,2.015,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21910.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,40.396,40.396,29.422,29.422,10.974,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,3.951,0.751,9.409,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,10.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.269,0.0,12.417,9.295,0.606,0.0,0.0,0.0,0.0,1718.3,2561.9,2561.9,13.17,13.022,0.0,3.945,3.838,0.0,0.0,0.691,10.079,-12.095,0.0,0.0,0.0,7.996,-0.152,2.657,0.0,0.776,0.0,0.291,-6.808,-1.452,0.0,-0.102,-0.617,0.0,0.0,-0.024,-0.74,12.161,0.0,0.0,0.0,-1.657,-0.149,-0.598,-3.044,-0.169,0.0,0.089,6.381,1.195,1354.8,997.6,11171.5,2952.8,0.0,36000.0,24000.0,0.0,6.8,91.76,28999.0,1651.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,313.0,0.0,-487.0,800.0 +base-enclosure-split-level.xml,40.398,40.398,29.42,29.42,10.978,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,3.949,0.751,9.409,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,10.978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.274,0.0,12.407,9.295,0.606,0.0,0.0,0.0,0.0,1718.3,2561.2,2561.2,13.175,13.012,0.0,3.945,3.838,0.0,0.0,0.691,10.079,-12.095,0.0,0.0,0.0,7.996,-0.152,2.657,0.0,0.776,0.0,0.295,-6.808,-1.452,0.0,-0.102,-0.617,0.0,0.0,-0.024,-0.74,12.161,0.0,0.0,0.0,-1.657,-0.149,-0.598,-3.044,-0.169,0.0,0.079,6.381,1.195,1354.8,997.6,11171.5,2952.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29034.0,1685.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,313.0,0.0,-487.0,800.0 base-enclosure-thermal-mass.xml,57.991,57.991,35.884,35.884,22.107,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.376,0.85,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.703,0.0,14.333,9.075,0.614,0.0,0.0,0.0,0.0,2110.8,3383.7,3383.7,22.901,18.772,0.0,3.557,3.642,0.513,7.508,0.63,10.116,-12.697,0.0,0.0,0.0,8.279,-0.098,4.801,0.0,0.728,0.0,4.785,-8.907,-2.499,0.0,-0.05,-0.46,-0.051,2.699,-0.026,-1.427,11.731,0.0,0.0,0.0,-6.336,-0.094,-1.175,-3.143,-0.166,0.0,3.139,7.871,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-walltypes.xml,74.885,74.885,34.582,34.582,40.303,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,3.069,0.549,9.023,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.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,37.731,0.0,9.028,9.075,0.622,0.0,0.0,0.0,0.0,2128.5,2724.8,2724.8,25.831,12.742,0.0,3.347,16.952,0.473,7.157,0.836,1.283,-1.612,0.0,0.0,0.0,7.38,-0.045,4.826,0.0,0.732,0.0,7.806,-9.155,-2.566,0.0,0.291,-0.623,-0.009,3.405,-0.085,-0.165,1.409,0.0,0.0,0.0,-4.92,-0.04,-0.965,-0.378,-0.123,0.0,1.78,7.631,1.944,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13671.0,5183.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-enclosure-windows-natural-ventilation-availability.xml,57.275,57.275,34.937,34.937,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.619,0.655,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.919,0.0,10.899,9.075,0.616,0.0,0.0,0.0,0.0,2119.4,3384.3,3384.3,23.032,18.775,0.0,3.555,3.644,0.513,7.537,0.631,10.098,-12.683,0.0,0.0,0.0,8.359,-0.06,4.806,0.0,0.729,0.0,4.848,-8.905,-2.499,0.0,0.012,-0.412,-0.044,2.862,-0.013,-1.248,11.73,0.0,0.0,0.0,-6.094,-0.057,-1.111,-7.007,-0.157,0.0,2.763,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -157,14 +157,14 @@ base-foundation-conditioned-basement-slab-insulation-full.xml,55.522,55.522,36.4 base-foundation-conditioned-basement-slab-insulation.xml,57.074,57.074,36.14,36.14,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.6,0.903,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,15.243,9.075,0.613,0.0,0.0,0.0,0.0,2123.3,3516.7,3516.7,22.76,19.966,0.0,3.584,3.664,0.516,7.833,0.635,10.15,-12.669,0.0,0.0,0.0,6.873,-0.061,4.815,0.0,0.731,0.0,4.578,-8.892,-2.496,0.0,-0.082,-0.484,-0.055,2.495,-0.032,-1.471,11.744,0.0,0.0,0.0,-5.347,-0.057,-1.182,-3.183,-0.168,0.0,3.345,7.885,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-foundation-conditioned-basement-wall-insulation.xml,56.986,56.986,35.471,35.471,21.515,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.056,0.768,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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.0,0.0,20.147,0.0,12.895,9.075,0.614,0.0,0.0,0.0,0.0,2124.2,3467.0,3467.0,23.225,18.937,0.0,3.584,3.669,0.516,6.117,0.636,10.166,-12.69,0.0,0.0,0.0,8.986,-0.065,4.827,0.0,0.734,0.0,4.708,-8.905,-2.5,0.0,-0.004,-0.423,-0.046,1.073,-0.017,-1.296,11.724,0.0,0.0,0.0,-6.519,-0.06,-1.143,-2.923,-0.162,0.0,2.994,7.872,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-foundation-conditioned-crawlspace.xml,46.897,46.897,28.896,28.896,18.001,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.591,0.668,9.21,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,18.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,16.845,0.0,11.07,9.182,0.614,0.0,0.0,0.0,0.0,1720.5,2388.8,2388.8,15.899,11.724,0.0,3.711,3.607,0.507,5.113,0.622,9.795,-12.66,0.0,0.0,0.0,10.002,-0.052,3.495,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.025,-0.473,-0.053,1.786,-0.029,-1.225,11.693,0.0,0.0,0.0,-3.856,-0.048,-0.842,-2.99,-0.164,0.0,0.0,6.308,1.18,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 -base-foundation-multiple.xml,42.395,42.395,29.715,29.715,12.68,0.0,0.0,0.0,0.0,0.0,0.0,0.209,0.0,0.0,4.349,0.845,9.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.0,12.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.87,0.0,13.997,9.126,0.692,0.0,0.0,0.0,0.0,1709.3,3117.1,3117.1,15.196,15.264,0.0,3.982,3.869,0.0,0.0,0.78,10.582,-11.178,0.0,0.0,5.303,0.0,-0.384,2.584,0.0,0.0,0.0,1.982,-4.611,-1.419,0.0,-0.151,-0.726,0.0,0.0,-0.016,-0.487,12.79,0.0,0.0,-0.709,0.0,-0.379,-0.574,-2.646,0.0,0.0,1.7,4.255,1.228,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23063.0,4774.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14342.0,288.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-slab.xml,39.613,39.613,29.284,29.284,10.328,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.0,0.0,4.015,0.768,9.201,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,10.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,9.666,0.0,12.691,9.182,0.605,0.0,0.0,0.0,0.0,1716.3,2531.1,2531.1,12.688,12.989,0.0,3.935,3.804,0.0,0.0,0.691,10.07,-12.046,0.0,0.0,0.0,7.998,-0.153,2.012,0.0,0.776,0.0,0.274,-6.772,-1.445,0.0,-0.089,-0.602,0.0,0.0,-0.03,-0.815,12.21,0.0,0.0,0.0,-1.718,-0.15,-0.472,-2.884,-0.174,0.0,0.091,6.417,1.202,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,28632.0,1649.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-above-grade.xml,43.572,43.572,29.854,29.854,13.718,0.0,0.0,0.0,0.0,0.0,0.0,0.226,0.0,0.0,4.433,0.864,9.2,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,13.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.843,0.0,14.367,9.126,0.713,0.0,0.0,0.0,0.0,1726.4,2885.8,2885.8,16.456,16.259,0.0,3.987,3.869,0.0,0.0,0.779,10.631,-11.228,0.0,0.0,5.922,0.0,-0.399,2.588,0.0,0.0,0.0,2.4,-4.628,-1.424,0.0,-0.127,-0.706,0.0,0.0,-0.012,-0.481,12.741,0.0,0.0,-0.611,0.0,-0.393,-0.561,-2.633,0.0,0.0,1.985,4.237,1.223,1354.8,997.6,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23024.0,4769.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14337.0,292.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-assembly-r.xml,40.851,40.851,29.254,29.254,11.596,0.0,0.0,0.0,0.0,0.0,0.0,0.191,0.0,0.0,3.981,0.756,9.196,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,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,0.0,10.857,0.0,12.428,9.126,0.709,0.0,0.0,0.0,0.0,1703.7,2639.6,2639.6,14.633,13.982,0.0,3.977,3.838,0.0,0.0,0.769,10.59,-11.043,0.0,0.0,4.41,0.0,-0.41,2.586,0.0,0.0,0.0,1.766,-4.584,-1.409,0.0,-0.128,-0.681,0.0,0.0,0.011,-0.459,12.925,0.0,0.0,-2.093,0.0,-0.406,-0.578,-2.55,0.0,0.0,1.163,4.282,1.238,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,20545.0,4409.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,14055.0,573.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-wall-insulation.xml,48.445,48.445,28.92,28.92,19.525,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,3.659,0.677,9.131,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,19.525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.275,0.0,11.148,9.126,0.639,0.0,0.0,0.0,0.0,1728.2,2482.4,2482.4,16.297,12.58,0.0,3.735,3.633,0.0,0.0,0.636,9.315,-12.475,0.0,0.0,14.463,0.0,-0.046,2.465,0.0,0.0,0.0,2.535,-4.772,-1.48,0.0,0.048,-0.455,0.0,0.0,-0.019,-0.477,11.493,0.0,0.0,-2.833,0.0,-0.044,-0.526,-2.444,0.0,0.0,1.35,4.093,1.167,1354.8,997.6,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23828.0,1631.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,15236.0,146.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement.xml,42.459,42.459,29.748,29.748,12.711,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.369,0.849,9.19,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,12.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,11.9,0.0,14.083,9.126,0.702,0.0,0.0,0.0,0.0,1709.7,2957.0,2957.0,15.438,15.472,0.0,3.973,3.833,0.0,0.0,0.761,10.53,-11.149,0.0,0.0,5.339,0.0,-0.393,2.583,0.0,0.0,0.0,2.081,-4.605,-1.417,0.0,-0.132,-0.685,0.0,0.0,0.003,-0.513,12.819,0.0,0.0,-0.762,0.0,-0.388,-0.574,-2.668,0.0,0.0,1.781,4.261,1.23,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23070.0,4774.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14344.0,288.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unvented-crawlspace.xml,40.345,40.345,29.845,29.845,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.173,0.0,0.0,4.386,0.857,9.298,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,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.832,0.0,14.17,9.182,0.708,0.0,0.0,0.0,0.0,1705.8,3063.8,3063.8,14.329,14.741,0.0,3.957,3.815,0.0,0.0,0.781,10.653,-10.714,0.0,0.0,4.565,0.0,-0.459,2.05,0.0,0.775,0.0,1.604,-6.202,-1.377,0.0,-0.243,-0.803,0.0,0.0,-0.001,-0.69,13.255,0.0,0.0,-2.098,0.0,-0.455,-0.49,-2.745,-0.197,0.0,1.307,6.382,1.27,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,20315.0,4137.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,14131.0,637.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace.xml,42.246,42.246,29.787,29.787,12.459,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,4.256,0.822,9.372,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,12.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,11.665,0.0,13.523,9.182,0.786,0.0,0.0,0.0,0.0,1723.9,3117.4,3117.4,15.482,15.244,0.0,3.962,3.816,0.0,0.0,0.766,10.546,-11.029,0.0,0.0,6.731,0.0,-0.434,1.848,0.0,0.782,0.0,2.013,-6.322,-1.406,0.0,-0.128,-0.69,0.0,0.0,0.01,-0.475,12.939,0.0,0.0,-3.039,0.0,-0.429,-0.394,-2.616,-0.18,0.0,1.344,6.262,1.241,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,23874.0,6877.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15434.0,1723.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-multiple.xml,42.41,42.41,29.714,29.714,12.696,0.0,0.0,0.0,0.0,0.0,0.0,0.209,0.0,0.0,4.348,0.844,9.182,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,12.696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.885,0.0,13.991,9.126,0.693,0.0,0.0,0.0,0.0,1709.3,3029.5,3029.5,15.204,15.261,0.0,3.982,3.868,0.0,0.0,0.78,10.584,-11.178,0.0,0.0,5.315,0.0,-0.386,2.585,0.0,0.0,0.0,1.988,-4.612,-1.419,0.0,-0.151,-0.726,0.0,0.0,-0.016,-0.483,12.79,0.0,0.0,-0.713,0.0,-0.381,-0.573,-2.645,0.0,0.0,1.698,4.254,1.228,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23121.0,4832.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14275.0,221.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-slab.xml,39.615,39.615,29.282,29.282,10.333,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.0,0.0,4.012,0.767,9.201,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,10.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.67,0.0,12.681,9.182,0.605,0.0,0.0,0.0,0.0,1716.3,2530.0,2530.0,12.694,12.979,0.0,3.934,3.804,0.0,0.0,0.691,10.073,-12.046,0.0,0.0,0.0,8.0,-0.153,2.012,0.0,0.776,0.0,0.278,-6.774,-1.446,0.0,-0.09,-0.602,0.0,0.0,-0.029,-0.812,12.21,0.0,0.0,0.0,-1.717,-0.151,-0.471,-2.884,-0.174,0.0,0.08,6.415,1.201,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,28667.0,1684.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-above-grade.xml,43.587,43.587,29.853,29.853,13.734,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.432,0.864,9.2,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,13.734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.858,0.0,14.362,9.126,0.713,0.0,0.0,0.0,0.0,1713.3,2885.6,2885.6,16.464,16.257,0.0,3.987,3.868,0.0,0.0,0.779,10.63,-11.228,0.0,0.0,5.935,0.0,-0.399,2.588,0.0,0.0,0.0,2.405,-4.628,-1.424,0.0,-0.127,-0.706,0.0,0.0,-0.012,-0.481,12.741,0.0,0.0,-0.615,0.0,-0.394,-0.561,-2.632,0.0,0.0,1.983,4.237,1.223,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23082.0,4827.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14270.0,225.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-assembly-r.xml,40.885,40.885,29.252,29.252,11.633,0.0,0.0,0.0,0.0,0.0,0.0,0.192,0.0,0.0,3.978,0.755,9.197,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,11.633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.892,0.0,12.414,9.126,0.71,0.0,0.0,0.0,0.0,1716.9,2639.0,2639.0,14.652,13.976,0.0,3.976,3.837,0.0,0.0,0.769,10.587,-11.043,0.0,0.0,4.441,0.0,-0.41,2.586,0.0,0.0,0.0,1.776,-4.584,-1.409,0.0,-0.127,-0.681,0.0,0.0,0.012,-0.458,12.925,0.0,0.0,-2.106,0.0,-0.406,-0.578,-2.548,0.0,0.0,1.159,4.282,1.238,1354.8,997.6,11171.6,2652.8,0.0,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,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-wall-insulation.xml,48.535,48.535,28.916,28.916,19.619,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.654,0.676,9.131,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,19.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.362,0.0,11.128,9.126,0.639,0.0,0.0,0.0,0.0,1728.2,2505.2,2505.2,16.593,12.57,0.0,3.735,3.633,0.0,0.0,0.636,9.314,-12.475,0.0,0.0,14.539,0.0,-0.046,2.466,0.0,0.0,0.0,2.55,-4.773,-1.48,0.0,0.05,-0.453,0.0,0.0,-0.018,-0.471,11.493,0.0,0.0,-2.863,0.0,-0.045,-0.525,-2.441,0.0,0.0,1.347,4.092,1.167,1354.8,997.6,11171.6,2652.8,0.0,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,15218.0,127.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement.xml,42.485,42.485,29.746,29.746,12.739,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.366,0.849,9.19,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,12.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.926,0.0,14.073,9.126,0.703,0.0,0.0,0.0,0.0,1709.8,3042.8,3042.8,15.45,15.467,0.0,3.974,3.834,0.0,0.0,0.76,10.528,-11.159,0.0,0.0,5.366,0.0,-0.39,2.583,0.0,0.0,0.0,2.089,-4.606,-1.417,0.0,-0.13,-0.683,0.0,0.0,0.003,-0.513,12.81,0.0,0.0,-0.768,0.0,-0.385,-0.574,-2.667,0.0,0.0,1.778,4.26,1.23,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23128.0,4832.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14277.0,221.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unvented-crawlspace.xml,40.345,40.345,29.845,29.845,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.173,0.0,0.0,4.386,0.857,9.298,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,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.832,0.0,14.17,9.182,0.708,0.0,0.0,0.0,0.0,1705.8,3063.8,3063.8,14.329,14.741,0.0,3.957,3.815,0.0,0.0,0.781,10.653,-10.714,0.0,0.0,4.565,0.0,-0.459,2.05,0.0,0.775,0.0,1.604,-6.202,-1.377,0.0,-0.243,-0.803,0.0,0.0,-0.001,-0.69,13.255,0.0,0.0,-2.098,0.0,-0.455,-0.49,-2.745,-0.197,0.0,1.307,6.382,1.27,1354.8,997.6,11171.5,2752.7,0.0,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace.xml,42.246,42.246,29.787,29.787,12.459,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,4.256,0.822,9.372,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,12.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,11.665,0.0,13.523,9.182,0.786,0.0,0.0,0.0,0.0,1723.9,3117.4,3117.4,15.482,15.244,0.0,3.962,3.816,0.0,0.0,0.766,10.546,-11.029,0.0,0.0,6.731,0.0,-0.434,1.848,0.0,0.782,0.0,2.013,-6.322,-1.406,0.0,-0.128,-0.69,0.0,0.0,0.01,-0.475,12.939,0.0,0.0,-3.039,0.0,-0.429,-0.394,-2.616,-0.18,0.0,1.344,6.262,1.241,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,23883.0,6887.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 base-foundation-walkout-basement.xml,64.19,64.19,36.309,36.309,27.88,0.0,0.0,0.0,0.0,0.0,0.0,0.46,0.0,0.0,4.644,0.911,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.11,0.0,15.355,9.075,0.615,0.0,0.0,0.0,0.0,2133.5,3660.3,3660.3,26.753,20.659,0.0,3.536,3.698,0.521,7.384,0.648,10.878,-12.928,0.0,0.0,0.0,10.191,-0.062,6.628,0.0,0.729,0.0,5.961,-8.927,-2.504,0.0,-0.111,-0.524,-0.061,1.459,-0.034,-1.566,12.043,0.0,0.0,0.0,-3.716,-0.057,-1.537,-3.4,-0.161,0.0,3.356,7.852,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19161.0,5335.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.806,34.806,34.806,34.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.424,1.045,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.956,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,3259.0,3259.0,0.0,16.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.023,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.021,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.611,45.611,45.611,45.611,0.0,0.0,0.0,0.0,0.0,0.0,9.472,0.974,0.263,0.015,3.519,1.076,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.368,0.279,13.341,9.075,0.614,0.0,0.0,0.0,0.0,7015.2,3291.7,7015.2,24.205,16.402,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.362,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -225,12 +225,12 @@ base-hvac-furnace-oil-only.xml,53.489,53.489,30.857,30.857,0.0,22.632,0.0,0.0,0. base-hvac-furnace-propane-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,58.439,58.439,36.861,36.861,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.21,0.973,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,16.339,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2105.4,2621.3,2621.3,16.604,11.921,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop.xml,38.955,38.955,38.955,38.955,0.0,0.0,0.0,0.0,0.0,0.0,4.844,0.455,0.0,0.0,2.498,0.865,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.326,0.0,13.241,9.075,0.614,0.0,0.0,0.0,0.0,3204.4,2512.3,3204.4,21.061,15.833,0.0,3.61,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.264,-8.906,-2.499,0.0,-0.005,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,1.97,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.907,33.907,33.907,33.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.77,0.8,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.986,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2753.0,2753.0,0.0,15.858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.026,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.054,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,39.41,39.41,39.41,39.41,0.0,0.0,0.0,0.0,0.0,0.0,5.006,0.481,0.0,0.0,2.744,0.887,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.426,0.0,13.269,9.075,0.614,0.0,0.0,0.0,0.0,3287.1,2622.0,3287.1,21.426,15.96,0.0,3.606,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.729,0.0,3.366,-8.906,-2.499,0.0,-0.006,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,1.997,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.092,36.092,36.092,36.092,0.0,0.0,0.0,0.0,0.0,0.0,5.076,0.748,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.84,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3370.8,1621.9,3370.8,22.284,0.0,0.0,3.59,3.648,0.513,7.512,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.956,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,37.04,37.04,37.04,37.04,0.0,0.0,0.0,0.0,0.0,0.0,2.756,0.259,0.0,0.0,2.816,0.921,9.011,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.854,0.0,13.865,9.075,0.609,0.0,0.0,0.0,0.0,2962.4,2642.2,2962.4,17.473,16.592,0.0,3.777,3.774,0.532,5.726,0.657,10.442,-12.583,0.0,0.0,0.0,1.936,-0.042,4.868,0.0,0.74,0.0,1.954,-8.8,-2.478,0.0,-0.092,-0.547,-0.063,0.779,-0.05,-1.683,11.83,0.0,0.0,0.0,-3.437,-0.036,-1.251,-3.28,-0.178,0.0,2.081,7.972,2.031,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.383,39.383,39.383,39.383,0.0,0.0,0.0,0.0,0.0,0.0,4.996,0.479,0.0,0.0,2.729,0.885,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.42,0.0,13.267,9.075,0.614,0.0,0.0,0.0,0.0,3282.5,2614.8,3282.5,21.401,15.95,0.0,3.606,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.729,0.0,3.36,-8.906,-2.499,0.0,-0.006,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,1.995,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,39.107,39.107,39.107,39.107,0.0,0.0,0.0,0.0,0.0,0.0,4.738,0.438,0.0,0.0,2.752,0.887,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.264,0.0,13.267,9.075,0.614,0.0,0.0,0.0,0.0,3178.9,2587.4,3178.9,20.961,15.914,0.0,3.612,3.644,0.513,7.528,0.631,10.099,-12.683,0.0,0.0,0.0,8.311,-0.064,4.807,0.0,0.729,0.0,3.201,-8.905,-2.499,0.0,-0.006,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.104,-0.166,0.0,1.995,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.148,34.148,34.148,34.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.993,0.818,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.009,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2821.6,2821.6,0.0,15.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.027,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.077,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,39.679,39.679,39.679,39.679,0.0,0.0,0.0,0.0,0.0,0.0,4.926,0.468,0.0,0.0,3.077,0.916,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.381,0.0,13.305,9.075,0.614,0.0,0.0,0.0,0.0,3275.8,2733.8,3275.8,21.393,16.107,0.0,3.608,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.32,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.032,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,35.981,35.981,35.981,35.981,0.0,0.0,0.0,0.0,0.0,0.0,4.986,0.726,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.782,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3353.6,1621.9,3353.6,22.231,0.0,0.0,3.592,3.648,0.513,7.511,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.897,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,37.297,37.297,37.297,37.297,0.0,0.0,0.0,0.0,0.0,0.0,2.694,0.249,0.0,0.0,3.119,0.948,9.011,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.814,0.0,13.896,9.075,0.609,0.0,0.0,0.0,0.0,2944.9,2729.8,2944.9,17.406,16.704,0.0,3.778,3.774,0.532,5.726,0.657,10.442,-12.583,0.0,0.0,0.0,1.936,-0.042,4.868,0.0,0.74,0.0,1.913,-8.8,-2.478,0.0,-0.093,-0.547,-0.063,0.78,-0.05,-1.683,11.83,0.0,0.0,0.0,-3.437,-0.036,-1.251,-3.28,-0.178,0.0,2.111,7.972,2.031,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.632,39.632,39.632,39.632,0.0,0.0,0.0,0.0,0.0,0.0,4.91,0.466,0.0,0.0,3.05,0.914,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.372,0.0,13.301,9.075,0.614,0.0,0.0,0.0,0.0,3268.8,2720.4,3268.8,21.358,16.091,0.0,3.608,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.31,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.029,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.691,48.691,48.691,48.691,0.0,0.0,0.0,0.0,0.0,0.0,12.144,0.674,0.562,0.018,4.281,0.72,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.795,0.579,13.89,9.075,0.614,0.0,0.0,0.0,0.0,7104.3,3548.4,7104.3,24.717,17.543,0.0,3.48,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.83,-8.906,-2.499,0.0,-0.033,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.635,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.059,44.059,44.059,44.059,0.0,0.0,0.0,0.0,0.0,0.0,9.174,0.559,0.519,0.016,2.913,0.586,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.057,0.535,14.223,9.075,0.614,0.0,0.0,0.0,0.0,7083.4,3143.0,7083.4,24.712,18.875,0.0,3.43,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,8.132,-8.906,-2.499,0.0,-0.046,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.972,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.507,43.507,43.507,43.507,0.0,0.0,0.0,0.0,0.0,0.0,9.046,0.71,0.318,0.016,2.902,0.221,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.144,0.335,15.433,9.075,0.614,0.0,0.0,0.0,0.0,7178.0,3013.9,7178.0,25.033,18.908,0.0,3.35,3.647,0.513,7.536,0.632,10.108,-12.689,0.0,0.0,0.0,8.327,-0.064,4.808,0.0,0.729,0.0,10.28,-8.908,-2.5,0.0,-0.101,-0.463,-0.052,2.687,-0.026,-1.405,11.724,0.0,0.0,0.0,-6.343,-0.06,-1.17,-3.108,-0.166,0.0,4.23,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -238,7 +238,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.169,60.169,36.72 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.612,58.612,35.173,35.173,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.934,0.665,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.787,9.075,0.614,0.0,0.0,0.0,3.0,2098.9,3154.3,3154.3,24.074,18.785,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.117,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.109,-0.166,0.0,4.568,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,57.946,57.946,34.507,34.507,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.516,0.417,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,16.445,9.075,0.614,0.0,0.0,0.0,8.0,2098.9,2840.6,2840.6,24.074,18.031,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.154,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.114,-0.166,0.0,5.274,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,54.843,54.843,30.726,30.726,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.643,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2091.6,1623.6,2091.6,25.358,0.0,0.0,3.488,3.648,0.513,7.514,0.632,10.112,-12.683,0.0,0.0,0.0,8.148,-0.067,4.809,0.0,0.73,0.0,6.844,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.375,41.375,41.375,41.375,0.0,0.0,0.0,0.0,0.0,0.0,6.467,0.49,0.0,0.0,3.285,0.84,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.415,0.0,13.815,9.075,0.614,0.0,0.0,0.0,0.0,3525.2,2793.2,3525.2,22.477,17.105,0.0,3.573,3.644,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.729,0.0,4.382,-8.906,-2.499,0.0,-0.03,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.106,-0.166,0.0,2.557,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.672,41.672,41.672,41.672,0.0,0.0,0.0,0.0,0.0,0.0,6.352,0.476,0.0,0.0,3.682,0.87,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.352,0.0,13.86,9.075,0.614,0.0,0.0,0.0,0.0,3507.6,2937.9,3507.6,22.424,17.272,0.0,3.575,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.312,-0.064,4.807,0.0,0.729,0.0,4.317,-8.905,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.106,-0.166,0.0,2.602,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.977,33.977,33.977,33.977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.473,0.168,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.745,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2665.4,2665.4,0.0,14.329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.017,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.02,-0.167,0.0,1.829,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.78,40.78,40.78,40.78,0.0,0.0,0.0,0.0,0.0,0.0,6.996,0.563,0.03,0.002,2.747,0.15,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.361,0.032,12.566,9.075,0.614,0.0,0.0,0.0,0.0,4461.3,2331.0,4461.3,19.46,14.238,0.0,3.609,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.73,0.0,3.301,-8.906,-2.499,0.0,0.02,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.103,-0.166,0.0,1.295,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,33.295,33.295,33.295,33.295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.878,0.079,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.397,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2273.8,2273.8,0.0,14.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.002,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.018,-0.167,0.0,1.467,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -252,7 +252,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.521,44.521,35.621, base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.785,47.785,35.53,35.53,0.0,12.255,0.0,0.0,0.0,0.0,3.066,0.069,0.0,0.0,2.074,0.029,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.225,7.353,11.194,9.075,0.614,0.0,0.0,2.0,0.0,2854.9,2251.5,2854.9,16.995,12.084,0.0,3.742,3.641,0.512,7.519,0.63,10.092,-12.69,0.0,0.0,0.0,8.311,-0.063,5.886,0.0,0.729,0.0,0.0,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.435,-3.05,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.708,37.708,37.708,37.708,0.0,0.0,0.0,0.0,0.0,0.0,5.053,0.096,0.0,0.0,2.239,0.028,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3515.3,2154.3,3515.3,16.439,11.921,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,37.708,37.708,37.708,37.708,0.0,0.0,0.0,0.0,0.0,0.0,5.053,0.096,0.0,0.0,2.239,0.028,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3515.3,2154.3,3515.3,16.439,11.921,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,65.845,65.845,51.733,51.733,6.997,3.518,3.597,0.0,0.0,0.0,13.403,0.841,0.196,0.008,6.424,0.569,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.964,0.204,19.533,9.075,0.614,0.0,0.0,0.0,6.0,6443.2,4017.6,6443.2,37.547,22.98,0.0,3.431,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.887,0.0,0.728,0.0,14.991,-8.914,-2.501,0.0,-0.137,-0.455,-0.051,2.715,-0.024,-1.38,11.717,0.0,0.0,0.0,-6.3,-0.058,-1.436,-3.089,-0.164,0.0,8.444,7.864,2.008,1354.8,997.6,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,36744.0,13104.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23818.0,10360.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,65.912,65.912,51.82,51.82,6.988,3.513,3.592,0.0,0.0,0.0,13.371,0.835,0.196,0.008,6.544,0.573,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.901,0.204,19.545,9.075,0.614,0.0,0.0,0.0,6.0,6439.7,4033.7,6439.7,37.521,22.75,0.0,3.432,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.887,0.0,0.728,0.0,14.926,-8.914,-2.501,0.0,-0.138,-0.455,-0.051,2.715,-0.024,-1.38,11.717,0.0,0.0,0.0,-6.3,-0.058,-1.436,-3.089,-0.164,0.0,8.456,7.864,2.008,1354.8,997.6,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,36744.0,13104.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23818.0,10360.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,19.67,19.67,19.67,19.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,4.539,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,0.0,0.0,4.497,0.33,0.0,0.0,0.0,0.0,1280.4,1085.1,1280.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,1354.8,997.6,8369.8,2062.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1252.0,0.0,452.0,800.0 base-hvac-ptac-with-heating-electricity.xml,50.851,50.851,50.851,50.851,0.0,0.0,0.0,0.0,0.0,0.0,16.19,0.0,0.0,0.0,4.369,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,5913.9,2889.3,5913.9,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-natural-gas.xml,54.899,54.899,34.661,34.661,20.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.369,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2019.7,2889.3,2889.3,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -281,15 +281,15 @@ base-lighting-mixed.xml,58.375,58.375,36.108,36.108,22.266,0.0,0.0,0.0,0.0,0.0,0 base-lighting-none-ceiling-fans.xml,56.139,56.139,31.121,31.121,25.018,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,3.983,0.752,9.017,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.0,12.694,9.075,0.614,0.0,0.0,0.0,0.0,1722.6,3224.7,3224.7,23.408,18.18,0.0,3.512,3.616,0.509,7.437,0.625,10.031,-12.718,0.0,0.0,0.0,8.185,-0.059,4.798,0.0,0.728,0.0,5.362,-8.928,0.0,0.0,-0.037,-0.463,-0.052,2.696,-0.025,-1.404,11.719,0.0,0.0,0.0,-6.311,-0.055,-1.167,-3.071,-0.168,0.0,2.857,8.374,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-lighting-none.xml,55.77,55.77,30.73,30.73,25.039,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,4.089,0.778,9.018,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,0.0,25.039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.45,0.0,13.071,9.075,0.615,0.0,0.0,0.0,0.0,1722.6,3193.0,3193.0,23.408,18.394,0.0,3.512,3.615,0.509,7.439,0.625,10.03,-12.718,0.0,0.0,0.0,8.2,-0.059,4.798,0.0,0.728,0.0,5.366,-8.928,0.0,0.0,0.002,-0.415,-0.045,2.824,-0.014,-1.261,11.719,0.0,0.0,0.0,-6.115,-0.055,-1.132,-2.911,-0.16,0.0,2.973,7.851,0.0,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-location-AMY-2012.xml,66.976,66.976,34.799,34.799,32.177,0.0,0.0,0.0,0.0,0.0,0.0,0.523,0.0,0.0,3.0,0.508,9.424,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,0.0,32.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,30.128,0.0,8.862,9.508,0.619,0.0,0.0,0.0,0.0,2145.3,2888.8,2888.8,23.49,15.96,0.0,4.266,4.384,0.623,9.837,0.807,12.591,-13.801,0.0,0.0,0.0,10.991,-0.092,5.205,0.0,0.773,0.0,7.113,-10.172,-2.863,0.0,-0.007,-0.342,-0.042,1.616,-0.044,-1.659,9.941,0.0,0.0,0.0,-7.422,-0.082,-0.883,-2.44,-0.097,0.0,2.153,6.66,1.661,1358.5,1000.6,11355.8,2605.8,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18522.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 -base-location-baltimore-md.xml,39.142,39.142,29.933,29.933,9.208,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,5.174,1.068,8.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,0.0,9.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,0.0,0.0,8.506,0.0,17.289,8.405,0.66,0.0,0.0,0.0,0.0,1684.4,2574.3,2574.3,13.608,14.218,0.0,3.492,3.345,0.0,0.0,0.722,9.055,-8.541,0.0,0.0,3.31,0.0,-0.336,2.06,0.0,0.803,0.0,1.498,-5.842,-1.3,0.0,-0.135,-0.628,0.0,0.0,-0.007,0.03,12.018,0.0,0.0,-0.954,0.0,-0.329,-0.438,-1.537,-0.211,0.0,1.593,6.742,1.348,1354.8,997.6,10815.2,2664.9,0.0,24000.0,24000.0,0.0,17.24,91.22,18296.0,4491.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,15129.0,1173.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1875.0,594.0,480.0,800.0 -base-location-capetown-zaf.xml,28.183,28.183,28.023,28.023,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,4.338,1.043,7.511,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.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,16.618,7.296,0.693,0.0,0.0,0.0,0.0,1916.8,2396.9,2396.9,4.202,12.626,0.0,1.596,1.352,0.0,0.0,0.569,4.539,-5.631,0.0,0.0,2.602,0.0,-1.072,0.757,0.0,0.326,0.0,0.023,-4.303,-0.792,0.0,-0.907,-1.638,0.0,0.0,-0.468,-0.619,17.811,0.0,0.0,-4.251,0.0,-1.071,-0.601,-2.04,-0.407,0.0,1.031,8.28,1.855,1354.8,997.6,10368.9,2554.9,0.0,24000.0,24000.0,0.0,41.0,84.38,13253.0,5426.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13721.0,2064.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,846.0,27.0,19.0,800.0 -base-location-dallas-tx.xml,34.477,34.477,32.755,32.755,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.988,1.92,6.708,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,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.589,0.0,31.099,6.562,0.573,0.0,0.0,0.0,0.0,1932.4,2858.3,2858.3,9.692,15.095,0.0,1.711,1.591,0.0,0.0,0.368,4.651,-4.907,0.0,0.0,0.0,1.212,-0.34,0.998,0.0,0.383,0.0,0.043,-3.597,-0.743,0.0,0.508,-0.048,0.0,0.0,0.188,2.608,17.264,0.0,0.0,0.0,1.812,-0.335,-0.366,-1.955,-0.099,0.0,0.35,9.56,1.904,1354.8,997.6,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20381.0,1388.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15380.0,68.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-location-duluth-mn.xml,70.562,70.562,29.751,29.751,40.81,0.0,0.0,0.0,0.0,0.0,0.0,0.434,0.0,0.0,2.39,0.361,11.435,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,40.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.978,0.0,5.779,11.397,0.832,0.0,0.0,0.0,0.0,1764.6,2463.9,2463.9,26.428,11.644,0.0,7.032,7.03,0.0,0.0,1.592,19.667,-13.103,0.0,0.0,9.943,0.0,-0.366,6.402,0.0,0.0,0.0,7.538,-6.247,-1.915,0.0,-0.474,-0.829,0.0,0.0,-0.101,-0.954,8.135,0.0,0.0,-1.619,0.0,-0.366,-0.533,-1.023,0.0,0.0,0.367,2.618,0.732,1354.8,997.6,11924.5,2831.6,0.0,36000.0,24000.0,0.0,-13.72,81.14,31136.0,6137.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11767.0,274.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1210.0,246.0,164.0,800.0 +base-location-baltimore-md.xml,39.142,39.142,29.933,29.933,9.208,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,5.174,1.068,8.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,0.0,9.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,0.0,0.0,8.506,0.0,17.289,8.405,0.66,0.0,0.0,0.0,0.0,1684.4,2574.3,2574.3,13.608,14.218,0.0,3.492,3.345,0.0,0.0,0.722,9.055,-8.541,0.0,0.0,3.31,0.0,-0.336,2.06,0.0,0.803,0.0,1.498,-5.842,-1.3,0.0,-0.135,-0.628,0.0,0.0,-0.007,0.03,12.018,0.0,0.0,-0.954,0.0,-0.329,-0.438,-1.537,-0.211,0.0,1.593,6.742,1.348,1354.8,997.6,10815.2,2664.9,0.0,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,15107.0,1152.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1875.0,594.0,480.0,800.0 +base-location-capetown-zaf.xml,28.183,28.183,28.023,28.023,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,4.338,1.043,7.511,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.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,16.618,7.296,0.693,0.0,0.0,0.0,0.0,1916.8,2396.9,2396.9,4.202,12.626,0.0,1.596,1.352,0.0,0.0,0.569,4.539,-5.631,0.0,0.0,2.602,0.0,-1.072,0.757,0.0,0.326,0.0,0.023,-4.303,-0.792,0.0,-0.907,-1.638,0.0,0.0,-0.468,-0.619,17.811,0.0,0.0,-4.251,0.0,-1.071,-0.601,-2.04,-0.407,0.0,1.031,8.28,1.855,1354.8,997.6,10368.9,2554.9,0.0,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,13719.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,846.0,27.0,19.0,800.0 +base-location-dallas-tx.xml,34.478,34.478,32.756,32.756,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.988,1.921,6.708,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,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.588,0.0,31.101,6.562,0.573,0.0,0.0,0.0,0.0,1932.4,2858.4,2858.4,9.692,15.096,0.0,1.711,1.591,0.0,0.0,0.368,4.651,-4.907,0.0,0.0,0.0,1.212,-0.34,0.998,0.0,0.383,0.0,0.043,-3.597,-0.743,0.0,0.508,-0.048,0.0,0.0,0.188,2.608,17.264,0.0,0.0,0.0,1.812,-0.335,-0.366,-1.955,-0.099,0.0,0.352,9.56,1.904,1354.8,997.6,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-location-duluth-mn.xml,70.644,70.644,29.75,29.75,40.894,0.0,0.0,0.0,0.0,0.0,0.0,0.435,0.0,0.0,2.387,0.36,11.437,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,40.894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,5.767,11.397,0.833,0.0,0.0,0.0,0.0,1752.4,2463.1,2463.1,26.512,11.636,0.0,7.03,7.028,0.0,0.0,1.592,19.664,-13.103,0.0,0.0,9.994,0.0,-0.367,6.402,0.0,0.0,0.0,7.573,-6.247,-1.915,0.0,-0.474,-0.828,0.0,0.0,-0.101,-0.953,8.135,0.0,0.0,-1.63,0.0,-0.366,-0.533,-1.022,0.0,0.0,0.365,2.618,0.732,1354.8,997.6,11924.5,2831.6,0.0,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,11642.0,148.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1210.0,246.0,164.0,800.0 base-location-helena-mt.xml,77.775,77.775,35.31,35.31,42.465,0.0,0.0,0.0,0.0,0.0,0.0,1.04,0.0,0.0,2.442,0.387,10.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,0.0,42.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.108,0.0,6.492,10.298,0.625,0.0,0.0,0.0,0.0,2236.8,3031.4,3031.4,30.328,14.971,0.0,5.359,5.464,0.773,11.523,1.049,15.462,-15.392,0.0,0.0,0.0,13.841,-0.19,7.82,0.0,1.206,0.0,8.245,-12.135,-3.367,0.0,0.002,-0.26,-0.028,1.289,0.008,-0.496,8.386,0.0,0.0,0.0,-6.087,-0.184,-0.686,-2.363,-0.123,0.0,1.356,4.654,1.142,1354.8,997.6,11614.9,2665.3,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17992.0,5113.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,81.0,0.0,-719.0,800.0 -base-location-honolulu-hi.xml,35.926,35.926,35.926,35.926,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.054,2.996,4.745,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,0.0,48.75,4.497,0.55,0.0,0.0,0.0,0.0,2121.9,2146.1,2334.7,0.0,13.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.238,0.753,0.0,0.0,0.303,5.283,20.458,0.0,0.0,0.0,6.02,-0.004,-0.044,-1.672,0.062,0.0,0.706,13.134,2.647,1354.8,997.6,8369.7,2062.3,0.0,12000.0,24000.0,0.0,63.32,89.06,3432.0,606.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,12993.0,-9.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1831.0,580.0,452.0,800.0 -base-location-miami-fl.xml,35.082,35.082,35.082,35.082,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.285,2.792,4.875,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,0.0,45.284,4.634,0.551,0.0,0.0,0.0,0.0,2098.4,2422.1,2422.1,0.0,13.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,1.018,0.586,0.0,0.0,0.307,4.475,19.646,0.0,0.0,0.0,5.54,-0.004,-0.213,-2.328,-0.004,0.0,0.653,13.135,2.647,1354.8,997.6,8452.7,2082.8,0.0,12000.0,24000.0,0.0,51.62,90.68,8634.0,810.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,646.0,13278.0,-259.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2519.0,954.0,765.0,800.0 -base-location-phoenix-az.xml,38.779,38.779,38.778,38.778,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.529,3.014,5.104,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.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,0.0,53.038,4.873,0.556,0.0,0.0,0.0,0.0,2458.6,3351.3,3351.3,0.564,18.406,0.0,0.703,0.517,0.0,0.0,0.205,2.241,-1.843,0.0,0.0,0.0,-0.075,-0.467,0.365,0.0,0.122,0.0,-0.0,-1.611,-0.274,0.0,1.761,1.4,0.0,0.0,0.802,6.859,24.223,0.0,0.0,0.0,7.006,-0.479,0.01,-3.136,0.116,0.0,0.92,11.529,2.373,1354.8,997.6,8260.4,2035.4,0.0,24000.0,24000.0,0.0,41.36,108.14,13297.0,1076.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1035.0,18550.0,658.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 -base-location-portland-or.xml,37.155,37.155,27.618,27.618,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,2.946,0.564,8.939,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,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,9.043,8.727,0.78,0.0,0.0,0.0,0.0,1685.4,2715.8,2715.8,8.448,14.135,0.0,3.436,3.276,0.0,0.0,0.748,8.757,-8.143,0.0,0.0,6.216,0.0,-0.442,1.469,0.0,0.81,0.0,1.633,-7.49,-1.648,0.0,-0.327,-0.797,0.0,0.0,-0.01,-0.756,10.358,0.0,0.0,-2.964,0.0,-0.439,-0.366,-1.84,-0.257,0.0,0.567,5.094,0.999,1354.8,997.6,11014.7,2714.0,0.0,24000.0,24000.0,0.0,28.58,87.08,17543.0,6253.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,15209.0,2155.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 +base-location-honolulu-hi.xml,35.935,35.935,35.935,35.935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.061,2.998,4.745,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,0.0,48.787,4.497,0.55,0.0,0.0,0.0,0.0,2122.6,2146.7,2335.5,0.0,13.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.238,0.753,0.0,0.0,0.303,5.283,20.458,0.0,0.0,0.0,6.02,-0.004,-0.044,-1.672,0.062,0.0,0.743,13.134,2.647,1354.8,997.6,8369.7,2062.3,0.0,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,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1831.0,580.0,452.0,800.0 +base-location-miami-fl.xml,35.09,35.09,35.09,35.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.291,2.793,4.875,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,0.0,45.316,4.634,0.551,0.0,0.0,0.0,0.0,2099.0,2422.8,2422.8,0.0,13.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,0.0,0.0,1.018,0.586,0.0,0.0,0.307,4.475,19.646,0.0,0.0,0.0,5.54,-0.004,-0.213,-2.328,-0.004,0.0,0.686,13.135,2.647,1354.8,997.6,8452.7,2082.8,0.0,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,13318.0,-220.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2519.0,954.0,765.0,800.0 +base-location-phoenix-az.xml,38.788,38.788,38.788,38.788,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.537,3.015,5.104,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.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,0.0,53.071,4.873,0.556,0.0,0.0,0.0,0.0,2459.3,3352.6,3352.6,0.564,18.418,0.0,0.703,0.517,0.0,0.0,0.205,2.241,-1.843,0.0,0.0,0.0,-0.075,-0.467,0.365,0.0,0.122,0.0,-0.0,-1.611,-0.274,0.0,1.761,1.4,0.0,0.0,0.802,6.859,24.223,0.0,0.0,0.0,7.006,-0.479,0.01,-3.136,0.116,0.0,0.952,11.529,2.373,1354.8,997.6,8260.4,2035.4,0.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,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 +base-location-portland-or.xml,37.155,37.155,27.618,27.618,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,2.946,0.564,8.939,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,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,9.043,8.727,0.78,0.0,0.0,0.0,0.0,1685.4,2715.8,2715.8,8.448,14.135,0.0,3.436,3.276,0.0,0.0,0.748,8.757,-8.143,0.0,0.0,6.216,0.0,-0.442,1.469,0.0,0.81,0.0,1.633,-7.49,-1.648,0.0,-0.327,-0.797,0.0,0.0,-0.01,-0.756,10.358,0.0,0.0,-2.964,0.0,-0.439,-0.366,-1.84,-0.257,0.0,0.567,5.094,0.999,1354.8,997.6,11014.7,2714.0,0.0,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,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 base-mechvent-balanced.xml,79.552,79.552,37.764,37.764,41.788,0.0,0.0,0.0,0.0,0.0,0.0,0.689,0.0,0.0,4.192,0.791,9.022,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,0.0,41.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.138,0.0,13.265,9.075,0.62,0.0,0.0,0.0,2.0,2207.2,3818.5,3818.5,32.383,20.91,0.0,3.502,3.716,0.523,7.451,0.654,10.375,-12.838,0.0,0.0,0.0,8.166,-0.114,5.497,0.0,15.075,0.0,8.573,-9.173,-2.568,0.0,0.144,-0.259,-0.023,3.003,0.031,-0.717,11.576,0.0,0.0,0.0,-5.946,-0.11,-1.02,-2.551,-3.554,0.0,3.224,7.611,1.941,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5342.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 base-mechvent-bath-kitchen-fans.xml,59.975,59.975,36.023,36.023,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.376,0.847,9.016,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,0.0,23.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,22.43,0.0,14.266,9.075,0.614,0.0,0.0,0.0,0.0,2158.0,3615.5,3615.5,24.906,20.551,0.0,3.547,3.643,0.513,7.527,0.631,10.093,-12.692,0.0,0.0,0.0,8.326,-0.059,4.321,0.0,2.474,0.0,5.168,-8.912,-2.501,0.0,-0.042,-0.451,-0.05,2.727,-0.023,-1.37,11.721,0.0,0.0,0.0,-6.275,-0.056,-1.046,-3.038,-0.687,0.0,3.188,7.867,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-mechvent-cfis-airflow-fraction-zero.xml,72.901,72.901,37.671,37.671,35.231,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,0.0,4.282,0.816,9.02,0.0,0.0,4.51,0.0,0.334,1.695,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.997,0.0,13.701,9.075,0.618,0.0,0.0,0.0,0.0,2174.2,3597.8,3597.8,29.389,20.853,0.0,3.484,3.659,0.515,7.505,0.637,10.165,-12.749,0.0,0.0,0.0,8.338,-0.07,1.505,0.0,13.86,0.0,7.362,-9.0,-2.522,0.0,0.036,-0.367,-0.038,2.917,0.001,-1.081,11.664,0.0,0.0,0.0,-5.978,-0.066,-0.256,-2.751,-3.283,0.0,3.25,7.782,1.988,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_sample_files_bills.csv b/workflow/tests/base_results/results_sample_files_bills.csv index 331644567a..ed06eb2900 100644 --- a/workflow/tests/base_results/results_sample_files_bills.csv +++ b/workflow/tests/base_results/results_sample_files_bills.csv @@ -1,9 +1,9 @@ HPXML,Bills: Total (USD),Bills: Electricity: Fixed (USD),Bills: Electricity: Energy (USD),Bills: Electricity: PV Credit (USD),Bills: Electricity: Total (USD),Bills: Natural Gas: Fixed (USD),Bills: Natural Gas: Energy (USD),Bills: Natural Gas: Total (USD),Bills: Fuel Oil: Fixed (USD),Bills: Fuel Oil: Energy (USD),Bills: Fuel Oil: Total (USD),Bills: Propane: Fixed (USD),Bills: Propane: Energy (USD),Bills: Propane: Total (USD),Bills: Wood Cord: Fixed (USD),Bills: Wood Cord: Energy (USD),Bills: Wood Cord: Total (USD),Bills: Wood Pellets: Fixed (USD),Bills: Wood Pellets: Energy (USD),Bills: Wood Pellets: Total (USD),Bills: Coal: Fixed (USD),Bills: Coal: Energy (USD),Bills: Coal: Total (USD),Tiered: Total (USD),Tiered: Electricity: Fixed (USD),Tiered: Electricity: Energy (USD),Tiered: Electricity: PV Credit (USD),Tiered: Electricity: Total (USD),Tiered: Natural Gas: Fixed (USD),Tiered: Natural Gas: Energy (USD),Tiered: Natural Gas: Total (USD),Tiered: Fuel Oil: Fixed (USD),Tiered: Fuel Oil: Energy (USD),Tiered: Fuel Oil: Total (USD),Tiered: Propane: Fixed (USD),Tiered: Propane: Energy (USD),Tiered: Propane: Total (USD),Tiered: Wood Cord: Fixed (USD),Tiered: Wood Cord: Energy (USD),Tiered: Wood Cord: Total (USD),Tiered: Wood Pellets: Fixed (USD),Tiered: Wood Pellets: Energy (USD),Tiered: Wood Pellets: Total (USD),Tiered: Coal: Fixed (USD),Tiered: Coal: Energy (USD),Tiered: Coal: Total (USD),TOU: Total (USD),TOU: Electricity: Fixed (USD),TOU: Electricity: Energy (USD),TOU: Electricity: PV Credit (USD),TOU: Electricity: Total (USD),TOU: Natural Gas: Fixed (USD),TOU: Natural Gas: Energy (USD),TOU: Natural Gas: Total (USD),TOU: Fuel Oil: Fixed (USD),TOU: Fuel Oil: Energy (USD),TOU: Fuel Oil: Total (USD),TOU: Propane: Fixed (USD),TOU: Propane: Energy (USD),TOU: Propane: Total (USD),TOU: Wood Cord: Fixed (USD),TOU: Wood Cord: Energy (USD),TOU: Wood Cord: Total (USD),TOU: Wood Pellets: Fixed (USD),TOU: Wood Pellets: Energy (USD),TOU: Wood Pellets: Total (USD),TOU: Coal: Fixed (USD),TOU: Coal: Energy (USD),TOU: Coal: Total (USD),Tiered and TOU: Total (USD),Tiered and TOU: Electricity: Fixed (USD),Tiered and TOU: Electricity: Energy (USD),Tiered and TOU: Electricity: PV Credit (USD),Tiered and TOU: Electricity: Total (USD),Tiered and TOU: Natural Gas: Fixed (USD),Tiered and TOU: Natural Gas: Energy (USD),Tiered and TOU: Natural Gas: Total (USD),Tiered and TOU: Fuel Oil: Fixed (USD),Tiered and TOU: Fuel Oil: Energy (USD),Tiered and TOU: Fuel Oil: Total (USD),Tiered and TOU: Propane: Fixed (USD),Tiered and TOU: Propane: Energy (USD),Tiered and TOU: Propane: Total (USD),Tiered and TOU: Wood Cord: Fixed (USD),Tiered and TOU: Wood Cord: Energy (USD),Tiered and TOU: Wood Cord: Total (USD),Tiered and TOU: Wood Pellets: Fixed (USD),Tiered and TOU: Wood Pellets: Energy (USD),Tiered and TOU: Wood Pellets: Total (USD),Tiered and TOU: Coal: Fixed (USD),Tiered and TOU: Coal: Energy (USD),Tiered and TOU: Coal: Total (USD),Real-Time Pricing: Total (USD),Real-Time Pricing: Electricity: Fixed (USD),Real-Time Pricing: Electricity: Energy (USD),Real-Time Pricing: Electricity: PV Credit (USD),Real-Time Pricing: Electricity: Total (USD),Real-Time Pricing: Natural Gas: Fixed (USD),Real-Time Pricing: Natural Gas: Energy (USD),Real-Time Pricing: Natural Gas: Total (USD),Real-Time Pricing: Fuel Oil: Fixed (USD),Real-Time Pricing: Fuel Oil: Energy (USD),Real-Time Pricing: Fuel Oil: Total (USD),Real-Time Pricing: Propane: Fixed (USD),Real-Time Pricing: Propane: Energy (USD),Real-Time Pricing: Propane: Total (USD),Real-Time Pricing: Wood Cord: Fixed (USD),Real-Time Pricing: Wood Cord: Energy (USD),Real-Time Pricing: Wood Cord: Total (USD),Real-Time Pricing: Wood Pellets: Fixed (USD),Real-Time Pricing: Wood Pellets: Energy (USD),Real-Time Pricing: Wood Pellets: Total (USD),Real-Time Pricing: Coal: Fixed (USD),Real-Time Pricing: Coal: Energy (USD),Real-Time Pricing: Coal: Total (USD),Simple: Total (USD),Simple: Electricity: Fixed (USD),Simple: Electricity: Energy (USD),Simple: Electricity: PV Credit (USD),Simple: Electricity: Total (USD),Simple: Natural Gas: Fixed (USD),Simple: Natural Gas: Energy (USD),Simple: Natural Gas: Total (USD),Simple: Fuel Oil: Fixed (USD),Simple: Fuel Oil: Energy (USD),Simple: Fuel Oil: Total (USD),Simple: Propane: Fixed (USD),Simple: Propane: Energy (USD),Simple: Propane: Total (USD),Simple: Wood Cord: Fixed (USD),Simple: Wood Cord: Energy (USD),Simple: Wood Cord: Total (USD),Simple: Wood Pellets: Fixed (USD),Simple: Wood Pellets: Energy (USD),Simple: Wood Pellets: Total (USD),Simple: Coal: Fixed (USD),Simple: Coal: Energy (USD),Simple: Coal: Total (USD),Detailed: Total (USD),Detailed: Electricity: Fixed (USD),Detailed: Electricity: Energy (USD),Detailed: Electricity: PV Credit (USD),Detailed: Electricity: Total (USD),Detailed: Natural Gas: Fixed (USD),Detailed: Natural Gas: Energy (USD),Detailed: Natural Gas: Total (USD),Detailed: Fuel Oil: Fixed (USD),Detailed: Fuel Oil: Energy (USD),Detailed: Fuel Oil: Total (USD),Detailed: Propane: Fixed (USD),Detailed: Propane: Energy (USD),Detailed: Propane: Total (USD),Detailed: Wood Cord: Fixed (USD),Detailed: Wood Cord: Energy (USD),Detailed: Wood Cord: Total (USD),Detailed: Wood Pellets: Fixed (USD),Detailed: Wood Pellets: Energy (USD),Detailed: Wood Pellets: Total (USD),Detailed: Coal: Fixed (USD),Detailed: Coal: Energy (USD),Detailed: Coal: 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: Energy (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: Energy (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Total (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Wholesale Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Wholesale Excess Rate: Propane: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Propane: Energy (USD),Net Metering w/ Wholesale Excess Rate: Propane: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Cord: Total (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Wholesale Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Wholesale Excess Rate: Coal: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Coal: Energy (USD),Net Metering w/ Wholesale Excess Rate: Coal: 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: Energy (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: Energy (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Total (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Fixed (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Energy (USD),Net Metering w/ Retail Excess Rate: Fuel Oil: Total (USD),Net Metering w/ Retail Excess Rate: Propane: Fixed (USD),Net Metering w/ Retail Excess Rate: Propane: Energy (USD),Net Metering w/ Retail Excess Rate: Propane: Total (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Cord: Total (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Fixed (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Energy (USD),Net Metering w/ Retail Excess Rate: Wood Pellets: Total (USD),Net Metering w/ Retail Excess Rate: Coal: Fixed (USD),Net Metering w/ Retail Excess Rate: Coal: Energy (USD),Net Metering w/ Retail Excess Rate: Coal: Total (USD),Feed-In Tariff: Total (USD),Feed-In Tariff: Electricity: Fixed (USD),Feed-In Tariff: Electricity: Energy (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: Energy (USD),Feed-In Tariff: Natural Gas: Total (USD),Feed-In Tariff: Fuel Oil: Fixed (USD),Feed-In Tariff: Fuel Oil: Energy (USD),Feed-In Tariff: Fuel Oil: Total (USD),Feed-In Tariff: Propane: Fixed (USD),Feed-In Tariff: Propane: Energy (USD),Feed-In Tariff: Propane: Total (USD),Feed-In Tariff: Wood Cord: Fixed (USD),Feed-In Tariff: Wood Cord: Energy (USD),Feed-In Tariff: Wood Cord: Total (USD),Feed-In Tariff: Wood Pellets: Fixed (USD),Feed-In Tariff: Wood Pellets: Energy (USD),Feed-In Tariff: Wood Pellets: Total (USD),Feed-In Tariff: Coal: Fixed (USD),Feed-In Tariff: Coal: Energy (USD),Feed-In Tariff: Coal: Total (USD) base-appliances-coal.xml,1809.62,144.0,1219.68,0.0,1363.68,144.0,228.95,372.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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1524.19,144.0,1222.87,0.0,1366.87,144.0,13.32,157.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier-ief-whole-home.xml,1525.62,144.0,1224.52,0.0,1368.52,144.0,13.1,157.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier-multiple.xml,1522.05,144.0,1220.03,0.0,1364.03,144.0,14.02,158.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-dehumidifier.xml,1523.18,144.0,1222.02,0.0,1366.02,144.0,13.16,157.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier-ief-portable.xml,1524.19,144.0,1222.88,0.0,1366.88,144.0,13.31,157.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier-ief-whole-home.xml,1525.68,144.0,1224.59,0.0,1368.59,144.0,13.09,157.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier-multiple.xml,1522.07,144.0,1220.05,0.0,1364.05,144.0,14.02,158.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-dehumidifier.xml,1523.21,144.0,1222.05,0.0,1366.05,144.0,13.16,157.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-appliances-gas.xml,1788.18,144.0,1219.68,0.0,1363.68,144.0,280.5,424.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-appliances-modified.xml,1869.73,144.0,1354.89,0.0,1498.89,144.0,226.84,370.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-appliances-none.xml,1585.34,144.0,1041.11,0.0,1185.11,144.0,256.23,400.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -13,7 +13,7 @@ base-appliances-wood.xml,1809.62,144.0,1219.68,0.0,1363.68,144.0,228.95,372.95,0 base-atticroof-cathedral.xml,1873.1,144.0,1313.7,0.0,1457.7,144.0,271.4,415.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-atticroof-conditioned.xml,2016.42,144.0,1488.98,0.0,1632.98,144.0,239.44,383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-atticroof-flat.xml,1780.97,144.0,1286.91,0.0,1430.91,144.0,206.06,350.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-atticroof-radiant-barrier.xml,1550.31,144.0,1219.28,0.0,1363.28,144.0,43.03,187.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-atticroof-radiant-barrier.xml,1550.33,144.0,1219.3,0.0,1363.3,144.0,43.03,187.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-atticroof-unvented-insulated-roof.xml,1811.78,144.0,1292.72,0.0,1436.72,144.0,231.06,375.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-atticroof-vented.xml,1827.72,144.0,1305.82,0.0,1449.82,144.0,233.9,377.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-battery-scheduled.xml,1905.42,144.0,1381.55,0.0,1525.55,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -42,7 +42,7 @@ base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,1130.72,144.0,986.72,0.0, base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1333.84,144.0,1189.84,0.0,1333.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,1140.64,144.0,996.64,0.0,1140.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-mf-unit-shared-generator.xml,1641.6,144.0,962.39,0.0,1106.39,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1173.46,144.0,1029.46,0.0,1173.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1180.22,144.0,1036.22,0.0,1180.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1061.97,144.0,615.28,0.0,759.28,144.0,158.69,302.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-mf-unit-shared-laundry-room.xml,1034.48,144.0,608.19,0.0,752.19,144.0,138.29,282.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1625.79,144.0,1125.4,0.0,1269.4,144.0,212.39,356.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -59,7 +59,7 @@ base-bldgtype-sfa-unit.xml,1516.14,144.0,1096.67,0.0,1240.67,144.0,131.47,275.47 base-dhw-combi-tankless-outside.xml,1388.39,144.0,786.23,0.0,930.23,144.0,314.16,458.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-combi-tankless.xml,1401.33,144.0,786.58,0.0,930.58,144.0,326.75,470.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-2-speed.xml,1321.11,144.0,1177.11,0.0,1321.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1508.35,144.0,1364.35,0.0,1508.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-gshp.xml,1517.54,144.0,1373.54,0.0,1517.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-hpwh.xml,1663.33,144.0,1092.84,0.0,1236.84,144.0,282.49,426.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-desuperheater-tankless.xml,1383.2,144.0,1239.2,0.0,1383.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1293.79,144.0,1149.79,0.0,1293.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -139,7 +139,7 @@ base-enclosure-skylights-physical-properties.xml,1898.04,144.0,1359.2,0.0,1503.2 base-enclosure-skylights-shading.xml,1855.76,144.0,1320.32,0.0,1464.32,144.0,247.44,391.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-skylights-storms.xml,1867.9,144.0,1346.57,0.0,1490.57,144.0,233.33,377.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1867.9,144.0,1350.25,0.0,1494.25,144.0,229.65,373.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-split-level.xml,1484.06,144.0,1079.81,0.0,1223.81,144.0,116.25,260.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-split-level.xml,1484.02,144.0,1079.72,0.0,1223.72,144.0,116.3,260.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-thermal-mass.xml,1839.13,144.0,1316.94,0.0,1460.94,144.0,234.19,378.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-walltypes.xml,1984.11,144.0,1269.16,0.0,1413.16,144.0,426.95,570.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-enclosure-windows-natural-ventilation-availability.xml,1806.84,144.0,1282.21,0.0,1426.21,144.0,236.63,380.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -157,12 +157,12 @@ base-foundation-conditioned-basement-slab-insulation-full.xml,1828.38,144.0,1338 base-foundation-conditioned-basement-slab-insulation.xml,1836.12,144.0,1326.36,0.0,1470.36,144.0,221.76,365.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-conditioned-basement-wall-insulation.xml,1817.72,144.0,1301.81,0.0,1445.81,144.0,227.91,371.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-conditioned-crawlspace.xml,1539.17,144.0,1060.48,0.0,1204.48,144.0,190.69,334.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-multiple.xml,1512.88,144.0,1090.56,0.0,1234.56,144.0,134.32,278.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-slab.xml,1472.16,144.0,1074.75,0.0,1218.75,144.0,109.41,253.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement-above-grade.xml,1528.98,144.0,1095.66,0.0,1239.66,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1484.49,144.0,1073.65,0.0,1217.65,144.0,122.84,266.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement-wall-insulation.xml,1556.2,144.0,1061.36,0.0,1205.36,144.0,206.84,350.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-foundation-unconditioned-basement.xml,1514.42,144.0,1091.77,0.0,1235.77,144.0,134.65,278.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-multiple.xml,1513.02,144.0,1090.53,0.0,1234.53,144.0,134.49,278.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-slab.xml,1472.12,144.0,1074.66,0.0,1218.66,144.0,109.46,253.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1529.12,144.0,1095.63,0.0,1239.63,144.0,145.49,289.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement-assembly-r.xml,1484.79,144.0,1073.55,0.0,1217.55,144.0,123.24,267.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement-wall-insulation.xml,1557.04,144.0,1061.21,0.0,1205.21,144.0,207.83,351.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-foundation-unconditioned-basement.xml,1514.65,144.0,1091.7,0.0,1235.7,144.0,134.95,278.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-unvented-crawlspace.xml,1494.55,144.0,1095.32,0.0,1239.32,144.0,111.23,255.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-vented-crawlspace.xml,1513.18,144.0,1093.2,0.0,1237.2,144.0,131.98,275.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-foundation-walkout-basement.xml,1915.91,144.0,1332.56,0.0,1476.56,144.0,295.35,439.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -225,12 +225,12 @@ base-hvac-furnace-oil-only.xml,2068.01,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1890.8,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,614.34,614.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-wood-only.xml,1615.94,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.48,339.48,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-geothermal-loop.xml,1573.65,144.0,1429.65,0.0,1573.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1388.4,144.0,1244.4,0.0,1388.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1590.36,144.0,1446.36,0.0,1590.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1468.59,144.0,1324.59,0.0,1468.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,1503.4,144.0,1359.4,0.0,1503.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1589.36,144.0,1445.36,0.0,1589.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-geothermal-loop.xml,1579.24,144.0,1435.24,0.0,1579.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1397.25,144.0,1253.25,0.0,1397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1600.24,144.0,1456.24,0.0,1600.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1464.52,144.0,1320.52,0.0,1464.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,1512.83,144.0,1368.83,0.0,1512.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ground-to-air-heat-pump.xml,1598.51,144.0,1454.51,0.0,1598.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1930.98,144.0,1786.98,0.0,1930.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1761.0,144.0,1617.0,0.0,1761.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1740.72,144.0,1596.72,0.0,1740.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -238,7 +238,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1884.28,144.0,1347. base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1827.16,144.0,1290.86,0.0,1434.86,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1802.71,144.0,1266.41,0.0,1410.41,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-furnace-gas-only.xml,1671.13,144.0,1127.65,0.0,1271.65,144.0,255.48,399.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,1662.49,144.0,1518.49,0.0,1662.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1673.37,144.0,1529.37,0.0,1673.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1390.98,144.0,1246.98,0.0,1390.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1640.65,144.0,1496.65,0.0,1640.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1365.93,144.0,1221.93,0.0,1365.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -252,7 +252,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1689.58,144.0,1307.29 base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1876.57,144.0,1303.96,0.0,1447.96,0.0,0.0,0.0,0.0,428.61,428.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1527.9,144.0,1383.9,0.0,1527.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1527.9,144.0,1383.9,0.0,1527.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2481.42,144.0,1898.62,0.0,2042.62,144.0,74.12,218.12,0.0,123.05,123.05,0.0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2484.2,144.0,1901.8,0.0,2045.8,144.0,74.03,218.03,0.0,122.88,122.88,0.0,97.49,97.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-none.xml,2513.83,144.0,2369.83,0.0,2513.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-electricity.xml,2010.26,144.0,1866.26,0.0,2010.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-hvac-ptac-with-heating-natural-gas.xml,1774.46,144.0,1272.07,0.0,1416.07,144.0,214.39,358.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 @@ -283,12 +283,12 @@ base-lighting-none.xml,1681.07,144.0,1127.82,0.0,1271.82,144.0,265.25,409.25,0.0 base-location-AMY-2012.xml,1905.99,144.0,1277.13,0.0,1421.13,144.0,340.86,484.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-location-baltimore-md.xml,1591.6,144.0,1171.49,0.0,1315.49,144.0,132.11,276.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-location-capetown-zaf.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-dallas-tx.xml,1504.65,144.0,1198.8,0.0,1342.8,144.0,17.85,161.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-duluth-mn.xml,1702.38,144.0,1106.57,0.0,1250.57,144.0,307.81,451.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-dallas-tx.xml,1504.67,144.0,1198.82,0.0,1342.82,144.0,17.85,161.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-duluth-mn.xml,1702.97,144.0,1106.53,0.0,1250.53,144.0,308.44,452.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-location-helena-mt.xml,1669.92,144.0,1029.3,0.0,1173.3,144.0,352.62,496.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-honolulu-hi.xml,4472.33,144.0,4328.33,0.0,4472.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1465.04,144.0,1321.04,0.0,1465.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-phoenix-az.xml,1643.14,144.0,1355.13,0.0,1499.13,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4473.45,144.0,4329.45,0.0,4473.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1465.35,144.0,1321.35,0.0,1465.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-phoenix-az.xml,1643.49,144.0,1355.48,0.0,1499.48,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1209.24,144.0,824.02,0.0,968.02,144.0,97.22,241.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-mechvent-balanced.xml,2116.63,144.0,1385.96,0.0,1529.96,144.0,442.67,586.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-mechvent-bath-kitchen-fans.xml,1863.78,144.0,1322.05,0.0,1466.05,144.0,253.73,397.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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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 ef916b41d84fbba101689de184245d5a9b09f32a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 8 Nov 2023 17:04:15 +0000 Subject: [PATCH 180/217] Latest results. --- .../tests/base_results/results_sizing.csv | 762 +++++++++--------- .../results_workflow_simulations1.csv | 104 +-- .../results_workflow_simulations1_bills.csv | 17 +- 3 files changed, 398 insertions(+), 485 deletions(-) diff --git a/workflow/tests/base_results/results_sizing.csv b/workflow/tests/base_results/results_sizing.csv index 225a2bcbce..7bad9dd429 100644 --- a/workflow/tests/base_results/results_sizing.csv +++ b/workflow/tests/base_results/results_sizing.csv @@ -1,381 +1,381 @@ -HPXML,HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h) -denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-ACCA.xml,0.0,21309.0,0.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-HERS.xml,0.0,18787.0,0.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-MaxLoad.xml,0.0,21309.0,0.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad.xml,65909.0,0.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,24187.0,24187.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,65568.0,65568.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA.xml,25997.0,25997.0,23640.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS.xml,31147.0,31147.0,23640.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad.xml,33628.0,33628.0,23640.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA.xml,25997.0,25997.0,23640.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS.xml,31147.0,31147.0,23640.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad.xml,33628.0,33628.0,23640.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA.xml,21623.0,21623.0,23640.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-HERS.xml,31147.0,31147.0,23640.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-MaxLoad.xml,33628.0,33628.0,23640.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA.xml,25997.0,25997.0,32235.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS.xml,31147.0,31147.0,32235.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad.xml,33628.0,33628.0,32235.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,26369.0,26369.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,50424.0,50424.0,31147.0 -denver-hvac-autosize-boiler-coal-only.xml,23640.0,0.0,0.0 -denver-hvac-autosize-boiler-elec-only.xml,23640.0,0.0,0.0 -denver-hvac-autosize-boiler-gas-central-ac-1-speed.xml,23640.0,21309.0,0.0 -denver-hvac-autosize-boiler-gas-only-pilot.xml,23640.0,0.0,0.0 -denver-hvac-autosize-boiler-gas-only.xml,23640.0,0.0,0.0 -denver-hvac-autosize-boiler-oil-only.xml,23640.0,0.0,0.0 -denver-hvac-autosize-boiler-propane-only.xml,23640.0,0.0,0.0 -denver-hvac-autosize-boiler-wood-only.xml,23640.0,0.0,0.0 -denver-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,21309.0,0.0 -denver-hvac-autosize-central-ac-only-1-speed.xml,0.0,21309.0,0.0 -denver-hvac-autosize-central-ac-only-2-speed.xml,0.0,20844.0,0.0 -denver-hvac-autosize-central-ac-only-var-speed.xml,0.0,20284.0,0.0 -denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA.xml,31147.0,21309.0,31147.0 -denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS.xml,31147.0,21309.0,31147.0 -denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad.xml,65909.0,21309.0,31147.0 -denver-hvac-autosize-dse.xml,23640.0,15265.0,0.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,35328.0,35328.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,35328.0,35328.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,24187.0,24187.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,34557.0,34557.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,21623.0,21623.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,33628.0,33628.0,31147.0 -denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,17355.0,17355.0,26181.0 -denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,26181.0,26181.0,26181.0 -denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,26139.0,26139.0,26181.0 -denver-hvac-autosize-ducts-area-fractions.xml,71257.0,96895.0,0.0 -denver-hvac-autosize-ducts-area-multipliers.xml,31447.0,20880.0,0.0 -denver-hvac-autosize-ducts-buried.xml,28613.0,17907.0,0.0 -denver-hvac-autosize-ducts-defaults.xml,28213.0,14272.0,0.0 -denver-hvac-autosize-ducts-effective-rvalue.xml,32230.0,21305.0,0.0 -denver-hvac-autosize-ducts-leakage-cfm50.xml,34498.0,23082.0,0.0 -denver-hvac-autosize-ducts-leakage-percent.xml,32661.0,23448.0,0.0 -denver-hvac-autosize-elec-resistance-only.xml,23640.0,0.0,0.0 -denver-hvac-autosize-evap-cooler-furnace-gas.xml,32235.0,13458.0,0.0 -denver-hvac-autosize-evap-cooler-only-ducted.xml,0.0,15717.0,0.0 -denver-hvac-autosize-evap-cooler-only.xml,0.0,13458.0,0.0 -denver-hvac-autosize-fireplace-wood-only.xml,23640.0,0.0,0.0 -denver-hvac-autosize-floor-furnace-propane-only.xml,23640.0,0.0,0.0 -denver-hvac-autosize-furnace-coal-only.xml,32235.0,0.0,0.0 -denver-hvac-autosize-furnace-elec-central-ac-1-speed.xml,32235.0,21309.0,0.0 -denver-hvac-autosize-furnace-elec-only.xml,32235.0,0.0,0.0 -denver-hvac-autosize-furnace-gas-central-ac-2-speed.xml,32235.0,20844.0,0.0 -denver-hvac-autosize-furnace-gas-central-ac-var-speed.xml,32235.0,20284.0,0.0 -denver-hvac-autosize-furnace-gas-only-detailed-setpoints.xml,32235.0,0.0,0.0 -denver-hvac-autosize-furnace-gas-only-pilot.xml,32235.0,0.0,0.0 -denver-hvac-autosize-furnace-gas-only.xml,32235.0,0.0,0.0 -denver-hvac-autosize-furnace-gas-room-ac.xml,32235.0,14272.0,0.0 -denver-hvac-autosize-furnace-oil-only.xml,32235.0,0.0,0.0 -denver-hvac-autosize-furnace-propane-only.xml,32235.0,0.0,0.0 -denver-hvac-autosize-furnace-wood-only.xml,32235.0,0.0,0.0 -denver-hvac-autosize-furnace-x3-dse.xml,23876.0,15265.0,0.0 -denver-hvac-autosize-geothermal-loop-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-geothermal-loop-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-geothermal-loop-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0 -denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,24224.0,0.0 -denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,18787.0,0.0 -denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,24224.0,0.0 -denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0 -denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0 -denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0 -denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,31147.0,0.0,31147.0 -denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0 -denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0 -denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-ACCA.xml,29335.0,29335.0,29335.0 -denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-HERS.xml,29335.0,29335.0,29335.0 -denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-MaxLoad.xml,36446.0,36446.0,29335.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,25873.0,26950.0,31147.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,35174.0,36638.0,31147.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,74430.0,77528.0,31147.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27282.0,28282.0,31147.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,35133.0,36421.0,31147.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,73958.0,76670.0,31147.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,29745.0,31030.0,31147.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,35135.0,36653.0,31147.0 -denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,56879.0,59338.0,31147.0 -denver-hvac-autosize-install-quality-furnace-gas-central-ac-1-speed.xml,32235.0,25066.0,0.0 -denver-hvac-autosize-install-quality-furnace-gas-central-ac-2-speed.xml,32235.0,24373.0,0.0 -denver-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,32235.0,23869.0,0.0 -denver-hvac-autosize-install-quality-furnace-gas-only.xml,32235.0,0.0,0.0 -denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,35169.0,36836.0,31147.0 -denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,35169.0,36836.0,31147.0 -denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,43421.0,45480.0,31147.0 -denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,18073.0,0.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,22431.0,23495.0,26181.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,29562.0,30964.0,26181.0 -denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,47245.0,49486.0,26181.0 -denver-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,15282.0,0.0 -denver-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,13436.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,15282.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,15306.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,15282.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA.xml,26181.0,0.0,26181.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS.xml,26181.0,0.0,26181.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad.xml,41842.0,0.0,26181.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19866.0,19866.0,26181.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,26181.0,26181.0,26181.0 -denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,41842.0,41842.0,26181.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA.xml,17467.0,17467.0,23640.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad.xml,37781.0,37781.0,23640.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA.xml,17467.0,17467.0,24589.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS.xml,23640.0,23640.0,24589.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad.xml,23602.0,23602.0,24589.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA.xml,17467.0,17467.0,26570.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS.xml,23640.0,23640.0,26570.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad.xml,23602.0,23602.0,26570.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA.xml,17467.0,17467.0,23640.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad.xml,23602.0,23602.0,23640.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-ACCA.xml,17467.0,17467.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-HERS.xml,23640.0,23640.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-MaxLoad.xml,37781.0,37781.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,17467.0,17467.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-HERS.xml,23640.0,23640.0,0.0 -denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-MaxLoad.xml,37781.0,37781.0,0.0 -denver-hvac-autosize-multiple-sizing-methodology-ACCA.xml,40902.0,28777.0,12678.0 -denver-hvac-autosize-multiple-sizing-methodology-HERS.xml,37122.0,24997.0,12678.0 -denver-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,46356.0,34231.0,12678.0 -denver-hvac-autosize-none.xml,0.0,0.0,0.0 -denver-hvac-autosize-ptac-with-heating-electricity.xml,23640.0,14272.0,0.0 -denver-hvac-autosize-ptac-with-heating-natural-gas.xml,23640.0,14272.0,0.0 -denver-hvac-autosize-ptac.xml,0.0,14272.0,0.0 -denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0 -denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0 -denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0 -denver-hvac-autosize-pthp-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0 -denver-hvac-autosize-pthp-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0 -denver-hvac-autosize-pthp-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0 -denver-hvac-autosize-room-ac-only-33percent.xml,0.0,4710.0,0.0 -denver-hvac-autosize-room-ac-only-ceer.xml,0.0,14272.0,0.0 -denver-hvac-autosize-room-ac-only-detailed-setpoints.xml,0.0,14272.0,0.0 -denver-hvac-autosize-room-ac-only.xml,0.0,14272.0,0.0 -denver-hvac-autosize-room-ac-with-heating.xml,23640.0,14272.0,0.0 -denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0 -denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0 -denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0 -denver-hvac-autosize-seasons.xml,32235.0,21309.0,0.0 -denver-hvac-autosize-setpoints-daily-schedules.xml,32235.0,21309.0,0.0 -denver-hvac-autosize-setpoints-daily-setbacks.xml,32235.0,21309.0,0.0 -denver-hvac-autosize-setpoints.xml,32235.0,21309.0,0.0 -denver-hvac-autosize-space-heater-gas-only.xml,23640.0,0.0,0.0 -denver-hvac-autosize-stove-oil-only.xml,23640.0,0.0,0.0 -denver-hvac-autosize-stove-wood-pellets-only.xml,23640.0,0.0,0.0 -denver-hvac-autosize-undersized.xml,28898.0,19717.0,0.0 -denver-hvac-autosize-wall-furnace-elec-only.xml,23640.0,0.0,0.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-ACCA.xml,0.0,27095.0,0.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-HERS.xml,0.0,25329.0,0.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-MaxLoad.xml,0.0,27095.0,0.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA.xml,20038.0,0.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS.xml,20038.0,0.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad.xml,24146.0,0.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27339.0,27339.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,30431.0,30431.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA.xml,25052.0,25052.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS.xml,25329.0,25329.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad.xml,25813.0,25813.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA.xml,25052.0,25052.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS.xml,25329.0,25329.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad.xml,25813.0,25813.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA.xml,25052.0,25052.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-HERS.xml,25329.0,25329.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-MaxLoad.xml,25813.0,25813.0,14077.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA.xml,25052.0,25052.0,21260.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS.xml,25329.0,25329.0,21260.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad.xml,25813.0,25813.0,21260.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,25052.0,25052.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 -houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,25813.0,25813.0,20038.0 -houston-hvac-autosize-boiler-coal-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-boiler-elec-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-boiler-gas-central-ac-1-speed.xml,14077.0,27095.0,0.0 -houston-hvac-autosize-boiler-gas-only-pilot.xml,14077.0,0.0,0.0 -houston-hvac-autosize-boiler-gas-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-boiler-oil-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-boiler-propane-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-boiler-wood-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,27095.0,0.0 -houston-hvac-autosize-central-ac-only-1-speed.xml,0.0,27095.0,0.0 -houston-hvac-autosize-central-ac-only-2-speed.xml,0.0,27339.0,0.0 -houston-hvac-autosize-central-ac-only-var-speed.xml,0.0,25052.0,0.0 -houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA.xml,20038.0,27095.0,20038.0 -houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS.xml,20038.0,27095.0,20038.0 -houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad.xml,24146.0,27095.0,20038.0 -houston-hvac-autosize-dse.xml,14077.0,18120.0,0.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27339.0,27339.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,30431.0,30431.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,25052.0,25052.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 -houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,25813.0,25813.0,20038.0 -houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19901.0,19901.0,16055.0 -houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,19590.0,19590.0,16055.0 -houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,19901.0,19901.0,16055.0 -houston-hvac-autosize-ducts-area-fractions.xml,44891.0,118859.0,0.0 -houston-hvac-autosize-ducts-area-multipliers.xml,20588.0,26667.0,0.0 -houston-hvac-autosize-ducts-buried.xml,19022.0,23092.0,0.0 -houston-hvac-autosize-ducts-defaults.xml,18921.0,18120.0,0.0 -houston-hvac-autosize-ducts-effective-rvalue.xml,21256.0,27089.0,0.0 -houston-hvac-autosize-ducts-leakage-cfm50.xml,22511.0,33165.0,0.0 -houston-hvac-autosize-ducts-leakage-percent.xml,19445.0,33305.0,0.0 -houston-hvac-autosize-elec-resistance-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-evap-cooler-furnace-gas.xml,21260.0,16939.0,0.0 -houston-hvac-autosize-evap-cooler-only-ducted.xml,0.0,18494.0,0.0 -houston-hvac-autosize-evap-cooler-only.xml,0.0,16939.0,0.0 -houston-hvac-autosize-fireplace-wood-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-floor-furnace-propane-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-furnace-coal-only.xml,21260.0,0.0,0.0 -houston-hvac-autosize-furnace-elec-central-ac-1-speed.xml,21260.0,27095.0,0.0 -houston-hvac-autosize-furnace-elec-only.xml,21260.0,0.0,0.0 -houston-hvac-autosize-furnace-gas-central-ac-2-speed.xml,21260.0,27339.0,0.0 -houston-hvac-autosize-furnace-gas-central-ac-var-speed.xml,21260.0,25052.0,0.0 -houston-hvac-autosize-furnace-gas-only-detailed-setpoints.xml,21260.0,0.0,0.0 -houston-hvac-autosize-furnace-gas-only-pilot.xml,21260.0,0.0,0.0 -houston-hvac-autosize-furnace-gas-only.xml,21260.0,0.0,0.0 -houston-hvac-autosize-furnace-gas-room-ac.xml,21260.0,18120.0,0.0 -houston-hvac-autosize-furnace-oil-only.xml,21260.0,0.0,0.0 -houston-hvac-autosize-furnace-propane-only.xml,21260.0,0.0,0.0 -houston-hvac-autosize-furnace-wood-only.xml,21260.0,0.0,0.0 -houston-hvac-autosize-furnace-x3-dse.xml,14219.0,18120.0,0.0 -houston-hvac-autosize-geothermal-loop-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0 -houston-hvac-autosize-geothermal-loop-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 -houston-hvac-autosize-geothermal-loop-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,32400.0,0.0 -houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,25329.0,0.0 -houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,32400.0,0.0 -houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,20038.0,0.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,20038.0,0.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,20038.0,0.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0 -houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-ACCA.xml,32400.0,32400.0,18949.0 -houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-HERS.xml,25329.0,25329.0,18949.0 -houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-MaxLoad.xml,32400.0,32400.0,18949.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,33330.0,31852.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31158.0,29777.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,37544.0,35880.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,33606.0,31949.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31136.0,29600.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,37407.0,35562.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,30794.0,29463.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31135.0,29787.0,20038.0 -houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,31730.0,30358.0,20038.0 -houston-hvac-autosize-install-quality-furnace-gas-central-ac-1-speed.xml,21260.0,31852.0,0.0 -houston-hvac-autosize-install-quality-furnace-gas-central-ac-2-speed.xml,21260.0,31949.0,0.0 -houston-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,21260.0,29463.0,0.0 -houston-hvac-autosize-install-quality-furnace-gas-only.xml,21260.0,0.0,0.0 -houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,39778.0,38295.0,20038.0 -houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31097.0,29938.0,20038.0 -houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,39778.0,38295.0,20038.0 -houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,23522.0,0.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,24432.0,23522.0,16055.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,24052.0,23155.0,16055.0 -houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,24432.0,23522.0,16055.0 -houston-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,19901.0,0.0 -houston-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,17207.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,19901.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,19590.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,19901.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA.xml,16055.0,0.0,16055.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS.xml,16055.0,0.0,16055.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad.xml,16078.0,0.0,16055.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19901.0,19901.0,16055.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,19590.0,19590.0,16055.0 -houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,19901.0,19901.0,16055.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA.xml,17207.0,17207.0,14077.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad.xml,17207.0,17207.0,14077.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA.xml,17207.0,17207.0,15088.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS.xml,16939.0,16939.0,15088.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad.xml,17207.0,17207.0,15088.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA.xml,17207.0,17207.0,16466.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS.xml,16939.0,16939.0,16466.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad.xml,17207.0,17207.0,16466.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA.xml,17207.0,17207.0,14077.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad.xml,17207.0,17207.0,14077.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-ACCA.xml,17207.0,17207.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-HERS.xml,16939.0,16939.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-MaxLoad.xml,17207.0,17207.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,17207.0,17207.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-HERS.xml,16939.0,16939.0,0.0 -houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-MaxLoad.xml,17207.0,17207.0,0.0 -houston-hvac-autosize-multiple-sizing-methodology-ACCA.xml,54105.0,50295.0,12670.0 -houston-hvac-autosize-multiple-sizing-methodology-HERS.xml,48792.0,44982.0,12670.0 -houston-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,55938.0,52128.0,12670.0 -houston-hvac-autosize-none.xml,0.0,0.0,0.0 -houston-hvac-autosize-ptac-with-heating-electricity.xml,14077.0,18120.0,0.0 -houston-hvac-autosize-ptac-with-heating-natural-gas.xml,14077.0,18120.0,0.0 -houston-hvac-autosize-ptac.xml,0.0,18120.0,0.0 -houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA.xml,18120.0,18120.0,14077.0 -houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0 -houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad.xml,20411.0,20411.0,14077.0 -houston-hvac-autosize-pthp-sizing-methodology-ACCA.xml,18120.0,18120.0,14077.0 -houston-hvac-autosize-pthp-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0 -houston-hvac-autosize-pthp-sizing-methodology-MaxLoad.xml,20411.0,20411.0,14077.0 -houston-hvac-autosize-room-ac-only-33percent.xml,0.0,5980.0,0.0 -houston-hvac-autosize-room-ac-only-ceer.xml,0.0,18120.0,0.0 -houston-hvac-autosize-room-ac-only-detailed-setpoints.xml,0.0,18120.0,0.0 -houston-hvac-autosize-room-ac-only.xml,0.0,18120.0,0.0 -houston-hvac-autosize-room-ac-with-heating.xml,14077.0,18120.0,0.0 -houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA.xml,18120.0,18120.0,14077.0 -houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0 -houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad.xml,20411.0,20411.0,14077.0 -houston-hvac-autosize-seasons.xml,21260.0,27095.0,0.0 -houston-hvac-autosize-setpoints-daily-schedules.xml,21260.0,27095.0,0.0 -houston-hvac-autosize-setpoints-daily-setbacks.xml,21260.0,27095.0,0.0 -houston-hvac-autosize-setpoints.xml,21260.0,27095.0,0.0 -houston-hvac-autosize-space-heater-gas-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-stove-oil-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-stove-wood-pellets-only.xml,14077.0,0.0,0.0 -houston-hvac-autosize-undersized.xml,17839.0,23548.0,0.0 -houston-hvac-autosize-wall-furnace-elec-only.xml,14077.0,0.0,0.0 +HPXML,HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h),HVAC Airflow: Heating (cfm),HVAC Airflow: Cooling (cfm) +denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-ACCA.xml,0.0,21309.0,0.0,0.0,886.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-HERS.xml,0.0,18787.0,0.0,0.0,781.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-MaxLoad.xml,0.0,21309.0,0.0,0.0,886.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0,723.0,953.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0,2079.0,2741.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad.xml,65909.0,0.0,31147.0,2079.0,0.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0,723.0,953.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0,2079.0,2741.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0,723.0,953.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0,2079.0,2741.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0,723.0,953.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,65909.0,65909.0,31147.0,2079.0,2741.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,24187.0,24187.0,31147.0,763.0,1006.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,65568.0,65568.0,31147.0,2068.0,2727.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA.xml,25997.0,25997.0,23640.0,820.0,1081.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS.xml,31147.0,31147.0,23640.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad.xml,33628.0,33628.0,23640.0,1061.0,1398.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA.xml,25997.0,25997.0,23640.0,820.0,1081.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS.xml,31147.0,31147.0,23640.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad.xml,33628.0,33628.0,23640.0,1061.0,1398.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA.xml,21623.0,21623.0,23640.0,682.0,899.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-HERS.xml,31147.0,31147.0,23640.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-MaxLoad.xml,33628.0,33628.0,23640.0,1061.0,1398.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA.xml,25997.0,25997.0,32235.0,1532.0,1081.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS.xml,31147.0,31147.0,32235.0,1694.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad.xml,33628.0,33628.0,32235.0,1773.0,1398.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,26369.0,26369.0,31147.0,832.0,1096.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,50424.0,50424.0,31147.0,1590.0,2097.0 +denver-hvac-autosize-boiler-coal-only.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-boiler-elec-only.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-boiler-gas-central-ac-1-speed.xml,23640.0,21309.0,0.0,0.0,886.0 +denver-hvac-autosize-boiler-gas-only-pilot.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-boiler-gas-only.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-boiler-oil-only.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-boiler-propane-only.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-boiler-wood-only.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,21309.0,0.0,0.0,886.0 +denver-hvac-autosize-central-ac-only-1-speed.xml,0.0,21309.0,0.0,0.0,886.0 +denver-hvac-autosize-central-ac-only-2-speed.xml,0.0,20844.0,0.0,0.0,867.0 +denver-hvac-autosize-central-ac-only-var-speed.xml,0.0,20284.0,0.0,0.0,843.0 +denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA.xml,31147.0,21309.0,31147.0,982.0,886.0 +denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS.xml,31147.0,21309.0,31147.0,982.0,886.0 +denver-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad.xml,65909.0,21309.0,31147.0,2079.0,886.0 +denver-hvac-autosize-dse.xml,23640.0,15265.0,0.0,522.0,635.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0,723.0,953.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,35328.0,35328.0,31147.0,1114.0,1469.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,22911.0,22911.0,31147.0,723.0,953.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,35328.0,35328.0,31147.0,1114.0,1469.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,24187.0,24187.0,31147.0,763.0,1006.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,34557.0,34557.0,31147.0,1090.0,1437.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,21623.0,21623.0,31147.0,682.0,899.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,33628.0,33628.0,31147.0,1061.0,1398.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,18268.0,18268.0,26181.0,576.0,760.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,26181.0,26181.0,26181.0,826.0,1089.0 +denver-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,31247.0,31247.0,26181.0,986.0,1299.0 +denver-hvac-autosize-ducts-area-fractions.xml,71257.0,96895.0,0.0,1573.0,4029.0 +denver-hvac-autosize-ducts-area-multipliers.xml,31447.0,20880.0,0.0,694.0,868.0 +denver-hvac-autosize-ducts-buried.xml,28613.0,17907.0,0.0,632.0,745.0 +denver-hvac-autosize-ducts-defaults.xml,28213.0,14272.0,0.0,664.0,371.0 +denver-hvac-autosize-ducts-effective-rvalue.xml,32230.0,21305.0,0.0,712.0,886.0 +denver-hvac-autosize-ducts-leakage-cfm50.xml,34498.0,23082.0,0.0,762.0,960.0 +denver-hvac-autosize-ducts-leakage-percent.xml,32661.0,23448.0,0.0,721.0,975.0 +denver-hvac-autosize-elec-resistance-only.xml,23640.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-evap-cooler-furnace-gas.xml,32235.0,13458.0,0.0,712.0,2456.0 +denver-hvac-autosize-evap-cooler-only-ducted.xml,0.0,15717.0,0.0,0.0,2868.0 +denver-hvac-autosize-evap-cooler-only.xml,0.0,13458.0,0.0,0.0,2456.0 +denver-hvac-autosize-fireplace-wood-only.xml,23640.0,0.0,0.0,689.0,0.0 +denver-hvac-autosize-floor-furnace-propane-only.xml,23640.0,0.0,0.0,689.0,0.0 +denver-hvac-autosize-furnace-coal-only.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-elec-central-ac-1-speed.xml,32235.0,21309.0,0.0,712.0,886.0 +denver-hvac-autosize-furnace-elec-only.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-gas-central-ac-2-speed.xml,32235.0,20844.0,0.0,712.0,867.0 +denver-hvac-autosize-furnace-gas-central-ac-var-speed.xml,32235.0,20284.0,0.0,712.0,843.0 +denver-hvac-autosize-furnace-gas-only-detailed-setpoints.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-gas-only-pilot.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-gas-only.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-gas-room-ac.xml,32235.0,14272.0,0.0,712.0,371.0 +denver-hvac-autosize-furnace-oil-only.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-propane-only.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-wood-only.xml,32235.0,0.0,0.0,712.0,0.0 +denver-hvac-autosize-furnace-x3-dse.xml,23876.0,15265.0,0.0,527.0,635.0 +denver-hvac-autosize-geothermal-loop-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0,982.0,1173.0 +denver-hvac-autosize-geothermal-loop-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-geothermal-loop-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0,1213.0,1599.0 +denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,24224.0,0.0,0.0,912.0 +denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,18787.0,0.0,0.0,708.0 +denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,24224.0,0.0,0.0,912.0 +denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0,982.0,1173.0 +denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0,1213.0,1599.0 +denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,31147.0,0.0,31147.0,982.0,0.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0,982.0,1173.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0,1213.0,1599.0 +denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-ACCA.xml,29335.0,29335.0,29335.0,925.0,1105.0 +denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-HERS.xml,29335.0,29335.0,29335.0,925.0,1220.0 +denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-MaxLoad.xml,36446.0,36446.0,29335.0,1150.0,1516.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,25873.0,26950.0,31147.0,612.0,840.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,35174.0,36638.0,31147.0,832.0,1143.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,74430.0,77528.0,31147.0,1761.0,2418.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27282.0,28282.0,31147.0,645.0,882.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,35133.0,36421.0,31147.0,831.0,1136.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,73958.0,76670.0,31147.0,1750.0,2391.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,29745.0,31030.0,31147.0,704.0,968.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,35135.0,36653.0,31147.0,831.0,1143.0 +denver-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,56879.0,59338.0,31147.0,1346.0,1851.0 +denver-hvac-autosize-install-quality-furnace-gas-central-ac-1-speed.xml,32235.0,25066.0,0.0,534.0,782.0 +denver-hvac-autosize-install-quality-furnace-gas-central-ac-2-speed.xml,32235.0,24373.0,0.0,534.0,760.0 +denver-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,32235.0,23869.0,0.0,534.0,744.0 +denver-hvac-autosize-install-quality-furnace-gas-only.xml,32235.0,0.0,0.0,534.0,0.0 +denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,35169.0,36836.0,31147.0,832.0,1040.0 +denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,35169.0,36836.0,31147.0,832.0,1149.0 +denver-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,43421.0,45480.0,31147.0,1027.0,1418.0 +denver-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,21497.0,0.0,0.0,670.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,22443.0,23378.0,26181.0,531.0,729.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,29578.0,30810.0,26181.0,700.0,961.0 +denver-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,47271.0,49239.0,26181.0,1118.0,1536.0 +denver-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,18268.0,0.0,0.0,760.0 +denver-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,13436.0,0.0,0.0,448.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,18268.0,0.0,0.0,760.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,15306.0,0.0,0.0,636.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,18268.0,0.0,0.0,760.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA.xml,26181.0,0.0,26181.0,826.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS.xml,26181.0,0.0,26181.0,826.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad.xml,41842.0,0.0,26181.0,1320.0,0.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19866.0,19866.0,26181.0,627.0,826.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,26181.0,26181.0,26181.0,826.0,1089.0 +denver-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,41842.0,41842.0,26181.0,1320.0,1740.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA.xml,17467.0,17467.0,23640.0,582.0,582.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0,788.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad.xml,37781.0,37781.0,23640.0,1259.0,1259.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA.xml,17467.0,17467.0,24589.0,1125.0,582.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS.xml,23640.0,23640.0,24589.0,1331.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad.xml,23602.0,23602.0,24589.0,1330.0,787.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA.xml,17467.0,17467.0,26570.0,1169.0,582.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS.xml,23640.0,23640.0,26570.0,1375.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad.xml,23602.0,23602.0,26570.0,1374.0,787.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA.xml,17467.0,17467.0,23640.0,1271.0,582.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0,1477.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad.xml,23602.0,23602.0,23640.0,1476.0,787.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-ACCA.xml,17467.0,17467.0,0.0,582.0,582.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-HERS.xml,23640.0,23640.0,0.0,788.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-MaxLoad.xml,37781.0,37781.0,0.0,1259.0,1259.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,17467.0,17467.0,0.0,582.0,582.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-HERS.xml,23640.0,23640.0,0.0,788.0,788.0 +denver-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-MaxLoad.xml,37781.0,37781.0,0.0,1259.0,1259.0 +denver-hvac-autosize-multiple-sizing-methodology-ACCA.xml,40902.0,28777.0,12678.0,945.0,974.0 +denver-hvac-autosize-multiple-sizing-methodology-HERS.xml,37122.0,24997.0,12678.0,824.0,858.0 +denver-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,46356.0,34231.0,12678.0,1119.0,1194.0 +denver-hvac-autosize-none.xml,0.0,0.0,0.0,0.0,0.0 +denver-hvac-autosize-ptac-with-heating-electricity.xml,23640.0,14272.0,0.0,522.0,371.0 +denver-hvac-autosize-ptac-with-heating-natural-gas.xml,23640.0,14272.0,0.0,522.0,371.0 +denver-hvac-autosize-ptac.xml,0.0,14272.0,0.0,0.0,371.0 +denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0,479.0,427.0 +denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0,689.0,615.0 +denver-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0,1459.0,1301.0 +denver-hvac-autosize-pthp-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0,479.0,427.0 +denver-hvac-autosize-pthp-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0,689.0,615.0 +denver-hvac-autosize-pthp-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0,1459.0,1301.0 +denver-hvac-autosize-room-ac-only-33percent.xml,0.0,4710.0,0.0,0.0,122.0 +denver-hvac-autosize-room-ac-only-ceer.xml,0.0,14272.0,0.0,0.0,371.0 +denver-hvac-autosize-room-ac-only-detailed-setpoints.xml,0.0,14272.0,0.0,0.0,371.0 +denver-hvac-autosize-room-ac-only.xml,0.0,14272.0,0.0,0.0,371.0 +denver-hvac-autosize-room-ac-with-heating.xml,23640.0,14272.0,0.0,522.0,371.0 +denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA.xml,16412.0,16412.0,23640.0,479.0,427.0 +denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS.xml,23640.0,23640.0,23640.0,689.0,615.0 +denver-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad.xml,50023.0,50023.0,23640.0,1459.0,1301.0 +denver-hvac-autosize-seasons.xml,32235.0,21309.0,0.0,712.0,886.0 +denver-hvac-autosize-setpoints-daily-schedules.xml,32235.0,21309.0,0.0,712.0,886.0 +denver-hvac-autosize-setpoints-daily-setbacks.xml,32235.0,21309.0,0.0,712.0,886.0 +denver-hvac-autosize-setpoints.xml,32235.0,21309.0,0.0,712.0,886.0 +denver-hvac-autosize-space-heater-gas-only.xml,23640.0,0.0,0.0,689.0,0.0 +denver-hvac-autosize-stove-oil-only.xml,23640.0,0.0,0.0,689.0,0.0 +denver-hvac-autosize-stove-wood-pellets-only.xml,23640.0,0.0,0.0,689.0,0.0 +denver-hvac-autosize-undersized.xml,28898.0,19717.0,0.0,638.0,820.0 +denver-hvac-autosize-wall-furnace-elec-only.xml,23640.0,0.0,0.0,689.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-ACCA.xml,0.0,27095.0,0.0,0.0,1127.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-HERS.xml,0.0,25329.0,0.0,0.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only-sizing-methodology-MaxLoad.xml,0.0,27095.0,0.0,0.0,1127.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0,706.0,1127.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-capacity-17f-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-ACCA.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-HERS.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only-sizing-methodology-MaxLoad.xml,24146.0,0.0,20038.0,629.0,0.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0,706.0,1127.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0,706.0,1127.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-seer2-hspf2-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0,706.0,1127.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27339.0,27339.0,20038.0,712.0,1137.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,30431.0,30431.0,20038.0,793.0,1265.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-ACCA.xml,25052.0,25052.0,14077.0,653.0,1042.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-HERS.xml,25329.0,25329.0,14077.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons-sizing-methodology-MaxLoad.xml,25813.0,25813.0,14077.0,672.0,1073.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-ACCA.xml,25052.0,25052.0,14077.0,653.0,1042.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-HERS.xml,25329.0,25329.0,14077.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-sizing-methodology-MaxLoad.xml,25813.0,25813.0,14077.0,672.0,1073.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-ACCA.xml,25052.0,25052.0,14077.0,653.0,1042.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-HERS.xml,25329.0,25329.0,14077.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature-sizing-methodology-MaxLoad.xml,25813.0,25813.0,14077.0,672.0,1073.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-ACCA.xml,25052.0,25052.0,21260.0,1041.0,1042.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-HERS.xml,25329.0,25329.0,21260.0,1048.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace-sizing-methodology-MaxLoad.xml,25813.0,25813.0,21260.0,1060.0,1073.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,25052.0,25052.0,20038.0,653.0,1042.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,25813.0,25813.0,20038.0,672.0,1073.0 +houston-hvac-autosize-boiler-coal-only.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-boiler-elec-only.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-boiler-gas-central-ac-1-speed.xml,14077.0,27095.0,0.0,0.0,1127.0 +houston-hvac-autosize-boiler-gas-only-pilot.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-boiler-gas-only.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-boiler-oil-only.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-boiler-propane-only.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-boiler-wood-only.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-central-ac-only-1-speed-seer2.xml,0.0,27095.0,0.0,0.0,1127.0 +houston-hvac-autosize-central-ac-only-1-speed.xml,0.0,27095.0,0.0,0.0,1127.0 +houston-hvac-autosize-central-ac-only-2-speed.xml,0.0,27339.0,0.0,0.0,1137.0 +houston-hvac-autosize-central-ac-only-var-speed.xml,0.0,25052.0,0.0,0.0,1042.0 +houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-ACCA.xml,20038.0,27095.0,20038.0,522.0,1127.0 +houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-HERS.xml,20038.0,27095.0,20038.0,522.0,1127.0 +houston-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating-sizing-methodology-MaxLoad.xml,24146.0,27095.0,20038.0,629.0,1127.0 +houston-hvac-autosize-dse.xml,14077.0,18120.0,0.0,257.0,753.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0,706.0,1127.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,27095.0,27095.0,20038.0,706.0,1127.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,30521.0,30521.0,20038.0,795.0,1269.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,27339.0,27339.0,20038.0,712.0,1137.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,30431.0,30431.0,20038.0,793.0,1265.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,25052.0,25052.0,20038.0,653.0,1042.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,1053.0 +houston-hvac-autosize-dual-fuel-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,25813.0,25813.0,20038.0,672.0,1073.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19901.0,19901.0,16055.0,518.0,828.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,19590.0,19590.0,16055.0,510.0,815.0 +houston-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,19901.0,19901.0,16055.0,518.0,828.0 +houston-hvac-autosize-ducts-area-fractions.xml,44891.0,118859.0,0.0,819.0,4943.0 +houston-hvac-autosize-ducts-area-multipliers.xml,20588.0,26667.0,0.0,375.0,1109.0 +houston-hvac-autosize-ducts-buried.xml,19022.0,23092.0,0.0,347.0,960.0 +houston-hvac-autosize-ducts-defaults.xml,18921.0,18120.0,0.0,384.0,471.0 +houston-hvac-autosize-ducts-effective-rvalue.xml,21256.0,27089.0,0.0,388.0,1126.0 +houston-hvac-autosize-ducts-leakage-cfm50.xml,22511.0,33165.0,0.0,410.0,1379.0 +houston-hvac-autosize-ducts-leakage-percent.xml,19445.0,33305.0,0.0,355.0,1385.0 +houston-hvac-autosize-elec-resistance-only.xml,14077.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-evap-cooler-furnace-gas.xml,21260.0,16939.0,0.0,388.0,5400.0 +houston-hvac-autosize-evap-cooler-only-ducted.xml,0.0,18494.0,0.0,0.0,5400.0 +houston-hvac-autosize-evap-cooler-only.xml,0.0,16939.0,0.0,0.0,5400.0 +houston-hvac-autosize-fireplace-wood-only.xml,14077.0,0.0,0.0,411.0,0.0 +houston-hvac-autosize-floor-furnace-propane-only.xml,14077.0,0.0,0.0,411.0,0.0 +houston-hvac-autosize-furnace-coal-only.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-elec-central-ac-1-speed.xml,21260.0,27095.0,0.0,388.0,1127.0 +houston-hvac-autosize-furnace-elec-only.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-gas-central-ac-2-speed.xml,21260.0,27339.0,0.0,388.0,1137.0 +houston-hvac-autosize-furnace-gas-central-ac-var-speed.xml,21260.0,25052.0,0.0,388.0,1042.0 +houston-hvac-autosize-furnace-gas-only-detailed-setpoints.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-gas-only-pilot.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-gas-only.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-gas-room-ac.xml,21260.0,18120.0,0.0,388.0,471.0 +houston-hvac-autosize-furnace-oil-only.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-propane-only.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-wood-only.xml,21260.0,0.0,0.0,388.0,0.0 +houston-hvac-autosize-furnace-x3-dse.xml,14219.0,18120.0,0.0,260.0,753.0 +houston-hvac-autosize-geothermal-loop-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0,844.0,972.0 +houston-hvac-autosize-geothermal-loop-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,760.0 +houston-hvac-autosize-geothermal-loop-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0,844.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,32400.0,0.0,0.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,25329.0,0.0,0.0,760.0 +houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,32400.0,0.0,0.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0,844.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,760.0 +houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0,844.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,20038.0,0.0,20038.0,522.0,0.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0,844.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,760.0 +houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0,844.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-ACCA.xml,32400.0,32400.0,18949.0,844.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-HERS.xml,25329.0,25329.0,18949.0,660.0,760.0 +houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-MaxLoad.xml,32400.0,32400.0,18949.0,844.0,972.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,33330.0,31852.0,20038.0,651.0,993.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31158.0,29777.0,20038.0,609.0,929.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,37544.0,35880.0,20038.0,733.0,1119.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-ACCA.xml,33606.0,31949.0,20038.0,657.0,996.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-HERS.xml,31136.0,29600.0,20038.0,608.0,923.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-2-speed-sizing-methodology-MaxLoad.xml,37407.0,35562.0,20038.0,731.0,1109.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-ACCA.xml,30794.0,29463.0,20038.0,602.0,919.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-HERS.xml,31135.0,29787.0,20038.0,608.0,929.0 +houston-hvac-autosize-install-quality-air-to-air-heat-pump-var-speed-sizing-methodology-MaxLoad.xml,31730.0,30358.0,20038.0,620.0,947.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-1-speed.xml,21260.0,31852.0,0.0,291.0,993.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-2-speed.xml,21260.0,31949.0,0.0,291.0,996.0 +houston-hvac-autosize-install-quality-furnace-gas-central-ac-var-speed.xml,21260.0,29463.0,0.0,291.0,919.0 +houston-hvac-autosize-install-quality-furnace-gas-only.xml,21260.0,0.0,0.0,291.0,0.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,39778.0,38295.0,20038.0,777.0,862.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31097.0,29938.0,20038.0,608.0,674.0 +houston-hvac-autosize-install-quality-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,39778.0,38295.0,20038.0,777.0,862.0 +houston-hvac-autosize-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,23404.0,0.0,0.0,730.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,24479.0,23404.0,16055.0,478.0,730.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,24097.0,23040.0,16055.0,471.0,719.0 +houston-hvac-autosize-install-quality-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,24479.0,23404.0,16055.0,478.0,730.0 +houston-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,0.0,19901.0,0.0,0.0,828.0 +houston-hvac-autosize-mini-split-air-conditioner-only-ductless.xml,0.0,17207.0,0.0,0.0,574.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-ACCA.xml,0.0,19901.0,0.0,0.0,828.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-HERS.xml,0.0,19590.0,0.0,0.0,815.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-cooling-only-sizing-methodology-MaxLoad.xml,0.0,19901.0,0.0,0.0,828.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-ACCA.xml,16055.0,0.0,16055.0,418.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-HERS.xml,16055.0,0.0,16055.0,418.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-heating-only-sizing-methodology-MaxLoad.xml,16078.0,0.0,16055.0,419.0,0.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-ACCA.xml,19901.0,19901.0,16055.0,518.0,828.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-HERS.xml,19590.0,19590.0,16055.0,510.0,815.0 +houston-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-MaxLoad.xml,19901.0,19901.0,16055.0,518.0,828.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-ACCA.xml,17207.0,17207.0,14077.0,574.0,574.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0,565.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard-sizing-methodology-MaxLoad.xml,17207.0,17207.0,14077.0,574.0,574.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-ACCA.xml,17207.0,17207.0,15088.0,849.0,574.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-HERS.xml,16939.0,16939.0,15088.0,840.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults-sizing-methodology-MaxLoad.xml,17207.0,17207.0,15088.0,849.0,574.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-ACCA.xml,17207.0,17207.0,16466.0,874.0,574.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-HERS.xml,16939.0,16939.0,16466.0,865.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-furnace-sizing-methodology-MaxLoad.xml,17207.0,17207.0,16466.0,874.0,574.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-ACCA.xml,17207.0,17207.0,14077.0,985.0,574.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0,976.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-backup-stove-sizing-methodology-MaxLoad.xml,17207.0,17207.0,14077.0,985.0,574.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-ACCA.xml,17207.0,17207.0,0.0,574.0,574.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-HERS.xml,16939.0,16939.0,0.0,565.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-heating-capacity-17f-sizing-methodology-MaxLoad.xml,17207.0,17207.0,0.0,574.0,574.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-ACCA.xml,17207.0,17207.0,0.0,574.0,574.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-HERS.xml,16939.0,16939.0,0.0,565.0,565.0 +houston-hvac-autosize-mini-split-heat-pump-ductless-sizing-methodology-MaxLoad.xml,17207.0,17207.0,0.0,574.0,574.0 +houston-hvac-autosize-multiple-sizing-methodology-ACCA.xml,54105.0,50295.0,12670.0,1246.0,1646.0 +houston-hvac-autosize-multiple-sizing-methodology-HERS.xml,48792.0,44982.0,12670.0,1107.0,1508.0 +houston-hvac-autosize-multiple-sizing-methodology-MaxLoad.xml,55938.0,52128.0,12670.0,1293.0,1722.0 +houston-hvac-autosize-none.xml,0.0,0.0,0.0,0.0,0.0 +houston-hvac-autosize-ptac-with-heating-electricity.xml,14077.0,18120.0,0.0,257.0,471.0 +houston-hvac-autosize-ptac-with-heating-natural-gas.xml,14077.0,18120.0,0.0,257.0,471.0 +houston-hvac-autosize-ptac.xml,0.0,18120.0,0.0,0.0,471.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-ACCA.xml,18120.0,18120.0,14077.0,528.0,471.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0,494.0,440.0 +houston-hvac-autosize-pthp-heating-capacity-17f-sizing-methodology-MaxLoad.xml,20411.0,20411.0,14077.0,595.0,531.0 +houston-hvac-autosize-pthp-sizing-methodology-ACCA.xml,18120.0,18120.0,14077.0,528.0,471.0 +houston-hvac-autosize-pthp-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0,494.0,440.0 +houston-hvac-autosize-pthp-sizing-methodology-MaxLoad.xml,20411.0,20411.0,14077.0,595.0,531.0 +houston-hvac-autosize-room-ac-only-33percent.xml,0.0,5980.0,0.0,0.0,155.0 +houston-hvac-autosize-room-ac-only-ceer.xml,0.0,18120.0,0.0,0.0,471.0 +houston-hvac-autosize-room-ac-only-detailed-setpoints.xml,0.0,18120.0,0.0,0.0,471.0 +houston-hvac-autosize-room-ac-only.xml,0.0,18120.0,0.0,0.0,471.0 +houston-hvac-autosize-room-ac-with-heating.xml,14077.0,18120.0,0.0,257.0,471.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-ACCA.xml,18120.0,18120.0,14077.0,528.0,471.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-HERS.xml,16939.0,16939.0,14077.0,494.0,440.0 +houston-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-MaxLoad.xml,20411.0,20411.0,14077.0,595.0,531.0 +houston-hvac-autosize-seasons.xml,21260.0,27095.0,0.0,388.0,1127.0 +houston-hvac-autosize-setpoints-daily-schedules.xml,21260.0,27095.0,0.0,388.0,1127.0 +houston-hvac-autosize-setpoints-daily-setbacks.xml,21260.0,27095.0,0.0,388.0,1127.0 +houston-hvac-autosize-setpoints.xml,21260.0,27095.0,0.0,388.0,1127.0 +houston-hvac-autosize-space-heater-gas-only.xml,14077.0,0.0,0.0,411.0,0.0 +houston-hvac-autosize-stove-oil-only.xml,14077.0,0.0,0.0,411.0,0.0 +houston-hvac-autosize-stove-wood-pellets-only.xml,14077.0,0.0,0.0,411.0,0.0 +houston-hvac-autosize-undersized.xml,17839.0,23548.0,0.0,325.0,979.0 +houston-hvac-autosize-wall-furnace-elec-only.xml,14077.0,0.0,0.0,411.0,0.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1.csv b/workflow/tests/base_results/results_workflow_simulations1.csv index 5c6e9012ad..5b776a9472 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -198,7 +198,7 @@ base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.204 base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,54.961,54.961,40.555,40.555,14.406,0.0,0.0,0.0,0.0,0.0,3.945,0.335,0.0,1.389,3.519,1.076,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.075,13.342,9.075,0.614,0.0,0.0,0.0,0.0,3460.6,3291.7,3460.6,24.191,16.402,0.0,3.435,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,7.753,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.286,52.286,37.48,37.48,14.806,0.0,0.0,0.0,0.0,0.0,2.981,0.185,0.0,1.042,2.342,0.638,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.021,15.108,13.578,9.075,0.614,0.0,0.0,0.0,0.0,2838.6,2815.4,2838.6,24.191,17.378,0.0,3.423,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.321,-0.065,4.808,0.0,0.729,0.0,8.106,-8.906,-2.499,0.0,-0.018,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.104,-0.166,0.0,2.311,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.256,52.256,37.802,37.802,14.455,0.0,0.0,0.0,0.0,0.0,2.935,0.235,0.0,1.755,2.378,0.206,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.705,15.487,14.829,9.075,0.614,0.0,0.0,0.0,0.0,2830.6,2607.5,2830.6,24.544,18.191,0.0,3.362,3.646,0.513,7.535,0.631,10.108,-12.683,0.0,0.0,0.0,8.325,-0.065,4.808,0.0,0.729,0.0,9.832,-8.906,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.347,-0.061,-1.17,-3.105,-0.166,0.0,3.603,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.24,47.24,36.105,36.105,11.135,0.0,0.0,0.0,0.0,0.0,2.467,0.09,0.0,0.916,2.263,0.077,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.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,19.241,11.495,12.271,9.075,0.614,0.0,0.0,0.0,0.0,2552.8,2190.2,2552.8,19.295,13.794,0.0,3.614,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.73,0.0,3.178,-8.906,-2.499,0.0,0.029,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.102,-0.166,0.0,0.99,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,46.995,46.995,35.586,35.586,11.409,0.0,0.0,0.0,0.0,0.0,2.48,0.056,0.0,0.5,2.166,0.092,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.116,11.338,12.152,9.075,0.614,0.0,0.0,0.0,0.0,2544.7,2192.8,2544.7,19.067,13.675,0.0,3.618,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.73,0.0,3.05,-8.906,-2.499,0.0,0.033,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.101,-0.166,0.0,0.867,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ducts-area-fractions.xml,92.462,92.462,46.689,46.689,45.773,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,8.1,1.711,8.86,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,0.0,45.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,42.722,0.0,29.448,8.989,0.612,0.0,0.0,5.0,77.0,2576.6,5032.8,5032.8,48.976,34.989,0.0,3.225,7.897,1.073,7.933,0.668,20.527,-25.252,0.0,0.0,0.0,9.073,-0.115,11.172,0.0,0.748,0.0,19.695,-10.961,-3.544,0.0,-0.381,-1.035,-0.1,2.663,-0.023,-2.118,23.314,0.0,0.0,0.0,-6.455,-0.103,-2.483,-6.345,-0.161,0.0,10.861,9.395,2.829,1354.8,997.6,11171.6,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,71257.0,33166.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ducts-area-multipliers.xml,57.428,57.428,35.802,35.802,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.318,0.835,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.257,0.0,14.12,9.075,0.614,0.0,0.0,0.0,0.0,2116.7,3362.7,3362.7,22.356,18.576,0.0,3.579,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.219,-8.905,-2.499,0.0,-0.04,-0.464,-0.052,2.684,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.105,-0.166,0.0,2.856,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18409.0,4950.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ducts-buried.xml,55.777,55.777,35.554,35.554,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.135,0.794,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.93,0.0,13.273,9.075,0.614,0.0,0.0,0.0,0.0,2110.2,3067.9,3067.9,20.269,15.91,0.0,3.625,3.644,0.513,7.528,0.631,10.097,-12.683,0.0,0.0,0.0,8.31,-0.062,4.806,0.0,0.729,0.0,2.851,-8.903,-2.499,0.0,-0.008,-0.465,-0.052,2.684,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.171,-3.105,-0.166,0.0,1.988,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,28613.0,4973.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15788.0,2330.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -239,13 +239,13 @@ base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.612,58.612,35.17 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,57.946,57.946,34.507,34.507,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.516,0.417,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,16.445,9.075,0.614,0.0,0.0,0.0,8.0,2098.9,2840.6,2840.6,24.074,18.031,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.154,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.114,-0.166,0.0,5.274,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,54.843,54.843,30.726,30.726,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.643,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2091.6,1623.6,2091.6,25.358,0.0,0.0,3.488,3.648,0.513,7.514,0.632,10.112,-12.683,0.0,0.0,0.0,8.148,-0.067,4.809,0.0,0.73,0.0,6.844,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-ground-to-air-heat-pump.xml,41.672,41.672,41.672,41.672,0.0,0.0,0.0,0.0,0.0,0.0,6.352,0.476,0.0,0.0,3.682,0.87,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.352,0.0,13.86,9.075,0.614,0.0,0.0,0.0,0.0,3507.6,2937.9,3507.6,22.424,17.272,0.0,3.575,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.312,-0.064,4.807,0.0,0.729,0.0,4.317,-8.905,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.106,-0.166,0.0,2.602,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.977,33.977,33.977,33.977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.473,0.168,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.745,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2665.4,2665.4,0.0,14.329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.017,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.02,-0.167,0.0,1.829,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.78,40.78,40.78,40.78,0.0,0.0,0.0,0.0,0.0,0.0,6.996,0.563,0.03,0.002,2.747,0.15,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.361,0.032,12.566,9.075,0.614,0.0,0.0,0.0,0.0,4461.3,2331.0,4461.3,19.46,14.238,0.0,3.609,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.73,0.0,3.301,-8.906,-2.499,0.0,0.02,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.103,-0.166,0.0,1.295,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,33.295,33.295,33.295,33.295,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.878,0.079,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.397,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2273.8,2273.8,0.0,14.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.002,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.018,-0.167,0.0,1.467,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.817,33.817,33.817,33.817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.291,0.189,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.529,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2556.8,2556.8,0.0,14.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.007,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,1.603,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.47,40.47,40.47,40.47,0.0,0.0,0.0,0.0,0.0,0.0,7.034,0.308,0.034,0.001,2.624,0.175,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.188,0.035,12.398,9.075,0.614,0.0,0.0,0.0,0.0,4372.0,2328.8,4372.0,19.221,14.112,0.0,3.615,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.73,0.0,3.125,-8.906,-2.499,0.0,0.026,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.102,-0.166,0.0,1.12,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,33.205,33.205,33.205,33.205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.775,0.093,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.225,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2191.5,2191.5,0.0,13.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.017,-0.167,0.0,1.288,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ductless.xml,33.144,33.144,33.144,33.144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.78,0.027,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2124.9,2124.9,0.0,11.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.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.614,32.614,32.614,32.614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.201,0.075,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.909,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2219.4,2219.4,0.0,13.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.016,-0.167,0.0,0.965,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.156,36.156,36.156,36.156,0.0,0.0,0.0,0.0,0.0,0.0,5.585,0.293,0.009,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.718,0.009,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3844.2,1621.8,3844.2,19.298,0.0,0.0,3.629,3.647,0.513,7.511,0.632,10.112,-12.683,0.0,0.0,0.0,8.146,-0.069,4.81,0.0,0.73,0.0,2.807,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,38.568,38.568,38.568,38.568,0.0,0.0,0.0,0.0,0.0,0.0,5.631,0.295,0.009,0.0,2.263,0.077,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.907,0.009,12.271,9.075,0.614,0.0,0.0,0.0,0.0,3844.2,2190.2,3844.2,19.298,13.794,0.0,3.625,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,2.833,-8.906,-2.499,0.0,0.029,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.102,-0.166,0.0,0.99,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.533,32.533,32.533,32.533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.107,0.089,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.793,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2186.6,2186.6,0.0,13.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.017,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.016,-0.167,0.0,0.845,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.157,36.157,36.157,36.157,0.0,0.0,0.0,0.0,0.0,0.0,5.601,0.278,0.009,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.759,0.01,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3843.7,1621.8,3843.7,19.325,0.0,0.0,3.628,3.647,0.513,7.511,0.632,10.112,-12.683,0.0,0.0,0.0,8.146,-0.069,4.81,0.0,0.73,0.0,2.849,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,38.378,38.378,38.378,38.378,0.0,0.0,0.0,0.0,0.0,0.0,5.648,0.17,0.009,0.0,2.166,0.092,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.883,0.01,12.152,9.075,0.614,0.0,0.0,0.0,0.0,3785.0,2192.8,3785.0,19.069,13.675,0.0,3.626,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,2.81,-8.906,-2.499,0.0,0.033,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.101,-0.166,0.0,0.867,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.097,38.097,38.097,38.097,0.0,0.0,0.0,0.0,0.0,0.0,5.212,0.115,0.362,0.0,2.087,0.029,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.362,11.294,9.075,0.614,0.0,0.0,0.0,0.0,4409.2,2164.8,4409.2,16.439,11.922,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,44.789,44.789,35.788,35.788,9.001,0.0,0.0,0.0,0.0,0.0,3.069,0.052,0.0,0.271,2.074,0.029,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.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,17.336,7.472,11.194,9.075,0.614,0.0,0.0,1.0,0.0,2854.9,2251.5,2854.9,17.264,12.084,0.0,3.742,3.641,0.512,7.519,0.63,10.092,-12.69,0.0,0.0,0.0,8.311,-0.063,5.886,0.0,0.729,0.0,0.111,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.435,-3.05,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,24589.0,950.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.521,44.521,35.621,35.621,8.901,0.0,0.0,0.0,0.0,0.0,2.896,0.048,0.0,0.268,2.087,0.029,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,16.569,7.389,11.294,9.075,0.614,0.0,0.0,1.0,0.0,2781.4,2164.7,2781.4,17.577,11.922,0.0,3.724,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.306,-0.065,4.807,0.0,0.73,0.0,0.41,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -274,93 +274,3 @@ base-hvac-stove-oil-only.xml,51.59,51.59,30.334,30.334,0.0,21.257,0.0,0.0,0.0,0. base-hvac-stove-wood-pellets-only.xml,51.59,51.59,30.334,30.334,0.0,0.0,0.0,0.0,21.257,0.0,0.0,0.064,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2022.6,1637.4,2022.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-undersized.xml,48.249,48.249,33.001,33.001,15.248,0.0,0.0,0.0,0.0,0.0,0.0,0.246,0.0,0.0,2.091,0.358,9.03,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,6.336,9.075,0.629,0.0,0.0,3652.0,2624.0,2087.0,1833.3,2087.0,3.839,2.674,0.0,2.699,2.924,0.409,5.375,0.449,7.904,-12.797,0.0,0.0,0.0,4.76,-0.121,3.617,0.0,0.6,0.0,9.541,-9.006,-2.517,0.0,-0.382,-0.821,-0.104,1.556,-0.119,-2.517,11.616,0.0,0.0,0.0,-8.136,-0.065,-1.431,-5.137,-0.237,0.0,2.648,7.787,1.992,1354.8,997.6,11171.5,2563.5,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17384.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-wall-furnace-elec-only.xml,46.62,46.62,46.62,46.62,0.0,0.0,0.0,0.0,0.0,0.0,16.351,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,6008.3,1614.5,6008.3,16.439,0.0,0.0,3.745,3.645,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.808,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-ceiling-fans.xml,58.564,58.564,36.318,36.318,22.245,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.306,0.831,9.014,0.0,0.0,4.51,0.0,0.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,0.0,22.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,20.832,0.0,14.07,9.075,0.612,0.0,0.0,0.0,0.0,2119.4,3806.0,3806.0,23.032,18.911,0.0,3.557,3.645,0.513,7.528,0.631,10.101,-12.683,0.0,0.0,0.0,8.298,-0.064,4.807,0.0,0.729,0.0,4.828,-8.905,-2.499,0.0,-0.096,-0.512,-0.059,2.557,-0.038,-1.551,11.73,0.0,0.0,0.0,-6.547,-0.06,-1.206,-3.271,-0.174,0.0,3.088,8.396,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-holiday.xml,58.396,58.396,36.13,36.13,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2407.8,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-kwh-per-year.xml,59.913,59.913,39.538,39.538,20.375,0.0,0.0,0.0,0.0,0.0,0.0,0.336,0.0,0.0,4.649,0.916,9.015,0.0,0.0,7.677,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.08,0.0,15.473,9.075,0.612,0.0,0.0,0.0,0.0,2414.8,3590.1,3590.1,22.763,19.626,0.0,3.59,3.667,0.516,7.602,0.636,10.162,-12.654,0.0,0.0,0.0,8.406,-0.069,4.817,0.0,0.731,0.0,4.463,-8.891,-4.249,0.0,-0.097,-0.498,-0.057,2.592,-0.035,-1.503,11.743,0.0,0.0,0.0,-6.501,-0.065,-1.196,-3.239,-0.17,0.0,3.373,7.886,3.428,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-mixed.xml,58.375,58.375,36.108,36.108,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.511,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2131.0,3427.5,3427.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none-ceiling-fans.xml,56.139,56.139,31.121,31.121,25.018,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,3.983,0.752,9.017,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.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.43,0.0,12.694,9.075,0.614,0.0,0.0,0.0,0.0,1722.6,3224.7,3224.7,23.408,18.18,0.0,3.512,3.616,0.509,7.437,0.625,10.031,-12.718,0.0,0.0,0.0,8.185,-0.059,4.798,0.0,0.728,0.0,5.362,-8.928,0.0,0.0,-0.037,-0.463,-0.052,2.696,-0.025,-1.404,11.719,0.0,0.0,0.0,-6.311,-0.055,-1.167,-3.071,-0.168,0.0,2.857,8.374,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-lighting-none.xml,55.77,55.77,30.73,30.73,25.039,0.0,0.0,0.0,0.0,0.0,0.0,0.413,0.0,0.0,4.089,0.778,9.018,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,0.0,25.039,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.45,0.0,13.071,9.075,0.615,0.0,0.0,0.0,0.0,1722.6,3193.0,3193.0,23.408,18.394,0.0,3.512,3.615,0.509,7.439,0.625,10.03,-12.718,0.0,0.0,0.0,8.2,-0.059,4.798,0.0,0.728,0.0,5.366,-8.928,0.0,0.0,0.002,-0.415,-0.045,2.824,-0.014,-1.261,11.719,0.0,0.0,0.0,-6.115,-0.055,-1.132,-2.911,-0.16,0.0,2.973,7.851,0.0,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-location-AMY-2012.xml,66.976,66.976,34.799,34.799,32.177,0.0,0.0,0.0,0.0,0.0,0.0,0.523,0.0,0.0,3.0,0.508,9.424,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,0.0,32.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,30.128,0.0,8.862,9.508,0.619,0.0,0.0,0.0,0.0,2145.3,2888.8,2888.8,23.49,15.96,0.0,4.266,4.384,0.623,9.837,0.807,12.591,-13.801,0.0,0.0,0.0,10.991,-0.092,5.205,0.0,0.773,0.0,7.113,-10.172,-2.863,0.0,-0.007,-0.342,-0.042,1.616,-0.044,-1.659,9.941,0.0,0.0,0.0,-7.422,-0.082,-0.883,-2.44,-0.097,0.0,2.153,6.66,1.661,1358.5,1000.6,11355.8,2605.8,0.0,36000.0,24000.0,0.0,10.22,91.4,30666.0,8343.0,7102.0,0.0,543.0,6470.0,0.0,0.0,1844.0,2054.0,4311.0,18522.0,5156.0,7000.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,3320.0,0.0,0.0,0.0,0.0 -base-location-baltimore-md.xml,39.142,39.142,29.933,29.933,9.208,0.0,0.0,0.0,0.0,0.0,0.0,0.038,0.0,0.0,5.174,1.068,8.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,0.0,9.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,0.0,0.0,8.506,0.0,17.289,8.405,0.66,0.0,0.0,0.0,0.0,1684.4,2574.3,2574.3,13.608,14.218,0.0,3.492,3.345,0.0,0.0,0.722,9.055,-8.541,0.0,0.0,3.31,0.0,-0.336,2.06,0.0,0.803,0.0,1.498,-5.842,-1.3,0.0,-0.135,-0.628,0.0,0.0,-0.007,0.03,12.018,0.0,0.0,-0.954,0.0,-0.329,-0.438,-1.537,-0.211,0.0,1.593,6.742,1.348,1354.8,997.6,10815.2,2664.9,0.0,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,15107.0,1152.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,3320.0,1875.0,594.0,480.0,800.0 -base-location-capetown-zaf.xml,28.183,28.183,28.023,28.023,0.16,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,4.338,1.043,7.511,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.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,16.618,7.296,0.693,0.0,0.0,0.0,0.0,1916.8,2396.9,2396.9,4.202,12.626,0.0,1.596,1.352,0.0,0.0,0.569,4.539,-5.631,0.0,0.0,2.602,0.0,-1.072,0.757,0.0,0.326,0.0,0.023,-4.303,-0.792,0.0,-0.907,-1.638,0.0,0.0,-0.468,-0.619,17.811,0.0,0.0,-4.251,0.0,-1.071,-0.601,-2.04,-0.407,0.0,1.031,8.28,1.855,1354.8,997.6,10368.9,2554.9,0.0,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,13719.0,2061.0,5640.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,3320.0,846.0,27.0,19.0,800.0 -base-location-dallas-tx.xml,34.478,34.478,32.756,32.756,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.007,0.0,0.0,8.988,1.921,6.708,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,1.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.588,0.0,31.101,6.562,0.573,0.0,0.0,0.0,0.0,1932.4,2858.4,2858.4,9.692,15.096,0.0,1.711,1.591,0.0,0.0,0.368,4.651,-4.907,0.0,0.0,0.0,1.212,-0.34,0.998,0.0,0.383,0.0,0.043,-3.597,-0.743,0.0,0.508,-0.048,0.0,0.0,0.188,2.608,17.264,0.0,0.0,0.0,1.812,-0.335,-0.366,-1.955,-0.099,0.0,0.352,9.56,1.904,1354.8,997.6,9789.3,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-location-duluth-mn.xml,70.644,70.644,29.75,29.75,40.894,0.0,0.0,0.0,0.0,0.0,0.0,0.435,0.0,0.0,2.387,0.36,11.437,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,40.894,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,5.767,11.397,0.833,0.0,0.0,0.0,0.0,1752.4,2463.1,2463.1,26.512,11.636,0.0,7.03,7.028,0.0,0.0,1.592,19.664,-13.103,0.0,0.0,9.994,0.0,-0.367,6.402,0.0,0.0,0.0,7.573,-6.247,-1.915,0.0,-0.474,-0.828,0.0,0.0,-0.101,-0.953,8.135,0.0,0.0,-1.63,0.0,-0.366,-0.533,-1.022,0.0,0.0,0.365,2.618,0.732,1354.8,997.6,11924.5,2831.6,0.0,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,11642.0,148.0,5878.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,3320.0,1210.0,246.0,164.0,800.0 -base-location-helena-mt.xml,77.775,77.775,35.31,35.31,42.465,0.0,0.0,0.0,0.0,0.0,0.0,1.04,0.0,0.0,2.442,0.387,10.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,0.0,42.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.108,0.0,6.492,10.298,0.625,0.0,0.0,0.0,0.0,2236.8,3031.4,3031.4,30.328,14.971,0.0,5.359,5.464,0.773,11.523,1.049,15.462,-15.392,0.0,0.0,0.0,13.841,-0.19,7.82,0.0,1.206,0.0,8.245,-12.135,-3.367,0.0,0.002,-0.26,-0.028,1.289,0.008,-0.496,8.386,0.0,0.0,0.0,-6.087,-0.184,-0.686,-2.363,-0.123,0.0,1.356,4.654,1.142,1354.8,997.6,11614.9,2665.3,0.0,48000.0,24000.0,0.0,-8.14,89.24,39966.0,10036.0,9283.0,0.0,710.0,8457.0,0.0,0.0,2410.0,2684.0,6386.0,17992.0,5113.0,6838.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,3320.0,81.0,0.0,-719.0,800.0 -base-location-honolulu-hi.xml,35.935,35.935,35.935,35.935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.061,2.998,4.745,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,0.0,48.787,4.497,0.55,0.0,0.0,0.0,0.0,2122.6,2146.7,2335.5,0.0,13.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.238,0.753,0.0,0.0,0.303,5.283,20.458,0.0,0.0,0.0,6.02,-0.004,-0.044,-1.672,0.062,0.0,0.743,13.134,2.647,1354.8,997.6,8369.7,2062.3,0.0,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,13034.0,32.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1831.0,580.0,452.0,800.0 -base-location-miami-fl.xml,35.09,35.09,35.09,35.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.291,2.793,4.875,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,0.0,45.316,4.634,0.551,0.0,0.0,0.0,0.0,2099.0,2422.8,2422.8,0.0,13.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,0.0,0.0,1.018,0.586,0.0,0.0,0.307,4.475,19.646,0.0,0.0,0.0,5.54,-0.004,-0.213,-2.328,-0.004,0.0,0.686,13.135,2.647,1354.8,997.6,8452.7,2082.8,0.0,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,13318.0,-220.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,3320.0,2519.0,954.0,765.0,800.0 -base-location-phoenix-az.xml,38.788,38.788,38.788,38.788,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.537,3.015,5.104,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.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,0.0,53.071,4.873,0.556,0.0,0.0,0.0,0.0,2459.3,3352.6,3352.6,0.564,18.418,0.0,0.703,0.517,0.0,0.0,0.205,2.241,-1.843,0.0,0.0,0.0,-0.075,-0.467,0.365,0.0,0.122,0.0,-0.0,-1.611,-0.274,0.0,1.761,1.4,0.0,0.0,0.802,6.859,24.223,0.0,0.0,0.0,7.006,-0.479,0.01,-3.136,0.116,0.0,0.952,11.529,2.373,1354.8,997.6,8260.4,2035.4,0.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,18582.0,689.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,3320.0,514.0,0.0,-286.0,800.0 -base-location-portland-or.xml,37.155,37.155,27.618,27.618,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,2.946,0.564,8.939,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,9.537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.811,0.0,9.043,8.727,0.78,0.0,0.0,0.0,0.0,1685.4,2715.8,2715.8,8.448,14.135,0.0,3.436,3.276,0.0,0.0,0.748,8.757,-8.143,0.0,0.0,6.216,0.0,-0.442,1.469,0.0,0.81,0.0,1.633,-7.49,-1.648,0.0,-0.327,-0.797,0.0,0.0,-0.01,-0.756,10.358,0.0,0.0,-2.964,0.0,-0.439,-0.366,-1.84,-0.257,0.0,0.567,5.094,0.999,1354.8,997.6,11014.7,2714.0,0.0,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,15200.0,2146.0,6570.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,3320.0,784.0,0.0,-16.0,800.0 -base-mechvent-balanced.xml,79.552,79.552,37.764,37.764,41.788,0.0,0.0,0.0,0.0,0.0,0.0,0.689,0.0,0.0,4.192,0.791,9.022,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,0.0,41.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.138,0.0,13.265,9.075,0.62,0.0,0.0,0.0,2.0,2207.2,3818.5,3818.5,32.383,20.91,0.0,3.502,3.716,0.523,7.451,0.654,10.375,-12.838,0.0,0.0,0.0,8.166,-0.114,5.497,0.0,15.075,0.0,8.573,-9.173,-2.568,0.0,0.144,-0.259,-0.023,3.003,0.031,-0.717,11.576,0.0,0.0,0.0,-5.946,-0.11,-1.02,-2.551,-3.554,0.0,3.224,7.611,1.941,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,38681.0,8743.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,10894.0,20470.0,5342.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-bath-kitchen-fans.xml,59.975,59.975,36.023,36.023,23.952,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,4.376,0.847,9.016,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,0.0,23.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,22.43,0.0,14.266,9.075,0.614,0.0,0.0,0.0,0.0,2158.0,3615.5,3615.5,24.906,20.551,0.0,3.547,3.643,0.513,7.527,0.631,10.093,-12.692,0.0,0.0,0.0,8.326,-0.059,4.321,0.0,2.474,0.0,5.168,-8.912,-2.501,0.0,-0.042,-0.451,-0.05,2.727,-0.023,-1.37,11.721,0.0,0.0,0.0,-6.275,-0.056,-1.046,-3.038,-0.687,0.0,3.188,7.867,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,72.901,72.901,37.671,37.671,35.231,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,0.0,4.282,0.816,9.02,0.0,0.0,4.51,0.0,0.334,1.695,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.231,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.997,0.0,13.701,9.075,0.618,0.0,0.0,0.0,0.0,2174.2,3597.8,3597.8,29.389,20.853,0.0,3.484,3.659,0.515,7.505,0.637,10.165,-12.749,0.0,0.0,0.0,8.338,-0.07,1.505,0.0,13.86,0.0,7.362,-9.0,-2.522,0.0,0.036,-0.367,-0.038,2.917,0.001,-1.081,11.664,0.0,0.0,0.0,-5.978,-0.066,-0.256,-2.751,-3.283,0.0,3.25,7.782,1.988,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-dse.xml,73.017,73.017,38.627,38.627,34.39,0.0,0.0,0.0,0.0,0.0,0.0,0.567,0.0,0.0,5.004,0.911,9.02,0.0,0.0,4.51,0.0,0.334,1.848,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.747,0.0,10.529,9.075,0.618,0.0,0.0,0.0,0.0,2173.6,2798.3,2798.3,21.242,13.449,0.0,3.757,3.654,0.514,7.497,0.636,10.158,-12.737,0.0,0.0,0.0,8.324,-0.073,1.505,0.0,13.737,0.0,0.0,-8.997,-2.521,0.0,0.127,-0.369,-0.038,2.916,0.001,-1.083,11.676,0.0,0.0,0.0,-5.982,-0.069,-0.256,-2.741,-3.253,0.0,0.0,7.785,1.989,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,14620.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-evap-cooler-only-ducted.xml,34.022,34.022,34.022,34.022,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.914,9.084,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,0.0,0.0,11.391,9.075,0.687,0.0,0.0,0.0,0.0,2119.8,2031.0,2119.8,0.0,18.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.146,-0.36,-0.036,2.984,-0.004,-1.109,11.85,0.0,0.0,0.0,-6.577,-0.059,-0.257,-2.577,-3.1,0.0,0.643,8.012,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,26840.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,16881.0,2261.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,70.121,70.121,36.324,36.324,33.797,0.0,0.0,0.0,0.0,0.0,0.0,0.558,0.0,0.0,4.194,0.795,9.021,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,0.0,33.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,31.654,0.0,13.35,9.075,0.619,0.0,0.0,0.0,0.0,2131.0,3597.8,3597.8,29.39,20.838,0.0,3.517,3.68,0.518,7.479,0.643,10.242,-12.776,0.0,0.0,0.0,8.264,-0.086,1.917,0.0,12.478,0.0,7.088,-9.068,-2.54,0.0,0.091,-0.314,-0.031,2.98,0.015,-0.906,11.637,0.0,0.0,0.0,-5.925,-0.082,-0.256,-2.616,-4.008,0.0,3.173,7.715,1.97,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis-supplemental-fan-supply.xml,72.242,72.242,36.351,36.351,35.891,0.0,0.0,0.0,0.0,0.0,0.0,0.592,0.0,0.0,4.2,0.796,9.021,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,0.0,35.891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.616,0.0,13.348,9.075,0.619,0.0,0.0,0.0,0.0,2161.0,3597.7,3597.7,29.39,20.842,0.0,3.491,3.668,0.516,7.49,0.64,10.204,-12.763,0.0,0.0,0.0,8.302,-0.081,1.508,0.0,14.424,0.0,7.476,-9.034,-2.53,0.0,0.067,-0.338,-0.034,2.955,0.009,-0.983,11.65,0.0,0.0,0.0,-5.938,-0.077,-0.246,-2.659,-3.883,0.0,3.198,7.749,1.98,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-cfis.xml,74.112,74.112,37.603,37.603,36.51,0.0,0.0,0.0,0.0,0.0,0.0,0.602,0.0,0.0,4.229,0.802,9.021,0.0,0.0,4.51,0.0,0.334,1.672,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.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,34.195,0.0,13.453,9.075,0.618,0.0,0.0,0.0,0.0,2171.8,3671.6,3671.6,29.388,20.835,0.0,3.49,3.703,0.521,7.473,0.651,10.331,-12.78,0.0,0.0,0.0,8.223,-0.114,1.519,0.0,14.05,0.0,8.491,-9.097,-2.548,0.0,0.142,-0.305,-0.029,2.935,0.02,-0.861,11.633,0.0,0.0,0.0,-6.011,-0.11,-0.235,-2.664,-3.054,0.0,2.492,7.686,1.962,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv-atre-asre.xml,65.017,65.017,37.795,37.795,27.222,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.407,0.852,9.018,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,0.0,27.222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.494,0.0,14.334,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3624.1,3624.1,25.349,20.26,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.906,0.0,5.81,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.057,-1.258,-2.954,-0.853,0.0,3.261,7.851,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-erv.xml,65.021,65.021,37.795,37.795,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.407,0.852,9.018,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,0.0,27.225,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.497,0.0,14.334,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3624.2,3624.2,25.35,20.26,0.0,3.519,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.909,0.0,5.811,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.258,-2.954,-0.854,0.0,3.261,7.851,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19144.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust-rated-flow-rate.xml,73.787,73.787,36.76,36.76,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.168,0.787,9.021,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,0.0,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.678,0.0,13.2,9.075,0.619,0.0,0.0,0.0,0.0,2164.0,3627.8,3627.8,29.44,20.863,0.0,3.5,3.682,0.518,7.48,0.643,10.243,-12.791,0.0,0.0,0.0,8.263,-0.082,1.462,0.0,15.396,0.0,7.675,-9.072,-2.541,0.0,0.094,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.923,-0.078,-0.232,-2.607,-4.199,0.0,3.184,7.711,1.968,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-exhaust.xml,73.787,73.787,36.76,36.76,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.611,0.0,0.0,4.168,0.787,9.021,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,0.0,37.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.678,0.0,13.2,9.075,0.619,0.0,0.0,0.0,0.0,2164.0,3627.8,3627.8,29.44,20.863,0.0,3.5,3.682,0.518,7.48,0.643,10.243,-12.791,0.0,0.0,0.0,8.263,-0.082,1.462,0.0,15.396,0.0,7.675,-9.072,-2.541,0.0,0.094,-0.311,-0.03,2.983,0.016,-0.904,11.623,0.0,0.0,0.0,-5.923,-0.078,-0.232,-2.607,-4.199,0.0,3.184,7.711,1.968,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv-asre.xml,65.018,65.018,37.799,37.799,27.22,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.409,0.853,9.018,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,0.0,27.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,25.492,0.0,14.336,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3625.3,3625.3,25.348,20.261,0.0,3.52,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.904,0.0,5.81,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.057,-1.258,-2.954,-0.852,0.0,3.263,7.851,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33594.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5920.0,19143.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-hrv.xml,65.021,65.021,37.799,37.799,27.223,0.0,0.0,0.0,0.0,0.0,0.0,0.449,0.0,0.0,4.409,0.853,9.018,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,0.0,27.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.495,0.0,14.336,9.075,0.615,0.0,0.0,0.0,0.0,2181.3,3625.4,3625.4,25.349,20.262,0.0,3.52,3.64,0.512,7.519,0.63,10.091,-12.705,0.0,0.0,0.0,8.344,-0.06,5.398,0.0,3.906,0.0,5.81,-8.928,-2.504,0.0,-0.03,-0.434,-0.048,2.792,-0.018,-1.305,11.708,0.0,0.0,0.0,-6.171,-0.056,-1.258,-2.954,-0.853,0.0,3.263,7.851,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,33595.0,8632.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,5921.0,19144.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-multiple.xml,80.721,80.721,38.234,38.234,42.487,0.0,0.0,0.0,0.0,0.0,0.0,0.698,0.0,0.0,4.557,0.697,9.024,0.0,0.0,4.51,0.0,0.334,1.575,0.0,0.0,0.405,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.794,0.0,11.684,9.075,0.622,0.0,0.0,0.0,22.0,2271.7,3653.3,3653.3,35.903,22.624,0.0,3.183,3.709,0.522,7.491,0.652,10.33,-12.791,0.0,0.0,0.0,8.289,-0.106,3.845,0.0,9.548,0.0,16.428,-9.091,-2.547,0.0,0.052,-0.213,-0.016,3.196,0.041,-0.606,11.623,0.0,0.0,0.0,-5.618,-0.101,-0.613,0.0,-2.152,-8.169,4.731,7.695,1.963,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,42760.0,16253.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7464.0,24528.0,10278.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-supply.xml,72.37,72.37,36.832,36.832,35.538,0.0,0.0,0.0,0.0,0.0,0.0,0.586,0.0,0.0,4.245,0.807,9.021,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,0.0,35.538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.284,0.0,13.531,9.075,0.618,0.0,0.0,0.0,0.0,2190.3,3627.7,3627.7,29.255,20.864,0.0,3.493,3.667,0.516,7.492,0.64,10.201,-12.763,0.0,0.0,0.0,8.307,-0.08,1.508,0.0,14.154,0.0,7.409,-9.032,-2.53,0.0,0.063,-0.34,-0.034,2.955,0.009,-0.988,11.65,0.0,0.0,0.0,-5.936,-0.076,-0.247,-2.665,-3.722,0.0,3.233,7.75,1.98,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35510.0,8671.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7797.0,19952.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,3320.0,0.0,0.0,0.0,0.0 -base-mechvent-whole-house-fan.xml,56.716,56.716,34.269,34.269,22.446,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,2.535,0.4,9.024,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.664,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.021,0.0,6.56,9.075,0.622,0.0,0.0,0.0,0.0,2119.4,3442.0,3442.0,23.032,16.245,0.0,3.554,3.643,0.513,7.547,0.63,10.093,-12.683,0.0,0.0,0.0,8.434,-0.057,4.805,0.0,0.729,0.0,4.871,-8.905,-2.499,0.0,0.088,-0.266,-0.023,3.27,0.022,-0.818,11.73,0.0,0.0,0.0,-5.409,-0.053,-0.992,0.0,-0.135,-11.71,1.806,7.881,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-additional-properties.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-detailed-only.xml,58.197,31.311,35.931,9.044,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv-mixed.xml,58.197,31.311,35.931,9.044,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills-pv.xml,58.197,0.934,35.931,-21.333,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-defaults.xml,63.307,43.858,31.515,12.065,31.792,0.0,0.0,0.0,0.0,0.0,0.0,0.524,0.0,0.0,2.267,0.338,2.103,0.0,0.313,4.51,0.0,0.334,1.118,0.0,0.0,1.081,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.45,0.0,0.507,31.792,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.759,0.0,5.464,10.472,0.696,0.0,9.068,0.0,0.0,2428.2,2982.4,2982.4,26.046,15.217,0.0,3.491,3.687,0.518,7.47,1.119,10.315,-12.806,0.0,0.0,0.0,8.267,-0.095,1.531,0.0,15.069,0.0,2.756,-9.283,-2.557,0.0,0.69,-0.095,0.001,3.444,-0.195,-0.322,11.607,0.0,0.0,0.0,-5.223,-0.091,-0.199,0.0,-3.419,-10.855,0.449,8.628,1.952,1610.4,1574.2,10319.0,3636.6,2.882,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-emissions.xml,59.016,32.13,36.75,9.863,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.819,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2176.0,3497.5,3497.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,13.658,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery-scheduled.xml,76.932,68.743,37.665,29.476,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,1.735,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,1.675,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators-battery.xml,75.197,67.008,35.931,27.742,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-generators.xml,75.197,67.008,35.931,27.742,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-8.189,0.0,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-ground-conductivity.xml,55.888,55.888,35.854,35.854,20.034,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,4.383,0.85,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.034,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.76,0.0,14.314,9.075,0.613,0.0,0.0,0.0,0.0,2120.8,3428.3,3428.3,22.146,19.178,0.0,3.593,3.668,0.516,7.311,0.636,10.165,-12.663,0.0,0.0,0.0,6.694,-0.064,4.813,0.0,0.731,0.0,4.399,-8.891,-2.496,0.0,-0.066,-0.474,-0.053,2.388,-0.029,-1.439,11.75,0.0,0.0,0.0,-6.137,-0.059,-1.181,-3.121,-0.168,0.0,3.192,7.886,2.014,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31959.0,8588.0,7508.0,0.0,575.0,6571.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon.xml,146.132,146.132,68.391,68.391,69.746,0.0,2.499,5.496,0.0,0.0,0.0,0.28,0.0,0.0,5.409,1.107,9.012,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,0.0,16.981,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,15.9,0.0,18.753,9.075,0.609,0.0,0.0,0.0,0.0,3267.1,5181.8,5181.8,21.946,20.73,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.832,0.0,0.734,0.0,3.78,-13.808,-2.35,0.0,-0.201,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.271,-3.573,-0.181,0.0,3.874,13.226,2.158,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-large-uncommon2.xml,92.616,92.616,64.841,64.841,19.779,2.499,0.0,0.0,5.496,0.0,0.0,0.28,0.0,0.0,5.409,1.107,9.012,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,0.0,16.981,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,15.9,0.0,18.753,9.075,0.609,0.0,0.0,0.0,0.0,3218.2,4779.3,4779.3,21.946,20.73,0.0,3.636,3.692,0.52,7.723,0.64,10.229,-12.598,0.0,0.0,0.0,8.553,-0.066,4.832,0.0,0.734,0.0,3.78,-13.808,-2.35,0.0,-0.201,-0.579,-0.068,2.406,-0.057,-1.762,11.815,0.0,0.0,0.0,-6.797,-0.063,-1.271,-3.573,-0.181,0.0,3.874,13.226,2.158,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-misc-loads-none.xml,52.934,52.934,24.686,24.686,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,3.725,0.689,9.019,0.0,0.0,4.51,0.0,0.334,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,0.0,28.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.457,0.0,11.563,9.075,0.617,0.0,0.0,0.0,0.0,1514.6,2831.7,2831.7,24.266,17.326,0.0,3.475,3.599,0.506,7.396,0.622,9.986,-12.73,0.0,0.0,0.0,8.165,-0.054,4.795,0.0,0.726,0.0,5.972,-3.801,-2.512,0.0,0.056,-0.368,-0.038,2.973,-0.001,-1.105,11.683,0.0,0.0,0.0,-5.88,-0.05,-1.085,-2.701,-0.152,0.0,2.706,3.706,1.998,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,26.466,26.466,25.631,25.631,0.835,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.569,0.438,9.536,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.835,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.772,0.0,7.007,9.374,0.585,0.0,0.0,0.0,0.0,1640.8,2079.1,2079.1,3.335,8.14,0.0,-0.013,3.83,0.0,0.0,0.417,4.067,-3.186,0.0,0.0,-0.01,0.0,-0.312,1.311,0.0,0.761,0.0,0.0,-5.319,-0.936,0.0,-0.008,-2.783,0.0,0.0,-0.012,-0.688,5.017,0.0,0.0,-0.005,0.0,-0.303,-0.394,-1.178,-0.271,0.0,0.0,6.656,1.09,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,6033.0,0.0,2576.0,0.0,287.0,1637.0,0.0,0.0,0.0,0.0,1532.0,7661.0,0.0,3264.0,0.0,103.0,767.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-misc-neighbor-shading.xml,63.226,63.226,35.673,35.673,27.553,0.0,0.0,0.0,0.0,0.0,0.0,0.455,0.0,0.0,4.134,0.79,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,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.803,0.0,13.302,9.075,0.615,0.0,0.0,0.0,0.0,2119.3,3351.5,3351.5,23.266,18.474,0.0,3.479,3.709,0.541,7.36,0.776,10.707,-8.74,0.0,0.0,0.0,7.861,-0.057,4.786,0.0,0.724,0.0,5.781,-8.918,-2.502,0.0,-0.014,-0.467,-0.054,2.778,-0.04,-1.339,10.323,0.0,0.0,0.0,-6.182,-0.052,-1.149,-2.99,-0.162,0.0,2.965,7.861,2.008,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-misc-shielding-of-home.xml,57.859,57.859,36.073,36.073,21.787,0.0,0.0,0.0,0.0,0.0,0.0,0.359,0.0,0.0,4.533,0.888,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.787,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.403,0.0,14.992,9.075,0.613,0.0,0.0,0.0,0.0,2130.6,3535.8,3535.8,23.012,19.034,0.0,3.562,3.647,0.513,7.535,0.631,10.101,-12.683,0.0,0.0,0.0,8.308,-0.061,4.424,0.0,0.73,0.0,4.741,-8.899,-2.498,0.0,-0.07,-0.476,-0.054,2.649,-0.03,-1.451,11.73,0.0,0.0,0.0,-6.41,-0.058,-1.066,-2.609,-0.168,0.0,3.276,7.878,2.012,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31389.0,8571.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,3775.0,18685.0,5334.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,3320.0,106.0,0.0,-694.0,800.0 -base-misc-unit-multiplier.xml,581.975,581.975,359.309,359.309,222.666,0.0,0.0,0.0,0.0,0.0,0.0,3.673,0.0,0.0,44.137,8.577,90.16,0.0,0.0,45.096,0.0,3.337,0.0,0.0,0.0,0.0,22.196,0.0,0.0,3.185,3.653,15.127,15.28,0.0,21.142,83.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,222.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,208.521,0.0,144.557,90.753,6.137,0.0,0.0,0.0,0.0,21193.7,34217.2,34217.2,230.319,191.217,0.0,35.573,36.457,5.131,75.308,6.309,101.023,-126.896,0.0,0.0,0.0,83.175,-0.635,48.076,0.0,7.296,0.0,48.328,-89.081,-24.996,0.0,-0.561,-4.631,-0.518,26.862,-0.262,-14.063,117.236,0.0,0.0,0.0,-63.454,-0.596,-11.7,-31.061,-1.655,0.0,32.059,78.695,20.1,13548.2,9976.1,111715.5,25635.3,0.0,360000.0,240000.0,0.0,6.8,91.76,322350.0,85950.0,75080.0,0.0,5750.0,68400.0,0.0,0.0,19490.0,21710.0,45970.0,187870.0,53290.0,70370.0,0.0,2070.0,2650.0,0.0,0.0,0.0,20100.0,6190.0,33200.0,0.0,0.0,0.0,0.0 -base-misc-usage-multiplier.xml,126.054,126.054,50.774,50.774,68.084,0.0,2.249,4.947,0.0,0.0,0.0,0.34,0.0,0.0,4.686,0.925,8.171,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,0.0,20.596,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.287,0.0,15.608,8.168,0.612,0.0,0.0,0.0,0.0,2729.6,4428.5,4428.5,22.733,19.742,0.0,3.581,3.659,0.515,7.576,0.633,10.138,-12.664,0.0,0.0,0.0,8.363,-0.065,4.863,0.0,0.658,0.0,4.503,-10.586,-2.246,0.0,-0.096,-0.496,-0.056,2.596,-0.035,-1.507,11.751,0.0,0.0,0.0,-6.491,-0.062,-1.211,-3.25,-0.153,0.0,3.386,9.606,1.813,1219.3,897.9,10054.4,2307.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-pv-battery-ah.xml,59.016,32.13,36.75,9.863,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.819,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2176.0,3497.5,3497.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,13.658,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-garage.xml,59.393,32.506,35.459,8.572,23.934,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.107,0.552,9.117,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.886,0.0,0.87,23.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.408,0.0,9.142,9.075,0.722,0.0,0.0,0.0,0.0,2200.9,2712.0,2712.0,18.031,11.774,0.0,3.532,3.792,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.368,0.0,0.0,0.0,3.763,-6.763,-2.508,0.0,0.104,-0.282,-0.037,2.418,-0.001,-1.134,8.269,0.0,0.0,0.0,-5.68,-0.041,-1.226,-2.106,0.0,0.0,1.34,5.683,2.002,1354.8,997.6,11171.6,2563.5,17.305,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15522.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-round-trip-efficiency.xml,60.371,33.485,38.105,11.219,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,2.174,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2301.3,3637.6,3637.6,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,4.375,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery-scheduled.xml,59.932,33.045,37.665,10.779,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,5.54,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-battery.xml,59.016,32.13,36.75,9.863,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.819,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2176.0,3497.5,3497.5,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,13.658,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery-scheduled.xml,76.932,41.856,37.665,2.59,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,1.735,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,16.713,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators-battery.xml,76.043,40.967,36.777,1.701,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.846,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2165.1,3486.7,3486.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,84.143,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv-generators.xml,75.197,40.122,35.931,0.855,30.766,8.5,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,-8.189,0.0,22.266,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,20.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-pv.xml,58.197,31.311,35.931,9.044,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0-runperiod-1-month.xml,8.7747,8.7747,0.4299,0.4299,8.3448,0.0,0.0,0.0,0.0,0.0,0.0,0.1377,0.0,0.0,0.1034,0.0,0.0468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0,0.0,0.0,0.0,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.3448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.8115,0.0,0.0,0.0,0.0511,0.0,0.0,0.0,0.0,556.16,0.0,556.16,26.8895,0.0,0.0,0.6029,0.6429,0.0909,1.7457,0.1095,1.7779,-1.9884,0.0,0.0,0.0,2.2351,-0.0005,1.0002,0.0,0.0,0.0,1.7427,-0.1932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-0.xml,41.422,41.422,7.378,7.378,34.044,0.0,0.0,0.0,0.0,0.0,0.0,0.562,0.0,0.0,3.403,0.618,0.576,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.0,0.0,0.0,0.0,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.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.888,0.0,10.868,0.0,0.62,0.0,0.0,0.0,0.0,544.1,2257.1,2257.1,25.495,15.665,0.0,3.424,3.586,0.504,7.285,0.62,9.981,-12.807,0.0,0.0,0.0,7.996,-0.063,5.417,0.0,0.0,0.0,7.057,-1.409,0.0,0.0,0.15,-0.28,-0.026,3.179,0.022,-0.825,11.63,0.0,0.0,0.0,-5.603,-0.058,-1.121,0.0,0.0,0.0,2.472,1.43,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon.xml,101.111,101.111,52.071,52.071,41.133,0.0,2.609,5.297,0.0,0.0,0.0,0.345,0.0,0.0,4.607,0.907,3.885,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,0.0,20.911,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.583,0.0,15.487,3.562,0.613,0.0,0.0,0.0,0.0,2604.8,4555.8,4555.8,22.989,19.677,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.814,0.0,0.729,0.0,4.575,-10.198,-2.496,0.0,-0.096,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.194,-3.22,-0.169,0.0,3.382,9.248,2.014,777.8,496.4,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1-misc-loads-large-uncommon2.xml,80.056,80.056,49.645,49.645,22.505,2.609,0.0,0.0,5.297,0.0,0.0,0.345,0.0,0.0,4.607,0.907,3.885,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,0.0,20.911,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.583,0.0,15.487,3.562,0.613,0.0,0.0,0.0,0.0,2406.4,4296.1,4296.1,22.989,19.677,0.0,3.583,3.663,0.516,7.591,0.635,10.153,-12.663,0.0,0.0,0.0,8.393,-0.066,4.814,0.0,0.729,0.0,4.575,-10.198,-2.496,0.0,-0.096,-0.496,-0.057,2.601,-0.035,-1.505,11.75,0.0,0.0,0.0,-6.487,-0.062,-1.194,-3.22,-0.169,0.0,3.382,9.248,2.014,777.8,496.4,4208.2,833.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19991.0,5332.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,4520.0,0.0,0.0,0.0,0.0 -base-residents-1.xml,52.81,52.81,28.439,28.439,24.371,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,4.081,0.777,3.887,0.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,0.0,24.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,22.824,0.0,13.244,3.562,0.615,0.0,0.0,0.0,0.0,1640.1,3237.9,3237.9,23.634,18.44,0.0,3.532,3.634,0.511,7.494,0.629,10.079,-12.698,0.0,0.0,0.0,8.289,-0.064,4.803,0.0,0.727,0.0,5.251,-7.189,-2.504,0.0,-0.017,-0.432,-0.047,2.784,-0.017,-1.299,11.715,0.0,0.0,0.0,-6.191,-0.06,-1.136,-2.934,-0.161,0.0,3.015,6.197,2.006,777.8,496.4,4208.3,833.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-residents-5.xml,69.406,49.155,39.893,19.641,29.514,0.0,0.0,0.0,0.0,0.0,0.0,0.487,0.0,0.0,2.386,0.366,6.918,0.0,0.326,4.51,0.0,0.334,1.118,0.0,0.0,1.107,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.251,0.0,0.395,29.514,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.625,0.0,5.885,18.166,0.644,0.0,11.901,0.0,0.0,3043.8,3224.5,3224.5,25.599,15.571,0.0,3.796,3.691,0.519,7.524,0.645,10.259,-12.764,0.0,0.0,0.0,8.385,-0.078,1.524,0.0,14.999,0.0,2.562,-11.178,-2.536,0.0,0.218,-0.167,-0.01,3.395,0.049,-0.49,11.649,0.0,0.0,0.0,-5.263,-0.074,-0.214,0.0,-3.588,-11.536,0.482,10.475,1.974,2592.1,2706.5,20694.5,5541.1,1.842,36000.0,24000.0,0.0,6.8,91.76,31001.0,4634.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,7324.0,15480.0,1007.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-all-10-mins.xml,59.576,59.576,36.179,36.179,23.397,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.59,0.894,9.022,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.397,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.91,0.0,15.004,9.053,0.638,0.0,0.0,0.333,1.333,9422.1,10717.0,10717.0,37.366,21.894,0.0,3.607,3.669,0.517,7.596,0.642,10.189,-12.601,0.0,0.0,0.0,8.33,-0.062,5.307,0.0,0.775,0.0,5.11,-8.969,-2.509,0.0,-0.179,-0.489,-0.056,2.704,-0.032,-1.437,11.752,0.0,0.0,0.0,-6.329,-0.058,-1.279,-3.004,-0.179,0.0,3.436,8.308,2.0,1354.7,998.0,11252.3,2582.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps-power-outage.xml,33.513,33.513,28.668,28.668,4.845,0.0,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,3.304,0.58,7.324,0.0,0.0,3.619,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.788,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,4.538,0.0,9.824,7.3,0.56,0.0,0.0,0.5,0.667,9397.2,10452.9,10452.9,41.543,21.475,0.0,2.617,2.464,0.344,4.289,0.336,6.501,-12.497,0.0,0.0,0.0,3.691,-0.104,3.39,0.0,0.384,0.0,1.013,-6.566,-1.596,0.0,-0.248,-0.599,-0.072,2.363,-0.065,-1.808,11.861,0.0,0.0,0.0,-7.639,-0.059,-1.386,-4.977,-0.212,0.0,2.361,8.448,2.023,1141.2,883.5,9207.0,2112.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-mixed-timesteps.xml,42.423,42.423,34.37,34.37,8.052,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,3.316,0.583,9.051,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.052,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.54,0.0,9.873,9.053,0.67,0.0,0.0,0.0,0.667,9393.8,10455.9,10455.9,31.865,21.476,0.0,2.918,2.81,0.394,5.403,0.421,7.525,-12.492,0.0,0.0,0.0,5.506,-0.059,3.865,0.0,0.581,0.0,1.73,-8.86,-2.486,0.0,-0.252,-0.602,-0.072,2.368,-0.066,-1.818,11.861,0.0,0.0,0.0,-7.571,-0.058,-1.388,-4.99,-0.212,0.0,2.371,8.448,2.023,1354.7,998.0,11253.5,2582.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,58.983,58.983,36.09,36.09,22.893,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.506,0.88,8.936,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.117,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.435,0.0,14.798,8.987,0.615,0.0,0.0,0.0,0.0,6629.1,7202.8,9091.3,31.35,20.86,0.0,3.558,3.649,0.513,7.536,0.632,10.11,-12.685,0.0,0.0,0.0,8.318,-0.06,5.322,0.0,0.764,0.0,4.945,-8.988,-2.501,0.0,-0.056,-0.46,-0.051,2.692,-0.025,-1.398,11.729,0.0,0.0,0.0,-6.34,-0.055,-1.287,-3.092,-0.189,0.0,3.271,8.364,1.98,1002.6,945.2,11359.3,2606.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,44.612,44.612,30.267,30.267,14.345,0.0,0.0,0.0,0.0,0.0,0.0,0.237,0.0,0.0,4.476,0.872,7.293,0.0,0.0,3.627,0.0,0.264,0.0,0.0,0.0,0.0,1.908,0.0,0.0,0.267,0.304,1.259,1.258,0.0,1.713,6.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,13.438,0.0,14.68,7.313,0.517,0.0,0.0,17.0,0.0,6231.1,5704.5,6231.1,36.507,20.005,0.0,3.075,3.07,0.431,5.717,0.489,8.386,-12.686,0.0,0.0,0.0,5.187,-0.154,4.374,0.0,0.513,0.0,3.019,-6.68,-1.621,0.0,-0.056,-0.461,-0.051,2.676,-0.025,-1.397,11.731,0.0,0.0,0.0,-6.442,-0.057,-1.272,-3.091,-0.186,0.0,3.248,8.28,2.006,1141.2,883.5,9132.4,2095.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,57.65,57.65,30.858,30.858,26.793,0.0,0.0,0.0,0.0,0.0,0.0,0.442,0.0,0.0,4.495,0.877,7.368,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.71,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.09,0.0,14.759,7.303,0.614,0.0,0.0,0.0,0.0,4487.7,5710.9,5710.9,30.776,20.061,0.0,3.504,3.622,0.51,7.453,0.626,10.041,-12.679,0.0,0.0,0.0,8.149,-0.064,5.305,0.0,0.514,0.0,5.697,-6.297,-1.615,0.0,-0.061,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.358,-0.059,-1.276,-3.102,-0.186,0.0,3.261,8.286,2.008,1141.2,883.5,9118.0,2092.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-occupancy-stochastic.xml,58.918,58.918,36.05,36.05,22.869,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.496,0.877,9.013,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.414,0.0,14.762,9.071,0.614,0.0,0.0,0.0,0.0,4690.7,5711.1,5711.1,30.649,20.063,0.0,3.553,3.644,0.513,7.53,0.631,10.102,-12.674,0.0,0.0,0.0,8.308,-0.063,5.265,0.0,0.777,0.0,4.943,-8.954,-2.502,0.0,-0.061,-0.465,-0.052,2.683,-0.026,-1.408,11.739,0.0,0.0,0.0,-6.355,-0.059,-1.276,-3.103,-0.186,0.0,3.262,8.286,2.008,1354.7,998.0,11168.6,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-schedules.xml,57.016,57.016,35.319,35.319,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.913,0.755,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.946,0.0,12.447,9.075,0.615,0.0,0.0,101.0,55.0,2155.4,3710.6,3710.6,34.947,20.39,0.0,3.517,3.579,0.503,7.523,0.608,9.828,-12.674,0.0,0.0,0.0,8.679,0.006,4.652,0.0,0.727,0.0,4.499,-8.859,-2.496,0.0,-0.073,-0.502,-0.058,2.615,-0.042,-1.591,11.74,0.0,0.0,0.0,-6.668,-0.004,-1.223,-3.407,-0.174,0.0,2.49,7.92,2.014,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints-daily-setbacks.xml,56.386,56.386,35.47,35.47,20.915,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.048,0.783,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.498,0.0,13.07,9.075,0.616,0.0,0.0,0.0,14.0,2130.8,3597.4,3597.4,25.333,20.813,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.196,-0.023,4.639,0.0,0.724,0.0,4.386,-8.884,-2.501,0.0,-0.057,-0.497,-0.057,2.571,-0.04,-1.578,11.697,0.0,0.0,0.0,-6.644,-0.024,-1.204,-3.355,-0.177,0.0,2.635,7.896,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-detailed-setpoints.xml,41.378,41.378,34.089,34.089,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.107,0.54,9.046,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.0,9.174,9.075,0.645,0.0,0.0,0.0,0.0,2100.9,3211.6,3211.6,17.397,16.358,0.0,2.853,2.787,0.39,5.357,0.411,7.457,-12.563,0.0,0.0,0.0,5.504,-0.06,3.479,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.125,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.261,-5.126,-0.188,0.0,2.129,8.003,2.036,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-power-outage.xml,54.905,54.905,32.493,32.493,22.412,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,3.427,0.629,8.406,0.0,0.0,4.161,0.0,0.311,0.0,0.0,0.0,0.0,2.017,0.0,0.0,0.295,0.335,1.386,1.414,0.0,1.939,7.802,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.989,0.0,10.683,8.454,0.58,0.0,0.0,0.0,5.0,1990.4,5812.2,5812.2,23.066,22.121,0.0,3.554,3.643,0.513,7.524,0.63,10.091,-12.684,0.0,0.0,0.0,8.289,-0.061,4.76,0.0,0.795,0.0,4.86,-8.902,-2.367,0.0,-0.098,-0.536,-0.062,2.488,-0.045,-1.632,11.731,0.0,0.0,0.0,-6.63,-0.057,-1.233,-3.892,-0.174,0.0,2.339,6.936,1.794,1241.6,923.2,10291.7,2361.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple-vacancy.xml,57.254,57.254,30.644,30.644,26.61,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,4.441,0.864,7.366,0.0,0.0,3.688,0.0,0.263,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.259,0.303,1.256,1.243,0.0,1.704,6.597,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.92,0.0,14.571,7.302,0.614,0.0,0.0,0.0,0.0,1965.3,3444.2,3444.2,23.124,19.202,0.0,3.503,3.619,0.509,7.446,0.625,10.032,-12.688,0.0,0.0,0.0,8.141,-0.065,4.961,0.0,0.552,0.0,5.667,-6.163,-1.548,0.0,-0.059,-0.466,-0.052,2.681,-0.027,-1.412,11.729,0.0,0.0,0.0,-6.357,-0.06,-1.149,-3.111,-0.2,0.0,3.227,7.872,2.14,1122.2,811.7,9189.2,2108.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-schedules-simple.xml,58.368,58.368,35.967,35.967,22.401,0.0,0.0,0.0,0.0,0.0,0.0,0.37,0.0,0.0,4.442,0.865,9.016,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,0.0,22.401,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.978,0.0,14.574,9.075,0.614,0.0,0.0,0.0,0.0,1984.0,3441.8,3441.8,23.066,19.187,0.0,3.554,3.642,0.513,7.525,0.63,10.091,-12.684,0.0,0.0,0.0,8.301,-0.061,4.804,0.0,0.729,0.0,4.858,-8.902,-2.367,0.0,-0.06,-0.466,-0.052,2.68,-0.027,-1.418,11.729,0.0,0.0,0.0,-6.358,-0.057,-1.173,-3.114,-0.166,0.0,3.227,7.876,2.141,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-calendar-year-custom.xml,58.172,58.172,35.9,35.9,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.388,0.852,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.857,0.0,14.357,9.075,0.614,0.0,0.0,0.0,0.0,2119.6,3434.2,3434.2,23.032,19.124,0.0,3.557,3.645,0.513,7.53,0.631,10.1,-12.683,0.0,0.0,0.0,8.316,-0.063,4.807,0.0,0.729,0.0,4.834,-8.905,-2.499,0.0,-0.051,-0.459,-0.051,2.707,-0.025,-1.394,11.73,0.0,0.0,0.0,-6.328,-0.059,-1.165,-3.252,-0.165,0.0,3.17,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-custom.xml,58.198,58.198,35.931,35.931,22.267,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.853,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-daylight-saving-disabled.xml,58.169,58.169,35.915,35.915,22.254,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.4,0.855,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.84,0.0,14.398,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3344.2,3344.2,23.032,18.728,0.0,3.556,3.643,0.513,7.531,0.63,10.089,-12.683,0.0,0.0,0.0,8.311,-0.06,4.804,0.0,0.727,0.0,4.829,-8.9,-2.496,0.0,-0.056,-0.465,-0.052,2.684,-0.027,-1.417,11.73,0.0,0.0,0.0,-6.348,-0.056,-1.175,-3.132,-0.163,0.0,3.182,7.877,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-runperiod-1-month.xml,9.3245,9.3245,2.9023,2.9023,6.4222,0.0,0.0,0.0,0.0,0.0,0.0,0.1059,0.0,0.0,0.1034,0.0,0.8277,0.0,0.0,0.3993,0.0,0.0322,0.0,0.0,0.0,0.0,0.1421,0.0,0.0,0.0268,0.0281,0.116,0.1286,0.0,0.1838,0.8083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4222,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.0126,0.0,0.0,0.8385,0.0511,0.0,0.0,0.0,0.0,2100.14,0.0,2100.14,24.5039,0.0,0.0,0.6218,0.6514,0.0921,1.7783,0.1114,1.8005,-1.9863,0.0,0.0,0.0,2.3104,0.001,0.8916,0.0,0.1316,0.0,1.3929,-1.4353,-0.3993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.12,83.97,907.03,208.14,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-temperature-capacitance-multiplier.xml,58.084,58.084,35.824,35.824,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.327,0.838,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.846,0.0,14.108,9.075,0.614,0.0,0.0,0.0,0.0,2110.3,3404.6,3404.6,22.973,19.043,0.0,3.626,3.641,0.512,7.527,0.628,10.073,-12.689,0.0,0.0,0.0,8.292,-0.053,4.803,0.0,0.728,0.0,4.827,-8.896,-2.498,0.0,-0.223,-0.462,-0.052,2.69,-0.027,-1.419,11.724,0.0,0.0,0.0,-6.346,-0.05,-1.179,-3.176,-0.164,0.0,3.051,7.882,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,59.586,59.586,36.173,36.173,23.413,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.588,0.893,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.413,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.924,0.0,14.997,9.074,0.616,0.0,0.0,0.333,1.333,8643.3,8934.0,9252.7,37.369,21.894,0.0,3.607,3.669,0.517,7.596,0.642,10.189,-12.601,0.0,0.0,0.0,8.33,-0.062,5.307,0.0,0.775,0.0,5.113,-8.958,-2.509,0.0,-0.179,-0.489,-0.056,2.705,-0.032,-1.437,11.752,0.0,0.0,0.0,-6.328,-0.058,-1.279,-3.002,-0.179,0.0,3.435,8.296,2.0,1354.7,998.0,11182.0,2565.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,59.507,59.507,36.166,36.166,23.341,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.586,0.893,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.341,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.857,0.0,14.991,9.071,0.614,0.0,0.0,0.0,0.5,6063.1,7350.9,7350.9,35.1,21.328,0.0,3.607,3.669,0.517,7.594,0.642,10.187,-12.601,0.0,0.0,0.0,8.326,-0.062,5.255,0.0,0.771,0.0,5.101,-8.955,-2.502,0.0,-0.179,-0.489,-0.056,2.704,-0.033,-1.438,11.752,0.0,0.0,0.0,-6.332,-0.057,-1.264,-3.005,-0.186,0.0,3.433,8.284,2.008,1354.7,998.0,11168.8,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-10-mins.xml,58.805,58.805,36.045,36.045,22.76,0.0,0.0,0.0,0.0,0.0,0.0,0.375,0.0,0.0,4.503,0.873,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.313,0.0,14.679,9.075,0.614,0.0,0.0,0.0,0.0,3549.1,4946.5,4946.5,23.32,19.028,0.0,3.612,3.669,0.517,7.595,0.642,10.185,-12.61,0.0,0.0,0.0,8.335,-0.06,4.791,0.0,0.735,0.0,4.995,-8.905,-2.499,0.0,-0.174,-0.487,-0.056,2.71,-0.032,-1.435,11.744,0.0,0.0,0.0,-6.317,-0.055,-1.156,-3.002,-0.172,0.0,3.375,7.873,2.011,1354.8,997.6,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-simcontrol-timestep-30-mins.xml,58.579,58.579,35.995,35.995,22.584,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.464,0.866,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,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.148,0.0,14.554,9.075,0.614,0.0,0.0,0.0,0.0,2158.3,3792.8,3792.8,23.223,19.05,0.0,3.594,3.661,0.516,7.566,0.639,10.168,-12.631,0.0,0.0,0.0,8.321,-0.062,4.793,0.0,0.733,0.0,4.932,-8.905,-2.498,0.0,-0.143,-0.482,-0.055,2.704,-0.031,-1.434,11.747,0.0,0.0,0.0,-6.329,-0.058,-1.16,-3.05,-0.17,0.0,3.285,7.873,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1_bills.csv b/workflow/tests/base_results/results_workflow_simulations1_bills.csv index 81bb12ded0..b5c8bf8fc4 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -42,7 +42,7 @@ base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,1130.72,144.0,986.72,0.0, base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1333.84,144.0,1189.84,0.0,1333.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,1140.64,144.0,996.64,0.0,1140.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-generator.xml,1641.6,144.0,962.39,0.0,1106.39,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1180.73,144.0,1036.73,0.0,1180.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 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1180.22,144.0,1036.22,0.0,1180.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 base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1061.97,144.0,615.28,0.0,759.28,144.0,158.69,302.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 base-bldgtype-mf-unit-shared-laundry-room.xml,1034.48,144.0,608.19,0.0,752.19,144.0,138.29,282.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1625.79,144.0,1125.4,0.0,1269.4,144.0,212.39,356.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 @@ -59,7 +59,7 @@ base-bldgtype-sfa-unit.xml,1516.14,144.0,1096.67,0.0,1240.67,144.0,131.47,275.47 base-dhw-combi-tankless-outside.xml,1388.39,144.0,786.23,0.0,930.23,144.0,314.16,458.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,1401.33,144.0,786.58,0.0,930.58,144.0,326.75,470.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,1321.11,144.0,1177.11,0.0,1321.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,1519.08,144.0,1375.08,0.0,1519.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 +base-dhw-desuperheater-gshp.xml,1517.54,144.0,1373.54,0.0,1517.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 base-dhw-desuperheater-hpwh.xml,1663.33,144.0,1092.84,0.0,1236.84,144.0,282.49,426.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-tankless.xml,1383.2,144.0,1239.2,0.0,1383.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-var-speed.xml,1293.79,144.0,1149.79,0.0,1293.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 @@ -225,9 +225,12 @@ base-hvac-furnace-oil-only.xml,2068.01,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1890.8,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,614.34,614.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,1615.94,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.48,339.48,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 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1398.38,144.0,1254.38,0.0,1398.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 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1464.96,144.0,1320.96,0.0,1464.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,1600.1,144.0,1456.1,0.0,1600.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-geothermal-loop.xml,1579.24,144.0,1435.24,0.0,1579.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 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1397.25,144.0,1253.25,0.0,1397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1600.24,144.0,1456.24,0.0,1600.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 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1464.52,144.0,1320.52,0.0,1464.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 +base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,1512.83,144.0,1368.83,0.0,1512.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,1598.51,144.0,1454.51,0.0,1598.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 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1930.98,144.0,1786.98,0.0,1930.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1761.0,144.0,1617.0,0.0,1761.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,1740.72,144.0,1596.72,0.0,1740.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 @@ -235,7 +238,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1884.28,144.0,1347. base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1827.16,144.0,1290.86,0.0,1434.86,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1802.71,144.0,1266.41,0.0,1410.41,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,1671.13,144.0,1127.65,0.0,1271.65,144.0,255.48,399.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,1675.31,144.0,1531.31,0.0,1675.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 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1673.37,144.0,1529.37,0.0,1673.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 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1385.1,144.0,1241.1,0.0,1385.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1629.25,144.0,1485.25,0.0,1629.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1362.65,144.0,1218.65,0.0,1362.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -249,7 +252,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1689.58,144.0,1307.29 base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1876.57,144.0,1303.96,0.0,1447.96,0.0,0.0,0.0,0.0,428.61,428.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 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1527.9,144.0,1383.9,0.0,1527.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,1527.9,144.0,1383.9,0.0,1527.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,2488.64,144.0,1905.84,0.0,2049.84,144.0,74.12,218.12,0.0,123.05,123.05,0.0,97.63,97.63,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,2484.2,144.0,1901.8,0.0,2045.8,144.0,74.03,218.03,0.0,122.88,122.88,0.0,97.49,97.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,2513.83,144.0,2369.83,0.0,2513.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-electricity.xml,2010.26,144.0,1866.26,0.0,2010.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 base-hvac-ptac-with-heating-natural-gas.xml,1774.46,144.0,1272.07,0.0,1416.07,144.0,214.39,358.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 From 2eb1f7b4c0ef84b952454d83802a97ee238d4bec Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Wed, 8 Nov 2023 12:34:21 -0700 Subject: [PATCH 181/217] Minor updates to sample files, changelog, and EPvalidator.xml. --- Changelog.md | 11 +- .../hpxml_schematron/EPvalidator.xml | 4 +- HPXMLtoOpenStudio/tests/test_defaults.rb | 2 +- HPXMLtoOpenStudio/tests/test_hvac.rb | 2 +- HPXMLtoOpenStudio/tests/test_validation.rb | 10 +- tasks.rb | 2 +- workflow/hpxml_inputs.json | 30 +- ...hvac-ground-to-air-heat-pump-detailed.xml} | 7 + ...nd-to-air-heat-pump-ground-diffusivity.xml | 559 ------------------ ...nd-to-air-heat-pump-soil-moisture-type.xml | 558 ----------------- 10 files changed, 34 insertions(+), 1151 deletions(-) rename workflow/sample_files/{base-hvac-geothermal-loop.xml => base-hvac-ground-to-air-heat-pump-detailed.xml} (99%) delete mode 100644 workflow/sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml delete mode 100644 workflow/sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml diff --git a/Changelog.md b/Changelog.md index f3d344d08f..b569c5d5ea 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,6 +7,7 @@ __New Features__ - Replaces "living space" with "conditioned space", which better represents what is modeled. - Replaces `HotTubs/HotTub` with `Spas/PermanentSpa`. - Replaces `PortableHeater` and `FixedHeater` with `SpaceHeater`. + - Replaces `BuildingSummary/Site/extension/GroundConductivity` with `BuildingSummary/Site/Soil/Conductivity`. - Allows simulating whole multifamily (MF) buildings in a single combined simulation: - **Breaking change**: Multiple elements move from `SoftwareInfo/extension` to `BuildingDetails/BuildingSummary/extension` to allow variation across units: - `HVACSizingControl` @@ -26,8 +27,8 @@ __New Features__ - Allow duct area fractions (as an alternative to duct areas in ft^2). - Allow duct locations to be provided while defaulting duct areas (i.e., without providing duct area/fraction inputs). - Add generic "attic" and "crawlspace" location choices for supply/return ducts, water heater, and battery. + - Add soil and moisture type arguments (for determining ground conductivity and diffusivity) and optional geothermal loop arguments for ground source heat pumps. - Always validate the HPXML file before applying defaults and only optionally validate the final HPXML file. - - Add soil and moisture type arguments for determining ground conductivity and diffusivity. - Battery losses now split between charging and discharging. - Interior/exterior window shading multipliers are now modeled using the EnergyPlus incident solar multiplier. - Updates deep ground temperatures (used for modeling ground-source heat pumps) using L. Xing's simplified design model (2014). @@ -35,11 +36,9 @@ __New Features__ - Allows `WaterFixture/FlowRate` as an alternative to `LowFlow`; hot water credit is now calculated based on fraction of low flow fixtures. - Added README.md documentation for all OpenStudio measures. - Ground source heat pump enhancements: - - Connect to `HVACPlant/GeothermalLoop` and `BuildingSummary/Site/Soil` HPXML elements. - - Allow optional inputs related to geothermal loop: loop flow, borehole count/length/spacing/diameter/configuration, grout conductivity, pipe conductivity/diameter/shank spacing. - - Allow optional ground diffusivity input for site soil. - - Connect to the [G-Function Library](https://gdr.openei.org/submissions/1325) (in the Geothermal Data Repository) for using precalculated g-function values with GSHP modeling. - - **Breaking change**: Replaces `BuildingSummary/Site/extension/GroundConductivity` with `BuildingSummary/Site/Soil/Conductivity`. + - Allows optional detailed inputs related to geothermal loop (`HVACPlant/GeothermalLoop`). + - Allows optional ground diffusivity input. + - Updates to using G-Functions from the [G-Function Library for Modeling Vertical Bore Ground Heat Exchanger](https://gdr.openei.org/submissions/1325). __Bugfixes__ - Fixes battery resilience output to properly incorporate battery losses. diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 1c2cd25034..c09f695f35 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -332,8 +332,8 @@ Expected 0 or 1 element(s) for xpath: extension/Neighbors extension/ShelterCoefficient has been replaced by ShieldingofHome - - extension/GroundConductivity has been replaced by /HPXML/Building/BuildingDetails/BuildingSummary/Site/Soil/Conductivity + + extension/GroundConductivity has been replaced by Soil/Conductivity diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 032ce55101..1f31a0fadd 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1686,7 +1686,7 @@ def test_ground_source_heat_pumps def test_geothermal_loops # Test inputs not overridden by defaults - hpxml, hpxml_bldg = _create_hpxml('base-hvac-geothermal-loop.xml') + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') hpxml_bldg.geothermal_loops[0].loop_configuration = HPXML::GeothermalLoopLoopConfigurationVertical hpxml_bldg.geothermal_loops[0].loop_flow = 1 hpxml_bldg.geothermal_loops[0].num_bore_holes = 2 diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index 64e7e185db..36b38ddf0c 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -732,7 +732,7 @@ def test_ground_to_air_heat_pump def test_geothermal_loop args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-geothermal-loop.xml')) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-ground-to-air-heat-pump-detailed.xml')) model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 792b6c2e4d..de96ca2d2d 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -378,13 +378,13 @@ def test_schema_schematron_error_messages hpxml_bldg.heat_pumps[-1].primary_heating_system = false hpxml_bldg.heat_pumps[-1].primary_cooling_system = false elsif ['hvac-gshp-invalid-bore-config'].include? error_case - hpxml, hpxml_bldg = _create_hpxml('base-hvac-geothermal-loop.xml') + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') hpxml_bldg.geothermal_loops[0].bore_config = 'Invalid' elsif ['hvac-gshp-invalid-bore-depth-low'].include? error_case - hpxml, hpxml_bldg = _create_hpxml('base-hvac-geothermal-loop.xml') + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') hpxml_bldg.geothermal_loops[0].bore_length = 78 elsif ['hvac-gshp-invalid-bore-depth-high'].include? error_case - hpxml, hpxml_bldg = _create_hpxml('base-hvac-geothermal-loop.xml') + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') hpxml_bldg.geothermal_loops[0].bore_length = 501 elsif ['hvac-location-heating-system'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-boiler-oil-only.xml') @@ -1073,7 +1073,7 @@ def test_ruby_error_messages hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') hpxml_bldg.site.ground_conductivity = 0.1 elsif ['hvac-gshp-invalid-num-bore-holes'].include? error_case - hpxml, hpxml_bldg = _create_hpxml('base-hvac-geothermal-loop.xml') + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') hpxml_bldg.geothermal_loops[0].num_bore_holes = 5 elsif ['hvac-gshp-invalid-num-bore-holes-autosized'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') @@ -1187,7 +1187,7 @@ def test_ruby_error_messages hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.windows[0].area = 1000 elsif ['orphaned-geothermal-loop'].include? error_case - hpxml, hpxml_bldg = _create_hpxml('base-hvac-geothermal-loop.xml') + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') hpxml_bldg.heat_pumps[0].geothermal_loop_idref = nil elsif ['orphaned-hvac-distribution'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-furnace-gas-room-ac.xml') diff --git a/tasks.rb b/tasks.rb index c3487be8ca..00c62ef0d0 100644 --- a/tasks.rb +++ b/tasks.rb @@ -1686,7 +1686,7 @@ def apply_hpxml_modification(hpxml_file, hpxml) hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = nil hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil end - if hpxml_file.include? 'base-hvac-geothermal-loop.xml' + if hpxml_file.include? 'base-hvac-ground-to-air-heat-pump-detailed.xml' hpxml_bldg.geothermal_loops[0].shank_spacing = 2.5 end diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 707eac9f87..15fa7858bc 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -1957,19 +1957,6 @@ "sample_files/base-hvac-furnace-x3-dse.xml": { "parent_hpxml": "sample_files/base.xml" }, - "sample_files/base-hvac-geothermal-loop.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "geothermal_loop_configuration": "vertical", - "geothermal_loop_borefield_configuration": "Lopsided U", - "geothermal_loop_loop_flow": 10.0, - "geothermal_loop_boreholes_count": 9, - "geothermal_loop_boreholes_length": 314.961, - "geothermal_loop_boreholes_spacing": 16.4042, - "geothermal_loop_boreholes_diameter": 5.905512, - "geothermal_loop_grout_type": "standard", - "geothermal_loop_pipe_type": "standard", - "geothermal_loop_pipe_diameter": "1\" pipe" - }, "sample_files/base-hvac-ground-to-air-heat-pump.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_type": "none", @@ -1992,12 +1979,19 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_backup_heating_capacity": 36000 }, - "sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml": { - "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", - "site_ground_diffusivity": 0.03 - }, - "sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml": { + "sample_files/base-hvac-ground-to-air-heat-pump-detailed.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", + "geothermal_loop_configuration": "vertical", + "geothermal_loop_borefield_configuration": "Lopsided U", + "geothermal_loop_loop_flow": 10.0, + "geothermal_loop_boreholes_count": 9, + "geothermal_loop_boreholes_length": 314.961, + "geothermal_loop_boreholes_spacing": 16.4042, + "geothermal_loop_boreholes_diameter": 5.905512, + "geothermal_loop_grout_type": "standard", + "geothermal_loop_pipe_type": "standard", + "geothermal_loop_pipe_diameter": "1\" pipe", + "site_ground_diffusivity": 0.03, "site_soil_and_moisture_type": "sand, dry" }, "sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml": { diff --git a/workflow/sample_files/base-hvac-geothermal-loop.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed.xml similarity index 99% rename from workflow/sample_files/base-hvac-geothermal-loop.xml rename to workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed.xml index 53021a6003..1e33be697b 100644 --- a/workflow/sample_files/base-hvac-geothermal-loop.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed.xml @@ -40,6 +40,13 @@ electricity natural gas + + sand + dry + + 0.03 + + single-family detached diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml deleted file mode 100644 index 95f466d75f..0000000000 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml +++ /dev/null @@ -1,559 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - - 0.03 - - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - conditioned space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - conditioned space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 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 - - - - - - - - - electricity - storage water heater - conditioned space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - conditioned space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - conditioned space - electricity - 3.73 - true - 150.0 - - - - conditioned space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - conditioned space - 650.0 - true - - - - conditioned space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml deleted file mode 100644 index 8c530a9745..0000000000 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml +++ /dev/null @@ -1,558 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 60 - - - - Bills - - - - - - - - -
- CO -
-
- - proposed workscope - - - - - suburban - stand-alone - no units above or below - 180 - - electricity - natural gas - - - sand - dry - - - - single-family detached - 2.0 - 1.0 - 8.0 - 3 - 2 - 2700.0 - 21600.0 - - - - - 2006 - 5B - - - - USA_CO_Denver.Intl.AP.725650_TMY3 - - USA_CO_Denver.Intl.AP.725650_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 21600.0 - - - - - - - - false - - - false - - - - - - - - - - - true - - - - - - - - - - - attic - unvented - 1509.3 - asphalt or fiberglass shingles - 0.7 - 0.92 - 6.0 - false - - - 2.3 - - - - - - - outside - basement - conditioned - 115.6 - wood siding - 0.7 - 0.92 - - - 23.0 - - - - - - - outside - conditioned space - - - - 1200.0 - wood siding - 0.7 - 0.92 - - gypsum board - - - - 23.0 - - - - - outside - attic - unvented - gable - - - - 225.0 - wood siding - 0.7 - 0.92 - - - 4.0 - - - - - - - ground - basement - conditioned - 8.0 - 1200.0 - 8.0 - 7.0 - - gypsum board - - - - - continuous - exterior - 8.9 - 0.0 - 8.0 - - - continuous - interior - 0.0 - - - - - - - - attic - unvented - conditioned space - ceiling - - - - 1350.0 - - gypsum board - - - - 39.3 - - - - - - - basement - conditioned - 1350.0 - 4.0 - 150.0 - - - - 0.0 - 0.0 - - - - - - 0.0 - 0.0 - - - - 0.0 - 0.0 - - - - - - - 108.0 - 0 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 90 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 108.0 - 180 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - 72.0 - 270 - 0.33 - 0.45 - - - 0.7 - 0.85 - - 0.67 - - - - - - - - 40.0 - 180 - 4.4 - - - - - - - - - - - - - - ground-to-air - electricity - 36000.0 - 36000.0 - 0.73 - integrated - electricity - - Percent - 1.0 - - 36000.0 - 1.0 - 1.0 - - EER - 16.6 - - - COP - 3.6 - - - 30.0 - - - - - - 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 - - - - - - - - - electricity - storage water heater - conditioned space - 40.0 - 1.0 - 18767.0 - 0.95 - 125.0 - - - - - - 50.0 - - - - 0.0 - - - - - shower head - true - - - - faucet - false - - - - - - - conditioned space - 1.21 - 380.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.2 - - - - conditioned space - electricity - 3.73 - true - 150.0 - - - - conditioned space - 307.0 - 12 - 0.12 - 1.09 - 22.32 - 4.0 - - - - conditioned space - 650.0 - true - - - - conditioned space - electricity - false - - - - false - - - - - - interior - 0.4 - - - - - - - interior - 0.1 - - - - - - - interior - 0.25 - - - - - - - exterior - 0.4 - - - - - - - exterior - 0.1 - - - - - - - exterior - 0.25 - - - - - - - - - TV other - - kWh/year - 620.0 - - - - - other - - kWh/year - 2457.0 - - - 0.855 - 0.045 - - - - -
-
\ No newline at end of file From 949dab7ddedb192f16f0a917d12a40a8c9274a51 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Wed, 8 Nov 2023 12:34:47 -0700 Subject: [PATCH 182/217] Update measure.xml --- HPXMLtoOpenStudio/measure.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 1a892de3a7..453bc26b7b 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - f0819217-3058-4bc7-903d-6cbfaea2d32d - 2023-11-08T16:08:35Z + 4b975cef-890a-40a2-88ea-07b07aa854bd + 2023-11-08T19:33:58Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -328,7 +328,7 @@ hpxml_schematron/EPvalidator.xml xml resource - BA95510D + C2B41B1B
hpxml_schematron/iso-schematron.xsd @@ -592,7 +592,7 @@ test_defaults.rb rb test - EE636DD4 + 243FDCF0 test_enclosure.rb @@ -616,7 +616,7 @@ test_hvac.rb rb test - BBA88502 + 9C8ED2F2 test_hvac_sizing.rb @@ -664,7 +664,7 @@ test_validation.rb rb test - 7950F999 + 78F3F33C test_water_heater.rb From deb2f339231cdf129e13477bf162324b2f71e21c Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Wed, 8 Nov 2023 12:48:39 -0700 Subject: [PATCH 183/217] Move some inputs from tasks.rb to workflow/hpxml_inputs.json. [ci skip] --- tasks.rb | 22 ---------------------- workflow/hpxml_inputs.json | 18 +++++++++++++++++- 2 files changed, 17 insertions(+), 23 deletions(-) diff --git a/tasks.rb b/tasks.rb index 00c62ef0d0..af6792b72a 100644 --- a/tasks.rb +++ b/tasks.rb @@ -1308,30 +1308,8 @@ def apply_hpxml_modification(hpxml_file, hpxml) end end if hpxml_file.include? 'shared-ground-loop' - hpxml_bldg.heating_systems.reverse_each do |heating_system| - heating_system.delete - end - hpxml_bldg.cooling_systems.reverse_each do |cooling_system| - cooling_system.delete - end - hpxml_bldg.heat_pumps[0].distribution_system_idref = hpxml_bldg.hvac_distributions[-1].id - hpxml_bldg.heat_pumps[0].heat_pump_type = HPXML::HVACTypeHeatPumpGroundToAir - hpxml_bldg.heat_pumps[0].heat_pump_fuel = HPXML::FuelTypeElectricity - hpxml_bldg.heat_pumps[0].backup_type = HPXML::HeatPumpBackupTypeIntegrated - hpxml_bldg.heat_pumps[0].backup_heating_fuel = HPXML::FuelTypeElectricity hpxml_bldg.heat_pumps[0].is_shared_system = true hpxml_bldg.heat_pumps[0].number_of_units_served = 6 - hpxml_bldg.heat_pumps[0].backup_heating_efficiency_percent = 1.0 - hpxml_bldg.heat_pumps[0].fraction_heat_load_served = 1 - hpxml_bldg.heat_pumps[0].fraction_cool_load_served = 1 - hpxml_bldg.heat_pumps[0].heating_efficiency_cop = 3.6 - hpxml_bldg.heat_pumps[0].cooling_efficiency_eer = 16.6 - hpxml_bldg.heat_pumps[0].heating_capacity = 12000 - hpxml_bldg.heat_pumps[0].cooling_capacity = 12000 - hpxml_bldg.heat_pumps[0].backup_heating_capacity = 12000 - hpxml_bldg.heat_pumps[0].cooling_shr = 0.73 - hpxml_bldg.heat_pumps[0].primary_heating_system = true - hpxml_bldg.heat_pumps[0].primary_cooling_system = true hpxml_bldg.heat_pumps[0].pump_watts_per_ton = 0.0 end if hpxml_file.include? 'eae' diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index 15fa7858bc..08060abda2 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -919,9 +919,25 @@ }, "sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml": { "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml", + "heating_system_type": "none", + "heating_system_heating_efficiency": 0, + "heating_system_fraction_heat_load_served": 0, + "cooling_system_type": "none", + "cooling_system_cooling_efficiency": 0, + "cooling_system_fraction_cool_load_served": 0, "heat_pump_type": "ground-to-air", "heat_pump_heating_efficiency_type": "COP", - "heat_pump_cooling_efficiency_type": "EER" + "heat_pump_heating_efficiency": 3.6, + "heat_pump_cooling_efficiency_type": "EER", + "heat_pump_cooling_efficiency": 16.6, + "heat_pump_cooling_sensible_heat_fraction": 0.73, + "heat_pump_heating_capacity": 12000, + "heat_pump_cooling_capacity": 12000, + "heat_pump_fraction_heat_load_served": 1, + "heat_pump_fraction_cool_load_served": 1, + "heat_pump_backup_type": "integrated", + "heat_pump_backup_heating_efficiency": 1, + "heat_pump_backup_heating_capacity": 12000 }, "sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml": { "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml" From b400b5596fd75d8d58cc662a31181f3e8e872f87 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 8 Nov 2023 20:14:22 +0000 Subject: [PATCH 184/217] Latest results. --- .../tests/base_results/results_sizing.csv | 24 +++++-------------- .../results_workflow_simulations1.csv | 4 +--- .../results_workflow_simulations1_bills.csv | 4 +--- 3 files changed, 8 insertions(+), 24 deletions(-) diff --git a/workflow/tests/base_results/results_sizing.csv b/workflow/tests/base_results/results_sizing.csv index 7bad9dd429..3be9a07cc2 100644 --- a/workflow/tests/base_results/results_sizing.csv +++ b/workflow/tests/base_results/results_sizing.csv @@ -92,24 +92,18 @@ denver-hvac-autosize-furnace-oil-only.xml,32235.0,0.0,0.0,712.0,0.0 denver-hvac-autosize-furnace-propane-only.xml,32235.0,0.0,0.0,712.0,0.0 denver-hvac-autosize-furnace-wood-only.xml,32235.0,0.0,0.0,712.0,0.0 denver-hvac-autosize-furnace-x3-dse.xml,23876.0,15265.0,0.0,527.0,635.0 -denver-hvac-autosize-geothermal-loop-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0,982.0,1173.0 -denver-hvac-autosize-geothermal-loop-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 -denver-hvac-autosize-geothermal-loop-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0,1213.0,1599.0 denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,24224.0,0.0,0.0,912.0 denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,18787.0,0.0,0.0,708.0 denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,24224.0,0.0,0.0,912.0 -denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0,982.0,1173.0 -denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 -denver-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0,1213.0,1599.0 +denver-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0,982.0,1173.0 +denver-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 +denver-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0,1213.0,1599.0 denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0,982.0,0.0 denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0,982.0,0.0 denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,31147.0,0.0,31147.0,982.0,0.0 denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0,982.0,1173.0 denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 denver-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0,1213.0,1599.0 -denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-ACCA.xml,29335.0,29335.0,29335.0,925.0,1105.0 -denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-HERS.xml,29335.0,29335.0,29335.0,925.0,1220.0 -denver-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-MaxLoad.xml,36446.0,36446.0,29335.0,1150.0,1516.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,25873.0,26950.0,31147.0,612.0,840.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,35174.0,36638.0,31147.0,832.0,1143.0 denver-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,74430.0,77528.0,31147.0,1761.0,2418.0 @@ -282,24 +276,18 @@ houston-hvac-autosize-furnace-oil-only.xml,21260.0,0.0,0.0,388.0,0.0 houston-hvac-autosize-furnace-propane-only.xml,21260.0,0.0,0.0,388.0,0.0 houston-hvac-autosize-furnace-wood-only.xml,21260.0,0.0,0.0,388.0,0.0 houston-hvac-autosize-furnace-x3-dse.xml,14219.0,18120.0,0.0,260.0,753.0 -houston-hvac-autosize-geothermal-loop-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0,844.0,972.0 -houston-hvac-autosize-geothermal-loop-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,760.0 -houston-hvac-autosize-geothermal-loop-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0,844.0,972.0 houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,32400.0,0.0,0.0,972.0 houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,25329.0,0.0,0.0,760.0 houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,32400.0,0.0,0.0,972.0 -houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0,844.0,972.0 -houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,760.0 -houston-hvac-autosize-ground-to-air-heat-pump-ground-diffusivity-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0,844.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0,844.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,760.0 +houston-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0,844.0,972.0 houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,20038.0,0.0,20038.0,522.0,0.0 houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,20038.0,0.0,20038.0,522.0,0.0 houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,20038.0,0.0,20038.0,522.0,0.0 houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0,844.0,972.0 houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,760.0 houston-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0,844.0,972.0 -houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-ACCA.xml,32400.0,32400.0,18949.0,844.0,972.0 -houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-HERS.xml,25329.0,25329.0,18949.0,660.0,760.0 -houston-hvac-autosize-ground-to-air-heat-pump-soil-moisture-type-sizing-methodology-MaxLoad.xml,32400.0,32400.0,18949.0,844.0,972.0 houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-ACCA.xml,33330.0,31852.0,20038.0,651.0,993.0 houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-HERS.xml,31158.0,29777.0,20038.0,609.0,929.0 houston-hvac-autosize-install-quality-air-to-air-heat-pump-1-speed-sizing-methodology-MaxLoad.xml,37544.0,35880.0,20038.0,733.0,1119.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1.csv b/workflow/tests/base_results/results_workflow_simulations1.csv index 5b776a9472..b483df9383 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -225,11 +225,9 @@ base-hvac-furnace-oil-only.xml,53.489,53.489,30.857,30.857,0.0,22.632,0.0,0.0,0. base-hvac-furnace-propane-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,58.439,58.439,36.861,36.861,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.21,0.973,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,16.339,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2105.4,2621.3,2621.3,16.604,11.921,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-geothermal-loop.xml,39.107,39.107,39.107,39.107,0.0,0.0,0.0,0.0,0.0,0.0,4.738,0.438,0.0,0.0,2.752,0.887,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.264,0.0,13.267,9.075,0.614,0.0,0.0,0.0,0.0,3178.9,2587.4,3178.9,20.961,15.914,0.0,3.612,3.644,0.513,7.528,0.631,10.099,-12.683,0.0,0.0,0.0,8.311,-0.064,4.807,0.0,0.729,0.0,3.201,-8.905,-2.499,0.0,-0.006,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.104,-0.166,0.0,1.995,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.148,34.148,34.148,34.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.993,0.818,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.009,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2821.6,2821.6,0.0,15.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.027,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.077,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,39.679,39.679,39.679,39.679,0.0,0.0,0.0,0.0,0.0,0.0,4.926,0.468,0.0,0.0,3.077,0.916,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.381,0.0,13.305,9.075,0.614,0.0,0.0,0.0,0.0,3275.8,2733.8,3275.8,21.393,16.107,0.0,3.608,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.32,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.032,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-detailed.xml,39.131,39.131,39.131,39.131,0.0,0.0,0.0,0.0,0.0,0.0,4.746,0.439,0.0,0.0,2.765,0.888,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.27,0.0,13.269,9.075,0.614,0.0,0.0,0.0,0.0,3181.7,2593.1,3181.7,20.974,15.922,0.0,3.612,3.644,0.513,7.528,0.631,10.099,-12.683,0.0,0.0,0.0,8.311,-0.064,4.807,0.0,0.729,0.0,3.206,-8.905,-2.499,0.0,-0.006,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.104,-0.166,0.0,1.997,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-heating-only.xml,35.981,35.981,35.981,35.981,0.0,0.0,0.0,0.0,0.0,0.0,4.986,0.726,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.782,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3353.6,1621.9,3353.6,22.231,0.0,0.0,3.592,3.648,0.513,7.511,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.897,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,37.297,37.297,37.297,37.297,0.0,0.0,0.0,0.0,0.0,0.0,2.694,0.249,0.0,0.0,3.119,0.948,9.011,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.814,0.0,13.896,9.075,0.609,0.0,0.0,0.0,0.0,2944.9,2729.8,2944.9,17.406,16.704,0.0,3.778,3.774,0.532,5.726,0.657,10.442,-12.583,0.0,0.0,0.0,1.936,-0.042,4.868,0.0,0.74,0.0,1.913,-8.8,-2.478,0.0,-0.093,-0.547,-0.063,0.78,-0.05,-1.683,11.83,0.0,0.0,0.0,-3.437,-0.036,-1.251,-3.28,-0.178,0.0,2.111,7.972,2.031,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,29335.0,7475.0,7508.0,0.0,575.0,5060.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump.xml,39.632,39.632,39.632,39.632,0.0,0.0,0.0,0.0,0.0,0.0,4.91,0.466,0.0,0.0,3.05,0.914,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.372,0.0,13.301,9.075,0.614,0.0,0.0,0.0,0.0,3268.8,2720.4,3268.8,21.358,16.091,0.0,3.608,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.31,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.029,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.691,48.691,48.691,48.691,0.0,0.0,0.0,0.0,0.0,0.0,12.144,0.674,0.562,0.018,4.281,0.72,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.795,0.579,13.89,9.075,0.614,0.0,0.0,0.0,0.0,7104.3,3548.4,7104.3,24.717,17.543,0.0,3.48,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.83,-8.906,-2.499,0.0,-0.033,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.635,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.059,44.059,44.059,44.059,0.0,0.0,0.0,0.0,0.0,0.0,9.174,0.559,0.519,0.016,2.913,0.586,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.057,0.535,14.223,9.075,0.614,0.0,0.0,0.0,0.0,7083.4,3143.0,7083.4,24.712,18.875,0.0,3.43,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,8.132,-8.906,-2.499,0.0,-0.046,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.972,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1_bills.csv b/workflow/tests/base_results/results_workflow_simulations1_bills.csv index b5c8bf8fc4..3952aef4c9 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -225,11 +225,9 @@ base-hvac-furnace-oil-only.xml,2068.01,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1890.8,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,614.34,614.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,1615.94,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.48,339.48,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 -base-hvac-geothermal-loop.xml,1579.24,144.0,1435.24,0.0,1579.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 base-hvac-ground-to-air-heat-pump-cooling-only.xml,1397.25,144.0,1253.25,0.0,1397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-ground-diffusivity.xml,1600.24,144.0,1456.24,0.0,1600.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 +base-hvac-ground-to-air-heat-pump-detailed.xml,1580.14,144.0,1436.14,0.0,1580.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-heating-only.xml,1464.52,144.0,1320.52,0.0,1464.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 -base-hvac-ground-to-air-heat-pump-soil-moisture-type.xml,1512.83,144.0,1368.83,0.0,1512.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump.xml,1598.51,144.0,1454.51,0.0,1598.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 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1930.98,144.0,1786.98,0.0,1930.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1761.0,144.0,1617.0,0.0,1761.0,0.0,0.0,0.0,0.0,0.0,0.0,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 6774db2611440c3e161770a6f49ead45079445aa Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 8 Nov 2023 13:48:32 -0700 Subject: [PATCH 185/217] Comment on why frac_glycol was changed. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/hvac.rb | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 453bc26b7b..ffd1ed0815 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 4b975cef-890a-40a2-88ea-07b07aa854bd - 2023-11-08T19:33:58Z + 02c2dc15-00ee-427f-9ae9-c76309fe8b17 + 2023-11-08T20:48:06Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -340,7 +340,7 @@ hvac.rb rb resource - 458D1893 + 5125ED1B hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index 6b1bab3c22..34a690cf67 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -3356,7 +3356,7 @@ def self.set_gshp_assumptions(heat_pump, weather) hp_ap.design_chw = [85.0, weather.design.CoolingDrybulb - 15.0, weather.data.DeepGroundAnnualTemp + 10.0].max # Temperature of water entering indoor coil,use 85F as lower bound hp_ap.design_delta_t = 10.0 hp_ap.fluid_type = Constants.FluidPropyleneGlycol - hp_ap.frac_glycol = 0.2 # we've changed this from 0.3 to 0.2 + hp_ap.frac_glycol = 0.2 # This was changed from 0.3 to 0.2 -- more typical based on experts/spec sheets if hp_ap.fluid_type == Constants.FluidWater hp_ap.design_hw = [45.0, weather.design.HeatingDrybulb + 35.0, weather.data.DeepGroundAnnualTemp - 10.0].max # Temperature of fluid entering indoor coil, use 45F as lower bound for water else From 0df5e8b0a3f8a503e3e118f4175e69e183fe3f9e Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 8 Nov 2023 13:53:39 -0700 Subject: [PATCH 186/217] Remove line in epvalidator. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- .../resources/hpxml_schematron/EPvalidator.xml | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index ffd1ed0815..79ccf621d7 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 02c2dc15-00ee-427f-9ae9-c76309fe8b17 - 2023-11-08T20:48:06Z + caaa8301-0c08-4437-8527-443a0ab0bfca + 2023-11-08T20:53:14Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -328,7 +328,7 @@ hpxml_schematron/EPvalidator.xml xml resource - C2B41B1B + 1DF829F4 hpxml_schematron/iso-schematron.xsd diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index c09f695f35..a79912c1b3 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1212,7 +1212,6 @@ [HeatPumpType=GroundSource] - Expected 0 or more element(s) for xpath: Systems/HVAC/HVACPlant/GeothermalLoop Expected 1 or more element(s) for xpath: ../../HVACDistribution/DistributionSystemType/AirDistribution/AirDistributionType[text()="regular velocity"] | ../../HVACDistribution/DistributionSystemType/Other[text()="DSE"] Expected 0 or 1 element(s) for xpath: IsSharedSystem Expected 1 element(s) for xpath: DistributionSystem @@ -1224,7 +1223,7 @@ Expected 1 element(s) for xpath: FractionCoolLoadServed Expected 1 element(s) for xpath: AnnualCoolingEfficiency[Units="EER"]/Value Expected 1 element(s) for xpath: AnnualHeatingEfficiency[Units="COP"]/Value - Expected 0 or 1 element(s) for xpath: AttachedToGeothermalLoop + Expected 0 or 1 element(s) for xpath: AttachedToGeothermalLoop Expected 0 or 1 element(s) for xpath: extension/PumpPowerWattsPerTon Expected extension/PumpPowerWattsPerTon to be greater than or equal to 0 Expected 0 or 1 element(s) for xpath: extension/FanPowerWattsPerCFM From 9372b98b566c5f1e7efeb63870321d16f45a48da Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 8 Nov 2023 13:56:45 -0700 Subject: [PATCH 187/217] Simplify conductivity and diffisivity defaulting. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 9 ++------- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 79ccf621d7..00421ab3c7 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - caaa8301-0c08-4437-8527-443a0ab0bfca - 2023-11-08T20:53:14Z + 26c9a859-4a93-483c-b63e-e6182b91bece + 2023-11-08T20:55:47Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -310,7 +310,7 @@ hpxml_defaults.rb rb resource - 65F63BE6 + BEA36671 hpxml_schema/HPXML.xsd diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 6b179f951e..5ec96d010a 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -499,16 +499,11 @@ def self.apply_building(hpxml_bldg, epw_file) hpxml_bldg.site.ground_conductivity = ((0.2311 + 1.0399) / 2.0).round(4) # Btu/hr-ft-F hpxml_bldg.site.ground_diffusivity = ((0.0097 + 0.0291) / 2.0).round(4) # ft^2/hr end - hpxml_bldg.site.ground_conductivity_isdefaulted = true - hpxml_bldg.site.ground_diffusivity_isdefaulted = true - elsif hpxml_bldg.site.soil_type == HPXML::SiteSoilTypeUnknown - hpxml_bldg.site.ground_conductivity = 1.0 # Btu/hr-ft-F - hpxml_bldg.site.ground_diffusivity = 0.0208 # ft^2/hr - hpxml_bldg.site.ground_conductivity_isdefaulted = true hpxml_bldg.site.ground_diffusivity_isdefaulted = true end - elsif hpxml_bldg.site.ground_conductivity.nil? + end + if hpxml_bldg.site.ground_conductivity.nil? hpxml_bldg.site.ground_conductivity = 1.0 # Btu/hr-ft-F hpxml_bldg.site.ground_conductivity_isdefaulted = true elsif hpxml_bldg.site.ground_diffusivity.nil? From ab3de917828c31c71a367d1cea94ec6a6ce8cf1f Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 8 Nov 2023 14:07:18 -0700 Subject: [PATCH 188/217] Update the docs. --- docs/source/workflow_inputs.rst | 65 +++++++++++++++++++++------------ 1 file changed, 42 insertions(+), 23 deletions(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index fbcb6a769c..c7e26ad418 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -449,8 +449,10 @@ Soil information is entered in ``Soil``. ``extension/Diffusivity`` or ``SoilType``/``MoistureType`` string or double ft2/hr See or > 0 No mixed Diffusivity [#]_ or soil/moisture type ================================================================== ================ =========== =============== ======== ======== ============================================================ - .. [#] | SoilType choices are "sand", "silt", "clay", "loam", "gravel", or "unknown". - | MoistureType choices are "dry", "wet", or "mixed". + .. [#] SoilType choices are "sand", "silt", "clay", "loam", "gravel", or "unknown". + + \ MoistureType choices are "dry", "wet", or "mixed". + .. [#] Conductivity used for foundation heat transfer and ground source heat pumps. .. [#] Diffusivity used for ground source heat pumps. @@ -2206,32 +2208,49 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ======================================== ================ =========== =============== ======== ============== =============================================== .. [#] LoopFlow autosized per TODO. - .. [#] | If extension/BorefieldConfiguration provided, a valid BoreholesOrTrenches/Count must also be provided: - | - **Rectangle**: 1, 2, 3, 4, 5, 6, 7, 8, 9, or 10 - | - **Open Rectangle**: 8 or 10 - | - **C**: 7 or 9 - | - **L**: 4, 5, 6, 7, 8, 9, or 10 - | - **U**: 7, 9, or 10 - | - **Lopsided U**: 6, 7, 8, 9, or 10 + .. [#] If extension/BorefieldConfiguration provided, a valid BoreholesOrTrenches/Count must also be provided: + + \- **Rectangle**: 1, 2, 3, 4, 5, 6, 7, 8, 9, or 10 + + \- **Open Rectangle**: 8 or 10 + + \- **C**: 7 or 9 + + \- **L**: 4, 5, 6, 7, 8, 9, or 10 + + \- **U**: 7, 9, or 10 + + \- **Lopsided U**: 6, 7, 8, 9, or 10 + .. [#] BoreholesOrTrenches/Count autosized per TODO. - .. [#] | BoreholesOrTrenches/Length must be between 79.0 ft and 500.0 ft. - | To permit interpolation, each borefield configuration in the library has g-function values corresponding to heights of 24, 48, 96, 192, and 384 m. - | BoreholesOrTrenches/Length therefore has a minimum of 24 m (or 79 ft). - | BoreholesOrTrenches/Length, on the other hand, has a maximum of 500 ft; bore depths exceeding this value are unlikely to be used in residential applications. + .. [#] BoreholesOrTrenches/Length must be between 79.0 ft and 500.0 ft. + To permit interpolation, each borefield configuration in the library has g-function values corresponding to heights of 24, 48, 96, 192, and 384 m. + BoreholesOrTrenches/Length therefore has a minimum of 24 m (or 79 ft). + BoreholesOrTrenches/Length, on the other hand, has a maximum of 500 ft; bore depths exceeding this value are unlikely to be used in residential applications. .. [#] BoreholesOrTrenches/Length autosized per TODO. .. [#] Grout/Type choices are "standard" or "thermally enhanced". - .. [#] | If Grout/Conductivity not provided, defaults based on Grout/Type: - | - **standard**: 0.4 Btu/hr-ft-F - | - **thermally enhanced**: 0.8 Btu/hr-ft-F + .. [#] If Grout/Conductivity not provided, defaults based on Grout/Type: + + \- **standard**: 0.4 Btu/hr-ft-F + + \- **thermally enhanced**: 0.8 Btu/hr-ft-F + .. [#] Pipe/Type choices are "standard" or "thermally enhanced". - .. [#] | If Pipe/Conductivity not provided, defaults based on Pipe/Type: - | - **standard**: 0.23 Btu/hr-ft-F - | - **thermally enhanced**: 0.40 Btu/hr-ft-F + .. [#] If Pipe/Conductivity not provided, defaults based on Pipe/Type: + + \- **standard**: 0.23 Btu/hr-ft-F + + \- **thermally enhanced**: 0.40 Btu/hr-ft-F + .. [#] Pipe diameter must be either 3/4", 1", or 1-1/4" (i.e, 0.75, 1.0, or 1.25). - .. [#] | ShankSpacing defaults to sum of U-tube spacing (assumed to be 0.9661 in) and pipe outer diameter, where pipe outer diameter is assumed to be: - | - **0.75 in pipe**: 1.050 in - | - **1.0 in pipe**: 1.315 in - | - **1.25 in pipe**: 1.660 in + .. [#] ShankSpacing defaults to sum of U-tube spacing (assumed to be 0.9661 in) and pipe outer diameter, where pipe outer diameter is assumed to be: + + \- **0.75 in pipe**: 1.050 in + + \- **1.0 in pipe**: 1.315 in + + \- **1.25 in pipe**: 1.660 in + .. [#] extension/BorefieldConfiguration choices are "Rectangle", "Open Rectangle", "C", "L", "U", or "Lopsided U". .. note:: From 60986f3b62045456bde2e602df86e57724c64424 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 8 Nov 2023 14:17:51 -0700 Subject: [PATCH 189/217] Add defaults test for thermally enhanced pipe type. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/tests/test_defaults.rb | 20 +++++++++++++++----- 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 00421ab3c7..f4c02179f9 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 26c9a859-4a93-483c-b63e-e6182b91bece - 2023-11-08T20:55:47Z + fdcfddd1-04c8-4161-8baa-39ac5028294c + 2023-11-08T21:17:23Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -592,7 +592,7 @@ test_defaults.rb rb test - 243FDCF0 + 532FB7F3 test_enclosure.rb diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 1f31a0fadd..44a7d205dc 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1695,13 +1695,14 @@ def test_geothermal_loops hpxml_bldg.geothermal_loops[0].bore_diameter = 5 hpxml_bldg.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced hpxml_bldg.geothermal_loops[0].grout_conductivity = 6 + hpxml_bldg.geothermal_loops[0].pipe_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced hpxml_bldg.geothermal_loops[0].pipe_conductivity = 7 hpxml_bldg.geothermal_loops[0].pipe_diameter = 1.0 hpxml_bldg.geothermal_loops[0].shank_spacing = 9 hpxml_bldg.geothermal_loops[0].bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, 2, 3, 100, 5, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 6, 7, 1.0, 9, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, 2, 3, 100, 5, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 6, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 7, 1.0, 9, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults hpxml_bldg.geothermal_loops[0].loop_flow = nil @@ -1711,19 +1712,26 @@ def test_geothermal_loops hpxml_bldg.geothermal_loops[0].bore_diameter = nil hpxml_bldg.geothermal_loops[0].grout_type = nil hpxml_bldg.geothermal_loops[0].grout_conductivity = nil + hpxml_bldg.geothermal_loops[0].pipe_type = nil hpxml_bldg.geothermal_loops[0].pipe_conductivity = nil hpxml_bldg.geothermal_loops[0].pipe_diameter = nil hpxml_bldg.geothermal_loops[0].shank_spacing = nil hpxml_bldg.geothermal_loops[0].bore_config = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults w/ thermally enhanced grout type hpxml_bldg.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.8, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.8, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ thermally enhanced pipe type + hpxml_bldg.geothermal_loops[0].pipe_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.8, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.40, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) end def test_hvac_location @@ -4302,8 +4310,9 @@ def _test_default_ground_to_air_heat_pump_values(heat_pump, pump_watts_per_ton, def _test_default_geothermal_loop_values(geothermal_loop, loop_configuration, loop_flow, num_bore_holes, bore_spacing, bore_length, bore_diameter, - grout_type, grout_conductivity, pipe_conductivity, pipe_diameter, shank_spacing, - bore_config) + grout_type, grout_conductivity, + pipe_type, pipe_conductivity, pipe_diameter, + shank_spacing, bore_config) assert_equal(loop_configuration, geothermal_loop.loop_configuration) if loop_flow.nil? # nil implies an autosized value assert(geothermal_loop.loop_flow > 0) @@ -4324,6 +4333,7 @@ def _test_default_geothermal_loop_values(geothermal_loop, loop_configuration, lo assert_equal(bore_diameter, geothermal_loop.bore_diameter) assert_equal(grout_type, geothermal_loop.grout_type) assert_equal(grout_conductivity, geothermal_loop.grout_conductivity) + assert_equal(pipe_type, geothermal_loop.pipe_type) assert_equal(pipe_conductivity, geothermal_loop.pipe_conductivity) assert_equal(pipe_diameter, geothermal_loop.pipe_diameter) assert_equal(shank_spacing, geothermal_loop.shank_spacing) From d46e043d36c29b9ce94fa86528be6f1e02a7f3dd Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 8 Nov 2023 14:42:12 -0700 Subject: [PATCH 190/217] Add new validation test for unattached gshp. --- HPXMLtoOpenStudio/tests/test_validation.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index de96ca2d2d..619aec0caa 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -947,6 +947,7 @@ def test_ruby_error_messages 'storm-windows-unexpected-window-ufactor' => ['Unexpected base window U-Factor (0.33) for a storm window.'], 'unattached-cfis' => ["Attached HVAC distribution system 'foobar' not found for ventilation fan 'VentilationFan1'."], 'unattached-door' => ["Attached wall 'foobar' not found for door 'Door1'."], + 'unattached-gshp' => ["Attached geothermal loop 'foobar' not found for heat pump 'HeatPump1'."], 'unattached-hvac-distribution' => ["Attached HVAC distribution system 'foobar' not found for HVAC system 'HeatingSystem1'."], 'unattached-pv-system' => ["Attached inverter 'foobar' not found for pv system 'PVSystem1'."], 'unattached-skylight' => ["Attached roof 'foobar' not found for skylight 'Skylight1'."], @@ -1299,6 +1300,9 @@ def test_ruby_error_messages elsif ['unattached-door'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.doors[0].wall_idref = 'foobar' + elsif ['unattached-gshp'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') + hpxml_bldg.heat_pumps[0].geothermal_loop_idref = 'foobar' elsif ['unattached-hvac-distribution'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.heating_systems[0].distribution_system_idref = 'foobar' From aedc6816e08dfef07e0563716cfa67dabb1ca76c Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 8 Nov 2023 14:52:54 -0700 Subject: [PATCH 191/217] Move some new gshp related methods from hvac to hvacsizing. --- HPXMLtoOpenStudio/measure.xml | 16 ++++---- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 3 +- HPXMLtoOpenStudio/resources/hvac.rb | 35 ---------------- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 41 +++++++++++++++++-- HPXMLtoOpenStudio/tests/test_hvac.rb | 6 +-- HPXMLtoOpenStudio/tests/test_hvac_sizing.rb | 40 ++++++++++++++++++ 6 files changed, 91 insertions(+), 50 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index f4c02179f9..9fa9cbe1b0 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - fdcfddd1-04c8-4161-8baa-39ac5028294c - 2023-11-08T21:17:23Z + 7bd6feea-0cec-4831-be44-1f5ff4807fb6 + 2023-11-08T21:52:35Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -310,7 +310,7 @@ hpxml_defaults.rb rb resource - BEA36671 + 9974D062 hpxml_schema/HPXML.xsd @@ -340,13 +340,13 @@ hvac.rb rb resource - 5125ED1B + 2A74FBF1 hvac_sizing.rb rb resource - 8724E279 + EB5DB676 lighting.rb @@ -616,13 +616,13 @@ test_hvac.rb rb test - 9C8ED2F2 + 72E41335 test_hvac_sizing.rb rb test - A7E685ED + 904AB60F test_lighting.rb @@ -664,7 +664,7 @@ test_validation.rb rb test - 78F3F33C + DE826CC6 test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 5ec96d010a..3f1411254e 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -506,7 +506,8 @@ def self.apply_building(hpxml_bldg, epw_file) if hpxml_bldg.site.ground_conductivity.nil? hpxml_bldg.site.ground_conductivity = 1.0 # Btu/hr-ft-F hpxml_bldg.site.ground_conductivity_isdefaulted = true - elsif hpxml_bldg.site.ground_diffusivity.nil? + end + if hpxml_bldg.site.ground_diffusivity.nil? hpxml_bldg.site.ground_diffusivity = 0.0208 # ft^2/hr hpxml_bldg.site.ground_diffusivity_isdefaulted = true end diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index 34a690cf67..444304b853 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -3391,41 +3391,6 @@ def self.set_gshp_assumptions(heat_pump, weather) end end - def self.valid_bore_configs - valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => 'rectangle_5m_v1.0.json', - HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => 'Open_configurations_5m_v1.0.json', - HPXML::GeothermalLoopBorefieldConfigurationC => 'C_configurations_5m_v1.0.json', - HPXML::GeothermalLoopBorefieldConfigurationL => 'L_configurations_5m_v1.0.json', - HPXML::GeothermalLoopBorefieldConfigurationU => 'U_configurations_5m_v1.0.json', - HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => 'LopU_configurations_5m_v1.0.json' } - return valid_configs - end - - def self.get_g_functions_json(g_functions_filename) - require 'json' - - g_functions_filepath = File.join(File.dirname(__FILE__), 'g_functions', g_functions_filename) - g_functions_json = JSON.parse(File.read(g_functions_filepath), symbolize_names: true) - return g_functions_json - end - - def self.get_valid_num_bores(g_functions_json) - valid_num_bores = [] - g_functions_json.each do |_key_1, values_1| - if values_1.keys.include?(:bore_locations) - valid_num_bores << values_1[:bore_locations].size - else - values_1.each do |_key_2, values_2| - if values_2.keys.include?(:bore_locations) - valid_num_bores << values_2[:bore_locations].size - end - end - end - end - - return valid_num_bores - end - def self.calc_mshp_hspf(cop_47, c_d, capacity_ratio, cfm_tons, fan_power_rated, heat_eir_ft_spec, heat_cap_ft_spec) n_max = (cop_47.length - 1.0) #-3 # Don't use max speed; FIXME: this is different than calc_mshp_seer? n_min = 0 diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index d90049ef79..17b339cb88 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1964,10 +1964,10 @@ def self.apply_hvac_ground_loop(runner, hvac_sizing_values, weather, hvac_coolin bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle end - valid_configs = HVAC.valid_bore_configs + valid_configs = valid_bore_configs g_functions_filename = valid_configs[bore_config] - g_functions_json = HVAC.get_g_functions_json(g_functions_filename) - valid_num_bores = HVAC.get_valid_num_bores(g_functions_json) + g_functions_json = get_g_functions_json(g_functions_filename) + valid_num_bores = get_valid_num_bores(g_functions_json) unless valid_num_bores.include? num_bore_holes fail "Number of bore holes (#{num_bore_holes}) with borefield configuration '#{bore_config}' not supported." @@ -1982,6 +1982,41 @@ def self.apply_hvac_ground_loop(runner, hvac_sizing_values, weather, hvac_coolin hvac_sizing_values.GSHP_Bore_Config = bore_config end + def self.valid_bore_configs + valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => 'rectangle_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => 'Open_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationC => 'C_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationL => 'L_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationU => 'U_configurations_5m_v1.0.json', + HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => 'LopU_configurations_5m_v1.0.json' } + return valid_configs + end + + def self.get_g_functions_json(g_functions_filename) + require 'json' + + g_functions_filepath = File.join(File.dirname(__FILE__), 'g_functions', g_functions_filename) + g_functions_json = JSON.parse(File.read(g_functions_filepath), symbolize_names: true) + return g_functions_json + end + + def self.get_valid_num_bores(g_functions_json) + valid_num_bores = [] + g_functions_json.each do |_key_1, values_1| + if values_1.keys.include?(:bore_locations) + valid_num_bores << values_1[:bore_locations].size + else + values_1.each do |_key_2, values_2| + if values_2.keys.include?(:bore_locations) + valid_num_bores << values_2[:bore_locations].size + end + end + end + end + + return valid_num_bores + end + def self.apply_hvac_finalize_airflows(hvac_sizing_values, hvac_heating, hvac_cooling) ''' Finalize Sizing Calculations diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index 36b38ddf0c..7e7fa264e2 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -768,9 +768,9 @@ def test_g_function_library_linear_interpolation_example bore_spacing = UnitConversions.convert(7.0, 'm', 'ft') bore_depth = UnitConversions.convert(150.0, 'm', 'ft') bore_diameter = UnitConversions.convert(UnitConversions.convert(80.0, 'mm', 'm'), 'm', 'in') * 2 - valid_bore_configs = HVAC.valid_bore_configs + valid_bore_configs = HVACSizing.valid_bore_configs g_functions_filename = valid_bore_configs[bore_config] - g_functions_json = HVAC.get_g_functions_json(g_functions_filename) + g_functions_json = HVACSizing.get_g_functions_json(g_functions_filename) actual_lntts, actual_gfnc_coeff = HVACSizing.gshp_gfnc_coeff(bore_config, g_functions_json, num_bore_holes, bore_spacing, bore_depth, bore_diameter) @@ -795,7 +795,7 @@ def test_all_g_function_configs_exist valid_configs.each do |bore_config, valid_num_bores| g_functions_filename = HVAC.valid_bore_configs[bore_config] - g_functions_json = HVAC.get_g_functions_json(g_functions_filename) + g_functions_json = HVACSizing.get_g_functions_json(g_functions_filename) valid_num_bores.each do |num_bore_holes| HVACSizing.get_g_functions(g_functions_json, bore_config, num_bore_holes, '5._192._0.08') # b_h_rb is arbitrary end diff --git a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb index 9380dc7e42..5c1e3992a8 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb @@ -446,6 +446,46 @@ def test_ground_loop assert_in_epsilon(3761.5 / 10 + 5, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) end + def test_g_function_library_linear_interpolation_example + bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle + num_bore_holes = 40 + bore_spacing = UnitConversions.convert(7.0, 'm', 'ft') + bore_depth = UnitConversions.convert(150.0, 'm', 'ft') + bore_diameter = UnitConversions.convert(UnitConversions.convert(80.0, 'mm', 'm'), 'm', 'in') * 2 + valid_bore_configs = HVACSizing.valid_bore_configs + g_functions_filename = valid_bore_configs[bore_config] + g_functions_json = HVACSizing.get_g_functions_json(g_functions_filename) + + actual_lntts, actual_gfnc_coeff = HVACSizing.gshp_gfnc_coeff(bore_config, g_functions_json, num_bore_holes, bore_spacing, bore_depth, bore_diameter) + + expected_lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] + expected_gfnc_coeff = [2.619, 2.967, 3.279, 3.700, 4.190, 5.107, 6.680, 8.537, 11.991, 14.633, 16.767, 20.083, 22.593, 28.734, 34.345, 35.927, 37.342, 38.715, 39.768, 40.664, 41.426, 42.056, 42.524, 43.054, 43.416, 43.594, 43.885] + + expected_lntts.zip(actual_lntts).each do |v1, v2| + assert_in_epsilon(v1, v2, 0.01) + end + expected_gfnc_coeff.zip(actual_gfnc_coeff).each do |v1, v2| + assert_in_epsilon(v1, v2, 0.01) + end + end + + def test_all_g_function_configs_exist + valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], + HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => [8, 10], + HPXML::GeothermalLoopBorefieldConfigurationC => [7, 9], + HPXML::GeothermalLoopBorefieldConfigurationL => [4, 5, 6, 7, 8, 9, 10], + HPXML::GeothermalLoopBorefieldConfigurationU => [7, 9, 10], + HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => [6, 7, 8, 9, 10] } + + valid_configs.each do |bore_config, valid_num_bores| + g_functions_filename = HVAC.valid_bore_configs[bore_config] + g_functions_json = HVACSizing.get_g_functions_json(g_functions_filename) + valid_num_bores.each do |num_bore_holes| + HVACSizing.get_g_functions(g_functions_json, bore_config, num_bore_holes, '5._192._0.08') # b_h_rb is arbitrary + end + end + end + def _test_measure(args_hash) # create an instance of the measure measure = HPXMLtoOpenStudio.new From 94b2e6fa432fb919616ff35c44f4dc996d264439 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 8 Nov 2023 14:53:25 -0700 Subject: [PATCH 192/217] Forgot to save file. --- HPXMLtoOpenStudio/measure.xml | 6 ++--- HPXMLtoOpenStudio/tests/test_hvac.rb | 40 ---------------------------- 2 files changed, 3 insertions(+), 43 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 9fa9cbe1b0..c59b311ae6 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 7bd6feea-0cec-4831-be44-1f5ff4807fb6 - 2023-11-08T21:52:35Z + ccd038ce-debf-4f5a-8828-32116e8900ce + 2023-11-08T21:53:15Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -616,7 +616,7 @@ test_hvac.rb rb test - 72E41335 + CEEACA09 test_hvac_sizing.rb diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index 7e7fa264e2..c1b57221b4 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -762,46 +762,6 @@ def test_geothermal_loop end end - def test_g_function_library_linear_interpolation_example - bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle - num_bore_holes = 40 - bore_spacing = UnitConversions.convert(7.0, 'm', 'ft') - bore_depth = UnitConversions.convert(150.0, 'm', 'ft') - bore_diameter = UnitConversions.convert(UnitConversions.convert(80.0, 'mm', 'm'), 'm', 'in') * 2 - valid_bore_configs = HVACSizing.valid_bore_configs - g_functions_filename = valid_bore_configs[bore_config] - g_functions_json = HVACSizing.get_g_functions_json(g_functions_filename) - - actual_lntts, actual_gfnc_coeff = HVACSizing.gshp_gfnc_coeff(bore_config, g_functions_json, num_bore_holes, bore_spacing, bore_depth, bore_diameter) - - expected_lntts = [-8.5, -7.8, -7.2, -6.5, -5.9, -5.2, -4.5, -3.963, -3.27, -2.864, -2.577, -2.171, -1.884, -1.191, -0.497, -0.274, -0.051, 0.196, 0.419, 0.642, 0.873, 1.112, 1.335, 1.679, 2.028, 2.275, 3.003] - expected_gfnc_coeff = [2.619, 2.967, 3.279, 3.700, 4.190, 5.107, 6.680, 8.537, 11.991, 14.633, 16.767, 20.083, 22.593, 28.734, 34.345, 35.927, 37.342, 38.715, 39.768, 40.664, 41.426, 42.056, 42.524, 43.054, 43.416, 43.594, 43.885] - - expected_lntts.zip(actual_lntts).each do |v1, v2| - assert_in_epsilon(v1, v2, 0.01) - end - expected_gfnc_coeff.zip(actual_gfnc_coeff).each do |v1, v2| - assert_in_epsilon(v1, v2, 0.01) - end - end - - def test_all_g_function_configs_exist - valid_configs = { HPXML::GeothermalLoopBorefieldConfigurationRectangle => [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], - HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle => [8, 10], - HPXML::GeothermalLoopBorefieldConfigurationC => [7, 9], - HPXML::GeothermalLoopBorefieldConfigurationL => [4, 5, 6, 7, 8, 9, 10], - HPXML::GeothermalLoopBorefieldConfigurationU => [7, 9, 10], - HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => [6, 7, 8, 9, 10] } - - valid_configs.each do |bore_config, valid_num_bores| - g_functions_filename = HVAC.valid_bore_configs[bore_config] - g_functions_json = HVACSizing.get_g_functions_json(g_functions_filename) - valid_num_bores.each do |num_bore_holes| - HVACSizing.get_g_functions(g_functions_json, bore_config, num_bore_holes, '5._192._0.08') # b_h_rb is arbitrary - end - end - end - def test_shared_chiller_baseboard args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml')) From 7f2ddf7074ca641a8099e0f380c0737af63f3823 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 9 Nov 2023 08:29:25 -0700 Subject: [PATCH 193/217] Fix new validation test. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/tests/test_validation.rb | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index c59b311ae6..2bb7da7a91 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - ccd038ce-debf-4f5a-8828-32116e8900ce - 2023-11-08T21:53:15Z + bba8358e-24a2-4635-8761-3c547aad062d + 2023-11-09T15:28:56Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -664,7 +664,7 @@ test_validation.rb rb test - DE826CC6 + CA083E00 test_water_heater.rb diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 619aec0caa..7e72c9c002 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -1303,6 +1303,7 @@ def test_ruby_error_messages elsif ['unattached-gshp'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') hpxml_bldg.heat_pumps[0].geothermal_loop_idref = 'foobar' + hpxml_bldg.geothermal_loops[0].delete elsif ['unattached-hvac-distribution'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.heating_systems[0].distribution_system_idref = 'foobar' From dac12db4b94a5c921c601688a8d9f259750b8595 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 9 Nov 2023 08:50:36 -0700 Subject: [PATCH 194/217] More default tests around loop flow, num bore holes, bore length. --- HPXMLtoOpenStudio/measure.xml | 6 +-- HPXMLtoOpenStudio/tests/test_defaults.rb | 48 ++++++++++++++++++++++++ 2 files changed, 51 insertions(+), 3 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 2bb7da7a91..f05f309481 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - bba8358e-24a2-4635-8761-3c547aad062d - 2023-11-09T15:28:56Z + be290927-1b26-49bf-8527-3258d1699ec9 + 2023-11-09T15:50:07Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -592,7 +592,7 @@ test_defaults.rb rb test - 532FB7F3 + 4C03E92E test_enclosure.rb diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 44a7d205dc..7d6c2c6cea 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1721,6 +1721,54 @@ def test_geothermal_loops _default_hpxml, default_hpxml_bldg = _test_measure() _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + # Test defaults w/ specified loop flow + hpxml_bldg.geothermal_loops[0].loop_flow = 1 + hpxml_bldg.geothermal_loops[0].num_bore_holes = nil + hpxml_bldg.geothermal_loops[0].bore_length = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ specified num bore holes + hpxml_bldg.geothermal_loops[0].loop_flow = nil + hpxml_bldg.geothermal_loops[0].num_bore_holes = 2 + hpxml_bldg.geothermal_loops[0].bore_length = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, 2, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ specified bore length + hpxml_bldg.geothermal_loops[0].loop_flow = nil + hpxml_bldg.geothermal_loops[0].num_bore_holes = nil + hpxml_bldg.geothermal_loops[0].bore_length = 300 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, 300, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ specified loop flow, num bore holes + hpxml_bldg.geothermal_loops[0].loop_flow = 2 + hpxml_bldg.geothermal_loops[0].num_bore_holes = 3 + hpxml_bldg.geothermal_loops[0].bore_length = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 2, 3, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ specified num bore holes, bore length + hpxml_bldg.geothermal_loops[0].loop_flow = nil + hpxml_bldg.geothermal_loops[0].num_bore_holes = 4 + hpxml_bldg.geothermal_loops[0].bore_length = 400 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, 4, 16.4, 400, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ specified loop flow, bore length + hpxml_bldg.geothermal_loops[0].loop_flow = 5 + hpxml_bldg.geothermal_loops[0].num_bore_holes = nil + hpxml_bldg.geothermal_loops[0].bore_length = 450 + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 5, nil, 16.4, 450, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + # Test defaults w/ thermally enhanced grout type hpxml_bldg.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) From dd67d3b821cd6c6a19a7a20d802d78fbae7664ed Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Thu, 9 Nov 2023 10:13:54 -0700 Subject: [PATCH 195/217] Fix test after moving a method. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/tests/test_hvac_sizing.rb | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index f05f309481..bebeece402 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - be290927-1b26-49bf-8527-3258d1699ec9 - 2023-11-09T15:50:07Z + 57b4ab3c-7caf-4042-bda5-59ff9a85f595 + 2023-11-09T17:13:36Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -622,7 +622,7 @@ test_hvac_sizing.rb rb test - 904AB60F + F4E8FFCD test_lighting.rb diff --git a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb index 5c1e3992a8..7fb9fa21e4 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb @@ -478,7 +478,7 @@ def test_all_g_function_configs_exist HPXML::GeothermalLoopBorefieldConfigurationLopsidedU => [6, 7, 8, 9, 10] } valid_configs.each do |bore_config, valid_num_bores| - g_functions_filename = HVAC.valid_bore_configs[bore_config] + g_functions_filename = HVACSizing.valid_bore_configs[bore_config] g_functions_json = HVACSizing.get_g_functions_json(g_functions_filename) valid_num_bores.each do |num_bore_holes| HVACSizing.get_g_functions(g_functions_json, bore_config, num_bore_holes, '5._192._0.08') # b_h_rb is arbitrary From c0a51e0c92882ff2b1f01f29dabea8a3a8684b97 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 13 Nov 2023 08:10:57 -0700 Subject: [PATCH 196/217] Some cleanup and refactoring. --- HPXMLtoOpenStudio/measure.xml | 10 +++---- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 3 --- HPXMLtoOpenStudio/resources/hvac.rb | 26 ++++++++++--------- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 13 +++++----- 4 files changed, 26 insertions(+), 26 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 914a6d1e84..18c58781e8 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 5b82f098-f9e3-4c64-b39b-2d638ec3dc45 - 2023-11-13T14:20:21Z + b4651456-b458-4d8e-960b-7b755f1c8f60 + 2023-11-13T15:10:36Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -310,7 +310,7 @@ hpxml_defaults.rb rb resource - 9974D062 + AA50218F hpxml_schema/HPXML.xsd @@ -340,13 +340,13 @@ hvac.rb rb resource - 2A74FBF1 + 8871EFE7 hvac_sizing.rb rb resource - EB5DB676 + 4ACFA8D1 lighting.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 3f1411254e..e3063fdf49 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -3063,9 +3063,6 @@ def self.apply_hvac_sizing(runner, hpxml_bldg, weather, cfa) # Heating GSHP loop if htg_sys.is_a? HPXML::HeatPump - htg_sys.additional_properties.GSHP_Loop_flow = hvac_sizing_values.GSHP_Loop_flow - htg_sys.additional_properties.GSHP_Bore_Depth = hvac_sizing_values.GSHP_Bore_Depth - htg_sys.additional_properties.GSHP_Bore_Holes = hvac_sizing_values.GSHP_Bore_Holes htg_sys.additional_properties.GSHP_G_Functions = hvac_sizing_values.GSHP_G_Functions geothermal_loop = htg_sys.geothermal_loop diff --git a/HPXMLtoOpenStudio/resources/hvac.rb b/HPXMLtoOpenStudio/resources/hvac.rb index 444304b853..bd5a32f662 100644 --- a/HPXMLtoOpenStudio/resources/hvac.rb +++ b/HPXMLtoOpenStudio/resources/hvac.rb @@ -237,7 +237,9 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, obj_name = Constants.ObjectNameGroundSourceHeatPump + geothermal_loop = heat_pump.geothermal_loop hp_ap = heat_pump.additional_properties + htg_cfm = heat_pump.heating_airflow_cfm clg_cfm = heat_pump.cooling_airflow_cfm htg_cfm_rated = heat_pump.airflow_defect_ratio.nil? ? htg_cfm : (htg_cfm / (1.0 + heat_pump.airflow_defect_ratio)) @@ -249,8 +251,8 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, end # Apply unit multiplier - hp_ap.GSHP_Loop_flow *= unit_multiplier - hp_ap.GSHP_Bore_Holes = hp_ap.GSHP_Bore_Holes.to_i * unit_multiplier + geothermal_loop.loop_flow *= unit_multiplier + geothermal_loop.num_bore_holes *= unit_multiplier # Cooling Coil clg_total_cap_curve = create_curve_quad_linear(model, hp_ap.cool_cap_curve_spec[0], obj_name + ' clg total cap curve') @@ -262,7 +264,7 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, clg_coil.setNominalTimeforCondensateRemovaltoBegin(1000) clg_coil.setRatioofInitialMoistureEvaporationRateandSteadyStateLatentCapacity(1.5) clg_coil.setRatedAirFlowRate(UnitConversions.convert(clg_cfm_rated, 'cfm', 'm^3/s')) - clg_coil.setRatedWaterFlowRate(UnitConversions.convert(hp_ap.GSHP_Loop_flow, 'gal/min', 'm^3/s')) + clg_coil.setRatedWaterFlowRate(UnitConversions.convert(geothermal_loop.loop_flow, 'gal/min', 'm^3/s')) clg_coil.setRatedTotalCoolingCapacity(UnitConversions.convert(heat_pump.cooling_capacity, 'Btu/hr', 'W')) clg_coil.setRatedSensibleCoolingCapacity(UnitConversions.convert(hp_ap.cooling_capacity_sensible, 'Btu/hr', 'W')) clg_coil.additionalProperties.setFeature('HPXML_ID', heat_pump.id) # Used by reporting measure @@ -274,7 +276,7 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, htg_coil.setName(obj_name + ' htg coil') htg_coil.setRatedHeatingCoefficientofPerformance(1.0 / hp_ap.heat_rated_eirs[0]) htg_coil.setRatedAirFlowRate(UnitConversions.convert(htg_cfm_rated, 'cfm', 'm^3/s')) - htg_coil.setRatedWaterFlowRate(UnitConversions.convert(hp_ap.GSHP_Loop_flow, 'gal/min', 'm^3/s')) + htg_coil.setRatedWaterFlowRate(UnitConversions.convert(geothermal_loop.loop_flow, 'gal/min', 'm^3/s')) htg_coil.setRatedHeatingCapacity(UnitConversions.convert(heat_pump.heating_capacity, 'Btu/hr', 'W')) htg_coil.additionalProperties.setFeature('HPXML_ID', heat_pump.id) # Used by reporting measure @@ -291,19 +293,19 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, # Ground Heat Exchanger ground_heat_exch_vert = OpenStudio::Model::GroundHeatExchangerVertical.new(model, xing) ground_heat_exch_vert.setName(obj_name + ' exchanger') - ground_heat_exch_vert.setBoreHoleRadius(UnitConversions.convert(heat_pump.geothermal_loop.bore_diameter / 2.0, 'in', 'm')) + ground_heat_exch_vert.setBoreHoleRadius(UnitConversions.convert(geothermal_loop.bore_diameter / 2.0, 'in', 'm')) ground_heat_exch_vert.setGroundThermalConductivity(UnitConversions.convert(ground_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) ground_heat_exch_vert.setGroundThermalHeatCapacity(UnitConversions.convert(ground_conductivity / ground_diffusivity, 'Btu/(ft^3*F)', 'J/(m^3*K)')) ground_heat_exch_vert.setGroundTemperature(UnitConversions.convert(weather.data.DeepGroundAnnualTemp, 'F', 'C')) - ground_heat_exch_vert.setGroutThermalConductivity(UnitConversions.convert(heat_pump.geothermal_loop.grout_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) - ground_heat_exch_vert.setPipeThermalConductivity(UnitConversions.convert(heat_pump.geothermal_loop.pipe_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) + ground_heat_exch_vert.setGroutThermalConductivity(UnitConversions.convert(geothermal_loop.grout_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) + ground_heat_exch_vert.setPipeThermalConductivity(UnitConversions.convert(geothermal_loop.pipe_conductivity, 'Btu/(hr*ft*R)', 'W/(m*K)')) ground_heat_exch_vert.setPipeOutDiameter(UnitConversions.convert(hp_ap.pipe_od, 'in', 'm')) - ground_heat_exch_vert.setUTubeDistance(UnitConversions.convert(heat_pump.geothermal_loop.shank_spacing, 'in', 'm')) + ground_heat_exch_vert.setUTubeDistance(UnitConversions.convert(geothermal_loop.shank_spacing, 'in', 'm')) ground_heat_exch_vert.setPipeThickness(UnitConversions.convert((hp_ap.pipe_od - hp_ap.pipe_id) / 2.0, 'in', 'm')) ground_heat_exch_vert.setMaximumLengthofSimulation(1) - ground_heat_exch_vert.setDesignFlowRate(UnitConversions.convert(hp_ap.GSHP_Loop_flow, 'gal/min', 'm^3/s')) - ground_heat_exch_vert.setNumberofBoreHoles(hp_ap.GSHP_Bore_Holes) - ground_heat_exch_vert.setBoreHoleLength(UnitConversions.convert(hp_ap.GSHP_Bore_Depth, 'ft', 'm')) + ground_heat_exch_vert.setDesignFlowRate(UnitConversions.convert(geothermal_loop.loop_flow, 'gal/min', 'm^3/s')) + ground_heat_exch_vert.setNumberofBoreHoles(geothermal_loop.num_bore_holes) + ground_heat_exch_vert.setBoreHoleLength(UnitConversions.convert(geothermal_loop.bore_length, 'ft', 'm')) ground_heat_exch_vert.setGFunctionReferenceRatio(ground_heat_exch_vert.boreHoleRadius.get / ground_heat_exch_vert.boreHoleLength.get) # ensure this ratio is consistent with rb/H so that g values will be taken as-is ground_heat_exch_vert.removeAllGFunctions for i in 0..(hp_ap.GSHP_G_Functions[0].size - 1) @@ -330,7 +332,7 @@ def self.apply_ground_to_air_heat_pump(model, runner, weather, heat_pump, plant_loop.addSupplyBranchForComponent(ground_heat_exch_vert) plant_loop.addDemandBranchForComponent(htg_coil) plant_loop.addDemandBranchForComponent(clg_coil) - plant_loop.setMaximumLoopFlowRate(UnitConversions.convert(hp_ap.GSHP_Loop_flow, 'gal/min', 'm^3/s')) + plant_loop.setMaximumLoopFlowRate(UnitConversions.convert(geothermal_loop.loop_flow, 'gal/min', 'm^3/s')) sizing_plant = plant_loop.sizingPlant sizing_plant.setLoopType('Condenser') diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 17b339cb88..2c0ed06e71 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1899,15 +1899,9 @@ def self.apply_hvac_ground_loop(runner, hvac_sizing_values, weather, hvac_coolin ''' return if @cooling_type != HPXML::HVACTypeHeatPumpGroundToAir - hvac_cooling_ap = hvac_cooling.additional_properties - - # Autosize ground loop heat exchanger length geothermal_loop = hvac_cooling.geothermal_loop bore_spacing = geothermal_loop.bore_spacing bore_diameter = geothermal_loop.bore_diameter - grout_conductivity = geothermal_loop.grout_conductivity - pipe_r_value = gshp_hx_pipe_rvalue(hvac_cooling) - nom_length_heat, nom_length_cool = gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, bore_diameter, grout_conductivity, pipe_r_value) loop_flow = geothermal_loop.loop_flow if loop_flow.nil? @@ -1926,9 +1920,16 @@ def self.apply_hvac_ground_loop(runner, hvac_sizing_values, weather, hvac_coolin bore_depth = geothermal_loop.bore_length if bore_depth.nil? + # Autosize ground loop heat exchanger length + hvac_cooling_ap = hvac_cooling.additional_properties + grout_conductivity = geothermal_loop.grout_conductivity + pipe_r_value = gshp_hx_pipe_rvalue(hvac_cooling) + nom_length_heat, nom_length_cool = gshp_hxbore_ft_per_ton(weather, hvac_cooling_ap, bore_spacing, bore_diameter, grout_conductivity, pipe_r_value) bore_length_heat = nom_length_heat * hvac_sizing_values.Heat_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') bore_length_cool = nom_length_cool * hvac_sizing_values.Cool_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') bore_length = [bore_length_heat, bore_length_cool].max + + # Divide length by number of boreholes for average bore depth bore_depth = (bore_length / num_bore_holes).floor # ft active_length = 5 # the active length starts about 5 ft below the surface From 067d8e77fa3648f98ccd7820206bfb1443be23e4 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 13 Nov 2023 08:11:19 -0700 Subject: [PATCH 197/217] Update some autosize TODOs in docs. --- docs/source/workflow_inputs.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 6de4c3bbe3..43485abba6 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2208,7 +2208,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ``extension/BorefieldConfiguration`` string See [#]_ No Rectangle ======================================== ================ =========== =============== ======== ============== =============================================== - .. [#] LoopFlow autosized per TODO. + .. [#] LoopFlow autosized by calculating 3 times the maximum of the ground source heat pump's heating/cooling capacity in tons. The LoopFlow minimum is 3 gal/min. .. [#] If extension/BorefieldConfiguration provided, a valid BoreholesOrTrenches/Count must also be provided: \- **Rectangle**: 1, 2, 3, 4, 5, 6, 7, 8, 9, or 10 @@ -2223,7 +2223,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ \- **Lopsided U**: 6, 7, 8, 9, or 10 - .. [#] BoreholesOrTrenches/Count autosized per TODO. + .. [#] BoreholesOrTrenches/Count autosized by assuming 1 for every ton of ground source heat pump cooling capacity. The BoreholesOrTrenches/Count minimum is 1. .. [#] BoreholesOrTrenches/Length must be between 79.0 ft and 500.0 ft. To permit interpolation, each borefield configuration in the library has g-function values corresponding to heights of 24, 48, 96, 192, and 384 m. BoreholesOrTrenches/Length therefore has a minimum of 24 m (or 79 ft). From a9afb26479f73bb63d66b314316124ca9b3347dc Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 13 Nov 2023 15:21:12 -0700 Subject: [PATCH 198/217] Allow boreholes count default when rectangle config provided. --- HPXMLtoOpenStudio/measure.xml | 10 +++++----- .../resources/hpxml_schematron/EPvalidator.xml | 2 +- HPXMLtoOpenStudio/tests/test_defaults.rb | 7 +++++++ HPXMLtoOpenStudio/tests/test_validation.rb | 5 +++++ docs/source/workflow_inputs.rst | 6 +++--- 5 files changed, 21 insertions(+), 9 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 4ca2d4be0a..c41826aa6d 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - b55c7328-b644-43ad-a34e-a3e1e9ac3e6b - 2023-11-13T21:18:29Z + 4c551973-37f5-4c47-8efd-4c7d3dcab0dd + 2023-11-13T22:17:39Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -328,7 +328,7 @@ hpxml_schematron/EPvalidator.xml xml resource - B35A13F3 + 2CE13E5B hpxml_schematron/iso-schematron.xsd @@ -592,7 +592,7 @@ test_defaults.rb rb test - 6AA3D71E + 540CF188 test_enclosure.rb @@ -664,7 +664,7 @@ test_validation.rb rb test - 2483627F + 5F62EB8A test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index ad8150e35b..19874c5184 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1395,7 +1395,7 @@ Expected Pipe/Diameter to be 0.75, 1.0, or 1.25 Expected 0 or 1 element(s) for xpath: Pipe/ShankSpacing Expected Pipe/ShankSpacing to be greater than 0 - Expected 0 or 2 element(s) for xpath: BoreholesOrTrenches/Count | extension/BorefieldConfiguration + Expected BoreholesOrTrenches/Count when extension/BorefieldConfiguration is not 'Rectangle' Expected BorefieldConfiguration to be 'Rectangle' or 'Open Rectangle' or 'C' or 'L' or 'U' or 'Lopsided U' diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 2b24193e08..4054349ba8 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1812,6 +1812,13 @@ def test_geothermal_loops XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.8, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.40, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + + # Test defaults w/ specified rectangle bore config + hpxml_bldg.geothermal_loops[0].num_bore_holes = nil + hpxml_bldg.geothermal_loops[0].bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.8, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.40, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) end def test_hvac_location diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 8ffad39dd8..b9cc4d38e2 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -119,6 +119,7 @@ def test_schema_schematron_error_messages 'hvac-gshp-invalid-bore-config' => ["Expected BorefieldConfiguration to be 'Rectangle' or 'Open Rectangle' or 'C' or 'L' or 'U' or 'Lopsided U' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop, id: \"GeothermalLoop1\"]"], 'hvac-gshp-invalid-bore-depth-low' => ['Expected BoreholesOrTrenches/Length to be greater than or equal to 79 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop, id: "GeothermalLoop1"]'], 'hvac-gshp-invalid-bore-depth-high' => ['Expected BoreholesOrTrenches/Length to be less than or equal to 500 [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop, id: "GeothermalLoop1"]'], + 'hvac-gshp-autosized-count-not-rectangle' => ["Expected BoreholesOrTrenches/Count when extension/BorefieldConfiguration is not 'Rectangle' [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop, id: \"GeothermalLoop1\"]"], 'hvac-location-heating-system' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], 'hvac-location-cooling-system' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], 'hvac-location-heat-pump' => ['A location is specified as "basement - unconditioned" but no surfaces were found adjacent to this space type.'], @@ -395,6 +396,10 @@ def test_schema_schematron_error_messages elsif ['hvac-gshp-invalid-bore-depth-high'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') hpxml_bldg.geothermal_loops[0].bore_length = 501 + elsif ['hvac-gshp-autosized-count-not-rectangle'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') + hpxml_bldg.geothermal_loops[0].num_bore_holes = nil + puts hpxml_bldg.geothermal_loops elsif ['hvac-location-heating-system'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-boiler-oil-only.xml') hpxml_bldg.heating_systems[0].location = HPXML::LocationBasementUnconditioned diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 887271c06d..3c3a829ec0 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2287,8 +2287,8 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ``extension/BorefieldConfiguration`` string See [#]_ No Rectangle ======================================== ================ =========== =============== ======== ============== =============================================== - .. [#] LoopFlow autosized by calculating 3 times the maximum of the ground source heat pump's heating/cooling capacity in tons. The LoopFlow minimum is 3 gal/min. - .. [#] If extension/BorefieldConfiguration provided, a valid BoreholesOrTrenches/Count must also be provided: + .. [#] LoopFlow autosized by calculating 3 times the maximum of the ground source heat pump's heating/cooling capacity in tons. The LoopFlow minimum autosized value is 3 gal/min. + .. [#] If extension/BorefieldConfiguration provided, and it is not **Rectangle**, a valid BoreholesOrTrenches/Count must also be provided: \- **Rectangle**: 1, 2, 3, 4, 5, 6, 7, 8, 9, or 10 @@ -2302,7 +2302,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ \- **Lopsided U**: 6, 7, 8, 9, or 10 - .. [#] BoreholesOrTrenches/Count autosized by assuming 1 for every ton of ground source heat pump cooling capacity. The BoreholesOrTrenches/Count minimum is 1. + .. [#] BoreholesOrTrenches/Count autosized by assuming 1 for every ton of ground source heat pump cooling capacity. .. [#] BoreholesOrTrenches/Length must be between 79.0 ft and 500.0 ft. To permit interpolation, each borefield configuration in the library has g-function values corresponding to heights of 24, 48, 96, 192, and 384 m. BoreholesOrTrenches/Length therefore has a minimum of 24 m (or 79 ft). From d164a0f7c007095063b7ce7f823f0996c5efdb24 Mon Sep 17 00:00:00 2001 From: Jeff Maguire Date: Mon, 13 Nov 2023 15:58:57 -0700 Subject: [PATCH 199/217] Update documentation on "auto" option for BoreholesOrTrenches/Length --- docs/source/workflow_inputs.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 3c3a829ec0..f6b039ca27 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2302,12 +2302,12 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ \- **Lopsided U**: 6, 7, 8, 9, or 10 - .. [#] BoreholesOrTrenches/Count autosized by assuming 1 for every ton of ground source heat pump cooling capacity. + .. [#] BoreholesOrTrenches/Count autosized by assuming 1 for every ton of ground source heat pump cooling capacity (max of 10). .. [#] BoreholesOrTrenches/Length must be between 79.0 ft and 500.0 ft. To permit interpolation, each borefield configuration in the library has g-function values corresponding to heights of 24, 48, 96, 192, and 384 m. - BoreholesOrTrenches/Length therefore has a minimum of 24 m (or 79 ft). + BoreholesOrTrenches/Length therefore has a minimum of 24 m (or 79 ft) to avoid extrapolation. BoreholesOrTrenches/Length, on the other hand, has a maximum of 500 ft; bore depths exceeding this value are unlikely to be used in residential applications. - .. [#] BoreholesOrTrenches/Length autosized per TODO. + .. [#] BoreholesOrTrenches/Length autosized based on the required total length of the ground heat exchanger (calculated during sizing) and the total number of boreholes, with the total length evenly distributed across each borehole. .. [#] Grout/Type choices are "standard" or "thermally enhanced". .. [#] If Grout/Conductivity not provided, defaults based on Grout/Type: From 70de9a74aabeaceabe78899fa94532944e930aae Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 13 Nov 2023 23:01:34 +0000 Subject: [PATCH 200/217] Latest results. --- .../results_workflow_simulations1.csv | 429 +++++++++--------- .../results_workflow_simulations1_bills.csv | 425 ++++++++--------- 2 files changed, 434 insertions(+), 420 deletions(-) diff --git a/workflow/tests/base_results/results_workflow_simulations1.csv b/workflow/tests/base_results/results_workflow_simulations1.csv index 5f77e7d983..f0742b5610 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -1,212 +1,215 @@ HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Permanent Spa Heater (MBtu),End Use: Electricity: Permanent Spa Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Permanent Spa Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu),Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),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) -base-appliances-coal.xml,59.712,59.712,33.233,33.233,21.613,0.0,0.0,0.0,0.0,4.866,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-portable.xml,34.698,34.698,33.413,33.413,1.285,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.045,1.936,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.589,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,1.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,1.134,0.0,31.406,6.562,0.571,0.0,0.0,0.0,0.0,2080.2,2858.2,2858.2,9.452,15.098,0.0,1.741,1.624,0.0,0.0,0.392,4.896,-4.781,0.0,0.0,0.0,1.259,-0.393,1.046,0.077,0.391,0.0,0.032,-4.64,-0.753,0.0,0.498,-0.057,0.0,0.0,0.201,2.726,17.39,0.0,0.0,0.0,1.737,-0.388,-0.348,-1.933,-0.1,0.0,0.353,9.622,1.894,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-dehumidifier-ief-whole-home.xml,34.723,34.723,33.46,33.46,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.045,1.935,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.636,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,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.125,0.0,31.401,6.562,0.571,0.0,0.0,0.0,0.0,2102.6,2858.2,2858.2,9.474,15.098,0.0,1.744,1.628,0.0,0.0,0.394,4.928,-4.771,0.0,0.0,0.0,1.254,-0.399,1.052,0.072,0.394,0.0,0.031,-4.678,-0.757,0.0,0.5,-0.054,0.0,0.0,0.203,2.754,17.4,0.0,0.0,0.0,1.729,-0.394,-0.343,-1.929,-0.098,0.0,0.353,9.601,1.89,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-dehumidifier-multiple.xml,34.689,34.689,33.336,33.336,1.353,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.034,1.933,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.526,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,1.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,1.199,0.0,31.356,6.562,0.571,0.0,0.0,0.0,0.0,2086.3,2858.2,2858.2,9.538,15.098,0.0,1.75,1.63,0.0,0.0,0.392,4.89,-4.859,0.0,0.0,0.0,1.271,-0.388,1.047,0.076,0.393,0.0,0.034,-4.525,-0.76,0.0,0.513,-0.045,0.0,0.0,0.203,2.738,17.312,0.0,0.0,0.0,1.767,-0.383,-0.343,-1.922,-0.096,0.0,0.353,9.566,1.887,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-dehumidifier.xml,34.66,34.66,33.39,33.39,1.27,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.038,1.933,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.576,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,1.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.146,0.0,31.372,6.562,0.571,0.0,0.0,0.0,0.0,1974.6,2858.2,2858.2,9.517,15.098,0.0,1.762,1.642,0.0,0.0,0.395,4.938,-4.866,0.0,0.0,0.0,1.276,-0.393,1.057,0.072,0.397,0.0,0.032,-4.654,-0.764,0.0,0.523,-0.035,0.0,0.0,0.205,2.778,17.305,0.0,0.0,0.0,1.763,-0.388,-0.335,-1.929,-0.093,0.0,0.353,9.555,1.883,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-gas.xml,59.712,59.712,33.233,33.233,26.479,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,58.331,58.331,36.917,36.917,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,4.535,0.887,9.541,0.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,0.0,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.053,0.0,14.953,9.641,0.613,0.0,0.0,0.0,0.0,2160.4,3468.4,3468.4,22.968,19.347,0.0,3.567,3.65,0.514,7.552,0.632,10.119,-12.663,0.0,0.0,0.0,8.335,-0.066,5.409,0.0,0.0,0.0,4.671,-9.525,-2.496,0.0,-0.077,-0.48,-0.054,2.643,-0.03,-1.454,11.75,0.0,0.0,0.0,-6.421,-0.063,-1.323,-3.168,0.0,0.0,3.296,8.51,2.014,1354.8,1997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,52.556,52.556,28.368,28.368,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,4.077,0.775,7.784,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,0.0,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.653,0.0,13.051,7.75,0.615,0.0,0.0,0.0,0.0,1855.8,2988.8,2988.8,23.37,18.123,0.0,3.528,3.626,0.51,7.473,0.627,10.055,-12.698,0.0,0.0,0.0,8.25,-0.062,5.397,0.0,0.0,0.0,5.202,-7.087,-2.503,0.0,-0.007,-0.425,-0.046,2.794,-0.016,-1.284,11.715,0.0,0.0,0.0,-6.167,-0.058,-1.269,-2.934,0.0,0.0,2.957,5.974,2.006,0.0,0.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-oil.xml,59.712,59.712,33.233,33.233,21.613,4.866,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,0.0,0.0,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-propane.xml,59.712,59.712,33.233,33.233,21.613,0.0,4.866,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,59.712,59.712,33.233,33.233,21.613,0.0,0.0,4.866,0.0,0.0,0.0,0.357,0.0,0.0,4.506,0.88,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.814,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3387.3,3387.3,22.969,19.431,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.072,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.272,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,61.415,61.415,35.795,35.795,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,4.257,0.822,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.973,0.0,13.668,9.075,0.615,0.0,0.0,0.0,0.0,2143.4,3135.9,3135.9,22.717,16.559,6.771,0.0,4.231,0.513,7.508,0.633,12.688,-15.638,0.0,0.0,0.0,8.371,-0.086,9.316,0.0,0.729,0.0,0.0,-8.932,-2.503,0.124,0.0,-0.517,-0.049,2.739,-0.02,-1.228,15.662,0.0,0.0,0.0,-6.364,-0.061,-2.102,-3.934,-0.159,0.0,0.0,7.847,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,63.174,63.174,40.571,40.571,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.92,0.984,8.922,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,0.0,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.151,0.0,16.414,9.023,0.613,0.0,0.0,0.0,0.0,2374.2,3688.8,3688.8,22.528,19.803,4.57,1.168,5.569,0.52,7.699,0.639,14.497,-17.149,0.0,0.0,0.0,8.589,-0.089,7.111,0.0,0.733,0.0,0.273,-10.225,-3.182,-0.013,0.016,-0.589,-0.055,2.657,-0.033,-1.932,17.689,0.0,0.0,0.0,-6.404,-0.083,-1.707,-4.231,-0.168,0.0,0.094,8.938,2.569,1354.8,997.6,11171.6,2471.3,0.0,36000.0,24000.0,0.0,6.8,91.76,31468.0,778.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,54.517,54.517,35.065,35.065,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.321,0.0,0.0,3.746,0.704,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.203,0.0,11.696,9.075,0.614,0.0,0.0,0.0,0.0,2104.8,2723.1,2723.1,17.648,12.83,6.045,0.0,3.619,0.509,7.464,0.625,10.031,-12.687,0.0,0.0,0.0,8.217,-0.076,4.799,0.0,0.728,0.0,0.0,-8.908,-2.5,0.291,0.0,-0.456,-0.051,2.711,-0.025,-1.387,11.721,0.0,0.0,0.0,-6.302,-0.051,-1.158,-3.067,-0.164,0.0,0.0,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,37.467,37.467,33.315,33.315,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.442,2.011,6.714,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,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.834,0.0,32.575,6.562,0.579,0.0,0.0,0.0,0.0,1910.2,3261.7,3261.7,13.531,18.843,0.0,6.126,1.575,0.0,0.0,0.335,4.353,-5.899,0.0,0.0,0.0,0.826,-0.36,0.993,0.0,0.397,0.0,0.103,-3.998,-0.844,0.0,2.403,0.135,0.0,0.0,0.203,2.884,16.272,0.0,0.0,0.0,2.056,-0.352,-0.28,-1.733,-0.052,0.0,0.374,9.165,1.803,1354.8,997.6,9789.3,2412.1,0.0,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,22161.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-atticroof-unvented-insulated-roof.xml,57.035,57.035,35.224,35.224,21.812,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,3.847,0.723,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,20.413,0.0,11.971,9.075,0.615,0.0,0.0,0.0,0.0,2127.6,2865.7,2865.7,19.246,14.113,0.0,5.475,3.627,0.51,7.484,0.627,10.053,-12.69,0.0,0.0,0.0,8.285,-0.062,4.803,0.0,0.729,0.0,2.654,-8.912,-2.5,0.0,-1.481,-0.423,-0.046,2.812,-0.016,-1.287,11.723,0.0,0.0,0.0,-6.128,-0.053,-1.135,-2.92,-0.161,0.0,1.445,7.867,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,30482.0,4823.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1772.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,57.66,57.66,35.581,35.581,22.08,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.989,0.758,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.675,0.0,12.665,9.075,0.803,0.0,0.0,0.0,0.0,2132.8,3014.3,3014.3,21.537,15.427,0.0,3.899,3.639,0.512,7.515,0.63,10.087,-12.691,0.0,0.0,0.0,8.3,-0.062,4.804,0.0,0.729,0.0,4.067,-8.579,-2.5,0.0,-0.528,-0.448,-0.05,2.73,-0.022,-1.358,11.723,0.0,0.0,0.0,-6.278,-0.058,-1.157,-3.029,-0.164,0.0,1.957,7.585,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16425.0,3714.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,59.932,59.932,37.665,37.665,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3536.4,3536.4,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,1.3,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,36.317,36.317,24.692,24.692,11.625,0.0,0.0,0.0,0.0,0.0,0.0,0.085,0.0,0.0,1.636,0.213,9.675,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,11.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,10.777,0.0,3.159,9.374,0.73,0.0,0.0,0.0,0.0,1571.2,2044.5,2044.5,7.666,6.098,0.0,2.942,3.651,0.0,0.0,0.583,1.31,-1.593,0.0,0.0,2.978,0.0,-0.037,1.669,0.0,0.0,0.0,4.662,-4.243,-1.184,0.0,-0.933,-0.243,0.0,0.0,-0.056,-0.113,1.309,0.0,0.0,-0.947,0.0,-0.033,-0.288,-0.351,0.0,0.0,0.579,3.429,0.842,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12345.0,5658.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,31.538,31.538,25.188,25.188,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,2.169,0.332,9.559,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,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.89,0.0,5.258,9.374,0.609,0.0,0.0,0.0,1.0,1559.2,2252.6,2252.6,9.392,10.746,0.0,-0.005,3.303,0.0,0.0,1.394,3.737,-4.202,0.0,0.0,4.614,0.0,-0.073,1.253,0.0,0.793,0.0,2.37,-6.263,-1.136,0.0,-0.001,-0.475,0.0,0.0,-0.429,-0.209,4.004,0.0,0.0,-3.094,0.0,-0.068,-0.251,-1.127,-0.133,0.0,0.508,5.736,0.89,1354.8,997.6,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12328.0,5013.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,49.43,49.43,24.693,24.693,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,1.491,0.178,9.76,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,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.939,0.0,2.593,9.374,0.818,0.0,0.0,0.0,0.0,1572.9,2230.6,2230.6,11.077,8.743,0.0,5.361,4.203,0.0,0.0,0.789,1.288,-1.709,0.0,0.0,5.413,0.0,-0.062,1.7,0.0,0.0,0.0,11.645,-4.474,-1.246,0.0,-1.205,-0.066,0.0,0.0,-0.056,-0.008,1.194,0.0,0.0,-1.212,0.0,-0.057,-0.194,-0.279,0.0,0.0,0.549,3.198,0.781,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,14592.0,6778.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,25.876,25.876,24.558,24.558,1.317,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.661,0.22,9.585,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.22,0.0,3.265,9.374,0.636,0.0,0.0,0.0,0.0,1558.6,1869.1,1869.1,3.415,6.099,0.0,0.378,3.172,0.0,0.0,0.381,1.385,-1.507,0.0,0.0,0.401,0.0,-0.006,1.706,0.0,0.0,0.0,0.374,-4.015,-1.12,0.0,-0.84,-0.474,0.0,0.0,-0.078,-0.221,1.396,0.0,0.0,-0.856,0.0,-0.002,-0.396,-0.392,0.0,0.0,0.598,3.657,0.907,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,8331.0,3673.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,26.185,26.185,25.123,25.123,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.153,0.343,9.537,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,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.984,0.0,5.308,9.374,0.586,0.0,0.0,0.0,0.0,1578.0,1741.9,1741.9,3.705,4.57,0.0,-0.004,3.199,0.0,0.0,0.372,1.434,-1.384,0.0,0.0,-0.004,0.0,-0.074,1.765,0.0,0.0,0.0,0.306,-3.658,-1.009,0.0,-0.001,-0.583,0.0,0.0,-0.044,-0.373,1.518,0.0,0.0,-0.001,0.0,-0.071,-0.543,-0.515,0.0,0.0,0.944,4.015,1.017,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,7886.0,3453.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,6279.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-infil-compartmentalization-test.xml,26.804,26.804,26.287,26.287,0.517,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.095,0.58,9.526,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.517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,9.42,9.374,0.574,0.0,0.0,0.0,0.0,1668.0,1953.8,1953.8,3.251,7.677,0.0,-0.015,2.451,0.0,0.0,0.424,3.906,-2.465,0.0,0.0,-0.01,0.0,-0.396,0.991,0.0,0.666,0.0,0.0,-4.45,-0.746,0.0,-0.01,-1.157,0.0,0.0,-0.049,-1.212,5.738,0.0,0.0,-0.005,0.0,-0.386,-0.414,-1.343,-0.41,0.0,0.0,7.514,1.28,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 -base-bldgtype-mf-unit-residents-1.xml,19.884,19.884,18.663,18.663,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.471,0.422,4.527,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,0.0,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,7.202,4.144,0.584,0.0,0.0,0.0,0.0,1142.0,1671.8,1671.8,3.916,7.195,0.0,-0.018,2.578,0.0,0.0,0.425,4.087,-3.005,0.0,0.0,-0.017,0.0,-0.365,1.302,0.0,0.742,0.0,0.0,-3.753,-0.915,0.0,-0.013,-0.841,0.0,0.0,-0.013,-0.739,5.197,0.0,0.0,-0.012,0.0,-0.356,-0.408,-1.204,-0.286,0.0,0.0,4.875,1.111,817.2,530.6,4684.1,1314.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,27.301,27.301,26.651,26.651,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.031,0.0,0.0,3.152,0.858,9.527,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.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,7.0,1676.6,1998.5,1998.5,3.451,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,28.125,28.125,27.432,27.432,0.694,0.0,0.0,0.0,0.0,0.0,0.0,0.055,0.0,0.0,3.797,0.97,9.527,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.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,0.616,0.0,10.469,9.374,0.575,0.0,0.0,0.0,13.0,1706.3,2202.5,2202.5,3.597,8.104,0.0,-0.015,2.472,0.0,0.0,0.423,3.919,-2.555,0.0,0.0,-0.011,0.0,-0.392,1.275,0.0,0.674,0.0,0.036,-4.548,-0.767,0.0,-0.01,-1.112,0.0,0.0,-0.046,-1.16,5.647,0.0,0.0,-0.005,0.0,-0.382,-0.522,-1.34,-0.394,0.0,1.244,7.418,1.259,1354.8,997.6,11171.5,3093.4,0.0,8647.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,27.596,27.596,26.979,26.979,0.616,0.0,0.0,0.0,0.0,0.0,0.0,0.074,0.0,0.0,3.438,0.858,9.527,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.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,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,7.0,1687.4,2060.4,2060.4,3.449,6.982,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,33.049,33.049,32.543,32.543,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,8.9,0.97,9.527,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.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,0.594,0.0,10.469,9.374,0.575,0.0,0.0,0.0,13.0,2186.4,3395.0,3395.0,3.53,8.104,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.747,27.747,27.241,27.241,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,3.597,0.97,9.527,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.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,0.594,0.0,10.469,9.374,0.575,0.0,0.0,0.0,13.0,1698.7,2155.8,2155.8,3.53,8.104,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.046,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.244,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-appliances-coal.xml,59.654,59.654,33.175,33.175,21.613,0.0,0.0,0.0,0.0,4.866,0.0,0.357,0.0,0.0,4.479,0.849,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3361.9,3361.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-portable.xml,34.617,34.617,33.334,33.334,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.025,1.876,6.707,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,0.0,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.133,0.0,31.411,6.562,0.571,0.0,0.0,0.0,0.0,2082.6,2847.3,2847.3,9.452,15.099,0.0,1.741,1.624,0.0,0.0,0.393,4.909,-4.778,0.0,0.0,0.0,1.255,-0.399,1.048,0.077,0.392,0.0,0.032,-4.653,-0.755,0.0,0.498,-0.057,0.0,0.0,0.202,2.738,17.393,0.0,0.0,0.0,1.73,-0.394,-0.346,-1.931,-0.099,0.0,0.358,9.611,1.892,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier-ief-whole-home.xml,34.646,34.646,33.383,33.383,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.024,1.876,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.64,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,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.121,0.0,31.402,6.562,0.571,0.0,0.0,0.0,0.0,2101.2,2847.3,2847.3,9.474,15.099,0.0,1.746,1.629,0.0,0.0,0.394,4.93,-4.783,0.0,0.0,0.0,1.261,-0.399,1.053,0.078,0.394,0.0,0.031,-4.697,-0.758,0.0,0.502,-0.053,0.0,0.0,0.204,2.757,17.387,0.0,0.0,0.0,1.734,-0.394,-0.342,-1.926,-0.097,0.0,0.358,9.588,1.889,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier-multiple.xml,34.615,34.615,33.262,33.262,1.352,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.014,1.874,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.531,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,1.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.205,0.0,31.373,6.562,0.571,0.0,0.0,0.0,0.0,1986.8,2847.3,2847.3,9.538,15.099,0.0,1.749,1.629,0.0,0.0,0.392,4.889,-4.85,0.0,0.0,0.0,1.269,-0.389,1.046,0.076,0.393,0.0,0.034,-4.524,-0.759,0.0,0.511,-0.047,0.0,0.0,0.203,2.736,17.321,0.0,0.0,0.0,1.763,-0.384,-0.345,-1.922,-0.097,0.0,0.358,9.577,1.888,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier.xml,34.584,34.584,33.315,33.315,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.017,1.874,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.58,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,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.134,0.0,31.369,6.562,0.571,0.0,0.0,0.0,0.0,1974.6,2847.3,2847.3,9.517,15.099,0.0,1.761,1.641,0.0,0.0,0.395,4.941,-4.857,0.0,0.0,0.0,1.272,-0.396,1.056,0.078,0.397,0.0,0.031,-4.672,-0.765,0.0,0.522,-0.036,0.0,0.0,0.206,2.78,17.314,0.0,0.0,0.0,1.759,-0.391,-0.336,-1.924,-0.093,0.0,0.358,9.545,1.882,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-gas.xml,59.654,59.654,33.175,33.175,26.479,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.479,0.849,9.016,0.0,0.0,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,21.613,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.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3361.9,3361.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,58.272,58.272,36.859,36.859,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,4.508,0.856,9.541,0.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,0.0,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.053,0.0,14.889,9.641,0.613,0.0,0.0,0.0,0.0,2160.4,3436.0,3436.0,22.968,19.151,0.0,3.567,3.65,0.514,7.552,0.632,10.119,-12.663,0.0,0.0,0.0,8.335,-0.066,5.409,0.0,0.0,0.0,4.671,-9.525,-2.496,0.0,-0.075,-0.48,-0.054,2.643,-0.03,-1.454,11.75,0.0,0.0,0.0,-6.421,-0.063,-1.323,-3.168,0.0,0.0,3.234,8.51,2.014,1354.8,1997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,52.503,52.503,28.315,28.315,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,4.052,0.748,7.784,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,0.0,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.653,0.0,12.992,7.75,0.615,0.0,0.0,0.0,0.0,1855.8,2957.5,2957.5,23.37,17.934,0.0,3.528,3.626,0.51,7.473,0.627,10.055,-12.698,0.0,0.0,0.0,8.25,-0.062,5.397,0.0,0.0,0.0,5.202,-7.087,-2.503,0.0,-0.005,-0.425,-0.046,2.794,-0.016,-1.285,11.715,0.0,0.0,0.0,-6.168,-0.058,-1.269,-2.935,0.0,0.0,2.899,5.974,2.006,0.0,0.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-oil.xml,59.654,59.654,33.175,33.175,21.613,4.866,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.479,0.849,9.016,0.0,0.0,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,21.613,0.0,0.0,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.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3361.9,3361.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-propane.xml,59.654,59.654,33.175,33.175,21.613,0.0,4.866,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.479,0.849,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3361.9,3361.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,59.654,59.654,33.175,33.175,21.613,0.0,0.0,4.866,0.0,0.0,0.0,0.357,0.0,0.0,4.479,0.849,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3361.9,3361.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,61.378,61.378,35.758,35.758,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,4.245,0.796,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.973,0.0,13.668,9.075,0.615,0.0,0.0,0.0,0.0,2143.4,3127.2,3127.2,22.717,16.559,6.771,0.0,4.231,0.513,7.508,0.633,12.688,-15.638,0.0,0.0,0.0,8.371,-0.086,9.316,0.0,0.729,0.0,0.0,-8.932,-2.503,0.124,0.0,-0.517,-0.049,2.739,-0.02,-1.228,15.662,0.0,0.0,0.0,-6.364,-0.061,-2.102,-3.934,-0.159,0.0,0.0,7.847,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,63.131,63.131,40.528,40.528,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.907,0.953,8.922,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,0.0,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.151,0.0,16.414,9.023,0.613,0.0,0.0,0.0,0.0,2374.2,3678.4,3678.4,22.528,19.797,4.57,1.168,5.569,0.52,7.699,0.639,14.497,-17.149,0.0,0.0,0.0,8.589,-0.089,7.111,0.0,0.733,0.0,0.273,-10.225,-3.182,-0.013,0.016,-0.589,-0.055,2.657,-0.033,-1.932,17.689,0.0,0.0,0.0,-6.404,-0.083,-1.707,-4.231,-0.168,0.0,0.093,8.938,2.569,1354.8,997.6,11171.6,2471.3,0.0,36000.0,24000.0,0.0,6.8,91.76,31468.0,778.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,54.485,54.485,35.033,35.033,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.321,0.0,0.0,3.736,0.682,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.203,0.0,11.696,9.075,0.614,0.0,0.0,0.0,0.0,2104.8,2715.9,2715.9,17.648,12.83,6.045,0.0,3.619,0.509,7.464,0.625,10.031,-12.687,0.0,0.0,0.0,8.217,-0.076,4.799,0.0,0.728,0.0,0.0,-8.908,-2.5,0.291,0.0,-0.456,-0.051,2.711,-0.025,-1.387,11.721,0.0,0.0,0.0,-6.302,-0.051,-1.158,-3.067,-0.164,0.0,0.0,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier.xml,37.386,37.386,33.234,33.234,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.422,1.949,6.714,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,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.834,0.0,32.579,6.562,0.579,0.0,0.0,0.0,0.0,1906.5,3249.1,3249.1,13.531,18.845,0.0,6.126,1.575,0.0,0.0,0.335,4.353,-5.899,0.0,0.0,0.0,0.826,-0.36,0.993,0.0,0.397,0.0,0.103,-3.998,-0.844,0.0,2.403,0.135,0.0,0.0,0.203,2.884,16.272,0.0,0.0,0.0,2.056,-0.352,-0.28,-1.733,-0.052,0.0,0.379,9.165,1.803,1354.8,997.6,9789.3,2412.1,0.0,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,22161.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-atticroof-unvented-insulated-roof.xml,57.002,57.002,35.19,35.19,21.812,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,3.836,0.7,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,20.413,0.0,11.97,9.075,0.615,0.0,0.0,0.0,0.0,2127.6,2857.3,2857.3,19.246,14.108,0.0,5.475,3.627,0.51,7.484,0.627,10.053,-12.69,0.0,0.0,0.0,8.285,-0.062,4.803,0.0,0.729,0.0,2.654,-8.912,-2.5,0.0,-1.478,-0.423,-0.046,2.812,-0.016,-1.287,11.723,0.0,0.0,0.0,-6.128,-0.053,-1.135,-2.92,-0.161,0.0,1.442,7.867,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,30482.0,4823.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1772.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,57.62,57.62,35.54,35.54,22.08,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.974,0.733,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.675,0.0,12.646,9.075,0.803,0.0,0.0,0.0,0.0,2132.8,2996.8,2996.8,21.537,15.351,0.0,3.899,3.639,0.512,7.515,0.63,10.087,-12.691,0.0,0.0,0.0,8.3,-0.062,4.804,0.0,0.729,0.0,4.066,-8.579,-2.5,0.0,-0.528,-0.448,-0.05,2.73,-0.022,-1.358,11.723,0.0,0.0,0.0,-6.278,-0.058,-1.157,-3.029,-0.164,0.0,1.937,7.585,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16425.0,3714.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,59.875,59.875,37.608,37.608,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3503.8,3503.8,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,1.302,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery.xml,58.14,58.14,35.874,35.874,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3389.8,3389.8,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,36.306,36.306,24.681,24.681,11.625,0.0,0.0,0.0,0.0,0.0,0.0,0.085,0.0,0.0,1.632,0.207,9.675,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,11.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,10.777,0.0,3.158,9.374,0.73,0.0,0.0,0.0,0.0,1571.2,2034.9,2034.9,7.666,6.063,0.0,2.942,3.651,0.0,0.0,0.583,1.31,-1.593,0.0,0.0,2.978,0.0,-0.037,1.669,0.0,0.0,0.0,4.662,-4.243,-1.184,0.0,-0.933,-0.243,0.0,0.0,-0.056,-0.113,1.309,0.0,0.0,-0.947,0.0,-0.033,-0.288,-0.351,0.0,0.0,0.578,3.429,0.842,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12345.0,5658.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,31.521,31.521,25.171,25.171,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,2.162,0.321,9.559,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,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.89,0.0,5.253,9.374,0.609,0.0,0.0,0.0,0.0,1559.2,2243.1,2243.1,9.392,10.995,0.0,-0.004,3.304,0.0,0.0,1.394,3.736,-4.206,0.0,0.0,4.616,0.0,-0.071,1.253,0.0,0.793,0.0,2.37,-6.264,-1.136,0.0,-0.0,-0.473,0.0,0.0,-0.429,-0.211,4.0,0.0,0.0,-3.092,0.0,-0.066,-0.251,-1.127,-0.133,0.0,0.503,5.735,0.89,1354.8,997.6,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12328.0,5013.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,49.42,49.42,24.682,24.682,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,1.487,0.172,9.76,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,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.939,0.0,2.588,9.374,0.818,0.0,0.0,0.0,0.0,1572.9,2211.0,2211.0,11.077,8.634,0.0,5.361,4.203,0.0,0.0,0.789,1.288,-1.709,0.0,0.0,5.413,0.0,-0.062,1.7,0.0,0.0,0.0,11.645,-4.474,-1.246,0.0,-1.205,-0.066,0.0,0.0,-0.056,-0.008,1.194,0.0,0.0,-1.212,0.0,-0.057,-0.194,-0.279,0.0,0.0,0.544,3.198,0.781,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,14592.0,6778.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,25.864,25.864,24.547,24.547,1.317,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.657,0.213,9.585,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.22,0.0,3.264,9.374,0.636,0.0,0.0,0.0,0.0,1558.6,1862.4,1862.4,3.415,6.065,0.0,0.378,3.172,0.0,0.0,0.381,1.385,-1.507,0.0,0.0,0.401,0.0,-0.006,1.706,0.0,0.0,0.0,0.374,-4.015,-1.12,0.0,-0.84,-0.474,0.0,0.0,-0.078,-0.221,1.396,0.0,0.0,-0.856,0.0,-0.002,-0.396,-0.392,0.0,0.0,0.597,3.657,0.907,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,8331.0,3673.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,26.169,26.169,25.107,25.107,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.147,0.333,9.537,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,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.984,0.0,5.308,9.374,0.586,0.0,0.0,0.0,0.0,1578.0,1738.4,1738.4,3.705,4.57,0.0,-0.004,3.199,0.0,0.0,0.372,1.434,-1.384,0.0,0.0,-0.004,0.0,-0.074,1.765,0.0,0.0,0.0,0.306,-3.658,-1.009,0.0,-0.001,-0.583,0.0,0.0,-0.044,-0.373,1.518,0.0,0.0,-0.001,0.0,-0.071,-0.543,-0.515,0.0,0.0,0.944,4.015,1.017,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,7886.0,3453.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,6279.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-infil-compartmentalization-test.xml,26.778,26.778,26.261,26.261,0.517,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.087,0.562,9.526,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.517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,9.42,9.374,0.574,0.0,0.0,0.0,0.0,1667.1,1948.8,1948.8,3.251,7.677,0.0,-0.015,2.451,0.0,0.0,0.424,3.906,-2.465,0.0,0.0,-0.01,0.0,-0.396,0.991,0.0,0.666,0.0,0.0,-4.45,-0.746,0.0,-0.01,-1.157,0.0,0.0,-0.049,-1.212,5.738,0.0,0.0,-0.005,0.0,-0.386,-0.414,-1.343,-0.41,0.0,0.0,7.514,1.28,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 +base-bldgtype-mf-unit-residents-1.xml,19.866,19.866,18.645,18.645,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.466,0.409,4.527,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,0.0,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,7.202,4.144,0.584,0.0,0.0,0.0,0.0,1141.6,1667.9,1667.9,3.916,7.195,0.0,-0.018,2.578,0.0,0.0,0.425,4.087,-3.005,0.0,0.0,-0.017,0.0,-0.365,1.302,0.0,0.742,0.0,0.0,-3.753,-0.915,0.0,-0.013,-0.841,0.0,0.0,-0.013,-0.739,5.197,0.0,0.0,-0.012,0.0,-0.356,-0.408,-1.204,-0.286,0.0,0.0,4.875,1.111,817.2,530.6,4684.1,1314.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,27.273,27.273,26.623,26.623,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.031,0.0,0.0,3.149,0.833,9.527,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.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,4.0,1675.4,1994.4,1994.4,3.451,7.024,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,28.096,28.096,27.403,27.403,0.694,0.0,0.0,0.0,0.0,0.0,0.0,0.055,0.0,0.0,3.795,0.943,9.527,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.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,0.616,0.0,10.479,9.374,0.576,0.0,0.0,0.0,10.0,1705.4,2197.7,2197.7,3.597,8.162,0.0,-0.015,2.472,0.0,0.0,0.423,3.919,-2.555,0.0,0.0,-0.011,0.0,-0.392,1.275,0.0,0.675,0.0,0.036,-4.548,-0.767,0.0,-0.01,-1.111,0.0,0.0,-0.046,-1.16,5.647,0.0,0.0,-0.005,0.0,-0.382,-0.522,-1.34,-0.394,0.0,1.253,7.418,1.259,1354.8,997.6,11171.5,3093.4,0.0,8647.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,27.567,27.567,26.951,26.951,0.616,0.0,0.0,0.0,0.0,0.0,0.0,0.074,0.0,0.0,3.434,0.833,9.527,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.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,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,4.0,1686.3,2058.1,2058.1,3.449,7.024,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,33.017,33.017,32.511,32.511,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,8.895,0.943,9.527,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.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,0.594,0.0,10.479,9.374,0.576,0.0,0.0,0.0,10.0,2183.2,3390.5,3390.5,3.53,8.162,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.045,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.253,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.718,27.718,27.212,27.212,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,3.596,0.943,9.527,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.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,0.594,0.0,10.479,9.374,0.576,0.0,0.0,0.0,10.0,1697.8,2150.9,2150.9,3.53,8.162,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.045,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.253,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,23.068,23.068,22.546,22.546,0.522,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,0.0,0.0,9.438,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.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,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1508.8,1332.5,1508.8,3.443,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,23.122,23.122,22.564,22.564,0.558,0.0,0.0,0.0,0.0,0.0,0.0,0.044,0.0,0.0,0.0,0.0,9.438,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.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.495,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1527.5,1332.5,1527.5,3.595,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.029,-6.076,-1.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,1354.8,997.6,11171.6,3093.4,0.0,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,23.075,23.075,22.577,22.577,0.498,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,0.0,0.0,9.438,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.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1538.6,1332.5,1538.6,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,23.054,23.054,22.693,22.693,0.361,0.0,0.0,0.0,0.0,0.0,0.116,0.057,0.0,0.0,0.0,0.0,9.438,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1647.2,1332.5,1647.2,3.447,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.076,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,23.075,23.075,22.579,22.579,0.496,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,0.0,0.0,9.438,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.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,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1540.5,1332.5,1540.5,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,22.978,22.978,22.571,22.571,0.407,0.0,0.0,0.0,0.0,0.0,0.026,0.025,0.0,0.0,0.0,0.0,9.438,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.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,0.477,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1532.9,1332.5,1532.9,3.527,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.011,-6.076,-1.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,1354.8,997.6,11171.6,3093.4,0.0,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,26.602,26.602,26.602,26.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.134,0.851,9.535,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,0.0,0.0,9.147,9.374,0.584,0.0,0.0,0.0,7.0,1677.0,1983.1,1983.1,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,27.355,27.355,27.355,27.355,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.775,0.962,9.535,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,0.0,0.0,10.376,9.374,0.584,0.0,0.0,0.0,13.0,1729.1,2177.1,2177.1,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,26.886,26.886,26.886,26.886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.418,0.851,9.535,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,0.0,0.0,9.147,9.374,0.584,0.0,0.0,0.0,7.0,1694.4,2044.4,2044.4,0.0,6.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.048,-1.134,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.333,1.238,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,32.42,32.42,32.42,32.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.841,0.962,9.535,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,0.0,0.0,10.376,9.374,0.584,0.0,0.0,0.0,13.0,2065.3,3317.6,3317.6,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,27.156,27.156,27.156,27.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.577,0.962,9.535,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,0.0,0.0,10.376,9.374,0.584,0.0,0.0,0.0,13.0,1715.9,2132.5,2132.5,0.0,8.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.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.239,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-generator.xml,41.018,34.194,26.223,19.398,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,9.527,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,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1657.0,2013.3,2013.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,26.574,26.574,26.574,26.574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.131,0.826,9.535,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,0.0,0.0,9.148,9.374,0.584,0.0,0.0,0.0,4.0,1675.9,1979.8,1979.8,0.0,7.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.047,-1.131,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.329,1.237,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,27.326,27.326,27.326,27.326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.774,0.935,9.535,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,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1727.0,2172.6,2172.6,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,26.857,26.857,26.857,26.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.414,0.826,9.535,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,0.0,0.0,9.148,9.374,0.584,0.0,0.0,0.0,4.0,1691.8,2041.2,2041.2,0.0,7.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.047,-1.131,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.329,1.237,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,32.389,32.389,32.389,32.389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.837,0.935,9.535,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,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,2063.0,3361.4,3361.4,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,27.127,27.127,27.127,27.127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.576,0.935,9.535,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,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1713.8,2127.9,2127.9,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-generator.xml,40.992,34.168,26.197,19.372,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.034,0.548,9.527,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,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1656.2,2007.2,2007.2,3.449,7.707,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.142,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.4,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.234,28.234,28.234,28.234,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.255,0.0,0.0,2.257,2.959,9.527,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,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,0.0,1716.7,1945.0,1945.0,3.449,7.707,0.0,-0.016,2.483,0.0,0.0,0.426,3.954,-2.567,0.0,0.0,-0.012,0.0,-0.391,1.284,0.0,0.681,0.0,0.0,-4.595,-0.776,0.0,-0.011,-1.1,0.0,0.0,-0.042,-1.124,5.636,0.0,0.0,-0.007,0.0,-0.381,-0.513,-1.333,-0.388,0.0,0.0,7.371,1.25,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,31.745,31.745,16.765,16.765,14.98,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.097,0.582,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.0,0.572,0.0,14.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.527,0.0,9.528,9.374,2.261,0.0,0.0,0.0,0.0,1022.8,1553.5,1553.5,3.498,7.734,0.0,-0.017,2.435,0.0,0.0,0.425,3.913,-2.47,0.0,0.0,-0.013,0.0,-0.418,2.024,0.0,0.0,0.0,0.0,-4.701,-0.752,0.0,-0.012,-1.157,0.0,0.0,-0.045,-1.182,5.732,0.0,0.0,-0.007,0.0,-0.407,-0.942,-1.35,0.0,0.0,0.0,7.751,1.274,1354.8,997.6,11171.8,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-laundry-room.xml,29.626,29.626,16.572,16.572,13.054,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.944,0.541,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.0,0.742,0.0,12.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,8.806,9.374,0.568,0.0,0.0,0.0,0.0,1013.8,1542.1,1542.1,3.655,7.615,0.0,-0.017,2.498,0.0,0.0,0.426,3.976,-2.663,0.0,0.0,-0.014,0.0,-0.395,2.062,0.0,0.0,0.0,0.0,-4.478,-0.8,0.0,-0.012,-1.052,0.0,0.0,-0.036,-1.051,5.54,0.0,0.0,-0.009,0.0,-0.386,-0.862,-1.313,0.0,0.0,0.0,6.883,1.227,1354.8,997.6,11171.7,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,50.713,50.713,30.664,30.664,20.049,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.808,0.312,9.565,0.0,0.0,2.026,0.0,0.206,3.727,0.946,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,0.0,7.888,0.0,0.0,0.0,0.0,12.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.308,0.0,5.088,9.374,0.615,0.0,0.0,0.0,0.0,1867.2,2269.1,2269.1,7.584,8.979,0.0,-0.017,2.791,0.0,0.0,0.407,4.196,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.34,0.0,0.0,-6.693,-1.194,0.0,-0.013,-0.143,0.0,0.0,0.06,0.126,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.698,-4.228,0.0,0.0,5.312,0.832,1354.8,997.6,11171.5,3093.4,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,32.615,32.615,27.323,27.323,5.293,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.686,0.467,9.537,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,0.0,1.335,0.0,0.0,0.0,0.0,3.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,1.234,0.0,7.542,9.374,0.586,0.0,0.0,0.0,0.0,1657.3,2031.3,2031.3,4.163,7.879,0.0,-0.018,2.638,0.0,0.0,0.432,4.149,-3.079,0.0,0.0,-0.017,0.0,-0.36,1.775,0.0,1.925,0.0,0.0,-5.318,-0.929,0.0,-0.013,-0.774,0.0,0.0,-0.004,-0.66,5.123,0.0,0.0,-0.012,0.0,-0.352,-0.53,-1.154,-1.781,0.0,0.0,6.659,1.097,1354.8,997.6,11171.5,3093.4,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent.xml,30.834,30.834,27.174,27.174,3.661,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.584,0.44,9.546,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,0.0,3.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,3.389,0.0,7.249,9.374,0.596,0.0,0.0,0.0,0.0,1646.9,2112.1,2112.1,5.987,8.5,0.0,-0.016,2.682,0.0,0.0,0.398,4.038,-3.61,0.0,0.0,-0.018,0.0,-0.253,1.739,0.0,5.306,0.0,0.0,-5.801,-1.04,0.0,-0.011,-0.571,0.0,0.0,-0.008,-0.518,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.44,-1.153,-1.513,0.0,0.0,6.186,0.987,1354.8,997.6,11171.5,3093.4,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-pv.xml,26.852,2.404,26.223,1.775,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,9.527,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.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1657.0,2013.3,2013.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,30.789,30.789,17.683,17.683,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1059.1,1602.9,1602.9,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.661,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.038,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.625,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11171.6,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-water-heater.xml,29.693,29.693,16.587,16.587,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.956,0.543,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.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1006.5,1550.2,1550.2,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.425,3.984,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.609,0.0,0.696,0.0,0.0,-4.661,-0.808,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.038,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.625,-1.314,-0.362,0.0,0.0,7.099,1.218,1354.8,997.6,11171.6,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit.xml,26.852,26.852,26.223,26.223,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.042,0.566,9.527,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.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1657.0,2013.3,2013.3,3.449,7.707,0.0,-0.016,2.472,0.0,0.0,0.424,3.935,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.278,0.0,0.677,0.0,0.0,-4.565,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.401,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-sfa-unit-2stories.xml,51.001,51.001,34.611,34.611,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.214,0.0,0.0,3.423,0.619,9.079,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.285,0.0,10.305,9.11,0.613,0.0,0.0,0.0,0.0,2111.0,3086.6,3086.6,17.841,15.64,0.0,2.437,5.073,0.298,4.382,0.64,7.13,-8.585,0.0,0.0,0.0,5.027,-0.069,7.099,0.0,0.73,0.0,2.271,-8.897,-2.5,0.0,-0.005,-0.668,-0.027,1.593,-0.021,-1.066,7.911,0.0,0.0,0.0,-4.019,-0.064,-1.707,-2.597,-0.164,0.0,1.389,7.881,2.01,1354.8,997.6,11171.5,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16951.0,4421.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-atticroof-cathedral.xml,97.537,97.537,37.19,37.19,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.787,0.0,0.0,5.067,0.972,9.088,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,15.981,9.11,0.623,0.0,0.0,0.0,0.0,2152.6,4300.5,4300.5,36.45,28.479,49.534,0.0,2.942,0.289,3.702,0.668,4.716,-5.325,0.0,0.0,0.0,3.447,-0.844,7.54,0.0,0.773,0.0,0.0,-9.663,-2.68,8.461,0.0,-0.16,0.004,1.534,0.119,0.028,5.085,0.0,0.0,0.0,-4.279,-0.806,-0.856,-1.185,-0.094,0.0,0.0,7.124,1.829,1354.8,997.6,11171.6,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,42.293,42.293,29.882,29.882,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,9.289,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.114,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2578.3,2578.3,13.175,10.827,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-sfa-unit.xml,42.293,42.293,29.882,29.882,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.832,0.491,9.289,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.114,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2578.3,2578.3,13.175,10.827,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.014,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.665,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21403.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13941.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,31.717,31.717,16.738,16.738,14.979,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.089,0.563,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.0,0.572,0.0,14.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.527,0.0,9.528,9.374,2.261,0.0,0.0,0.0,0.0,1021.5,1547.1,1547.1,3.498,7.734,0.0,-0.017,2.437,0.0,0.0,0.425,3.915,-2.473,0.0,0.0,-0.013,0.0,-0.417,2.025,0.0,0.0,0.0,0.0,-4.705,-0.753,0.0,-0.012,-1.156,0.0,0.0,-0.045,-1.18,5.73,0.0,0.0,-0.007,0.0,-0.407,-0.941,-1.35,0.0,0.0,0.0,7.748,1.273,1354.8,997.6,11171.8,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-laundry-room.xml,29.601,29.601,16.547,16.547,13.054,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.936,0.523,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.0,0.742,0.0,12.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,8.806,9.374,0.568,0.0,0.0,0.0,0.0,1012.5,1535.6,1535.6,3.655,7.615,0.0,-0.017,2.498,0.0,0.0,0.426,3.976,-2.663,0.0,0.0,-0.014,0.0,-0.395,2.062,0.0,0.0,0.0,0.0,-4.478,-0.8,0.0,-0.012,-1.052,0.0,0.0,-0.036,-1.051,5.54,0.0,0.0,-0.009,0.0,-0.386,-0.862,-1.313,0.0,0.0,0.0,6.883,1.227,1354.8,997.6,11171.7,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,50.702,50.702,30.653,30.653,20.049,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.804,0.303,9.565,0.0,0.0,2.026,0.0,0.206,3.73,0.946,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,0.0,7.888,0.0,0.0,0.0,0.0,12.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.308,0.0,5.091,9.374,0.615,0.0,0.0,0.0,0.0,1867.2,2265.4,2265.4,7.584,8.979,0.0,-0.017,2.791,0.0,0.0,0.407,4.196,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.34,0.0,0.0,-6.693,-1.194,0.0,-0.013,-0.143,0.0,0.0,0.06,0.126,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.698,-4.225,0.0,0.0,5.312,0.832,1354.8,997.6,11171.5,3093.4,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,32.593,32.593,27.3,27.3,5.293,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.679,0.452,9.537,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,0.0,1.335,0.0,0.0,0.0,0.0,3.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,1.234,0.0,7.541,9.374,0.586,0.0,0.0,0.0,0.0,1656.8,2026.0,2026.0,4.163,7.879,0.0,-0.018,2.638,0.0,0.0,0.432,4.149,-3.079,0.0,0.0,-0.017,0.0,-0.36,1.775,0.0,1.925,0.0,0.0,-5.318,-0.929,0.0,-0.013,-0.774,0.0,0.0,-0.004,-0.66,5.123,0.0,0.0,-0.012,0.0,-0.352,-0.53,-1.154,-1.781,0.0,0.0,6.659,1.097,1354.8,997.6,11171.5,3093.4,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,30.814,30.814,27.153,27.153,3.661,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.578,0.426,9.546,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,0.0,3.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,3.389,0.0,7.249,9.374,0.596,0.0,0.0,0.0,0.0,1646.7,2107.7,2107.7,5.987,8.5,0.0,-0.016,2.683,0.0,0.0,0.398,4.039,-3.61,0.0,0.0,-0.018,0.0,-0.253,1.739,0.0,5.306,0.0,0.0,-5.803,-1.04,0.0,-0.011,-0.57,0.0,0.0,-0.008,-0.517,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.44,-1.153,-1.512,0.0,0.0,6.184,0.986,1354.8,997.6,11171.5,3093.4,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-pv.xml,26.826,2.378,26.197,1.749,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.034,0.548,9.527,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.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1656.2,2007.2,2007.2,3.449,7.707,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.142,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.4,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,30.763,30.763,17.658,17.658,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.948,0.526,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.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1057.9,1596.4,1596.4,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.426,3.986,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.61,0.0,0.696,0.0,0.0,-4.663,-0.809,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.036,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.097,1.218,1354.8,997.6,11171.6,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-water-heater.xml,29.667,29.667,16.562,16.562,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.948,0.526,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.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1005.2,1543.7,1543.7,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.426,3.986,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.61,0.0,0.696,0.0,0.0,-4.663,-0.809,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.036,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.097,1.218,1354.8,997.6,11171.6,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit.xml,26.826,26.826,26.197,26.197,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.034,0.548,9.527,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.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1656.2,2007.2,2007.2,3.449,7.707,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.142,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.4,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-sfa-unit-2stories.xml,50.964,50.964,34.573,34.573,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.214,0.0,0.0,3.406,0.598,9.079,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.285,0.0,10.28,9.11,0.613,0.0,0.0,0.0,0.0,2111.0,3067.8,3067.8,17.841,15.556,0.0,2.437,5.073,0.298,4.382,0.64,7.13,-8.585,0.0,0.0,0.0,5.027,-0.069,7.099,0.0,0.73,0.0,2.271,-8.897,-2.5,0.0,-0.004,-0.668,-0.027,1.593,-0.021,-1.066,7.911,0.0,0.0,0.0,-4.019,-0.064,-1.707,-2.597,-0.164,0.0,1.365,7.881,2.01,1354.8,997.6,11171.5,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16951.0,4421.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-atticroof-cathedral.xml,97.494,97.494,37.147,37.147,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.787,0.0,0.0,5.054,0.942,9.088,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,15.98,9.11,0.623,0.0,0.0,0.0,0.0,2152.6,4286.5,4286.5,36.45,28.479,49.534,0.0,2.942,0.289,3.702,0.668,4.716,-5.325,0.0,0.0,0.0,3.447,-0.844,7.54,0.0,0.773,0.0,0.0,-9.663,-2.68,8.461,0.0,-0.16,0.004,1.534,0.119,0.028,5.085,0.0,0.0,0.0,-4.279,-0.806,-0.856,-1.185,-0.094,0.0,0.0,7.124,1.829,1354.8,997.6,11171.6,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,42.259,42.259,29.848,29.848,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.816,0.473,9.289,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.083,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2557.4,2557.4,13.175,10.707,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.016,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.634,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-sfa-unit.xml,42.259,42.259,29.848,29.848,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.816,0.473,9.289,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.083,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2557.4,2557.4,13.175,10.707,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.016,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.634,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21403.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13941.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 base-dhw-combi-tankless-outside.xml,51.079,51.079,21.423,21.423,29.656,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.363,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.322,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.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,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,52.277,52.277,21.432,21.432,30.845,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.551,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1376.9,1017.3,1376.9,17.068,0.0,0.0,3.743,3.642,0.513,7.499,0.631,10.099,-12.691,0.0,0.0,0.0,8.145,-0.067,5.887,0.0,0.729,0.0,0.0,-8.581,-2.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,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,32.074,32.074,32.074,32.074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.285,0.756,6.757,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.246,9.074,0.661,2.908,0.0,0.0,0.0,2067.1,2830.0,2830.0,0.0,19.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.094,-0.469,-0.052,2.672,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.192,-3.046,-0.166,0.0,3.724,8.63,2.036,1354.8,997.6,11183.0,2566.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,32.048,32.048,32.048,32.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.273,0.74,6.76,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,9.074,0.661,2.904,0.0,0.0,0.0,2067.0,2809.8,2809.8,0.0,19.702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.093,-0.469,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.192,-3.046,-0.166,0.0,3.688,8.629,2.036,1354.8,997.6,11181.3,2565.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-gshp.xml,37.426,37.426,37.426,37.426,0.0,0.0,0.0,0.0,0.0,0.0,4.999,0.475,0.0,0.0,3.18,0.96,6.536,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.713,0.0,14.0,9.074,0.613,2.953,0.0,0.0,0.0,3245.1,2373.7,3245.1,21.47,16.472,0.0,3.605,3.642,0.513,7.524,0.63,10.096,-12.683,0.0,0.0,0.0,8.307,-0.064,4.805,0.0,0.729,0.0,3.363,-8.59,-2.499,0.0,-0.01,-0.463,-0.052,2.69,-0.026,-1.403,11.73,0.0,0.0,0.0,-6.345,-0.06,-1.169,-3.129,-0.165,0.0,2.099,8.505,2.01,1354.8,997.6,11185.2,2566.7,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,56.444,56.444,29.777,29.777,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,4.523,0.886,2.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,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.972,0.0,14.956,9.085,1.81,3.029,0.0,0.0,0.0,1884.0,3184.7,3184.7,25.892,19.712,0.0,3.522,3.634,0.511,7.504,0.628,10.066,-12.724,0.0,0.0,0.0,8.331,-0.052,4.794,0.0,0.727,0.0,5.64,-5.456,-2.509,0.0,-0.021,-0.422,-0.046,2.83,-0.015,-1.277,11.689,0.0,0.0,0.0,-6.116,-0.048,-1.121,-2.946,-0.156,0.0,3.252,7.661,2.001,1354.7,997.5,11162.4,2561.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,33.765,33.765,33.765,33.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.524,1.227,6.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,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.648,9.08,0.0,2.941,0.0,0.0,0.0,1932.8,3302.0,3302.0,0.0,19.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.071,-0.464,-0.051,2.687,-0.03,-1.43,11.85,0.0,0.0,0.0,-6.907,-0.064,-1.186,-3.016,-0.165,0.0,3.292,8.363,2.036,1354.8,997.6,11131.7,2554.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,31.329,31.329,31.329,31.329,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.964,0.336,6.752,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.036,9.074,0.661,2.915,0.0,0.0,0.0,2067.1,2556.1,2556.1,0.0,19.549,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.135,-0.469,-0.052,2.673,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.915,-0.064,-1.192,-3.049,-0.167,0.0,4.556,8.633,2.036,1354.8,997.6,11183.3,2566.2,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,33.797,33.797,33.797,33.797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.578,1.245,6.698,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.877,9.073,0.661,2.995,0.0,0.0,0.0,2069.0,3315.1,3315.1,0.0,19.409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.078,-0.47,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.192,-3.047,-0.166,0.0,3.328,8.654,2.036,1354.8,997.6,11186.4,2566.9,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,55.925,55.925,33.659,33.659,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,6.744,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,6.634,0.614,0.0,0.0,0.0,0.0,2102.3,3439.6,3439.6,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,10014.1,2297.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,56.386,56.386,29.719,29.719,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,4.496,0.854,2.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,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.972,0.0,14.894,9.085,1.809,3.025,0.0,0.0,0.0,1884.0,3149.7,3149.7,25.892,19.515,0.0,3.522,3.634,0.511,7.504,0.628,10.066,-12.724,0.0,0.0,0.0,8.331,-0.052,4.794,0.0,0.727,0.0,5.64,-5.456,-2.509,0.0,-0.019,-0.422,-0.046,2.83,-0.015,-1.277,11.689,0.0,0.0,0.0,-6.115,-0.048,-1.121,-2.945,-0.156,0.0,3.191,7.659,2.001,1354.7,997.5,11162.4,2561.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,33.695,33.695,33.695,33.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.494,1.184,6.741,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.08,0.0,2.937,0.0,0.0,0.0,1932.8,3261.6,3261.6,0.0,19.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.068,-0.464,-0.051,2.687,-0.03,-1.43,11.85,0.0,0.0,0.0,-6.908,-0.064,-1.186,-3.017,-0.165,0.0,3.23,8.362,2.036,1354.8,997.6,11131.9,2554.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,31.142,31.142,31.142,31.142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.826,0.295,6.744,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.992,9.074,0.661,2.927,0.0,0.0,0.0,2066.9,2630.1,2630.1,0.0,19.354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.134,-0.469,-0.052,2.673,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.915,-0.064,-1.192,-3.051,-0.166,0.0,4.519,8.636,2.036,1354.8,997.6,11184.2,2566.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,33.726,33.726,33.726,33.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.548,1.202,6.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.813,9.073,0.661,2.991,0.0,0.0,0.0,2069.0,3274.6,3274.6,0.0,19.212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.075,-0.47,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.192,-3.047,-0.166,0.0,3.266,8.653,2.036,1354.8,997.6,11187.4,2567.2,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,55.868,55.868,33.602,33.602,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,6.744,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,6.634,0.614,0.0,0.0,0.0,0.0,2102.3,3405.2,3405.2,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,10014.1,2297.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-indirect-detailed-setpoints.xml,53.845,53.845,21.421,21.421,32.423,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,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,0.0,19.114,0.0,13.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.124,0.0,0.0,9.099,2.365,0.0,0.0,0.0,0.0,1376.0,1017.3,1376.0,16.681,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.108,-12.669,0.0,0.0,0.0,8.131,-0.068,5.892,0.0,0.729,0.0,0.0,-9.892,-2.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,1154.4,852.6,9359.8,2147.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-indirect-dse.xml,58.805,58.805,21.458,21.458,37.348,0.0,0.0,0.0,0.0,0.0,0.0,0.182,0.0,0.0,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,0.0,23.952,0.0,13.395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.168,0.0,0.0,9.103,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.134,-0.07,5.893,0.0,0.729,0.0,0.0,-9.854,-2.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,1070.4,771.3,8876.8,2036.9,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-indirect-outside.xml,55.4,55.4,21.423,21.423,33.977,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.363,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,16.322,0.0,0.0,9.106,3.299,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.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,1065.0,767.3,8821.4,2024.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-indirect-standbyloss.xml,54.218,54.218,21.42,21.42,32.799,0.0,0.0,0.0,0.0,0.0,0.0,0.143,0.0,0.0,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,0.0,18.906,0.0,13.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,15.947,0.0,0.0,9.105,2.69,0.0,0.0,0.0,0.0,1375.9,1017.3,1375.9,16.729,0.0,0.0,3.746,3.646,0.513,7.512,0.632,10.114,-12.663,0.0,0.0,0.0,8.131,-0.071,5.895,0.0,0.73,0.0,0.0,-10.09,-2.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,1059.1,763.7,8811.6,2022.0,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-indirect-with-solar-fraction.xml,46.173,46.173,21.429,21.429,24.744,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.069,0.0,4.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.953,0.0,0.0,9.08,0.783,0.0,5.902,0.0,0.0,1376.6,1017.3,1376.6,16.971,0.0,0.0,3.745,3.645,0.513,7.503,0.631,10.103,-12.69,0.0,0.0,0.0,8.144,-0.067,5.89,0.0,0.729,0.0,0.0,-9.023,-2.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,388.7,286.4,3143.6,721.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-indirect.xml,53.979,53.979,21.422,21.422,32.557,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,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,0.0,19.162,0.0,13.395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.168,0.0,0.0,9.103,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.134,-0.07,5.893,0.0,0.729,0.0,0.0,-9.854,-2.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,1070.4,771.3,8876.8,2036.9,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,58.086,58.086,35.605,35.605,22.481,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.387,0.851,8.719,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.053,0.0,14.342,9.075,0.295,0.0,0.0,0.0,0.0,2106.1,3415.6,3415.6,23.085,19.07,0.0,3.554,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.806,0.0,0.729,0.0,4.874,-8.733,-2.499,0.0,-0.054,-0.462,-0.052,2.693,-0.026,-1.399,11.73,0.0,0.0,0.0,-6.338,-0.06,-1.168,-3.09,-0.165,0.0,3.188,7.726,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,64.099,64.099,27.019,27.019,37.08,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.489,0.876,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,0.0,22.883,0.0,14.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,21.43,0.0,14.763,9.075,2.724,0.0,0.0,0.0,0.0,1464.4,3156.9,3156.9,23.58,19.54,0.0,3.552,3.645,0.513,7.531,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,5.889,0.0,0.729,0.0,4.961,-9.538,-2.499,0.0,-0.06,-0.465,-0.052,2.687,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.347,-0.058,-1.45,-3.116,-0.166,0.0,3.27,8.403,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,56.318,56.318,29.631,29.631,26.687,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,3.934,0.742,3.239,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,12.535,9.129,1.302,0.0,0.0,0.0,0.0,1880.5,3567.5,3567.5,25.325,19.105,0.0,3.522,3.636,0.512,7.508,0.627,10.062,-12.738,0.0,0.0,0.0,8.34,-0.05,4.794,0.0,0.727,0.0,5.64,-5.436,-2.509,0.0,0.007,-0.412,-0.045,2.851,-0.015,-1.258,11.675,0.0,0.0,0.0,-6.072,-0.046,-1.114,-2.816,-0.154,0.0,2.838,5.444,2.001,1354.8,997.6,10758.2,2468.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,58.03,58.03,35.549,35.549,22.481,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.361,0.821,8.719,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.053,0.0,14.282,9.075,0.295,0.0,0.0,0.0,0.0,2106.1,3383.7,3383.7,23.085,18.875,0.0,3.554,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.806,0.0,0.729,0.0,4.874,-8.733,-2.499,0.0,-0.051,-0.462,-0.052,2.693,-0.026,-1.4,11.73,0.0,0.0,0.0,-6.339,-0.06,-1.168,-3.09,-0.165,0.0,3.127,7.726,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,64.041,64.041,26.961,26.961,37.08,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.462,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,0.0,22.883,0.0,14.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,21.43,0.0,14.701,9.075,2.724,0.0,0.0,0.0,0.0,1464.4,3122.1,3122.1,23.58,19.343,0.0,3.552,3.645,0.513,7.531,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,5.889,0.0,0.729,0.0,4.961,-9.538,-2.499,0.0,-0.058,-0.465,-0.052,2.687,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.347,-0.058,-1.45,-3.116,-0.166,0.0,3.208,8.403,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,56.268,56.268,29.58,29.58,26.687,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,3.91,0.715,3.238,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,12.482,9.13,1.302,0.0,0.0,0.0,0.0,1880.5,3535.5,3535.5,25.325,18.909,0.0,3.522,3.636,0.512,7.508,0.627,10.062,-12.738,0.0,0.0,0.0,8.34,-0.05,4.794,0.0,0.727,0.0,5.64,-5.436,-2.509,0.0,0.009,-0.412,-0.045,2.851,-0.015,-1.259,11.675,0.0,0.0,0.0,-6.073,-0.046,-1.114,-2.817,-0.154,0.0,2.783,5.447,2.001,1354.8,997.6,10758.2,2468.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-jacket-indirect.xml,53.778,53.778,21.423,21.423,32.355,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.38,0.0,12.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.357,0.0,0.0,9.102,1.911,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.825,0.0,0.0,3.746,3.646,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.137,-0.068,5.892,0.0,0.729,0.0,0.0,-9.652,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1075.0,775.0,8916.9,2046.2,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,57.977,57.977,35.711,35.711,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,8.838,0.614,0.0,0.0,0.0,0.0,2129.0,3421.2,3421.2,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,10829.5,2485.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,57.92,57.92,35.654,35.654,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,8.838,0.614,0.0,0.0,0.0,0.0,2129.0,3389.2,3389.2,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,10829.5,2485.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-multiple.xml,46.852,46.852,23.349,23.349,23.504,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,0.0,0.0,1.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,0.0,19.59,0.0,3.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,0.0,0.0,0.0,0.0,0.0,16.541,0.0,0.0,9.066,2.815,0.0,5.893,0.0,0.0,2028.1,1810.7,2028.1,16.778,0.0,0.0,3.746,3.646,0.513,7.507,0.631,10.104,-12.678,0.0,0.0,0.0,8.139,-0.067,5.891,0.0,0.729,0.0,0.0,-9.471,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,472.1,347.6,3919.3,899.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,46.91,46.91,24.677,24.677,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.38,0.85,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,0.0,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.822,0.0,14.413,0.0,0.0,0.0,0.0,0.0,0.0,1360.7,3014.2,3014.2,23.072,19.086,0.0,3.558,3.646,0.513,7.535,0.631,10.106,-12.683,0.0,0.0,0.0,8.322,-0.064,5.405,0.0,0.0,0.0,4.828,-8.819,-2.499,0.0,-0.059,-0.466,-0.052,2.68,-0.027,-1.413,11.73,0.0,0.0,0.0,-6.358,-0.06,-1.307,-3.107,0.0,0.0,3.187,7.842,2.011,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,58.149,58.149,35.883,35.883,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,8.942,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.017,0.614,0.0,0.0,0.0,0.0,2130.9,3422.1,3422.1,23.033,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,57.729,57.729,35.463,35.463,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,8.531,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.017,0.614,0.0,0.0,0.0,0.0,2115.9,3407.6,3407.6,23.033,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,72.882,72.882,50.616,50.616,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,22.207,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4233.2,4233.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,68.03,68.03,45.764,45.764,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,18.6,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.109,0.614,0.0,0.0,0.0,0.0,2754.3,4049.8,4049.8,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,72.882,72.882,50.616,50.616,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,22.207,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4233.2,4233.2,23.034,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,52.394,52.394,30.128,30.128,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.417,0.859,2.885,0.0,0.323,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.47,9.098,0.628,0.0,6.625,0.0,0.0,2096.5,3145.5,3145.5,23.033,19.136,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.208,7.887,2.011,1354.7,997.5,10979.9,2519.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,50.957,50.957,28.7,28.7,22.257,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.429,0.862,1.455,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.843,0.0,14.522,9.207,0.694,0.0,8.339,0.0,0.0,2067.2,3149.1,3149.1,23.033,19.166,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.913,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.113,-0.166,0.0,3.217,7.945,2.011,1354.4,997.2,10197.2,2339.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,52.472,52.472,30.206,30.206,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.423,0.86,2.953,0.0,0.328,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.493,9.133,0.649,0.0,6.61,0.0,0.0,2124.6,3147.9,3147.9,23.034,19.155,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.108,-0.166,0.0,3.212,7.909,2.011,1354.7,997.6,10721.3,2460.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,52.569,52.569,30.034,30.034,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.381,0.85,3.156,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.104,0.0,14.314,9.075,0.215,0.0,5.899,0.0,0.0,1786.0,3421.8,3421.8,23.1,19.057,0.0,3.554,3.644,0.513,7.529,0.631,10.098,-12.69,0.0,0.0,0.0,8.316,-0.062,4.806,0.0,0.729,0.0,4.885,-8.691,-2.5,0.0,-0.052,-0.461,-0.051,2.696,-0.026,-1.399,11.724,0.0,0.0,0.0,-6.332,-0.059,-1.167,-3.087,-0.165,0.0,3.183,7.688,2.01,474.2,349.2,3910.1,897.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,50.692,50.692,28.789,28.789,21.903,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,4.533,0.887,1.426,0.0,0.305,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.511,0.0,14.969,9.186,0.682,0.0,8.337,0.0,0.0,2107.1,3183.2,3183.2,23.067,19.444,0.0,3.559,3.645,0.513,7.536,0.63,10.098,-12.669,0.0,0.0,0.0,8.31,-0.061,4.807,0.0,0.729,0.0,4.762,-9.207,-2.496,0.0,-0.069,-0.473,-0.053,2.663,-0.029,-1.44,11.744,0.0,0.0,0.0,-6.388,-0.058,-1.183,-3.161,-0.168,0.0,3.291,8.469,2.013,1354.2,997.1,10322.8,2368.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,50.673,50.673,28.416,28.416,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.428,0.861,1.482,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.844,0.0,14.519,9.2,0.69,0.0,8.299,0.0,0.0,2091.4,3117.0,3117.0,23.033,19.165,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.912,-2.499,0.0,-0.058,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.172,-3.112,-0.166,0.0,3.216,7.942,2.011,1354.4,997.2,10240.9,2350.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,64.837,64.837,27.073,27.073,22.487,0.0,0.0,0.0,0.0,15.277,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.058,0.0,14.974,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3168.3,3168.3,23.484,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-detailed-setpoints.xml,58.181,58.181,35.921,35.921,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.006,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.846,0.0,14.459,9.049,0.623,0.0,0.0,0.0,0.0,2529.3,3444.1,3444.1,23.009,19.116,0.0,3.556,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.908,-2.499,0.0,-0.058,-0.465,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.206,7.879,2.011,1354.8,997.6,11206.2,2571.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,58.224,58.224,36.01,36.01,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.42,0.859,9.088,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,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,0.0,14.483,9.075,0.691,0.0,0.0,0.0,0.0,2172.7,3489.9,3489.9,23.02,19.134,0.0,3.557,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.823,-8.947,-2.499,0.0,-0.057,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.172,-3.11,-0.166,0.0,3.21,7.908,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,66.557,66.557,26.859,26.859,39.698,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,17.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.075,5.067,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,64.507,64.507,27.035,27.035,37.472,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.504,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,0.0,22.763,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.317,0.0,14.826,9.075,2.977,0.0,0.0,0.0,0.0,1464.3,3160.3,3160.3,23.55,19.567,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.062,-0.466,-0.052,2.683,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.28,8.483,2.011,1354.8,997.6,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,64.507,64.507,27.035,27.035,37.472,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.504,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,0.0,22.763,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.317,0.0,14.826,9.075,2.977,0.0,0.0,0.0,0.0,1464.3,3160.3,3160.3,23.55,19.567,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.062,-0.466,-0.052,2.683,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.28,8.483,2.011,1354.8,997.6,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,64.837,64.837,27.073,27.073,37.764,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.487,0.0,15.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,21.058,0.0,14.974,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3168.3,3168.3,23.484,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,56.284,56.284,28.8,28.8,27.484,0.0,0.0,0.0,0.0,0.0,0.0,0.453,0.0,0.0,3.877,0.728,2.465,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.734,0.0,12.284,9.216,1.415,0.0,0.0,0.0,0.0,1856.0,3082.3,3082.3,26.694,18.889,0.0,3.506,3.633,0.511,7.505,0.628,10.08,-12.706,0.0,0.0,0.0,8.336,-0.061,4.798,0.0,0.727,0.0,5.798,-4.871,-2.509,0.0,0.018,-0.397,-0.042,2.891,-0.009,-1.184,11.708,0.0,0.0,0.0,-6.003,-0.057,-1.085,-2.728,-0.154,0.0,2.787,5.063,2.0,1354.8,997.6,9994.8,2293.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.14,56.14,28.621,28.621,27.519,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.861,0.724,2.306,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,25.759,0.0,12.223,9.132,1.307,0.0,0.0,0.0,0.0,1854.5,3438.1,3438.1,25.444,19.071,0.0,3.516,3.634,0.511,7.509,0.628,10.061,-12.724,0.0,0.0,0.0,8.352,-0.046,4.792,0.0,0.727,0.0,5.79,-4.85,-2.508,0.0,0.019,-0.401,-0.043,2.894,-0.011,-1.219,11.689,0.0,0.0,0.0,-6.009,-0.042,-1.1,-2.763,-0.152,0.0,2.79,5.061,2.001,1354.8,997.6,10745.3,2465.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,56.276,56.276,33.595,33.595,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,6.736,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.096,2.524,0.0,0.0,0.0,0.0,3051.2,3332.0,3332.0,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11023.3,2529.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,56.14,56.14,28.621,28.621,27.519,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.861,0.724,2.306,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,25.759,0.0,12.223,9.132,1.307,0.0,0.0,0.0,0.0,1854.5,3438.1,3438.1,25.444,19.071,0.0,3.516,3.634,0.511,7.509,0.628,10.061,-12.724,0.0,0.0,0.0,8.352,-0.046,4.792,0.0,0.727,0.0,5.79,-4.85,-2.508,0.0,0.019,-0.401,-0.043,2.894,-0.011,-1.219,11.689,0.0,0.0,0.0,-6.009,-0.042,-1.1,-2.763,-0.152,0.0,2.79,5.061,2.001,1354.8,997.6,10745.3,2465.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,51.968,51.968,27.939,27.939,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,4.219,0.81,1.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,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.503,0.0,13.67,9.108,0.602,0.0,5.92,0.0,0.0,1856.3,3178.6,3178.6,25.408,19.104,0.0,3.544,3.64,0.512,7.519,0.629,10.079,-12.705,0.0,0.0,0.0,8.318,-0.055,4.8,0.0,0.728,0.0,5.161,-7.514,-2.501,0.0,-0.031,-0.443,-0.049,2.749,-0.022,-1.352,11.708,0.0,0.0,0.0,-6.242,-0.051,-1.148,-2.981,-0.162,0.0,3.061,6.875,2.009,474.2,349.2,3821.6,876.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,51.492,51.492,28.55,28.55,22.943,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.562,0.895,1.111,0.0,0.327,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.484,0.0,15.102,9.023,1.965,0.0,8.039,0.0,0.0,1896.1,3197.7,3197.7,25.085,19.545,0.0,3.556,3.646,0.513,7.537,0.63,10.093,-12.686,0.0,0.0,0.0,8.324,-0.056,4.806,0.0,0.729,0.0,4.955,-8.421,-2.498,0.0,-0.064,-0.467,-0.052,2.678,-0.028,-1.429,11.727,0.0,0.0,0.0,-6.349,-0.053,-1.177,-3.153,-0.166,0.0,3.306,8.548,2.011,1354.4,997.3,11673.7,2678.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,56.383,56.383,29.782,29.782,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,3.946,0.745,3.376,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.907,0.0,12.593,9.12,1.717,0.0,0.0,0.0,0.0,1874.8,3309.5,3309.5,23.533,19.252,0.0,3.526,3.638,0.512,7.511,0.627,10.061,-12.745,0.0,0.0,0.0,8.343,-0.049,4.795,0.0,0.727,0.0,5.625,-5.52,-2.509,0.0,0.006,-0.413,-0.045,2.848,-0.015,-1.266,11.668,0.0,0.0,0.0,-6.079,-0.045,-1.116,-2.834,-0.155,0.0,2.844,5.524,2.001,1354.8,997.6,10838.8,2487.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.751,58.751,35.484,35.484,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.447,0.865,8.501,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.788,0.0,14.551,9.117,0.021,0.0,0.0,0.0,0.0,4528.4,5582.3,5582.3,30.746,19.96,0.0,3.55,3.645,0.513,7.528,0.631,10.104,-12.683,0.0,0.0,0.0,8.312,-0.062,5.265,0.0,0.776,0.0,5.021,-8.643,-2.504,0.0,-0.054,-0.459,-0.051,2.698,-0.025,-1.389,11.73,0.0,0.0,0.0,-6.33,-0.058,-1.267,-3.074,-0.186,0.0,3.229,8.004,2.005,1354.7,998.0,10786.2,2475.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,58.035,58.035,35.368,35.368,22.667,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.365,0.846,8.507,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.227,0.0,14.246,9.125,0.021,0.0,0.0,0.0,0.0,1987.5,3452.5,3452.5,23.132,19.025,0.0,3.553,3.644,0.513,7.528,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.91,-8.585,-2.5,0.0,-0.051,-0.459,-0.051,2.701,-0.025,-1.395,11.724,0.0,0.0,0.0,-6.326,-0.058,-1.165,-3.077,-0.165,0.0,3.172,7.6,2.01,1354.8,997.6,10766.1,2470.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,64.837,64.837,27.073,27.073,22.487,15.277,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,21.058,0.0,14.974,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3168.3,3168.3,23.484,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,64.837,64.837,27.073,27.073,22.487,0.0,0.0,15.277,0.0,0.0,0.0,0.371,0.0,0.0,4.538,0.888,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.058,0.0,14.974,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3168.3,3168.3,23.484,19.635,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.065,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.303,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,60.711,60.711,26.859,26.859,33.852,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,11.171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.056,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11343.1,2602.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,58.812,58.812,36.132,36.132,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,9.273,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3488.2,3488.2,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,58.708,58.708,36.027,36.027,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,2006.8,3483.8,3483.8,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,58.812,58.812,36.132,36.132,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.363,0.845,9.273,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3488.2,3488.2,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,59.201,59.201,26.859,26.859,32.342,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,9.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,21.24,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,53.458,53.458,26.859,26.859,26.599,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,3.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.239,9.076,0.0,0.0,5.899,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,474.2,349.2,3909.2,897.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,51.173,51.173,27.291,27.291,23.882,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.471,0.872,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,0.0,22.316,0.0,1.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.899,0.0,14.698,9.262,0.0,0.0,7.989,0.0,0.0,1462.4,3166.3,3166.3,23.167,19.302,0.0,3.557,3.645,0.513,7.532,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,4.807,0.0,0.73,0.0,4.843,-8.879,-2.498,0.0,-0.061,-0.467,-0.052,2.679,-0.027,-1.419,11.73,0.0,0.0,0.0,-6.36,-0.058,-1.175,-3.128,-0.166,0.0,3.249,8.131,2.011,1344.9,989.3,9809.3,2250.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,60.735,60.735,26.859,26.859,33.876,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,11.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.24,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,60.735,60.735,26.859,26.859,22.681,0.0,11.195,0.0,0.0,0.0,0.0,0.374,0.0,0.0,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.24,0.0,14.239,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3100.1,3100.1,23.134,19.022,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.05,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.076,-0.165,0.0,3.171,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,65.701,65.701,40.981,40.981,24.72,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,6.442,1.322,8.973,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,0.0,24.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.053,0.0,22.265,9.053,0.609,0.0,0.0,0.0,0.0,2295.2,4827.0,4827.0,30.686,28.15,0.0,3.862,7.596,1.093,5.881,0.688,20.477,-24.88,0.0,0.0,0.867,6.711,-0.179,8.99,0.0,0.763,0.0,3.298,-9.747,-2.93,0.0,-0.11,-1.064,-0.109,1.841,-0.027,-1.631,23.454,0.0,0.0,-0.141,-4.808,-0.17,-1.956,-6.137,-0.162,0.0,2.913,8.485,2.338,1354.8,997.6,11171.5,2524.9,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7647.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25899.0,4445.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,73.692,73.692,44.289,44.289,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,6.329,1.295,8.86,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,0.0,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.421,0.0,21.787,8.989,0.612,0.0,0.0,0.0,0.0,2519.0,4711.7,4711.7,33.941,28.292,0.0,3.774,7.88,1.071,7.921,0.667,20.509,-25.19,0.0,0.0,0.0,9.056,-0.136,11.167,0.0,0.747,0.0,3.872,-10.951,-3.54,0.0,-0.076,-1.046,-0.101,2.662,-0.023,-2.118,23.376,0.0,0.0,0.0,-6.456,-0.126,-2.486,-6.302,-0.162,0.0,2.839,9.405,2.832,1354.8,997.6,11171.6,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25801.0,4444.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,54.858,54.858,30.603,30.603,24.255,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.1,0.781,5.473,0.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,0.0,24.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,22.716,0.0,13.312,5.267,0.615,0.0,0.0,0.0,0.0,1683.1,3280.9,3280.9,23.625,18.493,0.0,3.533,3.635,0.511,7.498,0.63,10.083,-12.698,0.0,0.0,0.0,8.293,-0.065,4.804,0.0,0.727,0.0,5.229,-7.29,-2.504,0.0,-0.019,-0.434,-0.048,2.778,-0.018,-1.304,11.715,0.0,0.0,0.0,-6.2,-0.061,-1.138,-2.942,-0.161,0.0,3.028,6.287,2.006,939.7,637.0,6161.9,1598.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18320.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,56.559,56.559,33.302,33.302,23.257,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.254,0.819,7.282,0.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,0.0,23.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,21.78,0.0,13.878,7.212,0.614,0.0,0.0,0.0,0.0,2063.0,3350.6,3350.6,23.329,18.795,0.0,3.545,3.639,0.512,7.514,0.63,10.088,-12.691,0.0,0.0,0.0,8.302,-0.063,4.804,0.0,0.728,0.0,5.031,-8.097,-2.5,0.0,-0.038,-0.449,-0.05,2.732,-0.022,-1.359,11.723,0.0,0.0,0.0,-6.276,-0.059,-1.155,-3.024,-0.163,0.0,3.117,7.081,2.009,1147.2,817.3,8666.7,2153.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18553.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,59.815,59.815,38.528,38.528,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.351,0.0,0.0,4.577,0.898,10.712,0.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,0.0,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.934,0.0,15.047,10.898,0.613,0.0,0.0,0.0,0.0,2183.4,3571.0,3571.0,22.735,19.449,0.0,3.569,3.65,0.514,7.549,0.631,10.109,-12.676,0.0,0.0,0.0,8.327,-0.062,4.808,0.0,0.731,0.0,4.636,-9.709,-2.497,0.0,-0.075,-0.479,-0.054,2.64,-0.031,-1.46,11.737,0.0,0.0,0.0,-6.42,-0.058,-1.188,-3.188,-0.168,0.0,3.295,8.669,2.013,1562.4,1177.9,13676.3,2901.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5342.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 -base-enclosure-beds-5.xml,61.424,61.424,41.106,41.106,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.335,0.0,0.0,4.745,0.939,12.383,0.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,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,0.0,15.649,12.694,0.612,0.0,0.0,0.0,0.0,2527.7,3931.7,3931.7,22.438,19.771,0.0,3.582,3.657,0.515,7.568,0.633,10.128,-12.669,0.0,0.0,0.0,8.348,-0.064,4.813,0.0,0.733,0.0,4.441,-10.517,-2.496,0.0,-0.092,-0.493,-0.056,2.596,-0.034,-1.504,11.744,0.0,0.0,0.0,-6.484,-0.06,-1.202,-3.268,-0.17,0.0,3.385,9.461,2.013,1770.0,1358.2,16181.0,3193.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19258.0,5339.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 -base-enclosure-ceilingtypes.xml,74.293,74.293,36.44,36.44,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,0.0,4.612,0.908,9.02,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.444,0.0,15.263,9.075,0.618,0.0,0.0,0.0,0.0,2135.2,3488.0,3488.0,29.35,19.725,0.0,17.288,3.592,0.505,7.259,0.62,9.956,-12.802,0.0,0.0,0.0,7.765,-0.075,4.845,0.0,0.734,0.0,6.976,-9.065,-2.542,0.0,0.076,-0.331,-0.033,2.89,0.007,-1.002,11.611,0.0,0.0,0.0,-6.097,-0.066,-1.017,-2.911,-0.141,0.0,2.804,7.716,1.968,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30007.0,5443.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,67.095,67.095,29.33,29.33,37.765,0.0,0.0,0.0,0.0,0.0,0.0,0.623,0.0,0.0,3.689,0.672,9.216,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,37.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,35.371,0.0,11.163,9.182,0.62,0.0,0.0,0.0,2.0,1765.2,3397.0,3397.0,29.151,21.057,0.0,3.488,3.656,0.0,0.0,0.672,9.52,-13.012,0.0,0.0,29.107,0.0,-0.209,2.053,0.0,0.788,0.0,7.865,-7.472,-1.575,0.0,0.406,-0.079,0.0,0.0,0.093,0.884,10.956,0.0,0.0,-8.039,0.0,-0.204,-0.263,-1.883,-0.087,0.0,2.753,5.732,1.072,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19986.0,5356.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-enclosure-garage.xml,58.511,58.511,34.584,34.584,23.928,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.101,0.55,9.119,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,0.0,23.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,22.402,0.0,9.117,9.075,0.724,0.0,0.0,0.0,0.0,2134.3,2904.8,2904.8,18.031,11.763,0.0,3.529,3.789,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.368,0.0,0.0,0.0,3.762,-6.763,-2.508,0.0,0.098,-0.288,-0.036,2.418,-0.001,-1.133,8.269,0.0,0.0,0.0,-5.679,-0.041,-1.225,-2.105,0.0,0.0,1.325,5.683,2.002,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15522.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,58.197,58.197,35.931,35.931,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,65.834,65.834,35.942,35.942,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.323,0.832,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.99,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3542.6,3542.6,28.066,20.15,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,59.605,59.605,35.93,35.93,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.395,0.852,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.0,14.354,9.075,0.614,0.0,0.0,0.0,0.0,2119.6,3447.0,3447.0,23.768,19.351,0.0,3.545,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.319,-0.062,5.886,0.0,0.728,0.0,5.113,-8.911,-2.5,0.0,-0.049,-0.456,-0.051,2.715,-0.024,-1.382,11.724,0.0,0.0,0.0,-6.303,-0.058,-1.436,-3.06,-0.164,0.0,3.204,7.868,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,65.834,65.834,35.942,35.942,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.323,0.832,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.99,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3542.6,3542.6,28.066,20.15,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,65.834,65.834,35.942,35.942,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.323,0.832,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.99,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3542.6,3542.6,28.066,20.15,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.015,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.192,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,58.419,58.419,35.906,35.906,22.513,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.39,0.852,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.083,0.0,14.359,9.075,0.614,0.0,0.0,0.0,0.0,2110.9,3417.8,3417.8,23.045,19.086,0.0,3.551,3.641,0.512,7.521,0.864,10.091,-12.683,0.0,0.0,0.0,8.303,-0.064,4.805,0.0,0.729,0.0,4.878,-8.906,-2.499,0.0,-0.053,-0.461,-0.052,2.692,-0.155,-1.398,11.73,0.0,0.0,0.0,-6.336,-0.06,-1.168,-3.092,-0.165,0.0,3.184,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,58.32,58.32,35.76,35.76,22.561,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.272,0.824,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.128,0.0,13.872,9.075,0.614,0.0,0.0,0.0,0.0,2116.9,3375.6,3375.6,22.984,18.594,0.0,3.548,3.639,0.512,7.51,0.629,10.004,-12.276,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.729,0.0,4.882,-8.91,-2.5,0.0,-0.037,-0.451,-0.05,2.717,-0.023,-1.42,11.099,0.0,0.0,0.0,-6.287,-0.059,-1.163,-3.063,-0.164,0.0,3.082,7.868,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,58.115,58.115,35.764,35.764,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.277,0.826,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.931,0.0,13.896,9.075,0.614,0.0,0.0,0.0,0.0,2115.6,3299.5,3299.5,22.859,18.059,0.0,3.669,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.307,-0.061,4.806,0.0,0.729,0.0,4.836,-8.908,-2.5,0.0,-0.306,-0.459,-0.051,2.699,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.327,-0.058,-1.168,-3.089,-0.165,0.0,2.846,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,60.714,60.714,37.035,37.035,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,5.288,1.065,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,18.031,9.075,0.612,0.0,0.0,0.0,3.0,2132.5,3597.6,3597.6,24.757,21.557,0.0,3.552,3.66,0.515,7.583,0.634,10.135,-12.625,2.717,-2.174,0.0,8.471,-0.068,4.816,0.0,0.732,0.0,5.144,-8.887,-2.495,0.0,-0.146,-0.516,-0.059,2.583,-0.039,-1.533,11.705,-0.068,3.749,0.0,-6.624,-0.063,-1.187,-3.252,-0.17,0.0,4.013,7.889,2.014,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23504.0,5406.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,59.334,59.334,35.976,35.976,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.436,0.862,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.875,0.0,14.523,9.075,0.614,0.0,0.0,0.0,0.0,2115.2,3459.6,3459.6,23.651,19.386,0.0,3.538,3.64,0.512,7.524,0.63,10.088,-12.677,1.147,-0.32,0.0,8.319,-0.063,4.806,0.0,0.729,0.0,5.048,-8.906,-2.499,0.0,-0.056,-0.458,-0.051,2.705,-0.025,-1.387,11.724,-0.498,0.432,0.0,-6.325,-0.059,-1.163,-3.074,-0.165,0.0,3.237,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19514.0,5322.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,58.717,58.717,36.691,36.691,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.363,0.0,0.0,5.031,1.005,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.626,0.0,17.0,9.075,0.612,0.0,0.0,0.0,0.0,2127.3,3597.5,3597.5,23.618,20.821,0.0,3.568,3.663,0.516,7.583,0.634,10.138,-12.642,0.857,-1.409,0.0,8.436,-0.063,4.814,0.0,0.732,0.0,4.801,-8.885,-2.496,0.0,-0.128,-0.51,-0.059,2.585,-0.038,-1.535,11.715,0.254,2.537,0.0,-6.587,-0.059,-1.196,-3.257,-0.17,0.0,3.753,7.891,2.014,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21676.0,5364.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,58.47,58.47,36.791,36.791,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,5.117,1.026,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.301,0.0,17.364,9.075,0.612,0.0,0.0,0.0,0.0,2126.9,3597.6,3597.6,23.534,20.992,0.0,3.575,3.667,0.516,7.595,0.636,10.154,-12.632,0.765,-1.651,0.0,8.463,-0.066,4.818,0.0,0.732,0.0,4.733,-8.884,-2.495,0.0,-0.141,-0.519,-0.06,2.564,-0.04,-1.554,11.716,0.258,2.975,0.0,-6.633,-0.063,-1.201,-3.288,-0.171,0.0,3.822,7.892,2.015,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21910.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,40.398,40.398,29.42,29.42,10.978,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,3.949,0.751,9.409,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,10.978,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.274,0.0,12.407,9.295,0.606,0.0,0.0,0.0,0.0,1718.3,2561.2,2561.2,13.175,13.012,0.0,3.945,3.838,0.0,0.0,0.691,10.079,-12.095,0.0,0.0,0.0,7.996,-0.152,2.657,0.0,0.776,0.0,0.295,-6.808,-1.452,0.0,-0.102,-0.617,0.0,0.0,-0.024,-0.74,12.161,0.0,0.0,0.0,-1.657,-0.149,-0.598,-3.044,-0.169,0.0,0.079,6.381,1.195,1354.8,997.6,11171.5,2952.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29034.0,1685.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,313.0,0.0,-487.0,800.0 -base-enclosure-thermal-mass.xml,57.991,57.991,35.884,35.884,22.107,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.376,0.85,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.703,0.0,14.333,9.075,0.614,0.0,0.0,0.0,0.0,2110.8,3383.7,3383.7,22.901,18.772,0.0,3.557,3.642,0.513,7.508,0.63,10.116,-12.697,0.0,0.0,0.0,8.279,-0.098,4.801,0.0,0.728,0.0,4.785,-8.907,-2.499,0.0,-0.05,-0.46,-0.051,2.699,-0.026,-1.427,11.731,0.0,0.0,0.0,-6.336,-0.094,-1.175,-3.143,-0.166,0.0,3.139,7.871,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,74.885,74.885,34.582,34.582,40.303,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,3.069,0.549,9.023,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.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,37.731,0.0,9.028,9.075,0.622,0.0,0.0,0.0,0.0,2128.5,2724.8,2724.8,25.831,12.742,0.0,3.347,16.952,0.473,7.157,0.836,1.283,-1.612,0.0,0.0,0.0,7.38,-0.045,4.826,0.0,0.732,0.0,7.806,-9.155,-2.566,0.0,0.291,-0.623,-0.009,3.405,-0.085,-0.165,1.409,0.0,0.0,0.0,-4.92,-0.04,-0.965,-0.378,-0.123,0.0,1.78,7.631,1.944,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13671.0,5183.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,57.275,57.275,34.937,34.937,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.619,0.655,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.919,0.0,10.899,9.075,0.616,0.0,0.0,0.0,0.0,2119.4,3384.3,3384.3,23.032,18.775,0.0,3.555,3.644,0.513,7.537,0.631,10.098,-12.683,0.0,0.0,0.0,8.359,-0.06,4.806,0.0,0.729,0.0,4.848,-8.905,-2.499,0.0,0.012,-0.412,-0.044,2.862,-0.013,-1.248,11.73,0.0,0.0,0.0,-6.094,-0.057,-1.111,-7.007,-0.157,0.0,2.763,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-none.xml,58.736,58.736,33.868,33.868,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.693,0.468,9.021,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.28,0.0,7.559,9.075,0.619,0.0,0.0,0.0,0.0,2107.2,2513.6,2513.6,17.245,8.428,0.0,3.468,5.156,0.5,7.22,0.6,0.0,0.0,0.0,0.0,0.0,7.492,-0.043,4.777,0.0,0.723,0.0,4.877,-9.031,-2.531,0.0,0.204,-0.376,-0.023,3.187,0.013,0.0,0.0,0.0,0.0,0.0,-5.188,-0.041,-1.102,0.0,-0.144,0.0,1.322,7.752,1.978,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5099.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,65.988,65.988,36.043,36.043,29.945,0.0,0.0,0.0,0.0,0.0,0.0,0.494,0.0,0.0,4.406,0.849,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.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,0.0,0.0,28.045,0.0,14.278,9.075,0.616,0.0,0.0,0.0,0.0,2146.8,3597.6,3597.6,27.766,20.924,0.0,3.492,3.633,0.511,7.504,0.63,19.595,-16.819,0.0,0.0,0.0,8.426,-0.074,4.825,0.0,0.732,0.0,6.377,-8.965,-2.513,0.0,0.012,-0.392,-0.042,2.826,-0.007,-4.96,14.292,0.0,0.0,0.0,-6.171,-0.068,-1.082,-2.85,-0.155,0.0,3.307,7.815,1.997,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21180.0,5355.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,58.121,58.121,35.961,35.961,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.439,0.864,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.753,0.0,14.577,9.075,0.613,0.0,0.0,0.0,0.0,2119.4,3421.7,3421.7,23.032,19.122,0.0,3.558,3.645,0.513,7.515,0.631,10.105,-12.683,0.0,0.0,0.0,8.252,-0.071,4.808,0.0,0.73,0.0,4.81,-8.905,-2.499,0.0,-0.075,-0.483,-0.055,2.62,-0.031,-1.316,12.141,0.0,0.0,0.0,-6.498,-0.067,-1.188,-3.219,-0.168,0.0,3.226,7.872,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,57.811,57.811,33.445,33.445,24.367,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,2.368,0.375,9.024,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,0.0,0.0,22.819,0.0,6.18,9.075,0.622,0.0,0.0,0.0,0.0,2131.5,2577.1,2577.1,23.076,11.444,0.0,3.574,3.682,0.517,7.568,0.638,10.631,-11.787,0.0,0.0,0.0,8.559,-0.043,4.867,0.0,0.74,0.0,5.219,-9.143,-2.56,0.0,0.353,-0.11,-0.002,3.553,0.056,-3.589,2.911,0.0,0.0,0.0,-4.594,-0.039,-0.912,-2.173,-0.118,0.0,1.429,7.643,1.95,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,59.151,59.151,35.346,35.346,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,3.919,0.74,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.295,0.0,12.428,9.075,0.616,0.0,0.0,0.0,0.0,2130.8,3301.5,3301.5,22.493,17.139,0.0,3.514,3.609,0.508,7.424,0.622,8.599,-9.444,0.0,0.0,0.0,8.041,-0.059,4.791,0.0,0.726,0.0,5.093,-8.925,-2.504,0.0,0.015,-0.411,-0.044,2.82,-0.014,-0.74,8.684,0.0,0.0,0.0,-6.06,-0.055,-1.142,-2.918,-0.16,0.0,2.774,7.854,2.006,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17521.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-ambient.xml,47.629,47.629,30.302,30.302,17.327,0.0,0.0,0.0,0.0,0.0,0.0,0.286,0.0,0.0,4.75,0.933,9.202,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,17.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.232,0.0,15.684,9.182,0.606,0.0,0.0,0.0,3.0,1739.2,3397.0,3397.0,20.513,21.293,0.0,3.811,3.817,0.0,0.0,0.769,10.526,-11.315,0.0,0.0,10.182,0.0,-0.48,2.065,0.0,0.786,0.0,3.899,-6.747,-1.425,0.0,-0.11,-0.589,0.0,0.0,0.029,-0.179,12.654,0.0,0.0,-3.786,0.0,-0.474,-0.413,-2.427,-0.161,0.0,3.693,6.443,1.222,1354.8,997.6,11171.6,2752.7,0.0,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,18957.0,5354.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-basement-garage.xml,52.408,52.408,32.65,32.65,19.758,0.0,0.0,0.0,0.0,0.0,0.0,0.326,0.0,0.0,4.436,0.861,9.25,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,0.0,19.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,18.502,0.0,14.517,9.204,0.613,0.0,0.0,0.0,0.0,1905.4,3385.7,3385.7,21.426,19.687,0.0,3.661,4.739,0.514,5.516,0.701,9.837,-12.609,0.0,0.0,0.835,6.146,-0.039,3.259,0.0,0.735,0.0,4.443,-7.701,-1.886,0.0,-0.041,-0.654,-0.057,1.918,-0.044,-1.196,11.679,0.0,0.0,-0.129,-4.618,-0.036,-0.791,-3.022,-0.167,0.0,3.383,6.955,1.52,1354.8,997.6,11171.6,2792.6,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19061.0,5346.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 -base-foundation-belly-wing-no-skirt.xml,49.363,49.363,29.358,29.358,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.95,0.745,9.203,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,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.735,0.0,12.238,9.182,0.607,0.0,0.0,0.0,0.0,1746.6,3073.8,3073.8,24.177,17.955,0.0,3.986,5.373,0.0,0.0,0.756,8.719,-11.134,0.0,0.0,10.274,0.0,-0.363,2.069,0.0,0.793,0.0,6.171,-6.863,-1.453,0.0,0.291,-0.621,0.0,0.0,0.037,0.041,9.561,0.0,0.0,-3.473,0.0,-0.356,-0.4,-2.2,-0.147,0.0,2.254,6.327,1.194,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-belly-wing-skirt.xml,48.992,48.992,29.366,29.366,19.625,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.961,0.748,9.203,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,19.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,18.38,0.0,12.292,9.182,0.606,0.0,0.0,0.0,0.0,1745.5,3069.4,3069.4,24.024,17.914,0.0,3.992,5.382,0.0,0.0,0.757,8.731,-11.127,0.0,0.0,9.978,0.0,-0.357,2.07,0.0,0.794,0.0,6.058,-6.857,-1.453,0.0,0.285,-0.63,0.0,0.0,0.036,0.021,9.567,0.0,0.0,-3.392,0.0,-0.351,-0.403,-2.214,-0.147,0.0,2.26,6.333,1.194,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-complex.xml,77.48,77.48,37.234,37.234,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,5.221,1.053,9.019,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.691,0.0,17.803,9.075,0.617,0.0,0.0,0.0,4.0,2139.6,3597.5,3597.5,33.388,21.552,0.0,3.434,3.658,0.521,19.566,0.65,10.136,-12.837,0.0,0.0,0.0,8.756,-0.109,6.085,0.0,0.739,0.0,8.279,-9.111,-2.555,0.0,0.031,-0.372,-0.046,3.7,-0.007,-1.014,11.574,0.0,0.0,0.0,-4.532,-0.101,-1.237,-3.289,-0.139,0.0,3.795,7.67,1.955,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation-full.xml,55.522,55.522,36.474,36.474,19.048,0.0,0.0,0.0,0.0,0.0,0.0,0.314,0.0,0.0,4.893,0.976,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,17.836,0.0,16.504,9.075,0.611,0.0,0.0,0.0,0.0,2120.4,3597.5,3597.5,22.288,20.652,0.0,3.636,3.705,0.522,8.235,0.644,10.266,-12.652,0.0,0.0,0.0,4.795,-0.064,4.843,0.0,0.735,0.0,4.211,-8.886,-2.496,0.0,-0.115,-0.508,-0.058,2.158,-0.038,-1.547,11.761,0.0,0.0,0.0,-3.714,-0.059,-1.194,-3.315,-0.17,0.0,3.563,7.889,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,57.074,57.074,36.14,36.14,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.6,0.903,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,15.243,9.075,0.613,0.0,0.0,0.0,0.0,2123.3,3516.7,3516.7,22.76,19.966,0.0,3.584,3.664,0.516,7.833,0.635,10.15,-12.669,0.0,0.0,0.0,6.873,-0.061,4.815,0.0,0.731,0.0,4.578,-8.892,-2.496,0.0,-0.082,-0.484,-0.055,2.495,-0.032,-1.471,11.744,0.0,0.0,0.0,-5.347,-0.057,-1.182,-3.183,-0.168,0.0,3.345,7.885,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,56.986,56.986,35.471,35.471,21.515,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.056,0.768,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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.0,0.0,20.147,0.0,12.895,9.075,0.614,0.0,0.0,0.0,0.0,2124.2,3467.0,3467.0,23.225,18.937,0.0,3.584,3.669,0.516,6.117,0.636,10.166,-12.69,0.0,0.0,0.0,8.986,-0.065,4.827,0.0,0.734,0.0,4.708,-8.905,-2.5,0.0,-0.004,-0.423,-0.046,1.073,-0.017,-1.296,11.724,0.0,0.0,0.0,-6.519,-0.06,-1.143,-2.923,-0.162,0.0,2.994,7.872,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,46.897,46.897,28.896,28.896,18.001,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.591,0.668,9.21,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,18.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,16.845,0.0,11.07,9.182,0.614,0.0,0.0,0.0,0.0,1720.5,2388.8,2388.8,15.899,11.724,0.0,3.711,3.607,0.507,5.113,0.622,9.795,-12.66,0.0,0.0,0.0,10.002,-0.052,3.495,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.025,-0.473,-0.053,1.786,-0.029,-1.225,11.693,0.0,0.0,0.0,-3.856,-0.048,-0.842,-2.99,-0.164,0.0,0.0,6.308,1.18,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 -base-foundation-multiple.xml,42.41,42.41,29.714,29.714,12.696,0.0,0.0,0.0,0.0,0.0,0.0,0.209,0.0,0.0,4.348,0.844,9.182,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,12.696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.885,0.0,13.991,9.126,0.693,0.0,0.0,0.0,0.0,1709.3,3029.5,3029.5,15.204,15.261,0.0,3.982,3.868,0.0,0.0,0.78,10.584,-11.178,0.0,0.0,5.315,0.0,-0.386,2.585,0.0,0.0,0.0,1.988,-4.612,-1.419,0.0,-0.151,-0.726,0.0,0.0,-0.016,-0.483,12.79,0.0,0.0,-0.713,0.0,-0.381,-0.573,-2.645,0.0,0.0,1.698,4.254,1.228,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23121.0,4832.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14275.0,221.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-slab.xml,39.615,39.615,29.282,29.282,10.333,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.0,0.0,4.012,0.767,9.201,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,10.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.67,0.0,12.681,9.182,0.605,0.0,0.0,0.0,0.0,1716.3,2530.0,2530.0,12.694,12.979,0.0,3.934,3.804,0.0,0.0,0.691,10.073,-12.046,0.0,0.0,0.0,8.0,-0.153,2.012,0.0,0.776,0.0,0.278,-6.774,-1.446,0.0,-0.09,-0.602,0.0,0.0,-0.029,-0.812,12.21,0.0,0.0,0.0,-1.717,-0.151,-0.471,-2.884,-0.174,0.0,0.08,6.415,1.201,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,28667.0,1684.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-above-grade.xml,43.587,43.587,29.853,29.853,13.734,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.432,0.864,9.2,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,13.734,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.858,0.0,14.362,9.126,0.713,0.0,0.0,0.0,0.0,1713.3,2885.6,2885.6,16.464,16.257,0.0,3.987,3.868,0.0,0.0,0.779,10.63,-11.228,0.0,0.0,5.935,0.0,-0.399,2.588,0.0,0.0,0.0,2.405,-4.628,-1.424,0.0,-0.127,-0.706,0.0,0.0,-0.012,-0.481,12.741,0.0,0.0,-0.615,0.0,-0.394,-0.561,-2.632,0.0,0.0,1.983,4.237,1.223,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23082.0,4827.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14270.0,225.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-assembly-r.xml,40.885,40.885,29.252,29.252,11.633,0.0,0.0,0.0,0.0,0.0,0.0,0.192,0.0,0.0,3.978,0.755,9.197,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,11.633,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.892,0.0,12.414,9.126,0.71,0.0,0.0,0.0,0.0,1716.9,2639.0,2639.0,14.652,13.976,0.0,3.976,3.837,0.0,0.0,0.769,10.587,-11.043,0.0,0.0,4.441,0.0,-0.41,2.586,0.0,0.0,0.0,1.776,-4.584,-1.409,0.0,-0.127,-0.681,0.0,0.0,0.012,-0.458,12.925,0.0,0.0,-2.106,0.0,-0.406,-0.578,-2.548,0.0,0.0,1.159,4.282,1.238,1354.8,997.6,11171.6,2652.8,0.0,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,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-wall-insulation.xml,48.535,48.535,28.916,28.916,19.619,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.654,0.676,9.131,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,19.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.362,0.0,11.128,9.126,0.639,0.0,0.0,0.0,0.0,1728.2,2505.2,2505.2,16.593,12.57,0.0,3.735,3.633,0.0,0.0,0.636,9.314,-12.475,0.0,0.0,14.539,0.0,-0.046,2.466,0.0,0.0,0.0,2.55,-4.773,-1.48,0.0,0.05,-0.453,0.0,0.0,-0.018,-0.471,11.493,0.0,0.0,-2.863,0.0,-0.045,-0.525,-2.441,0.0,0.0,1.347,4.092,1.167,1354.8,997.6,11171.6,2652.8,0.0,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,15218.0,127.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement.xml,42.485,42.485,29.746,29.746,12.739,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.366,0.849,9.19,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,12.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.926,0.0,14.073,9.126,0.703,0.0,0.0,0.0,0.0,1709.8,3042.8,3042.8,15.45,15.467,0.0,3.974,3.834,0.0,0.0,0.76,10.528,-11.159,0.0,0.0,5.366,0.0,-0.39,2.583,0.0,0.0,0.0,2.089,-4.606,-1.417,0.0,-0.13,-0.683,0.0,0.0,0.003,-0.513,12.81,0.0,0.0,-0.768,0.0,-0.385,-0.574,-2.667,0.0,0.0,1.778,4.26,1.23,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23128.0,4832.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14277.0,221.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unvented-crawlspace.xml,40.345,40.345,29.845,29.845,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.173,0.0,0.0,4.386,0.857,9.298,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,10.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.832,0.0,14.17,9.182,0.708,0.0,0.0,0.0,0.0,1705.8,3063.8,3063.8,14.329,14.741,0.0,3.957,3.815,0.0,0.0,0.781,10.653,-10.714,0.0,0.0,4.565,0.0,-0.459,2.05,0.0,0.775,0.0,1.604,-6.202,-1.377,0.0,-0.243,-0.803,0.0,0.0,-0.001,-0.69,13.255,0.0,0.0,-2.098,0.0,-0.455,-0.49,-2.745,-0.197,0.0,1.307,6.382,1.27,1354.8,997.6,11171.5,2752.7,0.0,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace-above-grade.xml,42.339,42.339,29.952,29.952,12.387,0.0,0.0,0.0,0.0,0.0,0.0,0.204,0.0,0.0,4.396,0.857,9.364,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,12.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,0.0,0.0,11.598,0.0,14.125,9.182,0.777,0.0,0.0,0.0,0.0,1721.9,2814.2,2814.2,15.473,15.553,0.0,3.952,3.793,0.0,0.0,0.758,10.49,-10.966,0.0,0.0,6.708,0.0,-0.446,1.847,0.0,0.78,0.0,1.999,-6.302,-1.401,0.0,-0.145,-0.695,0.0,0.0,0.016,-0.509,13.003,0.0,0.0,-2.522,0.0,-0.441,-0.399,-2.671,-0.183,0.0,1.473,6.282,1.246,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,24393.0,7387.0,7508.0,0.0,575.0,2198.0,0.0,2255.0,0.0,2171.0,2299.0,15739.0,2026.0,7037.0,0.0,207.0,232.0,0.0,598.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace.xml,42.246,42.246,29.787,29.787,12.459,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,4.256,0.822,9.372,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,12.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,11.665,0.0,13.523,9.182,0.786,0.0,0.0,0.0,0.0,1723.9,3117.4,3117.4,15.482,15.244,0.0,3.962,3.816,0.0,0.0,0.766,10.546,-11.029,0.0,0.0,6.731,0.0,-0.434,1.848,0.0,0.782,0.0,2.013,-6.322,-1.406,0.0,-0.128,-0.69,0.0,0.0,0.01,-0.475,12.939,0.0,0.0,-3.039,0.0,-0.429,-0.394,-2.616,-0.18,0.0,1.344,6.262,1.241,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,23883.0,6887.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-walkout-basement.xml,64.19,64.19,36.309,36.309,27.88,0.0,0.0,0.0,0.0,0.0,0.0,0.46,0.0,0.0,4.644,0.911,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.11,0.0,15.355,9.075,0.615,0.0,0.0,0.0,0.0,2133.5,3660.3,3660.3,26.753,20.659,0.0,3.536,3.698,0.521,7.384,0.648,10.878,-12.928,0.0,0.0,0.0,10.191,-0.062,6.628,0.0,0.729,0.0,5.961,-8.927,-2.504,0.0,-0.111,-0.524,-0.061,1.459,-0.034,-1.566,12.043,0.0,0.0,0.0,-3.716,-0.057,-1.537,-3.4,-0.161,0.0,3.356,7.852,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19161.0,5335.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.806,34.806,34.806,34.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.424,1.045,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.956,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,3259.0,3259.0,0.0,16.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.023,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.021,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.611,45.611,45.611,45.611,0.0,0.0,0.0,0.0,0.0,0.0,9.472,0.974,0.263,0.015,3.519,1.076,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.368,0.279,13.341,9.075,0.614,0.0,0.0,0.0,0.0,7015.2,3291.7,7015.2,24.205,16.402,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.362,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,41.75,41.75,41.75,41.75,0.0,0.0,0.0,0.0,0.0,0.0,9.497,1.684,0.273,0.027,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.987,0.3,0.0,9.075,0.588,0.0,0.0,0.0,0.0,7126.2,1624.1,7126.2,25.254,0.0,0.0,3.507,3.648,0.513,7.514,0.632,10.115,-12.683,0.0,0.0,0.0,8.15,-0.069,4.81,0.0,0.73,0.0,6.162,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.566,45.566,45.566,45.566,0.0,0.0,0.0,0.0,0.0,0.0,9.024,0.882,0.831,0.048,3.438,1.05,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.647,0.878,13.013,9.075,0.613,0.0,0.0,144.0,0.0,10269.9,3275.4,10269.9,37.464,16.263,0.0,3.616,3.675,0.516,7.775,0.624,10.04,-12.798,0.0,0.0,0.0,9.087,0.059,4.748,0.0,0.762,0.0,4.542,-8.886,-2.51,0.0,0.005,-0.452,-0.051,2.749,-0.035,-1.506,11.615,0.0,0.0,0.0,-6.397,0.05,-1.191,-3.331,-0.163,0.0,2.031,7.891,2.0,1354.8,997.6,11171.5,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.669,45.669,45.669,45.669,0.0,0.0,0.0,0.0,0.0,0.0,9.545,0.974,0.263,0.015,3.504,1.076,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.368,0.279,13.341,9.075,0.614,0.0,0.0,0.0,0.0,7015.2,3284.5,7015.2,24.205,16.402,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.362,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,45.611,45.611,45.611,45.611,0.0,0.0,0.0,0.0,0.0,0.0,9.472,0.974,0.263,0.015,3.519,1.076,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.368,0.279,13.341,9.075,0.614,0.0,0.0,0.0,0.0,7015.2,3291.7,7015.2,24.205,16.402,0.0,3.534,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.362,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.462,41.462,41.462,41.462,0.0,0.0,0.0,0.0,0.0,0.0,7.343,0.575,0.26,0.011,2.342,0.638,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.418,0.272,13.578,9.075,0.614,0.0,0.0,0.0,0.0,6991.3,2815.4,6991.3,24.196,17.378,0.0,3.493,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.317,-0.065,4.807,0.0,0.729,0.0,6.445,-8.906,-2.499,0.0,-0.018,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.311,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.414,53.414,38.606,38.606,14.808,0.0,0.0,0.0,0.0,0.0,4.677,0.498,0.0,0.055,2.556,0.527,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.076,11.082,16.12,9.075,0.614,0.0,0.0,2.0,58.0,3425.3,2790.2,3425.3,23.338,16.603,0.0,3.266,3.605,0.508,7.53,0.616,9.94,-12.591,0.0,0.0,0.0,8.253,-0.031,5.819,0.0,0.721,0.0,11.327,-8.79,-2.477,0.0,-0.187,-0.494,-0.056,2.719,-0.038,-1.537,11.822,0.0,0.0,0.0,-6.373,-0.028,-1.5,-3.084,-0.171,0.0,5.19,7.988,2.033,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.744,56.744,37.423,37.423,19.321,0.0,0.0,0.0,0.0,0.0,3.593,0.349,0.0,0.073,2.586,0.531,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,27.694,14.415,16.291,9.075,0.615,0.0,0.0,204.0,58.0,3014.3,2819.2,3014.3,23.54,16.604,0.0,3.292,3.615,0.508,7.457,0.619,9.934,-12.681,0.0,0.0,0.0,8.271,-0.026,5.805,0.0,0.721,0.0,10.942,-8.844,-2.484,0.0,-0.165,-0.476,-0.054,2.677,-0.033,-1.514,11.732,0.0,0.0,0.0,-6.302,-0.022,-1.49,-3.072,-0.17,0.0,5.156,7.934,2.025,1354.8,997.6,11171.5,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.519,53.519,38.707,38.707,14.813,0.0,0.0,0.0,0.0,0.0,4.737,0.506,0.0,0.055,2.586,0.531,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.813,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.352,11.085,16.323,9.075,0.614,0.0,0.0,2.0,58.0,3425.3,2819.2,3425.3,23.338,16.604,0.0,3.307,3.646,0.513,7.531,0.631,10.101,-12.703,0.0,0.0,0.0,8.336,-0.061,5.888,0.0,0.728,0.0,11.469,-8.917,-2.502,0.0,-0.143,-0.455,-0.051,2.713,-0.024,-1.383,11.71,0.0,0.0,0.0,-6.3,-0.057,-1.436,-3.072,-0.164,0.0,5.271,7.861,2.008,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.561,53.561,38.865,38.865,14.695,0.0,0.0,0.0,0.0,0.0,4.527,0.479,0.0,0.443,2.595,0.53,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,28.567,12.199,16.439,9.075,0.614,0.0,0.0,2.0,54.0,3398.2,2730.6,3398.2,26.749,16.592,0.0,3.253,3.648,0.513,7.537,0.631,10.103,-12.695,0.0,0.0,0.0,8.331,-0.06,4.805,0.0,0.729,0.0,12.775,-8.907,-2.499,0.0,-0.152,-0.464,-0.052,2.682,-0.027,-1.415,11.718,0.0,0.0,0.0,-6.349,-0.056,-1.173,-3.118,-0.166,0.0,5.285,7.871,2.011,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,41.147,41.147,41.147,41.147,0.0,0.0,0.0,0.0,0.0,0.0,7.353,0.758,0.148,0.011,2.378,0.206,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.947,0.159,14.829,9.075,0.614,0.0,0.0,0.0,0.0,7076.3,2607.5,7076.3,24.549,18.191,0.0,3.395,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.323,-0.065,4.808,0.0,0.729,0.0,9.047,-8.906,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.347,-0.061,-1.17,-3.105,-0.166,0.0,3.603,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,49.344,49.344,42.814,42.814,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,3.377,0.538,15.676,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.046,0.0,9.816,16.204,0.642,0.0,0.0,0.0,0.0,2608.0,3550.0,3550.0,17.003,16.125,0.0,2.9,2.833,0.397,5.505,0.423,7.596,-12.563,0.0,0.0,0.0,5.727,-0.058,3.539,0.0,0.582,0.0,1.453,-10.182,-2.473,0.0,-0.155,-0.607,-0.072,2.26,-0.067,-1.871,11.85,0.0,0.0,0.0,-7.696,-0.059,-1.295,-5.333,-0.193,0.0,2.045,9.375,2.036,2181.0,1715.2,21140.4,3685.7,0.0,31430.0,27891.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22993.0,6411.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 -base-hvac-autosize.xml,59.048,59.048,36.067,36.067,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.506,0.883,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.529,0.0,14.904,9.075,0.614,0.0,0.0,0.0,2.0,2124.0,3328.2,3328.2,23.95,18.93,0.0,3.532,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.53,-8.905,-2.499,0.0,-0.076,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.107,-0.166,0.0,3.661,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,32235.0,21309.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,46.854,46.854,24.621,24.621,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.354,0.82,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,0.0,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.822,0.0,14.352,0.0,0.0,0.0,0.0,0.0,0.0,1360.7,2979.9,2979.9,23.072,18.891,0.0,3.558,3.646,0.513,7.535,0.631,10.106,-12.683,0.0,0.0,0.0,8.321,-0.064,5.405,0.0,0.0,0.0,4.828,-8.819,-2.499,0.0,-0.056,-0.466,-0.052,2.68,-0.027,-1.413,11.73,0.0,0.0,0.0,-6.358,-0.06,-1.307,-3.107,0.0,0.0,3.127,7.842,2.011,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,58.092,58.092,35.826,35.826,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,8.942,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.017,0.614,0.0,0.0,0.0,0.0,2130.9,3390.1,3390.1,23.033,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,57.672,57.672,35.406,35.406,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,8.531,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.017,0.614,0.0,0.0,0.0,0.0,2115.9,3375.5,3375.5,23.033,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,72.825,72.825,50.559,50.559,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,22.206,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4200.9,4200.9,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,67.973,67.973,45.707,45.707,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,18.6,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.109,0.614,0.0,0.0,0.0,0.0,2754.3,4017.6,4017.6,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,72.825,72.825,50.559,50.559,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,22.206,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4200.9,4200.9,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,52.337,52.337,30.071,30.071,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.39,0.828,2.885,0.0,0.323,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.409,9.098,0.628,0.0,6.625,0.0,0.0,2096.5,3111.1,3111.1,23.033,18.941,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.684,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.147,7.887,2.011,1354.7,997.5,10979.9,2519.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,50.9,50.9,28.643,28.643,22.257,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.402,0.831,1.455,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.843,0.0,14.461,9.207,0.694,0.0,8.339,0.0,0.0,2067.2,3114.7,3114.7,23.033,18.971,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.913,-2.499,0.0,-0.055,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.113,-0.166,0.0,3.156,7.945,2.011,1354.4,997.2,10197.2,2339.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-ics.xml,52.415,52.415,30.149,30.149,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.396,0.829,2.953,0.0,0.328,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.432,9.133,0.649,0.0,6.61,0.0,0.0,2124.6,3113.4,3113.4,23.034,18.96,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.055,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.108,-0.166,0.0,3.151,7.909,2.011,1354.7,997.6,10721.3,2460.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,52.513,52.513,29.977,29.977,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.354,0.819,3.156,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.104,0.0,14.253,9.075,0.215,0.0,5.899,0.0,0.0,1786.0,3389.9,3389.9,23.1,18.862,0.0,3.554,3.644,0.513,7.529,0.631,10.098,-12.69,0.0,0.0,0.0,8.316,-0.062,4.806,0.0,0.729,0.0,4.885,-8.691,-2.5,0.0,-0.05,-0.461,-0.051,2.696,-0.026,-1.399,11.724,0.0,0.0,0.0,-6.333,-0.059,-1.167,-3.087,-0.165,0.0,3.123,7.688,2.01,474.2,349.2,3910.1,897.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,50.633,50.633,28.731,28.731,21.903,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,4.506,0.856,1.426,0.0,0.305,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.511,0.0,14.907,9.186,0.682,0.0,8.337,0.0,0.0,2107.1,3148.3,3148.3,23.067,19.248,0.0,3.559,3.645,0.513,7.536,0.63,10.098,-12.669,0.0,0.0,0.0,8.31,-0.061,4.807,0.0,0.729,0.0,4.762,-9.207,-2.496,0.0,-0.067,-0.473,-0.053,2.663,-0.029,-1.44,11.744,0.0,0.0,0.0,-6.388,-0.058,-1.183,-3.161,-0.168,0.0,3.23,8.469,2.013,1354.2,997.1,10322.8,2368.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,50.616,50.616,28.358,28.358,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.402,0.831,1.482,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.844,0.0,14.458,9.2,0.69,0.0,8.299,0.0,0.0,2091.4,3082.6,3082.6,23.033,18.97,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.912,-2.499,0.0,-0.055,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.112,-0.166,0.0,3.155,7.942,2.011,1354.4,997.2,10240.9,2350.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-coal.xml,64.778,64.778,27.014,27.014,22.487,0.0,0.0,0.0,0.0,15.277,0.0,0.371,0.0,0.0,4.511,0.856,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3133.3,3133.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-detailed-setpoints.xml,58.124,58.124,35.864,35.864,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.388,0.827,9.006,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.846,0.0,14.397,9.049,0.623,0.0,0.0,0.0,0.0,2529.3,3412.2,3412.2,23.009,18.922,0.0,3.556,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.908,-2.499,0.0,-0.055,-0.465,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.145,7.879,2.011,1354.8,997.6,11206.2,2571.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,58.167,58.167,35.952,35.952,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.393,0.829,9.088,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,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,0.0,14.421,9.075,0.691,0.0,0.0,0.0,0.0,2172.7,3458.0,3458.0,23.02,18.939,0.0,3.557,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.823,-8.947,-2.499,0.0,-0.055,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.172,-3.11,-0.166,0.0,3.149,7.908,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,66.501,66.501,26.802,26.802,39.698,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,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,0.0,22.681,0.0,17.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.075,5.067,0.0,0.0,0.0,0.0,1462.6,3065.8,3065.8,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,64.449,64.449,26.977,26.977,37.472,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.477,0.848,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,0.0,22.763,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.317,0.0,14.763,9.075,2.977,0.0,0.0,0.0,0.0,1464.3,3125.4,3125.4,23.55,19.37,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.059,-0.466,-0.052,2.682,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.218,8.483,2.011,1354.8,997.6,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,64.449,64.449,26.977,26.977,37.472,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.477,0.848,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,0.0,22.763,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.317,0.0,14.763,9.075,2.977,0.0,0.0,0.0,0.0,1464.3,3125.4,3125.4,23.55,19.37,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.059,-0.466,-0.052,2.682,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.218,8.483,2.011,1354.8,997.6,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,64.778,64.778,27.014,27.014,37.764,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.511,0.856,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,0.0,22.487,0.0,15.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,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3133.3,3133.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,56.234,56.234,28.75,28.75,27.484,0.0,0.0,0.0,0.0,0.0,0.0,0.453,0.0,0.0,3.853,0.702,2.464,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.734,0.0,12.232,9.216,1.415,0.0,0.0,0.0,0.0,1856.0,3050.7,3050.7,26.694,18.696,0.0,3.506,3.633,0.511,7.505,0.628,10.08,-12.706,0.0,0.0,0.0,8.336,-0.061,4.798,0.0,0.727,0.0,5.798,-4.871,-2.509,0.0,0.02,-0.397,-0.042,2.89,-0.009,-1.185,11.708,0.0,0.0,0.0,-6.003,-0.057,-1.086,-2.728,-0.154,0.0,2.733,5.066,2.0,1354.8,997.6,9994.8,2293.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.091,56.091,28.572,28.572,27.519,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.837,0.698,2.306,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,25.759,0.0,12.17,9.132,1.307,0.0,0.0,0.0,0.0,1854.5,3405.9,3405.9,25.444,18.875,0.0,3.516,3.634,0.511,7.509,0.628,10.061,-12.724,0.0,0.0,0.0,8.352,-0.046,4.792,0.0,0.727,0.0,5.79,-4.85,-2.508,0.0,0.021,-0.401,-0.043,2.894,-0.011,-1.219,11.689,0.0,0.0,0.0,-6.009,-0.042,-1.1,-2.763,-0.152,0.0,2.735,5.064,2.001,1354.8,997.6,10745.3,2465.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,56.219,56.219,33.539,33.539,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,6.736,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.096,2.524,0.0,0.0,0.0,0.0,3051.2,3299.2,3299.2,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11023.3,2529.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,56.091,56.091,28.572,28.572,27.519,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.837,0.698,2.306,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,25.759,0.0,12.17,9.132,1.307,0.0,0.0,0.0,0.0,1854.5,3405.9,3405.9,25.444,18.875,0.0,3.516,3.634,0.511,7.509,0.628,10.061,-12.724,0.0,0.0,0.0,8.352,-0.046,4.792,0.0,0.727,0.0,5.79,-4.85,-2.508,0.0,0.021,-0.401,-0.043,2.894,-0.011,-1.219,11.689,0.0,0.0,0.0,-6.009,-0.042,-1.1,-2.763,-0.152,0.0,2.735,5.064,2.001,1354.8,997.6,10745.3,2465.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,51.914,51.914,27.884,27.884,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,4.194,0.782,1.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,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.503,0.0,13.612,9.108,0.602,0.0,5.92,0.0,0.0,1856.3,3149.6,3149.6,25.408,18.908,0.0,3.544,3.64,0.512,7.519,0.629,10.079,-12.705,0.0,0.0,0.0,8.318,-0.055,4.8,0.0,0.728,0.0,5.161,-7.514,-2.501,0.0,-0.028,-0.443,-0.049,2.749,-0.022,-1.352,11.708,0.0,0.0,0.0,-6.242,-0.051,-1.148,-2.982,-0.162,0.0,3.002,6.875,2.009,474.2,349.2,3821.6,876.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,51.434,51.434,28.491,28.491,22.943,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.535,0.863,1.111,0.0,0.327,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.484,0.0,15.039,9.023,1.965,0.0,8.039,0.0,0.0,1896.1,3162.8,3162.8,25.085,19.348,0.0,3.556,3.646,0.513,7.537,0.63,10.093,-12.686,0.0,0.0,0.0,8.324,-0.056,4.806,0.0,0.729,0.0,4.955,-8.421,-2.498,0.0,-0.061,-0.467,-0.052,2.678,-0.028,-1.429,11.727,0.0,0.0,0.0,-6.35,-0.053,-1.177,-3.153,-0.166,0.0,3.244,8.548,2.011,1354.4,997.3,11673.7,2678.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,56.332,56.332,29.731,29.731,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,3.922,0.719,3.376,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.907,0.0,12.539,9.12,1.717,0.0,0.0,0.0,0.0,1874.8,3284.0,3284.0,23.533,19.054,0.0,3.526,3.638,0.512,7.511,0.627,10.061,-12.745,0.0,0.0,0.0,8.343,-0.049,4.795,0.0,0.727,0.0,5.625,-5.52,-2.509,0.0,0.008,-0.413,-0.045,2.848,-0.015,-1.266,11.668,0.0,0.0,0.0,-6.079,-0.045,-1.116,-2.835,-0.155,0.0,2.789,5.526,2.001,1354.8,997.6,10838.7,2487.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.694,58.694,35.426,35.426,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.42,0.834,8.5,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.788,0.0,14.489,9.117,0.021,0.0,0.0,0.0,0.0,4562.5,5564.3,5564.3,30.746,19.739,0.0,3.55,3.645,0.513,7.528,0.631,10.104,-12.683,0.0,0.0,0.0,8.312,-0.062,5.265,0.0,0.776,0.0,5.021,-8.643,-2.504,0.0,-0.052,-0.46,-0.051,2.698,-0.025,-1.389,11.73,0.0,0.0,0.0,-6.33,-0.058,-1.267,-3.074,-0.186,0.0,3.167,8.004,2.005,1354.7,998.0,10786.3,2475.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,57.979,57.979,35.312,35.312,22.667,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.339,0.816,8.508,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.227,0.0,14.185,9.125,0.021,0.0,0.0,0.0,0.0,2011.1,3420.4,3420.4,23.132,18.831,0.0,3.553,3.644,0.513,7.528,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.91,-8.585,-2.5,0.0,-0.048,-0.459,-0.051,2.7,-0.025,-1.395,11.724,0.0,0.0,0.0,-6.326,-0.058,-1.165,-3.078,-0.165,0.0,3.112,7.6,2.01,1354.8,997.6,10766.2,2470.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,64.778,64.778,27.014,27.014,22.487,15.277,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.511,0.856,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3133.3,3133.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-wood.xml,64.778,64.778,27.014,27.014,22.487,0.0,0.0,15.277,0.0,0.0,0.0,0.371,0.0,0.0,4.511,0.856,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3133.3,3133.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,60.655,60.655,26.802,26.802,33.852,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,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,0.0,22.681,0.0,11.171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.056,0.0,0.0,0.0,0.0,0.0,1462.6,3065.8,3065.8,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11343.1,2602.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,58.756,58.756,36.075,36.075,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,9.273,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3456.4,3456.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,58.651,58.651,35.97,35.97,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,2006.8,3451.9,3451.9,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,58.756,58.756,36.075,36.075,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,9.273,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3456.4,3456.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,59.144,59.144,26.802,26.802,32.342,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,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,0.0,22.681,0.0,9.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,21.24,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3065.8,3065.8,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,53.401,53.401,26.802,26.802,26.599,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,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,0.0,22.681,0.0,3.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.076,0.0,0.0,5.899,0.0,0.0,1462.6,3065.8,3065.8,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,474.2,349.2,3909.2,897.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,51.116,51.116,27.233,27.233,23.882,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.444,0.841,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,0.0,22.316,0.0,1.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.899,0.0,14.636,9.262,0.0,0.0,7.989,0.0,0.0,1462.4,3131.7,3131.7,23.167,19.107,0.0,3.557,3.645,0.513,7.532,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,4.807,0.0,0.73,0.0,4.843,-8.879,-2.498,0.0,-0.058,-0.467,-0.052,2.679,-0.027,-1.42,11.73,0.0,0.0,0.0,-6.36,-0.058,-1.175,-3.128,-0.166,0.0,3.187,8.131,2.011,1344.9,989.3,9809.3,2250.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,60.678,60.678,26.802,26.802,33.876,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,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,0.0,22.681,0.0,11.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.24,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3065.8,3065.8,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-propane.xml,60.678,60.678,26.802,26.802,22.681,0.0,11.195,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.24,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3065.8,3065.8,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,65.628,65.628,40.908,40.908,24.721,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,6.413,1.278,8.973,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,0.0,24.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,23.053,0.0,22.216,9.053,0.609,0.0,0.0,0.0,0.0,2295.2,4798.0,4798.0,30.686,28.023,0.0,3.862,7.596,1.093,5.881,0.688,20.477,-24.88,0.0,0.0,0.867,6.711,-0.179,8.99,0.0,0.763,0.0,3.298,-9.747,-2.93,0.0,-0.108,-1.064,-0.109,1.841,-0.027,-1.631,23.454,0.0,0.0,-0.141,-4.808,-0.17,-1.956,-6.137,-0.162,0.0,2.864,8.485,2.338,1354.8,997.6,11171.5,2524.9,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7647.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25899.0,4445.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,73.62,73.62,44.217,44.217,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,6.301,1.252,8.86,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,0.0,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.421,0.0,21.74,8.989,0.612,0.0,0.0,0.0,0.0,2519.0,4681.2,4681.2,33.941,28.165,0.0,3.774,7.88,1.071,7.921,0.667,20.509,-25.19,0.0,0.0,0.0,9.056,-0.136,11.167,0.0,0.747,0.0,3.872,-10.951,-3.54,0.0,-0.074,-1.046,-0.101,2.662,-0.023,-2.118,23.376,0.0,0.0,0.0,-6.456,-0.126,-2.486,-6.302,-0.162,0.0,2.792,9.405,2.832,1354.8,997.6,11171.6,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25801.0,4444.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,54.806,54.806,30.551,30.551,24.255,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.075,0.753,5.473,0.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,0.0,24.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,22.716,0.0,13.253,5.267,0.615,0.0,0.0,0.0,0.0,1683.1,3249.6,3249.6,23.625,18.28,0.0,3.533,3.635,0.511,7.498,0.63,10.083,-12.698,0.0,0.0,0.0,8.293,-0.065,4.804,0.0,0.727,0.0,5.229,-7.29,-2.504,0.0,-0.017,-0.434,-0.048,2.778,-0.018,-1.304,11.715,0.0,0.0,0.0,-6.2,-0.061,-1.138,-2.942,-0.161,0.0,2.969,6.287,2.006,939.7,637.0,6161.9,1598.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18320.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,56.505,56.505,33.248,33.248,23.257,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.229,0.79,7.282,0.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,0.0,23.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,21.78,0.0,13.818,7.212,0.614,0.0,0.0,0.0,0.0,2063.0,3316.5,3316.5,23.329,18.601,0.0,3.545,3.639,0.512,7.514,0.63,10.088,-12.691,0.0,0.0,0.0,8.302,-0.063,4.804,0.0,0.728,0.0,5.031,-8.097,-2.5,0.0,-0.035,-0.449,-0.05,2.732,-0.022,-1.359,11.723,0.0,0.0,0.0,-6.276,-0.059,-1.155,-3.024,-0.163,0.0,3.057,7.081,2.009,1147.2,817.3,8666.7,2153.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18553.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,59.755,59.755,38.468,38.468,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.351,0.0,0.0,4.55,0.866,10.712,0.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,0.0,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.934,0.0,14.984,10.898,0.613,0.0,0.0,0.0,0.0,2183.4,3545.3,3545.3,22.735,19.253,0.0,3.569,3.65,0.514,7.549,0.631,10.109,-12.676,0.0,0.0,0.0,8.327,-0.062,4.808,0.0,0.731,0.0,4.636,-9.709,-2.497,0.0,-0.072,-0.479,-0.054,2.64,-0.031,-1.461,11.737,0.0,0.0,0.0,-6.42,-0.058,-1.188,-3.188,-0.168,0.0,3.234,8.669,2.013,1562.4,1177.9,13676.3,2901.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5342.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 +base-enclosure-beds-5.xml,61.362,61.362,41.044,41.044,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.335,0.0,0.0,4.716,0.906,12.383,0.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,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,0.0,15.585,12.694,0.612,0.0,0.0,0.0,0.0,2527.7,3899.3,3899.3,22.438,19.574,0.0,3.582,3.657,0.515,7.568,0.633,10.128,-12.669,0.0,0.0,0.0,8.348,-0.064,4.813,0.0,0.733,0.0,4.441,-10.517,-2.496,0.0,-0.09,-0.493,-0.056,2.596,-0.034,-1.504,11.744,0.0,0.0,0.0,-6.484,-0.06,-1.202,-3.268,-0.17,0.0,3.322,9.461,2.013,1770.0,1358.2,16181.0,3193.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19258.0,5339.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 +base-enclosure-ceilingtypes.xml,74.243,74.243,36.39,36.39,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,0.0,4.592,0.878,9.02,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.444,0.0,15.23,9.075,0.618,0.0,0.0,0.0,0.0,2135.2,3465.2,3465.2,29.35,19.614,0.0,17.288,3.592,0.505,7.259,0.62,9.956,-12.802,0.0,0.0,0.0,7.765,-0.075,4.845,0.0,0.734,0.0,6.976,-9.065,-2.542,0.0,0.085,-0.331,-0.033,2.89,0.007,-1.002,11.611,0.0,0.0,0.0,-6.098,-0.066,-1.017,-2.912,-0.141,0.0,2.765,7.716,1.968,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30007.0,5443.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-floortypes.xml,67.046,67.046,29.281,29.281,37.765,0.0,0.0,0.0,0.0,0.0,0.0,0.623,0.0,0.0,3.665,0.648,9.216,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,37.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,35.371,0.0,11.104,9.182,0.62,0.0,0.0,0.0,0.0,1765.2,3453.8,3453.8,29.151,21.511,0.0,3.488,3.656,0.0,0.0,0.672,9.52,-13.012,0.0,0.0,29.107,0.0,-0.209,2.053,0.0,0.788,0.0,7.865,-7.472,-1.575,0.0,0.408,-0.079,0.0,0.0,0.093,0.884,10.956,0.0,0.0,-8.039,0.0,-0.204,-0.263,-1.884,-0.087,0.0,2.695,5.732,1.072,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19986.0,5356.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-enclosure-garage.xml,58.482,58.482,34.554,34.554,23.928,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.09,0.532,9.119,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,0.0,23.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,22.402,0.0,9.107,9.075,0.724,0.0,0.0,0.0,0.0,2134.3,2857.5,2857.5,18.031,11.736,0.0,3.529,3.789,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.368,0.0,0.0,0.0,3.762,-6.763,-2.508,0.0,0.098,-0.288,-0.036,2.418,-0.001,-1.133,8.269,0.0,0.0,0.0,-5.679,-0.041,-1.225,-2.105,0.0,0.0,1.315,5.683,2.002,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15522.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,58.14,58.14,35.874,35.874,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3389.8,3389.8,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,58.14,58.14,35.874,35.874,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3389.8,3389.8,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,58.14,58.14,35.874,35.874,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3389.8,3389.8,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,65.777,65.777,35.886,35.886,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.296,0.802,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.927,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3507.2,3507.2,28.066,19.95,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.012,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.13,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,59.548,59.548,35.873,35.873,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.368,0.822,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.0,14.292,9.075,0.614,0.0,0.0,0.0,0.0,2119.6,3414.9,3414.9,23.768,19.155,0.0,3.545,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.319,-0.062,5.886,0.0,0.728,0.0,5.113,-8.911,-2.5,0.0,-0.047,-0.456,-0.051,2.715,-0.024,-1.382,11.724,0.0,0.0,0.0,-6.303,-0.058,-1.436,-3.06,-0.164,0.0,3.143,7.868,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,65.777,65.777,35.886,35.886,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.296,0.802,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.927,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3507.2,3507.2,28.066,19.95,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.012,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.13,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,65.777,65.777,35.886,35.886,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.296,0.802,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.927,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3507.2,3507.2,28.066,19.95,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.012,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.13,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,58.363,58.363,35.85,35.85,22.513,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.364,0.822,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.083,0.0,14.299,9.075,0.614,0.0,0.0,0.0,0.0,2110.9,3385.9,3385.9,23.045,18.891,0.0,3.551,3.641,0.512,7.521,0.864,10.091,-12.683,0.0,0.0,0.0,8.303,-0.064,4.805,0.0,0.729,0.0,4.878,-8.906,-2.499,0.0,-0.051,-0.462,-0.052,2.692,-0.155,-1.398,11.73,0.0,0.0,0.0,-6.336,-0.06,-1.168,-3.092,-0.165,0.0,3.124,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,58.265,58.265,35.705,35.705,22.561,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.246,0.794,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.128,0.0,13.814,9.075,0.614,0.0,0.0,0.0,0.0,2116.9,3341.8,3341.8,22.984,18.381,0.0,3.548,3.639,0.512,7.51,0.629,10.004,-12.276,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.729,0.0,4.882,-8.91,-2.5,0.0,-0.035,-0.451,-0.05,2.717,-0.023,-1.42,11.099,0.0,0.0,0.0,-6.287,-0.059,-1.163,-3.064,-0.164,0.0,3.023,7.868,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,58.064,58.064,35.712,35.712,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.254,0.798,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.931,0.0,13.848,9.075,0.614,0.0,0.0,0.0,0.0,2115.6,3271.7,3271.7,22.859,17.895,0.0,3.669,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.307,-0.061,4.806,0.0,0.729,0.0,4.836,-8.908,-2.5,0.0,-0.304,-0.459,-0.051,2.699,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.327,-0.058,-1.168,-3.089,-0.165,0.0,2.798,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-physical-properties.xml,60.647,60.647,36.968,36.968,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,5.258,1.028,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,17.958,9.075,0.612,0.0,0.0,0.0,0.0,2132.5,3654.4,3654.4,24.757,21.883,0.0,3.552,3.66,0.515,7.583,0.634,10.135,-12.625,2.717,-2.174,0.0,8.471,-0.068,4.816,0.0,0.732,0.0,5.144,-8.887,-2.495,0.0,-0.143,-0.516,-0.059,2.583,-0.039,-1.533,11.705,-0.068,3.749,0.0,-6.624,-0.063,-1.187,-3.252,-0.17,0.0,3.94,7.889,2.014,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23504.0,5406.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,59.277,59.277,35.918,35.918,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.409,0.831,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.875,0.0,14.462,9.075,0.614,0.0,0.0,0.0,0.0,2115.2,3424.8,3424.8,23.651,19.191,0.0,3.538,3.64,0.512,7.524,0.63,10.088,-12.677,1.147,-0.32,0.0,8.318,-0.063,4.806,0.0,0.729,0.0,5.048,-8.906,-2.499,0.0,-0.053,-0.458,-0.051,2.705,-0.025,-1.388,11.724,-0.498,0.432,0.0,-6.325,-0.059,-1.163,-3.074,-0.165,0.0,3.176,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19514.0,5322.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,58.653,58.653,36.626,36.626,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.363,0.0,0.0,5.002,0.97,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.626,0.0,16.931,9.075,0.612,0.0,0.0,0.0,0.0,2127.3,3654.3,3654.3,23.618,21.274,0.0,3.568,3.663,0.516,7.583,0.634,10.138,-12.642,0.857,-1.409,0.0,8.436,-0.063,4.814,0.0,0.732,0.0,4.801,-8.885,-2.496,0.0,-0.126,-0.51,-0.059,2.585,-0.038,-1.535,11.715,0.254,2.537,0.0,-6.587,-0.059,-1.196,-3.257,-0.17,0.0,3.684,7.891,2.014,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21676.0,5364.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,58.405,58.405,36.726,36.726,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,5.088,0.99,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.301,0.0,17.295,9.075,0.612,0.0,0.0,0.0,0.0,2126.9,3654.4,3654.4,23.534,21.347,0.0,3.575,3.667,0.516,7.595,0.636,10.154,-12.632,0.765,-1.651,0.0,8.463,-0.066,4.818,0.0,0.732,0.0,4.733,-8.884,-2.495,0.0,-0.137,-0.519,-0.06,2.564,-0.04,-1.554,11.716,0.258,2.975,0.0,-6.633,-0.063,-1.201,-3.288,-0.171,0.0,3.753,7.892,2.015,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21910.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-split-level.xml,40.366,40.366,29.387,29.387,10.979,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,3.939,0.728,9.409,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,10.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,10.274,0.0,12.412,9.295,0.606,0.0,0.0,0.0,0.0,1718.3,2550.9,2550.9,13.175,13.018,0.0,3.945,3.838,0.0,0.0,0.691,10.079,-12.095,0.0,0.0,0.0,7.996,-0.152,2.657,0.0,0.776,0.0,0.295,-6.808,-1.452,0.0,-0.102,-0.617,0.0,0.0,-0.024,-0.74,12.161,0.0,0.0,0.0,-1.657,-0.149,-0.598,-3.044,-0.169,0.0,0.084,6.381,1.195,1354.8,997.6,11171.5,2952.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29034.0,1685.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,313.0,0.0,-487.0,800.0 +base-enclosure-thermal-mass.xml,57.934,57.934,35.827,35.827,22.107,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.35,0.82,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.703,0.0,14.273,9.075,0.614,0.0,0.0,0.0,0.0,2110.8,3352.1,3352.1,22.901,18.579,0.0,3.557,3.642,0.513,7.508,0.63,10.116,-12.697,0.0,0.0,0.0,8.279,-0.098,4.801,0.0,0.728,0.0,4.785,-8.907,-2.499,0.0,-0.047,-0.46,-0.051,2.699,-0.026,-1.427,11.731,0.0,0.0,0.0,-6.336,-0.094,-1.175,-3.143,-0.166,0.0,3.08,7.871,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,74.849,74.849,34.545,34.545,40.303,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,3.052,0.529,9.023,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.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,37.731,0.0,8.994,9.075,0.622,0.0,0.0,0.0,0.0,2128.5,2694.0,2694.0,25.831,12.574,0.0,3.347,16.952,0.473,7.157,0.836,1.283,-1.612,0.0,0.0,0.0,7.38,-0.045,4.826,0.0,0.732,0.0,7.806,-9.155,-2.566,0.0,0.292,-0.622,-0.009,3.405,-0.085,-0.165,1.409,0.0,0.0,0.0,-4.92,-0.04,-0.965,-0.378,-0.123,0.0,1.748,7.631,1.944,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13671.0,5183.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,57.225,57.225,34.888,34.888,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.594,0.631,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.919,0.0,10.838,9.075,0.616,0.0,0.0,0.0,0.0,2119.4,3353.1,3353.1,23.032,18.584,0.0,3.555,3.644,0.513,7.537,0.631,10.098,-12.683,0.0,0.0,0.0,8.359,-0.06,4.806,0.0,0.729,0.0,4.848,-8.905,-2.499,0.0,0.014,-0.412,-0.044,2.862,-0.013,-1.249,11.73,0.0,0.0,0.0,-6.095,-0.057,-1.111,-7.007,-0.157,0.0,2.703,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-none.xml,58.708,58.708,33.84,33.84,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.681,0.452,9.021,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.28,0.0,7.537,9.075,0.619,0.0,0.0,0.0,0.0,2107.2,2494.2,2494.2,17.245,8.333,0.0,3.468,5.156,0.5,7.22,0.6,0.0,0.0,0.0,0.0,0.0,7.492,-0.043,4.777,0.0,0.723,0.0,4.877,-9.031,-2.531,0.0,0.205,-0.376,-0.023,3.187,0.013,0.0,0.0,0.0,0.0,0.0,-5.188,-0.041,-1.102,0.0,-0.144,0.0,1.301,7.752,1.978,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5099.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,65.931,65.931,35.986,35.986,29.945,0.0,0.0,0.0,0.0,0.0,0.0,0.494,0.0,0.0,4.379,0.819,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.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,0.0,0.0,28.045,0.0,14.213,9.075,0.616,0.0,0.0,0.0,0.0,2146.8,3654.3,3654.3,27.766,21.326,0.0,3.492,3.633,0.511,7.504,0.63,19.595,-16.819,0.0,0.0,0.0,8.426,-0.074,4.825,0.0,0.732,0.0,6.377,-8.965,-2.513,0.0,0.015,-0.392,-0.042,2.826,-0.007,-4.96,14.292,0.0,0.0,0.0,-6.171,-0.068,-1.082,-2.85,-0.155,0.0,3.243,7.815,1.997,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21180.0,5355.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,58.063,58.063,35.903,35.903,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.412,0.834,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.753,0.0,14.515,9.075,0.613,0.0,0.0,0.0,0.0,2119.4,3389.8,3389.8,23.032,18.927,0.0,3.558,3.645,0.513,7.515,0.631,10.105,-12.683,0.0,0.0,0.0,8.252,-0.071,4.808,0.0,0.73,0.0,4.81,-8.905,-2.499,0.0,-0.073,-0.483,-0.055,2.62,-0.031,-1.316,12.141,0.0,0.0,0.0,-6.498,-0.067,-1.188,-3.219,-0.168,0.0,3.165,7.872,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,57.782,57.782,33.416,33.416,24.367,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,2.352,0.361,9.024,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,0.0,0.0,22.819,0.0,6.148,9.075,0.622,0.0,0.0,0.0,0.0,2131.5,2563.4,2563.4,23.076,11.305,0.0,3.574,3.682,0.517,7.568,0.638,10.631,-11.787,0.0,0.0,0.0,8.559,-0.043,4.867,0.0,0.74,0.0,5.219,-9.143,-2.56,0.0,0.354,-0.11,-0.002,3.553,0.056,-3.589,2.911,0.0,0.0,0.0,-4.594,-0.039,-0.912,-2.173,-0.118,0.0,1.398,7.643,1.95,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-storms.xml,59.101,59.101,35.295,35.295,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,3.895,0.713,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.295,0.0,12.373,9.075,0.616,0.0,0.0,0.0,0.0,2130.8,3277.5,3277.5,22.493,16.956,0.0,3.514,3.609,0.508,7.424,0.622,8.599,-9.444,0.0,0.0,0.0,8.041,-0.059,4.791,0.0,0.726,0.0,5.093,-8.925,-2.504,0.0,0.017,-0.411,-0.044,2.82,-0.014,-0.74,8.684,0.0,0.0,0.0,-6.06,-0.055,-1.142,-2.918,-0.16,0.0,2.72,7.854,2.006,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17521.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-ambient.xml,47.567,47.567,30.24,30.24,17.327,0.0,0.0,0.0,0.0,0.0,0.0,0.286,0.0,0.0,4.721,0.9,9.202,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,17.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.0,15.611,9.182,0.606,0.0,0.0,0.0,2.0,1739.2,3453.8,3453.8,20.513,21.806,0.0,3.811,3.817,0.0,0.0,0.769,10.526,-11.315,0.0,0.0,10.182,0.0,-0.48,2.065,0.0,0.786,0.0,3.899,-6.747,-1.425,0.0,-0.107,-0.589,0.0,0.0,0.029,-0.179,12.654,0.0,0.0,-3.786,0.0,-0.474,-0.413,-2.427,-0.161,0.0,3.621,6.443,1.222,1354.8,997.6,11171.6,2752.7,0.0,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,18957.0,5354.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-basement-garage.xml,52.348,52.348,32.59,32.59,19.758,0.0,0.0,0.0,0.0,0.0,0.0,0.326,0.0,0.0,4.407,0.83,9.25,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,0.0,19.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,18.502,0.0,14.445,9.204,0.613,0.0,0.0,0.0,0.0,1905.4,3347.0,3347.0,21.426,19.451,0.0,3.661,4.739,0.514,5.516,0.701,9.837,-12.609,0.0,0.0,0.835,6.146,-0.039,3.259,0.0,0.735,0.0,4.443,-7.701,-1.886,0.0,-0.039,-0.654,-0.057,1.918,-0.044,-1.196,11.679,0.0,0.0,-0.129,-4.618,-0.036,-0.791,-3.022,-0.167,0.0,3.313,6.955,1.52,1354.8,997.6,11171.6,2792.6,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19061.0,5346.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 +base-foundation-belly-wing-no-skirt.xml,49.327,49.327,29.321,29.321,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.937,0.721,9.203,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,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.736,0.0,12.229,9.182,0.607,0.0,0.0,0.0,0.0,1746.6,3052.5,3052.5,24.177,17.847,0.0,3.986,5.373,0.0,0.0,0.756,8.719,-11.134,0.0,0.0,10.274,0.0,-0.363,2.069,0.0,0.793,0.0,6.171,-6.863,-1.453,0.0,0.291,-0.621,0.0,0.0,0.037,0.041,9.561,0.0,0.0,-3.473,0.0,-0.356,-0.4,-2.2,-0.147,0.0,2.245,6.327,1.194,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-belly-wing-skirt.xml,48.955,48.955,29.329,29.329,19.626,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.948,0.724,9.203,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,19.626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.38,0.0,12.283,9.182,0.606,0.0,0.0,0.0,0.0,1745.5,3048.1,3048.1,24.024,17.806,0.0,3.992,5.382,0.0,0.0,0.757,8.731,-11.127,0.0,0.0,9.978,0.0,-0.357,2.07,0.0,0.794,0.0,6.058,-6.857,-1.453,0.0,0.285,-0.63,0.0,0.0,0.036,0.021,9.567,0.0,0.0,-3.392,0.0,-0.351,-0.403,-2.214,-0.147,0.0,2.251,6.333,1.194,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-complex.xml,77.416,77.416,37.17,37.17,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,5.194,1.017,9.019,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.691,0.0,17.738,9.075,0.617,0.0,0.0,0.0,3.0,2139.6,3654.3,3654.3,33.388,22.034,0.0,3.434,3.658,0.521,19.566,0.65,10.136,-12.837,0.0,0.0,0.0,8.756,-0.109,6.085,0.0,0.739,0.0,8.279,-9.111,-2.555,0.0,0.034,-0.372,-0.046,3.7,-0.007,-1.014,11.574,0.0,0.0,0.0,-4.532,-0.101,-1.237,-3.289,-0.139,0.0,3.73,7.67,1.955,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,55.459,55.459,36.411,36.411,19.048,0.0,0.0,0.0,0.0,0.0,0.0,0.314,0.0,0.0,4.865,0.942,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,17.836,0.0,16.438,9.075,0.611,0.0,0.0,0.0,0.0,2120.4,3580.4,3580.4,22.288,20.673,0.0,3.636,3.705,0.522,8.235,0.644,10.266,-12.652,0.0,0.0,0.0,4.795,-0.064,4.843,0.0,0.735,0.0,4.211,-8.886,-2.496,0.0,-0.111,-0.508,-0.058,2.158,-0.038,-1.547,11.761,0.0,0.0,0.0,-3.714,-0.059,-1.194,-3.315,-0.17,0.0,3.498,7.889,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,57.015,57.015,36.081,36.081,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.573,0.871,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,15.18,9.075,0.613,0.0,0.0,0.0,0.0,2123.3,3481.5,3481.5,22.76,19.767,0.0,3.584,3.664,0.516,7.833,0.635,10.15,-12.669,0.0,0.0,0.0,6.873,-0.061,4.815,0.0,0.731,0.0,4.578,-8.892,-2.496,0.0,-0.079,-0.484,-0.055,2.494,-0.032,-1.471,11.744,0.0,0.0,0.0,-5.347,-0.057,-1.182,-3.184,-0.168,0.0,3.283,7.885,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,56.932,56.932,35.418,35.418,21.515,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.03,0.74,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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.0,0.0,20.147,0.0,12.834,9.075,0.614,0.0,0.0,0.0,0.0,2124.2,3441.8,3441.8,23.225,18.744,0.0,3.584,3.669,0.516,6.117,0.636,10.166,-12.69,0.0,0.0,0.0,8.986,-0.065,4.827,0.0,0.734,0.0,4.708,-8.905,-2.5,0.0,-0.002,-0.423,-0.046,1.073,-0.017,-1.296,11.724,0.0,0.0,0.0,-6.519,-0.06,-1.143,-2.923,-0.162,0.0,2.934,7.872,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,46.866,46.866,28.865,28.865,18.001,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.581,0.647,9.21,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,18.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,16.845,0.0,11.07,9.182,0.614,0.0,0.0,0.0,0.0,1720.5,2382.0,2382.0,15.899,11.724,0.0,3.711,3.607,0.507,5.113,0.622,9.795,-12.66,0.0,0.0,0.0,10.002,-0.052,3.495,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.025,-0.473,-0.053,1.786,-0.029,-1.225,11.693,0.0,0.0,0.0,-3.856,-0.048,-0.842,-2.99,-0.164,0.0,0.0,6.308,1.18,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 +base-foundation-multiple.xml,42.371,42.371,29.675,29.675,12.696,0.0,0.0,0.0,0.0,0.0,0.0,0.209,0.0,0.0,4.336,0.818,9.182,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,12.696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.886,0.0,13.988,9.126,0.693,0.0,0.0,0.0,0.0,1709.3,3015.8,3015.8,15.204,15.253,0.0,3.982,3.868,0.0,0.0,0.78,10.584,-11.178,0.0,0.0,5.315,0.0,-0.386,2.585,0.0,0.0,0.0,1.988,-4.612,-1.419,0.0,-0.151,-0.726,0.0,0.0,-0.016,-0.483,12.79,0.0,0.0,-0.712,0.0,-0.381,-0.573,-2.645,0.0,0.0,1.694,4.254,1.228,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23121.0,4832.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14275.0,221.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-slab.xml,39.582,39.582,29.249,29.249,10.333,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.0,0.0,4.003,0.743,9.201,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,10.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.67,0.0,12.686,9.182,0.605,0.0,0.0,0.0,0.0,1716.3,2523.4,2523.4,12.694,12.985,0.0,3.934,3.804,0.0,0.0,0.691,10.073,-12.046,0.0,0.0,0.0,8.0,-0.153,2.012,0.0,0.776,0.0,0.278,-6.774,-1.446,0.0,-0.09,-0.602,0.0,0.0,-0.029,-0.812,12.21,0.0,0.0,0.0,-1.717,-0.151,-0.471,-2.884,-0.174,0.0,0.085,6.415,1.201,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,28667.0,1684.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-above-grade.xml,43.546,43.546,29.811,29.811,13.735,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.418,0.836,9.2,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,13.735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.859,0.0,14.351,9.126,0.713,0.0,0.0,0.0,0.0,1713.3,2873.7,2873.7,16.464,16.227,0.0,3.987,3.868,0.0,0.0,0.779,10.63,-11.228,0.0,0.0,5.935,0.0,-0.399,2.588,0.0,0.0,0.0,2.404,-4.628,-1.424,0.0,-0.127,-0.706,0.0,0.0,-0.012,-0.481,12.741,0.0,0.0,-0.614,0.0,-0.394,-0.561,-2.632,0.0,0.0,1.97,4.237,1.223,1354.8,997.6,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23082.0,4827.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14270.0,225.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-assembly-r.xml,40.853,40.853,29.219,29.219,11.634,0.0,0.0,0.0,0.0,0.0,0.0,0.192,0.0,0.0,3.968,0.731,9.197,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,11.634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.892,0.0,12.421,9.126,0.71,0.0,0.0,0.0,0.0,1716.9,2631.9,2631.9,14.652,13.981,0.0,3.976,3.837,0.0,0.0,0.769,10.587,-11.043,0.0,0.0,4.441,0.0,-0.41,2.586,0.0,0.0,0.0,1.776,-4.584,-1.409,0.0,-0.127,-0.681,0.0,0.0,0.012,-0.458,12.925,0.0,0.0,-2.107,0.0,-0.406,-0.578,-2.548,0.0,0.0,1.166,4.282,1.238,1354.8,997.6,11171.6,2652.8,0.0,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,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-wall-insulation.xml,48.503,48.503,28.884,28.884,19.619,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.644,0.654,9.131,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,19.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.362,0.0,11.127,9.126,0.639,0.0,0.0,0.0,0.0,1728.2,2484.7,2484.7,16.593,12.566,0.0,3.735,3.633,0.0,0.0,0.636,9.314,-12.475,0.0,0.0,14.539,0.0,-0.046,2.466,0.0,0.0,0.0,2.55,-4.773,-1.48,0.0,0.05,-0.453,0.0,0.0,-0.018,-0.471,11.493,0.0,0.0,-2.86,0.0,-0.045,-0.525,-2.441,0.0,0.0,1.344,4.092,1.167,1354.8,997.6,11171.6,2652.8,0.0,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,15218.0,127.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement.xml,42.445,42.445,29.706,29.706,12.739,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.353,0.822,9.19,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,12.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.926,0.0,14.067,9.126,0.703,0.0,0.0,0.0,0.0,1709.8,3128.6,3128.6,15.45,15.452,0.0,3.974,3.834,0.0,0.0,0.76,10.528,-11.159,0.0,0.0,5.366,0.0,-0.39,2.583,0.0,0.0,0.0,2.089,-4.606,-1.417,0.0,-0.13,-0.683,0.0,0.0,0.003,-0.513,12.81,0.0,0.0,-0.766,0.0,-0.385,-0.574,-2.667,0.0,0.0,1.771,4.26,1.23,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23128.0,4832.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14277.0,221.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unvented-crawlspace.xml,40.31,40.31,29.809,29.809,10.501,0.0,0.0,0.0,0.0,0.0,0.0,0.173,0.0,0.0,4.376,0.83,9.298,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,10.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,0.0,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.832,0.0,14.178,9.182,0.708,0.0,0.0,0.0,0.0,1705.8,3002.3,3002.3,14.329,14.748,0.0,3.959,3.815,0.0,0.0,0.781,10.65,-10.714,0.0,0.0,4.565,0.0,-0.459,2.05,0.0,0.775,0.0,1.604,-6.2,-1.376,0.0,-0.242,-0.804,0.0,0.0,-0.001,-0.693,13.255,0.0,0.0,-2.1,0.0,-0.454,-0.49,-2.745,-0.198,0.0,1.315,6.384,1.271,1354.8,997.6,11171.5,2752.7,0.0,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace-above-grade.xml,42.302,42.302,29.914,29.914,12.388,0.0,0.0,0.0,0.0,0.0,0.0,0.204,0.0,0.0,4.385,0.83,9.364,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,12.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,11.599,0.0,14.129,9.182,0.777,0.0,0.0,0.0,0.0,1721.9,2805.0,2805.0,15.473,15.546,0.0,3.952,3.793,0.0,0.0,0.758,10.49,-10.966,0.0,0.0,6.708,0.0,-0.446,1.847,0.0,0.78,0.0,1.999,-6.302,-1.401,0.0,-0.145,-0.695,0.0,0.0,0.016,-0.509,13.003,0.0,0.0,-2.522,0.0,-0.441,-0.399,-2.671,-0.183,0.0,1.477,6.282,1.246,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,24393.0,7387.0,7508.0,0.0,575.0,2198.0,0.0,2255.0,0.0,2171.0,2299.0,15739.0,2026.0,7037.0,0.0,207.0,232.0,0.0,598.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace.xml,42.211,42.211,29.751,29.751,12.459,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,4.246,0.797,9.372,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,12.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,11.666,0.0,13.527,9.182,0.786,0.0,0.0,0.0,0.0,1723.9,3108.5,3108.5,15.482,15.239,0.0,3.962,3.816,0.0,0.0,0.766,10.546,-11.029,0.0,0.0,6.732,0.0,-0.434,1.848,0.0,0.782,0.0,2.013,-6.322,-1.406,0.0,-0.128,-0.69,0.0,0.0,0.01,-0.475,12.939,0.0,0.0,-3.04,0.0,-0.429,-0.394,-2.616,-0.18,0.0,1.349,6.262,1.241,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,23883.0,6887.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-walkout-basement.xml,64.13,64.13,36.25,36.25,27.88,0.0,0.0,0.0,0.0,0.0,0.0,0.46,0.0,0.0,4.617,0.879,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.11,0.0,15.293,9.075,0.615,0.0,0.0,0.0,0.0,2133.5,3636.6,3636.6,26.753,20.8,0.0,3.536,3.698,0.521,7.384,0.648,10.878,-12.928,0.0,0.0,0.0,10.191,-0.062,6.628,0.0,0.729,0.0,5.961,-8.927,-2.504,0.0,-0.108,-0.524,-0.061,1.459,-0.034,-1.566,12.043,0.0,0.0,0.0,-3.716,-0.057,-1.537,-3.401,-0.161,0.0,3.295,7.852,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19161.0,5335.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.745,34.745,34.745,34.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.399,1.009,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.916,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,3230.1,3230.1,0.0,16.016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.022,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,1.982,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.603,45.603,45.603,45.603,0.0,0.0,0.0,0.0,0.0,0.0,9.465,0.999,0.296,0.017,3.494,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.459,0.313,13.301,9.075,0.614,0.0,0.0,0.0,0.0,7012.9,3262.5,7012.9,24.203,16.281,0.0,3.531,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.456,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,41.821,41.821,41.821,41.821,0.0,0.0,0.0,0.0,0.0,0.0,9.485,1.729,0.308,0.031,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.092,0.339,0.0,9.075,0.588,0.0,0.0,0.0,0.0,7122.8,1624.2,7122.8,25.253,0.0,0.0,3.503,3.648,0.513,7.514,0.632,10.115,-12.683,0.0,0.0,0.0,8.151,-0.069,4.81,0.0,0.73,0.0,6.27,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.568,45.568,45.568,45.568,0.0,0.0,0.0,0.0,0.0,0.0,9.001,0.903,0.894,0.051,3.414,1.014,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.707,0.945,12.973,9.075,0.613,0.0,0.0,144.0,0.0,10367.9,3246.2,10367.9,37.455,16.144,0.0,3.614,3.675,0.516,7.775,0.624,10.039,-12.798,0.0,0.0,0.0,9.086,0.059,4.748,0.0,0.762,0.0,4.604,-8.886,-2.51,0.0,0.007,-0.452,-0.051,2.749,-0.035,-1.506,11.615,0.0,0.0,0.0,-6.397,0.05,-1.191,-3.331,-0.163,0.0,1.991,7.891,2.0,1354.8,997.6,11171.5,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.661,45.661,45.661,45.661,0.0,0.0,0.0,0.0,0.0,0.0,9.538,0.999,0.296,0.017,3.479,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.459,0.313,13.301,9.075,0.614,0.0,0.0,0.0,0.0,7012.9,3255.3,7012.9,24.203,16.281,0.0,3.531,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.456,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,45.603,45.603,45.603,45.603,0.0,0.0,0.0,0.0,0.0,0.0,9.465,0.999,0.296,0.017,3.494,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.459,0.313,13.301,9.075,0.614,0.0,0.0,0.0,0.0,7012.9,3262.5,7012.9,24.203,16.281,0.0,3.531,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.456,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,41.463,41.463,41.463,41.463,0.0,0.0,0.0,0.0,0.0,0.0,7.334,0.584,0.283,0.012,2.332,0.626,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.469,0.295,13.553,9.075,0.614,0.0,0.0,0.0,0.0,6989.9,2803.7,6989.9,24.196,17.295,0.0,3.491,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.498,-8.906,-2.499,0.0,-0.017,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.286,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.616,53.616,38.701,38.701,14.915,0.0,0.0,0.0,0.0,0.0,5.079,0.352,0.0,0.056,2.441,0.48,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,27.699,11.125,16.156,9.075,0.614,0.0,0.0,1.0,10.0,3202.1,2882.4,3202.1,22.934,17.738,0.0,3.282,3.605,0.508,7.527,0.616,9.934,-12.591,0.0,0.0,0.0,8.249,-0.03,5.816,0.0,0.72,0.0,10.953,-8.787,-2.475,0.0,-0.186,-0.492,-0.056,2.721,-0.038,-1.537,11.822,0.0,0.0,0.0,-6.368,-0.026,-1.501,-3.081,-0.171,0.0,5.206,7.991,2.034,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.607,56.607,37.565,37.565,19.042,0.0,0.0,0.0,0.0,0.0,4.02,0.233,0.0,0.072,2.464,0.482,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.307,14.185,16.31,9.075,0.615,0.0,0.0,225.0,10.0,3034.2,2882.5,3034.2,23.177,17.738,0.0,3.297,3.6,0.506,7.421,0.614,9.851,-12.664,0.0,0.0,0.0,8.25,-0.008,5.77,0.0,0.715,0.0,10.51,-8.794,-2.468,0.0,-0.174,-0.487,-0.056,2.65,-0.037,-1.586,11.749,0.0,0.0,0.0,-6.307,-0.005,-1.521,-3.068,-0.175,0.0,5.101,7.984,2.042,1354.8,997.6,11171.5,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.723,53.723,38.803,38.803,14.92,0.0,0.0,0.0,0.0,0.0,5.151,0.357,0.0,0.056,2.464,0.483,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.971,11.129,16.346,9.075,0.614,0.0,0.0,1.0,10.0,3202.1,2882.4,3202.1,22.934,17.738,0.0,3.324,3.646,0.513,7.529,0.631,10.095,-12.703,0.0,0.0,0.0,8.332,-0.059,5.884,0.0,0.728,0.0,11.091,-8.914,-2.501,0.0,-0.142,-0.453,-0.051,2.716,-0.024,-1.382,11.71,0.0,0.0,0.0,-6.295,-0.055,-1.437,-3.069,-0.164,0.0,5.274,7.864,2.009,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.7,53.7,38.942,38.942,14.758,0.0,0.0,0.0,0.0,0.0,4.916,0.334,0.0,0.445,2.473,0.482,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,28.195,12.251,16.463,9.075,0.614,0.0,0.0,2.0,8.0,3212.2,2882.3,3212.2,26.385,17.729,0.0,3.269,3.648,0.513,7.535,0.631,10.099,-12.695,0.0,0.0,0.0,8.327,-0.059,4.804,0.0,0.729,0.0,12.407,-8.905,-2.499,0.0,-0.151,-0.462,-0.052,2.686,-0.026,-1.413,11.718,0.0,0.0,0.0,-6.343,-0.055,-1.173,-3.115,-0.166,0.0,5.289,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,39742.0,16102.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,50.041,50.041,50.041,50.041,0.0,0.0,0.0,0.0,0.0,0.0,9.692,0.717,5.724,0.327,3.182,0.106,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,6.051,14.672,9.075,0.614,0.0,0.0,0.0,0.0,8393.7,3435.0,8393.7,24.188,18.194,0.0,3.366,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.323,-0.065,4.807,0.0,0.729,0.0,9.802,-8.906,-2.499,0.0,-0.066,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.107,-0.166,0.0,3.46,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,42.376,42.376,42.376,42.376,0.0,0.0,0.0,0.0,0.0,0.0,8.726,0.512,0.13,0.006,2.595,0.115,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.13,0.136,14.712,9.075,0.614,0.0,0.0,0.0,0.0,6971.0,3559.8,6971.0,24.193,18.088,0.0,3.389,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.322,-0.065,4.807,0.0,0.729,0.0,9.254,-8.906,-2.499,0.0,-0.068,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.107,-0.166,0.0,3.499,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,40.908,40.908,40.908,40.908,0.0,0.0,0.0,0.0,0.0,0.0,7.802,0.252,0.322,0.015,2.105,0.12,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.727,0.337,14.405,9.075,0.614,0.0,0.0,0.0,0.0,7018.6,2768.7,7018.6,24.247,18.073,0.0,3.444,3.645,0.513,7.532,0.631,10.105,-12.683,0.0,0.0,0.0,8.319,-0.065,4.807,0.0,0.729,0.0,7.804,-8.906,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.106,-0.166,0.0,3.179,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,49.308,49.308,42.778,42.778,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,3.359,0.519,15.676,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.046,0.0,9.778,16.204,0.642,0.0,0.0,0.0,0.0,2608.0,3525.6,3525.6,17.003,15.983,0.0,2.9,2.833,0.397,5.505,0.423,7.596,-12.563,0.0,0.0,0.0,5.727,-0.058,3.539,0.0,0.582,0.0,1.453,-10.182,-2.473,0.0,-0.153,-0.607,-0.072,2.26,-0.067,-1.871,11.85,0.0,0.0,0.0,-7.696,-0.059,-1.295,-5.334,-0.193,0.0,2.007,9.375,2.036,2181.0,1715.2,21140.4,3685.7,0.0,31430.0,27891.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22993.0,6411.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 +base-hvac-autosize.xml,58.988,58.988,36.008,36.008,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.478,0.851,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.529,0.0,14.835,9.075,0.614,0.0,0.0,0.0,0.0,2124.0,3378.6,3378.6,23.95,19.118,0.0,3.532,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.53,-8.905,-2.499,0.0,-0.073,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.107,-0.166,0.0,3.593,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,32235.0,21309.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-coal-only.xml,49.421,49.421,30.505,30.505,0.0,0.0,0.0,0.0,0.0,18.916,0.0,0.236,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2045.6,1615.7,2045.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-elec-only.xml,48.249,48.249,48.249,48.249,0.0,0.0,0.0,0.0,0.0,0.0,17.858,0.122,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,6027.4,1615.7,6027.4,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,55.358,55.358,36.159,36.159,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,4.502,1.219,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,14.543,9.075,0.614,0.0,0.0,0.0,0.0,2083.0,3607.1,3607.1,16.438,19.269,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,-0.062,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,3.294,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,55.286,55.286,36.086,36.086,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,4.472,1.176,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,14.48,9.075,0.614,0.0,0.0,0.0,0.0,2083.0,3566.7,3566.7,16.438,19.072,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,-0.06,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,3.231,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-gas-only-pilot.xml,54.387,54.387,30.412,30.412,23.974,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2033.0,1615.7,2033.0,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-gas-only.xml,49.415,49.415,30.412,30.412,19.003,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2033.0,1615.7,2033.0,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-oil-only.xml,49.421,49.421,30.505,30.505,0.0,18.916,0.0,0.0,0.0,0.0,0.0,0.236,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2045.6,1615.7,2045.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-propane-only.xml,49.414,49.414,30.391,30.391,0.0,0.0,19.023,0.0,0.0,0.0,0.0,0.122,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2030.2,1615.7,2030.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-wood-only.xml,49.414,49.414,30.391,30.391,0.0,0.0,0.0,19.023,0.0,0.0,0.0,0.122,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2030.2,1615.7,2030.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,35.908,35.908,35.908,35.908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.386,1.185,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.13,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3562.2,3562.2,0.0,18.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.075,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.217,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,35.924,35.924,35.924,35.924,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.402,1.185,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.13,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3570.5,3570.5,0.0,18.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.075,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.217,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,34.23,34.23,34.23,34.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.173,0.72,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.517,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3098.5,3098.5,0.0,19.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.091,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.61,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,33.525,33.525,33.525,33.525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.875,0.313,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.345,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2847.0,2847.0,0.0,19.332,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.132,-0.471,-0.052,2.667,-0.032,-1.453,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.194,-3.023,-0.167,0.0,4.482,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.6,47.6,47.6,47.6,0.0,0.0,0.0,0.0,0.0,0.0,9.585,1.701,0.274,0.028,4.502,1.219,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.21,0.302,14.544,9.075,0.614,0.0,0.0,0.0,0.0,7348.2,3607.2,7348.2,25.254,19.27,0.0,3.502,3.645,0.513,7.531,0.631,10.104,-12.683,0.0,0.0,0.0,8.317,-0.065,4.807,0.0,0.729,0.0,6.22,-8.906,-2.499,0.0,-0.061,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.106,-0.166,0.0,3.294,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dse.xml,58.442,58.442,36.831,36.831,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.356,0.0,0.0,5.21,0.973,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2102.1,2621.3,2621.3,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.204,52.204,41.552,41.552,10.652,0.0,0.0,0.0,0.0,0.0,5.257,0.479,0.0,0.929,3.519,1.076,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.768,11.048,13.342,9.075,0.614,0.0,0.0,0.0,0.0,3613.4,3291.7,3613.4,24.193,16.402,0.0,3.472,3.645,0.513,7.532,0.631,10.105,-12.683,0.0,0.0,0.0,8.319,-0.065,4.808,0.0,0.729,0.0,6.812,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,54.961,54.961,40.555,40.555,14.406,0.0,0.0,0.0,0.0,0.0,3.945,0.335,0.0,1.389,3.519,1.076,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.075,13.342,9.075,0.614,0.0,0.0,0.0,0.0,3460.6,3291.7,3460.6,24.191,16.402,0.0,3.435,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,7.753,-8.906,-2.499,0.0,-0.009,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.071,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.286,52.286,37.48,37.48,14.806,0.0,0.0,0.0,0.0,0.0,2.981,0.185,0.0,1.042,2.342,0.638,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.021,15.108,13.578,9.075,0.614,0.0,0.0,0.0,0.0,2838.6,2815.4,2838.6,24.191,17.378,0.0,3.423,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.321,-0.065,4.808,0.0,0.729,0.0,8.106,-8.906,-2.499,0.0,-0.018,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.104,-0.166,0.0,2.311,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,52.256,52.256,37.802,37.802,14.455,0.0,0.0,0.0,0.0,0.0,2.935,0.235,0.0,1.755,2.378,0.206,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.455,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.705,15.487,14.829,9.075,0.614,0.0,0.0,0.0,0.0,2830.6,2607.5,2830.6,24.544,18.191,0.0,3.362,3.646,0.513,7.535,0.631,10.108,-12.683,0.0,0.0,0.0,8.325,-0.065,4.808,0.0,0.729,0.0,9.832,-8.906,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.347,-0.061,-1.17,-3.105,-0.166,0.0,3.603,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,46.995,46.995,35.586,35.586,11.409,0.0,0.0,0.0,0.0,0.0,2.48,0.056,0.0,0.5,2.166,0.092,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.409,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.116,11.338,12.152,9.075,0.614,0.0,0.0,0.0,0.0,2544.7,2192.8,2544.7,19.067,13.675,0.0,3.618,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.73,0.0,3.05,-8.906,-2.499,0.0,0.033,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.101,-0.166,0.0,0.867,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-fractions.xml,92.462,92.462,46.689,46.689,45.773,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,8.1,1.711,8.86,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,0.0,45.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,42.722,0.0,29.448,8.989,0.612,0.0,0.0,5.0,77.0,2576.6,5032.8,5032.8,48.976,34.989,0.0,3.225,7.897,1.073,7.933,0.668,20.527,-25.252,0.0,0.0,0.0,9.073,-0.115,11.172,0.0,0.748,0.0,19.695,-10.961,-3.544,0.0,-0.381,-1.035,-0.1,2.663,-0.023,-2.118,23.314,0.0,0.0,0.0,-6.455,-0.103,-2.483,-6.345,-0.161,0.0,10.861,9.395,2.829,1354.8,997.6,11171.6,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,71257.0,33166.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-multipliers.xml,57.428,57.428,35.802,35.802,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.318,0.835,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.257,0.0,14.12,9.075,0.614,0.0,0.0,0.0,0.0,2116.7,3362.7,3362.7,22.356,18.576,0.0,3.579,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.219,-8.905,-2.499,0.0,-0.04,-0.464,-0.052,2.684,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.105,-0.166,0.0,2.856,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18409.0,4950.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,55.777,55.777,35.554,35.554,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.135,0.794,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.93,0.0,13.273,9.075,0.614,0.0,0.0,0.0,0.0,2110.2,3067.9,3067.9,20.269,15.91,0.0,3.625,3.644,0.513,7.528,0.631,10.097,-12.683,0.0,0.0,0.0,8.31,-0.062,4.806,0.0,0.729,0.0,2.851,-8.903,-2.499,0.0,-0.008,-0.465,-0.052,2.684,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.171,-3.105,-0.166,0.0,1.988,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,28613.0,4973.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15788.0,2330.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,35.837,35.837,35.837,35.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.357,1.144,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.075,0.661,0.0,0.0,0.0,0.0,2070.7,3522.8,3522.8,0.0,18.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.072,-0.471,-0.052,2.665,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.918,-0.064,-1.194,-3.021,-0.167,0.0,3.156,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed.xml,35.853,35.853,35.853,35.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.373,1.144,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.075,0.661,0.0,0.0,0.0,0.0,2070.7,3530.9,3530.9,0.0,18.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.072,-0.471,-0.052,2.665,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.918,-0.064,-1.194,-3.021,-0.167,0.0,3.156,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,34.203,34.203,34.203,34.203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.161,0.706,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.48,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3078.8,3078.8,0.0,19.368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.574,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,33.715,33.715,33.715,33.715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.26,0.118,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.439,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3515.6,3515.6,0.0,17.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.09,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.023,-0.167,0.0,3.571,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,33.347,33.347,33.347,33.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.273,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.276,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2902.2,2902.2,0.0,18.997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.471,-0.052,2.667,-0.032,-1.453,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.194,-3.026,-0.167,0.0,4.423,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.6,47.6,47.6,47.6,0.0,0.0,0.0,0.0,0.0,0.0,9.573,1.746,0.309,0.031,4.473,1.176,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.316,0.34,14.481,9.075,0.614,0.0,0.0,0.0,0.0,7344.8,3566.8,7344.8,25.253,19.073,0.0,3.498,3.645,0.513,7.531,0.631,10.104,-12.683,0.0,0.0,0.0,8.317,-0.065,4.807,0.0,0.729,0.0,6.329,-8.906,-2.499,0.0,-0.058,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,3.231,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dse.xml,58.397,58.397,36.786,36.786,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.356,0.0,0.0,5.196,0.942,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2102.1,2614.4,2614.4,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.161,52.161,41.508,41.508,10.652,0.0,0.0,0.0,0.0,0.0,5.262,0.493,0.0,0.929,3.494,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.809,11.048,13.301,9.075,0.614,0.0,0.0,0.0,0.0,3616.3,3262.5,3616.3,24.193,16.281,0.0,3.471,3.645,0.513,7.532,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.808,0.0,0.729,0.0,6.854,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,54.911,54.911,40.505,40.505,14.406,0.0,0.0,0.0,0.0,0.0,3.947,0.344,0.0,1.389,3.494,1.039,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.704,15.074,13.301,9.075,0.614,0.0,0.0,0.0,0.0,3463.5,3262.5,3463.5,24.191,16.281,0.0,3.434,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,7.78,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.268,52.268,37.461,37.461,14.806,0.0,0.0,0.0,0.0,0.0,2.982,0.188,0.0,1.042,2.332,0.626,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.038,15.108,13.553,9.075,0.614,0.0,0.0,0.0,0.0,2838.9,2803.7,2838.9,24.19,17.295,0.0,3.422,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.321,-0.065,4.808,0.0,0.729,0.0,8.124,-8.906,-2.499,0.0,-0.017,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.104,-0.166,0.0,2.286,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,51.949,51.949,37.013,37.013,14.936,0.0,0.0,0.0,0.0,0.0,3.325,0.037,0.0,1.134,2.105,0.12,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.915,15.323,14.405,9.075,0.614,0.0,0.0,0.0,0.0,2844.2,2768.7,2844.2,24.242,18.073,0.0,3.392,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.322,-0.065,4.808,0.0,0.729,0.0,9.032,-8.906,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.106,-0.166,0.0,3.179,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.367,47.367,35.947,35.947,11.42,0.0,0.0,0.0,0.0,0.0,2.908,0.012,0.0,0.544,2.144,0.047,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.303,11.393,12.324,9.075,0.614,0.0,0.0,0.0,0.0,2645.0,2405.9,2645.0,19.077,13.974,0.0,3.611,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,3.246,-8.906,-2.499,0.0,0.028,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.102,-0.166,0.0,1.045,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-fractions.xml,92.369,92.369,46.596,46.596,45.773,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,8.065,1.653,8.86,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,0.0,45.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,42.723,0.0,29.357,8.989,0.612,0.0,0.0,5.0,47.0,2576.6,5108.1,5108.1,48.976,36.121,0.0,3.225,7.897,1.073,7.933,0.668,20.527,-25.252,0.0,0.0,0.0,9.073,-0.115,11.172,0.0,0.748,0.0,19.695,-10.961,-3.544,0.0,-0.375,-1.033,-0.1,2.666,-0.022,-2.112,23.314,0.0,0.0,0.0,-6.451,-0.103,-2.481,-6.339,-0.161,0.0,10.744,9.395,2.829,1354.8,997.6,11171.6,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,71257.0,33166.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,57.373,57.373,35.746,35.746,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.292,0.805,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.257,0.0,14.061,9.075,0.614,0.0,0.0,0.0,0.0,2116.7,3331.6,3331.6,22.356,18.391,0.0,3.579,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.219,-8.905,-2.499,0.0,-0.039,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.105,-0.166,0.0,2.798,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18409.0,4950.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,55.731,55.731,35.508,35.508,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.115,0.767,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.93,0.0,13.239,9.075,0.614,0.0,0.0,0.0,0.0,2110.2,3048.2,3048.2,20.269,15.813,0.0,3.625,3.644,0.513,7.528,0.631,10.097,-12.683,0.0,0.0,0.0,8.31,-0.062,4.806,0.0,0.729,0.0,2.851,-8.903,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.171,-3.105,-0.166,0.0,1.955,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,28613.0,4973.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15788.0,2330.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ducts-defaults.xml,54.665,54.665,40.513,40.513,14.152,0.0,0.0,0.0,0.0,0.0,4.354,0.368,0.0,0.0,5.499,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.731,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3055.2,3318.2,3318.2,18.192,11.921,0.0,3.744,3.643,0.513,7.524,0.631,10.098,-12.683,0.0,0.0,0.0,8.304,-0.065,4.807,0.0,0.73,0.0,1.557,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.096,-0.166,0.0,-0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,41910.0,24000.0,0.0,6.8,91.76,28213.0,4573.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,58.193,58.193,35.93,35.93,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.413,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.848,0.0,14.453,9.075,0.614,0.0,0.0,0.0,0.0,2119.3,3421.2,3421.2,23.027,19.117,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.829,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.204,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18783.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,57.623,57.623,35.817,35.817,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.328,0.837,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,14.263,9.075,0.614,0.0,0.0,0.0,0.0,2116.8,3413.2,3413.2,22.444,19.037,0.0,3.567,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.807,0.0,0.73,0.0,4.423,-8.906,-2.499,0.0,-0.046,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.105,-0.166,0.0,3.061,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34498.0,10858.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20350.0,6892.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-percent.xml,59.415,59.415,36.134,36.134,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.565,0.893,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.808,0.0,15.122,9.075,0.614,0.0,0.0,0.0,0.0,2123.4,3597.5,3597.5,24.251,20.652,0.0,3.52,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.315,-0.064,4.807,0.0,0.729,0.0,5.821,-8.905,-2.499,0.0,-0.086,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.108,-0.166,0.0,3.896,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32661.0,9021.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20673.0,7215.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-effective-rvalue.xml,58.136,58.136,35.873,35.873,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.386,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.848,0.0,14.392,9.075,0.614,0.0,0.0,0.0,0.0,2119.3,3389.2,3389.2,23.027,18.922,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.829,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.143,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18783.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,57.569,57.569,35.762,35.762,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.303,0.807,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,14.205,9.075,0.614,0.0,0.0,0.0,0.0,2116.8,3379.2,3379.2,22.444,18.84,0.0,3.567,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.807,0.0,0.73,0.0,4.423,-8.906,-2.499,0.0,-0.044,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.105,-0.166,0.0,3.002,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34498.0,10858.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20350.0,6892.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-percent.xml,59.353,59.353,36.072,36.072,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.535,0.861,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.808,0.0,15.05,9.075,0.614,0.0,0.0,0.0,0.0,2123.4,3563.0,3563.0,24.251,20.487,0.0,3.52,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.315,-0.064,4.807,0.0,0.729,0.0,5.821,-8.905,-2.499,0.0,-0.083,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.108,-0.166,0.0,3.824,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32661.0,9021.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20673.0,7215.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-elec-resistance-only.xml,46.293,46.293,46.293,46.293,0.0,0.0,0.0,0.0,0.0,0.0,16.025,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,5913.9,1615.7,5913.9,16.439,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-evap-cooler-furnace-gas.xml,54.595,54.595,31.729,31.729,22.866,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,0.0,0.0,0.842,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.631,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2123.2,1811.2,2123.2,24.046,11.93,0.0,3.529,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.628,-8.905,-2.499,0.0,0.037,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.096,-0.166,0.0,-0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-evap-cooler-only-ducted.xml,31.243,31.243,31.243,31.243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.906,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.91,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,1920.1,2020.7,0.0,15.977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.015,-0.167,0.0,0.941,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -214,10 +217,10 @@ base-hvac-evap-cooler-only.xml,31.157,31.157,31.157,31.157,0.0,0.0,0.0,0.0,0.0,0 base-hvac-fireplace-wood-only.xml,51.606,51.606,30.269,30.269,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2019.6,1637.4,2019.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-floor-furnace-propane-only.xml,56.578,56.578,30.269,30.269,0.0,0.0,26.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2019.6,1637.4,2019.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-coal-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,0.0,0.0,22.632,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-central-ac-1-speed.xml,56.416,56.416,56.416,56.416,0.0,0.0,0.0,0.0,0.0,0.0,20.485,0.367,0.0,0.0,4.414,0.858,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.455,9.075,0.614,0.0,0.0,0.0,0.0,7897.8,3421.7,7897.8,23.032,19.122,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.057,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.206,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,56.359,56.359,56.359,56.359,0.0,0.0,0.0,0.0,0.0,0.0,20.485,0.367,0.0,0.0,4.387,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,7897.8,3389.8,7897.8,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-elec-only.xml,52.103,52.103,52.103,52.103,0.0,0.0,0.0,0.0,0.0,0.0,21.247,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,8283.1,1622.9,8283.1,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-2-speed.xml,56.846,56.846,34.58,34.58,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.221,0.699,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.861,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3127.3,3127.3,23.032,19.623,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.074,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.106,-0.166,0.0,3.616,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,56.178,56.178,33.912,33.912,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,2.928,0.324,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,15.756,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,2865.9,2865.9,23.032,19.517,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.119,-0.464,-0.052,2.686,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.348,-0.06,-1.171,-3.109,-0.166,0.0,4.559,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,56.818,56.818,34.552,34.552,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.209,0.684,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.822,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3107.2,3107.2,23.032,19.604,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.106,-0.166,0.0,3.578,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,55.999,55.999,33.733,33.733,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,2.79,0.284,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,15.696,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,2927.4,2927.4,23.032,19.236,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.117,-0.464,-0.052,2.686,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.348,-0.06,-1.171,-3.111,-0.166,0.0,4.508,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-detailed-setpoints.xml,37.962,37.962,30.502,30.502,7.459,0.0,0.0,0.0,0.0,0.0,0.0,0.194,0.0,0.0,0.0,0.0,9.032,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,7.05,0.0,0.0,9.075,0.631,0.0,0.0,0.0,0.0,2085.2,1635.6,2085.2,18.154,0.0,0.0,2.849,2.792,0.391,5.359,0.413,7.471,-12.563,0.0,0.0,0.0,5.445,-0.06,3.485,0.0,0.573,0.0,1.812,-8.806,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-pilot.xml,58.398,58.398,30.857,30.857,27.541,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only.xml,53.489,53.489,30.857,30.857,22.632,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -225,33 +228,37 @@ base-hvac-furnace-gas-room-ac.xml,59.252,59.252,36.386,36.386,22.866,0.0,0.0,0.0 base-hvac-furnace-oil-only.xml,53.489,53.489,30.857,30.857,0.0,22.632,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-x3-dse.xml,58.439,58.439,36.861,36.861,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.21,0.973,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,16.339,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2105.4,2621.3,2621.3,16.604,11.921,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,58.394,58.394,36.816,36.816,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.196,0.942,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,16.339,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2105.4,2614.4,2614.4,16.604,11.921,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.148,34.148,34.148,34.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.993,0.818,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.009,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2821.6,2821.6,0.0,15.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.027,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.077,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-detailed.xml,39.131,39.131,39.131,39.131,0.0,0.0,0.0,0.0,0.0,0.0,4.746,0.439,0.0,0.0,2.765,0.888,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.27,0.0,13.269,9.075,0.614,0.0,0.0,0.0,0.0,3181.7,2593.1,3181.7,20.974,15.922,0.0,3.612,3.644,0.513,7.528,0.631,10.099,-12.683,0.0,0.0,0.0,8.311,-0.064,4.807,0.0,0.729,0.0,3.206,-8.905,-2.499,0.0,-0.006,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.104,-0.166,0.0,1.997,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-heating-only.xml,35.981,35.981,35.981,35.981,0.0,0.0,0.0,0.0,0.0,0.0,4.986,0.726,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.782,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3353.6,1621.9,3353.6,22.231,0.0,0.0,3.592,3.648,0.513,7.511,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.897,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump.xml,39.632,39.632,39.632,39.632,0.0,0.0,0.0,0.0,0.0,0.0,4.91,0.466,0.0,0.0,3.05,0.914,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.372,0.0,13.301,9.075,0.614,0.0,0.0,0.0,0.0,3268.8,2720.4,3268.8,21.358,16.091,0.0,3.608,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.31,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.029,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.691,48.691,48.691,48.691,0.0,0.0,0.0,0.0,0.0,0.0,12.144,0.674,0.562,0.018,4.281,0.72,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.795,0.579,13.89,9.075,0.614,0.0,0.0,0.0,0.0,7104.3,3548.4,7104.3,24.717,17.543,0.0,3.48,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.83,-8.906,-2.499,0.0,-0.033,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.635,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.059,44.059,44.059,44.059,0.0,0.0,0.0,0.0,0.0,0.0,9.174,0.559,0.519,0.016,2.913,0.586,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.057,0.535,14.223,9.075,0.614,0.0,0.0,0.0,0.0,7083.4,3143.0,7083.4,24.712,18.875,0.0,3.43,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,8.132,-8.906,-2.499,0.0,-0.046,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.972,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.507,43.507,43.507,43.507,0.0,0.0,0.0,0.0,0.0,0.0,9.046,0.71,0.318,0.016,2.902,0.221,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.144,0.335,15.433,9.075,0.614,0.0,0.0,0.0,0.0,7178.0,3013.9,7178.0,25.033,18.908,0.0,3.35,3.647,0.513,7.536,0.632,10.108,-12.689,0.0,0.0,0.0,8.327,-0.064,4.808,0.0,0.729,0.0,10.28,-8.908,-2.5,0.0,-0.101,-0.463,-0.052,2.687,-0.026,-1.405,11.724,0.0,0.0,0.0,-6.343,-0.06,-1.17,-3.108,-0.166,0.0,4.23,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.169,60.169,36.729,36.729,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,5.362,0.793,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.371,9.075,0.614,0.0,0.0,0.0,5.0,2098.9,3476.1,3476.1,24.074,18.323,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.099,-0.464,-0.052,2.686,-0.027,-1.41,11.73,0.0,0.0,0.0,-6.35,-0.059,-1.172,-3.109,-0.166,0.0,4.146,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.612,58.612,35.173,35.173,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.934,0.665,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.787,9.075,0.614,0.0,0.0,0.0,3.0,2098.9,3154.3,3154.3,24.074,18.785,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.117,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.109,-0.166,0.0,4.568,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,57.946,57.946,34.507,34.507,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.516,0.417,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,16.445,9.075,0.614,0.0,0.0,0.0,8.0,2098.9,2840.6,2840.6,24.074,18.031,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.154,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.114,-0.166,0.0,5.274,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.712,48.712,48.712,48.712,0.0,0.0,0.0,0.0,0.0,0.0,12.128,0.691,0.618,0.019,4.265,0.698,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.638,13.847,9.075,0.614,0.0,0.0,0.0,0.0,7101.3,3521.5,7101.3,24.716,17.398,0.0,3.475,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.943,-8.906,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.592,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.071,44.071,44.071,44.071,0.0,0.0,0.0,0.0,0.0,0.0,9.157,0.568,0.555,0.017,2.906,0.576,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.109,0.573,14.194,9.075,0.614,0.0,0.0,0.0,0.0,7082.4,3130.1,7082.4,24.712,18.774,0.0,3.428,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,8.186,-8.906,-2.499,0.0,-0.045,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.944,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,45.743,45.743,45.743,45.743,0.0,0.0,0.0,0.0,0.0,0.0,10.976,0.524,0.312,0.01,3.456,0.173,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.437,0.321,15.438,9.075,0.614,0.0,0.0,0.0,0.0,7073.3,4237.7,7073.3,24.71,18.727,0.0,3.34,3.648,0.513,7.536,0.631,10.103,-12.695,0.0,0.0,0.0,8.327,-0.061,4.807,0.0,0.729,0.0,10.604,-8.908,-2.5,0.0,-0.101,-0.462,-0.052,2.688,-0.026,-1.408,11.718,0.0,0.0,0.0,-6.341,-0.057,-1.171,-3.111,-0.165,0.0,4.252,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.973,43.973,43.973,43.973,0.0,0.0,0.0,0.0,0.0,0.0,9.904,0.341,0.609,0.021,2.649,0.156,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.63,15.189,9.075,0.614,0.0,0.0,0.0,0.0,7094.4,3157.2,7094.4,24.758,18.676,0.0,3.383,3.647,0.513,7.535,0.631,10.106,-12.69,0.0,0.0,0.0,8.325,-0.064,4.808,0.0,0.73,0.0,9.444,-8.908,-2.5,0.0,-0.09,-0.463,-0.052,2.687,-0.026,-1.406,11.724,0.0,0.0,0.0,-6.344,-0.06,-1.17,-3.109,-0.166,0.0,3.988,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.123,60.123,36.683,36.683,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,5.342,0.767,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.306,9.075,0.614,0.0,0.0,0.0,3.0,2098.9,3532.9,3532.9,24.074,18.622,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.096,-0.464,-0.052,2.686,-0.027,-1.41,11.73,0.0,0.0,0.0,-6.35,-0.059,-1.172,-3.109,-0.166,0.0,4.08,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.58,58.58,35.14,35.14,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.916,0.65,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.757,9.075,0.614,0.0,0.0,0.0,3.0,2098.9,3183.9,3183.9,24.074,18.898,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.116,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.109,-0.166,0.0,4.538,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,57.797,57.797,34.358,34.358,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.404,0.381,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,16.486,9.075,0.614,0.0,0.0,0.0,0.0,2098.9,3154.3,3154.3,24.074,19.166,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.157,-0.464,-0.052,2.687,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.348,-0.059,-1.172,-3.116,-0.166,0.0,5.323,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,54.843,54.843,30.726,30.726,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.643,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2091.6,1623.6,2091.6,25.358,0.0,0.0,3.488,3.648,0.513,7.514,0.632,10.112,-12.683,0.0,0.0,0.0,8.148,-0.067,4.809,0.0,0.73,0.0,6.844,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-ground-to-air-heat-pump.xml,41.672,41.672,41.672,41.672,0.0,0.0,0.0,0.0,0.0,0.0,6.352,0.476,0.0,0.0,3.682,0.87,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.352,0.0,13.86,9.075,0.614,0.0,0.0,0.0,0.0,3507.6,2937.9,3507.6,22.424,17.272,0.0,3.575,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.312,-0.064,4.807,0.0,0.729,0.0,4.317,-8.905,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.106,-0.166,0.0,2.602,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.817,33.817,33.817,33.817,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.291,0.189,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.529,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2556.8,2556.8,0.0,14.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.007,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,1.603,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.47,40.47,40.47,40.47,0.0,0.0,0.0,0.0,0.0,0.0,7.034,0.308,0.034,0.001,2.624,0.175,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.188,0.035,12.398,9.075,0.614,0.0,0.0,0.0,0.0,4372.0,2328.8,4372.0,19.221,14.112,0.0,3.615,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.313,-0.065,4.807,0.0,0.73,0.0,3.125,-8.906,-2.499,0.0,0.026,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.102,-0.166,0.0,1.12,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,33.205,33.205,33.205,33.205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.775,0.093,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.225,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2191.5,2191.5,0.0,13.965,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.017,-0.167,0.0,1.288,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,33.144,33.144,33.144,33.144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.78,0.027,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2124.9,2124.9,0.0,11.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.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.533,32.533,32.533,32.533,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.107,0.089,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.793,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2186.6,2186.6,0.0,13.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.017,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.016,-0.167,0.0,0.845,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,36.157,36.157,36.157,36.157,0.0,0.0,0.0,0.0,0.0,0.0,5.601,0.278,0.009,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.759,0.01,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3843.7,1621.8,3843.7,19.325,0.0,0.0,3.628,3.647,0.513,7.511,0.632,10.112,-12.683,0.0,0.0,0.0,8.146,-0.069,4.81,0.0,0.73,0.0,2.849,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,38.378,38.378,38.378,38.378,0.0,0.0,0.0,0.0,0.0,0.0,5.648,0.17,0.009,0.0,2.166,0.092,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.883,0.01,12.152,9.075,0.614,0.0,0.0,0.0,0.0,3785.0,2192.8,3785.0,19.069,13.675,0.0,3.626,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,2.81,-8.906,-2.499,0.0,0.033,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.101,-0.166,0.0,0.867,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.097,38.097,38.097,38.097,0.0,0.0,0.0,0.0,0.0,0.0,5.212,0.115,0.362,0.0,2.087,0.029,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.362,11.294,9.075,0.614,0.0,0.0,0.0,0.0,4409.2,2164.8,4409.2,16.439,11.922,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,44.789,44.789,35.788,35.788,9.001,0.0,0.0,0.0,0.0,0.0,3.069,0.052,0.0,0.271,2.074,0.029,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.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,17.336,7.472,11.194,9.075,0.614,0.0,0.0,1.0,0.0,2854.9,2251.5,2854.9,17.264,12.084,0.0,3.742,3.641,0.512,7.519,0.63,10.092,-12.69,0.0,0.0,0.0,8.311,-0.063,5.886,0.0,0.729,0.0,0.111,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.435,-3.05,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,24589.0,950.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,44.521,44.521,35.621,35.621,8.901,0.0,0.0,0.0,0.0,0.0,2.896,0.048,0.0,0.268,2.087,0.029,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,16.569,7.389,11.294,9.075,0.614,0.0,0.0,1.0,0.0,2781.4,2164.7,2781.4,17.577,11.922,0.0,3.724,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.306,-0.065,4.807,0.0,0.73,0.0,0.41,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,47.785,47.785,35.53,35.53,0.0,12.255,0.0,0.0,0.0,0.0,3.066,0.069,0.0,0.0,2.074,0.029,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.225,7.353,11.194,9.075,0.614,0.0,0.0,2.0,0.0,2854.9,2251.5,2854.9,16.995,12.084,0.0,3.742,3.641,0.512,7.519,0.63,10.092,-12.69,0.0,0.0,0.0,8.311,-0.063,5.886,0.0,0.729,0.0,0.0,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.435,-3.05,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,37.708,37.708,37.708,37.708,0.0,0.0,0.0,0.0,0.0,0.0,5.053,0.096,0.0,0.0,2.239,0.028,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3515.3,2154.3,3515.3,16.439,11.921,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,37.708,37.708,37.708,37.708,0.0,0.0,0.0,0.0,0.0,0.0,5.053,0.096,0.0,0.0,2.239,0.028,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3515.3,2154.3,3515.3,16.439,11.921,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.096,-0.166,0.0,0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,65.912,65.912,51.82,51.82,6.988,3.513,3.592,0.0,0.0,0.0,13.371,0.835,0.196,0.008,6.544,0.573,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.592,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.901,0.204,19.545,9.075,0.614,0.0,0.0,0.0,6.0,6439.7,4033.7,6439.7,37.521,22.75,0.0,3.432,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.887,0.0,0.728,0.0,14.926,-8.914,-2.501,0.0,-0.138,-0.455,-0.051,2.715,-0.024,-1.38,11.717,0.0,0.0,0.0,-6.3,-0.058,-1.436,-3.089,-0.164,0.0,8.456,7.864,2.008,1354.8,997.6,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,36744.0,13104.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23818.0,10360.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.87,33.87,33.87,33.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.336,0.198,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.742,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2953.2,2953.2,0.0,14.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.018,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.021,-0.167,0.0,1.83,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,41.386,41.386,41.386,41.386,0.0,0.0,0.0,0.0,0.0,0.0,8.076,0.201,0.121,0.005,2.597,0.095,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.44,0.126,12.616,9.075,0.614,0.0,0.0,0.0,0.0,4873.7,2791.1,4873.7,19.228,14.111,0.0,3.607,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,3.387,-8.906,-2.499,0.0,0.019,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.103,-0.166,0.0,1.346,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,33.207,33.207,33.207,33.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8,0.07,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.473,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2570.0,2570.0,0.0,13.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.005,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.019,-0.167,0.0,1.548,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,32.927,32.927,32.927,32.927,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.586,0.004,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.954,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2665.0,2665.0,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,33.302,33.302,33.302,33.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.941,0.024,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2505.3,2505.3,0.0,11.717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.472,32.472,32.472,32.472,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.089,0.045,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.961,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2372.1,2372.1,0.0,13.738,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.012,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.016,-0.167,0.0,1.019,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,40.45,40.45,40.45,40.45,0.0,0.0,0.0,0.0,0.0,0.0,6.99,0.144,0.0,0.0,2.988,0.036,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.28,0.0,12.658,9.075,0.614,0.0,0.0,0.0,0.0,4056.3,2621.1,4056.3,18.97,13.938,0.0,3.612,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,3.222,-8.906,-2.499,0.0,0.017,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.103,-0.166,0.0,1.392,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,37.004,37.004,37.004,37.004,0.0,0.0,0.0,0.0,0.0,0.0,6.558,0.122,0.053,0.002,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.055,0.0,9.075,0.588,0.0,0.0,0.0,0.0,4362.5,1621.8,4362.5,19.31,0.0,0.0,3.623,3.647,0.513,7.511,0.632,10.112,-12.683,0.0,0.0,0.0,8.145,-0.069,4.809,0.0,0.73,0.0,2.953,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,39.246,39.246,39.246,39.246,0.0,0.0,0.0,0.0,0.0,0.0,6.631,0.076,0.055,0.001,2.144,0.047,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.088,0.056,12.324,9.075,0.614,0.0,0.0,0.0,0.0,4286.8,2405.9,4286.8,19.079,13.974,0.0,3.618,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,3.025,-8.906,-2.499,0.0,0.028,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.102,-0.166,0.0,1.045,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,38.911,38.911,38.911,38.911,0.0,0.0,0.0,0.0,0.0,0.0,5.671,0.121,0.343,0.0,2.455,0.028,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.343,11.294,9.075,0.614,0.0,0.0,0.0,0.0,4436.0,2599.9,4436.0,16.439,11.92,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,45.478,45.478,36.476,36.476,9.001,0.0,0.0,0.0,0.0,0.0,3.395,0.043,0.0,0.271,2.445,0.028,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.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,17.335,7.472,11.194,9.075,0.614,0.0,0.0,2.0,0.0,2921.7,2618.4,2921.7,17.264,12.083,0.0,3.742,3.641,0.512,7.519,0.63,10.092,-12.69,0.0,0.0,0.0,8.311,-0.063,5.886,0.0,0.729,0.0,0.111,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.435,-3.05,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,24589.0,950.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,45.186,45.186,36.285,36.285,8.901,0.0,0.0,0.0,0.0,0.0,3.202,0.039,0.0,0.268,2.455,0.028,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,16.569,7.389,11.294,9.075,0.614,0.0,0.0,1.0,0.0,2848.6,2599.9,2848.6,17.577,11.92,0.0,3.723,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.303,-0.066,4.807,0.0,0.73,0.0,0.41,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.353,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,26570.0,2930.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,48.473,48.473,36.218,36.218,0.0,12.255,0.0,0.0,0.0,0.0,3.392,0.06,0.0,0.0,2.445,0.028,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,17.225,7.353,11.194,9.075,0.614,0.0,0.0,2.0,0.0,2921.7,2618.4,2921.7,16.995,12.083,0.0,3.742,3.641,0.512,7.519,0.63,10.092,-12.69,0.0,0.0,0.0,8.311,-0.063,5.886,0.0,0.729,0.0,0.0,-8.912,-2.5,0.0,0.043,-0.456,-0.051,2.714,-0.024,-1.38,11.724,0.0,0.0,0.0,-6.304,-0.059,-1.435,-3.05,-0.164,0.0,0.0,7.866,2.009,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,38.968,38.968,38.968,38.968,0.0,0.0,0.0,0.0,0.0,0.0,6.705,0.036,0.0,0.0,1.932,0.003,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.293,9.075,0.614,0.0,0.0,0.0,0.0,3979.6,2668.3,3979.6,16.439,11.917,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,38.212,38.212,38.212,38.212,0.0,0.0,0.0,0.0,0.0,0.0,5.664,0.051,0.0,0.0,2.199,0.006,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3660.8,2367.3,3660.8,16.439,11.917,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,38.212,38.212,38.212,38.212,0.0,0.0,0.0,0.0,0.0,0.0,5.664,0.051,0.0,0.0,2.199,0.006,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3660.8,2367.3,3660.8,16.439,11.917,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.088,66.088,51.967,51.967,7.001,3.521,3.599,0.0,0.0,0.0,13.461,0.838,0.212,0.009,6.597,0.558,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.002,0.221,19.498,9.075,0.614,0.0,0.0,0.0,15.0,6458.6,4039.6,6458.6,37.522,22.494,0.0,3.43,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.887,0.0,0.728,0.0,15.028,-8.914,-2.501,0.0,-0.136,-0.456,-0.051,2.714,-0.024,-1.381,11.717,0.0,0.0,0.0,-6.301,-0.058,-1.436,-3.09,-0.164,0.0,8.415,7.863,2.008,1354.8,997.6,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,36744.0,13104.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23818.0,10360.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,19.67,19.67,19.67,19.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,4.539,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,0.0,0.0,4.497,0.33,0.0,0.0,0.0,0.0,1280.4,1085.1,1280.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,1354.8,997.6,8369.8,2062.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1252.0,0.0,452.0,800.0 base-hvac-ptac-with-heating-electricity.xml,50.851,50.851,50.851,50.851,0.0,0.0,0.0,0.0,0.0,0.0,16.19,0.0,0.0,0.0,4.369,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,5913.9,2889.3,5913.9,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-natural-gas.xml,54.899,54.899,34.661,34.661,20.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.369,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2019.7,2889.3,2889.3,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -264,12 +271,12 @@ base-hvac-room-ac-only-detailed-setpoints.xml,34.449,34.449,34.449,34.449,0.0,0. base-hvac-room-ac-only.xml,35.692,35.692,35.692,35.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.355,0.0,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,3294.1,3294.1,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-room-ac-with-heating.xml,51.982,51.982,51.982,51.982,0.0,0.0,0.0,0.0,0.0,0.0,16.19,0.0,0.0,0.0,5.499,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,5913.9,3318.2,5913.9,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-room-ac-with-reverse-cycle.xml,41.792,41.792,41.792,41.792,0.0,0.0,0.0,0.0,0.0,0.0,7.228,0.0,0.047,0.0,4.225,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.047,11.294,9.075,0.614,0.0,0.0,0.0,0.0,4933.1,2869.5,4933.1,16.439,11.921,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.027,-1.409,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.171,-3.096,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-seasons.xml,57.982,57.982,35.88,35.88,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.375,0.848,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.698,0.0,14.285,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3421.3,3421.3,23.032,19.118,0.0,3.516,3.607,0.508,7.531,0.617,9.947,-12.591,0.0,0.0,0.0,8.244,-0.034,4.753,0.0,0.723,0.0,4.802,-8.79,-2.477,0.0,-0.098,-0.501,-0.057,2.688,-0.04,-1.559,11.822,0.0,0.0,0.0,-6.415,-0.03,-1.222,-3.122,-0.173,0.0,3.171,7.988,2.033,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,57.016,57.016,35.319,35.319,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.913,0.755,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.946,0.0,12.447,9.075,0.615,0.0,0.0,101.0,55.0,2155.4,3710.5,3710.5,34.947,20.39,0.0,3.517,3.579,0.503,7.523,0.608,9.828,-12.674,0.0,0.0,0.0,8.679,0.006,4.652,0.0,0.727,0.0,4.499,-8.859,-2.496,0.0,-0.073,-0.502,-0.058,2.615,-0.042,-1.591,11.74,0.0,0.0,0.0,-6.668,-0.004,-1.223,-3.407,-0.174,0.0,2.49,7.92,2.014,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,56.386,56.386,35.47,35.47,20.915,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.048,0.783,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.498,0.0,13.071,9.075,0.616,0.0,0.0,0.0,14.0,2130.8,3597.4,3597.4,25.333,20.813,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.196,-0.023,4.639,0.0,0.724,0.0,4.386,-8.884,-2.501,0.0,-0.057,-0.497,-0.057,2.571,-0.04,-1.578,11.697,0.0,0.0,0.0,-6.644,-0.024,-1.204,-3.355,-0.177,0.0,2.635,7.896,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,41.377,41.377,34.089,34.089,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.107,0.54,9.046,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.0,9.174,9.075,0.645,0.0,0.0,0.0,0.0,2100.9,3211.6,3211.6,17.396,16.358,0.0,2.853,2.787,0.39,5.357,0.411,7.457,-12.563,0.0,0.0,0.0,5.504,-0.06,3.479,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.125,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.261,-5.126,-0.188,0.0,2.129,8.003,2.036,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,57.926,57.926,35.824,35.824,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.349,0.818,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.698,0.0,14.225,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3389.4,3389.4,23.032,18.923,0.0,3.516,3.607,0.508,7.531,0.617,9.947,-12.591,0.0,0.0,0.0,8.244,-0.034,4.753,0.0,0.723,0.0,4.802,-8.79,-2.477,0.0,-0.095,-0.501,-0.057,2.688,-0.04,-1.559,11.822,0.0,0.0,0.0,-6.415,-0.03,-1.222,-3.122,-0.173,0.0,3.111,7.988,2.033,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,56.965,56.965,35.268,35.268,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.889,0.728,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.946,0.0,12.403,9.075,0.615,0.0,0.0,101.0,51.0,2155.4,3764.4,3764.4,34.947,20.81,0.0,3.517,3.579,0.503,7.523,0.608,9.828,-12.674,0.0,0.0,0.0,8.679,0.006,4.652,0.0,0.727,0.0,4.499,-8.859,-2.496,0.0,-0.072,-0.501,-0.058,2.616,-0.042,-1.59,11.74,0.0,0.0,0.0,-6.667,-0.004,-1.223,-3.406,-0.174,0.0,2.447,7.92,2.014,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,56.335,56.335,35.42,35.42,20.915,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.025,0.755,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.498,0.0,13.025,9.075,0.616,0.0,0.0,0.0,8.0,2130.8,3654.2,3654.2,25.333,21.331,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.196,-0.023,4.639,0.0,0.724,0.0,4.386,-8.884,-2.501,0.0,-0.055,-0.497,-0.057,2.572,-0.04,-1.577,11.697,0.0,0.0,0.0,-6.643,-0.024,-1.204,-3.355,-0.177,0.0,2.591,7.896,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,41.338,41.338,34.05,34.05,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.087,0.52,9.046,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.0,9.129,9.075,0.645,0.0,0.0,0.0,0.0,2100.9,3188.9,3188.9,17.396,16.187,0.0,2.853,2.787,0.39,5.357,0.411,7.457,-12.563,0.0,0.0,0.0,5.504,-0.06,3.479,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.124,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.261,-5.126,-0.188,0.0,2.084,8.003,2.036,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-space-heater-gas-only.xml,46.293,46.293,30.268,30.268,16.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2019.6,1614.5,2019.6,16.439,0.0,0.0,3.745,3.645,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.808,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-stove-oil-only.xml,51.59,51.59,30.334,30.334,0.0,21.257,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2022.6,1637.4,2022.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-stove-wood-pellets-only.xml,51.59,51.59,30.334,30.334,0.0,0.0,0.0,0.0,21.257,0.0,0.0,0.064,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2022.6,1637.4,2022.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized.xml,48.249,48.249,33.001,33.001,15.248,0.0,0.0,0.0,0.0,0.0,0.0,0.246,0.0,0.0,2.091,0.358,9.03,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.248,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.278,0.0,6.336,9.075,0.629,0.0,0.0,3652.0,2624.0,2087.0,1833.3,2087.0,3.839,2.674,0.0,2.699,2.924,0.409,5.375,0.449,7.904,-12.797,0.0,0.0,0.0,4.76,-0.121,3.617,0.0,0.6,0.0,9.541,-9.006,-2.517,0.0,-0.382,-0.821,-0.104,1.556,-0.119,-2.517,11.616,0.0,0.0,0.0,-8.136,-0.065,-1.431,-5.137,-0.237,0.0,2.648,7.787,1.992,1354.8,997.6,11171.5,2563.5,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17384.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized.xml,48.287,48.287,33.038,33.038,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.246,0.0,0.0,2.127,0.358,9.031,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.279,0.0,6.525,9.075,0.629,0.0,0.0,3653.0,2615.0,2089.1,1836.2,2089.1,3.839,2.744,0.0,2.699,2.924,0.409,5.375,0.449,7.904,-12.797,0.0,0.0,0.0,4.761,-0.121,3.617,0.0,0.6,0.0,9.541,-9.006,-2.517,0.0,-0.38,-0.816,-0.103,1.571,-0.117,-2.501,11.616,0.0,0.0,0.0,-8.115,-0.065,-1.427,-5.1,-0.236,0.0,2.724,7.787,1.992,1354.8,997.6,11171.6,2563.5,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17384.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-wall-furnace-elec-only.xml,46.62,46.62,46.62,46.62,0.0,0.0,0.0,0.0,0.0,0.0,16.351,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,6008.3,1614.5,6008.3,16.439,0.0,0.0,3.745,3.645,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.808,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1_bills.csv b/workflow/tests/base_results/results_workflow_simulations1_bills.csv index 4e1bade842..0d5622564a 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -1,212 +1,215 @@ HPXML,Bills: Total (USD),Bills: Electricity: Fixed (USD),Bills: Electricity: Energy (USD),Bills: Electricity: PV Credit (USD),Bills: Electricity: Total (USD),Bills: Natural Gas: Fixed (USD),Bills: Natural Gas: Energy (USD),Bills: Natural Gas: Total (USD),Bills: Fuel Oil: Fixed (USD),Bills: Fuel Oil: Energy (USD),Bills: Fuel Oil: Total (USD),Bills: Propane: Fixed (USD),Bills: Propane: Energy (USD),Bills: Propane: Total (USD),Bills: Wood Cord: Fixed (USD),Bills: Wood Cord: Energy (USD),Bills: Wood Cord: Total (USD),Bills: Wood Pellets: Fixed (USD),Bills: Wood Pellets: Energy (USD),Bills: Wood Pellets: Total (USD),Bills: Coal: Fixed (USD),Bills: Coal: Energy (USD),Bills: Coal: Total (USD) -base-appliances-coal.xml,1809.62,144.0,1219.68,0.0,1363.68,144.0,228.95,372.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,72.99,72.99 -base-appliances-dehumidifier-ief-portable.xml,1524.19,144.0,1222.88,0.0,1366.88,144.0,13.31,157.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 -base-appliances-dehumidifier-ief-whole-home.xml,1525.68,144.0,1224.59,0.0,1368.59,144.0,13.09,157.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-multiple.xml,1522.07,144.0,1220.05,0.0,1364.05,144.0,14.02,158.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier.xml,1523.21,144.0,1222.05,0.0,1366.05,144.0,13.16,157.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-gas.xml,1788.18,144.0,1219.68,0.0,1363.68,144.0,280.5,424.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,1869.73,144.0,1354.89,0.0,1498.89,144.0,226.84,370.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,1585.34,144.0,1041.11,0.0,1185.11,144.0,256.23,400.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-oil.xml,1906.82,144.0,1219.68,0.0,1363.68,144.0,228.95,372.95,0.0,170.19,170.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 -base-appliances-propane.xml,1868.71,144.0,1219.68,0.0,1363.68,144.0,228.95,372.95,0.0,0.0,0.0,0.0,132.08,132.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,1809.62,144.0,1219.68,0.0,1363.68,144.0,228.95,372.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.99,72.99,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,1873.1,144.0,1313.7,0.0,1457.7,144.0,271.4,415.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,2016.42,144.0,1488.98,0.0,1632.98,144.0,239.44,383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,1780.97,144.0,1286.91,0.0,1430.91,144.0,206.06,350.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,1550.33,144.0,1219.3,0.0,1363.3,144.0,43.03,187.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-unvented-insulated-roof.xml,1811.78,144.0,1292.72,0.0,1436.72,144.0,231.06,375.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,1827.72,144.0,1305.82,0.0,1449.82,144.0,233.9,377.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,1905.42,144.0,1381.55,0.0,1525.55,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-battery.xml,1842.55,144.0,1318.68,0.0,1462.68,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,1317.34,144.0,906.19,0.0,1050.19,144.0,123.15,267.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,1279.69,144.0,924.42,0.0,1068.42,144.0,67.27,211.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,1456.28,144.0,906.23,0.0,1050.23,144.0,262.05,406.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,1203.25,144.0,901.29,0.0,1045.29,144.0,13.96,157.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 -base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,1221.26,144.0,922.01,0.0,1066.01,144.0,11.25,155.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-infil-compartmentalization-test.xml,1258.24,144.0,964.76,0.0,1108.76,144.0,5.48,149.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-residents-1.xml,985.86,144.0,684.93,0.0,828.93,144.0,12.93,156.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,1273.0,144.0,978.11,0.0,1122.11,144.0,6.89,150.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,1302.1,144.0,1006.75,0.0,1150.75,144.0,7.35,151.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,1284.68,144.0,990.15,0.0,1134.15,144.0,6.53,150.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,1487.7,144.0,1194.34,0.0,1338.34,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1293.1,144.0,999.74,0.0,1143.74,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-coal.xml,1807.48,144.0,1217.54,0.0,1361.54,144.0,228.95,372.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,72.99,72.99 +base-appliances-dehumidifier-ief-portable.xml,1521.28,144.0,1219.98,0.0,1363.98,144.0,13.3,157.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-whole-home.xml,1522.88,144.0,1221.79,0.0,1365.79,144.0,13.09,157.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-multiple.xml,1519.37,144.0,1217.35,0.0,1361.35,144.0,14.02,158.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier.xml,1520.46,144.0,1219.31,0.0,1363.31,144.0,13.15,157.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-gas.xml,1786.04,144.0,1217.54,0.0,1361.54,144.0,280.5,424.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,1867.57,144.0,1352.73,0.0,1496.73,144.0,226.84,370.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,1583.4,144.0,1039.17,0.0,1183.17,144.0,256.23,400.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-oil.xml,1904.68,144.0,1217.54,0.0,1361.54,144.0,228.95,372.95,0.0,170.19,170.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 +base-appliances-propane.xml,1866.57,144.0,1217.54,0.0,1361.54,144.0,228.95,372.95,0.0,0.0,0.0,0.0,132.08,132.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,1807.48,144.0,1217.54,0.0,1361.54,144.0,228.95,372.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.99,72.99,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,1871.74,144.0,1312.34,0.0,1456.34,144.0,271.4,415.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,2014.84,144.0,1487.4,0.0,1631.4,144.0,239.44,383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,1779.79,144.0,1285.73,0.0,1429.73,144.0,206.06,350.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier.xml,1547.35,144.0,1216.32,0.0,1360.32,144.0,43.03,187.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-unvented-insulated-roof.xml,1810.55,144.0,1291.49,0.0,1435.49,144.0,231.06,375.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,1826.23,144.0,1304.33,0.0,1448.33,144.0,233.9,377.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,1903.33,144.0,1379.46,0.0,1523.46,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-battery.xml,1840.45,144.0,1316.58,0.0,1460.58,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,1316.94,144.0,905.79,0.0,1049.79,144.0,123.15,267.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,1279.05,144.0,923.78,0.0,1067.78,144.0,67.27,211.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,1455.9,144.0,905.85,0.0,1049.85,144.0,262.05,406.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,1202.84,144.0,900.88,0.0,1044.88,144.0,13.96,157.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 +base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,1220.67,144.0,921.42,0.0,1065.42,144.0,11.25,155.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-infil-compartmentalization-test.xml,1257.26,144.0,963.78,0.0,1107.78,144.0,5.48,149.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-residents-1.xml,985.19,144.0,684.26,0.0,828.26,144.0,12.93,156.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,1271.97,144.0,977.08,0.0,1121.08,144.0,6.89,150.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,1301.04,144.0,1005.69,0.0,1149.69,144.0,7.35,151.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,1283.63,144.0,989.1,0.0,1133.1,144.0,6.53,150.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,1486.53,144.0,1193.17,0.0,1337.17,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1292.04,144.0,998.68,0.0,1142.68,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,1120.96,144.0,827.43,0.0,971.43,144.0,5.53,149.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,1122.03,144.0,828.12,0.0,972.12,144.0,5.91,149.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,1121.86,144.0,828.59,0.0,972.59,144.0,5.27,149.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,1124.68,144.0,832.85,0.0,976.85,144.0,3.83,147.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,1121.92,144.0,828.67,0.0,972.67,144.0,5.25,149.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,1120.69,144.0,828.38,0.0,972.38,144.0,4.31,148.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 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,1120.31,144.0,976.31,0.0,1120.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 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,1147.92,144.0,1003.92,0.0,1147.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 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,1130.72,144.0,986.72,0.0,1130.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1333.84,144.0,1189.84,0.0,1333.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,1140.64,144.0,996.64,0.0,1140.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-generator.xml,1641.6,144.0,962.39,0.0,1106.39,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,1119.28,144.0,975.28,0.0,1119.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,1146.87,144.0,1002.87,0.0,1146.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 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,1129.68,144.0,985.68,0.0,1129.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 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1332.68,144.0,1188.68,0.0,1332.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 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,1139.59,144.0,995.59,0.0,1139.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-generator.xml,1640.64,144.0,961.43,0.0,1105.43,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1180.22,144.0,1036.22,0.0,1180.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 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1061.97,144.0,615.28,0.0,759.28,144.0,158.69,302.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 -base-bldgtype-mf-unit-shared-laundry-room.xml,1034.48,144.0,608.19,0.0,752.19,144.0,138.29,282.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1625.79,144.0,1125.4,0.0,1269.4,144.0,212.39,356.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1346.82,144.0,1002.75,0.0,1146.75,144.0,56.07,200.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent.xml,1324.07,144.0,997.29,0.0,1141.29,144.0,38.78,182.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 -base-bldgtype-mf-unit-shared-pv.xml,359.8,144.0,962.39,-897.25,209.14,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,1075.82,144.0,648.99,0.0,792.99,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-water-heater.xml,1035.6,144.0,608.77,0.0,752.77,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit.xml,1257.05,144.0,962.39,0.0,1106.39,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-2stories.xml,1731.87,144.0,1270.24,0.0,1414.24,144.0,173.63,317.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 -base-bldgtype-sfa-unit-atticroof-cathedral.xml,2292.15,144.0,1364.87,0.0,1508.87,144.0,639.28,783.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 -base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,1516.14,144.0,1096.67,0.0,1240.67,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit.xml,1516.14,144.0,1096.67,0.0,1240.67,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1060.98,144.0,614.3,0.0,758.3,144.0,158.68,302.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-laundry-room.xml,1033.56,144.0,607.27,0.0,751.27,144.0,138.29,282.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1625.38,144.0,1124.99,0.0,1268.99,144.0,212.39,356.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1345.99,144.0,1001.92,0.0,1145.92,144.0,56.07,200.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,1323.32,144.0,996.54,0.0,1140.54,144.0,38.78,182.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 +base-bldgtype-mf-unit-shared-pv.xml,358.84,144.0,961.43,-897.25,208.18,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,1074.89,144.0,648.06,0.0,792.06,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-water-heater.xml,1034.67,144.0,607.84,0.0,751.84,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit.xml,1256.09,144.0,961.43,0.0,1105.43,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-2stories.xml,1730.49,144.0,1268.86,0.0,1412.86,144.0,173.63,317.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 +base-bldgtype-sfa-unit-atticroof-cathedral.xml,2290.58,144.0,1363.3,0.0,1507.3,144.0,639.28,783.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 +base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,1514.91,144.0,1095.44,0.0,1239.44,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit.xml,1514.91,144.0,1095.44,0.0,1239.44,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless-outside.xml,1388.39,144.0,786.23,0.0,930.23,144.0,314.16,458.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,1401.33,144.0,786.58,0.0,930.58,144.0,326.75,470.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,1321.11,144.0,1177.11,0.0,1321.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,1320.19,144.0,1176.19,0.0,1320.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 base-dhw-desuperheater-gshp.xml,1517.54,144.0,1373.54,0.0,1517.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 -base-dhw-desuperheater-hpwh.xml,1663.33,144.0,1092.84,0.0,1236.84,144.0,282.49,426.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,1383.2,144.0,1239.2,0.0,1383.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,1293.79,144.0,1149.79,0.0,1293.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 -base-dhw-desuperheater.xml,1384.37,144.0,1240.37,0.0,1384.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 -base-dhw-dwhr.xml,1759.17,144.0,1235.3,0.0,1379.3,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,1661.21,144.0,1090.72,0.0,1234.72,144.0,282.49,426.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,1380.63,144.0,1236.63,0.0,1380.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 +base-dhw-desuperheater-var-speed.xml,1286.91,144.0,1142.91,0.0,1286.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,1381.75,144.0,1237.75,0.0,1381.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,1757.07,144.0,1233.2,0.0,1377.2,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-indirect-detailed-setpoints.xml,1417.64,144.0,786.17,0.0,930.17,144.0,343.47,487.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-indirect-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-indirect-outside.xml,1434.16,144.0,786.23,0.0,930.23,144.0,359.93,503.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-indirect-standbyloss.xml,1421.56,144.0,786.11,0.0,930.11,144.0,347.45,491.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-indirect-with-solar-fraction.xml,1336.56,144.0,786.44,0.0,930.44,144.0,262.12,406.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 base-dhw-indirect.xml,1419.07,144.0,786.18,0.0,930.18,144.0,344.89,488.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,1832.87,144.0,1306.72,0.0,1450.72,144.0,238.15,382.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,1672.4,144.0,991.6,0.0,1135.6,144.0,392.8,536.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,1658.18,144.0,1087.47,0.0,1231.47,144.0,282.71,426.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,1830.8,144.0,1304.65,0.0,1448.65,144.0,238.15,382.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,1670.27,144.0,989.47,0.0,1133.47,144.0,392.8,536.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,1656.32,144.0,1085.61,0.0,1229.61,144.0,282.71,426.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-jacket-indirect.xml,1416.98,144.0,786.24,0.0,930.24,144.0,342.74,486.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 -base-dhw-low-flow-fixtures.xml,1834.47,144.0,1310.6,0.0,1454.6,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,1832.37,144.0,1308.5,0.0,1452.5,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-multiple.xml,1393.88,144.0,856.9,0.0,1000.9,144.0,248.98,392.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,1429.17,144.0,905.64,0.0,1049.64,144.0,235.53,379.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,1840.79,144.0,1316.92,0.0,1460.92,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,1825.37,144.0,1301.5,0.0,1445.5,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,2381.49,144.0,1857.62,0.0,2001.62,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,2203.43,144.0,1679.56,0.0,1823.56,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,2381.49,144.0,1857.62,0.0,2001.62,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,1629.58,144.0,1105.71,0.0,1249.71,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,1577.09,144.0,1053.31,0.0,1197.31,144.0,235.78,379.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 -base-dhw-solar-direct-ics.xml,1632.45,144.0,1108.58,0.0,1252.58,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,1628.99,144.0,1102.27,0.0,1246.27,144.0,238.72,382.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,1576.59,144.0,1056.57,0.0,1200.57,144.0,232.02,376.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,1566.64,144.0,1042.86,0.0,1186.86,144.0,235.78,379.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 -base-dhw-tank-coal.xml,1748.96,144.0,993.59,0.0,1137.59,144.0,238.21,382.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,229.16,229.16 -base-dhw-tank-detailed-setpoints.xml,1842.13,144.0,1318.33,0.0,1462.33,144.0,235.8,379.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,1844.89,144.0,1321.57,0.0,1465.57,144.0,235.32,379.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,1694.27,144.0,985.73,0.0,1129.73,144.0,420.54,564.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,1677.14,144.0,992.19,0.0,1136.19,144.0,396.95,540.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,1677.14,144.0,992.19,0.0,1136.19,144.0,396.95,540.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,1681.63,144.0,993.59,0.0,1137.59,144.0,400.04,544.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,1636.1,144.0,1056.95,0.0,1200.95,144.0,291.15,435.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1629.92,144.0,1050.4,0.0,1194.4,144.0,291.52,435.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,1761.22,144.0,1232.96,0.0,1376.96,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,1629.92,144.0,1050.4,0.0,1194.4,144.0,291.52,435.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,1567.91,144.0,1025.36,0.0,1169.36,144.0,254.55,398.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,1578.82,144.0,1047.78,0.0,1191.78,144.0,243.04,387.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,1662.81,144.0,1093.02,0.0,1237.02,144.0,281.79,425.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1836.74,144.0,1302.26,0.0,1446.26,144.0,246.48,390.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,1826.15,144.0,1298.03,0.0,1442.03,144.0,240.12,384.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 -base-dhw-tank-oil.xml,2054.11,144.0,993.59,0.0,1137.59,144.0,238.21,382.21,0.0,534.31,534.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 -base-dhw-tank-wood.xml,1748.96,144.0,993.59,0.0,1137.59,144.0,238.21,382.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.16,229.16,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,1632.34,144.0,985.73,0.0,1129.73,144.0,358.61,502.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,1854.31,144.0,1326.05,0.0,1470.05,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,1850.46,144.0,1322.2,0.0,1466.2,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,1854.31,144.0,1326.05,0.0,1470.05,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,1616.34,144.0,985.73,0.0,1129.73,144.0,342.61,486.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,1555.5,144.0,985.73,0.0,1129.73,144.0,281.77,425.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,1542.59,144.0,1001.6,0.0,1145.6,144.0,252.99,396.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 -base-dhw-tankless-gas.xml,1632.59,144.0,985.73,0.0,1129.73,144.0,358.86,502.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 -base-dhw-tankless-propane.xml,1817.88,144.0,985.73,0.0,1129.73,144.0,240.26,384.26,0.0,0.0,0.0,0.0,303.89,303.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,2053.87,144.0,1504.0,0.0,1648.0,144.0,261.87,405.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,2224.9,144.0,1625.43,0.0,1769.43,144.0,311.47,455.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,1668.09,144.0,1123.14,0.0,1267.14,144.0,256.95,400.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,1756.57,144.0,1222.2,0.0,1366.2,144.0,246.37,390.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,1927.48,144.0,1413.98,0.0,1557.98,144.0,225.5,369.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-5.xml,2011.84,144.0,1508.6,0.0,1652.6,144.0,215.24,359.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-ceilingtypes.xml,2026.36,144.0,1337.37,0.0,1481.37,144.0,400.99,544.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 -base-enclosure-floortypes.xml,1764.48,144.0,1076.43,0.0,1220.43,144.0,400.05,544.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-garage.xml,1810.7,144.0,1269.23,0.0,1413.23,144.0,253.47,397.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,1842.55,144.0,1318.68,0.0,1462.68,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,1842.55,144.0,1318.68,0.0,1462.68,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,1842.55,144.0,1318.68,0.0,1462.68,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,1923.75,144.0,1319.1,0.0,1463.1,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,1857.44,144.0,1318.64,0.0,1462.64,144.0,250.8,394.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,1923.75,144.0,1319.1,0.0,1463.1,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,1923.75,144.0,1319.1,0.0,1463.1,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,1844.27,144.0,1317.78,0.0,1461.78,144.0,238.49,382.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,1839.39,144.0,1312.4,0.0,1456.4,144.0,238.99,382.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 -base-enclosure-rooftypes.xml,1837.32,144.0,1312.54,0.0,1456.54,144.0,236.78,380.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 -base-enclosure-skylights-physical-properties.xml,1898.04,144.0,1359.2,0.0,1503.2,144.0,250.84,394.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,1855.76,144.0,1320.32,0.0,1464.32,144.0,247.44,391.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,1867.9,144.0,1346.57,0.0,1490.57,144.0,233.33,377.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,1867.9,144.0,1350.25,0.0,1494.25,144.0,229.65,373.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,1484.02,144.0,1079.72,0.0,1223.72,144.0,116.3,260.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-thermal-mass.xml,1839.13,144.0,1316.94,0.0,1460.94,144.0,234.19,378.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,1984.11,144.0,1269.16,0.0,1413.16,144.0,426.95,570.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,1806.84,144.0,1282.21,0.0,1426.21,144.0,236.63,380.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 -base-enclosure-windows-none.xml,1794.41,144.0,1242.98,0.0,1386.98,144.0,263.43,407.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,1928.02,144.0,1322.8,0.0,1466.8,144.0,317.22,461.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,1842.52,144.0,1319.77,0.0,1463.77,144.0,234.75,378.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,1773.56,144.0,1227.43,0.0,1371.43,144.0,258.13,402.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 -base-enclosure-windows-storms.xml,1837.39,144.0,1297.21,0.0,1441.21,144.0,252.18,396.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 -base-foundation-ambient.xml,1583.66,144.0,1112.11,0.0,1256.11,144.0,183.55,327.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-basement-garage.xml,1695.57,144.0,1198.27,0.0,1342.27,144.0,209.3,353.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-belly-wing-no-skirt.xml,1577.38,144.0,1077.46,0.0,1221.46,144.0,211.92,355.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-belly-wing-skirt.xml,1573.65,144.0,1077.75,0.0,1221.75,144.0,207.9,351.9,0.0,0.0,0.0,0.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,2080.85,144.0,1366.51,0.0,1510.51,144.0,426.34,570.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation-full.xml,1828.38,144.0,1338.6,0.0,1482.6,144.0,201.78,345.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 -base-foundation-conditioned-basement-slab-insulation.xml,1836.12,144.0,1326.36,0.0,1470.36,144.0,221.76,365.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,1817.72,144.0,1301.81,0.0,1445.81,144.0,227.91,371.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,1539.17,144.0,1060.48,0.0,1204.48,144.0,190.69,334.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 -base-foundation-multiple.xml,1513.02,144.0,1090.53,0.0,1234.53,144.0,134.49,278.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-slab.xml,1472.12,144.0,1074.66,0.0,1218.66,144.0,109.46,253.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement-above-grade.xml,1529.12,144.0,1095.63,0.0,1239.63,144.0,145.49,289.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement-assembly-r.xml,1484.79,144.0,1073.55,0.0,1217.55,144.0,123.24,267.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement-wall-insulation.xml,1557.04,144.0,1061.21,0.0,1205.21,144.0,207.83,351.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement.xml,1514.65,144.0,1091.7,0.0,1235.7,144.0,134.95,278.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unvented-crawlspace.xml,1494.55,144.0,1095.32,0.0,1239.32,144.0,111.23,255.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-vented-crawlspace-above-grade.xml,1518.46,144.0,1099.24,0.0,1243.24,144.0,131.22,275.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-vented-crawlspace.xml,1513.18,144.0,1093.2,0.0,1237.2,144.0,131.98,275.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-walkout-basement.xml,1915.91,144.0,1332.56,0.0,1476.56,144.0,295.35,439.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1421.39,144.0,1277.39,0.0,1421.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1817.96,144.0,1673.96,0.0,1817.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1676.24,144.0,1532.24,0.0,1676.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 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1816.28,144.0,1672.28,0.0,1816.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1820.08,144.0,1676.08,0.0,1820.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 -base-hvac-air-to-air-heat-pump-1-speed.xml,1817.96,144.0,1673.96,0.0,1817.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,1665.68,144.0,1521.68,0.0,1665.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 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1861.71,144.0,1416.84,0.0,1560.84,144.0,156.87,300.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1866.12,144.0,1373.45,0.0,1517.45,144.0,204.67,348.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1865.47,144.0,1420.55,0.0,1564.55,144.0,156.92,300.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1870.04,144.0,1426.37,0.0,1570.37,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 -base-hvac-air-to-air-heat-pump-var-speed.xml,1654.1,144.0,1510.1,0.0,1654.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,1928.45,144.0,1571.27,0.0,1715.27,144.0,69.18,213.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 -base-hvac-autosize.xml,1855.11,144.0,1323.67,0.0,1467.67,144.0,243.44,387.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,1427.12,144.0,903.59,0.0,1047.59,144.0,235.53,379.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,1838.69,144.0,1314.82,0.0,1458.82,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,1823.28,144.0,1299.41,0.0,1443.41,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,2379.4,144.0,1855.53,0.0,1999.53,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,2201.33,144.0,1677.46,0.0,1821.46,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,2379.4,144.0,1855.53,0.0,1999.53,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,1627.48,144.0,1103.61,0.0,1247.61,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,1574.99,144.0,1051.21,0.0,1195.21,144.0,235.78,379.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 +base-dhw-solar-direct-ics.xml,1630.35,144.0,1106.48,0.0,1250.48,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,1626.9,144.0,1100.18,0.0,1244.18,144.0,238.72,382.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,1574.45,144.0,1054.43,0.0,1198.43,144.0,232.02,376.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,1564.54,144.0,1040.76,0.0,1184.76,144.0,235.78,379.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 +base-dhw-tank-coal.xml,1746.81,144.0,991.44,0.0,1135.44,144.0,238.21,382.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,229.16,229.16 +base-dhw-tank-detailed-setpoints.xml,1840.03,144.0,1316.23,0.0,1460.23,144.0,235.8,379.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,1842.79,144.0,1319.47,0.0,1463.47,144.0,235.32,379.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,1692.2,144.0,983.66,0.0,1127.66,144.0,420.54,564.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,1675.01,144.0,990.06,0.0,1134.06,144.0,396.95,540.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,1675.01,144.0,990.06,0.0,1134.06,144.0,396.95,540.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,1679.48,144.0,991.44,0.0,1135.44,144.0,400.04,544.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,1634.28,144.0,1055.13,0.0,1199.13,144.0,291.15,435.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1628.11,144.0,1048.59,0.0,1192.59,144.0,291.52,435.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,1759.14,144.0,1230.88,0.0,1374.88,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,1628.11,144.0,1048.59,0.0,1192.59,144.0,291.52,435.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,1565.91,144.0,1023.36,0.0,1167.36,144.0,254.55,398.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,1576.67,144.0,1045.63,0.0,1189.63,144.0,243.04,387.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,1660.95,144.0,1091.16,0.0,1235.16,144.0,281.79,425.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1834.62,144.0,1300.14,0.0,1444.14,144.0,246.48,390.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,1824.09,144.0,1295.97,0.0,1439.97,144.0,240.12,384.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 +base-dhw-tank-oil.xml,2051.96,144.0,991.44,0.0,1135.44,144.0,238.21,382.21,0.0,534.31,534.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 +base-dhw-tank-wood.xml,1746.81,144.0,991.44,0.0,1135.44,144.0,238.21,382.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.16,229.16,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,1630.27,144.0,983.66,0.0,1127.66,144.0,358.61,502.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,1852.23,144.0,1323.97,0.0,1467.97,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,1848.39,144.0,1320.13,0.0,1464.13,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,1852.23,144.0,1323.97,0.0,1467.97,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,1614.27,144.0,983.66,0.0,1127.66,144.0,342.61,486.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,1553.43,144.0,983.66,0.0,1127.66,144.0,281.77,425.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,1540.47,144.0,999.48,0.0,1143.48,144.0,252.99,396.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 +base-dhw-tankless-gas.xml,1630.52,144.0,983.66,0.0,1127.66,144.0,358.86,502.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 +base-dhw-tankless-propane.xml,1815.81,144.0,983.66,0.0,1127.66,144.0,240.26,384.26,0.0,0.0,0.0,0.0,303.89,303.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,2051.2,144.0,1501.33,0.0,1645.33,144.0,261.87,405.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,2222.27,144.0,1622.8,0.0,1766.8,144.0,311.47,455.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,1666.18,144.0,1121.23,0.0,1265.23,144.0,256.95,400.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,1754.57,144.0,1220.2,0.0,1364.2,144.0,246.37,390.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,1925.29,144.0,1411.79,0.0,1555.79,144.0,225.5,369.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-5.xml,2009.56,144.0,1506.32,0.0,1650.32,144.0,215.24,359.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-ceilingtypes.xml,2024.52,144.0,1335.53,0.0,1479.53,144.0,400.99,544.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 +base-enclosure-floortypes.xml,1762.69,144.0,1074.64,0.0,1218.64,144.0,400.05,544.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-garage.xml,1809.63,144.0,1268.16,0.0,1412.16,144.0,253.47,397.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,1840.45,144.0,1316.58,0.0,1460.58,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,1840.45,144.0,1316.58,0.0,1460.58,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,1840.45,144.0,1316.58,0.0,1460.58,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,1921.67,144.0,1317.02,0.0,1461.02,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,1855.34,144.0,1316.54,0.0,1460.54,144.0,250.8,394.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,1921.67,144.0,1317.02,0.0,1461.02,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,1921.67,144.0,1317.02,0.0,1461.02,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,1842.19,144.0,1315.7,0.0,1459.7,144.0,238.49,382.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,1837.37,144.0,1310.38,0.0,1454.38,144.0,238.99,382.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 +base-enclosure-rooftypes.xml,1835.42,144.0,1310.64,0.0,1454.64,144.0,236.78,380.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 +base-enclosure-skylights-physical-properties.xml,1895.57,144.0,1356.73,0.0,1500.73,144.0,250.84,394.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,1853.66,144.0,1318.22,0.0,1462.22,144.0,247.44,391.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,1865.53,144.0,1344.2,0.0,1488.2,144.0,233.33,377.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,1865.52,144.0,1347.87,0.0,1491.87,144.0,229.65,373.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-split-level.xml,1482.83,144.0,1078.53,0.0,1222.53,144.0,116.3,260.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-thermal-mass.xml,1837.06,144.0,1314.87,0.0,1458.87,144.0,234.19,378.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,1982.78,144.0,1267.83,0.0,1411.83,144.0,426.95,570.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,1805.03,144.0,1280.4,0.0,1424.4,144.0,236.63,380.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 +base-enclosure-windows-none.xml,1793.38,144.0,1241.95,0.0,1385.95,144.0,263.43,407.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,1925.92,144.0,1320.7,0.0,1464.7,144.0,317.22,461.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,1840.42,144.0,1317.67,0.0,1461.67,144.0,234.75,378.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,1772.49,144.0,1226.36,0.0,1370.36,144.0,258.13,402.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 +base-enclosure-windows-storms.xml,1835.53,144.0,1295.35,0.0,1439.35,144.0,252.18,396.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 +base-foundation-ambient.xml,1581.36,144.0,1109.81,0.0,1253.81,144.0,183.55,327.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-basement-garage.xml,1693.36,144.0,1196.06,0.0,1340.06,144.0,209.3,353.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-belly-wing-no-skirt.xml,1576.03,144.0,1076.11,0.0,1220.11,144.0,211.92,355.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-belly-wing-skirt.xml,1572.3,144.0,1076.4,0.0,1220.4,144.0,207.9,351.9,0.0,0.0,0.0,0.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,2078.49,144.0,1364.15,0.0,1508.15,144.0,426.34,570.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,1826.08,144.0,1336.3,0.0,1480.3,144.0,201.78,345.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 +base-foundation-conditioned-basement-slab-insulation.xml,1833.95,144.0,1324.19,0.0,1468.19,144.0,221.76,365.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,1815.76,144.0,1299.85,0.0,1443.85,144.0,227.91,371.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,1538.05,144.0,1059.36,0.0,1203.36,144.0,190.69,334.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 +base-foundation-multiple.xml,1511.59,144.0,1089.09,0.0,1233.09,144.0,134.5,278.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-slab.xml,1470.9,144.0,1073.44,0.0,1217.44,144.0,109.46,253.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-above-grade.xml,1527.57,144.0,1094.08,0.0,1238.08,144.0,145.49,289.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-assembly-r.xml,1483.58,144.0,1072.34,0.0,1216.34,144.0,123.24,267.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-wall-insulation.xml,1555.88,144.0,1060.05,0.0,1204.05,144.0,207.83,351.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement.xml,1513.18,144.0,1090.23,0.0,1234.23,144.0,134.95,278.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unvented-crawlspace.xml,1493.23,144.0,1093.99,0.0,1237.99,144.0,111.24,255.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-vented-crawlspace-above-grade.xml,1517.09,144.0,1097.86,0.0,1241.86,144.0,131.23,275.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-vented-crawlspace.xml,1511.87,144.0,1091.88,0.0,1235.88,144.0,131.99,275.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 +base-foundation-walkout-basement.xml,1913.74,144.0,1330.39,0.0,1474.39,144.0,295.35,439.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1419.16,144.0,1275.16,0.0,1419.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1817.63,144.0,1673.63,0.0,1817.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 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1678.86,144.0,1534.86,0.0,1678.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1816.38,144.0,1672.38,0.0,1816.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 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1819.76,144.0,1675.76,0.0,1819.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,1817.63,144.0,1673.63,0.0,1817.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 +base-hvac-air-to-air-heat-pump-2-speed.xml,1665.72,144.0,1521.72,0.0,1665.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1866.34,144.0,1420.34,0.0,1564.34,144.0,158.0,302.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1868.36,144.0,1378.64,0.0,1522.64,144.0,201.72,345.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1870.14,144.0,1424.09,0.0,1568.09,144.0,158.05,302.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1873.53,144.0,1429.2,0.0,1573.2,144.0,156.33,300.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,1980.54,144.0,1836.54,0.0,1980.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 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,1699.22,144.0,1555.22,0.0,1699.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 +base-hvac-air-to-air-heat-pump-var-speed.xml,1645.35,144.0,1501.35,0.0,1645.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,1927.14,144.0,1569.96,0.0,1713.96,144.0,69.18,213.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 +base-hvac-autosize.xml,1852.94,144.0,1321.5,0.0,1465.5,144.0,243.44,387.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-boiler-coal-only.xml,1547.28,144.0,1119.54,0.0,1263.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,283.74,283.74 base-hvac-boiler-elec-only.xml,1914.77,144.0,1770.77,0.0,1914.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 -base-hvac-boiler-gas-central-ac-1-speed.xml,1818.42,144.0,1327.03,0.0,1471.03,144.0,203.39,347.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,1815.77,144.0,1324.38,0.0,1468.38,144.0,203.39,347.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-boiler-gas-only-pilot.xml,1658.12,144.0,1116.15,0.0,1260.15,144.0,253.97,397.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 base-hvac-boiler-gas-only.xml,1605.45,144.0,1116.15,0.0,1260.15,144.0,201.3,345.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-boiler-oil-only.xml,1925.12,144.0,1119.54,0.0,1263.54,0.0,0.0,0.0,0.0,661.58,661.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 base-hvac-boiler-propane-only.xml,1775.73,144.0,1115.36,0.0,1259.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,516.37,516.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-boiler-wood-only.xml,1544.71,144.0,1115.36,0.0,1259.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,285.35,285.35,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,1461.83,144.0,1317.83,0.0,1461.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,1462.42,144.0,1318.42,0.0,1462.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 -base-hvac-central-ac-only-2-speed.xml,1400.26,144.0,1256.26,0.0,1400.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 -base-hvac-central-ac-only-var-speed.xml,1374.37,144.0,1230.37,0.0,1374.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 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1890.95,144.0,1746.95,0.0,1890.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,1459.24,144.0,1315.24,0.0,1459.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 +base-hvac-central-ac-only-1-speed.xml,1459.82,144.0,1315.82,0.0,1459.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,1399.28,144.0,1255.28,0.0,1399.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,1381.34,144.0,1237.34,0.0,1381.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,1367.86,144.0,1223.86,0.0,1367.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1890.94,144.0,1746.94,0.0,1890.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1925.82,144.0,1524.98,0.0,1668.98,144.0,112.84,256.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1928.99,144.0,1488.38,0.0,1632.38,144.0,152.61,296.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1820.36,144.0,1375.51,0.0,1519.51,144.0,156.85,300.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1828.45,144.0,1387.33,0.0,1531.33,144.0,153.12,297.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 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1714.89,144.0,1306.03,0.0,1450.03,144.0,120.86,264.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 -base-hvac-ducts-area-fractions.xml,2486.39,144.0,1713.51,0.0,1857.51,144.0,484.88,628.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 -base-hvac-ducts-area-multipliers.xml,1831.03,144.0,1313.94,0.0,1457.94,144.0,229.09,373.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,1807.08,144.0,1304.85,0.0,1448.85,144.0,214.23,358.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1924.21,144.0,1523.37,0.0,1667.37,144.0,112.84,256.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1927.15,144.0,1486.54,0.0,1630.54,144.0,152.61,296.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1819.69,144.0,1374.84,0.0,1518.84,144.0,156.85,300.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1804.62,144.0,1358.4,0.0,1502.4,144.0,158.22,302.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1728.24,144.0,1319.27,0.0,1463.27,144.0,120.97,264.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 +base-hvac-ducts-area-fractions.xml,2482.98,144.0,1710.09,0.0,1854.09,144.0,484.89,628.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,1829.0,144.0,1311.91,0.0,1455.91,144.0,229.09,373.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,1805.38,144.0,1303.15,0.0,1447.15,144.0,214.23,358.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ducts-defaults.xml,1924.76,144.0,1486.85,0.0,1630.85,144.0,149.91,293.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,1842.48,144.0,1318.65,0.0,1462.65,144.0,235.83,379.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,1833.49,144.0,1314.49,0.0,1458.49,144.0,231.0,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 -base-hvac-ducts-leakage-percent.xml,1860.73,144.0,1326.11,0.0,1470.11,144.0,246.62,390.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 +base-hvac-ducts-effective-rvalue.xml,1840.39,144.0,1316.56,0.0,1460.56,144.0,235.83,379.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,1831.49,144.0,1312.49,0.0,1456.49,144.0,231.0,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 +base-hvac-ducts-leakage-percent.xml,1858.48,144.0,1323.86,0.0,1467.86,144.0,246.62,390.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 base-hvac-elec-resistance-only.xml,1842.97,144.0,1698.97,0.0,1842.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-evap-cooler-furnace-gas.xml,1694.69,144.0,1164.46,0.0,1308.46,144.0,242.23,386.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-evap-cooler-only-ducted.xml,1290.62,144.0,1146.62,0.0,1290.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -214,10 +217,10 @@ base-hvac-evap-cooler-only.xml,1287.46,144.0,1143.46,0.0,1287.46,0.0,0.0,0.0,0.0 base-hvac-fireplace-wood-only.xml,1574.96,144.0,1110.9,0.0,1254.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,320.06,320.06,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-floor-furnace-propane-only.xml,1969.03,144.0,1110.9,0.0,1254.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,714.13,714.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-coal-only.xml,1615.94,144.0,1132.46,0.0,1276.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,339.48,339.48 -base-hvac-furnace-elec-central-ac-1-speed.xml,2214.48,144.0,2070.48,0.0,2214.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 +base-hvac-furnace-elec-central-ac-1-speed.xml,2212.39,144.0,2068.39,0.0,2212.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-elec-only.xml,2056.22,144.0,1912.22,0.0,2056.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 -base-hvac-furnace-gas-central-ac-2-speed.xml,1792.97,144.0,1269.1,0.0,1413.1,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,1768.44,144.0,1244.57,0.0,1388.57,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,1791.95,144.0,1268.08,0.0,1412.08,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,1761.88,144.0,1238.01,0.0,1382.01,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-detailed-setpoints.xml,1486.47,144.0,1119.45,0.0,1263.45,144.0,79.02,223.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-pilot.xml,1712.21,144.0,1132.46,0.0,1276.46,144.0,291.75,435.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only.xml,1660.21,144.0,1132.46,0.0,1276.46,144.0,239.75,383.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 @@ -230,28 +233,32 @@ base-hvac-ground-to-air-heat-pump-cooling-only.xml,1397.25,144.0,1253.25,0.0,139 base-hvac-ground-to-air-heat-pump-detailed.xml,1580.14,144.0,1436.14,0.0,1580.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-heating-only.xml,1464.52,144.0,1320.52,0.0,1464.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 base-hvac-ground-to-air-heat-pump.xml,1598.51,144.0,1454.51,0.0,1598.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 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1930.98,144.0,1786.98,0.0,1930.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1761.0,144.0,1617.0,0.0,1761.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,1740.72,144.0,1596.72,0.0,1740.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1884.28,144.0,1347.98,0.0,1491.98,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1827.16,144.0,1290.86,0.0,1434.86,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1802.71,144.0,1266.41,0.0,1410.41,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1931.76,144.0,1787.76,0.0,1931.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1761.43,144.0,1617.43,0.0,1761.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 +base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1822.8,144.0,1678.8,0.0,1822.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 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1757.81,144.0,1613.81,0.0,1757.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 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1882.6,144.0,1346.3,0.0,1490.3,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1825.97,144.0,1289.67,0.0,1433.67,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1797.25,144.0,1260.95,0.0,1404.95,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,1671.13,144.0,1127.65,0.0,1271.65,144.0,255.48,399.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-ground-to-air-heat-pump.xml,1673.37,144.0,1529.37,0.0,1673.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 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1385.1,144.0,1241.1,0.0,1385.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1629.25,144.0,1485.25,0.0,1629.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,1362.65,144.0,1218.65,0.0,1362.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,1360.39,144.0,1216.39,0.0,1360.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1337.99,144.0,1193.99,0.0,1337.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 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1470.97,144.0,1326.97,0.0,1470.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,1552.47,144.0,1408.47,0.0,1552.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 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1542.16,144.0,1398.16,0.0,1542.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1696.77,144.0,1313.42,0.0,1457.42,144.0,95.35,239.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1689.58,144.0,1307.29,0.0,1451.29,144.0,94.29,238.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1876.57,144.0,1303.96,0.0,1447.96,0.0,0.0,0.0,0.0,428.61,428.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 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1527.9,144.0,1383.9,0.0,1527.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,1527.9,144.0,1383.9,0.0,1527.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,2484.2,144.0,1901.8,0.0,2045.8,144.0,74.03,218.03,0.0,122.88,122.88,0.0,97.49,97.49,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,1387.05,144.0,1243.05,0.0,1387.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1662.89,144.0,1518.89,0.0,1662.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 +base-hvac-mini-split-air-conditioner-only-ducted.xml,1362.71,144.0,1218.71,0.0,1362.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 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,1352.43,144.0,1208.43,0.0,1352.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 +base-hvac-mini-split-air-conditioner-only-ductless.xml,1366.2,144.0,1222.2,0.0,1366.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1335.72,144.0,1191.72,0.0,1335.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,1628.54,144.0,1484.54,0.0,1628.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 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1502.06,144.0,1358.06,0.0,1502.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 +base-hvac-mini-split-heat-pump-ducted.xml,1584.35,144.0,1440.35,0.0,1584.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1572.03,144.0,1428.03,0.0,1572.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1722.04,144.0,1338.69,0.0,1482.69,144.0,95.35,239.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1713.96,144.0,1331.67,0.0,1475.67,144.0,94.29,238.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1901.83,144.0,1329.22,0.0,1473.22,0.0,0.0,0.0,0.0,428.61,428.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 +base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1574.13,144.0,1430.13,0.0,1574.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1546.39,144.0,1402.39,0.0,1546.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,1546.39,144.0,1402.39,0.0,1546.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,2490.2,144.0,1907.2,0.0,2051.2,144.0,74.17,218.17,0.0,123.13,123.13,0.0,97.7,97.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,2513.83,144.0,2369.83,0.0,2513.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-electricity.xml,2010.26,144.0,1866.26,0.0,2010.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 base-hvac-ptac-with-heating-natural-gas.xml,1774.46,144.0,1272.07,0.0,1416.07,144.0,214.39,358.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 @@ -264,12 +271,12 @@ base-hvac-room-ac-only-detailed-setpoints.xml,1408.31,144.0,1264.31,0.0,1408.31, base-hvac-room-ac-only.xml,1453.89,144.0,1309.89,0.0,1453.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 base-hvac-room-ac-with-heating.xml,2051.76,144.0,1907.76,0.0,2051.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-room-ac-with-reverse-cycle.xml,1677.79,144.0,1533.79,0.0,1677.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 -base-hvac-seasons.xml,1838.95,144.0,1316.81,0.0,1460.81,144.0,234.14,378.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,1814.05,144.0,1296.21,0.0,1440.21,144.0,229.84,373.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,1811.33,144.0,1301.77,0.0,1445.77,144.0,221.56,365.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,1616.3,144.0,1251.09,0.0,1395.09,144.0,77.21,221.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,1836.88,144.0,1314.74,0.0,1458.74,144.0,234.14,378.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,1812.2,144.0,1294.36,0.0,1438.36,144.0,229.84,373.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,1809.48,144.0,1299.92,0.0,1443.92,144.0,221.56,365.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,1614.85,144.0,1249.64,0.0,1393.64,144.0,77.21,221.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-space-heater-gas-only.xml,1568.61,144.0,1110.86,0.0,1254.86,144.0,169.75,313.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-stove-oil-only.xml,2000.7,144.0,1113.26,0.0,1257.26,0.0,0.0,0.0,0.0,743.44,743.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-hvac-stove-wood-pellets-only.xml,1576.11,144.0,1113.26,0.0,1257.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,318.85,318.85,0.0,0.0,0.0 -base-hvac-undersized.xml,1660.68,144.0,1211.15,0.0,1355.15,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 +base-hvac-undersized.xml,1662.04,144.0,1212.49,0.0,1356.49,144.0,161.55,305.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-wall-furnace-elec-only.xml,1854.96,144.0,1710.96,0.0,1854.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 From 0c18e95a44fc32fc9658e68981dc081c5515e053 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Mon, 13 Nov 2023 16:21:50 -0700 Subject: [PATCH 201/217] Few more updates in docs. --- docs/source/workflow_inputs.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index f6b039ca27..65a53d8226 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2276,7 +2276,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ``SystemIdentifier`` id Yes Unique identifier ``LoopConfiguration`` string vertical Yes ``LoopFlow`` double gal/min > 0 No autosized [#]_ Water flow rate through the geothermal loop - ``BoreholesOrTrenches/Count`` integer > 0 [#]_ No autosized [#]_ + ``BoreholesOrTrenches/Count`` integer >= 1, <= 10 No [#]_ autosized [#]_ ``BoreholesOrTrenches/Length`` double ft See [#]_ No autosized [#]_ Length (i.e., average depth) of each borehole ``BoreholesOrTrenches/Spacing`` double ft > 0 No 16.4 Distance between boreholes ``BoreholesOrTrenches/Diameter`` double in > 0 No 5.0 @@ -2287,7 +2287,8 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ``extension/BorefieldConfiguration`` string See [#]_ No Rectangle ======================================== ================ =========== =============== ======== ============== =============================================== - .. [#] LoopFlow autosized by calculating 3 times the maximum of the ground source heat pump's heating/cooling capacity in tons. The LoopFlow minimum autosized value is 3 gal/min. + .. [#] LoopFlow autosized by calculating 3 times the maximum of the ground source heat pump's heating/cooling capacity in tons. + The LoopFlow minimum autosized value is 3 gal/min. .. [#] If extension/BorefieldConfiguration provided, and it is not **Rectangle**, a valid BoreholesOrTrenches/Count must also be provided: \- **Rectangle**: 1, 2, 3, 4, 5, 6, 7, 8, 9, or 10 From 90ec46ae1adad170d13466310b6b9d9e7b84549b Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 14 Nov 2023 09:05:23 -0700 Subject: [PATCH 202/217] Move g_functions directory under the data directory. --- .gitignore | 2 +- HPXMLtoOpenStudio/measure.xml | 46 +++++++++---------- .../g_functions/C_configurations_5m_v1.0.json | 0 .../g_functions/L_configurations_5m_v1.0.json | 0 .../LopU_configurations_5m_v1.0.json | 0 .../Open_configurations_5m_v1.0.json | 0 .../{ => data}/g_functions/README.md | 0 .../g_functions/U_configurations_5m_v1.0.json | 0 .../g_functions/rectangle_5m_v1.0.json | 0 .../resources/{ => data}/g_functions/util.rb | 0 HPXMLtoOpenStudio/resources/hvac_sizing.rb | 2 +- tasks.rb | 4 +- 12 files changed, 27 insertions(+), 27 deletions(-) rename HPXMLtoOpenStudio/resources/{ => data}/g_functions/C_configurations_5m_v1.0.json (100%) rename HPXMLtoOpenStudio/resources/{ => data}/g_functions/L_configurations_5m_v1.0.json (100%) rename HPXMLtoOpenStudio/resources/{ => data}/g_functions/LopU_configurations_5m_v1.0.json (100%) rename HPXMLtoOpenStudio/resources/{ => data}/g_functions/Open_configurations_5m_v1.0.json (100%) rename HPXMLtoOpenStudio/resources/{ => data}/g_functions/README.md (100%) rename HPXMLtoOpenStudio/resources/{ => data}/g_functions/U_configurations_5m_v1.0.json (100%) rename HPXMLtoOpenStudio/resources/{ => data}/g_functions/rectangle_5m_v1.0.json (100%) rename HPXMLtoOpenStudio/resources/{ => data}/g_functions/util.rb (100%) diff --git a/.gitignore b/.gitignore index 560959e47d..afecbe2d99 100644 --- a/.gitignore +++ b/.gitignore @@ -1015,4 +1015,4 @@ /ReportUtilityBills/resources/detailed_rates/*.json !/ReportUtilityBills/resources/detailed_rates/Sample*.json /ReportUtilityBills/tests/results_bills.csv -/HPXMLtoOpenStudio/resources/g_functions/g-function_library_1.0 +/HPXMLtoOpenStudio/resources/data/g_functions/g-function_library_1.0 diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 3302d8b6c7..57d7cf3038 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 8d7c2498-0a41-47de-875d-024a08701dd7 - 2023-11-14T15:52:59Z + 4020d120-221e-41ae-b855-56e0ee55cdac + 2023-11-14T15:57:34Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -223,65 +223,65 @@ 63C6A1E2 - data/unavailable_periods.csv - csv - resource - 1E3D66E6 - - - energyplus.rb - rb - resource - 801A6A26 - - - g_functions/C_configurations_5m_v1.0.json + data/g_functions/C_configurations_5m_v1.0.json json resource E97DCCDD - g_functions/L_configurations_5m_v1.0.json + data/g_functions/L_configurations_5m_v1.0.json json resource 6B2B3787 - g_functions/LopU_configurations_5m_v1.0.json + data/g_functions/LopU_configurations_5m_v1.0.json json resource B13FA813 - g_functions/Open_configurations_5m_v1.0.json + data/g_functions/Open_configurations_5m_v1.0.json json resource FF25A024 - g_functions/README.md + data/g_functions/README.md md resource 3A6546AB - g_functions/U_configurations_5m_v1.0.json + data/g_functions/U_configurations_5m_v1.0.json json resource B5BEF270 - g_functions/rectangle_5m_v1.0.json + data/g_functions/rectangle_5m_v1.0.json json resource 25FFB6A8 - g_functions/util.rb + data/g_functions/util.rb rb resource 2BEF07FA + + data/unavailable_periods.csv + csv + resource + 1E3D66E6 + + + energyplus.rb + rb + resource + 801A6A26 + generator.rb rb @@ -346,7 +346,7 @@ hvac_sizing.rb rb resource - 3A66C9A0 + FE4B7D21 lighting.rb diff --git a/HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/data/g_functions/C_configurations_5m_v1.0.json similarity index 100% rename from HPXMLtoOpenStudio/resources/g_functions/C_configurations_5m_v1.0.json rename to HPXMLtoOpenStudio/resources/data/g_functions/C_configurations_5m_v1.0.json diff --git a/HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/data/g_functions/L_configurations_5m_v1.0.json similarity index 100% rename from HPXMLtoOpenStudio/resources/g_functions/L_configurations_5m_v1.0.json rename to HPXMLtoOpenStudio/resources/data/g_functions/L_configurations_5m_v1.0.json diff --git a/HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/data/g_functions/LopU_configurations_5m_v1.0.json similarity index 100% rename from HPXMLtoOpenStudio/resources/g_functions/LopU_configurations_5m_v1.0.json rename to HPXMLtoOpenStudio/resources/data/g_functions/LopU_configurations_5m_v1.0.json diff --git a/HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/data/g_functions/Open_configurations_5m_v1.0.json similarity index 100% rename from HPXMLtoOpenStudio/resources/g_functions/Open_configurations_5m_v1.0.json rename to HPXMLtoOpenStudio/resources/data/g_functions/Open_configurations_5m_v1.0.json diff --git a/HPXMLtoOpenStudio/resources/g_functions/README.md b/HPXMLtoOpenStudio/resources/data/g_functions/README.md similarity index 100% rename from HPXMLtoOpenStudio/resources/g_functions/README.md rename to HPXMLtoOpenStudio/resources/data/g_functions/README.md diff --git a/HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json b/HPXMLtoOpenStudio/resources/data/g_functions/U_configurations_5m_v1.0.json similarity index 100% rename from HPXMLtoOpenStudio/resources/g_functions/U_configurations_5m_v1.0.json rename to HPXMLtoOpenStudio/resources/data/g_functions/U_configurations_5m_v1.0.json diff --git a/HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json b/HPXMLtoOpenStudio/resources/data/g_functions/rectangle_5m_v1.0.json similarity index 100% rename from HPXMLtoOpenStudio/resources/g_functions/rectangle_5m_v1.0.json rename to HPXMLtoOpenStudio/resources/data/g_functions/rectangle_5m_v1.0.json diff --git a/HPXMLtoOpenStudio/resources/g_functions/util.rb b/HPXMLtoOpenStudio/resources/data/g_functions/util.rb similarity index 100% rename from HPXMLtoOpenStudio/resources/g_functions/util.rb rename to HPXMLtoOpenStudio/resources/data/g_functions/util.rb diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index d5d0b4eeeb..3afd7cf09a 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -2031,7 +2031,7 @@ def self.valid_bore_configs def self.get_g_functions_json(g_functions_filename) require 'json' - g_functions_filepath = File.join(File.dirname(__FILE__), 'g_functions', g_functions_filename) + g_functions_filepath = File.join(File.dirname(__FILE__), 'data/g_functions', g_functions_filename) g_functions_json = JSON.parse(File.read(g_functions_filepath), symbolize_names: true) return g_functions_json end diff --git a/tasks.rb b/tasks.rb index a69ff0ea9f..b1b0f8013f 100644 --- a/tasks.rb +++ b/tasks.rb @@ -2480,9 +2480,9 @@ def download_utility_rates end def download_g_functions - require_relative 'HPXMLtoOpenStudio/resources/g_functions/util' + require_relative 'HPXMLtoOpenStudio/resources/data/g_functions/util' - g_functions_dir = File.join(File.dirname(__FILE__), 'HPXMLtoOpenStudio/resources/g_functions') + g_functions_dir = File.join(File.dirname(__FILE__), 'HPXMLtoOpenStudio/resources/data/g_functions') FileUtils.mkdir(g_functions_dir) if !File.exist?(g_functions_dir) filepath = File.join(g_functions_dir, 'g-function_library_1.0') From df577b88ca10b57ab126ecd423d34957e6eb883d Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 14 Nov 2023 09:08:24 -0700 Subject: [PATCH 203/217] Remove old ground conductivity lines in epvalidator. --- HPXMLtoOpenStudio/measure.xml | 12 +++++++++--- .../resources/hpxml_schematron/EPvalidator.xml | 2 -- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 57d7cf3038..256f5a2a4f 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 4020d120-221e-41ae-b855-56e0ee55cdac - 2023-11-14T15:57:34Z + d319391f-06db-47dd-8ee4-f806856cf0d3 + 2023-11-14T16:07:55Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -258,6 +258,12 @@ resource B5BEF270 + + data/g_functions/g-function_library_1.0/zoned_rectangle_5m_v1.0.json + json + resource + 6A4C47AD + data/g_functions/rectangle_5m_v1.0.json json @@ -328,7 +334,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 2CE13E5B + F61C9BE5 hpxml_schematron/iso-schematron.xsd diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 19874c5184..d3dcd9921c 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -326,8 +326,6 @@ Expected 0 or 1 element(s) for xpath: SiteType Expected 0 or 1 element(s) for xpath: ShieldingofHome Expected ShieldingofHome to be 'well-shielded' or 'normal' or 'exposed' - Expected 0 or 1 element(s) for xpath: extension/GroundConductivity - Expected extension/GroundConductivity to be greater than 0 Expected 0 or 1 element(s) for xpath: Soil Expected 0 or 1 element(s) for xpath: extension/Neighbors From 202a041e017a2c1cdc50c173a86a987bcc05c4cd Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 14 Nov 2023 16:49:04 +0000 Subject: [PATCH 204/217] Latest results. --- .../results_workflow_simulations1.csv | 372 +++++++++--------- .../results_workflow_simulations1_bills.csv | 368 ++++++++--------- 2 files changed, 370 insertions(+), 370 deletions(-) diff --git a/workflow/tests/base_results/results_workflow_simulations1.csv b/workflow/tests/base_results/results_workflow_simulations1.csv index f0742b5610..7ecdcf6404 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -1,179 +1,179 @@ HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Permanent Spa Heater (MBtu),End Use: Electricity: Permanent Spa Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Permanent Spa Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu),Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Resilience: Battery (hr),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) -base-appliances-coal.xml,59.654,59.654,33.175,33.175,21.613,0.0,0.0,0.0,0.0,4.866,0.0,0.357,0.0,0.0,4.479,0.849,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3361.9,3361.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-portable.xml,34.617,34.617,33.334,33.334,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.025,1.876,6.707,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,0.0,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.133,0.0,31.411,6.562,0.571,0.0,0.0,0.0,0.0,2082.6,2847.3,2847.3,9.452,15.099,0.0,1.741,1.624,0.0,0.0,0.393,4.909,-4.778,0.0,0.0,0.0,1.255,-0.399,1.048,0.077,0.392,0.0,0.032,-4.653,-0.755,0.0,0.498,-0.057,0.0,0.0,0.202,2.738,17.393,0.0,0.0,0.0,1.73,-0.394,-0.346,-1.931,-0.099,0.0,0.358,9.611,1.892,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-dehumidifier-ief-whole-home.xml,34.646,34.646,33.383,33.383,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.024,1.876,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.64,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,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.121,0.0,31.402,6.562,0.571,0.0,0.0,0.0,0.0,2101.2,2847.3,2847.3,9.474,15.099,0.0,1.746,1.629,0.0,0.0,0.394,4.93,-4.783,0.0,0.0,0.0,1.261,-0.399,1.053,0.078,0.394,0.0,0.031,-4.697,-0.758,0.0,0.502,-0.053,0.0,0.0,0.204,2.757,17.387,0.0,0.0,0.0,1.734,-0.394,-0.342,-1.926,-0.097,0.0,0.358,9.588,1.889,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-dehumidifier-multiple.xml,34.615,34.615,33.262,33.262,1.352,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,9.014,1.874,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.531,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,1.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.205,0.0,31.373,6.562,0.571,0.0,0.0,0.0,0.0,1986.8,2847.3,2847.3,9.538,15.099,0.0,1.749,1.629,0.0,0.0,0.392,4.889,-4.85,0.0,0.0,0.0,1.269,-0.389,1.046,0.076,0.393,0.0,0.034,-4.524,-0.759,0.0,0.511,-0.047,0.0,0.0,0.203,2.736,17.321,0.0,0.0,0.0,1.763,-0.384,-0.345,-1.922,-0.097,0.0,0.358,9.577,1.888,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-dehumidifier.xml,34.584,34.584,33.315,33.315,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,9.017,1.874,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.58,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,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.134,0.0,31.369,6.562,0.571,0.0,0.0,0.0,0.0,1974.6,2847.3,2847.3,9.517,15.099,0.0,1.761,1.641,0.0,0.0,0.395,4.941,-4.857,0.0,0.0,0.0,1.272,-0.396,1.056,0.078,0.397,0.0,0.031,-4.672,-0.765,0.0,0.522,-0.036,0.0,0.0,0.206,2.78,17.314,0.0,0.0,0.0,1.759,-0.391,-0.336,-1.924,-0.093,0.0,0.358,9.545,1.882,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-appliances-gas.xml,59.654,59.654,33.175,33.175,26.479,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.479,0.849,9.016,0.0,0.0,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,21.613,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.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3361.9,3361.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,58.272,58.272,36.859,36.859,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,4.508,0.856,9.541,0.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,0.0,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.053,0.0,14.889,9.641,0.613,0.0,0.0,0.0,0.0,2160.4,3436.0,3436.0,22.968,19.151,0.0,3.567,3.65,0.514,7.552,0.632,10.119,-12.663,0.0,0.0,0.0,8.335,-0.066,5.409,0.0,0.0,0.0,4.671,-9.525,-2.496,0.0,-0.075,-0.48,-0.054,2.643,-0.03,-1.454,11.75,0.0,0.0,0.0,-6.421,-0.063,-1.323,-3.168,0.0,0.0,3.234,8.51,2.014,1354.8,1997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,52.503,52.503,28.315,28.315,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,4.052,0.748,7.784,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,0.0,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.653,0.0,12.992,7.75,0.615,0.0,0.0,0.0,0.0,1855.8,2957.5,2957.5,23.37,17.934,0.0,3.528,3.626,0.51,7.473,0.627,10.055,-12.698,0.0,0.0,0.0,8.25,-0.062,5.397,0.0,0.0,0.0,5.202,-7.087,-2.503,0.0,-0.005,-0.425,-0.046,2.794,-0.016,-1.285,11.715,0.0,0.0,0.0,-6.168,-0.058,-1.269,-2.935,0.0,0.0,2.899,5.974,2.006,0.0,0.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-oil.xml,59.654,59.654,33.175,33.175,21.613,4.866,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.479,0.849,9.016,0.0,0.0,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,21.613,0.0,0.0,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.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3361.9,3361.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-propane.xml,59.654,59.654,33.175,33.175,21.613,0.0,4.866,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.479,0.849,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3361.9,3361.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,59.654,59.654,33.175,33.175,21.613,0.0,0.0,4.866,0.0,0.0,0.0,0.357,0.0,0.0,4.479,0.849,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3361.9,3361.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,61.378,61.378,35.758,35.758,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,4.245,0.796,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.973,0.0,13.668,9.075,0.615,0.0,0.0,0.0,0.0,2143.4,3127.2,3127.2,22.717,16.559,6.771,0.0,4.231,0.513,7.508,0.633,12.688,-15.638,0.0,0.0,0.0,8.371,-0.086,9.316,0.0,0.729,0.0,0.0,-8.932,-2.503,0.124,0.0,-0.517,-0.049,2.739,-0.02,-1.228,15.662,0.0,0.0,0.0,-6.364,-0.061,-2.102,-3.934,-0.159,0.0,0.0,7.847,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,63.131,63.131,40.528,40.528,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.907,0.953,8.922,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,0.0,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.151,0.0,16.414,9.023,0.613,0.0,0.0,0.0,0.0,2374.2,3678.4,3678.4,22.528,19.797,4.57,1.168,5.569,0.52,7.699,0.639,14.497,-17.149,0.0,0.0,0.0,8.589,-0.089,7.111,0.0,0.733,0.0,0.273,-10.225,-3.182,-0.013,0.016,-0.589,-0.055,2.657,-0.033,-1.932,17.689,0.0,0.0,0.0,-6.404,-0.083,-1.707,-4.231,-0.168,0.0,0.093,8.938,2.569,1354.8,997.6,11171.6,2471.3,0.0,36000.0,24000.0,0.0,6.8,91.76,31468.0,778.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,54.485,54.485,35.033,35.033,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.321,0.0,0.0,3.736,0.682,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.203,0.0,11.696,9.075,0.614,0.0,0.0,0.0,0.0,2104.8,2715.9,2715.9,17.648,12.83,6.045,0.0,3.619,0.509,7.464,0.625,10.031,-12.687,0.0,0.0,0.0,8.217,-0.076,4.799,0.0,0.728,0.0,0.0,-8.908,-2.5,0.291,0.0,-0.456,-0.051,2.711,-0.025,-1.387,11.721,0.0,0.0,0.0,-6.302,-0.051,-1.158,-3.067,-0.164,0.0,0.0,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,37.386,37.386,33.234,33.234,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.422,1.949,6.714,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,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.834,0.0,32.579,6.562,0.579,0.0,0.0,0.0,0.0,1906.5,3249.1,3249.1,13.531,18.845,0.0,6.126,1.575,0.0,0.0,0.335,4.353,-5.899,0.0,0.0,0.0,0.826,-0.36,0.993,0.0,0.397,0.0,0.103,-3.998,-0.844,0.0,2.403,0.135,0.0,0.0,0.203,2.884,16.272,0.0,0.0,0.0,2.056,-0.352,-0.28,-1.733,-0.052,0.0,0.379,9.165,1.803,1354.8,997.6,9789.3,2412.1,0.0,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,22161.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1630.0,438.0,393.0,800.0 -base-atticroof-unvented-insulated-roof.xml,57.002,57.002,35.19,35.19,21.812,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,3.836,0.7,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,20.413,0.0,11.97,9.075,0.615,0.0,0.0,0.0,0.0,2127.6,2857.3,2857.3,19.246,14.108,0.0,5.475,3.627,0.51,7.484,0.627,10.053,-12.69,0.0,0.0,0.0,8.285,-0.062,4.803,0.0,0.729,0.0,2.654,-8.912,-2.5,0.0,-1.478,-0.423,-0.046,2.812,-0.016,-1.287,11.723,0.0,0.0,0.0,-6.128,-0.053,-1.135,-2.92,-0.161,0.0,1.442,7.867,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,30482.0,4823.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1772.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,57.62,57.62,35.54,35.54,22.08,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.974,0.733,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.675,0.0,12.646,9.075,0.803,0.0,0.0,0.0,0.0,2132.8,2996.8,2996.8,21.537,15.351,0.0,3.899,3.639,0.512,7.515,0.63,10.087,-12.691,0.0,0.0,0.0,8.3,-0.062,4.804,0.0,0.729,0.0,4.066,-8.579,-2.5,0.0,-0.528,-0.448,-0.05,2.73,-0.022,-1.358,11.723,0.0,0.0,0.0,-6.278,-0.058,-1.157,-3.029,-0.164,0.0,1.937,7.585,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16425.0,3714.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,59.875,59.875,37.608,37.608,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3503.8,3503.8,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,1.302,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-battery.xml,58.14,58.14,35.874,35.874,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3389.8,3389.8,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,36.306,36.306,24.681,24.681,11.625,0.0,0.0,0.0,0.0,0.0,0.0,0.085,0.0,0.0,1.632,0.207,9.675,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,11.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,10.777,0.0,3.158,9.374,0.73,0.0,0.0,0.0,0.0,1571.2,2034.9,2034.9,7.666,6.063,0.0,2.942,3.651,0.0,0.0,0.583,1.31,-1.593,0.0,0.0,2.978,0.0,-0.037,1.669,0.0,0.0,0.0,4.662,-4.243,-1.184,0.0,-0.933,-0.243,0.0,0.0,-0.056,-0.113,1.309,0.0,0.0,-0.947,0.0,-0.033,-0.288,-0.351,0.0,0.0,0.578,3.429,0.842,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12345.0,5658.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,31.521,31.521,25.171,25.171,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,2.162,0.321,9.559,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,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.89,0.0,5.253,9.374,0.609,0.0,0.0,0.0,0.0,1559.2,2243.1,2243.1,9.392,10.995,0.0,-0.004,3.304,0.0,0.0,1.394,3.736,-4.206,0.0,0.0,4.616,0.0,-0.071,1.253,0.0,0.793,0.0,2.37,-6.264,-1.136,0.0,-0.0,-0.473,0.0,0.0,-0.429,-0.211,4.0,0.0,0.0,-3.092,0.0,-0.066,-0.251,-1.127,-0.133,0.0,0.503,5.735,0.89,1354.8,997.6,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12328.0,5013.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,49.42,49.42,24.682,24.682,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,1.487,0.172,9.76,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,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.939,0.0,2.588,9.374,0.818,0.0,0.0,0.0,0.0,1572.9,2211.0,2211.0,11.077,8.634,0.0,5.361,4.203,0.0,0.0,0.789,1.288,-1.709,0.0,0.0,5.413,0.0,-0.062,1.7,0.0,0.0,0.0,11.645,-4.474,-1.246,0.0,-1.205,-0.066,0.0,0.0,-0.056,-0.008,1.194,0.0,0.0,-1.212,0.0,-0.057,-0.194,-0.279,0.0,0.0,0.544,3.198,0.781,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,14592.0,6778.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,25.864,25.864,24.547,24.547,1.317,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.657,0.213,9.585,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.22,0.0,3.264,9.374,0.636,0.0,0.0,0.0,0.0,1558.6,1862.4,1862.4,3.415,6.065,0.0,0.378,3.172,0.0,0.0,0.381,1.385,-1.507,0.0,0.0,0.401,0.0,-0.006,1.706,0.0,0.0,0.0,0.374,-4.015,-1.12,0.0,-0.84,-0.474,0.0,0.0,-0.078,-0.221,1.396,0.0,0.0,-0.856,0.0,-0.002,-0.396,-0.392,0.0,0.0,0.597,3.657,0.907,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,8331.0,3673.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,26.169,26.169,25.107,25.107,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.147,0.333,9.537,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,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.984,0.0,5.308,9.374,0.586,0.0,0.0,0.0,0.0,1578.0,1738.4,1738.4,3.705,4.57,0.0,-0.004,3.199,0.0,0.0,0.372,1.434,-1.384,0.0,0.0,-0.004,0.0,-0.074,1.765,0.0,0.0,0.0,0.306,-3.658,-1.009,0.0,-0.001,-0.583,0.0,0.0,-0.044,-0.373,1.518,0.0,0.0,-0.001,0.0,-0.071,-0.543,-0.515,0.0,0.0,0.944,4.015,1.017,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,7886.0,3453.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,6279.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-infil-compartmentalization-test.xml,26.778,26.778,26.261,26.261,0.517,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.087,0.562,9.526,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.517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,9.42,9.374,0.574,0.0,0.0,0.0,0.0,1667.1,1948.8,1948.8,3.251,7.677,0.0,-0.015,2.451,0.0,0.0,0.424,3.906,-2.465,0.0,0.0,-0.01,0.0,-0.396,0.991,0.0,0.666,0.0,0.0,-4.45,-0.746,0.0,-0.01,-1.157,0.0,0.0,-0.049,-1.212,5.738,0.0,0.0,-0.005,0.0,-0.386,-0.414,-1.343,-0.41,0.0,0.0,7.514,1.28,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 -base-bldgtype-mf-unit-residents-1.xml,19.866,19.866,18.645,18.645,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.466,0.409,4.527,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,0.0,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,7.202,4.144,0.584,0.0,0.0,0.0,0.0,1141.6,1667.9,1667.9,3.916,7.195,0.0,-0.018,2.578,0.0,0.0,0.425,4.087,-3.005,0.0,0.0,-0.017,0.0,-0.365,1.302,0.0,0.742,0.0,0.0,-3.753,-0.915,0.0,-0.013,-0.841,0.0,0.0,-0.013,-0.739,5.197,0.0,0.0,-0.012,0.0,-0.356,-0.408,-1.204,-0.286,0.0,0.0,4.875,1.111,817.2,530.6,4684.1,1314.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,27.273,27.273,26.623,26.623,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.031,0.0,0.0,3.149,0.833,9.527,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.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,4.0,1675.4,1994.4,1994.4,3.451,7.024,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,28.096,28.096,27.403,27.403,0.694,0.0,0.0,0.0,0.0,0.0,0.0,0.055,0.0,0.0,3.795,0.943,9.527,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.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,0.616,0.0,10.479,9.374,0.576,0.0,0.0,0.0,10.0,1705.4,2197.7,2197.7,3.597,8.162,0.0,-0.015,2.472,0.0,0.0,0.423,3.919,-2.555,0.0,0.0,-0.011,0.0,-0.392,1.275,0.0,0.675,0.0,0.036,-4.548,-0.767,0.0,-0.01,-1.111,0.0,0.0,-0.046,-1.16,5.647,0.0,0.0,-0.005,0.0,-0.382,-0.522,-1.34,-0.394,0.0,1.253,7.418,1.259,1354.8,997.6,11171.5,3093.4,0.0,8647.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,27.567,27.567,26.951,26.951,0.616,0.0,0.0,0.0,0.0,0.0,0.0,0.074,0.0,0.0,3.434,0.833,9.527,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.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,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,4.0,1686.3,2058.1,2058.1,3.449,7.024,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,33.017,33.017,32.511,32.511,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,8.895,0.943,9.527,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.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,0.594,0.0,10.479,9.374,0.576,0.0,0.0,0.0,10.0,2183.2,3390.5,3390.5,3.53,8.162,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.045,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.253,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.718,27.718,27.212,27.212,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,3.596,0.943,9.527,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.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,0.594,0.0,10.479,9.374,0.576,0.0,0.0,0.0,10.0,1697.8,2150.9,2150.9,3.53,8.162,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.045,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.253,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-appliances-coal.xml,59.618,59.618,33.14,33.14,21.613,0.0,0.0,0.0,0.0,4.866,0.0,0.357,0.0,0.0,4.443,0.849,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3346.9,3346.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-portable.xml,34.535,34.535,33.252,33.252,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.943,1.876,6.707,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,0.0,1.284,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.133,0.0,31.411,6.562,0.571,0.0,0.0,0.0,0.0,2082.6,2832.6,2832.6,9.452,15.099,0.0,1.741,1.624,0.0,0.0,0.393,4.909,-4.778,0.0,0.0,0.0,1.255,-0.399,1.048,0.077,0.392,0.0,0.032,-4.653,-0.755,0.0,0.498,-0.057,0.0,0.0,0.202,2.738,17.393,0.0,0.0,0.0,1.73,-0.394,-0.346,-1.931,-0.099,0.0,0.358,9.611,1.892,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier-ief-whole-home.xml,34.564,34.564,33.301,33.301,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,8.942,1.876,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.64,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,1.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.121,0.0,31.402,6.562,0.571,0.0,0.0,0.0,0.0,2101.2,2832.6,2832.6,9.474,15.099,0.0,1.746,1.629,0.0,0.0,0.394,4.93,-4.783,0.0,0.0,0.0,1.261,-0.399,1.053,0.078,0.394,0.0,0.031,-4.697,-0.758,0.0,0.502,-0.053,0.0,0.0,0.204,2.757,17.387,0.0,0.0,0.0,1.734,-0.394,-0.342,-1.926,-0.097,0.0,0.358,9.588,1.889,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier-multiple.xml,34.533,34.533,33.18,33.18,1.352,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,8.932,1.874,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.531,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,1.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.205,0.0,31.373,6.562,0.571,0.0,0.0,0.0,0.0,1986.8,2832.6,2832.6,9.538,15.099,0.0,1.749,1.629,0.0,0.0,0.392,4.889,-4.85,0.0,0.0,0.0,1.269,-0.389,1.046,0.076,0.393,0.0,0.034,-4.524,-0.759,0.0,0.511,-0.047,0.0,0.0,0.203,2.736,17.321,0.0,0.0,0.0,1.763,-0.384,-0.345,-1.922,-0.097,0.0,0.358,9.577,1.888,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-dehumidifier.xml,34.502,34.502,33.233,33.233,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,8.935,1.874,6.707,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.58,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,1.269,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.134,0.0,31.369,6.562,0.571,0.0,0.0,0.0,0.0,1974.6,2832.6,2832.6,9.517,15.099,0.0,1.761,1.641,0.0,0.0,0.395,4.941,-4.857,0.0,0.0,0.0,1.272,-0.396,1.056,0.078,0.397,0.0,0.031,-4.672,-0.765,0.0,0.522,-0.036,0.0,0.0,0.206,2.78,17.314,0.0,0.0,0.0,1.759,-0.391,-0.336,-1.924,-0.093,0.0,0.358,9.545,1.882,1354.8,997.6,9789.2,2412.1,0.0,24000.0,24000.0,0.0,25.88,98.42,20378.0,1386.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,15384.0,72.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-appliances-gas.xml,59.618,59.618,33.14,33.14,26.479,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.443,0.849,9.016,0.0,0.0,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,21.613,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.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3346.9,3346.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,58.236,58.236,36.823,36.823,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,4.472,0.856,9.541,0.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,0.0,21.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.053,0.0,14.889,9.641,0.613,0.0,0.0,0.0,0.0,2160.4,3418.6,3418.6,22.968,19.151,0.0,3.567,3.65,0.514,7.552,0.632,10.119,-12.663,0.0,0.0,0.0,8.335,-0.066,5.409,0.0,0.0,0.0,4.671,-9.525,-2.496,0.0,-0.075,-0.48,-0.054,2.643,-0.03,-1.454,11.75,0.0,0.0,0.0,-6.421,-0.063,-1.323,-3.168,0.0,0.0,3.234,8.51,2.014,1354.8,1997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,52.471,52.471,28.283,28.283,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.399,0.0,0.0,4.021,0.748,7.784,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,0.0,24.188,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.653,0.0,12.992,7.75,0.615,0.0,0.0,0.0,0.0,1855.8,2941.1,2941.1,23.37,17.934,0.0,3.528,3.626,0.51,7.473,0.627,10.055,-12.698,0.0,0.0,0.0,8.25,-0.062,5.397,0.0,0.0,0.0,5.202,-7.087,-2.503,0.0,-0.005,-0.425,-0.046,2.794,-0.016,-1.285,11.715,0.0,0.0,0.0,-6.168,-0.058,-1.269,-2.935,0.0,0.0,2.899,5.974,2.006,0.0,0.0,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-oil.xml,59.618,59.618,33.14,33.14,21.613,4.866,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.443,0.849,9.016,0.0,0.0,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,21.613,0.0,0.0,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.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3346.9,3346.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-propane.xml,59.618,59.618,33.14,33.14,21.613,0.0,4.866,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.443,0.849,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3346.9,3346.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,59.618,59.618,33.14,33.14,21.613,0.0,0.0,4.866,0.0,0.0,0.0,0.357,0.0,0.0,4.443,0.849,9.016,0.0,0.0,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,21.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.24,0.0,14.751,9.075,0.613,0.0,0.0,0.0,0.0,1992.2,3346.9,3346.9,22.969,19.235,0.0,3.565,3.65,0.514,7.547,0.632,10.117,-12.669,0.0,0.0,0.0,8.333,-0.067,4.985,0.0,0.487,0.0,4.708,-9.415,-2.497,0.0,-0.069,-0.476,-0.054,2.654,-0.029,-1.441,11.744,0.0,0.0,0.0,-6.402,-0.063,-1.221,-3.152,-0.112,0.0,3.21,8.341,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,61.345,61.345,35.725,35.725,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.423,0.0,0.0,4.212,0.796,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.973,0.0,13.668,9.075,0.615,0.0,0.0,0.0,0.0,2143.4,3112.0,3112.0,22.717,16.559,6.771,0.0,4.231,0.513,7.508,0.633,12.688,-15.638,0.0,0.0,0.0,8.371,-0.086,9.316,0.0,0.729,0.0,0.0,-8.932,-2.503,0.124,0.0,-0.517,-0.049,2.739,-0.02,-1.228,15.662,0.0,0.0,0.0,-6.364,-0.061,-2.102,-3.934,-0.159,0.0,0.0,7.847,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29821.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,1949.0,0.0,6896.0,15704.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,63.091,63.091,40.489,40.489,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.373,0.0,0.0,4.868,0.953,8.922,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,0.0,22.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.151,0.0,16.414,9.023,0.613,0.0,0.0,0.0,0.0,2374.2,3660.6,3660.6,22.528,19.797,4.57,1.168,5.569,0.52,7.699,0.639,14.497,-17.149,0.0,0.0,0.0,8.589,-0.089,7.111,0.0,0.733,0.0,0.273,-10.225,-3.182,-0.013,0.016,-0.589,-0.055,2.657,-0.033,-1.932,17.689,0.0,0.0,0.0,-6.404,-0.083,-1.707,-4.231,-0.168,0.0,0.093,8.938,2.569,1354.8,997.6,11171.6,2471.3,0.0,36000.0,24000.0,0.0,6.8,91.76,31468.0,778.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,1949.0,724.0,6561.0,18531.0,0.0,11700.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,54.457,54.457,35.005,35.005,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.321,0.0,0.0,3.708,0.682,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.203,0.0,11.696,9.075,0.614,0.0,0.0,0.0,0.0,2104.8,2704.0,2704.0,17.648,12.83,6.045,0.0,3.619,0.509,7.464,0.625,10.031,-12.687,0.0,0.0,0.0,8.217,-0.076,4.799,0.0,0.728,0.0,0.0,-8.908,-2.5,0.291,0.0,-0.456,-0.051,2.711,-0.025,-1.387,11.721,0.0,0.0,0.0,-6.302,-0.051,-1.158,-3.067,-0.164,0.0,0.0,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,24776.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,1949.0,0.0,4597.0,12320.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier.xml,37.3,37.3,33.148,33.148,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,9.336,1.949,6.714,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,4.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.834,0.0,32.579,6.562,0.579,0.0,0.0,0.0,0.0,1903.9,3231.2,3231.2,13.531,18.845,0.0,6.126,1.575,0.0,0.0,0.335,4.353,-5.899,0.0,0.0,0.0,0.826,-0.36,0.993,0.0,0.397,0.0,0.103,-3.998,-0.844,0.0,2.403,0.135,0.0,0.0,0.203,2.884,16.272,0.0,0.0,0.0,2.056,-0.352,-0.28,-1.733,-0.052,0.0,0.379,9.165,1.803,1354.8,997.6,9789.3,2412.1,0.0,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,22161.0,65.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,3320.0,1630.0,438.0,393.0,800.0 +base-atticroof-unvented-insulated-roof.xml,56.972,56.972,35.161,35.161,21.812,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,3.807,0.7,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,20.413,0.0,11.97,9.075,0.615,0.0,0.0,0.0,0.0,2127.6,2844.3,2844.3,19.246,14.108,0.0,5.475,3.627,0.51,7.484,0.627,10.053,-12.69,0.0,0.0,0.0,8.285,-0.062,4.803,0.0,0.729,0.0,2.654,-8.912,-2.5,0.0,-1.478,-0.423,-0.046,2.812,-0.016,-1.287,11.723,0.0,0.0,0.0,-6.128,-0.053,-1.135,-2.92,-0.161,0.0,1.442,7.867,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,30482.0,4823.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,4190.0,4597.0,19417.0,1772.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,57.589,57.589,35.509,35.509,22.08,0.0,0.0,0.0,0.0,0.0,0.0,0.364,0.0,0.0,3.943,0.733,9.193,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.675,0.0,12.646,9.075,0.803,0.0,0.0,0.0,0.0,2132.8,2982.7,2982.7,21.537,15.351,0.0,3.899,3.639,0.512,7.515,0.63,10.087,-12.691,0.0,0.0,0.0,8.3,-0.062,4.804,0.0,0.729,0.0,4.066,-8.579,-2.5,0.0,-0.528,-0.448,-0.05,2.73,-0.022,-1.358,11.723,0.0,0.0,0.0,-6.278,-0.058,-1.157,-3.029,-0.164,0.0,1.937,7.585,2.009,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,16425.0,3714.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,59.84,59.84,37.574,37.574,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.735,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2224.6,3486.6,3486.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,1.303,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-battery.xml,58.105,58.105,35.839,35.839,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,36.297,36.297,24.672,24.672,11.625,0.0,0.0,0.0,0.0,0.0,0.0,0.085,0.0,0.0,1.623,0.207,9.675,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,11.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,10.777,0.0,3.158,9.374,0.73,0.0,0.0,0.0,0.0,1571.2,2029.1,2029.1,7.666,6.063,0.0,2.942,3.651,0.0,0.0,0.583,1.31,-1.593,0.0,0.0,2.978,0.0,-0.037,1.669,0.0,0.0,0.0,4.662,-4.243,-1.184,0.0,-0.933,-0.243,0.0,0.0,-0.056,-0.113,1.309,0.0,0.0,-0.947,0.0,-0.033,-0.288,-0.351,0.0,0.0,0.578,3.429,0.842,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12345.0,5658.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,31.507,31.507,25.157,25.157,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.047,0.0,0.0,2.148,0.321,9.559,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,6.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.89,0.0,5.253,9.374,0.609,0.0,0.0,0.0,0.0,1559.2,2235.7,2235.7,9.392,10.995,0.0,-0.004,3.304,0.0,0.0,1.394,3.736,-4.206,0.0,0.0,4.616,0.0,-0.071,1.253,0.0,0.793,0.0,2.37,-6.264,-1.136,0.0,-0.0,-0.473,0.0,0.0,-0.429,-0.211,4.0,0.0,0.0,-3.092,0.0,-0.066,-0.251,-1.127,-0.133,0.0,0.503,5.735,0.89,1354.8,997.6,11171.6,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,12328.0,5013.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9963.0,1572.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,49.412,49.412,24.675,24.675,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,1.479,0.172,9.76,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,24.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.939,0.0,2.588,9.374,0.818,0.0,0.0,0.0,0.0,1572.9,2202.9,2202.9,11.077,8.634,0.0,5.361,4.203,0.0,0.0,0.789,1.288,-1.709,0.0,0.0,5.413,0.0,-0.062,1.7,0.0,0.0,0.0,11.645,-4.474,-1.246,0.0,-1.205,-0.066,0.0,0.0,-0.056,-0.008,1.194,0.0,0.0,-1.212,0.0,-0.057,-0.194,-0.279,0.0,0.0,0.544,3.198,0.781,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,14592.0,6778.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,10080.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,25.855,25.855,24.538,24.538,1.317,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,1.648,0.213,9.585,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,1.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.22,0.0,3.264,9.374,0.636,0.0,0.0,0.0,0.0,1558.6,1857.9,1857.9,3.415,6.065,0.0,0.378,3.172,0.0,0.0,0.381,1.385,-1.507,0.0,0.0,0.401,0.0,-0.006,1.706,0.0,0.0,0.0,0.374,-4.015,-1.12,0.0,-0.84,-0.474,0.0,0.0,-0.078,-0.221,1.396,0.0,0.0,-0.856,0.0,-0.002,-0.396,-0.392,0.0,0.0,0.597,3.657,0.907,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,8331.0,3673.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,8173.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,26.155,26.155,25.093,25.093,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.008,0.0,0.0,2.134,0.333,9.537,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,1.062,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.984,0.0,5.308,9.374,0.586,0.0,0.0,0.0,0.0,1577.8,1735.0,1735.0,3.705,4.57,0.0,-0.004,3.199,0.0,0.0,0.372,1.434,-1.384,0.0,0.0,-0.004,0.0,-0.074,1.765,0.0,0.0,0.0,0.306,-3.658,-1.009,0.0,-0.001,-0.583,0.0,0.0,-0.044,-0.373,1.518,0.0,0.0,-0.001,0.0,-0.071,-0.543,-0.515,0.0,0.0,0.944,4.015,1.017,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,7886.0,3453.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,6279.0,1326.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-infil-compartmentalization-test.xml,26.755,26.755,26.238,26.238,0.517,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.065,0.562,9.526,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.517,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.477,0.0,9.42,9.374,0.574,0.0,0.0,0.0,0.0,1666.2,1943.7,1943.7,3.251,7.677,0.0,-0.015,2.451,0.0,0.0,0.424,3.906,-2.465,0.0,0.0,-0.01,0.0,-0.396,0.991,0.0,0.666,0.0,0.0,-4.45,-0.746,0.0,-0.01,-1.157,0.0,0.0,-0.049,-1.212,5.738,0.0,0.0,-0.005,0.0,-0.386,-0.414,-1.343,-0.41,0.0,0.0,7.514,1.28,1354.8,997.6,11171.5,3093.4,0.0,12000.0,12000.0,0.0,6.8,91.76,5596.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1242.0,7012.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,167.0,3320.0,573.0,0.0,-227.0,800.0 +base-bldgtype-mf-unit-residents-1.xml,19.849,19.849,18.628,18.628,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.009,0.0,0.0,2.45,0.409,4.527,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,0.0,1.221,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,7.202,4.144,0.584,0.0,0.0,0.0,0.0,1141.0,1661.2,1661.2,3.916,7.195,0.0,-0.018,2.578,0.0,0.0,0.425,4.087,-3.005,0.0,0.0,-0.017,0.0,-0.365,1.302,0.0,0.742,0.0,0.0,-3.753,-0.915,0.0,-0.013,-0.841,0.0,0.0,-0.013,-0.739,5.197,0.0,0.0,-0.012,0.0,-0.356,-0.408,-1.204,-0.286,0.0,0.0,4.875,1.111,817.2,530.6,4684.1,1314.5,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,27.426,27.426,26.776,26.776,0.65,0.0,0.0,0.0,0.0,0.0,0.0,0.031,0.0,0.0,3.302,0.833,9.527,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.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,4.0,1681.2,2028.6,2028.6,3.451,7.024,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,28.224,28.224,27.531,27.531,0.694,0.0,0.0,0.0,0.0,0.0,0.0,0.055,0.0,0.0,3.923,0.943,9.527,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.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,0.616,0.0,10.479,9.374,0.576,0.0,0.0,0.0,10.0,1710.3,2227.6,2227.6,3.597,8.162,0.0,-0.015,2.472,0.0,0.0,0.423,3.919,-2.555,0.0,0.0,-0.011,0.0,-0.392,1.275,0.0,0.675,0.0,0.036,-4.548,-0.767,0.0,-0.01,-1.111,0.0,0.0,-0.046,-1.16,5.647,0.0,0.0,-0.005,0.0,-0.382,-0.522,-1.34,-0.394,0.0,1.253,7.418,1.259,1354.8,997.6,11171.5,3093.4,0.0,8647.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,27.68,27.68,27.064,27.064,0.616,0.0,0.0,0.0,0.0,0.0,0.0,0.074,0.0,0.0,3.547,0.833,9.527,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.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,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,4.0,1690.5,2083.3,2083.3,3.449,7.024,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.552,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.143,5.65,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.391,0.0,0.0,7.4,1.255,1354.8,997.6,11171.5,3093.4,0.0,5886.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,31.93,31.93,31.424,31.424,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,7.808,0.943,9.527,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.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,0.594,0.0,10.479,9.374,0.576,0.0,0.0,0.0,10.0,2071.4,3136.2,3136.2,3.53,8.162,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.045,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.253,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.874,27.874,27.368,27.368,0.506,0.0,0.0,0.0,0.0,0.0,0.032,0.032,0.0,0.0,3.752,0.943,9.527,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.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,0.594,0.0,10.479,9.374,0.576,0.0,0.0,0.0,10.0,1703.8,2187.5,2187.5,3.53,8.162,0.0,-0.015,2.47,0.0,0.0,0.423,3.92,-2.551,0.0,0.0,-0.011,0.0,-0.394,1.275,0.0,0.674,0.0,0.014,-4.546,-0.767,0.0,-0.01,-1.113,0.0,0.0,-0.045,-1.16,5.651,0.0,0.0,-0.006,0.0,-0.383,-0.522,-1.34,-0.394,0.0,1.253,7.42,1.259,1354.8,997.6,11171.5,3093.4,0.0,28548.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,23.068,23.068,22.546,22.546,0.522,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,0.0,0.0,9.438,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.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,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1508.8,1332.5,1508.8,3.443,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,23.122,23.122,22.564,22.564,0.558,0.0,0.0,0.0,0.0,0.0,0.0,0.044,0.0,0.0,0.0,0.0,9.438,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.558,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.495,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1527.5,1332.5,1527.5,3.595,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.029,-6.076,-1.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,1354.8,997.6,11171.6,3093.4,0.0,8647.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,23.075,23.075,22.577,22.577,0.498,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,0.0,0.0,9.438,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.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1538.6,1332.5,1538.6,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,23.054,23.054,22.693,22.693,0.361,0.0,0.0,0.0,0.0,0.0,0.116,0.057,0.0,0.0,0.0,0.0,9.438,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.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.466,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1647.2,1332.5,1647.2,3.447,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.076,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5885.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,23.075,23.075,22.579,22.579,0.496,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,0.0,0.0,9.438,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.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,0.467,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1540.5,1332.5,1540.5,3.447,0.0,0.0,-0.004,3.517,0.0,0.0,0.501,5.01,-4.242,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.0,-6.075,-1.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,1354.8,997.6,11171.6,3093.4,0.0,5886.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,22.978,22.978,22.571,22.571,0.407,0.0,0.0,0.0,0.0,0.0,0.026,0.025,0.0,0.0,0.0,0.0,9.438,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.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,0.477,0.0,0.0,9.374,0.483,0.0,0.0,0.0,0.0,1532.9,1332.5,1532.9,3.527,0.0,0.0,-0.004,3.518,0.0,0.0,0.501,5.01,-4.243,0.0,0.0,-0.004,0.0,-0.009,1.703,0.0,0.982,0.0,0.011,-6.076,-1.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,1354.8,997.6,11171.6,3093.4,0.0,28548.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,26.574,26.574,26.574,26.574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.131,0.826,9.535,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,0.0,0.0,9.148,9.374,0.584,0.0,0.0,0.0,4.0,1675.9,1979.8,1979.8,0.0,7.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.047,-1.131,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.329,1.237,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,27.326,27.326,27.326,27.326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.774,0.935,9.535,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,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1727.0,2172.6,2172.6,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,26.857,26.857,26.857,26.857,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.414,0.826,9.535,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,0.0,0.0,9.148,9.374,0.584,0.0,0.0,0.0,4.0,1691.8,2041.2,2041.2,0.0,7.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.047,-1.131,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.329,1.237,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,32.389,32.389,32.389,32.389,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.837,0.935,9.535,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,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,2063.0,3361.4,3361.4,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,27.127,27.127,27.127,27.127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.576,0.935,9.535,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,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1713.8,2127.9,2127.9,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-generator.xml,40.992,34.168,26.197,19.372,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.034,0.548,9.527,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,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1656.2,2007.2,2007.2,3.449,7.707,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.142,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.4,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,26.726,26.726,26.726,26.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.283,0.826,9.535,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,0.0,0.0,9.148,9.374,0.584,0.0,0.0,0.0,4.0,1683.2,2012.7,2012.7,0.0,7.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.047,-1.131,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.329,1.237,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,27.453,27.453,27.453,27.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.901,0.935,9.535,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,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1735.4,2201.2,2201.2,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,26.97,26.97,26.97,26.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.527,0.826,9.535,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,0.0,0.0,9.148,9.374,0.584,0.0,0.0,0.0,4.0,1699.2,2065.5,2065.5,0.0,7.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-1.064,0.0,0.0,-0.047,-1.131,5.524,0.0,0.0,-0.005,0.0,-0.345,-0.51,-1.331,-0.379,0.0,0.0,7.329,1.237,1354.8,997.6,11171.6,3093.4,0.0,0.0,8029.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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,31.309,31.309,31.309,31.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.758,0.935,9.535,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,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1991.4,3070.5,3070.5,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,27.283,27.283,27.283,27.283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.731,0.935,9.535,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,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1724.1,2162.9,2162.9,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-generator.xml,40.97,34.146,26.175,19.35,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.012,0.548,9.527,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,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1655.4,2001.6,2001.6,3.449,7.707,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.142,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.4,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.234,28.234,28.234,28.234,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.255,0.0,0.0,2.257,2.959,9.527,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,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,0.0,1716.7,1945.0,1945.0,3.449,7.707,0.0,-0.016,2.483,0.0,0.0,0.426,3.954,-2.567,0.0,0.0,-0.012,0.0,-0.391,1.284,0.0,0.681,0.0,0.0,-4.595,-0.776,0.0,-0.011,-1.1,0.0,0.0,-0.042,-1.124,5.636,0.0,0.0,-0.007,0.0,-0.381,-0.513,-1.333,-0.388,0.0,0.0,7.371,1.25,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,31.717,31.717,16.738,16.738,14.979,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.089,0.563,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.0,0.572,0.0,14.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.527,0.0,9.528,9.374,2.261,0.0,0.0,0.0,0.0,1021.5,1547.1,1547.1,3.498,7.734,0.0,-0.017,2.437,0.0,0.0,0.425,3.915,-2.473,0.0,0.0,-0.013,0.0,-0.417,2.025,0.0,0.0,0.0,0.0,-4.705,-0.753,0.0,-0.012,-1.156,0.0,0.0,-0.045,-1.18,5.73,0.0,0.0,-0.007,0.0,-0.407,-0.941,-1.35,0.0,0.0,0.0,7.748,1.273,1354.8,997.6,11171.8,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-laundry-room.xml,29.601,29.601,16.547,16.547,13.054,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.936,0.523,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.0,0.742,0.0,12.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,8.806,9.374,0.568,0.0,0.0,0.0,0.0,1012.5,1535.6,1535.6,3.655,7.615,0.0,-0.017,2.498,0.0,0.0,0.426,3.976,-2.663,0.0,0.0,-0.014,0.0,-0.395,2.062,0.0,0.0,0.0,0.0,-4.478,-0.8,0.0,-0.012,-1.052,0.0,0.0,-0.036,-1.051,5.54,0.0,0.0,-0.009,0.0,-0.386,-0.862,-1.313,0.0,0.0,0.0,6.883,1.227,1354.8,997.6,11171.7,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,50.702,50.702,30.653,30.653,20.049,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.804,0.303,9.565,0.0,0.0,2.026,0.0,0.206,3.73,0.946,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,0.0,7.888,0.0,0.0,0.0,0.0,12.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.308,0.0,5.091,9.374,0.615,0.0,0.0,0.0,0.0,1867.2,2265.4,2265.4,7.584,8.979,0.0,-0.017,2.791,0.0,0.0,0.407,4.196,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.34,0.0,0.0,-6.693,-1.194,0.0,-0.013,-0.143,0.0,0.0,0.06,0.126,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.698,-4.225,0.0,0.0,5.312,0.832,1354.8,997.6,11171.5,3093.4,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,32.593,32.593,27.3,27.3,5.293,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.679,0.452,9.537,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,0.0,1.335,0.0,0.0,0.0,0.0,3.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,1.234,0.0,7.541,9.374,0.586,0.0,0.0,0.0,0.0,1656.8,2026.0,2026.0,4.163,7.879,0.0,-0.018,2.638,0.0,0.0,0.432,4.149,-3.079,0.0,0.0,-0.017,0.0,-0.36,1.775,0.0,1.925,0.0,0.0,-5.318,-0.929,0.0,-0.013,-0.774,0.0,0.0,-0.004,-0.66,5.123,0.0,0.0,-0.012,0.0,-0.352,-0.53,-1.154,-1.781,0.0,0.0,6.659,1.097,1354.8,997.6,11171.5,3093.4,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent.xml,30.814,30.814,27.153,27.153,3.661,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.578,0.426,9.546,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,0.0,3.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,3.389,0.0,7.249,9.374,0.596,0.0,0.0,0.0,0.0,1646.7,2107.7,2107.7,5.987,8.5,0.0,-0.016,2.683,0.0,0.0,0.398,4.039,-3.61,0.0,0.0,-0.018,0.0,-0.253,1.739,0.0,5.306,0.0,0.0,-5.803,-1.04,0.0,-0.011,-0.57,0.0,0.0,-0.008,-0.517,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.44,-1.153,-1.512,0.0,0.0,6.184,0.986,1354.8,997.6,11171.5,3093.4,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-pv.xml,26.826,2.378,26.197,1.749,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.034,0.548,9.527,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.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1656.2,2007.2,2007.2,3.449,7.707,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.142,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.4,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,30.763,30.763,17.658,17.658,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.948,0.526,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.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1057.9,1596.4,1596.4,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.426,3.986,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.61,0.0,0.696,0.0,0.0,-4.663,-0.809,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.036,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.097,1.218,1354.8,997.6,11171.6,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-water-heater.xml,29.667,29.667,16.562,16.562,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.948,0.526,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.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1005.2,1543.7,1543.7,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.426,3.986,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.61,0.0,0.696,0.0,0.0,-4.663,-0.809,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.036,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.097,1.218,1354.8,997.6,11171.6,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit.xml,26.826,26.826,26.197,26.197,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.034,0.548,9.527,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.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1656.2,2007.2,2007.2,3.449,7.707,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.142,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.4,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-sfa-unit-2stories.xml,50.964,50.964,34.573,34.573,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.214,0.0,0.0,3.406,0.598,9.079,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.285,0.0,10.28,9.11,0.613,0.0,0.0,0.0,0.0,2111.0,3067.8,3067.8,17.841,15.556,0.0,2.437,5.073,0.298,4.382,0.64,7.13,-8.585,0.0,0.0,0.0,5.027,-0.069,7.099,0.0,0.73,0.0,2.271,-8.897,-2.5,0.0,-0.004,-0.668,-0.027,1.593,-0.021,-1.066,7.911,0.0,0.0,0.0,-4.019,-0.064,-1.707,-2.597,-0.164,0.0,1.365,7.881,2.01,1354.8,997.6,11171.5,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16951.0,4421.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-atticroof-cathedral.xml,97.494,97.494,37.147,37.147,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.787,0.0,0.0,5.054,0.942,9.088,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,15.98,9.11,0.623,0.0,0.0,0.0,0.0,2152.6,4286.5,4286.5,36.45,28.479,49.534,0.0,2.942,0.289,3.702,0.668,4.716,-5.325,0.0,0.0,0.0,3.447,-0.844,7.54,0.0,0.773,0.0,0.0,-9.663,-2.68,8.461,0.0,-0.16,0.004,1.534,0.119,0.028,5.085,0.0,0.0,0.0,-4.279,-0.806,-0.856,-1.185,-0.094,0.0,0.0,7.124,1.829,1354.8,997.6,11171.6,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,42.259,42.259,29.848,29.848,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.816,0.473,9.289,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.083,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2557.4,2557.4,13.175,10.707,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.016,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.634,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 -base-bldgtype-sfa-unit.xml,42.259,42.259,29.848,29.848,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.816,0.473,9.289,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.083,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2557.4,2557.4,13.175,10.707,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.016,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.634,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21403.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13941.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,31.695,31.695,16.716,16.716,14.979,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.066,0.563,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.0,0.572,0.0,14.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.527,0.0,9.528,9.374,2.261,0.0,0.0,0.0,0.0,1020.3,1539.8,1539.8,3.498,7.734,0.0,-0.017,2.437,0.0,0.0,0.425,3.915,-2.473,0.0,0.0,-0.013,0.0,-0.417,2.025,0.0,0.0,0.0,0.0,-4.705,-0.753,0.0,-0.012,-1.156,0.0,0.0,-0.045,-1.18,5.73,0.0,0.0,-0.007,0.0,-0.407,-0.941,-1.35,0.0,0.0,0.0,7.748,1.273,1354.8,997.6,11171.8,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-laundry-room.xml,29.58,29.58,16.526,16.526,13.054,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.915,0.523,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.0,0.742,0.0,12.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,8.806,9.374,0.568,0.0,0.0,0.0,0.0,1011.4,1528.4,1528.4,3.655,7.615,0.0,-0.017,2.498,0.0,0.0,0.426,3.976,-2.663,0.0,0.0,-0.014,0.0,-0.395,2.062,0.0,0.0,0.0,0.0,-4.478,-0.8,0.0,-0.012,-1.052,0.0,0.0,-0.036,-1.051,5.54,0.0,0.0,-0.009,0.0,-0.386,-0.862,-1.313,0.0,0.0,0.0,6.883,1.227,1354.8,997.6,11171.7,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,50.689,50.689,30.64,30.64,20.049,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.791,0.303,9.565,0.0,0.0,2.026,0.0,0.206,3.73,0.946,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,0.0,7.888,0.0,0.0,0.0,0.0,12.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.308,0.0,5.091,9.374,0.615,0.0,0.0,0.0,0.0,1867.2,2259.4,2259.4,7.584,8.979,0.0,-0.017,2.791,0.0,0.0,0.407,4.196,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.34,0.0,0.0,-6.693,-1.194,0.0,-0.013,-0.143,0.0,0.0,0.06,0.126,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.698,-4.225,0.0,0.0,5.312,0.832,1354.8,997.6,11171.5,3093.4,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,32.574,32.574,27.282,27.282,5.293,0.0,0.0,0.0,0.0,0.0,0.0,0.01,0.0,0.0,2.66,0.452,9.537,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,0.0,1.335,0.0,0.0,0.0,0.0,3.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,1.234,0.0,7.541,9.374,0.586,0.0,0.0,0.0,0.0,1656.4,2020.9,2020.9,4.163,7.879,0.0,-0.018,2.638,0.0,0.0,0.432,4.149,-3.079,0.0,0.0,-0.017,0.0,-0.36,1.775,0.0,1.925,0.0,0.0,-5.318,-0.929,0.0,-0.013,-0.774,0.0,0.0,-0.004,-0.66,5.123,0.0,0.0,-0.012,0.0,-0.352,-0.53,-1.154,-1.781,0.0,0.0,6.659,1.097,1354.8,997.6,11171.5,3093.4,0.0,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,7084.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,30.797,30.797,27.136,27.136,3.661,0.0,0.0,0.0,0.0,0.0,0.0,0.027,0.0,0.0,2.56,0.426,9.546,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,0.0,3.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,3.389,0.0,7.249,9.374,0.596,0.0,0.0,0.0,0.0,1646.4,2099.9,2099.9,5.987,8.5,0.0,-0.016,2.683,0.0,0.0,0.398,4.039,-3.61,0.0,0.0,-0.018,0.0,-0.253,1.739,0.0,5.306,0.0,0.0,-5.803,-1.04,0.0,-0.011,-0.57,0.0,0.0,-0.008,-0.517,4.592,0.0,0.0,-0.014,0.0,-0.246,-0.44,-1.153,-1.512,0.0,0.0,6.184,0.986,1354.8,997.6,11171.5,3093.4,0.0,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,7570.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-pv.xml,26.804,2.356,26.175,1.727,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.012,0.548,9.527,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.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1655.4,2001.6,2001.6,3.449,7.707,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.142,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.4,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,30.742,30.742,17.637,17.637,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.927,0.526,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.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1056.9,1589.1,1589.1,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.426,3.986,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.61,0.0,0.696,0.0,0.0,-4.663,-0.809,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.036,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.097,1.218,1354.8,997.6,11171.6,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-water-heater.xml,29.646,29.646,16.541,16.541,13.105,0.0,0.0,0.0,0.0,0.0,0.0,0.006,0.0,0.0,2.927,0.526,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.0,0.793,0.0,12.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.732,0.0,8.892,9.374,0.569,0.0,0.0,0.0,0.0,1004.2,1536.4,1536.4,3.648,7.73,0.0,-0.017,2.512,0.0,0.0,0.426,3.986,-2.697,0.0,0.0,-0.014,0.0,-0.386,1.61,0.0,0.696,0.0,0.0,-4.663,-0.809,0.0,-0.012,-1.035,0.0,0.0,-0.036,-1.036,5.505,0.0,0.0,-0.009,0.0,-0.376,-0.624,-1.314,-0.362,0.0,0.0,7.097,1.218,1354.8,997.6,11171.6,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit.xml,26.804,26.804,26.175,26.175,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.012,0.548,9.527,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.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1655.4,2001.6,2001.6,3.449,7.707,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.142,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.4,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-sfa-unit-2stories.xml,50.938,50.938,34.548,34.548,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.214,0.0,0.0,3.381,0.598,9.079,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.285,0.0,10.28,9.11,0.613,0.0,0.0,0.0,0.0,2111.0,3056.0,3056.0,17.841,15.556,0.0,2.437,5.073,0.298,4.382,0.64,7.13,-8.585,0.0,0.0,0.0,5.027,-0.069,7.099,0.0,0.73,0.0,2.271,-8.897,-2.5,0.0,-0.004,-0.668,-0.027,1.593,-0.021,-1.066,7.911,0.0,0.0,0.0,-4.019,-0.064,-1.707,-2.597,-0.164,0.0,1.365,7.881,2.01,1354.8,997.6,11171.5,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,27715.0,7446.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1524.0,1447.0,5942.0,16951.0,4421.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-atticroof-cathedral.xml,97.453,97.453,37.106,37.106,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.787,0.0,0.0,5.013,0.942,9.088,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.272,0.0,15.98,9.11,0.623,0.0,0.0,0.0,0.0,2152.6,4262.0,4262.0,36.45,28.479,49.534,0.0,2.942,0.289,3.702,0.668,4.716,-5.325,0.0,0.0,0.0,3.447,-0.844,7.54,0.0,0.773,0.0,0.0,-9.663,-2.68,8.461,0.0,-0.16,0.004,1.534,0.119,0.028,5.085,0.0,0.0,0.0,-4.279,-0.806,-0.856,-1.185,-0.094,0.0,0.0,7.124,1.829,1354.8,997.6,11171.6,2624.7,0.0,48000.0,36000.0,0.0,6.8,91.76,43367.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1524.0,0.0,5942.0,24053.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,42.239,42.239,29.828,29.828,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.796,0.473,9.289,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.083,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2548.6,2548.6,13.175,10.707,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.016,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.634,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21402.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3064.0,13940.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 +base-bldgtype-sfa-unit.xml,42.239,42.239,29.828,29.828,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,2.796,0.473,9.289,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,0.0,12.411,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.509,0.0,8.083,9.225,0.613,0.0,0.0,0.0,0.0,1828.5,2548.6,2548.6,13.175,10.707,0.0,2.351,2.372,0.293,4.249,0.625,3.57,-4.311,0.0,0.0,0.0,4.688,-0.044,3.042,0.0,0.728,0.0,3.162,-7.556,-1.812,0.0,0.016,-0.292,-0.028,1.539,-0.025,-0.616,3.963,0.0,0.0,0.0,-4.113,-0.042,-0.776,-1.237,-0.167,0.0,1.634,6.835,1.456,1354.8,997.6,11171.5,2829.7,0.0,24000.0,24000.0,0.0,6.8,91.76,21403.0,8128.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1524.0,1447.0,3065.0,13941.0,5226.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,3320.0,240.0,0.0,-560.0,800.0 base-dhw-combi-tankless-outside.xml,51.079,51.079,21.423,21.423,29.656,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.363,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.322,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.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,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,52.277,52.277,21.432,21.432,30.845,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.551,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1376.9,1017.3,1376.9,17.068,0.0,0.0,3.743,3.642,0.513,7.499,0.631,10.099,-12.691,0.0,0.0,0.0,8.145,-0.067,5.887,0.0,0.729,0.0,0.0,-8.581,-2.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,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,32.048,32.048,32.048,32.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.273,0.74,6.76,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,9.074,0.661,2.904,0.0,0.0,0.0,2067.0,2809.8,2809.8,0.0,19.702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.093,-0.469,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.192,-3.046,-0.166,0.0,3.688,8.629,2.036,1354.8,997.6,11181.3,2565.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,32.031,32.031,32.031,32.031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.255,0.74,6.76,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,9.074,0.661,2.903,0.0,0.0,0.0,2067.2,2821.5,2821.5,0.0,19.702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.093,-0.469,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.192,-3.046,-0.166,0.0,3.688,8.629,2.036,1354.8,997.6,11181.6,2565.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-gshp.xml,37.426,37.426,37.426,37.426,0.0,0.0,0.0,0.0,0.0,0.0,4.999,0.475,0.0,0.0,3.18,0.96,6.536,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.713,0.0,14.0,9.074,0.613,2.953,0.0,0.0,0.0,3245.1,2373.7,3245.1,21.47,16.472,0.0,3.605,3.642,0.513,7.524,0.63,10.096,-12.683,0.0,0.0,0.0,8.307,-0.064,4.805,0.0,0.729,0.0,3.363,-8.59,-2.499,0.0,-0.01,-0.463,-0.052,2.69,-0.026,-1.403,11.73,0.0,0.0,0.0,-6.345,-0.06,-1.169,-3.129,-0.165,0.0,2.099,8.505,2.01,1354.8,997.6,11185.2,2566.7,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,56.386,56.386,29.719,29.719,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,4.496,0.854,2.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,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.972,0.0,14.894,9.085,1.809,3.025,0.0,0.0,0.0,1884.0,3149.7,3149.7,25.892,19.515,0.0,3.522,3.634,0.511,7.504,0.628,10.066,-12.724,0.0,0.0,0.0,8.331,-0.052,4.794,0.0,0.727,0.0,5.64,-5.456,-2.509,0.0,-0.019,-0.422,-0.046,2.83,-0.015,-1.277,11.689,0.0,0.0,0.0,-6.115,-0.048,-1.121,-2.945,-0.156,0.0,3.191,7.659,2.001,1354.7,997.5,11162.4,2561.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,33.695,33.695,33.695,33.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.494,1.184,6.741,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.08,0.0,2.937,0.0,0.0,0.0,1932.8,3261.6,3261.6,0.0,19.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.068,-0.464,-0.051,2.687,-0.03,-1.43,11.85,0.0,0.0,0.0,-6.908,-0.064,-1.186,-3.017,-0.165,0.0,3.23,8.362,2.036,1354.8,997.6,11131.9,2554.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,56.35,56.35,29.683,29.683,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,4.46,0.854,2.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,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.972,0.0,14.893,9.085,1.809,3.024,0.0,0.0,0.0,1884.0,3131.6,3131.6,25.892,19.515,0.0,3.522,3.634,0.511,7.504,0.628,10.066,-12.724,0.0,0.0,0.0,8.331,-0.052,4.794,0.0,0.727,0.0,5.64,-5.456,-2.509,0.0,-0.019,-0.422,-0.046,2.83,-0.015,-1.277,11.689,0.0,0.0,0.0,-6.115,-0.048,-1.121,-2.944,-0.156,0.0,3.19,7.659,2.001,1354.7,997.5,11162.8,2561.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,33.66,33.66,33.66,33.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.458,1.184,6.742,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.08,0.0,2.936,0.0,0.0,0.0,1932.8,3243.5,3243.5,0.0,19.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.068,-0.464,-0.051,2.687,-0.03,-1.43,11.85,0.0,0.0,0.0,-6.908,-0.064,-1.186,-3.017,-0.165,0.0,3.23,8.361,2.036,1354.8,997.6,11131.9,2554.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-var-speed.xml,31.142,31.142,31.142,31.142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.826,0.295,6.744,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.992,9.074,0.661,2.927,0.0,0.0,0.0,2066.9,2630.1,2630.1,0.0,19.354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.134,-0.469,-0.052,2.673,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.915,-0.064,-1.192,-3.051,-0.166,0.0,4.519,8.636,2.036,1354.8,997.6,11184.2,2566.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,33.726,33.726,33.726,33.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.548,1.202,6.7,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.813,9.073,0.661,2.991,0.0,0.0,0.0,2069.0,3274.6,3274.6,0.0,19.212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.075,-0.47,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.192,-3.047,-0.166,0.0,3.266,8.653,2.036,1354.8,997.6,11187.4,2567.2,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,55.868,55.868,33.602,33.602,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,6.744,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,6.634,0.614,0.0,0.0,0.0,0.0,2102.3,3405.2,3405.2,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,10014.1,2297.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,33.691,33.691,33.691,33.691,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.512,1.202,6.701,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.813,9.073,0.661,2.99,0.0,0.0,0.0,2069.0,3256.4,3256.4,0.0,19.212,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.075,-0.47,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.192,-3.047,-0.166,0.0,3.266,8.653,2.036,1354.8,997.6,11186.9,2567.1,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,55.834,55.834,33.567,33.567,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,6.744,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,6.634,0.614,0.0,0.0,0.0,0.0,2102.3,3387.7,3387.7,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,10014.1,2297.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-indirect-detailed-setpoints.xml,53.845,53.845,21.421,21.421,32.423,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,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,0.0,19.114,0.0,13.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.124,0.0,0.0,9.099,2.365,0.0,0.0,0.0,0.0,1376.0,1017.3,1376.0,16.681,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.108,-12.669,0.0,0.0,0.0,8.131,-0.068,5.892,0.0,0.729,0.0,0.0,-9.892,-2.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,1154.4,852.6,9359.8,2147.8,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-indirect-dse.xml,58.805,58.805,21.458,21.458,37.348,0.0,0.0,0.0,0.0,0.0,0.0,0.182,0.0,0.0,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,0.0,23.952,0.0,13.395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.168,0.0,0.0,9.103,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.134,-0.07,5.893,0.0,0.729,0.0,0.0,-9.854,-2.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,1070.4,771.3,8876.8,2036.9,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-indirect-outside.xml,55.4,55.4,21.423,21.423,33.977,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.363,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,16.322,0.0,0.0,9.106,3.299,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.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,1065.0,767.3,8821.4,2024.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-indirect-standbyloss.xml,54.218,54.218,21.42,21.42,32.799,0.0,0.0,0.0,0.0,0.0,0.0,0.143,0.0,0.0,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,0.0,18.906,0.0,13.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,15.947,0.0,0.0,9.105,2.69,0.0,0.0,0.0,0.0,1375.9,1017.3,1375.9,16.729,0.0,0.0,3.746,3.646,0.513,7.512,0.632,10.114,-12.663,0.0,0.0,0.0,8.131,-0.071,5.895,0.0,0.73,0.0,0.0,-10.09,-2.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,1059.1,763.7,8811.6,2022.0,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-indirect-with-solar-fraction.xml,46.173,46.173,21.429,21.429,24.744,0.0,0.0,0.0,0.0,0.0,0.0,0.152,0.0,0.0,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,0.0,20.069,0.0,4.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.953,0.0,0.0,9.08,0.783,0.0,5.902,0.0,0.0,1376.6,1017.3,1376.6,16.971,0.0,0.0,3.745,3.645,0.513,7.503,0.631,10.103,-12.69,0.0,0.0,0.0,8.144,-0.067,5.89,0.0,0.729,0.0,0.0,-9.023,-2.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,388.7,286.4,3143.6,721.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-indirect.xml,53.979,53.979,21.422,21.422,32.557,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,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,0.0,19.162,0.0,13.395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.168,0.0,0.0,9.103,2.268,0.0,0.0,0.0,0.0,1376.1,1017.3,1376.1,16.778,0.0,0.0,3.746,3.646,0.513,7.51,0.631,10.111,-12.669,0.0,0.0,0.0,8.134,-0.07,5.893,0.0,0.729,0.0,0.0,-9.854,-2.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,1070.4,771.3,8876.8,2036.9,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,58.03,58.03,35.549,35.549,22.481,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.361,0.821,8.719,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.053,0.0,14.282,9.075,0.295,0.0,0.0,0.0,0.0,2106.1,3383.7,3383.7,23.085,18.875,0.0,3.554,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.806,0.0,0.729,0.0,4.874,-8.733,-2.499,0.0,-0.051,-0.462,-0.052,2.693,-0.026,-1.4,11.73,0.0,0.0,0.0,-6.339,-0.06,-1.168,-3.09,-0.165,0.0,3.127,7.726,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,64.041,64.041,26.961,26.961,37.08,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.462,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,0.0,22.883,0.0,14.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,21.43,0.0,14.701,9.075,2.724,0.0,0.0,0.0,0.0,1464.4,3122.1,3122.1,23.58,19.343,0.0,3.552,3.645,0.513,7.531,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,5.889,0.0,0.729,0.0,4.961,-9.538,-2.499,0.0,-0.058,-0.465,-0.052,2.687,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.347,-0.058,-1.45,-3.116,-0.166,0.0,3.208,8.403,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,56.268,56.268,29.58,29.58,26.687,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,3.91,0.715,3.238,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,12.482,9.13,1.302,0.0,0.0,0.0,0.0,1880.5,3535.5,3535.5,25.325,18.909,0.0,3.522,3.636,0.512,7.508,0.627,10.062,-12.738,0.0,0.0,0.0,8.34,-0.05,4.794,0.0,0.727,0.0,5.64,-5.436,-2.509,0.0,0.009,-0.412,-0.045,2.851,-0.015,-1.259,11.675,0.0,0.0,0.0,-6.073,-0.046,-1.114,-2.817,-0.154,0.0,2.783,5.447,2.001,1354.8,997.6,10758.2,2468.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,57.995,57.995,35.514,35.514,22.481,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.327,0.821,8.719,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.053,0.0,14.282,9.075,0.295,0.0,0.0,0.0,0.0,2106.1,3366.5,3366.5,23.085,18.875,0.0,3.554,3.644,0.513,7.528,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.806,0.0,0.729,0.0,4.874,-8.733,-2.499,0.0,-0.051,-0.462,-0.052,2.693,-0.026,-1.4,11.73,0.0,0.0,0.0,-6.339,-0.06,-1.168,-3.09,-0.165,0.0,3.127,7.726,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,64.006,64.006,26.925,26.925,37.08,0.0,0.0,0.0,0.0,0.0,0.0,0.377,0.0,0.0,4.427,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,0.0,22.883,0.0,14.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,21.43,0.0,14.701,9.075,2.724,0.0,0.0,0.0,0.0,1464.4,3104.3,3104.3,23.58,19.343,0.0,3.552,3.645,0.513,7.531,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,5.889,0.0,0.729,0.0,4.961,-9.538,-2.499,0.0,-0.058,-0.465,-0.052,2.687,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.347,-0.058,-1.45,-3.116,-0.166,0.0,3.208,8.403,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,56.238,56.238,29.55,29.55,26.687,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,3.88,0.715,3.238,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.993,0.0,12.482,9.13,1.302,0.0,0.0,0.0,0.0,1880.5,3518.3,3518.3,25.325,18.909,0.0,3.522,3.636,0.512,7.508,0.627,10.062,-12.738,0.0,0.0,0.0,8.34,-0.05,4.794,0.0,0.727,0.0,5.64,-5.436,-2.509,0.0,0.009,-0.412,-0.045,2.851,-0.015,-1.259,11.675,0.0,0.0,0.0,-6.073,-0.046,-1.114,-2.817,-0.154,0.0,2.783,5.447,2.001,1354.8,997.6,10758.2,2468.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-jacket-indirect.xml,53.778,53.778,21.423,21.423,32.355,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.38,0.0,12.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.357,0.0,0.0,9.102,1.911,0.0,0.0,0.0,0.0,1376.2,1017.3,1376.2,16.825,0.0,0.0,3.746,3.646,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.137,-0.068,5.892,0.0,0.729,0.0,0.0,-9.652,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1075.0,775.0,8916.9,2046.2,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,57.92,57.92,35.654,35.654,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,8.838,0.614,0.0,0.0,0.0,0.0,2129.0,3389.2,3389.2,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,10829.5,2485.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,57.885,57.885,35.619,35.619,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,8.838,0.614,0.0,0.0,0.0,0.0,2129.0,3372.0,3372.0,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,10829.5,2485.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-multiple.xml,46.852,46.852,23.349,23.349,23.504,0.0,0.0,0.0,0.0,0.0,0.0,0.148,0.0,0.0,0.0,0.0,1.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,0.0,19.59,0.0,3.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,0.0,0.0,0.0,0.0,0.0,16.541,0.0,0.0,9.066,2.815,0.0,5.893,0.0,0.0,2028.1,1810.7,2028.1,16.778,0.0,0.0,3.746,3.646,0.513,7.507,0.631,10.104,-12.678,0.0,0.0,0.0,8.139,-0.067,5.891,0.0,0.729,0.0,0.0,-9.471,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,472.1,347.6,3919.3,899.4,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,46.854,46.854,24.621,24.621,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.354,0.82,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,0.0,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.822,0.0,14.352,0.0,0.0,0.0,0.0,0.0,0.0,1360.7,2979.9,2979.9,23.072,18.891,0.0,3.558,3.646,0.513,7.535,0.631,10.106,-12.683,0.0,0.0,0.0,8.321,-0.064,5.405,0.0,0.0,0.0,4.828,-8.819,-2.499,0.0,-0.056,-0.466,-0.052,2.68,-0.027,-1.413,11.73,0.0,0.0,0.0,-6.358,-0.06,-1.307,-3.107,0.0,0.0,3.127,7.842,2.011,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,58.092,58.092,35.826,35.826,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,8.942,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.017,0.614,0.0,0.0,0.0,0.0,2130.9,3390.1,3390.1,23.033,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,57.672,57.672,35.406,35.406,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,8.531,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.017,0.614,0.0,0.0,0.0,0.0,2115.9,3375.5,3375.5,23.033,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,72.825,72.825,50.559,50.559,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,22.206,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4200.9,4200.9,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,67.973,67.973,45.707,45.707,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,18.6,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.109,0.614,0.0,0.0,0.0,0.0,2754.3,4017.6,4017.6,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,72.825,72.825,50.559,50.559,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,22.206,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4200.9,4200.9,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,52.337,52.337,30.071,30.071,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.39,0.828,2.885,0.0,0.323,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.409,9.098,0.628,0.0,6.625,0.0,0.0,2096.5,3111.1,3111.1,23.033,18.941,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.684,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.147,7.887,2.011,1354.7,997.5,10979.9,2519.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,50.9,50.9,28.643,28.643,22.257,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.402,0.831,1.455,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.843,0.0,14.461,9.207,0.694,0.0,8.339,0.0,0.0,2067.2,3114.7,3114.7,23.033,18.971,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.913,-2.499,0.0,-0.055,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.113,-0.166,0.0,3.156,7.945,2.011,1354.4,997.2,10197.2,2339.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,52.415,52.415,30.149,30.149,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.396,0.829,2.953,0.0,0.328,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.432,9.133,0.649,0.0,6.61,0.0,0.0,2124.6,3113.4,3113.4,23.034,18.96,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.055,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.108,-0.166,0.0,3.151,7.909,2.011,1354.7,997.6,10721.3,2460.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,52.513,52.513,29.977,29.977,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.354,0.819,3.156,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.104,0.0,14.253,9.075,0.215,0.0,5.899,0.0,0.0,1786.0,3389.9,3389.9,23.1,18.862,0.0,3.554,3.644,0.513,7.529,0.631,10.098,-12.69,0.0,0.0,0.0,8.316,-0.062,4.806,0.0,0.729,0.0,4.885,-8.691,-2.5,0.0,-0.05,-0.461,-0.051,2.696,-0.026,-1.399,11.724,0.0,0.0,0.0,-6.333,-0.059,-1.167,-3.087,-0.165,0.0,3.123,7.688,2.01,474.2,349.2,3910.1,897.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,50.633,50.633,28.731,28.731,21.903,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,4.506,0.856,1.426,0.0,0.305,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.511,0.0,14.907,9.186,0.682,0.0,8.337,0.0,0.0,2107.1,3148.3,3148.3,23.067,19.248,0.0,3.559,3.645,0.513,7.536,0.63,10.098,-12.669,0.0,0.0,0.0,8.31,-0.061,4.807,0.0,0.729,0.0,4.762,-9.207,-2.496,0.0,-0.067,-0.473,-0.053,2.663,-0.029,-1.44,11.744,0.0,0.0,0.0,-6.388,-0.058,-1.183,-3.161,-0.168,0.0,3.23,8.469,2.013,1354.2,997.1,10322.8,2368.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,50.616,50.616,28.358,28.358,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.402,0.831,1.482,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.844,0.0,14.458,9.2,0.69,0.0,8.299,0.0,0.0,2091.4,3082.6,3082.6,23.033,18.97,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.912,-2.499,0.0,-0.055,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.112,-0.166,0.0,3.155,7.942,2.011,1354.4,997.2,10240.9,2350.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,64.778,64.778,27.014,27.014,22.487,0.0,0.0,0.0,0.0,15.277,0.0,0.371,0.0,0.0,4.511,0.856,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3133.3,3133.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-detailed-setpoints.xml,58.124,58.124,35.864,35.864,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.388,0.827,9.006,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.846,0.0,14.397,9.049,0.623,0.0,0.0,0.0,0.0,2529.3,3412.2,3412.2,23.009,18.922,0.0,3.556,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.908,-2.499,0.0,-0.055,-0.465,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.145,7.879,2.011,1354.8,997.6,11206.2,2571.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,58.167,58.167,35.952,35.952,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.393,0.829,9.088,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,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,0.0,14.421,9.075,0.691,0.0,0.0,0.0,0.0,2172.7,3458.0,3458.0,23.02,18.939,0.0,3.557,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.823,-8.947,-2.499,0.0,-0.055,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.172,-3.11,-0.166,0.0,3.149,7.908,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,66.501,66.501,26.802,26.802,39.698,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,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,0.0,22.681,0.0,17.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.075,5.067,0.0,0.0,0.0,0.0,1462.6,3065.8,3065.8,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,64.449,64.449,26.977,26.977,37.472,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.477,0.848,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,0.0,22.763,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.317,0.0,14.763,9.075,2.977,0.0,0.0,0.0,0.0,1464.3,3125.4,3125.4,23.55,19.37,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.059,-0.466,-0.052,2.682,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.218,8.483,2.011,1354.8,997.6,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,64.449,64.449,26.977,26.977,37.472,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.477,0.848,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,0.0,22.763,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.317,0.0,14.763,9.075,2.977,0.0,0.0,0.0,0.0,1464.3,3125.4,3125.4,23.55,19.37,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.059,-0.466,-0.052,2.682,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.218,8.483,2.011,1354.8,997.6,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,64.778,64.778,27.014,27.014,37.764,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.511,0.856,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,0.0,22.487,0.0,15.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,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3133.3,3133.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,56.234,56.234,28.75,28.75,27.484,0.0,0.0,0.0,0.0,0.0,0.0,0.453,0.0,0.0,3.853,0.702,2.464,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.734,0.0,12.232,9.216,1.415,0.0,0.0,0.0,0.0,1856.0,3050.7,3050.7,26.694,18.696,0.0,3.506,3.633,0.511,7.505,0.628,10.08,-12.706,0.0,0.0,0.0,8.336,-0.061,4.798,0.0,0.727,0.0,5.798,-4.871,-2.509,0.0,0.02,-0.397,-0.042,2.89,-0.009,-1.185,11.708,0.0,0.0,0.0,-6.003,-0.057,-1.086,-2.728,-0.154,0.0,2.733,5.066,2.0,1354.8,997.6,9994.8,2293.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.091,56.091,28.572,28.572,27.519,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.837,0.698,2.306,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,25.759,0.0,12.17,9.132,1.307,0.0,0.0,0.0,0.0,1854.5,3405.9,3405.9,25.444,18.875,0.0,3.516,3.634,0.511,7.509,0.628,10.061,-12.724,0.0,0.0,0.0,8.352,-0.046,4.792,0.0,0.727,0.0,5.79,-4.85,-2.508,0.0,0.021,-0.401,-0.043,2.894,-0.011,-1.219,11.689,0.0,0.0,0.0,-6.009,-0.042,-1.1,-2.763,-0.152,0.0,2.735,5.064,2.001,1354.8,997.6,10745.3,2465.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,56.219,56.219,33.539,33.539,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,6.736,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.096,2.524,0.0,0.0,0.0,0.0,3051.2,3299.2,3299.2,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11023.3,2529.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,56.091,56.091,28.572,28.572,27.519,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.837,0.698,2.306,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,25.759,0.0,12.17,9.132,1.307,0.0,0.0,0.0,0.0,1854.5,3405.9,3405.9,25.444,18.875,0.0,3.516,3.634,0.511,7.509,0.628,10.061,-12.724,0.0,0.0,0.0,8.352,-0.046,4.792,0.0,0.727,0.0,5.79,-4.85,-2.508,0.0,0.021,-0.401,-0.043,2.894,-0.011,-1.219,11.689,0.0,0.0,0.0,-6.009,-0.042,-1.1,-2.763,-0.152,0.0,2.735,5.064,2.001,1354.8,997.6,10745.3,2465.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,51.914,51.914,27.884,27.884,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,4.194,0.782,1.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,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.503,0.0,13.612,9.108,0.602,0.0,5.92,0.0,0.0,1856.3,3149.6,3149.6,25.408,18.908,0.0,3.544,3.64,0.512,7.519,0.629,10.079,-12.705,0.0,0.0,0.0,8.318,-0.055,4.8,0.0,0.728,0.0,5.161,-7.514,-2.501,0.0,-0.028,-0.443,-0.049,2.749,-0.022,-1.352,11.708,0.0,0.0,0.0,-6.242,-0.051,-1.148,-2.982,-0.162,0.0,3.002,6.875,2.009,474.2,349.2,3821.6,876.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,51.434,51.434,28.491,28.491,22.943,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.535,0.863,1.111,0.0,0.327,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.484,0.0,15.039,9.023,1.965,0.0,8.039,0.0,0.0,1896.1,3162.8,3162.8,25.085,19.348,0.0,3.556,3.646,0.513,7.537,0.63,10.093,-12.686,0.0,0.0,0.0,8.324,-0.056,4.806,0.0,0.729,0.0,4.955,-8.421,-2.498,0.0,-0.061,-0.467,-0.052,2.678,-0.028,-1.429,11.727,0.0,0.0,0.0,-6.35,-0.053,-1.177,-3.153,-0.166,0.0,3.244,8.548,2.011,1354.4,997.3,11673.7,2678.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,56.332,56.332,29.731,29.731,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,3.922,0.719,3.376,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.907,0.0,12.539,9.12,1.717,0.0,0.0,0.0,0.0,1874.8,3284.0,3284.0,23.533,19.054,0.0,3.526,3.638,0.512,7.511,0.627,10.061,-12.745,0.0,0.0,0.0,8.343,-0.049,4.795,0.0,0.727,0.0,5.625,-5.52,-2.509,0.0,0.008,-0.413,-0.045,2.848,-0.015,-1.266,11.668,0.0,0.0,0.0,-6.079,-0.045,-1.116,-2.835,-0.155,0.0,2.789,5.526,2.001,1354.8,997.6,10838.7,2487.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.694,58.694,35.426,35.426,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.42,0.834,8.5,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.788,0.0,14.489,9.117,0.021,0.0,0.0,0.0,0.0,4562.5,5564.3,5564.3,30.746,19.739,0.0,3.55,3.645,0.513,7.528,0.631,10.104,-12.683,0.0,0.0,0.0,8.312,-0.062,5.265,0.0,0.776,0.0,5.021,-8.643,-2.504,0.0,-0.052,-0.46,-0.051,2.698,-0.025,-1.389,11.73,0.0,0.0,0.0,-6.33,-0.058,-1.267,-3.074,-0.186,0.0,3.167,8.004,2.005,1354.7,998.0,10786.3,2475.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,57.979,57.979,35.312,35.312,22.667,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.339,0.816,8.508,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.227,0.0,14.185,9.125,0.021,0.0,0.0,0.0,0.0,2011.1,3420.4,3420.4,23.132,18.831,0.0,3.553,3.644,0.513,7.528,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.91,-8.585,-2.5,0.0,-0.048,-0.459,-0.051,2.7,-0.025,-1.395,11.724,0.0,0.0,0.0,-6.326,-0.058,-1.165,-3.078,-0.165,0.0,3.112,7.6,2.01,1354.8,997.6,10766.2,2470.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,64.778,64.778,27.014,27.014,22.487,15.277,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.511,0.856,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3133.3,3133.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,64.778,64.778,27.014,27.014,22.487,0.0,0.0,15.277,0.0,0.0,0.0,0.371,0.0,0.0,4.511,0.856,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3133.3,3133.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,60.655,60.655,26.802,26.802,33.852,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,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,0.0,22.681,0.0,11.171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.056,0.0,0.0,0.0,0.0,0.0,1462.6,3065.8,3065.8,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11343.1,2602.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,58.756,58.756,36.075,36.075,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,9.273,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3456.4,3456.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,58.651,58.651,35.97,35.97,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,2006.8,3451.9,3451.9,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,58.756,58.756,36.075,36.075,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,9.273,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3456.4,3456.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,59.144,59.144,26.802,26.802,32.342,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,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,0.0,22.681,0.0,9.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,21.24,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3065.8,3065.8,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,53.401,53.401,26.802,26.802,26.599,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,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,0.0,22.681,0.0,3.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.076,0.0,0.0,5.899,0.0,0.0,1462.6,3065.8,3065.8,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,474.2,349.2,3909.2,897.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,51.116,51.116,27.233,27.233,23.882,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.444,0.841,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,0.0,22.316,0.0,1.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.899,0.0,14.636,9.262,0.0,0.0,7.989,0.0,0.0,1462.4,3131.7,3131.7,23.167,19.107,0.0,3.557,3.645,0.513,7.532,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,4.807,0.0,0.73,0.0,4.843,-8.879,-2.498,0.0,-0.058,-0.467,-0.052,2.679,-0.027,-1.42,11.73,0.0,0.0,0.0,-6.36,-0.058,-1.175,-3.128,-0.166,0.0,3.187,8.131,2.011,1344.9,989.3,9809.3,2250.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,60.678,60.678,26.802,26.802,33.876,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,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,0.0,22.681,0.0,11.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.24,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3065.8,3065.8,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,60.678,60.678,26.802,26.802,22.681,0.0,11.195,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.337,0.815,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.24,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3065.8,3065.8,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,65.628,65.628,40.908,40.908,24.721,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,6.413,1.278,8.973,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,0.0,24.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,23.053,0.0,22.216,9.053,0.609,0.0,0.0,0.0,0.0,2295.2,4798.0,4798.0,30.686,28.023,0.0,3.862,7.596,1.093,5.881,0.688,20.477,-24.88,0.0,0.0,0.867,6.711,-0.179,8.99,0.0,0.763,0.0,3.298,-9.747,-2.93,0.0,-0.108,-1.064,-0.109,1.841,-0.027,-1.631,23.454,0.0,0.0,-0.141,-4.808,-0.17,-1.956,-6.137,-0.162,0.0,2.864,8.485,2.338,1354.8,997.6,11171.5,2524.9,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7647.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25899.0,4445.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,73.62,73.62,44.217,44.217,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,6.301,1.252,8.86,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,0.0,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.421,0.0,21.74,8.989,0.612,0.0,0.0,0.0,0.0,2519.0,4681.2,4681.2,33.941,28.165,0.0,3.774,7.88,1.071,7.921,0.667,20.509,-25.19,0.0,0.0,0.0,9.056,-0.136,11.167,0.0,0.747,0.0,3.872,-10.951,-3.54,0.0,-0.074,-1.046,-0.101,2.662,-0.023,-2.118,23.376,0.0,0.0,0.0,-6.456,-0.126,-2.486,-6.302,-0.162,0.0,2.792,9.405,2.832,1354.8,997.6,11171.6,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25801.0,4444.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,54.806,54.806,30.551,30.551,24.255,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.075,0.753,5.473,0.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,0.0,24.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,22.716,0.0,13.253,5.267,0.615,0.0,0.0,0.0,0.0,1683.1,3249.6,3249.6,23.625,18.28,0.0,3.533,3.635,0.511,7.498,0.63,10.083,-12.698,0.0,0.0,0.0,8.293,-0.065,4.804,0.0,0.727,0.0,5.229,-7.29,-2.504,0.0,-0.017,-0.434,-0.048,2.778,-0.018,-1.304,11.715,0.0,0.0,0.0,-6.2,-0.061,-1.138,-2.942,-0.161,0.0,2.969,6.287,2.006,939.7,637.0,6161.9,1598.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18320.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,56.505,56.505,33.248,33.248,23.257,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.229,0.79,7.282,0.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,0.0,23.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,21.78,0.0,13.818,7.212,0.614,0.0,0.0,0.0,0.0,2063.0,3316.5,3316.5,23.329,18.601,0.0,3.545,3.639,0.512,7.514,0.63,10.088,-12.691,0.0,0.0,0.0,8.302,-0.063,4.804,0.0,0.728,0.0,5.031,-8.097,-2.5,0.0,-0.035,-0.449,-0.05,2.732,-0.022,-1.359,11.723,0.0,0.0,0.0,-6.276,-0.059,-1.155,-3.024,-0.163,0.0,3.057,7.081,2.009,1147.2,817.3,8666.7,2153.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18553.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,59.755,59.755,38.468,38.468,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.351,0.0,0.0,4.55,0.866,10.712,0.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,0.0,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.934,0.0,14.984,10.898,0.613,0.0,0.0,0.0,0.0,2183.4,3545.3,3545.3,22.735,19.253,0.0,3.569,3.65,0.514,7.549,0.631,10.109,-12.676,0.0,0.0,0.0,8.327,-0.062,4.808,0.0,0.731,0.0,4.636,-9.709,-2.497,0.0,-0.072,-0.479,-0.054,2.64,-0.031,-1.461,11.737,0.0,0.0,0.0,-6.42,-0.058,-1.188,-3.188,-0.168,0.0,3.234,8.669,2.013,1562.4,1177.9,13676.3,2901.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5342.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 -base-enclosure-beds-5.xml,61.362,61.362,41.044,41.044,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.335,0.0,0.0,4.716,0.906,12.383,0.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,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,0.0,15.585,12.694,0.612,0.0,0.0,0.0,0.0,2527.7,3899.3,3899.3,22.438,19.574,0.0,3.582,3.657,0.515,7.568,0.633,10.128,-12.669,0.0,0.0,0.0,8.348,-0.064,4.813,0.0,0.733,0.0,4.441,-10.517,-2.496,0.0,-0.09,-0.493,-0.056,2.596,-0.034,-1.504,11.744,0.0,0.0,0.0,-6.484,-0.06,-1.202,-3.268,-0.17,0.0,3.322,9.461,2.013,1770.0,1358.2,16181.0,3193.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19258.0,5339.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 -base-enclosure-ceilingtypes.xml,74.243,74.243,36.39,36.39,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,0.0,4.592,0.878,9.02,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.444,0.0,15.23,9.075,0.618,0.0,0.0,0.0,0.0,2135.2,3465.2,3465.2,29.35,19.614,0.0,17.288,3.592,0.505,7.259,0.62,9.956,-12.802,0.0,0.0,0.0,7.765,-0.075,4.845,0.0,0.734,0.0,6.976,-9.065,-2.542,0.0,0.085,-0.331,-0.033,2.89,0.007,-1.002,11.611,0.0,0.0,0.0,-6.098,-0.066,-1.017,-2.912,-0.141,0.0,2.765,7.716,1.968,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30007.0,5443.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,67.046,67.046,29.281,29.281,37.765,0.0,0.0,0.0,0.0,0.0,0.0,0.623,0.0,0.0,3.665,0.648,9.216,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,37.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,35.371,0.0,11.104,9.182,0.62,0.0,0.0,0.0,0.0,1765.2,3453.8,3453.8,29.151,21.511,0.0,3.488,3.656,0.0,0.0,0.672,9.52,-13.012,0.0,0.0,29.107,0.0,-0.209,2.053,0.0,0.788,0.0,7.865,-7.472,-1.575,0.0,0.408,-0.079,0.0,0.0,0.093,0.884,10.956,0.0,0.0,-8.039,0.0,-0.204,-0.263,-1.884,-0.087,0.0,2.695,5.732,1.072,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19986.0,5356.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-enclosure-garage.xml,58.482,58.482,34.554,34.554,23.928,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.09,0.532,9.119,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,0.0,23.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,22.402,0.0,9.107,9.075,0.724,0.0,0.0,0.0,0.0,2134.3,2857.5,2857.5,18.031,11.736,0.0,3.529,3.789,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.368,0.0,0.0,0.0,3.762,-6.763,-2.508,0.0,0.098,-0.288,-0.036,2.418,-0.001,-1.133,8.269,0.0,0.0,0.0,-5.679,-0.041,-1.225,-2.105,0.0,0.0,1.315,5.683,2.002,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15522.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,58.14,58.14,35.874,35.874,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3389.8,3389.8,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,58.14,58.14,35.874,35.874,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3389.8,3389.8,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,58.14,58.14,35.874,35.874,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.387,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3389.8,3389.8,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,65.777,65.777,35.886,35.886,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.296,0.802,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.927,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3507.2,3507.2,28.066,19.95,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.012,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.13,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,59.548,59.548,35.873,35.873,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.368,0.822,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.0,14.292,9.075,0.614,0.0,0.0,0.0,0.0,2119.6,3414.9,3414.9,23.768,19.155,0.0,3.545,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.319,-0.062,5.886,0.0,0.728,0.0,5.113,-8.911,-2.5,0.0,-0.047,-0.456,-0.051,2.715,-0.024,-1.382,11.724,0.0,0.0,0.0,-6.303,-0.058,-1.436,-3.06,-0.164,0.0,3.143,7.868,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,65.777,65.777,35.886,35.886,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.296,0.802,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.927,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3507.2,3507.2,28.066,19.95,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.012,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.13,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,65.777,65.777,35.886,35.886,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.296,0.802,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.927,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3507.2,3507.2,28.066,19.95,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.012,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.13,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,58.363,58.363,35.85,35.85,22.513,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.364,0.822,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.083,0.0,14.299,9.075,0.614,0.0,0.0,0.0,0.0,2110.9,3385.9,3385.9,23.045,18.891,0.0,3.551,3.641,0.512,7.521,0.864,10.091,-12.683,0.0,0.0,0.0,8.303,-0.064,4.805,0.0,0.729,0.0,4.878,-8.906,-2.499,0.0,-0.051,-0.462,-0.052,2.692,-0.155,-1.398,11.73,0.0,0.0,0.0,-6.336,-0.06,-1.168,-3.092,-0.165,0.0,3.124,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,58.265,58.265,35.705,35.705,22.561,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.246,0.794,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.128,0.0,13.814,9.075,0.614,0.0,0.0,0.0,0.0,2116.9,3341.8,3341.8,22.984,18.381,0.0,3.548,3.639,0.512,7.51,0.629,10.004,-12.276,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.729,0.0,4.882,-8.91,-2.5,0.0,-0.035,-0.451,-0.05,2.717,-0.023,-1.42,11.099,0.0,0.0,0.0,-6.287,-0.059,-1.163,-3.064,-0.164,0.0,3.023,7.868,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,58.064,58.064,35.712,35.712,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.254,0.798,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.931,0.0,13.848,9.075,0.614,0.0,0.0,0.0,0.0,2115.6,3271.7,3271.7,22.859,17.895,0.0,3.669,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.307,-0.061,4.806,0.0,0.729,0.0,4.836,-8.908,-2.5,0.0,-0.304,-0.459,-0.051,2.699,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.327,-0.058,-1.168,-3.089,-0.165,0.0,2.798,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,60.647,60.647,36.968,36.968,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,5.258,1.028,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,17.958,9.075,0.612,0.0,0.0,0.0,0.0,2132.5,3654.4,3654.4,24.757,21.883,0.0,3.552,3.66,0.515,7.583,0.634,10.135,-12.625,2.717,-2.174,0.0,8.471,-0.068,4.816,0.0,0.732,0.0,5.144,-8.887,-2.495,0.0,-0.143,-0.516,-0.059,2.583,-0.039,-1.533,11.705,-0.068,3.749,0.0,-6.624,-0.063,-1.187,-3.252,-0.17,0.0,3.94,7.889,2.014,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23504.0,5406.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,59.277,59.277,35.918,35.918,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.409,0.831,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.875,0.0,14.462,9.075,0.614,0.0,0.0,0.0,0.0,2115.2,3424.8,3424.8,23.651,19.191,0.0,3.538,3.64,0.512,7.524,0.63,10.088,-12.677,1.147,-0.32,0.0,8.318,-0.063,4.806,0.0,0.729,0.0,5.048,-8.906,-2.499,0.0,-0.053,-0.458,-0.051,2.705,-0.025,-1.388,11.724,-0.498,0.432,0.0,-6.325,-0.059,-1.163,-3.074,-0.165,0.0,3.176,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19514.0,5322.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,58.653,58.653,36.626,36.626,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.363,0.0,0.0,5.002,0.97,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.626,0.0,16.931,9.075,0.612,0.0,0.0,0.0,0.0,2127.3,3654.3,3654.3,23.618,21.274,0.0,3.568,3.663,0.516,7.583,0.634,10.138,-12.642,0.857,-1.409,0.0,8.436,-0.063,4.814,0.0,0.732,0.0,4.801,-8.885,-2.496,0.0,-0.126,-0.51,-0.059,2.585,-0.038,-1.535,11.715,0.254,2.537,0.0,-6.587,-0.059,-1.196,-3.257,-0.17,0.0,3.684,7.891,2.014,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21676.0,5364.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,58.405,58.405,36.726,36.726,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,5.088,0.99,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.301,0.0,17.295,9.075,0.612,0.0,0.0,0.0,0.0,2126.9,3654.4,3654.4,23.534,21.347,0.0,3.575,3.667,0.516,7.595,0.636,10.154,-12.632,0.765,-1.651,0.0,8.463,-0.066,4.818,0.0,0.732,0.0,4.733,-8.884,-2.495,0.0,-0.137,-0.519,-0.06,2.564,-0.04,-1.554,11.716,0.258,2.975,0.0,-6.633,-0.063,-1.201,-3.288,-0.171,0.0,3.753,7.892,2.015,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21910.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,40.366,40.366,29.387,29.387,10.979,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,3.939,0.728,9.409,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,10.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,10.274,0.0,12.412,9.295,0.606,0.0,0.0,0.0,0.0,1718.3,2550.9,2550.9,13.175,13.018,0.0,3.945,3.838,0.0,0.0,0.691,10.079,-12.095,0.0,0.0,0.0,7.996,-0.152,2.657,0.0,0.776,0.0,0.295,-6.808,-1.452,0.0,-0.102,-0.617,0.0,0.0,-0.024,-0.74,12.161,0.0,0.0,0.0,-1.657,-0.149,-0.598,-3.044,-0.169,0.0,0.084,6.381,1.195,1354.8,997.6,11171.5,2952.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29034.0,1685.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,313.0,0.0,-487.0,800.0 -base-enclosure-thermal-mass.xml,57.934,57.934,35.827,35.827,22.107,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.35,0.82,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.703,0.0,14.273,9.075,0.614,0.0,0.0,0.0,0.0,2110.8,3352.1,3352.1,22.901,18.579,0.0,3.557,3.642,0.513,7.508,0.63,10.116,-12.697,0.0,0.0,0.0,8.279,-0.098,4.801,0.0,0.728,0.0,4.785,-8.907,-2.499,0.0,-0.047,-0.46,-0.051,2.699,-0.026,-1.427,11.731,0.0,0.0,0.0,-6.336,-0.094,-1.175,-3.143,-0.166,0.0,3.08,7.871,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,74.849,74.849,34.545,34.545,40.303,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,3.052,0.529,9.023,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.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,37.731,0.0,8.994,9.075,0.622,0.0,0.0,0.0,0.0,2128.5,2694.0,2694.0,25.831,12.574,0.0,3.347,16.952,0.473,7.157,0.836,1.283,-1.612,0.0,0.0,0.0,7.38,-0.045,4.826,0.0,0.732,0.0,7.806,-9.155,-2.566,0.0,0.292,-0.622,-0.009,3.405,-0.085,-0.165,1.409,0.0,0.0,0.0,-4.92,-0.04,-0.965,-0.378,-0.123,0.0,1.748,7.631,1.944,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13671.0,5183.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,57.225,57.225,34.888,34.888,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.594,0.631,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.919,0.0,10.838,9.075,0.616,0.0,0.0,0.0,0.0,2119.4,3353.1,3353.1,23.032,18.584,0.0,3.555,3.644,0.513,7.537,0.631,10.098,-12.683,0.0,0.0,0.0,8.359,-0.06,4.806,0.0,0.729,0.0,4.848,-8.905,-2.499,0.0,0.014,-0.412,-0.044,2.862,-0.013,-1.249,11.73,0.0,0.0,0.0,-6.095,-0.057,-1.111,-7.007,-0.157,0.0,2.703,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-none.xml,58.708,58.708,33.84,33.84,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.681,0.452,9.021,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.28,0.0,7.537,9.075,0.619,0.0,0.0,0.0,0.0,2107.2,2494.2,2494.2,17.245,8.333,0.0,3.468,5.156,0.5,7.22,0.6,0.0,0.0,0.0,0.0,0.0,7.492,-0.043,4.777,0.0,0.723,0.0,4.877,-9.031,-2.531,0.0,0.205,-0.376,-0.023,3.187,0.013,0.0,0.0,0.0,0.0,0.0,-5.188,-0.041,-1.102,0.0,-0.144,0.0,1.301,7.752,1.978,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5099.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,65.931,65.931,35.986,35.986,29.945,0.0,0.0,0.0,0.0,0.0,0.0,0.494,0.0,0.0,4.379,0.819,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.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,0.0,0.0,28.045,0.0,14.213,9.075,0.616,0.0,0.0,0.0,0.0,2146.8,3654.3,3654.3,27.766,21.326,0.0,3.492,3.633,0.511,7.504,0.63,19.595,-16.819,0.0,0.0,0.0,8.426,-0.074,4.825,0.0,0.732,0.0,6.377,-8.965,-2.513,0.0,0.015,-0.392,-0.042,2.826,-0.007,-4.96,14.292,0.0,0.0,0.0,-6.171,-0.068,-1.082,-2.85,-0.155,0.0,3.243,7.815,1.997,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21180.0,5355.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,58.063,58.063,35.903,35.903,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.412,0.834,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.753,0.0,14.515,9.075,0.613,0.0,0.0,0.0,0.0,2119.4,3389.8,3389.8,23.032,18.927,0.0,3.558,3.645,0.513,7.515,0.631,10.105,-12.683,0.0,0.0,0.0,8.252,-0.071,4.808,0.0,0.73,0.0,4.81,-8.905,-2.499,0.0,-0.073,-0.483,-0.055,2.62,-0.031,-1.316,12.141,0.0,0.0,0.0,-6.498,-0.067,-1.188,-3.219,-0.168,0.0,3.165,7.872,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,57.782,57.782,33.416,33.416,24.367,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,2.352,0.361,9.024,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,0.0,0.0,22.819,0.0,6.148,9.075,0.622,0.0,0.0,0.0,0.0,2131.5,2563.4,2563.4,23.076,11.305,0.0,3.574,3.682,0.517,7.568,0.638,10.631,-11.787,0.0,0.0,0.0,8.559,-0.043,4.867,0.0,0.74,0.0,5.219,-9.143,-2.56,0.0,0.354,-0.11,-0.002,3.553,0.056,-3.589,2.911,0.0,0.0,0.0,-4.594,-0.039,-0.912,-2.173,-0.118,0.0,1.398,7.643,1.95,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,59.101,59.101,35.295,35.295,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,3.895,0.713,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.295,0.0,12.373,9.075,0.616,0.0,0.0,0.0,0.0,2130.8,3277.5,3277.5,22.493,16.956,0.0,3.514,3.609,0.508,7.424,0.622,8.599,-9.444,0.0,0.0,0.0,8.041,-0.059,4.791,0.0,0.726,0.0,5.093,-8.925,-2.504,0.0,0.017,-0.411,-0.044,2.82,-0.014,-0.74,8.684,0.0,0.0,0.0,-6.06,-0.055,-1.142,-2.918,-0.16,0.0,2.72,7.854,2.006,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17521.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-ambient.xml,47.567,47.567,30.24,30.24,17.327,0.0,0.0,0.0,0.0,0.0,0.0,0.286,0.0,0.0,4.721,0.9,9.202,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,17.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.0,15.611,9.182,0.606,0.0,0.0,0.0,2.0,1739.2,3453.8,3453.8,20.513,21.806,0.0,3.811,3.817,0.0,0.0,0.769,10.526,-11.315,0.0,0.0,10.182,0.0,-0.48,2.065,0.0,0.786,0.0,3.899,-6.747,-1.425,0.0,-0.107,-0.589,0.0,0.0,0.029,-0.179,12.654,0.0,0.0,-3.786,0.0,-0.474,-0.413,-2.427,-0.161,0.0,3.621,6.443,1.222,1354.8,997.6,11171.6,2752.7,0.0,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,18957.0,5354.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-basement-garage.xml,52.348,52.348,32.59,32.59,19.758,0.0,0.0,0.0,0.0,0.0,0.0,0.326,0.0,0.0,4.407,0.83,9.25,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,0.0,19.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,18.502,0.0,14.445,9.204,0.613,0.0,0.0,0.0,0.0,1905.4,3347.0,3347.0,21.426,19.451,0.0,3.661,4.739,0.514,5.516,0.701,9.837,-12.609,0.0,0.0,0.835,6.146,-0.039,3.259,0.0,0.735,0.0,4.443,-7.701,-1.886,0.0,-0.039,-0.654,-0.057,1.918,-0.044,-1.196,11.679,0.0,0.0,-0.129,-4.618,-0.036,-0.791,-3.022,-0.167,0.0,3.313,6.955,1.52,1354.8,997.6,11171.6,2792.6,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19061.0,5346.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 -base-foundation-belly-wing-no-skirt.xml,49.327,49.327,29.321,29.321,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.937,0.721,9.203,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,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.736,0.0,12.229,9.182,0.607,0.0,0.0,0.0,0.0,1746.6,3052.5,3052.5,24.177,17.847,0.0,3.986,5.373,0.0,0.0,0.756,8.719,-11.134,0.0,0.0,10.274,0.0,-0.363,2.069,0.0,0.793,0.0,6.171,-6.863,-1.453,0.0,0.291,-0.621,0.0,0.0,0.037,0.041,9.561,0.0,0.0,-3.473,0.0,-0.356,-0.4,-2.2,-0.147,0.0,2.245,6.327,1.194,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-belly-wing-skirt.xml,48.955,48.955,29.329,29.329,19.626,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.948,0.724,9.203,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,19.626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.38,0.0,12.283,9.182,0.606,0.0,0.0,0.0,0.0,1745.5,3048.1,3048.1,24.024,17.806,0.0,3.992,5.382,0.0,0.0,0.757,8.731,-11.127,0.0,0.0,9.978,0.0,-0.357,2.07,0.0,0.794,0.0,6.058,-6.857,-1.453,0.0,0.285,-0.63,0.0,0.0,0.036,0.021,9.567,0.0,0.0,-3.392,0.0,-0.351,-0.403,-2.214,-0.147,0.0,2.251,6.333,1.194,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-complex.xml,77.416,77.416,37.17,37.17,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,5.194,1.017,9.019,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.691,0.0,17.738,9.075,0.617,0.0,0.0,0.0,3.0,2139.6,3654.3,3654.3,33.388,22.034,0.0,3.434,3.658,0.521,19.566,0.65,10.136,-12.837,0.0,0.0,0.0,8.756,-0.109,6.085,0.0,0.739,0.0,8.279,-9.111,-2.555,0.0,0.034,-0.372,-0.046,3.7,-0.007,-1.014,11.574,0.0,0.0,0.0,-4.532,-0.101,-1.237,-3.289,-0.139,0.0,3.73,7.67,1.955,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation-full.xml,55.459,55.459,36.411,36.411,19.048,0.0,0.0,0.0,0.0,0.0,0.0,0.314,0.0,0.0,4.865,0.942,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,17.836,0.0,16.438,9.075,0.611,0.0,0.0,0.0,0.0,2120.4,3580.4,3580.4,22.288,20.673,0.0,3.636,3.705,0.522,8.235,0.644,10.266,-12.652,0.0,0.0,0.0,4.795,-0.064,4.843,0.0,0.735,0.0,4.211,-8.886,-2.496,0.0,-0.111,-0.508,-0.058,2.158,-0.038,-1.547,11.761,0.0,0.0,0.0,-3.714,-0.059,-1.194,-3.315,-0.17,0.0,3.498,7.889,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,57.015,57.015,36.081,36.081,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.573,0.871,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,15.18,9.075,0.613,0.0,0.0,0.0,0.0,2123.3,3481.5,3481.5,22.76,19.767,0.0,3.584,3.664,0.516,7.833,0.635,10.15,-12.669,0.0,0.0,0.0,6.873,-0.061,4.815,0.0,0.731,0.0,4.578,-8.892,-2.496,0.0,-0.079,-0.484,-0.055,2.494,-0.032,-1.471,11.744,0.0,0.0,0.0,-5.347,-0.057,-1.182,-3.184,-0.168,0.0,3.283,7.885,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,56.932,56.932,35.418,35.418,21.515,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,4.03,0.74,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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.0,0.0,20.147,0.0,12.834,9.075,0.614,0.0,0.0,0.0,0.0,2124.2,3441.8,3441.8,23.225,18.744,0.0,3.584,3.669,0.516,6.117,0.636,10.166,-12.69,0.0,0.0,0.0,8.986,-0.065,4.827,0.0,0.734,0.0,4.708,-8.905,-2.5,0.0,-0.002,-0.423,-0.046,1.073,-0.017,-1.296,11.724,0.0,0.0,0.0,-6.519,-0.06,-1.143,-2.923,-0.162,0.0,2.934,7.872,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,46.866,46.866,28.865,28.865,18.001,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.581,0.647,9.21,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,18.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,16.845,0.0,11.07,9.182,0.614,0.0,0.0,0.0,0.0,1720.5,2382.0,2382.0,15.899,11.724,0.0,3.711,3.607,0.507,5.113,0.622,9.795,-12.66,0.0,0.0,0.0,10.002,-0.052,3.495,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.025,-0.473,-0.053,1.786,-0.029,-1.225,11.693,0.0,0.0,0.0,-3.856,-0.048,-0.842,-2.99,-0.164,0.0,0.0,6.308,1.18,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 -base-foundation-multiple.xml,42.371,42.371,29.675,29.675,12.696,0.0,0.0,0.0,0.0,0.0,0.0,0.209,0.0,0.0,4.336,0.818,9.182,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,12.696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.886,0.0,13.988,9.126,0.693,0.0,0.0,0.0,0.0,1709.3,3015.8,3015.8,15.204,15.253,0.0,3.982,3.868,0.0,0.0,0.78,10.584,-11.178,0.0,0.0,5.315,0.0,-0.386,2.585,0.0,0.0,0.0,1.988,-4.612,-1.419,0.0,-0.151,-0.726,0.0,0.0,-0.016,-0.483,12.79,0.0,0.0,-0.712,0.0,-0.381,-0.573,-2.645,0.0,0.0,1.694,4.254,1.228,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23121.0,4832.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14275.0,221.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-slab.xml,39.582,39.582,29.249,29.249,10.333,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.0,0.0,4.003,0.743,9.201,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,10.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.67,0.0,12.686,9.182,0.605,0.0,0.0,0.0,0.0,1716.3,2523.4,2523.4,12.694,12.985,0.0,3.934,3.804,0.0,0.0,0.691,10.073,-12.046,0.0,0.0,0.0,8.0,-0.153,2.012,0.0,0.776,0.0,0.278,-6.774,-1.446,0.0,-0.09,-0.602,0.0,0.0,-0.029,-0.812,12.21,0.0,0.0,0.0,-1.717,-0.151,-0.471,-2.884,-0.174,0.0,0.085,6.415,1.201,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,28667.0,1684.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-above-grade.xml,43.546,43.546,29.811,29.811,13.735,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.418,0.836,9.2,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,13.735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.859,0.0,14.351,9.126,0.713,0.0,0.0,0.0,0.0,1713.3,2873.7,2873.7,16.464,16.227,0.0,3.987,3.868,0.0,0.0,0.779,10.63,-11.228,0.0,0.0,5.935,0.0,-0.399,2.588,0.0,0.0,0.0,2.404,-4.628,-1.424,0.0,-0.127,-0.706,0.0,0.0,-0.012,-0.481,12.741,0.0,0.0,-0.614,0.0,-0.394,-0.561,-2.632,0.0,0.0,1.97,4.237,1.223,1354.8,997.6,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23082.0,4827.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14270.0,225.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-assembly-r.xml,40.853,40.853,29.219,29.219,11.634,0.0,0.0,0.0,0.0,0.0,0.0,0.192,0.0,0.0,3.968,0.731,9.197,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,11.634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.892,0.0,12.421,9.126,0.71,0.0,0.0,0.0,0.0,1716.9,2631.9,2631.9,14.652,13.981,0.0,3.976,3.837,0.0,0.0,0.769,10.587,-11.043,0.0,0.0,4.441,0.0,-0.41,2.586,0.0,0.0,0.0,1.776,-4.584,-1.409,0.0,-0.127,-0.681,0.0,0.0,0.012,-0.458,12.925,0.0,0.0,-2.107,0.0,-0.406,-0.578,-2.548,0.0,0.0,1.166,4.282,1.238,1354.8,997.6,11171.6,2652.8,0.0,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,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement-wall-insulation.xml,48.503,48.503,28.884,28.884,19.619,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.644,0.654,9.131,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,19.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.362,0.0,11.127,9.126,0.639,0.0,0.0,0.0,0.0,1728.2,2484.7,2484.7,16.593,12.566,0.0,3.735,3.633,0.0,0.0,0.636,9.314,-12.475,0.0,0.0,14.539,0.0,-0.046,2.466,0.0,0.0,0.0,2.55,-4.773,-1.48,0.0,0.05,-0.453,0.0,0.0,-0.018,-0.471,11.493,0.0,0.0,-2.86,0.0,-0.045,-0.525,-2.441,0.0,0.0,1.344,4.092,1.167,1354.8,997.6,11171.6,2652.8,0.0,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,15218.0,127.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unconditioned-basement.xml,42.445,42.445,29.706,29.706,12.739,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.353,0.822,9.19,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,12.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.926,0.0,14.067,9.126,0.703,0.0,0.0,0.0,0.0,1709.8,3128.6,3128.6,15.45,15.452,0.0,3.974,3.834,0.0,0.0,0.76,10.528,-11.159,0.0,0.0,5.366,0.0,-0.39,2.583,0.0,0.0,0.0,2.089,-4.606,-1.417,0.0,-0.13,-0.683,0.0,0.0,0.003,-0.513,12.81,0.0,0.0,-0.766,0.0,-0.385,-0.574,-2.667,0.0,0.0,1.771,4.26,1.23,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23128.0,4832.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14277.0,221.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-unvented-crawlspace.xml,40.31,40.31,29.809,29.809,10.501,0.0,0.0,0.0,0.0,0.0,0.0,0.173,0.0,0.0,4.376,0.83,9.298,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,10.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,0.0,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.832,0.0,14.178,9.182,0.708,0.0,0.0,0.0,0.0,1705.8,3002.3,3002.3,14.329,14.748,0.0,3.959,3.815,0.0,0.0,0.781,10.65,-10.714,0.0,0.0,4.565,0.0,-0.459,2.05,0.0,0.775,0.0,1.604,-6.2,-1.376,0.0,-0.242,-0.804,0.0,0.0,-0.001,-0.693,13.255,0.0,0.0,-2.1,0.0,-0.454,-0.49,-2.745,-0.198,0.0,1.315,6.384,1.271,1354.8,997.6,11171.5,2752.7,0.0,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace-above-grade.xml,42.302,42.302,29.914,29.914,12.388,0.0,0.0,0.0,0.0,0.0,0.0,0.204,0.0,0.0,4.385,0.83,9.364,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,12.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,11.599,0.0,14.129,9.182,0.777,0.0,0.0,0.0,0.0,1721.9,2805.0,2805.0,15.473,15.546,0.0,3.952,3.793,0.0,0.0,0.758,10.49,-10.966,0.0,0.0,6.708,0.0,-0.446,1.847,0.0,0.78,0.0,1.999,-6.302,-1.401,0.0,-0.145,-0.695,0.0,0.0,0.016,-0.509,13.003,0.0,0.0,-2.522,0.0,-0.441,-0.399,-2.671,-0.183,0.0,1.477,6.282,1.246,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,24393.0,7387.0,7508.0,0.0,575.0,2198.0,0.0,2255.0,0.0,2171.0,2299.0,15739.0,2026.0,7037.0,0.0,207.0,232.0,0.0,598.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-vented-crawlspace.xml,42.211,42.211,29.751,29.751,12.459,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,4.246,0.797,9.372,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,12.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,11.666,0.0,13.527,9.182,0.786,0.0,0.0,0.0,0.0,1723.9,3108.5,3108.5,15.482,15.239,0.0,3.962,3.816,0.0,0.0,0.766,10.546,-11.029,0.0,0.0,6.732,0.0,-0.434,1.848,0.0,0.782,0.0,2.013,-6.322,-1.406,0.0,-0.128,-0.69,0.0,0.0,0.01,-0.475,12.939,0.0,0.0,-3.04,0.0,-0.429,-0.394,-2.616,-0.18,0.0,1.349,6.262,1.241,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,23883.0,6887.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 -base-foundation-walkout-basement.xml,64.13,64.13,36.25,36.25,27.88,0.0,0.0,0.0,0.0,0.0,0.0,0.46,0.0,0.0,4.617,0.879,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.11,0.0,15.293,9.075,0.615,0.0,0.0,0.0,0.0,2133.5,3636.6,3636.6,26.753,20.8,0.0,3.536,3.698,0.521,7.384,0.648,10.878,-12.928,0.0,0.0,0.0,10.191,-0.062,6.628,0.0,0.729,0.0,5.961,-8.927,-2.504,0.0,-0.108,-0.524,-0.061,1.459,-0.034,-1.566,12.043,0.0,0.0,0.0,-3.716,-0.057,-1.537,-3.401,-0.161,0.0,3.295,7.852,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19161.0,5335.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.745,34.745,34.745,34.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.399,1.009,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.916,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,3230.1,3230.1,0.0,16.016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.022,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,1.982,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.603,45.603,45.603,45.603,0.0,0.0,0.0,0.0,0.0,0.0,9.465,0.999,0.296,0.017,3.494,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.459,0.313,13.301,9.075,0.614,0.0,0.0,0.0,0.0,7012.9,3262.5,7012.9,24.203,16.281,0.0,3.531,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.456,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,41.821,41.821,41.821,41.821,0.0,0.0,0.0,0.0,0.0,0.0,9.485,1.729,0.308,0.031,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.092,0.339,0.0,9.075,0.588,0.0,0.0,0.0,0.0,7122.8,1624.2,7122.8,25.253,0.0,0.0,3.503,3.648,0.513,7.514,0.632,10.115,-12.683,0.0,0.0,0.0,8.151,-0.069,4.81,0.0,0.73,0.0,6.27,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.568,45.568,45.568,45.568,0.0,0.0,0.0,0.0,0.0,0.0,9.001,0.903,0.894,0.051,3.414,1.014,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.707,0.945,12.973,9.075,0.613,0.0,0.0,144.0,0.0,10367.9,3246.2,10367.9,37.455,16.144,0.0,3.614,3.675,0.516,7.775,0.624,10.039,-12.798,0.0,0.0,0.0,9.086,0.059,4.748,0.0,0.762,0.0,4.604,-8.886,-2.51,0.0,0.007,-0.452,-0.051,2.749,-0.035,-1.506,11.615,0.0,0.0,0.0,-6.397,0.05,-1.191,-3.331,-0.163,0.0,1.991,7.891,2.0,1354.8,997.6,11171.5,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.661,45.661,45.661,45.661,0.0,0.0,0.0,0.0,0.0,0.0,9.538,0.999,0.296,0.017,3.479,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.459,0.313,13.301,9.075,0.614,0.0,0.0,0.0,0.0,7012.9,3255.3,7012.9,24.203,16.281,0.0,3.531,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.456,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,45.603,45.603,45.603,45.603,0.0,0.0,0.0,0.0,0.0,0.0,9.465,0.999,0.296,0.017,3.494,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.459,0.313,13.301,9.075,0.614,0.0,0.0,0.0,0.0,7012.9,3262.5,7012.9,24.203,16.281,0.0,3.531,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.456,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.463,41.463,41.463,41.463,0.0,0.0,0.0,0.0,0.0,0.0,7.334,0.584,0.283,0.012,2.332,0.626,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.469,0.295,13.553,9.075,0.614,0.0,0.0,0.0,0.0,6989.9,2803.7,6989.9,24.196,17.295,0.0,3.491,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.498,-8.906,-2.499,0.0,-0.017,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.286,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,46.82,46.82,24.586,24.586,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.319,0.82,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,0.0,22.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.822,0.0,14.352,0.0,0.0,0.0,0.0,0.0,0.0,1360.7,2962.4,2962.4,23.072,18.891,0.0,3.558,3.646,0.513,7.535,0.631,10.106,-12.683,0.0,0.0,0.0,8.321,-0.064,5.405,0.0,0.0,0.0,4.828,-8.819,-2.499,0.0,-0.056,-0.466,-0.052,2.68,-0.027,-1.413,11.73,0.0,0.0,0.0,-6.358,-0.06,-1.307,-3.107,0.0,0.0,3.127,7.842,2.011,0.0,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,58.057,58.057,35.791,35.791,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,8.942,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.017,0.614,0.0,0.0,0.0,0.0,2130.9,3372.9,3372.9,23.033,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,57.637,57.637,35.371,35.371,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,8.531,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.017,0.614,0.0,0.0,0.0,0.0,2115.9,3358.3,3358.3,23.033,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2460.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,72.79,72.79,50.524,50.524,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,22.206,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4183.7,4183.7,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,67.939,67.939,45.672,45.672,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,18.6,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.109,0.614,0.0,0.0,0.0,0.0,2754.3,4000.4,4000.4,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,72.79,72.79,50.524,50.524,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,22.206,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,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.109,0.614,0.0,0.0,0.0,0.0,3072.1,4183.7,4183.7,23.034,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2623.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,52.302,52.302,30.036,30.036,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.356,0.828,2.885,0.0,0.323,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.409,9.098,0.628,0.0,6.625,0.0,0.0,2096.5,3093.6,3093.6,23.033,18.941,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.684,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.147,7.887,2.011,1354.7,997.5,10979.9,2519.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,50.865,50.865,28.608,28.608,22.257,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.368,0.831,1.455,0.0,0.311,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.843,0.0,14.461,9.207,0.694,0.0,8.339,0.0,0.0,2067.2,3097.1,3097.1,23.033,18.971,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.913,-2.499,0.0,-0.055,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.113,-0.166,0.0,3.156,7.945,2.011,1354.4,997.2,10197.2,2339.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-ics.xml,52.381,52.381,30.114,30.114,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.361,0.829,2.953,0.0,0.328,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.432,9.133,0.649,0.0,6.61,0.0,0.0,2124.6,3095.9,3095.9,23.034,18.96,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.055,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.108,-0.166,0.0,3.151,7.909,2.011,1354.7,997.6,10721.3,2460.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,52.478,52.478,29.943,29.943,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.32,0.819,3.156,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.535,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.104,0.0,14.253,9.075,0.215,0.0,5.899,0.0,0.0,1786.0,3372.7,3372.7,23.1,18.862,0.0,3.554,3.644,0.513,7.529,0.631,10.098,-12.69,0.0,0.0,0.0,8.316,-0.062,4.806,0.0,0.729,0.0,4.885,-8.691,-2.5,0.0,-0.05,-0.461,-0.051,2.696,-0.026,-1.399,11.724,0.0,0.0,0.0,-6.333,-0.059,-1.167,-3.087,-0.165,0.0,3.123,7.688,2.01,474.2,349.2,3910.1,897.3,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,50.597,50.597,28.695,28.695,21.903,0.0,0.0,0.0,0.0,0.0,0.0,0.361,0.0,0.0,4.47,0.856,1.426,0.0,0.305,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.903,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.511,0.0,14.907,9.186,0.682,0.0,8.337,0.0,0.0,2107.1,3130.5,3130.5,23.067,19.248,0.0,3.559,3.645,0.513,7.536,0.63,10.098,-12.669,0.0,0.0,0.0,8.31,-0.061,4.807,0.0,0.729,0.0,4.762,-9.207,-2.496,0.0,-0.067,-0.473,-0.053,2.663,-0.029,-1.44,11.744,0.0,0.0,0.0,-6.388,-0.058,-1.183,-3.161,-0.168,0.0,3.23,8.469,2.013,1354.2,997.1,10322.8,2368.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,50.581,50.581,28.324,28.324,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.367,0.831,1.482,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.844,0.0,14.458,9.2,0.69,0.0,8.299,0.0,0.0,2091.4,3065.0,3065.0,23.033,18.97,0.0,3.557,3.645,0.513,7.529,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.912,-2.499,0.0,-0.055,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.353,-0.06,-1.172,-3.112,-0.166,0.0,3.155,7.942,2.011,1354.4,997.2,10240.9,2350.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-coal.xml,64.742,64.742,26.979,26.979,22.487,0.0,0.0,0.0,0.0,15.277,0.0,0.371,0.0,0.0,4.475,0.856,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3115.3,3115.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-detailed-setpoints.xml,58.089,58.089,35.83,35.83,22.26,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.353,0.827,9.006,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.846,0.0,14.397,9.049,0.623,0.0,0.0,0.0,0.0,2529.3,3395.0,3395.0,23.009,18.922,0.0,3.556,3.644,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.831,-8.908,-2.499,0.0,-0.055,-0.465,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.107,-0.166,0.0,3.145,7.879,2.011,1354.8,997.6,11206.2,2571.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,58.132,58.132,35.918,35.918,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.359,0.829,9.088,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,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,0.0,14.421,9.075,0.691,0.0,0.0,0.0,0.0,2172.7,3440.8,3440.8,23.02,18.939,0.0,3.557,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.823,-8.947,-2.499,0.0,-0.055,-0.465,-0.052,2.683,-0.026,-1.41,11.73,0.0,0.0,0.0,-6.352,-0.06,-1.172,-3.11,-0.166,0.0,3.149,7.908,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,66.467,66.467,26.768,26.768,39.698,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,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,0.0,22.681,0.0,17.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.075,5.067,0.0,0.0,0.0,0.0,1462.6,3048.4,3048.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,64.413,64.413,26.941,26.941,37.472,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.441,0.848,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,0.0,22.763,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.317,0.0,14.763,9.075,2.977,0.0,0.0,0.0,0.0,1464.3,3107.5,3107.5,23.55,19.37,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.059,-0.466,-0.052,2.682,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.218,8.483,2.011,1354.8,997.6,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,64.413,64.413,26.941,26.941,37.472,0.0,0.0,0.0,0.0,0.0,0.0,0.376,0.0,0.0,4.441,0.848,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,0.0,22.763,0.0,14.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.317,0.0,14.763,9.075,2.977,0.0,0.0,0.0,0.0,1464.3,3107.5,3107.5,23.55,19.37,0.0,3.553,3.645,0.513,7.532,0.631,10.101,-12.683,0.0,0.0,0.0,8.317,-0.063,5.89,0.0,0.729,0.0,4.937,-9.636,-2.499,0.0,-0.059,-0.466,-0.052,2.682,-0.027,-1.414,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.452,-3.124,-0.166,0.0,3.218,8.483,2.011,1354.8,997.6,11171.7,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,64.742,64.742,26.979,26.979,37.764,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.475,0.856,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,0.0,22.487,0.0,15.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,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3115.3,3115.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,56.204,56.204,28.72,28.72,27.484,0.0,0.0,0.0,0.0,0.0,0.0,0.453,0.0,0.0,3.824,0.702,2.464,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.484,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.734,0.0,12.232,9.216,1.415,0.0,0.0,0.0,0.0,1856.0,3033.7,3033.7,26.694,18.696,0.0,3.506,3.633,0.511,7.505,0.628,10.08,-12.706,0.0,0.0,0.0,8.336,-0.061,4.798,0.0,0.727,0.0,5.798,-4.871,-2.509,0.0,0.02,-0.397,-0.042,2.89,-0.009,-1.185,11.708,0.0,0.0,0.0,-6.003,-0.057,-1.086,-2.728,-0.154,0.0,2.733,5.066,2.0,1354.8,997.6,9994.8,2293.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.061,56.061,28.542,28.542,27.519,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.808,0.698,2.306,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,25.759,0.0,12.17,9.132,1.307,0.0,0.0,0.0,0.0,1854.5,3388.8,3388.8,25.444,18.875,0.0,3.516,3.634,0.511,7.509,0.628,10.061,-12.724,0.0,0.0,0.0,8.352,-0.046,4.792,0.0,0.727,0.0,5.79,-4.85,-2.508,0.0,0.021,-0.401,-0.043,2.894,-0.011,-1.219,11.689,0.0,0.0,0.0,-6.009,-0.042,-1.1,-2.763,-0.152,0.0,2.735,5.064,2.001,1354.8,997.6,10745.3,2465.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,56.185,56.185,33.505,33.505,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,6.736,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.096,2.524,0.0,0.0,0.0,0.0,3051.2,3282.6,3282.6,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11023.3,2529.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,56.061,56.061,28.542,28.542,27.519,0.0,0.0,0.0,0.0,0.0,0.0,0.454,0.0,0.0,3.808,0.698,2.306,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,25.759,0.0,12.17,9.132,1.307,0.0,0.0,0.0,0.0,1854.5,3388.8,3388.8,25.444,18.875,0.0,3.516,3.634,0.511,7.509,0.628,10.061,-12.724,0.0,0.0,0.0,8.352,-0.046,4.792,0.0,0.727,0.0,5.79,-4.85,-2.508,0.0,0.021,-0.401,-0.043,2.894,-0.011,-1.219,11.689,0.0,0.0,0.0,-6.009,-0.042,-1.1,-2.763,-0.152,0.0,2.735,5.064,2.001,1354.8,997.6,10745.3,2465.7,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,51.881,51.881,27.851,27.851,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.396,0.0,0.0,4.161,0.782,1.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,0.0,24.029,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.503,0.0,13.612,9.108,0.602,0.0,5.92,0.0,0.0,1856.3,3135.6,3135.6,25.408,18.908,0.0,3.544,3.64,0.512,7.519,0.629,10.079,-12.705,0.0,0.0,0.0,8.318,-0.055,4.8,0.0,0.728,0.0,5.161,-7.514,-2.501,0.0,-0.028,-0.443,-0.049,2.749,-0.022,-1.352,11.708,0.0,0.0,0.0,-6.242,-0.051,-1.148,-2.982,-0.162,0.0,3.002,6.875,2.009,474.2,349.2,3821.6,876.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,51.398,51.398,28.455,28.455,22.943,0.0,0.0,0.0,0.0,0.0,0.0,0.378,0.0,0.0,4.499,0.863,1.111,0.0,0.327,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.484,0.0,15.039,9.023,1.965,0.0,8.039,0.0,0.0,1896.1,3144.9,3144.9,25.085,19.348,0.0,3.556,3.646,0.513,7.537,0.63,10.093,-12.686,0.0,0.0,0.0,8.324,-0.056,4.806,0.0,0.729,0.0,4.955,-8.421,-2.498,0.0,-0.061,-0.467,-0.052,2.678,-0.028,-1.429,11.727,0.0,0.0,0.0,-6.35,-0.053,-1.177,-3.153,-0.166,0.0,3.244,8.548,2.011,1354.4,997.3,11673.7,2678.8,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,56.302,56.302,29.701,29.701,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.439,0.0,0.0,3.892,0.719,3.376,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.907,0.0,12.539,9.12,1.717,0.0,0.0,0.0,0.0,1874.8,3269.1,3269.1,23.533,19.054,0.0,3.526,3.638,0.512,7.511,0.627,10.061,-12.745,0.0,0.0,0.0,8.343,-0.049,4.795,0.0,0.727,0.0,5.625,-5.52,-2.509,0.0,0.008,-0.413,-0.045,2.848,-0.015,-1.266,11.668,0.0,0.0,0.0,-6.079,-0.045,-1.116,-2.835,-0.155,0.0,2.789,5.526,2.001,1354.8,997.6,10838.7,2487.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.659,58.659,35.391,35.391,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.385,0.834,8.5,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.788,0.0,14.489,9.117,0.021,0.0,0.0,0.0,0.0,4562.5,5549.5,5549.5,30.746,19.739,0.0,3.55,3.645,0.513,7.528,0.631,10.104,-12.683,0.0,0.0,0.0,8.312,-0.062,5.265,0.0,0.776,0.0,5.021,-8.643,-2.504,0.0,-0.052,-0.46,-0.051,2.698,-0.025,-1.389,11.73,0.0,0.0,0.0,-6.33,-0.058,-1.267,-3.074,-0.186,0.0,3.167,8.004,2.005,1354.7,998.0,10786.3,2475.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,57.945,57.945,35.278,35.278,22.667,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.304,0.816,8.508,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.667,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.227,0.0,14.185,9.125,0.021,0.0,0.0,0.0,0.0,2011.1,3403.3,3403.3,23.132,18.831,0.0,3.553,3.644,0.513,7.528,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.91,-8.585,-2.5,0.0,-0.048,-0.459,-0.051,2.7,-0.025,-1.395,11.724,0.0,0.0,0.0,-6.326,-0.058,-1.165,-3.078,-0.165,0.0,3.112,7.6,2.01,1354.8,997.6,10766.2,2470.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,64.742,64.742,26.979,26.979,22.487,15.277,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.475,0.856,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.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,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3115.3,3115.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tank-wood.xml,64.742,64.742,26.979,26.979,22.487,0.0,0.0,15.277,0.0,0.0,0.0,0.371,0.0,0.0,4.475,0.856,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,0.0,22.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.058,0.0,14.911,9.075,3.621,0.0,0.0,0.0,0.0,1463.9,3115.3,3115.3,23.484,19.438,0.0,3.556,3.646,0.513,7.534,0.631,10.103,-12.683,0.0,0.0,0.0,8.317,-0.062,5.891,0.0,0.729,0.0,4.884,-9.857,-2.498,0.0,-0.063,-0.468,-0.053,2.674,-0.028,-1.424,11.73,0.0,0.0,0.0,-6.366,-0.058,-1.456,-3.144,-0.167,0.0,3.241,8.672,2.011,1354.8,997.6,11171.8,2563.6,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,60.62,60.62,26.768,26.768,33.852,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,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,0.0,22.681,0.0,11.171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.056,0.0,0.0,0.0,0.0,0.0,1462.6,3048.4,3048.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11343.1,2602.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,58.722,58.722,36.041,36.041,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,9.273,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3439.2,3439.2,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,58.617,58.617,35.936,35.936,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,2006.8,3434.8,3434.8,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,58.722,58.722,36.041,36.041,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,9.273,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,2013.1,3439.2,3439.2,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,59.11,59.11,26.768,26.768,32.342,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,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,0.0,22.681,0.0,9.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,21.24,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3048.4,3048.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,53.367,53.367,26.768,26.768,26.599,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,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,0.0,22.681,0.0,3.918,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,14.177,9.076,0.0,0.0,5.899,0.0,0.0,1462.6,3048.4,3048.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,474.2,349.2,3909.2,897.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,51.081,51.081,27.198,27.198,23.882,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,4.409,0.841,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,0.0,22.316,0.0,1.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.899,0.0,14.636,9.262,0.0,0.0,7.989,0.0,0.0,1462.4,3114.0,3114.0,23.167,19.107,0.0,3.557,3.645,0.513,7.532,0.631,10.099,-12.683,0.0,0.0,0.0,8.315,-0.062,4.807,0.0,0.73,0.0,4.843,-8.879,-2.498,0.0,-0.058,-0.467,-0.052,2.679,-0.027,-1.42,11.73,0.0,0.0,0.0,-6.36,-0.058,-1.175,-3.128,-0.166,0.0,3.187,8.131,2.011,1344.9,989.3,9809.3,2250.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,60.644,60.644,26.768,26.768,33.876,0.0,0.0,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,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,0.0,22.681,0.0,11.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.24,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3048.4,3048.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-propane.xml,60.644,60.644,26.768,26.768,22.681,0.0,11.195,0.0,0.0,0.0,0.0,0.374,0.0,0.0,4.303,0.815,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,0.0,22.681,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.24,0.0,14.177,9.076,0.0,0.0,0.0,0.0,0.0,1462.6,3048.4,3048.4,23.134,18.827,0.0,3.553,3.644,0.513,7.527,0.63,10.096,-12.69,0.0,0.0,0.0,8.315,-0.062,4.805,0.0,0.729,0.0,4.913,-8.574,-2.5,0.0,-0.048,-0.459,-0.051,2.701,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.325,-0.058,-1.165,-3.077,-0.165,0.0,3.111,7.59,2.01,1354.8,997.6,11169.0,2562.9,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,65.574,65.574,40.854,40.854,24.721,0.0,0.0,0.0,0.0,0.0,0.0,0.322,0.0,0.0,6.359,1.278,8.973,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,0.0,24.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,23.053,0.0,22.216,9.053,0.609,0.0,0.0,0.0,0.0,2295.2,4772.5,4772.5,30.686,28.023,0.0,3.862,7.596,1.093,5.881,0.688,20.477,-24.88,0.0,0.0,0.867,6.711,-0.179,8.99,0.0,0.763,0.0,3.298,-9.747,-2.93,0.0,-0.108,-1.064,-0.109,1.841,-0.027,-1.631,23.454,0.0,0.0,-0.141,-4.808,-0.17,-1.956,-6.137,-0.162,0.0,2.864,8.485,2.338,1354.8,997.6,11171.5,2524.9,0.0,48000.0,36000.0,0.0,6.8,91.76,43789.0,7647.0,15016.0,0.0,575.0,9286.0,0.0,511.0,1432.0,2171.0,7152.0,25899.0,4445.0,14074.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,73.568,73.568,44.165,44.165,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.383,0.0,0.0,6.248,1.252,8.86,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,0.0,29.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.421,0.0,21.74,8.989,0.612,0.0,0.0,0.0,0.0,2519.0,4654.9,4654.9,33.941,28.165,0.0,3.774,7.88,1.071,7.921,0.667,20.509,-25.19,0.0,0.0,0.0,9.056,-0.136,11.167,0.0,0.747,0.0,3.872,-10.951,-3.54,0.0,-0.074,-1.046,-0.101,2.662,-0.023,-2.118,23.376,0.0,0.0,0.0,-6.456,-0.126,-2.486,-6.302,-0.162,0.0,2.792,9.405,2.832,1354.8,997.6,11171.6,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,45761.0,7670.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,25801.0,4444.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,54.775,54.775,30.519,30.519,24.255,0.0,0.0,0.0,0.0,0.0,0.0,0.4,0.0,0.0,4.043,0.753,5.473,0.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,0.0,24.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,22.716,0.0,13.253,5.267,0.615,0.0,0.0,0.0,0.0,1683.1,3233.0,3233.0,23.625,18.28,0.0,3.533,3.635,0.511,7.498,0.63,10.083,-12.698,0.0,0.0,0.0,8.293,-0.065,4.804,0.0,0.727,0.0,5.229,-7.29,-2.504,0.0,-0.017,-0.434,-0.048,2.778,-0.018,-1.304,11.715,0.0,0.0,0.0,-6.2,-0.061,-1.138,-2.942,-0.161,0.0,2.969,6.287,2.006,939.7,637.0,6161.9,1598.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18320.0,5321.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2860.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,56.472,56.472,33.214,33.214,23.257,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.196,0.79,7.282,0.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,0.0,23.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,21.78,0.0,13.818,7.212,0.614,0.0,0.0,0.0,0.0,2063.0,3299.2,3299.2,23.329,18.601,0.0,3.545,3.639,0.512,7.514,0.63,10.088,-12.691,0.0,0.0,0.0,8.302,-0.063,4.804,0.0,0.728,0.0,5.031,-8.097,-2.5,0.0,-0.035,-0.449,-0.05,2.732,-0.022,-1.359,11.723,0.0,0.0,0.0,-6.276,-0.059,-1.155,-3.024,-0.163,0.0,3.057,7.081,2.009,1147.2,817.3,8666.7,2153.4,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18553.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3090.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,59.719,59.719,38.432,38.432,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.351,0.0,0.0,4.513,0.866,10.712,0.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,0.0,21.287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.934,0.0,14.984,10.898,0.613,0.0,0.0,0.0,0.0,2183.4,3530.2,3530.2,22.735,19.253,0.0,3.569,3.65,0.514,7.549,0.631,10.109,-12.676,0.0,0.0,0.0,8.327,-0.062,4.808,0.0,0.731,0.0,4.636,-9.709,-2.497,0.0,-0.072,-0.479,-0.054,2.64,-0.031,-1.461,11.737,0.0,0.0,0.0,-6.42,-0.058,-1.188,-3.188,-0.168,0.0,3.234,8.669,2.013,1562.4,1177.9,13676.3,2901.1,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19030.0,5342.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3550.0,160.0,0.0,-840.0,1000.0 +base-enclosure-beds-5.xml,61.324,61.324,41.006,41.006,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.335,0.0,0.0,4.678,0.906,12.383,0.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,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,0.0,15.585,12.694,0.612,0.0,0.0,0.0,0.0,2527.7,3881.6,3881.6,22.438,19.574,0.0,3.582,3.657,0.515,7.568,0.633,10.128,-12.669,0.0,0.0,0.0,8.348,-0.064,4.813,0.0,0.733,0.0,4.441,-10.517,-2.496,0.0,-0.09,-0.493,-0.056,2.596,-0.034,-1.504,11.744,0.0,0.0,0.0,-6.484,-0.06,-1.202,-3.268,-0.17,0.0,3.322,9.461,2.013,1770.0,1358.2,16181.0,3193.2,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19258.0,5339.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3780.0,360.0,0.0,-840.0,1200.0 +base-enclosure-ceilingtypes.xml,74.206,74.206,36.353,36.353,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,0.0,4.555,0.878,9.02,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.444,0.0,15.23,9.075,0.618,0.0,0.0,0.0,0.0,2135.2,3447.5,3447.5,29.35,19.614,0.0,17.288,3.592,0.505,7.259,0.62,9.956,-12.802,0.0,0.0,0.0,7.765,-0.075,4.845,0.0,0.734,0.0,6.976,-9.065,-2.542,0.0,0.085,-0.331,-0.033,2.89,0.007,-1.002,11.611,0.0,0.0,0.0,-6.098,-0.066,-1.017,-2.912,-0.141,0.0,2.765,7.716,1.968,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,44491.0,8857.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,14165.0,4597.0,30007.0,5443.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,13116.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-floortypes.xml,67.018,67.018,29.253,29.253,37.765,0.0,0.0,0.0,0.0,0.0,0.0,0.623,0.0,0.0,3.637,0.648,9.216,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,37.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,35.371,0.0,11.104,9.182,0.62,0.0,0.0,0.0,0.0,1765.2,3434.1,3434.1,29.151,21.511,0.0,3.488,3.656,0.0,0.0,0.672,9.52,-13.012,0.0,0.0,29.107,0.0,-0.209,2.053,0.0,0.788,0.0,7.865,-7.472,-1.575,0.0,0.408,-0.079,0.0,0.0,0.093,0.884,10.956,0.0,0.0,-8.039,0.0,-0.204,-0.263,-1.884,-0.087,0.0,2.695,5.732,1.072,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,37636.0,8721.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2299.0,19986.0,5356.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-enclosure-garage.xml,58.46,58.46,34.532,34.532,23.928,0.0,0.0,0.0,0.0,0.0,0.0,0.395,0.0,0.0,3.067,0.532,9.119,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,0.0,23.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,22.402,0.0,9.107,9.075,0.724,0.0,0.0,0.0,0.0,2134.3,2846.6,2846.6,18.031,11.736,0.0,3.529,3.789,0.503,5.849,0.614,8.194,-6.664,0.0,0.0,0.0,6.569,-0.044,5.368,0.0,0.0,0.0,3.762,-6.763,-2.508,0.0,0.098,-0.288,-0.036,2.418,-0.001,-1.133,8.269,0.0,0.0,0.0,-5.679,-0.041,-1.225,-2.105,0.0,0.0,1.315,5.683,2.002,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,29805.0,8039.0,5506.0,0.0,575.0,6968.0,0.0,0.0,1949.0,2171.0,4597.0,15522.0,3263.0,5579.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,58.105,58.105,35.839,35.839,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32233.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4595.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,58.105,58.105,35.839,35.839,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,58.105,58.105,35.839,35.839,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,65.743,65.743,35.852,35.852,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.263,0.802,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.927,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3488.8,3488.8,28.066,19.95,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.012,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.13,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37299.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9543.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,59.513,59.513,35.838,35.838,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,4.333,0.822,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.675,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.171,0.0,14.292,9.075,0.614,0.0,0.0,0.0,0.0,2119.6,3397.5,3397.5,23.768,19.155,0.0,3.545,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.319,-0.062,5.886,0.0,0.728,0.0,5.113,-8.911,-2.5,0.0,-0.047,-0.456,-0.051,2.715,-0.024,-1.382,11.724,0.0,0.0,0.0,-6.303,-0.058,-1.436,-3.06,-0.164,0.0,3.143,7.868,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,65.743,65.743,35.852,35.852,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.263,0.802,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.927,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3488.8,3488.8,28.066,19.95,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.012,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.13,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,65.743,65.743,35.852,35.852,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.493,0.0,0.0,4.263,0.802,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.994,0.0,13.927,9.075,0.616,0.0,0.0,0.0,0.0,2132.0,3488.8,3488.8,28.066,19.95,0.0,3.5,3.641,0.512,7.516,0.631,10.098,-12.705,0.0,0.0,0.0,8.344,-0.061,10.564,0.0,0.726,0.0,6.349,-8.936,-2.506,0.0,-0.012,-0.421,-0.046,2.821,-0.014,-1.263,11.708,0.0,0.0,0.0,-6.124,-0.057,-2.43,-2.905,-0.158,0.0,3.13,7.844,2.003,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,37298.0,8713.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,9542.0,19445.0,5320.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,58.328,58.328,35.815,35.815,22.513,0.0,0.0,0.0,0.0,0.0,0.0,0.371,0.0,0.0,4.33,0.822,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.083,0.0,14.299,9.075,0.614,0.0,0.0,0.0,0.0,2110.9,3368.7,3368.7,23.045,18.891,0.0,3.551,3.641,0.512,7.521,0.864,10.091,-12.683,0.0,0.0,0.0,8.303,-0.064,4.805,0.0,0.729,0.0,4.878,-8.906,-2.499,0.0,-0.051,-0.462,-0.052,2.692,-0.155,-1.398,11.73,0.0,0.0,0.0,-6.336,-0.06,-1.168,-3.092,-0.165,0.0,3.124,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,58.232,58.232,35.671,35.671,22.561,0.0,0.0,0.0,0.0,0.0,0.0,0.372,0.0,0.0,4.212,0.794,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.128,0.0,13.814,9.075,0.614,0.0,0.0,0.0,0.0,2116.9,3324.6,3324.6,22.984,18.381,0.0,3.548,3.639,0.512,7.51,0.629,10.004,-12.276,0.0,0.0,0.0,8.277,-0.063,4.804,0.0,0.729,0.0,4.882,-8.91,-2.5,0.0,-0.035,-0.451,-0.05,2.717,-0.023,-1.42,11.099,0.0,0.0,0.0,-6.287,-0.059,-1.163,-3.064,-0.164,0.0,3.023,7.868,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,58.03,58.03,35.679,35.679,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.369,0.0,0.0,4.22,0.798,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.931,0.0,13.848,9.075,0.614,0.0,0.0,0.0,0.0,2115.6,3255.4,3255.4,22.859,17.895,0.0,3.669,3.643,0.513,7.525,0.63,10.094,-12.69,0.0,0.0,0.0,8.307,-0.061,4.806,0.0,0.729,0.0,4.836,-8.908,-2.5,0.0,-0.304,-0.459,-0.051,2.699,-0.025,-1.394,11.724,0.0,0.0,0.0,-6.327,-0.058,-1.168,-3.089,-0.165,0.0,2.798,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-physical-properties.xml,60.604,60.604,36.925,36.925,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.391,0.0,0.0,5.215,1.028,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.175,0.0,17.958,9.075,0.612,0.0,0.0,0.0,0.0,2132.5,3634.7,3634.7,24.757,21.883,0.0,3.552,3.66,0.515,7.583,0.634,10.135,-12.625,2.717,-2.174,0.0,8.471,-0.068,4.816,0.0,0.732,0.0,5.144,-8.887,-2.495,0.0,-0.143,-0.516,-0.059,2.583,-0.039,-1.533,11.705,-0.068,3.749,0.0,-6.624,-0.063,-1.187,-3.252,-0.17,0.0,3.94,7.889,2.014,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34591.0,8657.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23504.0,5406.0,7037.0,4640.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,59.242,59.242,35.884,35.884,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.385,0.0,0.0,4.375,0.831,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.875,0.0,14.462,9.075,0.614,0.0,0.0,0.0,0.0,2115.2,3407.0,3407.0,23.651,19.191,0.0,3.538,3.64,0.512,7.524,0.63,10.088,-12.677,1.147,-0.32,0.0,8.318,-0.063,4.806,0.0,0.729,0.0,5.048,-8.906,-2.499,0.0,-0.053,-0.458,-0.051,2.705,-0.025,-1.388,11.724,-0.498,0.432,0.0,-6.325,-0.059,-1.163,-3.074,-0.165,0.0,3.176,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,19514.0,5322.0,7037.0,733.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,58.612,58.612,36.586,36.586,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.363,0.0,0.0,4.962,0.97,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.626,0.0,16.931,9.075,0.612,0.0,0.0,0.0,0.0,2127.3,3634.7,3634.7,23.618,21.274,0.0,3.568,3.663,0.516,7.583,0.634,10.138,-12.642,0.857,-1.409,0.0,8.436,-0.063,4.814,0.0,0.732,0.0,4.801,-8.885,-2.496,0.0,-0.126,-0.51,-0.059,2.585,-0.038,-1.535,11.715,0.254,2.537,0.0,-6.587,-0.059,-1.196,-3.257,-0.17,0.0,3.684,7.891,2.014,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,696.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21676.0,5364.0,7037.0,2854.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,58.364,58.364,36.685,36.685,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,5.046,0.99,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.301,0.0,17.295,9.075,0.612,0.0,0.0,0.0,0.0,2126.9,3634.7,3634.7,23.534,21.347,0.0,3.575,3.667,0.516,7.595,0.636,10.154,-12.632,0.765,-1.651,0.0,8.463,-0.066,4.818,0.0,0.732,0.0,4.733,-8.884,-2.495,0.0,-0.137,-0.519,-0.06,2.564,-0.04,-1.554,11.716,0.258,2.975,0.0,-6.633,-0.063,-1.201,-3.288,-0.171,0.0,3.753,7.892,2.015,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32879.0,8613.0,7508.0,626.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21910.0,5367.0,7037.0,3084.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-split-level.xml,40.336,40.336,29.357,29.357,10.979,0.0,0.0,0.0,0.0,0.0,0.0,0.181,0.0,0.0,3.909,0.728,9.409,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,10.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,10.274,0.0,12.412,9.295,0.606,0.0,0.0,0.0,0.0,1718.3,2541.5,2541.5,13.175,13.018,0.0,3.945,3.838,0.0,0.0,0.691,10.079,-12.095,0.0,0.0,0.0,7.996,-0.152,2.657,0.0,0.776,0.0,0.295,-6.808,-1.452,0.0,-0.102,-0.617,0.0,0.0,-0.024,-0.74,12.161,0.0,0.0,0.0,-1.657,-0.149,-0.598,-3.044,-0.169,0.0,0.084,6.381,1.195,1354.8,997.6,11171.5,2952.8,0.0,36000.0,24000.0,0.0,6.8,91.76,29034.0,1685.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,13165.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,3320.0,313.0,0.0,-487.0,800.0 +base-enclosure-thermal-mass.xml,57.9,57.9,35.793,35.793,22.107,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.316,0.82,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.703,0.0,14.273,9.075,0.614,0.0,0.0,0.0,0.0,2110.8,3335.2,3335.2,22.901,18.579,0.0,3.557,3.642,0.513,7.508,0.63,10.116,-12.697,0.0,0.0,0.0,8.279,-0.098,4.801,0.0,0.728,0.0,4.785,-8.907,-2.499,0.0,-0.047,-0.46,-0.051,2.699,-0.026,-1.427,11.731,0.0,0.0,0.0,-6.336,-0.094,-1.175,-3.143,-0.166,0.0,3.08,7.871,2.01,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,74.827,74.827,34.523,34.523,40.303,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,3.03,0.529,9.023,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.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,37.731,0.0,8.994,9.075,0.622,0.0,0.0,0.0,0.0,2128.5,2682.3,2682.3,25.831,12.574,0.0,3.347,16.952,0.473,7.157,0.836,1.283,-1.612,0.0,0.0,0.0,7.38,-0.045,4.826,0.0,0.732,0.0,7.806,-9.155,-2.566,0.0,0.292,-0.622,-0.009,3.405,-0.085,-0.165,1.409,0.0,0.0,0.0,-4.92,-0.04,-0.965,-0.378,-0.123,0.0,1.748,7.631,1.944,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35247.0,8664.0,918.0,0.0,575.0,16373.0,0.0,0.0,1949.0,2171.0,4597.0,13671.0,5183.0,867.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,57.198,57.198,34.861,34.861,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.368,0.0,0.0,3.567,0.631,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.919,0.0,10.838,9.075,0.616,0.0,0.0,0.0,0.0,2119.4,3336.2,3336.2,23.032,18.584,0.0,3.555,3.644,0.513,7.537,0.631,10.098,-12.683,0.0,0.0,0.0,8.359,-0.06,4.806,0.0,0.729,0.0,4.848,-8.905,-2.499,0.0,0.014,-0.412,-0.044,2.862,-0.013,-1.249,11.73,0.0,0.0,0.0,-6.095,-0.057,-1.111,-7.007,-0.157,0.0,2.703,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-none.xml,58.689,58.689,33.822,33.822,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.41,0.0,0.0,2.662,0.452,9.021,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.28,0.0,7.537,9.075,0.619,0.0,0.0,0.0,0.0,2107.2,2487.0,2487.0,17.245,8.333,0.0,3.468,5.156,0.5,7.22,0.6,0.0,0.0,0.0,0.0,0.0,7.492,-0.043,4.777,0.0,0.723,0.0,4.877,-9.031,-2.531,0.0,0.205,-0.376,-0.023,3.187,0.013,0.0,0.0,0.0,0.0,0.0,-5.188,-0.041,-1.102,0.0,-0.144,0.0,1.301,7.752,1.978,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,25473.0,8352.0,0.0,0.0,575.0,7829.0,0.0,0.0,1949.0,2171.0,4597.0,11624.0,5099.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,65.896,65.896,35.951,35.951,29.945,0.0,0.0,0.0,0.0,0.0,0.0,0.494,0.0,0.0,4.344,0.819,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.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,0.0,0.0,28.045,0.0,14.213,9.075,0.616,0.0,0.0,0.0,0.0,2146.8,3634.7,3634.7,27.766,21.326,0.0,3.492,3.633,0.511,7.504,0.63,19.595,-16.819,0.0,0.0,0.0,8.426,-0.074,4.825,0.0,0.732,0.0,6.377,-8.965,-2.513,0.0,0.015,-0.392,-0.042,2.826,-0.007,-4.96,14.292,0.0,0.0,0.0,-6.171,-0.068,-1.082,-2.85,-0.155,0.0,3.243,7.815,1.997,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,38663.0,8743.0,13788.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,21180.0,5355.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,58.029,58.029,35.868,35.868,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.377,0.834,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.753,0.0,14.515,9.075,0.613,0.0,0.0,0.0,0.0,2119.4,3372.6,3372.6,23.032,18.927,0.0,3.558,3.645,0.513,7.515,0.631,10.105,-12.683,0.0,0.0,0.0,8.252,-0.071,4.808,0.0,0.73,0.0,4.81,-8.905,-2.499,0.0,-0.073,-0.483,-0.055,2.62,-0.031,-1.316,12.141,0.0,0.0,0.0,-6.498,-0.067,-1.188,-3.219,-0.168,0.0,3.165,7.872,2.011,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,57.767,57.767,33.4,33.4,24.367,0.0,0.0,0.0,0.0,0.0,0.0,0.402,0.0,0.0,2.337,0.361,9.024,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,0.0,0.0,22.819,0.0,6.148,9.075,0.622,0.0,0.0,0.0,0.0,2131.5,2555.5,2555.5,23.076,11.305,0.0,3.574,3.682,0.517,7.568,0.638,10.631,-11.787,0.0,0.0,0.0,8.559,-0.043,4.867,0.0,0.74,0.0,5.219,-9.143,-2.56,0.0,0.354,-0.11,-0.002,3.553,0.056,-3.589,2.911,0.0,0.0,0.0,-4.594,-0.039,-0.912,-2.173,-0.118,0.0,1.398,7.643,1.95,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,14669.0,5214.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-storms.xml,59.071,59.071,35.265,35.265,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.393,0.0,0.0,3.865,0.713,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.295,0.0,12.373,9.075,0.616,0.0,0.0,0.0,0.0,2130.8,3264.1,3264.1,22.493,16.956,0.0,3.514,3.609,0.508,7.424,0.622,8.599,-9.444,0.0,0.0,0.0,8.041,-0.059,4.791,0.0,0.726,0.0,5.093,-8.925,-2.504,0.0,0.017,-0.411,-0.044,2.82,-0.014,-0.74,8.684,0.0,0.0,0.0,-6.06,-0.055,-1.142,-2.918,-0.16,0.0,2.72,7.854,2.006,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31383.0,8571.0,6680.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17521.0,5291.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-ambient.xml,47.529,47.529,30.202,30.202,17.327,0.0,0.0,0.0,0.0,0.0,0.0,0.286,0.0,0.0,4.683,0.9,9.202,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,17.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.233,0.0,15.611,9.182,0.606,0.0,0.0,0.0,2.0,1739.2,3434.1,3434.1,20.513,21.806,0.0,3.811,3.817,0.0,0.0,0.769,10.526,-11.315,0.0,0.0,10.182,0.0,-0.48,2.065,0.0,0.786,0.0,3.899,-6.747,-1.425,0.0,-0.107,-0.589,0.0,0.0,0.029,-0.179,12.654,0.0,0.0,-3.786,0.0,-0.474,-0.413,-2.427,-0.161,0.0,3.621,6.443,1.222,1354.8,997.6,11171.6,2752.7,0.0,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,18957.0,5354.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-basement-garage.xml,52.313,52.313,32.555,32.555,19.758,0.0,0.0,0.0,0.0,0.0,0.0,0.326,0.0,0.0,4.372,0.83,9.25,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,0.0,19.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,18.502,0.0,14.445,9.204,0.613,0.0,0.0,0.0,0.0,1905.4,3328.9,3328.9,21.426,19.451,0.0,3.661,4.739,0.514,5.516,0.701,9.837,-12.609,0.0,0.0,0.835,6.146,-0.039,3.259,0.0,0.735,0.0,4.443,-7.701,-1.886,0.0,-0.039,-0.654,-0.057,1.918,-0.044,-1.196,11.679,0.0,0.0,-0.129,-4.618,-0.036,-0.791,-3.022,-0.167,0.0,3.313,6.955,1.52,1354.8,997.6,11171.6,2792.6,0.0,36000.0,24000.0,0.0,6.8,91.76,31583.0,8577.0,7508.0,0.0,620.0,7529.0,0.0,511.0,1432.0,2171.0,3235.0,19061.0,5346.0,7037.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,3320.0,209.0,0.0,-591.0,800.0 +base-foundation-belly-wing-no-skirt.xml,49.296,49.296,29.291,29.291,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,3.906,0.721,9.203,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,20.005,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.736,0.0,12.229,9.182,0.607,0.0,0.0,0.0,0.0,1746.6,3036.3,3036.3,24.177,17.847,0.0,3.986,5.373,0.0,0.0,0.756,8.719,-11.134,0.0,0.0,10.274,0.0,-0.363,2.069,0.0,0.793,0.0,6.171,-6.863,-1.453,0.0,0.291,-0.621,0.0,0.0,0.037,0.041,9.561,0.0,0.0,-3.473,0.0,-0.356,-0.4,-2.2,-0.147,0.0,2.245,6.327,1.194,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-belly-wing-skirt.xml,48.925,48.925,29.299,29.299,19.626,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.918,0.724,9.203,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,19.626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.38,0.0,12.283,9.182,0.606,0.0,0.0,0.0,0.0,1745.5,3031.9,3031.9,24.024,17.806,0.0,3.992,5.382,0.0,0.0,0.757,8.731,-11.127,0.0,0.0,9.978,0.0,-0.357,2.07,0.0,0.794,0.0,6.058,-6.857,-1.453,0.0,0.285,-0.63,0.0,0.0,0.036,0.021,9.567,0.0,0.0,-3.392,0.0,-0.351,-0.403,-2.214,-0.147,0.0,2.251,6.333,1.194,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21939.0,2609.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2299.0,12752.0,755.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-complex.xml,77.373,77.373,37.128,37.128,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.664,0.0,0.0,5.151,1.017,9.019,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.246,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.691,0.0,17.738,9.075,0.617,0.0,0.0,0.0,3.0,2139.6,3634.6,3634.6,33.388,22.034,0.0,3.434,3.658,0.521,19.566,0.65,10.136,-12.837,0.0,0.0,0.0,8.756,-0.109,6.085,0.0,0.739,0.0,8.279,-9.111,-2.555,0.0,0.034,-0.372,-0.046,3.7,-0.007,-1.014,11.574,0.0,0.0,0.0,-4.532,-0.101,-1.237,-3.289,-0.139,0.0,3.73,7.67,1.955,1354.8,997.6,11171.5,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,42012.0,8808.0,7508.0,0.0,575.0,15887.0,0.0,0.0,2467.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,55.42,55.42,36.372,36.372,19.048,0.0,0.0,0.0,0.0,0.0,0.0,0.314,0.0,0.0,4.826,0.942,9.014,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,17.836,0.0,16.438,9.075,0.611,0.0,0.0,0.0,0.0,2120.4,3561.3,3561.3,22.288,20.673,0.0,3.636,3.705,0.522,8.235,0.644,10.266,-12.652,0.0,0.0,0.0,4.795,-0.064,4.843,0.0,0.735,0.0,4.211,-8.886,-2.496,0.0,-0.111,-0.508,-0.058,2.158,-0.038,-1.547,11.761,0.0,0.0,0.0,-3.714,-0.059,-1.194,-3.315,-0.17,0.0,3.498,7.889,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,56.979,56.979,36.045,36.045,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.537,0.871,9.015,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.603,0.0,15.18,9.075,0.613,0.0,0.0,0.0,0.0,2123.3,3463.5,3463.5,22.76,19.767,0.0,3.584,3.664,0.516,7.833,0.635,10.15,-12.669,0.0,0.0,0.0,6.873,-0.061,4.815,0.0,0.731,0.0,4.578,-8.892,-2.496,0.0,-0.079,-0.484,-0.055,2.494,-0.032,-1.471,11.744,0.0,0.0,0.0,-5.347,-0.057,-1.182,-3.184,-0.168,0.0,3.283,7.885,2.013,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31633.0,8578.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1365.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,56.901,56.901,35.387,35.387,21.515,0.0,0.0,0.0,0.0,0.0,0.0,0.355,0.0,0.0,3.999,0.74,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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.0,0.0,20.147,0.0,12.834,9.075,0.614,0.0,0.0,0.0,0.0,2124.2,3427.1,3427.1,23.225,18.744,0.0,3.584,3.669,0.516,6.117,0.636,10.166,-12.69,0.0,0.0,0.0,8.986,-0.065,4.827,0.0,0.734,0.0,4.708,-8.905,-2.5,0.0,-0.002,-0.423,-0.046,1.073,-0.017,-1.296,11.724,0.0,0.0,0.0,-6.519,-0.06,-1.143,-2.923,-0.162,0.0,2.934,7.872,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,35456.0,8669.0,7508.0,0.0,575.0,9987.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,46.839,46.839,28.838,28.838,18.001,0.0,0.0,0.0,0.0,0.0,0.0,0.297,0.0,0.0,3.554,0.647,9.21,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,18.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,16.845,0.0,11.07,9.182,0.614,0.0,0.0,0.0,0.0,1720.5,2371.2,2371.2,15.899,11.724,0.0,3.711,3.607,0.507,5.113,0.622,9.795,-12.66,0.0,0.0,0.0,10.002,-0.052,3.495,0.0,0.731,0.0,0.0,-6.89,-1.467,0.0,0.025,-0.473,-0.053,1.786,-0.029,-1.225,11.693,0.0,0.0,0.0,-3.856,-0.048,-0.842,-2.99,-0.164,0.0,0.0,6.308,1.18,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,21523.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,2706.0,2171.0,3448.0,13304.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,3320.0,170.0,0.0,-630.0,800.0 +base-foundation-multiple.xml,42.337,42.337,29.641,29.641,12.696,0.0,0.0,0.0,0.0,0.0,0.0,0.209,0.0,0.0,4.302,0.818,9.182,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,12.696,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.886,0.0,13.988,9.126,0.693,0.0,0.0,0.0,0.0,1709.3,3001.9,3001.9,15.204,15.253,0.0,3.982,3.868,0.0,0.0,0.78,10.584,-11.178,0.0,0.0,5.315,0.0,-0.386,2.585,0.0,0.0,0.0,1.988,-4.612,-1.419,0.0,-0.151,-0.726,0.0,0.0,-0.016,-0.483,12.79,0.0,0.0,-0.712,0.0,-0.381,-0.573,-2.645,0.0,0.0,1.694,4.254,1.228,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23121.0,4832.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,14275.0,221.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-slab.xml,39.551,39.551,29.218,29.218,10.333,0.0,0.0,0.0,0.0,0.0,0.0,0.17,0.0,0.0,3.972,0.743,9.201,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,10.333,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.67,0.0,12.686,9.182,0.605,0.0,0.0,0.0,0.0,1716.3,2511.4,2511.4,12.694,12.985,0.0,3.934,3.804,0.0,0.0,0.691,10.073,-12.046,0.0,0.0,0.0,8.0,-0.153,2.012,0.0,0.776,0.0,0.278,-6.774,-1.446,0.0,-0.09,-0.602,0.0,0.0,-0.029,-0.812,12.21,0.0,0.0,0.0,-1.717,-0.151,-0.471,-2.884,-0.174,0.0,0.085,6.415,1.201,1354.8,997.6,11171.6,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,28667.0,1684.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,13115.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-above-grade.xml,43.511,43.511,29.776,29.776,13.735,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,4.383,0.836,9.2,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,13.735,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.859,0.0,14.351,9.126,0.713,0.0,0.0,0.0,0.0,1713.3,2858.9,2858.9,16.464,16.227,0.0,3.987,3.868,0.0,0.0,0.779,10.63,-11.228,0.0,0.0,5.935,0.0,-0.399,2.588,0.0,0.0,0.0,2.404,-4.628,-1.424,0.0,-0.127,-0.706,0.0,0.0,-0.012,-0.481,12.741,0.0,0.0,-0.614,0.0,-0.394,-0.561,-2.632,0.0,0.0,1.97,4.237,1.223,1354.8,997.6,11171.6,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23082.0,4827.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,14270.0,225.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-assembly-r.xml,40.822,40.822,29.188,29.188,11.634,0.0,0.0,0.0,0.0,0.0,0.0,0.192,0.0,0.0,3.938,0.731,9.197,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,11.634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.892,0.0,12.421,9.126,0.71,0.0,0.0,0.0,0.0,1716.9,2619.0,2619.0,14.652,13.981,0.0,3.976,3.837,0.0,0.0,0.769,10.587,-11.043,0.0,0.0,4.441,0.0,-0.41,2.586,0.0,0.0,0.0,1.776,-4.584,-1.409,0.0,-0.127,-0.681,0.0,0.0,0.012,-0.458,12.925,0.0,0.0,-2.107,0.0,-0.406,-0.578,-2.548,0.0,0.0,1.166,4.282,1.238,1354.8,997.6,11171.6,2652.8,0.0,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,14016.0,533.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement-wall-insulation.xml,48.475,48.475,28.856,28.856,19.619,0.0,0.0,0.0,0.0,0.0,0.0,0.324,0.0,0.0,3.617,0.654,9.131,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,19.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.362,0.0,11.127,9.126,0.639,0.0,0.0,0.0,0.0,1728.2,2475.4,2475.4,16.593,12.566,0.0,3.735,3.633,0.0,0.0,0.636,9.314,-12.475,0.0,0.0,14.539,0.0,-0.046,2.466,0.0,0.0,0.0,2.55,-4.773,-1.48,0.0,0.05,-0.453,0.0,0.0,-0.018,-0.471,11.493,0.0,0.0,-2.86,0.0,-0.045,-0.525,-2.441,0.0,0.0,1.344,4.092,1.167,1354.8,997.6,11171.6,2652.8,0.0,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,15218.0,127.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unconditioned-basement.xml,42.411,42.411,29.672,29.672,12.739,0.0,0.0,0.0,0.0,0.0,0.0,0.21,0.0,0.0,4.319,0.822,9.19,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,12.739,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.926,0.0,14.067,9.126,0.703,0.0,0.0,0.0,0.0,1709.8,3114.5,3114.5,15.45,15.452,0.0,3.974,3.834,0.0,0.0,0.76,10.528,-11.159,0.0,0.0,5.366,0.0,-0.39,2.583,0.0,0.0,0.0,2.089,-4.606,-1.417,0.0,-0.13,-0.683,0.0,0.0,0.003,-0.513,12.81,0.0,0.0,-0.766,0.0,-0.385,-0.574,-2.667,0.0,0.0,1.771,4.26,1.23,1354.8,997.6,11171.5,2652.8,0.0,36000.0,24000.0,0.0,6.8,91.76,23128.0,4832.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,14277.0,221.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-unvented-crawlspace.xml,40.275,40.275,29.774,29.774,10.501,0.0,0.0,0.0,0.0,0.0,0.0,0.173,0.0,0.0,4.341,0.83,9.298,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,10.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,0.0,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.832,0.0,14.178,9.182,0.708,0.0,0.0,0.0,0.0,1705.8,2988.7,2988.7,14.329,14.748,0.0,3.959,3.815,0.0,0.0,0.781,10.65,-10.714,0.0,0.0,4.565,0.0,-0.459,2.05,0.0,0.775,0.0,1.604,-6.2,-1.376,0.0,-0.242,-0.804,0.0,0.0,-0.001,-0.693,13.255,0.0,0.0,-2.1,0.0,-0.454,-0.49,-2.745,-0.198,0.0,1.315,6.384,1.271,1354.8,997.6,11171.5,2752.7,0.0,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,14101.0,608.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace-above-grade.xml,42.267,42.267,29.879,29.879,12.388,0.0,0.0,0.0,0.0,0.0,0.0,0.204,0.0,0.0,4.35,0.83,9.364,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,12.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,11.599,0.0,14.129,9.182,0.777,0.0,0.0,0.0,0.0,1721.9,2790.7,2790.7,15.473,15.546,0.0,3.952,3.793,0.0,0.0,0.758,10.49,-10.966,0.0,0.0,6.708,0.0,-0.446,1.847,0.0,0.78,0.0,1.999,-6.302,-1.401,0.0,-0.145,-0.695,0.0,0.0,0.016,-0.509,13.003,0.0,0.0,-2.522,0.0,-0.441,-0.399,-2.671,-0.183,0.0,1.477,6.282,1.246,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,24393.0,7387.0,7508.0,0.0,575.0,2198.0,0.0,2255.0,0.0,2171.0,2299.0,15739.0,2026.0,7037.0,0.0,207.0,232.0,0.0,598.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-vented-crawlspace.xml,42.177,42.177,29.718,29.718,12.459,0.0,0.0,0.0,0.0,0.0,0.0,0.206,0.0,0.0,4.213,0.797,9.372,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,12.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,11.666,0.0,13.527,9.182,0.786,0.0,0.0,0.0,0.0,1723.9,3094.6,3094.6,15.482,15.239,0.0,3.962,3.816,0.0,0.0,0.766,10.546,-11.029,0.0,0.0,6.732,0.0,-0.434,1.848,0.0,0.782,0.0,2.013,-6.322,-1.406,0.0,-0.128,-0.69,0.0,0.0,0.01,-0.475,12.939,0.0,0.0,-3.04,0.0,-0.429,-0.394,-2.616,-0.18,0.0,1.349,6.262,1.241,1354.8,997.6,11171.5,2752.7,0.0,36000.0,24000.0,0.0,6.8,91.76,23883.0,6887.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,15424.0,1713.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,3320.0,380.0,0.0,-420.0,800.0 +base-foundation-walkout-basement.xml,64.094,64.094,36.213,36.213,27.88,0.0,0.0,0.0,0.0,0.0,0.0,0.46,0.0,0.0,4.58,0.879,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.11,0.0,15.293,9.075,0.615,0.0,0.0,0.0,0.0,2133.5,3620.4,3620.4,26.753,20.8,0.0,3.536,3.698,0.521,7.384,0.648,10.878,-12.928,0.0,0.0,0.0,10.191,-0.062,6.628,0.0,0.729,0.0,5.961,-8.927,-2.504,0.0,-0.108,-0.524,-0.061,1.459,-0.034,-1.566,12.043,0.0,0.0,0.0,-3.716,-0.057,-1.537,-3.401,-0.161,0.0,3.295,7.852,2.006,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34105.0,8645.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2345.0,2171.0,5942.0,19161.0,5335.0,7221.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.713,34.713,34.713,34.713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.367,1.009,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.916,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,3214.9,3214.9,0.0,16.016,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.022,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,1.982,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,45.533,45.533,45.533,45.533,0.0,0.0,0.0,0.0,0.0,0.0,9.428,0.999,0.296,0.017,3.461,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.459,0.313,13.301,9.075,0.614,0.0,0.0,0.0,0.0,7012.9,3247.0,7012.9,24.203,16.281,0.0,3.531,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.456,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,41.785,41.785,41.785,41.785,0.0,0.0,0.0,0.0,0.0,0.0,9.448,1.729,0.308,0.031,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.092,0.339,0.0,9.075,0.588,0.0,0.0,0.0,0.0,7122.8,1624.2,7122.8,25.253,0.0,0.0,3.503,3.648,0.513,7.514,0.632,10.115,-12.683,0.0,0.0,0.0,8.151,-0.069,4.81,0.0,0.73,0.0,6.27,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,45.501,45.501,45.501,45.501,0.0,0.0,0.0,0.0,0.0,0.0,8.966,0.903,0.894,0.051,3.382,1.014,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.707,0.945,12.973,9.075,0.613,0.0,0.0,144.0,0.0,10357.9,3230.8,10357.9,37.455,16.144,0.0,3.614,3.675,0.516,7.775,0.624,10.039,-12.798,0.0,0.0,0.0,9.086,0.059,4.748,0.0,0.762,0.0,4.604,-8.886,-2.51,0.0,0.007,-0.452,-0.051,2.749,-0.035,-1.506,11.615,0.0,0.0,0.0,-6.397,0.05,-1.191,-3.331,-0.163,0.0,1.991,7.891,2.0,1354.8,997.6,11171.5,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.592,45.592,45.592,45.592,0.0,0.0,0.0,0.0,0.0,0.0,9.499,0.999,0.296,0.017,3.449,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.459,0.313,13.301,9.075,0.614,0.0,0.0,0.0,0.0,7012.9,3241.2,7012.9,24.203,16.281,0.0,3.531,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.456,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,45.533,45.533,45.533,45.533,0.0,0.0,0.0,0.0,0.0,0.0,9.428,0.999,0.296,0.017,3.461,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.459,0.313,13.301,9.075,0.614,0.0,0.0,0.0,0.0,7012.9,3247.0,7012.9,24.203,16.281,0.0,3.531,3.645,0.513,7.53,0.631,10.104,-12.683,0.0,0.0,0.0,8.316,-0.065,4.807,0.0,0.729,0.0,5.456,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,41.473,41.473,41.473,41.473,0.0,0.0,0.0,0.0,0.0,0.0,7.361,0.584,0.283,0.012,2.316,0.626,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.469,0.295,13.553,9.075,0.614,0.0,0.0,0.0,0.0,6989.9,2794.0,6989.9,24.196,17.295,0.0,3.491,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.498,-8.906,-2.499,0.0,-0.017,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.286,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,53.616,53.616,38.701,38.701,14.915,0.0,0.0,0.0,0.0,0.0,5.079,0.352,0.0,0.056,2.441,0.48,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.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,27.699,11.125,16.156,9.075,0.614,0.0,0.0,1.0,10.0,3202.1,2882.4,3202.1,22.934,17.738,0.0,3.282,3.605,0.508,7.527,0.616,9.934,-12.591,0.0,0.0,0.0,8.249,-0.03,5.816,0.0,0.72,0.0,10.953,-8.787,-2.475,0.0,-0.186,-0.492,-0.056,2.721,-0.038,-1.537,11.822,0.0,0.0,0.0,-6.368,-0.026,-1.501,-3.081,-0.171,0.0,5.206,7.991,2.034,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,56.607,56.607,37.565,37.565,19.042,0.0,0.0,0.0,0.0,0.0,4.02,0.233,0.0,0.072,2.464,0.482,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.042,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.307,14.185,16.31,9.075,0.615,0.0,0.0,225.0,10.0,3034.2,2882.5,3034.2,23.177,17.738,0.0,3.297,3.6,0.506,7.421,0.614,9.851,-12.664,0.0,0.0,0.0,8.25,-0.008,5.77,0.0,0.715,0.0,10.51,-8.794,-2.468,0.0,-0.174,-0.487,-0.056,2.65,-0.037,-1.586,11.749,0.0,0.0,0.0,-6.307,-0.005,-1.521,-3.068,-0.175,0.0,5.101,7.984,2.042,1354.8,997.6,11171.5,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,53.723,53.723,38.803,38.803,14.92,0.0,0.0,0.0,0.0,0.0,5.151,0.357,0.0,0.056,2.464,0.483,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.971,11.129,16.346,9.075,0.614,0.0,0.0,1.0,10.0,3202.1,2882.4,3202.1,22.934,17.738,0.0,3.324,3.646,0.513,7.529,0.631,10.095,-12.703,0.0,0.0,0.0,8.332,-0.059,5.884,0.0,0.728,0.0,11.091,-8.914,-2.501,0.0,-0.142,-0.453,-0.051,2.716,-0.024,-1.382,11.71,0.0,0.0,0.0,-6.295,-0.055,-1.437,-3.069,-0.164,0.0,5.274,7.864,2.009,1354.8,997.6,11171.6,2563.5,0.0,18000.0,18000.0,60000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -181,35 +181,35 @@ base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,53.7,53.7,38.942,38. base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,50.041,50.041,50.041,50.041,0.0,0.0,0.0,0.0,0.0,0.0,9.692,0.717,5.724,0.327,3.182,0.106,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.665,6.051,14.672,9.075,0.614,0.0,0.0,0.0,0.0,8393.7,3435.0,8393.7,24.188,18.194,0.0,3.366,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.323,-0.065,4.807,0.0,0.729,0.0,9.802,-8.906,-2.499,0.0,-0.066,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.107,-0.166,0.0,3.46,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,42.376,42.376,42.376,42.376,0.0,0.0,0.0,0.0,0.0,0.0,8.726,0.512,0.13,0.006,2.595,0.115,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.13,0.136,14.712,9.075,0.614,0.0,0.0,0.0,0.0,6971.0,3559.8,6971.0,24.193,18.088,0.0,3.389,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.322,-0.065,4.807,0.0,0.729,0.0,9.254,-8.906,-2.499,0.0,-0.068,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.107,-0.166,0.0,3.499,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed.xml,40.908,40.908,40.908,40.908,0.0,0.0,0.0,0.0,0.0,0.0,7.802,0.252,0.322,0.015,2.105,0.12,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.727,0.337,14.405,9.075,0.614,0.0,0.0,0.0,0.0,7018.6,2768.7,7018.6,24.247,18.073,0.0,3.444,3.645,0.513,7.532,0.631,10.105,-12.683,0.0,0.0,0.0,8.319,-0.065,4.807,0.0,0.729,0.0,7.804,-8.906,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.106,-0.166,0.0,3.179,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,49.308,49.308,42.778,42.778,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,3.359,0.519,15.676,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.046,0.0,9.778,16.204,0.642,0.0,0.0,0.0,0.0,2608.0,3525.6,3525.6,17.003,15.983,0.0,2.9,2.833,0.397,5.505,0.423,7.596,-12.563,0.0,0.0,0.0,5.727,-0.058,3.539,0.0,0.582,0.0,1.453,-10.182,-2.473,0.0,-0.153,-0.607,-0.072,2.26,-0.067,-1.871,11.85,0.0,0.0,0.0,-7.696,-0.059,-1.295,-5.334,-0.193,0.0,2.007,9.375,2.036,2181.0,1715.2,21140.4,3685.7,0.0,31430.0,27891.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22993.0,6411.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 -base-hvac-autosize.xml,58.988,58.988,36.008,36.008,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.478,0.851,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.529,0.0,14.835,9.075,0.614,0.0,0.0,0.0,0.0,2124.0,3378.6,3378.6,23.95,19.118,0.0,3.532,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.53,-8.905,-2.499,0.0,-0.073,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.107,-0.166,0.0,3.593,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,32235.0,21309.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,49.283,49.283,42.753,42.753,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.043,0.0,0.0,3.334,0.519,15.676,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.548,0.588,2.435,2.057,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.046,0.0,9.778,16.204,0.642,0.0,0.0,0.0,0.0,2608.0,3510.7,3510.7,17.003,15.983,0.0,2.9,2.833,0.397,5.505,0.423,7.596,-12.563,0.0,0.0,0.0,5.727,-0.058,3.539,0.0,0.582,0.0,1.453,-10.182,-2.473,0.0,-0.153,-0.607,-0.072,2.26,-0.067,-1.871,11.85,0.0,0.0,0.0,-7.696,-0.059,-1.295,-5.334,-0.193,0.0,2.007,9.375,2.036,2181.0,1715.2,21140.4,3685.7,0.0,31430.0,27891.0,0.0,0.0,100.0,31430.0,9044.0,7128.0,0.0,545.0,6493.0,0.0,0.0,1851.0,2061.0,4307.0,22993.0,6411.0,7422.0,0.0,236.0,593.0,0.0,0.0,0.0,2405.0,776.0,5150.0,0.0,0.0,0.0,0.0 +base-hvac-autosize.xml,58.953,58.953,35.972,35.972,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,4.443,0.851,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.529,0.0,14.835,9.075,0.614,0.0,0.0,0.0,0.0,2124.0,3361.2,3361.2,23.95,19.118,0.0,3.532,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.53,-8.905,-2.499,0.0,-0.073,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.107,-0.166,0.0,3.593,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,32235.0,21309.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-coal-only.xml,49.421,49.421,30.505,30.505,0.0,0.0,0.0,0.0,0.0,18.916,0.0,0.236,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2045.6,1615.7,2045.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-elec-only.xml,48.249,48.249,48.249,48.249,0.0,0.0,0.0,0.0,0.0,0.0,17.858,0.122,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,6027.4,1615.7,6027.4,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,55.286,55.286,36.086,36.086,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,4.472,1.176,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,14.48,9.075,0.614,0.0,0.0,0.0,0.0,2083.0,3566.7,3566.7,16.438,19.072,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,-0.06,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,3.231,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,55.251,55.251,36.051,36.051,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,4.437,1.176,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,14.48,9.075,0.614,0.0,0.0,0.0,0.0,2083.0,3548.7,3548.7,16.438,19.072,0.0,3.744,3.643,0.513,7.525,0.631,10.099,-12.683,0.0,0.0,0.0,8.305,-0.065,4.807,0.0,0.73,0.0,0.0,-8.906,-2.499,0.0,-0.06,-0.464,-0.052,2.685,-0.026,-1.405,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,3.231,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-gas-only-pilot.xml,54.387,54.387,30.412,30.412,23.974,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.974,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2033.0,1615.7,2033.0,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-gas-only.xml,49.415,49.415,30.412,30.412,19.003,0.0,0.0,0.0,0.0,0.0,0.0,0.144,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2033.0,1615.7,2033.0,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-oil-only.xml,49.421,49.421,30.505,30.505,0.0,18.916,0.0,0.0,0.0,0.0,0.0,0.236,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2045.6,1615.7,2045.6,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-propane-only.xml,49.414,49.414,30.391,30.391,0.0,0.0,19.023,0.0,0.0,0.0,0.0,0.122,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2030.2,1615.7,2030.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-boiler-wood-only.xml,49.414,49.414,30.391,30.391,0.0,0.0,0.0,19.023,0.0,0.0,0.0,0.122,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,16.012,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2030.2,1615.7,2030.2,16.438,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,35.837,35.837,35.837,35.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.357,1.144,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.075,0.661,0.0,0.0,0.0,0.0,2070.7,3522.8,3522.8,0.0,18.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.072,-0.471,-0.052,2.665,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.918,-0.064,-1.194,-3.021,-0.167,0.0,3.156,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,35.853,35.853,35.853,35.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.373,1.144,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.075,0.661,0.0,0.0,0.0,0.0,2070.7,3530.9,3530.9,0.0,18.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.072,-0.471,-0.052,2.665,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.918,-0.064,-1.194,-3.021,-0.167,0.0,3.156,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,34.203,34.203,34.203,34.203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.161,0.706,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.48,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3078.8,3078.8,0.0,19.368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.574,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,35.806,35.806,35.806,35.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.325,1.144,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.075,0.661,0.0,0.0,0.0,0.0,2070.7,3506.5,3506.5,0.0,18.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.072,-0.471,-0.052,2.665,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.918,-0.064,-1.194,-3.021,-0.167,0.0,3.156,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed.xml,35.819,35.819,35.819,35.819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.338,1.144,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.075,0.661,0.0,0.0,0.0,0.0,2070.7,3513.2,3513.2,0.0,18.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.072,-0.471,-0.052,2.665,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.918,-0.064,-1.194,-3.021,-0.167,0.0,3.156,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,34.186,34.186,34.186,34.186,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.144,0.706,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.48,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3088.8,3088.8,0.0,19.368,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.09,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.021,-0.167,0.0,3.574,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-var-speed-detailed-performance.xml,33.715,33.715,33.715,33.715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.26,0.118,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.439,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,3515.6,3515.6,0.0,17.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.09,-0.471,-0.052,2.666,-0.032,-1.454,11.85,0.0,0.0,0.0,-6.917,-0.064,-1.194,-3.023,-0.167,0.0,3.571,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-var-speed.xml,33.347,33.347,33.347,33.347,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.738,0.273,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.276,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2902.2,2902.2,0.0,18.997,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,-0.471,-0.052,2.667,-0.032,-1.453,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.194,-3.026,-0.167,0.0,4.423,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.6,47.6,47.6,47.6,0.0,0.0,0.0,0.0,0.0,0.0,9.573,1.746,0.309,0.031,4.473,1.176,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.316,0.34,14.481,9.075,0.614,0.0,0.0,0.0,0.0,7344.8,3566.8,7344.8,25.253,19.073,0.0,3.498,3.645,0.513,7.531,0.631,10.104,-12.683,0.0,0.0,0.0,8.317,-0.065,4.807,0.0,0.729,0.0,6.329,-8.906,-2.499,0.0,-0.058,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,3.231,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dse.xml,58.397,58.397,36.786,36.786,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.356,0.0,0.0,5.196,0.942,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2102.1,2614.4,2614.4,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.161,52.161,41.508,41.508,10.652,0.0,0.0,0.0,0.0,0.0,5.262,0.493,0.0,0.929,3.494,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.809,11.048,13.301,9.075,0.614,0.0,0.0,0.0,0.0,3616.3,3262.5,3616.3,24.193,16.281,0.0,3.471,3.645,0.513,7.532,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.808,0.0,0.729,0.0,6.854,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,54.911,54.911,40.505,40.505,14.406,0.0,0.0,0.0,0.0,0.0,3.947,0.344,0.0,1.389,3.494,1.039,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.704,15.074,13.301,9.075,0.614,0.0,0.0,0.0,0.0,3463.5,3262.5,3463.5,24.191,16.281,0.0,3.434,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,7.78,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.268,52.268,37.461,37.461,14.806,0.0,0.0,0.0,0.0,0.0,2.982,0.188,0.0,1.042,2.332,0.626,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.038,15.108,13.553,9.075,0.614,0.0,0.0,0.0,0.0,2838.9,2803.7,2838.9,24.19,17.295,0.0,3.422,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.321,-0.065,4.808,0.0,0.729,0.0,8.124,-8.906,-2.499,0.0,-0.017,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.104,-0.166,0.0,2.286,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.527,47.527,47.527,47.527,0.0,0.0,0.0,0.0,0.0,0.0,9.535,1.746,0.309,0.031,4.437,1.176,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.316,0.34,14.481,9.075,0.614,0.0,0.0,0.0,0.0,7344.8,3548.8,7344.8,25.253,19.073,0.0,3.498,3.645,0.513,7.531,0.631,10.104,-12.683,0.0,0.0,0.0,8.317,-0.065,4.807,0.0,0.729,0.0,6.329,-8.906,-2.499,0.0,-0.058,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,3.231,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dse.xml,58.357,58.357,36.747,36.747,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.356,0.0,0.0,5.156,0.942,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2102.1,2603.4,2603.4,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,52.108,52.108,41.456,41.456,10.652,0.0,0.0,0.0,0.0,0.0,5.242,0.493,0.0,0.929,3.461,1.038,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.809,11.048,13.301,9.075,0.614,0.0,0.0,0.0,0.0,3608.2,3247.0,3608.2,24.193,16.281,0.0,3.471,3.645,0.513,7.532,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.808,0.0,0.729,0.0,6.854,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,54.864,54.864,40.458,40.458,14.406,0.0,0.0,0.0,0.0,0.0,3.933,0.344,0.0,1.389,3.461,1.039,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.406,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.704,15.074,13.301,9.075,0.614,0.0,0.0,0.0,0.0,3456.2,3247.0,3456.2,24.191,16.281,0.0,3.434,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,7.78,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.031,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,52.25,52.25,37.443,37.443,14.806,0.0,0.0,0.0,0.0,0.0,2.98,0.188,0.0,1.042,2.316,0.626,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.038,15.108,13.553,9.075,0.614,0.0,0.0,0.0,0.0,2838.2,2794.1,2838.2,24.19,17.295,0.0,3.422,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.321,-0.065,4.808,0.0,0.729,0.0,8.124,-8.906,-2.499,0.0,-0.017,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.104,-0.166,0.0,2.286,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,51.949,51.949,37.013,37.013,14.936,0.0,0.0,0.0,0.0,0.0,3.325,0.037,0.0,1.134,2.105,0.12,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.915,15.323,14.405,9.075,0.614,0.0,0.0,0.0,0.0,2844.2,2768.7,2844.2,24.242,18.073,0.0,3.392,3.646,0.513,7.534,0.631,10.107,-12.683,0.0,0.0,0.0,8.322,-0.065,4.808,0.0,0.729,0.0,9.032,-8.906,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.348,-0.061,-1.17,-3.106,-0.166,0.0,3.179,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,47.367,47.367,35.947,35.947,11.42,0.0,0.0,0.0,0.0,0.0,2.908,0.012,0.0,0.544,2.144,0.047,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.303,11.393,12.324,9.075,0.614,0.0,0.0,0.0,0.0,2645.0,2405.9,2645.0,19.077,13.974,0.0,3.611,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,3.246,-8.906,-2.499,0.0,0.028,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.102,-0.166,0.0,1.045,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-fractions.xml,92.369,92.369,46.596,46.596,45.773,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,8.065,1.653,8.86,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,0.0,45.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,42.723,0.0,29.357,8.989,0.612,0.0,0.0,5.0,47.0,2576.6,5108.1,5108.1,48.976,36.121,0.0,3.225,7.897,1.073,7.933,0.668,20.527,-25.252,0.0,0.0,0.0,9.073,-0.115,11.172,0.0,0.748,0.0,19.695,-10.961,-3.544,0.0,-0.375,-1.033,-0.1,2.666,-0.022,-2.112,23.314,0.0,0.0,0.0,-6.451,-0.103,-2.481,-6.339,-0.161,0.0,10.744,9.395,2.829,1354.8,997.6,11171.6,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,71257.0,33166.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-multipliers.xml,57.373,57.373,35.746,35.746,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.292,0.805,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.257,0.0,14.061,9.075,0.614,0.0,0.0,0.0,0.0,2116.7,3331.6,3331.6,22.356,18.391,0.0,3.579,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.219,-8.905,-2.499,0.0,-0.039,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.105,-0.166,0.0,2.798,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18409.0,4950.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,55.731,55.731,35.508,35.508,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.115,0.767,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.93,0.0,13.239,9.075,0.614,0.0,0.0,0.0,0.0,2110.2,3048.2,3048.2,20.269,15.813,0.0,3.625,3.644,0.513,7.528,0.631,10.097,-12.683,0.0,0.0,0.0,8.31,-0.062,4.806,0.0,0.729,0.0,2.851,-8.903,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.171,-3.105,-0.166,0.0,1.955,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,28613.0,4973.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15788.0,2330.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-fractions.xml,92.3,92.3,46.527,46.527,45.773,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,7.996,1.653,8.86,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,0.0,45.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,42.723,0.0,29.357,8.989,0.612,0.0,0.0,5.0,47.0,2576.6,5082.0,5082.0,48.976,36.121,0.0,3.225,7.897,1.073,7.933,0.668,20.527,-25.252,0.0,0.0,0.0,9.073,-0.115,11.172,0.0,0.748,0.0,19.695,-10.961,-3.544,0.0,-0.375,-1.033,-0.1,2.666,-0.022,-2.112,23.314,0.0,0.0,0.0,-6.451,-0.103,-2.481,-6.339,-0.161,0.0,10.744,9.395,2.829,1354.8,997.6,11171.6,2410.9,0.0,48000.0,36000.0,0.0,6.8,91.76,71257.0,33166.0,15016.0,0.0,575.0,9467.0,0.0,0.0,1949.0,2171.0,8913.0,85427.0,64071.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,57.339,57.339,35.713,35.713,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.357,0.0,0.0,4.259,0.805,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.626,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.257,0.0,14.061,9.075,0.614,0.0,0.0,0.0,0.0,2116.7,3314.9,3314.9,22.356,18.391,0.0,3.579,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.219,-8.905,-2.499,0.0,-0.039,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.105,-0.166,0.0,2.798,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,31447.0,7807.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18409.0,4950.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,55.698,55.698,35.476,35.476,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.083,0.767,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.93,0.0,13.239,9.075,0.614,0.0,0.0,0.0,0.0,2110.2,3033.7,3033.7,20.269,15.813,0.0,3.625,3.644,0.513,7.528,0.631,10.097,-12.683,0.0,0.0,0.0,8.31,-0.062,4.806,0.0,0.729,0.0,2.851,-8.903,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.027,-1.411,11.73,0.0,0.0,0.0,-6.352,-0.059,-1.171,-3.105,-0.166,0.0,1.955,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,28613.0,4973.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15788.0,2330.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ducts-defaults.xml,54.665,54.665,40.513,40.513,14.152,0.0,0.0,0.0,0.0,0.0,4.354,0.368,0.0,0.0,5.499,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.731,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3055.2,3318.2,3318.2,18.192,11.921,0.0,3.744,3.643,0.513,7.524,0.631,10.098,-12.683,0.0,0.0,0.0,8.304,-0.065,4.807,0.0,0.73,0.0,1.557,-8.906,-2.499,0.0,0.035,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.096,-0.166,0.0,-0.0,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,41910.0,24000.0,0.0,6.8,91.76,28213.0,4573.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,58.136,58.136,35.873,35.873,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.386,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.848,0.0,14.392,9.075,0.614,0.0,0.0,0.0,0.0,2119.3,3389.2,3389.2,23.027,18.922,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.829,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.143,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18783.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,57.569,57.569,35.762,35.762,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.303,0.807,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,14.205,9.075,0.614,0.0,0.0,0.0,0.0,2116.8,3379.2,3379.2,22.444,18.84,0.0,3.567,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.807,0.0,0.73,0.0,4.423,-8.906,-2.499,0.0,-0.044,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.105,-0.166,0.0,3.002,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34498.0,10858.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20350.0,6892.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-percent.xml,59.353,59.353,36.072,36.072,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.535,0.861,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.808,0.0,15.05,9.075,0.614,0.0,0.0,0.0,0.0,2123.4,3563.0,3563.0,24.251,20.487,0.0,3.52,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.315,-0.064,4.807,0.0,0.729,0.0,5.821,-8.905,-2.499,0.0,-0.083,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.108,-0.166,0.0,3.824,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32661.0,9021.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20673.0,7215.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-effective-rvalue.xml,58.101,58.101,35.838,35.838,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.263,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.848,0.0,14.392,9.075,0.614,0.0,0.0,0.0,0.0,2119.3,3372.0,3372.0,23.027,18.922,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.829,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.143,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32230.0,8590.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18783.0,5325.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,57.535,57.535,35.728,35.728,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.36,0.0,0.0,4.269,0.807,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.435,0.0,14.205,9.075,0.614,0.0,0.0,0.0,0.0,2116.8,3362.1,3362.1,22.444,18.84,0.0,3.567,3.645,0.513,7.529,0.631,10.103,-12.683,0.0,0.0,0.0,8.314,-0.065,4.807,0.0,0.73,0.0,4.423,-8.906,-2.499,0.0,-0.044,-0.464,-0.052,2.685,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.105,-0.166,0.0,3.002,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,34498.0,10858.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20350.0,6892.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-percent.xml,59.317,59.317,36.036,36.036,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.384,0.0,0.0,4.499,0.861,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.281,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.808,0.0,15.05,9.075,0.614,0.0,0.0,0.0,0.0,2123.4,3544.1,3544.1,24.251,20.487,0.0,3.52,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.315,-0.064,4.807,0.0,0.729,0.0,5.821,-8.905,-2.499,0.0,-0.083,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.108,-0.166,0.0,3.824,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32661.0,9021.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,20673.0,7215.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-elec-resistance-only.xml,46.293,46.293,46.293,46.293,0.0,0.0,0.0,0.0,0.0,0.0,16.025,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,5913.9,1615.7,5913.9,16.439,0.0,0.0,3.747,3.646,0.513,7.508,0.632,10.109,-12.683,0.0,0.0,0.0,8.139,-0.069,4.809,0.0,0.73,0.0,0.0,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-evap-cooler-furnace-gas.xml,54.595,54.595,31.729,31.729,22.866,0.0,0.0,0.0,0.0,0.0,0.0,0.594,0.0,0.0,0.0,0.842,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.631,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2123.2,1811.2,2123.2,24.046,11.93,0.0,3.529,3.645,0.513,7.53,0.631,10.101,-12.683,0.0,0.0,0.0,8.314,-0.064,4.807,0.0,0.729,0.0,5.628,-8.905,-2.499,0.0,0.037,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.096,-0.166,0.0,-0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-evap-cooler-only-ducted.xml,31.243,31.243,31.243,31.243,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.906,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.91,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,1920.1,2020.7,0.0,15.977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.013,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.015,-0.167,0.0,0.941,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15717.0,2259.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -217,9 +217,9 @@ base-hvac-evap-cooler-only.xml,31.157,31.157,31.157,31.157,0.0,0.0,0.0,0.0,0.0,0 base-hvac-fireplace-wood-only.xml,51.606,51.606,30.269,30.269,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.337,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2019.6,1637.4,2019.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-floor-furnace-propane-only.xml,56.578,56.578,30.269,30.269,0.0,0.0,26.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2019.6,1637.4,2019.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-coal-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,0.0,0.0,22.632,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-elec-central-ac-1-speed.xml,56.359,56.359,56.359,56.359,0.0,0.0,0.0,0.0,0.0,0.0,20.485,0.367,0.0,0.0,4.387,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,7897.8,3389.8,7897.8,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,56.324,56.324,56.324,56.324,0.0,0.0,0.0,0.0,0.0,0.0,20.485,0.367,0.0,0.0,4.352,0.827,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.394,9.075,0.614,0.0,0.0,0.0,0.0,7897.8,3372.6,7897.8,23.032,18.927,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.054,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.35,-0.06,-1.171,-3.106,-0.166,0.0,3.145,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-elec-only.xml,52.103,52.103,52.103,52.103,0.0,0.0,0.0,0.0,0.0,0.0,21.247,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,8283.1,1622.9,8283.1,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-2-speed.xml,56.818,56.818,34.552,34.552,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.209,0.684,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.822,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3107.2,3107.2,23.032,19.604,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.106,-0.166,0.0,3.578,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,56.801,56.801,34.535,34.535,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,3.192,0.684,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,14.822,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3118.4,3118.4,23.032,19.604,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.072,-0.464,-0.052,2.685,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.349,-0.06,-1.171,-3.106,-0.166,0.0,3.578,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-central-ac-var-speed.xml,55.999,55.999,33.733,33.733,22.266,0.0,0.0,0.0,0.0,0.0,0.0,0.367,0.0,0.0,2.79,0.284,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.852,0.0,15.696,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,2927.4,2927.4,23.032,19.236,0.0,3.557,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.313,-0.064,4.807,0.0,0.729,0.0,4.833,-8.905,-2.499,0.0,-0.117,-0.464,-0.052,2.686,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.348,-0.06,-1.171,-3.111,-0.166,0.0,4.508,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-detailed-setpoints.xml,37.962,37.962,30.502,30.502,7.459,0.0,0.0,0.0,0.0,0.0,0.0,0.194,0.0,0.0,0.0,0.0,9.032,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.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,7.05,0.0,0.0,9.075,0.631,0.0,0.0,0.0,0.0,2085.2,1635.6,2085.2,18.154,0.0,0.0,2.849,2.792,0.391,5.359,0.413,7.471,-12.563,0.0,0.0,0.0,5.445,-0.06,3.485,0.0,0.573,0.0,1.812,-8.806,-2.473,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-pilot.xml,58.398,58.398,30.857,30.857,27.541,0.0,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.541,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -228,17 +228,17 @@ base-hvac-furnace-gas-room-ac.xml,59.252,59.252,36.386,36.386,22.866,0.0,0.0,0.0 base-hvac-furnace-oil-only.xml,53.489,53.489,30.857,30.857,0.0,22.632,0.0,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-x3-dse.xml,58.394,58.394,36.816,36.816,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.196,0.942,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,16.339,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2105.4,2614.4,2614.4,16.604,11.921,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,58.355,58.355,36.777,36.777,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.156,0.942,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,16.339,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2105.4,2603.4,2603.4,16.604,11.921,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.148,34.148,34.148,34.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.993,0.818,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.009,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2821.6,2821.6,0.0,15.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.027,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.077,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-detailed.xml,39.131,39.131,39.131,39.131,0.0,0.0,0.0,0.0,0.0,0.0,4.746,0.439,0.0,0.0,2.765,0.888,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.27,0.0,13.269,9.075,0.614,0.0,0.0,0.0,0.0,3181.7,2593.1,3181.7,20.974,15.922,0.0,3.612,3.644,0.513,7.528,0.631,10.099,-12.683,0.0,0.0,0.0,8.311,-0.064,4.807,0.0,0.729,0.0,3.206,-8.905,-2.499,0.0,-0.006,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.104,-0.166,0.0,1.997,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-heating-only.xml,35.981,35.981,35.981,35.981,0.0,0.0,0.0,0.0,0.0,0.0,4.986,0.726,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.782,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3353.6,1621.9,3353.6,22.231,0.0,0.0,3.592,3.648,0.513,7.511,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.897,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump.xml,39.632,39.632,39.632,39.632,0.0,0.0,0.0,0.0,0.0,0.0,4.91,0.466,0.0,0.0,3.05,0.914,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.372,0.0,13.301,9.075,0.614,0.0,0.0,0.0,0.0,3268.8,2720.4,3268.8,21.358,16.091,0.0,3.608,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.31,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.029,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.712,48.712,48.712,48.712,0.0,0.0,0.0,0.0,0.0,0.0,12.128,0.691,0.618,0.019,4.265,0.698,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.638,13.847,9.075,0.614,0.0,0.0,0.0,0.0,7101.3,3521.5,7101.3,24.716,17.398,0.0,3.475,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.943,-8.906,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.592,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.071,44.071,44.071,44.071,0.0,0.0,0.0,0.0,0.0,0.0,9.157,0.568,0.555,0.017,2.906,0.576,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.109,0.573,14.194,9.075,0.614,0.0,0.0,0.0,0.0,7082.4,3130.1,7082.4,24.712,18.774,0.0,3.428,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,8.186,-8.906,-2.499,0.0,-0.045,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.944,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.624,48.624,48.624,48.624,0.0,0.0,0.0,0.0,0.0,0.0,12.08,0.691,0.618,0.019,4.225,0.698,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.638,13.847,9.075,0.614,0.0,0.0,0.0,0.0,7101.3,3502.4,7101.3,24.716,17.398,0.0,3.475,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.943,-8.906,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.592,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.109,44.109,44.109,44.109,0.0,0.0,0.0,0.0,0.0,0.0,9.216,0.568,0.555,0.017,2.885,0.576,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.109,0.573,14.194,9.075,0.614,0.0,0.0,0.0,0.0,7082.4,3118.0,7082.4,24.712,18.774,0.0,3.428,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,8.186,-8.906,-2.499,0.0,-0.045,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.944,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,45.743,45.743,45.743,45.743,0.0,0.0,0.0,0.0,0.0,0.0,10.976,0.524,0.312,0.01,3.456,0.173,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.437,0.321,15.438,9.075,0.614,0.0,0.0,0.0,0.0,7073.3,4237.7,7073.3,24.71,18.727,0.0,3.34,3.648,0.513,7.536,0.631,10.103,-12.695,0.0,0.0,0.0,8.327,-0.061,4.807,0.0,0.729,0.0,10.604,-8.908,-2.5,0.0,-0.101,-0.462,-0.052,2.688,-0.026,-1.408,11.718,0.0,0.0,0.0,-6.341,-0.057,-1.171,-3.111,-0.165,0.0,4.252,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.973,43.973,43.973,43.973,0.0,0.0,0.0,0.0,0.0,0.0,9.904,0.341,0.609,0.021,2.649,0.156,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.319,0.63,15.189,9.075,0.614,0.0,0.0,0.0,0.0,7094.4,3157.2,7094.4,24.758,18.676,0.0,3.383,3.647,0.513,7.535,0.631,10.106,-12.69,0.0,0.0,0.0,8.325,-0.064,4.808,0.0,0.73,0.0,9.444,-8.908,-2.5,0.0,-0.09,-0.463,-0.052,2.687,-0.026,-1.406,11.724,0.0,0.0,0.0,-6.344,-0.06,-1.17,-3.109,-0.166,0.0,3.988,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.123,60.123,36.683,36.683,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,5.342,0.767,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.306,9.075,0.614,0.0,0.0,0.0,3.0,2098.9,3532.9,3532.9,24.074,18.622,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.096,-0.464,-0.052,2.686,-0.027,-1.41,11.73,0.0,0.0,0.0,-6.35,-0.059,-1.172,-3.109,-0.166,0.0,4.08,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.58,58.58,35.14,35.14,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.916,0.65,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.757,9.075,0.614,0.0,0.0,0.0,3.0,2098.9,3183.9,3183.9,24.074,18.898,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.116,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.109,-0.166,0.0,4.538,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.079,60.079,36.64,36.64,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,5.299,0.767,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.306,9.075,0.614,0.0,0.0,0.0,3.0,2098.9,3513.4,3513.4,24.074,18.622,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.096,-0.464,-0.052,2.686,-0.027,-1.41,11.73,0.0,0.0,0.0,-6.35,-0.059,-1.172,-3.109,-0.166,0.0,4.08,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.565,58.565,35.126,35.126,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.902,0.65,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.757,9.075,0.614,0.0,0.0,0.0,3.0,2098.9,3203.2,3203.2,24.074,18.898,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.116,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.109,-0.166,0.0,4.538,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,57.797,57.797,34.358,34.358,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.404,0.381,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,16.486,9.075,0.614,0.0,0.0,0.0,0.0,2098.9,3154.3,3154.3,24.074,19.166,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.157,-0.464,-0.052,2.687,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.348,-0.059,-1.172,-3.116,-0.166,0.0,5.323,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,54.843,54.843,30.726,30.726,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.643,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2091.6,1623.6,2091.6,25.358,0.0,0.0,3.488,3.648,0.513,7.514,0.632,10.112,-12.683,0.0,0.0,0.0,8.148,-0.067,4.809,0.0,0.73,0.0,6.844,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-ground-to-air-heat-pump.xml,41.672,41.672,41.672,41.672,0.0,0.0,0.0,0.0,0.0,0.0,6.352,0.476,0.0,0.0,3.682,0.87,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.352,0.0,13.86,9.075,0.614,0.0,0.0,0.0,0.0,3507.6,2937.9,3507.6,22.424,17.272,0.0,3.575,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.312,-0.064,4.807,0.0,0.729,0.0,4.317,-8.905,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.106,-0.166,0.0,2.602,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -258,7 +258,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,48.473,48.473,36.218,36 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,38.968,38.968,38.968,38.968,0.0,0.0,0.0,0.0,0.0,0.0,6.705,0.036,0.0,0.0,1.932,0.003,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.293,9.075,0.614,0.0,0.0,0.0,0.0,3979.6,2668.3,3979.6,16.439,11.917,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,38.212,38.212,38.212,38.212,0.0,0.0,0.0,0.0,0.0,0.0,5.664,0.051,0.0,0.0,2.199,0.006,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3660.8,2367.3,3660.8,16.439,11.917,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,38.212,38.212,38.212,38.212,0.0,0.0,0.0,0.0,0.0,0.0,5.664,0.051,0.0,0.0,2.199,0.006,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3660.8,2367.3,3660.8,16.439,11.917,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.088,66.088,51.967,51.967,7.001,3.521,3.599,0.0,0.0,0.0,13.461,0.838,0.212,0.009,6.597,0.558,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.002,0.221,19.498,9.075,0.614,0.0,0.0,0.0,15.0,6458.6,4039.6,6458.6,37.522,22.494,0.0,3.43,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.887,0.0,0.728,0.0,15.028,-8.914,-2.501,0.0,-0.136,-0.456,-0.051,2.714,-0.024,-1.381,11.717,0.0,0.0,0.0,-6.301,-0.058,-1.436,-3.09,-0.164,0.0,8.415,7.863,2.008,1354.8,997.6,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,36744.0,13104.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23818.0,10360.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.066,66.066,51.945,51.945,7.001,3.521,3.599,0.0,0.0,0.0,13.455,0.838,0.212,0.009,6.581,0.558,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.002,0.221,19.498,9.075,0.614,0.0,0.0,0.0,15.0,6457.5,4033.0,6457.5,37.522,22.494,0.0,3.43,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.887,0.0,0.728,0.0,15.028,-8.914,-2.501,0.0,-0.136,-0.456,-0.051,2.714,-0.024,-1.381,11.717,0.0,0.0,0.0,-6.301,-0.058,-1.436,-3.09,-0.164,0.0,8.415,7.863,2.008,1354.8,997.6,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,36744.0,13104.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23818.0,10360.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,19.67,19.67,19.67,19.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,4.539,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,0.0,0.0,4.497,0.33,0.0,0.0,0.0,0.0,1280.4,1085.1,1280.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,1354.8,997.6,8369.8,2062.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1252.0,0.0,452.0,800.0 base-hvac-ptac-with-heating-electricity.xml,50.851,50.851,50.851,50.851,0.0,0.0,0.0,0.0,0.0,0.0,16.19,0.0,0.0,0.0,4.369,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,5913.9,2889.3,5913.9,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-natural-gas.xml,54.899,54.899,34.661,34.661,20.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.369,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2019.7,2889.3,2889.3,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -271,12 +271,12 @@ base-hvac-room-ac-only-detailed-setpoints.xml,34.449,34.449,34.449,34.449,0.0,0. base-hvac-room-ac-only.xml,35.692,35.692,35.692,35.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.355,0.0,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.955,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,3294.1,3294.1,0.0,11.722,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.011,-0.167,0.0,0.0,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-room-ac-with-heating.xml,51.982,51.982,51.982,51.982,0.0,0.0,0.0,0.0,0.0,0.0,16.19,0.0,0.0,0.0,5.499,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,5913.9,3318.2,5913.9,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-room-ac-with-reverse-cycle.xml,41.792,41.792,41.792,41.792,0.0,0.0,0.0,0.0,0.0,0.0,7.228,0.0,0.047,0.0,4.225,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.047,11.294,9.075,0.614,0.0,0.0,0.0,0.0,4933.1,2869.5,4933.1,16.439,11.921,0.0,3.742,3.642,0.513,7.525,0.63,10.097,-12.676,0.0,0.0,0.0,8.301,-0.065,4.806,0.0,0.729,0.0,0.0,-8.903,-2.498,0.0,0.034,-0.466,-0.052,2.684,-0.027,-1.409,11.737,0.0,0.0,0.0,-6.354,-0.061,-1.171,-3.096,-0.166,0.0,0.0,7.874,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-seasons.xml,57.926,57.926,35.824,35.824,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.349,0.818,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.698,0.0,14.225,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3389.4,3389.4,23.032,18.923,0.0,3.516,3.607,0.508,7.531,0.617,9.947,-12.591,0.0,0.0,0.0,8.244,-0.034,4.753,0.0,0.723,0.0,4.802,-8.79,-2.477,0.0,-0.095,-0.501,-0.057,2.688,-0.04,-1.559,11.822,0.0,0.0,0.0,-6.415,-0.03,-1.222,-3.122,-0.173,0.0,3.111,7.988,2.033,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,56.965,56.965,35.268,35.268,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.889,0.728,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.946,0.0,12.403,9.075,0.615,0.0,0.0,101.0,51.0,2155.4,3764.4,3764.4,34.947,20.81,0.0,3.517,3.579,0.503,7.523,0.608,9.828,-12.674,0.0,0.0,0.0,8.679,0.006,4.652,0.0,0.727,0.0,4.499,-8.859,-2.496,0.0,-0.072,-0.501,-0.058,2.616,-0.042,-1.59,11.74,0.0,0.0,0.0,-6.667,-0.004,-1.223,-3.406,-0.174,0.0,2.447,7.92,2.014,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,56.335,56.335,35.42,35.42,20.915,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,4.025,0.755,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.498,0.0,13.025,9.075,0.616,0.0,0.0,0.0,8.0,2130.8,3654.2,3654.2,25.333,21.331,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.196,-0.023,4.639,0.0,0.724,0.0,4.386,-8.884,-2.501,0.0,-0.055,-0.497,-0.057,2.572,-0.04,-1.577,11.697,0.0,0.0,0.0,-6.643,-0.024,-1.204,-3.355,-0.177,0.0,2.591,7.896,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,41.338,41.338,34.05,34.05,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.087,0.52,9.046,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.0,9.129,9.075,0.645,0.0,0.0,0.0,0.0,2100.9,3188.9,3188.9,17.396,16.187,0.0,2.853,2.787,0.39,5.357,0.411,7.457,-12.563,0.0,0.0,0.0,5.504,-0.06,3.479,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.124,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.261,-5.126,-0.188,0.0,2.084,8.003,2.036,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,57.892,57.892,35.789,35.789,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.365,0.0,0.0,4.315,0.818,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.102,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.698,0.0,14.225,9.075,0.614,0.0,0.0,0.0,0.0,2119.4,3372.2,3372.2,23.032,18.923,0.0,3.516,3.607,0.508,7.531,0.617,9.947,-12.591,0.0,0.0,0.0,8.244,-0.034,4.753,0.0,0.723,0.0,4.802,-8.79,-2.477,0.0,-0.095,-0.501,-0.057,2.688,-0.04,-1.559,11.822,0.0,0.0,0.0,-6.415,-0.03,-1.222,-3.122,-0.173,0.0,3.111,7.988,2.033,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,56.935,56.935,35.238,35.238,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.358,0.0,0.0,3.859,0.728,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.697,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.946,0.0,12.403,9.075,0.615,0.0,0.0,101.0,51.0,2155.4,3745.2,3745.2,34.947,20.81,0.0,3.517,3.579,0.503,7.523,0.608,9.828,-12.674,0.0,0.0,0.0,8.679,0.006,4.652,0.0,0.727,0.0,4.499,-8.859,-2.496,0.0,-0.072,-0.501,-0.058,2.616,-0.042,-1.59,11.74,0.0,0.0,0.0,-6.667,-0.004,-1.223,-3.406,-0.174,0.0,2.447,7.92,2.014,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,56.304,56.304,35.388,35.388,20.915,0.0,0.0,0.0,0.0,0.0,0.0,0.345,0.0,0.0,3.994,0.755,9.018,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.498,0.0,13.025,9.075,0.616,0.0,0.0,0.0,8.0,2130.8,3634.6,3634.6,25.333,21.331,0.0,3.507,3.562,0.5,7.355,0.604,9.777,-12.716,0.0,0.0,0.0,8.196,-0.023,4.639,0.0,0.724,0.0,4.386,-8.884,-2.501,0.0,-0.055,-0.497,-0.057,2.572,-0.04,-1.577,11.697,0.0,0.0,0.0,-6.643,-0.024,-1.204,-3.355,-0.177,0.0,2.591,7.896,2.009,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,41.316,41.316,34.027,34.027,7.288,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,3.065,0.52,9.046,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.288,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.82,0.0,9.129,9.075,0.645,0.0,0.0,0.0,0.0,2100.9,3176.1,3176.1,17.396,16.187,0.0,2.853,2.787,0.39,5.357,0.411,7.457,-12.563,0.0,0.0,0.0,5.504,-0.06,3.479,0.0,0.572,0.0,1.559,-8.806,-2.473,0.0,-0.124,-0.573,-0.067,2.36,-0.058,-1.769,11.85,0.0,0.0,0.0,-7.578,-0.06,-1.261,-5.126,-0.188,0.0,2.084,8.003,2.036,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-space-heater-gas-only.xml,46.293,46.293,30.268,30.268,16.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.024,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2019.6,1614.5,2019.6,16.439,0.0,0.0,3.745,3.645,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.808,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-stove-oil-only.xml,51.59,51.59,30.334,30.334,0.0,21.257,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2022.6,1637.4,2022.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-stove-wood-pellets-only.xml,51.59,51.59,30.334,30.334,0.0,0.0,0.0,0.0,21.257,0.0,0.0,0.064,0.0,0.0,0.0,0.0,8.993,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.056,0.0,0.0,9.075,0.589,0.0,0.0,0.0,0.0,2022.6,1637.4,2022.6,16.995,0.0,0.0,3.744,3.643,0.513,7.5,0.631,10.102,-12.683,0.0,0.0,0.0,8.141,-0.068,5.888,0.0,0.729,0.0,0.0,-8.91,-2.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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-undersized.xml,48.287,48.287,33.038,33.038,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.246,0.0,0.0,2.127,0.358,9.031,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.279,0.0,6.525,9.075,0.629,0.0,0.0,3653.0,2615.0,2089.1,1836.2,2089.1,3.839,2.744,0.0,2.699,2.924,0.409,5.375,0.449,7.904,-12.797,0.0,0.0,0.0,4.761,-0.121,3.617,0.0,0.6,0.0,9.541,-9.006,-2.517,0.0,-0.38,-0.816,-0.103,1.571,-0.117,-2.501,11.616,0.0,0.0,0.0,-8.115,-0.065,-1.427,-5.1,-0.236,0.0,2.724,7.787,1.992,1354.8,997.6,11171.6,2563.5,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17384.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-undersized.xml,48.274,48.274,33.024,33.024,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.246,0.0,0.0,2.114,0.358,9.031,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.279,0.0,6.525,9.075,0.629,0.0,0.0,3653.0,2615.0,2089.1,1834.6,2089.1,3.839,2.744,0.0,2.699,2.924,0.409,5.375,0.449,7.904,-12.797,0.0,0.0,0.0,4.761,-0.121,3.617,0.0,0.6,0.0,9.541,-9.006,-2.517,0.0,-0.38,-0.816,-0.103,1.571,-0.117,-2.501,11.616,0.0,0.0,0.0,-8.115,-0.065,-1.427,-5.1,-0.236,0.0,2.724,7.787,1.992,1354.8,997.6,11171.6,2563.5,0.0,3600.0,2400.0,0.0,6.8,91.76,28898.0,5258.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,17384.0,3925.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-wall-furnace-elec-only.xml,46.62,46.62,46.62,46.62,0.0,0.0,0.0,0.0,0.0,0.0,16.351,0.0,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.011,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,6008.3,1614.5,6008.3,16.439,0.0,0.0,3.745,3.645,0.513,7.508,0.631,10.107,-12.676,0.0,0.0,0.0,8.136,-0.069,4.808,0.0,0.73,0.0,0.0,-8.903,-2.498,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1_bills.csv b/workflow/tests/base_results/results_workflow_simulations1_bills.csv index 0d5622564a..31dc91512a 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -1,179 +1,179 @@ HPXML,Bills: Total (USD),Bills: Electricity: Fixed (USD),Bills: Electricity: Energy (USD),Bills: Electricity: PV Credit (USD),Bills: Electricity: Total (USD),Bills: Natural Gas: Fixed (USD),Bills: Natural Gas: Energy (USD),Bills: Natural Gas: Total (USD),Bills: Fuel Oil: Fixed (USD),Bills: Fuel Oil: Energy (USD),Bills: Fuel Oil: Total (USD),Bills: Propane: Fixed (USD),Bills: Propane: Energy (USD),Bills: Propane: Total (USD),Bills: Wood Cord: Fixed (USD),Bills: Wood Cord: Energy (USD),Bills: Wood Cord: Total (USD),Bills: Wood Pellets: Fixed (USD),Bills: Wood Pellets: Energy (USD),Bills: Wood Pellets: Total (USD),Bills: Coal: Fixed (USD),Bills: Coal: Energy (USD),Bills: Coal: Total (USD) -base-appliances-coal.xml,1807.48,144.0,1217.54,0.0,1361.54,144.0,228.95,372.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,72.99,72.99 -base-appliances-dehumidifier-ief-portable.xml,1521.28,144.0,1219.98,0.0,1363.98,144.0,13.3,157.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-whole-home.xml,1522.88,144.0,1221.79,0.0,1365.79,144.0,13.09,157.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-multiple.xml,1519.37,144.0,1217.35,0.0,1361.35,144.0,14.02,158.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier.xml,1520.46,144.0,1219.31,0.0,1363.31,144.0,13.15,157.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-gas.xml,1786.04,144.0,1217.54,0.0,1361.54,144.0,280.5,424.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,1867.57,144.0,1352.73,0.0,1496.73,144.0,226.84,370.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,1583.4,144.0,1039.17,0.0,1183.17,144.0,256.23,400.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-oil.xml,1904.68,144.0,1217.54,0.0,1361.54,144.0,228.95,372.95,0.0,170.19,170.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 -base-appliances-propane.xml,1866.57,144.0,1217.54,0.0,1361.54,144.0,228.95,372.95,0.0,0.0,0.0,0.0,132.08,132.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,1807.48,144.0,1217.54,0.0,1361.54,144.0,228.95,372.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.99,72.99,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,1871.74,144.0,1312.34,0.0,1456.34,144.0,271.4,415.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,2014.84,144.0,1487.4,0.0,1631.4,144.0,239.44,383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,1779.79,144.0,1285.73,0.0,1429.73,144.0,206.06,350.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,1547.35,144.0,1216.32,0.0,1360.32,144.0,43.03,187.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-unvented-insulated-roof.xml,1810.55,144.0,1291.49,0.0,1435.49,144.0,231.06,375.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,1826.23,144.0,1304.33,0.0,1448.33,144.0,233.9,377.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,1903.33,144.0,1379.46,0.0,1523.46,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-battery.xml,1840.45,144.0,1316.58,0.0,1460.58,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,1316.94,144.0,905.79,0.0,1049.79,144.0,123.15,267.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,1279.05,144.0,923.78,0.0,1067.78,144.0,67.27,211.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,1455.9,144.0,905.85,0.0,1049.85,144.0,262.05,406.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,1202.84,144.0,900.88,0.0,1044.88,144.0,13.96,157.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 -base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,1220.67,144.0,921.42,0.0,1065.42,144.0,11.25,155.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-infil-compartmentalization-test.xml,1257.26,144.0,963.78,0.0,1107.78,144.0,5.48,149.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-residents-1.xml,985.19,144.0,684.26,0.0,828.26,144.0,12.93,156.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,1271.97,144.0,977.08,0.0,1121.08,144.0,6.89,150.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,1301.04,144.0,1005.69,0.0,1149.69,144.0,7.35,151.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,1283.63,144.0,989.1,0.0,1133.1,144.0,6.53,150.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,1486.53,144.0,1193.17,0.0,1337.17,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1292.04,144.0,998.68,0.0,1142.68,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-coal.xml,1806.18,144.0,1216.24,0.0,1360.24,144.0,228.95,372.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,72.99,72.99 +base-appliances-dehumidifier-ief-portable.xml,1518.27,144.0,1216.97,0.0,1360.97,144.0,13.3,157.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-whole-home.xml,1519.87,144.0,1218.78,0.0,1362.78,144.0,13.09,157.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-multiple.xml,1516.38,144.0,1214.36,0.0,1358.36,144.0,14.02,158.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier.xml,1517.45,144.0,1216.3,0.0,1360.3,144.0,13.15,157.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-gas.xml,1784.74,144.0,1216.24,0.0,1360.24,144.0,280.5,424.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,1866.25,144.0,1351.41,0.0,1495.41,144.0,226.84,370.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,1582.24,144.0,1038.01,0.0,1182.01,144.0,256.23,400.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-oil.xml,1903.38,144.0,1216.24,0.0,1360.24,144.0,228.95,372.95,0.0,170.19,170.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 +base-appliances-propane.xml,1865.27,144.0,1216.24,0.0,1360.24,144.0,228.95,372.95,0.0,0.0,0.0,0.0,132.08,132.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,1806.18,144.0,1216.24,0.0,1360.24,144.0,228.95,372.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.99,72.99,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,1870.51,144.0,1311.11,0.0,1455.11,144.0,271.4,415.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,2013.39,144.0,1485.95,0.0,1629.95,144.0,239.44,383.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,1778.74,144.0,1284.68,0.0,1428.68,144.0,206.06,350.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier.xml,1544.21,144.0,1213.18,0.0,1357.18,144.0,43.03,187.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-unvented-insulated-roof.xml,1809.47,144.0,1290.41,0.0,1434.41,144.0,231.06,375.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,1825.1,144.0,1303.2,0.0,1447.2,144.0,233.9,377.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,1902.06,144.0,1378.19,0.0,1522.19,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-battery.xml,1839.18,144.0,1315.31,0.0,1459.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,1316.62,144.0,905.47,0.0,1049.47,144.0,123.15,267.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,1278.55,144.0,923.28,0.0,1067.28,144.0,67.27,211.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,1455.63,144.0,905.58,0.0,1049.58,144.0,262.05,406.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,1202.51,144.0,900.55,0.0,1044.55,144.0,13.96,157.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 +base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,1220.17,144.0,920.92,0.0,1064.92,144.0,11.25,155.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-infil-compartmentalization-test.xml,1256.44,144.0,962.96,0.0,1106.96,144.0,5.48,149.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-residents-1.xml,984.59,144.0,683.66,0.0,827.66,144.0,12.93,156.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,1277.58,144.0,982.69,0.0,1126.69,144.0,6.89,150.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,1305.73,144.0,1010.38,0.0,1154.38,144.0,7.35,151.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,1287.78,144.0,993.25,0.0,1137.25,144.0,6.53,150.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,1446.64,144.0,1153.28,0.0,1297.28,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1297.78,144.0,1004.42,0.0,1148.42,144.0,5.36,149.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,1120.96,144.0,827.43,0.0,971.43,144.0,5.53,149.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,1122.03,144.0,828.12,0.0,972.12,144.0,5.91,149.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,1121.86,144.0,828.59,0.0,972.59,144.0,5.27,149.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,1124.68,144.0,832.85,0.0,976.85,144.0,3.83,147.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,1121.92,144.0,828.67,0.0,972.67,144.0,5.25,149.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,1120.69,144.0,828.38,0.0,972.38,144.0,4.31,148.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 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,1119.28,144.0,975.28,0.0,1119.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,1146.87,144.0,1002.87,0.0,1146.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 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,1129.68,144.0,985.68,0.0,1129.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 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1332.68,144.0,1188.68,0.0,1332.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 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,1139.59,144.0,995.59,0.0,1139.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-generator.xml,1640.64,144.0,961.43,0.0,1105.43,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,1124.85,144.0,980.85,0.0,1124.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 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,1151.53,144.0,1007.53,0.0,1151.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,1133.79,144.0,989.79,0.0,1133.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 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1293.07,144.0,1149.07,0.0,1293.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,1145.29,144.0,1001.29,0.0,1145.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-generator.xml,1639.83,144.0,960.62,0.0,1104.62,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1180.22,144.0,1036.22,0.0,1180.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 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1060.98,144.0,614.3,0.0,758.3,144.0,158.68,302.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-laundry-room.xml,1033.56,144.0,607.27,0.0,751.27,144.0,138.29,282.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1625.38,144.0,1124.99,0.0,1268.99,144.0,212.39,356.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1345.99,144.0,1001.92,0.0,1145.92,144.0,56.07,200.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent.xml,1323.32,144.0,996.54,0.0,1140.54,144.0,38.78,182.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 -base-bldgtype-mf-unit-shared-pv.xml,358.84,144.0,961.43,-897.25,208.18,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,1074.89,144.0,648.06,0.0,792.06,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-water-heater.xml,1034.67,144.0,607.84,0.0,751.84,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit.xml,1256.09,144.0,961.43,0.0,1105.43,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-2stories.xml,1730.49,144.0,1268.86,0.0,1412.86,144.0,173.63,317.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 -base-bldgtype-sfa-unit-atticroof-cathedral.xml,2290.58,144.0,1363.3,0.0,1507.3,144.0,639.28,783.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 -base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,1514.91,144.0,1095.44,0.0,1239.44,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit.xml,1514.91,144.0,1095.44,0.0,1239.44,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1060.16,144.0,613.48,0.0,757.48,144.0,158.68,302.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-laundry-room.xml,1032.79,144.0,606.5,0.0,750.5,144.0,138.29,282.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1624.9,144.0,1124.51,0.0,1268.51,144.0,212.39,356.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1345.31,144.0,1001.24,0.0,1145.24,144.0,56.07,200.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,1322.68,144.0,995.9,0.0,1139.9,144.0,38.78,182.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 +base-bldgtype-mf-unit-shared-pv.xml,358.03,144.0,960.62,-897.25,207.37,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,1074.11,144.0,647.28,0.0,791.28,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-water-heater.xml,1033.89,144.0,607.06,0.0,751.06,144.0,138.83,282.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit.xml,1255.28,144.0,960.62,0.0,1104.62,144.0,6.66,150.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-2stories.xml,1729.56,144.0,1267.93,0.0,1411.93,144.0,173.63,317.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 +base-bldgtype-sfa-unit-atticroof-cathedral.xml,2289.08,144.0,1361.8,0.0,1505.8,144.0,639.28,783.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 +base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,1514.18,144.0,1094.71,0.0,1238.71,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit.xml,1514.18,144.0,1094.71,0.0,1238.71,144.0,131.47,275.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless-outside.xml,1388.39,144.0,786.23,0.0,930.23,144.0,314.16,458.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,1401.33,144.0,786.58,0.0,930.58,144.0,326.75,470.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,1320.19,144.0,1176.19,0.0,1320.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 +base-dhw-desuperheater-2-speed.xml,1319.56,144.0,1175.56,0.0,1319.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 base-dhw-desuperheater-gshp.xml,1517.54,144.0,1373.54,0.0,1517.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 -base-dhw-desuperheater-hpwh.xml,1661.21,144.0,1090.72,0.0,1234.72,144.0,282.49,426.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,1380.63,144.0,1236.63,0.0,1380.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 +base-dhw-desuperheater-hpwh.xml,1659.88,144.0,1089.39,0.0,1233.39,144.0,282.49,426.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,1379.35,144.0,1235.35,0.0,1379.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-var-speed.xml,1286.91,144.0,1142.91,0.0,1286.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,1381.75,144.0,1237.75,0.0,1381.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,1757.07,144.0,1233.2,0.0,1377.2,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,1380.46,144.0,1236.46,0.0,1380.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,1755.8,144.0,1231.93,0.0,1375.93,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-indirect-detailed-setpoints.xml,1417.64,144.0,786.17,0.0,930.17,144.0,343.47,487.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-indirect-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-dhw-indirect-outside.xml,1434.16,144.0,786.23,0.0,930.23,144.0,359.93,503.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-indirect-standbyloss.xml,1421.56,144.0,786.11,0.0,930.11,144.0,347.45,491.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-indirect-with-solar-fraction.xml,1336.56,144.0,786.44,0.0,930.44,144.0,262.12,406.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 base-dhw-indirect.xml,1419.07,144.0,786.18,0.0,930.18,144.0,344.89,488.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,1830.8,144.0,1304.65,0.0,1448.65,144.0,238.15,382.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,1670.27,144.0,989.47,0.0,1133.47,144.0,392.8,536.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,1656.32,144.0,1085.61,0.0,1229.61,144.0,282.71,426.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,1829.53,144.0,1303.38,0.0,1447.38,144.0,238.15,382.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,1668.97,144.0,988.17,0.0,1132.17,144.0,392.8,536.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,1655.22,144.0,1084.51,0.0,1228.51,144.0,282.71,426.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-jacket-indirect.xml,1416.98,144.0,786.24,0.0,930.24,144.0,342.74,486.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 -base-dhw-low-flow-fixtures.xml,1832.37,144.0,1308.5,0.0,1452.5,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,1831.1,144.0,1307.23,0.0,1451.23,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-multiple.xml,1393.88,144.0,856.9,0.0,1000.9,144.0,248.98,392.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,1427.12,144.0,903.59,0.0,1047.59,144.0,235.53,379.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,1838.69,144.0,1314.82,0.0,1458.82,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,1823.28,144.0,1299.41,0.0,1443.41,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,2379.4,144.0,1855.53,0.0,1999.53,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,2201.33,144.0,1677.46,0.0,1821.46,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,2379.4,144.0,1855.53,0.0,1999.53,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,1627.48,144.0,1103.61,0.0,1247.61,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,1574.99,144.0,1051.21,0.0,1195.21,144.0,235.78,379.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 -base-dhw-solar-direct-ics.xml,1630.35,144.0,1106.48,0.0,1250.48,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,1626.9,144.0,1100.18,0.0,1244.18,144.0,238.72,382.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,1574.45,144.0,1054.43,0.0,1198.43,144.0,232.02,376.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,1564.54,144.0,1040.76,0.0,1184.76,144.0,235.78,379.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 -base-dhw-tank-coal.xml,1746.81,144.0,991.44,0.0,1135.44,144.0,238.21,382.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,229.16,229.16 -base-dhw-tank-detailed-setpoints.xml,1840.03,144.0,1316.23,0.0,1460.23,144.0,235.8,379.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,1842.79,144.0,1319.47,0.0,1463.47,144.0,235.32,379.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,1692.2,144.0,983.66,0.0,1127.66,144.0,420.54,564.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,1675.01,144.0,990.06,0.0,1134.06,144.0,396.95,540.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,1675.01,144.0,990.06,0.0,1134.06,144.0,396.95,540.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,1679.48,144.0,991.44,0.0,1135.44,144.0,400.04,544.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,1634.28,144.0,1055.13,0.0,1199.13,144.0,291.15,435.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1628.11,144.0,1048.59,0.0,1192.59,144.0,291.52,435.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,1759.14,144.0,1230.88,0.0,1374.88,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,1628.11,144.0,1048.59,0.0,1192.59,144.0,291.52,435.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,1565.91,144.0,1023.36,0.0,1167.36,144.0,254.55,398.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,1576.67,144.0,1045.63,0.0,1189.63,144.0,243.04,387.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,1660.95,144.0,1091.16,0.0,1235.16,144.0,281.79,425.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1834.62,144.0,1300.14,0.0,1444.14,144.0,246.48,390.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,1824.09,144.0,1295.97,0.0,1439.97,144.0,240.12,384.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 -base-dhw-tank-oil.xml,2051.96,144.0,991.44,0.0,1135.44,144.0,238.21,382.21,0.0,534.31,534.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 -base-dhw-tank-wood.xml,1746.81,144.0,991.44,0.0,1135.44,144.0,238.21,382.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.16,229.16,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,1630.27,144.0,983.66,0.0,1127.66,144.0,358.61,502.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,1852.23,144.0,1323.97,0.0,1467.97,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,1848.39,144.0,1320.13,0.0,1464.13,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,1852.23,144.0,1323.97,0.0,1467.97,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,1614.27,144.0,983.66,0.0,1127.66,144.0,342.61,486.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,1553.43,144.0,983.66,0.0,1127.66,144.0,281.77,425.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,1540.47,144.0,999.48,0.0,1143.48,144.0,252.99,396.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 -base-dhw-tankless-gas.xml,1630.52,144.0,983.66,0.0,1127.66,144.0,358.86,502.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 -base-dhw-tankless-propane.xml,1815.81,144.0,983.66,0.0,1127.66,144.0,240.26,384.26,0.0,0.0,0.0,0.0,303.89,303.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,2051.2,144.0,1501.33,0.0,1645.33,144.0,261.87,405.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,2222.27,144.0,1622.8,0.0,1766.8,144.0,311.47,455.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,1666.18,144.0,1121.23,0.0,1265.23,144.0,256.95,400.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,1754.57,144.0,1220.2,0.0,1364.2,144.0,246.37,390.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,1925.29,144.0,1411.79,0.0,1555.79,144.0,225.5,369.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-5.xml,2009.56,144.0,1506.32,0.0,1650.32,144.0,215.24,359.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-ceilingtypes.xml,2024.52,144.0,1335.53,0.0,1479.53,144.0,400.99,544.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 -base-enclosure-floortypes.xml,1762.69,144.0,1074.64,0.0,1218.64,144.0,400.05,544.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-garage.xml,1809.63,144.0,1268.16,0.0,1412.16,144.0,253.47,397.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,1840.45,144.0,1316.58,0.0,1460.58,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,1840.45,144.0,1316.58,0.0,1460.58,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,1840.45,144.0,1316.58,0.0,1460.58,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,1921.67,144.0,1317.02,0.0,1461.02,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,1855.34,144.0,1316.54,0.0,1460.54,144.0,250.8,394.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,1921.67,144.0,1317.02,0.0,1461.02,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,1921.67,144.0,1317.02,0.0,1461.02,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,1842.19,144.0,1315.7,0.0,1459.7,144.0,238.49,382.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,1837.37,144.0,1310.38,0.0,1454.38,144.0,238.99,382.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 -base-enclosure-rooftypes.xml,1835.42,144.0,1310.64,0.0,1454.64,144.0,236.78,380.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 -base-enclosure-skylights-physical-properties.xml,1895.57,144.0,1356.73,0.0,1500.73,144.0,250.84,394.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,1853.66,144.0,1318.22,0.0,1462.22,144.0,247.44,391.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,1865.53,144.0,1344.2,0.0,1488.2,144.0,233.33,377.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,1865.52,144.0,1347.87,0.0,1491.87,144.0,229.65,373.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,1482.83,144.0,1078.53,0.0,1222.53,144.0,116.3,260.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-thermal-mass.xml,1837.06,144.0,1314.87,0.0,1458.87,144.0,234.19,378.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,1982.78,144.0,1267.83,0.0,1411.83,144.0,426.95,570.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,1805.03,144.0,1280.4,0.0,1424.4,144.0,236.63,380.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 -base-enclosure-windows-none.xml,1793.38,144.0,1241.95,0.0,1385.95,144.0,263.43,407.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,1925.92,144.0,1320.7,0.0,1464.7,144.0,317.22,461.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,1840.42,144.0,1317.67,0.0,1461.67,144.0,234.75,378.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,1772.49,144.0,1226.36,0.0,1370.36,144.0,258.13,402.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 -base-enclosure-windows-storms.xml,1835.53,144.0,1295.35,0.0,1439.35,144.0,252.18,396.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 -base-foundation-ambient.xml,1581.36,144.0,1109.81,0.0,1253.81,144.0,183.55,327.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-basement-garage.xml,1693.36,144.0,1196.06,0.0,1340.06,144.0,209.3,353.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-belly-wing-no-skirt.xml,1576.03,144.0,1076.11,0.0,1220.11,144.0,211.92,355.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-belly-wing-skirt.xml,1572.3,144.0,1076.4,0.0,1220.4,144.0,207.9,351.9,0.0,0.0,0.0,0.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,2078.49,144.0,1364.15,0.0,1508.15,144.0,426.34,570.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation-full.xml,1826.08,144.0,1336.3,0.0,1480.3,144.0,201.78,345.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 -base-foundation-conditioned-basement-slab-insulation.xml,1833.95,144.0,1324.19,0.0,1468.19,144.0,221.76,365.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,1815.76,144.0,1299.85,0.0,1443.85,144.0,227.91,371.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,1538.05,144.0,1059.36,0.0,1203.36,144.0,190.69,334.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 -base-foundation-multiple.xml,1511.59,144.0,1089.09,0.0,1233.09,144.0,134.5,278.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-slab.xml,1470.9,144.0,1073.44,0.0,1217.44,144.0,109.46,253.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement-above-grade.xml,1527.57,144.0,1094.08,0.0,1238.08,144.0,145.49,289.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement-assembly-r.xml,1483.58,144.0,1072.34,0.0,1216.34,144.0,123.24,267.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement-wall-insulation.xml,1555.88,144.0,1060.05,0.0,1204.05,144.0,207.83,351.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement.xml,1513.18,144.0,1090.23,0.0,1234.23,144.0,134.95,278.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unvented-crawlspace.xml,1493.23,144.0,1093.99,0.0,1237.99,144.0,111.24,255.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-vented-crawlspace-above-grade.xml,1517.09,144.0,1097.86,0.0,1241.86,144.0,131.23,275.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-vented-crawlspace.xml,1511.87,144.0,1091.88,0.0,1235.88,144.0,131.99,275.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 -base-foundation-walkout-basement.xml,1913.74,144.0,1330.39,0.0,1474.39,144.0,295.35,439.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1419.16,144.0,1275.16,0.0,1419.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1817.63,144.0,1673.63,0.0,1817.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 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1678.86,144.0,1534.86,0.0,1678.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1816.38,144.0,1672.38,0.0,1816.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 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1819.76,144.0,1675.76,0.0,1819.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,1817.63,144.0,1673.63,0.0,1817.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 -base-hvac-air-to-air-heat-pump-2-speed.xml,1665.72,144.0,1521.72,0.0,1665.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,1425.86,144.0,902.33,0.0,1046.33,144.0,235.53,379.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,1837.42,144.0,1313.55,0.0,1457.55,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,1822.0,144.0,1298.13,0.0,1442.13,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,2378.13,144.0,1854.26,0.0,1998.26,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,2200.06,144.0,1676.19,0.0,1820.19,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,2378.13,144.0,1854.26,0.0,1998.26,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,1626.21,144.0,1102.34,0.0,1246.34,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,1573.71,144.0,1049.93,0.0,1193.93,144.0,235.78,379.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 +base-dhw-solar-direct-ics.xml,1629.07,144.0,1105.2,0.0,1249.2,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,1625.64,144.0,1098.92,0.0,1242.92,144.0,238.72,382.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,1573.13,144.0,1053.11,0.0,1197.11,144.0,232.02,376.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,1563.27,144.0,1039.49,0.0,1183.49,144.0,235.78,379.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 +base-dhw-tank-coal.xml,1745.49,144.0,990.12,0.0,1134.12,144.0,238.21,382.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,229.16,229.16 +base-dhw-tank-detailed-setpoints.xml,1838.76,144.0,1314.96,0.0,1458.96,144.0,235.8,379.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,1841.51,144.0,1318.19,0.0,1462.19,144.0,235.32,379.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,1690.94,144.0,982.4,0.0,1126.4,144.0,420.54,564.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,1673.7,144.0,988.75,0.0,1132.75,144.0,396.95,540.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,1673.7,144.0,988.75,0.0,1132.75,144.0,396.95,540.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,1678.16,144.0,990.12,0.0,1134.12,144.0,400.04,544.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,1633.19,144.0,1054.04,0.0,1198.04,144.0,291.15,435.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1627.02,144.0,1047.5,0.0,1191.5,144.0,291.52,435.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,1757.89,144.0,1229.63,0.0,1373.63,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,1627.02,144.0,1047.5,0.0,1191.5,144.0,291.52,435.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,1564.71,144.0,1022.16,0.0,1166.16,144.0,254.55,398.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,1575.35,144.0,1044.31,0.0,1188.31,144.0,243.04,387.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,1659.84,144.0,1090.05,0.0,1234.05,144.0,281.79,425.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1833.33,144.0,1298.85,0.0,1442.85,144.0,246.48,390.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,1822.83,144.0,1294.71,0.0,1438.71,144.0,240.12,384.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 +base-dhw-tank-oil.xml,2050.64,144.0,990.12,0.0,1134.12,144.0,238.21,382.21,0.0,534.31,534.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 +base-dhw-tank-wood.xml,1745.49,144.0,990.12,0.0,1134.12,144.0,238.21,382.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.16,229.16,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,1629.01,144.0,982.4,0.0,1126.4,144.0,358.61,502.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,1850.98,144.0,1322.72,0.0,1466.72,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,1847.14,144.0,1318.88,0.0,1462.88,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,1850.98,144.0,1322.72,0.0,1466.72,144.0,240.26,384.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,1613.01,144.0,982.4,0.0,1126.4,144.0,342.61,486.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,1552.17,144.0,982.4,0.0,1126.4,144.0,281.77,425.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,1539.18,144.0,998.19,0.0,1142.19,144.0,252.99,396.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 +base-dhw-tankless-gas.xml,1629.26,144.0,982.4,0.0,1126.4,144.0,358.86,502.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 +base-dhw-tankless-propane.xml,1814.55,144.0,982.4,0.0,1126.4,144.0,240.26,384.26,0.0,0.0,0.0,0.0,303.89,303.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,2049.23,144.0,1499.36,0.0,1643.36,144.0,261.87,405.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,2220.34,144.0,1620.87,0.0,1764.87,144.0,311.47,455.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,1665.01,144.0,1120.06,0.0,1264.06,144.0,256.95,400.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,1753.35,144.0,1218.98,0.0,1362.98,144.0,246.37,390.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,1923.97,144.0,1410.47,0.0,1554.47,144.0,225.5,369.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-5.xml,2008.18,144.0,1504.94,0.0,1648.94,144.0,215.24,359.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-ceilingtypes.xml,2023.18,144.0,1334.19,0.0,1478.19,144.0,400.99,544.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 +base-enclosure-floortypes.xml,1761.66,144.0,1073.61,0.0,1217.61,144.0,400.05,544.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-garage.xml,1808.8,144.0,1267.33,0.0,1411.33,144.0,253.47,397.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,1839.18,144.0,1315.31,0.0,1459.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,1839.18,144.0,1315.31,0.0,1459.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,1839.18,144.0,1315.31,0.0,1459.31,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,1920.43,144.0,1315.78,0.0,1459.78,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,1854.08,144.0,1315.28,0.0,1459.28,144.0,250.8,394.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,1920.43,144.0,1315.78,0.0,1459.78,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,1920.43,144.0,1315.78,0.0,1459.78,144.0,316.65,460.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,1840.92,144.0,1314.43,0.0,1458.43,144.0,238.49,382.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,1836.14,144.0,1309.15,0.0,1453.15,144.0,238.99,382.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 +base-enclosure-rooftypes.xml,1834.2,144.0,1309.42,0.0,1453.42,144.0,236.78,380.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 +base-enclosure-skylights-physical-properties.xml,1894.0,144.0,1355.16,0.0,1499.16,144.0,250.84,394.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,1852.38,144.0,1316.94,0.0,1460.94,144.0,247.44,391.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,1864.05,144.0,1342.72,0.0,1486.72,144.0,233.33,377.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,1864.01,144.0,1346.36,0.0,1490.36,144.0,229.65,373.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-split-level.xml,1481.71,144.0,1077.41,0.0,1221.41,144.0,116.3,260.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-thermal-mass.xml,1835.8,144.0,1313.61,0.0,1457.61,144.0,234.19,378.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,1981.97,144.0,1267.02,0.0,1411.02,144.0,426.95,570.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,1804.03,144.0,1279.4,0.0,1423.4,144.0,236.63,380.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 +base-enclosure-windows-none.xml,1792.7,144.0,1241.27,0.0,1385.27,144.0,263.43,407.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,1924.65,144.0,1319.43,0.0,1463.43,144.0,317.22,461.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,1839.14,144.0,1316.39,0.0,1460.39,144.0,234.75,378.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,1771.93,144.0,1225.8,0.0,1369.8,144.0,258.13,402.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 +base-enclosure-windows-storms.xml,1834.42,144.0,1294.24,0.0,1438.24,144.0,252.18,396.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 +base-foundation-ambient.xml,1579.97,144.0,1108.42,0.0,1252.42,144.0,183.55,327.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-basement-garage.xml,1692.09,144.0,1194.79,0.0,1338.79,144.0,209.3,353.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-belly-wing-no-skirt.xml,1574.91,144.0,1074.99,0.0,1218.99,144.0,211.92,355.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-belly-wing-skirt.xml,1571.18,144.0,1075.28,0.0,1219.28,144.0,207.9,351.9,0.0,0.0,0.0,0.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,2076.94,144.0,1362.6,0.0,1506.6,144.0,426.34,570.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,1824.64,144.0,1334.86,0.0,1478.86,144.0,201.78,345.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 +base-foundation-conditioned-basement-slab-insulation.xml,1832.62,144.0,1322.86,0.0,1466.86,144.0,221.76,365.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,1814.61,144.0,1298.7,0.0,1442.7,144.0,227.91,371.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,1537.06,144.0,1058.37,0.0,1202.37,144.0,190.69,334.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 +base-foundation-multiple.xml,1510.34,144.0,1087.84,0.0,1231.84,144.0,134.5,278.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-slab.xml,1469.76,144.0,1072.3,0.0,1216.3,144.0,109.46,253.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-above-grade.xml,1526.28,144.0,1092.79,0.0,1236.79,144.0,145.49,289.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-assembly-r.xml,1482.46,144.0,1071.22,0.0,1215.22,144.0,123.24,267.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-wall-insulation.xml,1554.87,144.0,1059.04,0.0,1203.04,144.0,207.83,351.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement.xml,1511.92,144.0,1088.97,0.0,1232.97,144.0,134.95,278.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unvented-crawlspace.xml,1491.96,144.0,1092.72,0.0,1236.72,144.0,111.24,255.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-vented-crawlspace-above-grade.xml,1515.82,144.0,1096.59,0.0,1240.59,144.0,131.23,275.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-vented-crawlspace.xml,1510.65,144.0,1090.66,0.0,1234.66,144.0,131.99,275.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 +base-foundation-walkout-basement.xml,1912.39,144.0,1329.04,0.0,1473.04,144.0,295.35,439.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1417.99,144.0,1273.99,0.0,1417.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 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1815.07,144.0,1671.07,0.0,1815.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1677.51,144.0,1533.51,0.0,1677.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 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1813.9,144.0,1669.9,0.0,1813.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,1817.23,144.0,1673.23,0.0,1817.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,1815.07,144.0,1671.07,0.0,1815.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,1666.08,144.0,1522.08,0.0,1666.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 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1866.34,144.0,1420.34,0.0,1564.34,144.0,158.0,302.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1868.36,144.0,1378.64,0.0,1522.64,144.0,201.72,345.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1870.14,144.0,1424.09,0.0,1568.09,144.0,158.05,302.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 @@ -181,35 +181,35 @@ base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1873.53,144.0,1429.2 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,1980.54,144.0,1836.54,0.0,1980.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 base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,1699.22,144.0,1555.22,0.0,1699.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 base-hvac-air-to-air-heat-pump-var-speed.xml,1645.35,144.0,1501.35,0.0,1645.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,1927.14,144.0,1569.96,0.0,1713.96,144.0,69.18,213.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 -base-hvac-autosize.xml,1852.94,144.0,1321.5,0.0,1465.5,144.0,243.44,387.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,1926.22,144.0,1569.04,0.0,1713.04,144.0,69.18,213.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 +base-hvac-autosize.xml,1851.63,144.0,1320.19,0.0,1464.19,144.0,243.44,387.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-boiler-coal-only.xml,1547.28,144.0,1119.54,0.0,1263.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,283.74,283.74 base-hvac-boiler-elec-only.xml,1914.77,144.0,1770.77,0.0,1914.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 -base-hvac-boiler-gas-central-ac-1-speed.xml,1815.77,144.0,1324.38,0.0,1468.38,144.0,203.39,347.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,1814.47,144.0,1323.08,0.0,1467.08,144.0,203.39,347.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-boiler-gas-only-pilot.xml,1658.12,144.0,1116.15,0.0,1260.15,144.0,253.97,397.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 base-hvac-boiler-gas-only.xml,1605.45,144.0,1116.15,0.0,1260.15,144.0,201.3,345.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-boiler-oil-only.xml,1925.12,144.0,1119.54,0.0,1263.54,0.0,0.0,0.0,0.0,661.58,661.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 base-hvac-boiler-propane-only.xml,1775.73,144.0,1115.36,0.0,1259.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,516.37,516.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-boiler-wood-only.xml,1544.71,144.0,1115.36,0.0,1259.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,285.35,285.35,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,1459.24,144.0,1315.24,0.0,1459.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 -base-hvac-central-ac-only-1-speed.xml,1459.82,144.0,1315.82,0.0,1459.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,1399.28,144.0,1255.28,0.0,1399.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,1458.08,144.0,1314.08,0.0,1458.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 +base-hvac-central-ac-only-1-speed.xml,1458.56,144.0,1314.56,0.0,1458.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 +base-hvac-central-ac-only-2-speed.xml,1398.66,144.0,1254.66,0.0,1398.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 base-hvac-central-ac-only-var-speed-detailed-performance.xml,1381.34,144.0,1237.34,0.0,1381.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-var-speed.xml,1367.86,144.0,1223.86,0.0,1367.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1890.94,144.0,1746.94,0.0,1890.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1888.27,144.0,1744.27,0.0,1888.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1924.21,144.0,1523.37,0.0,1667.37,144.0,112.84,256.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1927.15,144.0,1486.54,0.0,1630.54,144.0,152.61,296.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1819.69,144.0,1374.84,0.0,1518.84,144.0,156.85,300.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1922.29,144.0,1521.45,0.0,1665.45,144.0,112.84,256.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1925.44,144.0,1484.83,0.0,1628.83,144.0,152.61,296.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1819.04,144.0,1374.19,0.0,1518.19,144.0,156.85,300.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1804.62,144.0,1358.4,0.0,1502.4,144.0,158.22,302.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1728.24,144.0,1319.27,0.0,1463.27,144.0,120.97,264.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 -base-hvac-ducts-area-fractions.xml,2482.98,144.0,1710.09,0.0,1854.09,144.0,484.89,628.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-area-multipliers.xml,1829.0,144.0,1311.91,0.0,1455.91,144.0,229.09,373.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-buried.xml,1805.38,144.0,1303.15,0.0,1447.15,144.0,214.23,358.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-fractions.xml,2480.44,144.0,1707.55,0.0,1851.55,144.0,484.89,628.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-area-multipliers.xml,1827.76,144.0,1310.67,0.0,1454.67,144.0,229.09,373.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-buried.xml,1804.2,144.0,1301.97,0.0,1445.97,144.0,214.23,358.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ducts-defaults.xml,1924.76,144.0,1486.85,0.0,1630.85,144.0,149.91,293.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-effective-rvalue.xml,1840.39,144.0,1316.56,0.0,1460.56,144.0,235.83,379.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ducts-leakage-cfm50.xml,1831.49,144.0,1312.49,0.0,1456.49,144.0,231.0,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 -base-hvac-ducts-leakage-percent.xml,1858.48,144.0,1323.86,0.0,1467.86,144.0,246.62,390.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 +base-hvac-ducts-effective-rvalue.xml,1839.12,144.0,1315.29,0.0,1459.29,144.0,235.83,379.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ducts-leakage-cfm50.xml,1830.24,144.0,1311.24,0.0,1455.24,144.0,231.0,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 +base-hvac-ducts-leakage-percent.xml,1857.15,144.0,1322.53,0.0,1466.53,144.0,246.62,390.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 base-hvac-elec-resistance-only.xml,1842.97,144.0,1698.97,0.0,1842.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-evap-cooler-furnace-gas.xml,1694.69,144.0,1164.46,0.0,1308.46,144.0,242.23,386.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-evap-cooler-only-ducted.xml,1290.62,144.0,1146.62,0.0,1290.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -217,9 +217,9 @@ base-hvac-evap-cooler-only.xml,1287.46,144.0,1143.46,0.0,1287.46,0.0,0.0,0.0,0.0 base-hvac-fireplace-wood-only.xml,1574.96,144.0,1110.9,0.0,1254.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,320.06,320.06,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-floor-furnace-propane-only.xml,1969.03,144.0,1110.9,0.0,1254.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,714.13,714.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-coal-only.xml,1615.94,144.0,1132.46,0.0,1276.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,339.48,339.48 -base-hvac-furnace-elec-central-ac-1-speed.xml,2212.39,144.0,2068.39,0.0,2212.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,2211.12,144.0,2067.12,0.0,2211.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 base-hvac-furnace-elec-only.xml,2056.22,144.0,1912.22,0.0,2056.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 -base-hvac-furnace-gas-central-ac-2-speed.xml,1791.95,144.0,1268.08,0.0,1412.08,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,1791.31,144.0,1267.44,0.0,1411.44,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-central-ac-var-speed.xml,1761.88,144.0,1238.01,0.0,1382.01,144.0,235.87,379.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-detailed-setpoints.xml,1486.47,144.0,1119.45,0.0,1263.45,144.0,79.02,223.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-pilot.xml,1712.21,144.0,1132.46,0.0,1276.46,144.0,291.75,435.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 @@ -233,12 +233,12 @@ base-hvac-ground-to-air-heat-pump-cooling-only.xml,1397.25,144.0,1253.25,0.0,139 base-hvac-ground-to-air-heat-pump-detailed.xml,1580.14,144.0,1436.14,0.0,1580.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-heating-only.xml,1464.52,144.0,1320.52,0.0,1464.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 base-hvac-ground-to-air-heat-pump.xml,1598.51,144.0,1454.51,0.0,1598.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 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1931.76,144.0,1787.76,0.0,1931.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1761.43,144.0,1617.43,0.0,1761.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 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1928.51,144.0,1784.51,0.0,1928.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 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1762.82,144.0,1618.82,0.0,1762.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1822.8,144.0,1678.8,0.0,1822.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 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1757.81,144.0,1613.81,0.0,1757.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 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1882.6,144.0,1346.3,0.0,1490.3,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1825.97,144.0,1289.67,0.0,1433.67,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1881.0,144.0,1344.7,0.0,1488.7,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1825.44,144.0,1289.14,0.0,1433.14,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1797.25,144.0,1260.95,0.0,1404.95,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,1671.13,144.0,1127.65,0.0,1271.65,144.0,255.48,399.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-ground-to-air-heat-pump.xml,1673.37,144.0,1529.37,0.0,1673.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 @@ -258,7 +258,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1901.83,144.0,1329.22,0 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1574.13,144.0,1430.13,0.0,1574.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1546.39,144.0,1402.39,0.0,1546.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,1546.39,144.0,1402.39,0.0,1546.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,2490.2,144.0,1907.2,0.0,2051.2,144.0,74.17,218.17,0.0,123.13,123.13,0.0,97.7,97.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,2489.4,144.0,1906.4,0.0,2050.4,144.0,74.17,218.17,0.0,123.13,123.13,0.0,97.7,97.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,2513.83,144.0,2369.83,0.0,2513.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-electricity.xml,2010.26,144.0,1866.26,0.0,2010.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 base-hvac-ptac-with-heating-natural-gas.xml,1774.46,144.0,1272.07,0.0,1416.07,144.0,214.39,358.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 @@ -271,12 +271,12 @@ base-hvac-room-ac-only-detailed-setpoints.xml,1408.31,144.0,1264.31,0.0,1408.31, base-hvac-room-ac-only.xml,1453.89,144.0,1309.89,0.0,1453.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 base-hvac-room-ac-with-heating.xml,2051.76,144.0,1907.76,0.0,2051.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-room-ac-with-reverse-cycle.xml,1677.79,144.0,1533.79,0.0,1677.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 -base-hvac-seasons.xml,1836.88,144.0,1314.74,0.0,1458.74,144.0,234.14,378.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-schedules.xml,1812.2,144.0,1294.36,0.0,1438.36,144.0,229.84,373.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints-daily-setbacks.xml,1809.48,144.0,1299.92,0.0,1443.92,144.0,221.56,365.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-setpoints.xml,1614.85,144.0,1249.64,0.0,1393.64,144.0,77.21,221.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,1835.62,144.0,1313.48,0.0,1457.48,144.0,234.14,378.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,1811.1,144.0,1293.26,0.0,1437.26,144.0,229.84,373.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,1808.33,144.0,1298.77,0.0,1442.77,144.0,221.56,365.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,1614.03,144.0,1248.82,0.0,1392.82,144.0,77.21,221.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-space-heater-gas-only.xml,1568.61,144.0,1110.86,0.0,1254.86,144.0,169.75,313.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-stove-oil-only.xml,2000.7,144.0,1113.26,0.0,1257.26,0.0,0.0,0.0,0.0,743.44,743.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-hvac-stove-wood-pellets-only.xml,1576.11,144.0,1113.26,0.0,1257.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,318.85,318.85,0.0,0.0,0.0 -base-hvac-undersized.xml,1662.04,144.0,1212.49,0.0,1356.49,144.0,161.55,305.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-undersized.xml,1661.55,144.0,1212.0,0.0,1356.0,144.0,161.55,305.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-wall-furnace-elec-only.xml,1854.96,144.0,1710.96,0.0,1854.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 From 54e1dd0436c6d1fac441238535135625f2e64f6c Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 14 Nov 2023 10:08:48 -0700 Subject: [PATCH 205/217] Update conductivity/diffusivity defaulting to preserve 1.0/0.0208 relationship. --- HPXMLtoOpenStudio/measure.xml | 8 ++++---- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 16 +++++++++++----- HPXMLtoOpenStudio/tests/test_defaults.rb | 13 +++++++++++-- docs/source/workflow_inputs.rst | 9 +++++++-- 4 files changed, 33 insertions(+), 13 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 256f5a2a4f..f0f9462099 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - d319391f-06db-47dd-8ee4-f806856cf0d3 - 2023-11-14T16:07:55Z + b9dbee1d-5b7c-4f1f-849a-7292547514cb + 2023-11-14T16:55:09Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -316,7 +316,7 @@ hpxml_defaults.rb rb resource - 9DDADBCA + 9EB5ED81 hpxml_schema/HPXML.xsd @@ -598,7 +598,7 @@ test_defaults.rb rb test - 540CF188 + 66B8B3DA test_enclosure.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 7ec1f6cc5c..ee8dec91a8 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -504,14 +504,20 @@ def self.apply_building(hpxml_bldg, epw_file) end hpxml_bldg.site.ground_conductivity_isdefaulted = true hpxml_bldg.site.ground_diffusivity_isdefaulted = true + elsif hpxml_bldg.site.soil_type == HPXML::SiteSoilTypeUnknown + hpxml_bldg.site.ground_conductivity = 1.0 + hpxml_bldg.site.ground_diffusivity = 0.0208 + hpxml_bldg.site.ground_conductivity_isdefaulted = true + hpxml_bldg.site.ground_diffusivity_isdefaulted = true end end - if hpxml_bldg.site.ground_conductivity.nil? - hpxml_bldg.site.ground_conductivity = 1.0 # Btu/hr-ft-F + if hpxml_bldg.site.ground_conductivity.nil? && !hpxml_bldg.site.ground_diffusivity.nil? + # Divide diffusivity by 0.0208 to maintain 1/0.0208 relationship + hpxml_bldg.site.ground_conductivity = hpxml_bldg.site.ground_diffusivity / 0.0208 # Btu/hr-ft-F hpxml_bldg.site.ground_conductivity_isdefaulted = true - end - if hpxml_bldg.site.ground_diffusivity.nil? - hpxml_bldg.site.ground_diffusivity = 0.0208 # ft^2/hr + elsif !hpxml_bldg.site.ground_conductivity.nil? && hpxml_bldg.site.ground_diffusivity.nil? + # Multiply conductivity by 0.0208 to maintain 1/0.0208 relationship + hpxml_bldg.site.ground_diffusivity = hpxml_bldg.site.ground_conductivity * 0.0208 # ft^2/hr hpxml_bldg.site.ground_diffusivity_isdefaulted = true end diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 4054349ba8..0cfae5f282 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -338,11 +338,20 @@ def test_site _test_default_site_values(default_hpxml_bldg, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 0.6355, 0.0194, HPXML::SiteSoilTypeGravel, HPXML::SiteSoilMoistureTypeMixed) # Test defaults w/ conductivity but no diffusivity - hpxml_bldg.site.ground_conductivity = 0.8 + hpxml_bldg.site.ground_conductivity = 2.0 + hpxml_bldg.site.ground_diffusivity = nil + hpxml_bldg.site.soil_type = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _default_hpxml, default_hpxml_bldg = _test_measure() + _test_default_site_values(default_hpxml_bldg, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 2.0, 0.0416, nil, nil) + + # Test defaults w/ diffusivity but no conductivity + hpxml_bldg.site.ground_conductivity = nil + hpxml_bldg.site.ground_diffusivity = 0.025 hpxml_bldg.site.soil_type = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_site_values(default_hpxml_bldg, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 0.8, 0.0208, nil, nil) + _test_default_site_values(default_hpxml_bldg, HPXML::SiteTypeSuburban, HPXML::ShieldingNormal, 1.201923076923077, 0.025, nil, nil) end def test_neighbor_buildings diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 4774c58ccf..f888dd957c 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -454,7 +454,7 @@ Soil information is entered in ``Soil``. Element Type Units Constraints Required Default Notes ================================================================== ================ =========== =============== ======== ======== ============================================================ ``Conductivity`` or ``SoilType``/``MoistureType`` string or double Btu/hr-ft-F See [#]_ or > 0 No unknown Themal conductivity [#]_ or soil/moisture type - ``extension/Diffusivity`` or ``SoilType``/``MoistureType`` string or double ft2/hr See or > 0 No mixed Diffusivity [#]_ or soil/moisture type + ``extension/Diffusivity`` or ``SoilType``/``MoistureType`` string or double ft2/hr See or > 0 No mixed Thermal diffusivity [#]_ or soil/moisture type ================================================================== ================ =========== =============== ======== ======== ============================================================ .. [#] SoilType choices are "sand", "silt", "clay", "loam", "gravel", or "unknown". @@ -464,7 +464,7 @@ Soil information is entered in ``Soil``. .. [#] Conductivity used for foundation heat transfer and ground source heat pumps. .. [#] Diffusivity used for ground source heat pumps. -If Conductivity and extension/Diffusivity not provided, defaults based on SoilType and MoistureType as follows: +If both Conductivity and extension/Diffusivity not provided, defaults based on SoilType and MoistureType as follows: ============ ============== ========================== ============= SoilType MoistureType Conductivity [Btu/hr-ft-F] extension/Diffusivity [ft2/hr] @@ -481,6 +481,11 @@ If Conductivity and extension/Diffusivity not provided, defaults based on SoilTy gravel mixed 0.6355 0.0194 ============ ============== ========================== ============= +If either Conductivity or extension/Diffusivity not provided, the 1.0/0.0208 relationship is preserved: + +- Conductivity = extension/Diffusivity / 0.0208 +- extension/Diffusivity = Conductvitiy * 0.0208 + .. note:: Default Conductivity and extension/Diffusivity values based on SoilType/MoistureType provided by Table 1 of `Ground Thermal Diffusivity Calculation by Direct Soil Temperature Measurement. Application to very Low Enthalpy Geothermal Energy Systems `_ (with the exception of "unknown"). From a97d11b48e840742163bf9fcd25f71ceb61bf5a7 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 14 Nov 2023 17:49:24 +0000 Subject: [PATCH 206/217] Latest results. --- workflow/tests/base_results/results_sizing.csv | 12 ++++++------ .../base_results/results_workflow_simulations1.csv | 2 +- .../results_workflow_simulations1_bills.csv | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/workflow/tests/base_results/results_sizing.csv b/workflow/tests/base_results/results_sizing.csv index f9f34a53f3..4599087682 100644 --- a/workflow/tests/base_results/results_sizing.csv +++ b/workflow/tests/base_results/results_sizing.csv @@ -95,9 +95,9 @@ denver-hvac-autosize-furnace-x3-dse.xml,23876.0,15265.0,0.0,527.0,635.0 denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,24224.0,0.0,0.0,912.0 denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,18787.0,0.0,0.0,708.0 denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,24224.0,0.0,0.0,912.0 -denver-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-ACCA.xml,31147.0,31147.0,31147.0,982.0,1173.0 -denver-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-HERS.xml,31147.0,31147.0,31147.0,982.0,1295.0 -denver-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-MaxLoad.xml,38456.0,38456.0,31147.0,1213.0,1599.0 +denver-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-ACCA.xml,31565.0,31565.0,31565.0,996.0,1189.0 +denver-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-HERS.xml,31565.0,31565.0,31565.0,996.0,1313.0 +denver-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-MaxLoad.xml,38768.0,38768.0,31565.0,1223.0,1612.0 denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0,982.0,0.0 denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0,982.0,0.0 denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,31147.0,0.0,31147.0,982.0,0.0 @@ -279,9 +279,9 @@ houston-hvac-autosize-furnace-x3-dse.xml,14219.0,18120.0,0.0,260.0,753.0 houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,32400.0,0.0,0.0,972.0 houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,25329.0,0.0,0.0,760.0 houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,32400.0,0.0,0.0,972.0 -houston-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-ACCA.xml,32400.0,32400.0,20038.0,844.0,972.0 -houston-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-HERS.xml,25329.0,25329.0,20038.0,660.0,760.0 -houston-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20038.0,844.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-ACCA.xml,32400.0,32400.0,20288.0,844.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-HERS.xml,25329.0,25329.0,20288.0,660.0,760.0 +houston-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20288.0,844.0,972.0 houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,20038.0,0.0,20038.0,522.0,0.0 houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,20038.0,0.0,20038.0,522.0,0.0 houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,20038.0,0.0,20038.0,522.0,0.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1.csv b/workflow/tests/base_results/results_workflow_simulations1.csv index 7ecdcf6404..34508695d1 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -230,7 +230,7 @@ base-hvac-furnace-propane-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,22.632,0. base-hvac-furnace-wood-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,58.355,58.355,36.777,36.777,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.156,0.942,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,16.339,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2105.4,2603.4,2603.4,16.604,11.921,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.148,34.148,34.148,34.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.993,0.818,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.009,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2821.6,2821.6,0.0,15.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.027,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.077,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-detailed.xml,39.131,39.131,39.131,39.131,0.0,0.0,0.0,0.0,0.0,0.0,4.746,0.439,0.0,0.0,2.765,0.888,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.27,0.0,13.269,9.075,0.614,0.0,0.0,0.0,0.0,3181.7,2593.1,3181.7,20.974,15.922,0.0,3.612,3.644,0.513,7.528,0.631,10.099,-12.683,0.0,0.0,0.0,8.311,-0.064,4.807,0.0,0.729,0.0,3.206,-8.905,-2.499,0.0,-0.006,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.104,-0.166,0.0,1.997,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-detailed.xml,40.301,40.301,40.301,40.301,0.0,0.0,0.0,0.0,0.0,0.0,5.703,0.53,0.0,0.0,2.854,0.921,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,13.766,9.075,0.615,0.0,0.0,0.0,0.0,3273.8,2729.7,3273.8,22.592,15.972,0.0,3.554,3.603,0.507,7.842,0.622,9.991,-12.705,0.0,0.0,0.0,11.652,-0.065,4.798,0.0,0.727,0.0,3.785,-8.928,-2.504,0.0,0.003,-0.452,-0.05,3.121,-0.022,-1.361,11.708,0.0,0.0,0.0,-6.399,-0.062,-1.155,-3.088,-0.163,0.0,2.043,7.85,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31565.0,7516.0,7508.0,0.0,575.0,7249.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-heating-only.xml,35.981,35.981,35.981,35.981,0.0,0.0,0.0,0.0,0.0,0.0,4.986,0.726,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.782,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3353.6,1621.9,3353.6,22.231,0.0,0.0,3.592,3.648,0.513,7.511,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.897,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump.xml,39.632,39.632,39.632,39.632,0.0,0.0,0.0,0.0,0.0,0.0,4.91,0.466,0.0,0.0,3.05,0.914,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.372,0.0,13.301,9.075,0.614,0.0,0.0,0.0,0.0,3268.8,2720.4,3268.8,21.358,16.091,0.0,3.608,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.31,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.029,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.624,48.624,48.624,48.624,0.0,0.0,0.0,0.0,0.0,0.0,12.08,0.691,0.618,0.019,4.225,0.698,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.638,13.847,9.075,0.614,0.0,0.0,0.0,0.0,7101.3,3502.4,7101.3,24.716,17.398,0.0,3.475,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.943,-8.906,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.592,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1_bills.csv b/workflow/tests/base_results/results_workflow_simulations1_bills.csv index 31dc91512a..b831025716 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -230,7 +230,7 @@ base-hvac-furnace-propane-only.xml,1890.8,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0, base-hvac-furnace-wood-only.xml,1615.94,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.48,339.48,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 base-hvac-ground-to-air-heat-pump-cooling-only.xml,1397.25,144.0,1253.25,0.0,1397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-detailed.xml,1580.14,144.0,1436.14,0.0,1580.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-detailed.xml,1623.06,144.0,1479.06,0.0,1623.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 base-hvac-ground-to-air-heat-pump-heating-only.xml,1464.52,144.0,1320.52,0.0,1464.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 base-hvac-ground-to-air-heat-pump.xml,1598.51,144.0,1454.51,0.0,1598.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 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1928.51,144.0,1784.51,0.0,1928.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 From d9d8e7466a5b6ed248facaf83373359b60f0befc Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 14 Nov 2023 16:27:07 -0700 Subject: [PATCH 207/217] Fix typo in docs. [ci skip] --- HPXMLtoOpenStudio/measure.xml | 10 ++-------- docs/source/workflow_inputs.rst | 2 +- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index f0f9462099..eded82160b 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - b9dbee1d-5b7c-4f1f-849a-7292547514cb - 2023-11-14T16:55:09Z + a578fb13-ffeb-49bf-9e8f-92d8b0d69514 + 2023-11-14T23:26:45Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -258,12 +258,6 @@ resource B5BEF270 - - data/g_functions/g-function_library_1.0/zoned_rectangle_5m_v1.0.json - json - resource - 6A4C47AD - data/g_functions/rectangle_5m_v1.0.json json diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index f888dd957c..20f8acbd4f 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -484,7 +484,7 @@ If both Conductivity and extension/Diffusivity not provided, defaults based on S If either Conductivity or extension/Diffusivity not provided, the 1.0/0.0208 relationship is preserved: - Conductivity = extension/Diffusivity / 0.0208 -- extension/Diffusivity = Conductvitiy * 0.0208 +- extension/Diffusivity = Conductivity * 0.0208 .. note:: From f53e30728be2513173088db0adf099edbd2db585 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 21 Nov 2023 07:23:33 -0700 Subject: [PATCH 208/217] Change default pipe diameter from 3/4in to 1-1/4in. --- HPXMLtoOpenStudio/measure.xml | 8 ++++---- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 2 +- HPXMLtoOpenStudio/tests/test_defaults.rb | 20 +++++++++---------- docs/source/workflow_inputs.rst | 2 +- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 42c46f4a5a..c915db0a3e 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 439b78e6-5517-4d64-94bc-b54dfd43184f - 2023-11-21T14:12:38Z + 1514c9e1-0bfb-46e3-a387-64747abce65c + 2023-11-21T14:20:22Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -310,7 +310,7 @@ hpxml_defaults.rb rb resource - 9EB5ED81 + BD06EC17 hpxml_schema/HPXML.xsd @@ -592,7 +592,7 @@ test_defaults.rb rb test - 66B8B3DA + B55E9CFA test_enclosure.rb diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index ee8dec91a8..1a7709bd7e 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1582,7 +1582,7 @@ def self.apply_hvac(runner, hpxml, hpxml_bldg, weather, convert_shared_systems) end if heat_pump.geothermal_loop.pipe_diameter.nil? - heat_pump.geothermal_loop.pipe_diameter = 0.75 # in + heat_pump.geothermal_loop.pipe_diameter = 1.25 # in heat_pump.geothermal_loop.pipe_diameter_isdefaulted = true end diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 0cfae5f282..96f8e99f24 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1760,7 +1760,7 @@ def test_geothermal_loops hpxml_bldg.geothermal_loops[0].bore_config = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults w/ specified loop flow hpxml_bldg.geothermal_loops[0].loop_flow = 1 @@ -1768,7 +1768,7 @@ def test_geothermal_loops hpxml_bldg.geothermal_loops[0].bore_length = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults w/ specified num bore holes hpxml_bldg.geothermal_loops[0].loop_flow = nil @@ -1776,7 +1776,7 @@ def test_geothermal_loops hpxml_bldg.geothermal_loops[0].bore_length = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, 2, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, 2, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults w/ specified bore length hpxml_bldg.geothermal_loops[0].loop_flow = nil @@ -1784,7 +1784,7 @@ def test_geothermal_loops hpxml_bldg.geothermal_loops[0].bore_length = 300 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, 300, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, 300, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults w/ specified loop flow, num bore holes hpxml_bldg.geothermal_loops[0].loop_flow = 2 @@ -1792,7 +1792,7 @@ def test_geothermal_loops hpxml_bldg.geothermal_loops[0].bore_length = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 2, 3, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 2, 3, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults w/ specified num bore holes, bore length hpxml_bldg.geothermal_loops[0].loop_flow = nil @@ -1800,7 +1800,7 @@ def test_geothermal_loops hpxml_bldg.geothermal_loops[0].bore_length = 400 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, 4, 16.4, 400, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, 4, 16.4, 400, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults w/ specified loop flow, bore length hpxml_bldg.geothermal_loops[0].loop_flow = 5 @@ -1808,26 +1808,26 @@ def test_geothermal_loops hpxml_bldg.geothermal_loops[0].bore_length = 450 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 5, nil, 16.4, 450, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 5, nil, 16.4, 450, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults w/ thermally enhanced grout type hpxml_bldg.geothermal_loops[0].grout_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.8, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.8, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults w/ thermally enhanced pipe type hpxml_bldg.geothermal_loops[0].pipe_type = HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.8, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.40, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.8, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.40, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults w/ specified rectangle bore config hpxml_bldg.geothermal_loops[0].num_bore_holes = nil hpxml_bldg.geothermal_loops[0].bore_config = HPXML::GeothermalLoopBorefieldConfigurationRectangle XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.8, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.40, 0.75, 2.0161, HPXML::GeothermalLoopBorefieldConfigurationRectangle) + _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.8, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 0.40, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) end def test_hvac_location diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 20f8acbd4f..de74310b09 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2290,7 +2290,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ ``BoreholesOrTrenches/Diameter`` double in > 0 No 5.0 ``Grout/Type`` or ``Grout/Conductivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No standard Grout type or conductivity [#]_ ``Pipe/Type`` or ``Pipe/Conductivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No standard Pipe type or conductivity [#]_ - ``Pipe/Diameter`` double in See [#]_ No 0.75 + ``Pipe/Diameter`` double in See [#]_ No 1.25 ``Pipe/ShankSpacing`` double in > 0 No See [#]_ Center-to-center distance between two branches of a vertical U-tube ``extension/BorefieldConfiguration`` string See [#]_ No Rectangle ======================================== ================ =========== =============== ======== ============== =============================================== From aac78ef8bc7902416cad7b44215f7ee1d6bee8a9 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Tue, 21 Nov 2023 08:32:42 -0700 Subject: [PATCH 209/217] Update sizing tests since pipe diameter affects bore length. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/tests/test_hvac_sizing.rb | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index c915db0a3e..2766691672 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 1514c9e1-0bfb-46e3-a387-64747abce65c - 2023-11-21T14:20:22Z + e2954b03-99a0-4e2f-a076-a4f1a8bee83f + 2023-11-21T15:32:09Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -622,7 +622,7 @@ test_hvac_sizing.rb rb test - CA23771E + 716C37CA test_lighting.rb diff --git a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb index ceb682c5b5..9af1531e09 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb @@ -477,7 +477,7 @@ def test_ground_loop XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) assert_equal(3, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(776.7 / 3 + 5.0, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) + assert_in_epsilon(688.5 / 3 + 5.0, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) # Bore depth greater than the max -> increase number of boreholes hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') @@ -485,7 +485,7 @@ def test_ground_loop XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) assert_equal(5, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(2151.1 / 5 + 5, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) + assert_in_epsilon(2062.9 / 5 + 5, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) # Bore depth greater than the max -> increase number of boreholes until the max, set depth to the max, and issue warning hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') @@ -501,7 +501,7 @@ def test_ground_loop XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) assert_equal(10, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(3761.5 / 10 + 5, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) + assert_in_epsilon(3187.0 / 10 + 5, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) end def test_g_function_library_linear_interpolation_example From 7161daa586adbc80e5fe4a4f4a06e0332c326ae9 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 21 Nov 2023 16:13:09 +0000 Subject: [PATCH 210/217] Latest results. --- .../base_results/results_workflow_simulations1.csv | 14 +++++++------- .../results_workflow_simulations1_bills.csv | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/workflow/tests/base_results/results_workflow_simulations1.csv b/workflow/tests/base_results/results_workflow_simulations1.csv index 34508695d1..497b57b4c6 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -42,7 +42,7 @@ base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,26.97,26.97,26.97,26.97,0 base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,31.309,31.309,31.309,31.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.758,0.935,9.535,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,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1991.4,3070.5,3070.5,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,27.283,27.283,27.283,27.283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.731,0.935,9.535,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,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1724.1,2162.9,2162.9,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-generator.xml,40.97,34.146,26.175,19.35,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.012,0.548,9.527,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,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1655.4,2001.6,2001.6,3.449,7.707,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.142,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.4,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.234,28.234,28.234,28.234,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.255,0.0,0.0,2.257,2.959,9.527,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,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,0.0,1716.7,1945.0,1945.0,3.449,7.707,0.0,-0.016,2.483,0.0,0.0,0.426,3.954,-2.567,0.0,0.0,-0.012,0.0,-0.391,1.284,0.0,0.681,0.0,0.0,-4.595,-0.776,0.0,-0.011,-1.1,0.0,0.0,-0.042,-1.124,5.636,0.0,0.0,-0.007,0.0,-0.381,-0.513,-1.333,-0.388,0.0,0.0,7.371,1.25,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.228,28.228,28.228,28.228,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.254,0.0,0.0,2.251,2.96,9.527,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,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,0.0,1716.6,1944.1,1944.1,3.449,7.707,0.0,-0.016,2.483,0.0,0.0,0.426,3.954,-2.567,0.0,0.0,-0.012,0.0,-0.391,1.284,0.0,0.681,0.0,0.0,-4.595,-0.776,0.0,-0.011,-1.1,0.0,0.0,-0.042,-1.124,5.636,0.0,0.0,-0.007,0.0,-0.381,-0.513,-1.333,-0.388,0.0,0.0,7.371,1.25,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,31.695,31.695,16.716,16.716,14.979,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.066,0.563,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.0,0.572,0.0,14.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.527,0.0,9.528,9.374,2.261,0.0,0.0,0.0,0.0,1020.3,1539.8,1539.8,3.498,7.734,0.0,-0.017,2.437,0.0,0.0,0.425,3.915,-2.473,0.0,0.0,-0.013,0.0,-0.417,2.025,0.0,0.0,0.0,0.0,-4.705,-0.753,0.0,-0.012,-1.156,0.0,0.0,-0.045,-1.18,5.73,0.0,0.0,-0.007,0.0,-0.407,-0.941,-1.35,0.0,0.0,0.0,7.748,1.273,1354.8,997.6,11171.8,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-laundry-room.xml,29.58,29.58,16.526,16.526,13.054,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.915,0.523,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.0,0.742,0.0,12.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,8.806,9.374,0.568,0.0,0.0,0.0,0.0,1011.4,1528.4,1528.4,3.655,7.615,0.0,-0.017,2.498,0.0,0.0,0.426,3.976,-2.663,0.0,0.0,-0.014,0.0,-0.395,2.062,0.0,0.0,0.0,0.0,-4.478,-0.8,0.0,-0.012,-1.052,0.0,0.0,-0.036,-1.051,5.54,0.0,0.0,-0.009,0.0,-0.386,-0.862,-1.313,0.0,0.0,0.0,6.883,1.227,1354.8,997.6,11171.7,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-mechvent-multiple.xml,50.689,50.689,30.64,30.64,20.049,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.791,0.303,9.565,0.0,0.0,2.026,0.0,0.206,3.73,0.946,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,0.0,7.888,0.0,0.0,0.0,0.0,12.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.308,0.0,5.091,9.374,0.615,0.0,0.0,0.0,0.0,1867.2,2259.4,2259.4,7.584,8.979,0.0,-0.017,2.791,0.0,0.0,0.407,4.196,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.34,0.0,0.0,-6.693,-1.194,0.0,-0.013,-0.143,0.0,0.0,0.06,0.126,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.698,-4.225,0.0,0.0,5.312,0.832,1354.8,997.6,11171.5,3093.4,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 @@ -59,7 +59,7 @@ base-bldgtype-sfa-unit.xml,42.239,42.239,29.828,29.828,12.411,0.0,0.0,0.0,0.0,0. base-dhw-combi-tankless-outside.xml,51.079,51.079,21.423,21.423,29.656,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.363,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.322,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.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,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,52.277,52.277,21.432,21.432,30.845,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.551,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1376.9,1017.3,1376.9,17.068,0.0,0.0,3.743,3.642,0.513,7.499,0.631,10.099,-12.691,0.0,0.0,0.0,8.145,-0.067,5.887,0.0,0.729,0.0,0.0,-8.581,-2.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,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,32.031,32.031,32.031,32.031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.255,0.74,6.76,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,9.074,0.661,2.903,0.0,0.0,0.0,2067.2,2821.5,2821.5,0.0,19.702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.093,-0.469,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.192,-3.046,-0.166,0.0,3.688,8.629,2.036,1354.8,997.6,11181.6,2565.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.426,37.426,37.426,37.426,0.0,0.0,0.0,0.0,0.0,0.0,4.999,0.475,0.0,0.0,3.18,0.96,6.536,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.713,0.0,14.0,9.074,0.613,2.953,0.0,0.0,0.0,3245.1,2373.7,3245.1,21.47,16.472,0.0,3.605,3.642,0.513,7.524,0.63,10.096,-12.683,0.0,0.0,0.0,8.307,-0.064,4.805,0.0,0.729,0.0,3.363,-8.59,-2.499,0.0,-0.01,-0.463,-0.052,2.69,-0.026,-1.403,11.73,0.0,0.0,0.0,-6.345,-0.06,-1.169,-3.129,-0.165,0.0,2.099,8.505,2.01,1354.8,997.6,11185.2,2566.7,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.404,37.404,37.404,37.404,0.0,0.0,0.0,0.0,0.0,0.0,4.986,0.473,0.0,0.0,3.174,0.959,6.537,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.705,0.0,13.999,9.074,0.613,2.952,0.0,0.0,0.0,3239.2,2348.2,3239.2,21.51,16.441,0.0,3.605,3.642,0.513,7.524,0.63,10.096,-12.683,0.0,0.0,0.0,8.307,-0.064,4.805,0.0,0.729,0.0,3.355,-8.59,-2.499,0.0,-0.01,-0.463,-0.052,2.69,-0.026,-1.403,11.73,0.0,0.0,0.0,-6.345,-0.06,-1.169,-3.129,-0.165,0.0,2.098,8.505,2.01,1354.8,997.6,11185.4,2566.7,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-hpwh.xml,56.35,56.35,29.683,29.683,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,4.46,0.854,2.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,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.972,0.0,14.893,9.085,1.809,3.024,0.0,0.0,0.0,1884.0,3131.6,3131.6,25.892,19.515,0.0,3.522,3.634,0.511,7.504,0.628,10.066,-12.724,0.0,0.0,0.0,8.331,-0.052,4.794,0.0,0.727,0.0,5.64,-5.456,-2.509,0.0,-0.019,-0.422,-0.046,2.83,-0.015,-1.277,11.689,0.0,0.0,0.0,-6.115,-0.048,-1.121,-2.944,-0.156,0.0,3.19,7.659,2.001,1354.7,997.5,11162.8,2561.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-tankless.xml,33.66,33.66,33.66,33.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.458,1.184,6.742,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.08,0.0,2.936,0.0,0.0,0.0,1932.8,3243.5,3243.5,0.0,19.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.068,-0.464,-0.051,2.687,-0.03,-1.43,11.85,0.0,0.0,0.0,-6.908,-0.064,-1.186,-3.017,-0.165,0.0,3.23,8.361,2.036,1354.8,997.6,11131.9,2554.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-var-speed.xml,31.142,31.142,31.142,31.142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.826,0.295,6.744,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.992,9.074,0.661,2.927,0.0,0.0,0.0,2066.9,2630.1,2630.1,0.0,19.354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.134,-0.469,-0.052,2.673,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.915,-0.064,-1.192,-3.051,-0.166,0.0,4.519,8.636,2.036,1354.8,997.6,11184.2,2566.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -229,10 +229,10 @@ base-hvac-furnace-oil-only.xml,53.489,53.489,30.857,30.857,0.0,22.632,0.0,0.0,0. base-hvac-furnace-propane-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,58.355,58.355,36.777,36.777,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.156,0.942,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,16.339,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2105.4,2603.4,2603.4,16.604,11.921,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.148,34.148,34.148,34.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.993,0.818,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.009,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2821.6,2821.6,0.0,15.934,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.027,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.077,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.165,34.165,34.165,34.165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.009,0.819,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.01,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2810.0,2810.0,0.0,15.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.027,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.079,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-detailed.xml,40.301,40.301,40.301,40.301,0.0,0.0,0.0,0.0,0.0,0.0,5.703,0.53,0.0,0.0,2.854,0.921,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,13.766,9.075,0.615,0.0,0.0,0.0,0.0,3273.8,2729.7,3273.8,22.592,15.972,0.0,3.554,3.603,0.507,7.842,0.622,9.991,-12.705,0.0,0.0,0.0,11.652,-0.065,4.798,0.0,0.727,0.0,3.785,-8.928,-2.504,0.0,0.003,-0.452,-0.05,3.121,-0.022,-1.361,11.708,0.0,0.0,0.0,-6.399,-0.062,-1.155,-3.088,-0.163,0.0,2.043,7.85,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31565.0,7516.0,7508.0,0.0,575.0,7249.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,35.981,35.981,35.981,35.981,0.0,0.0,0.0,0.0,0.0,0.0,4.986,0.726,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.782,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3353.6,1621.9,3353.6,22.231,0.0,0.0,3.592,3.648,0.513,7.511,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.897,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.632,39.632,39.632,39.632,0.0,0.0,0.0,0.0,0.0,0.0,4.91,0.466,0.0,0.0,3.05,0.914,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.372,0.0,13.301,9.075,0.614,0.0,0.0,0.0,0.0,3268.8,2720.4,3268.8,21.358,16.091,0.0,3.608,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.31,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.029,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,35.976,35.976,35.976,35.976,0.0,0.0,0.0,0.0,0.0,0.0,4.982,0.725,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3362.0,1621.9,3362.0,22.178,0.0,0.0,3.592,3.648,0.513,7.511,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.895,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.61,39.61,39.61,39.61,0.0,0.0,0.0,0.0,0.0,0.0,4.898,0.464,0.0,0.0,3.043,0.913,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,0.0,13.3,9.075,0.614,0.0,0.0,0.0,0.0,3262.5,2703.7,3262.5,21.397,16.061,0.0,3.608,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.302,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.028,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.624,48.624,48.624,48.624,0.0,0.0,0.0,0.0,0.0,0.0,12.08,0.691,0.618,0.019,4.225,0.698,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.638,13.847,9.075,0.614,0.0,0.0,0.0,0.0,7101.3,3502.4,7101.3,24.716,17.398,0.0,3.475,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.943,-8.906,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.592,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.109,44.109,44.109,44.109,0.0,0.0,0.0,0.0,0.0,0.0,9.216,0.568,0.555,0.017,2.885,0.576,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.109,0.573,14.194,9.075,0.614,0.0,0.0,0.0,0.0,7082.4,3118.0,7082.4,24.712,18.774,0.0,3.428,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,8.186,-8.906,-2.499,0.0,-0.045,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.944,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,45.743,45.743,45.743,45.743,0.0,0.0,0.0,0.0,0.0,0.0,10.976,0.524,0.312,0.01,3.456,0.173,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.437,0.321,15.438,9.075,0.614,0.0,0.0,0.0,0.0,7073.3,4237.7,7073.3,24.71,18.727,0.0,3.34,3.648,0.513,7.536,0.631,10.103,-12.695,0.0,0.0,0.0,8.327,-0.061,4.807,0.0,0.729,0.0,10.604,-8.908,-2.5,0.0,-0.101,-0.462,-0.052,2.688,-0.026,-1.408,11.718,0.0,0.0,0.0,-6.341,-0.057,-1.171,-3.111,-0.165,0.0,4.252,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -241,7 +241,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.079,60.079,36.64 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.565,58.565,35.126,35.126,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.902,0.65,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.757,9.075,0.614,0.0,0.0,0.0,3.0,2098.9,3203.2,3203.2,24.074,18.898,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.116,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.109,-0.166,0.0,4.538,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,57.797,57.797,34.358,34.358,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.404,0.381,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,16.486,9.075,0.614,0.0,0.0,0.0,0.0,2098.9,3154.3,3154.3,24.074,19.166,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.157,-0.464,-0.052,2.687,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.348,-0.059,-1.172,-3.116,-0.166,0.0,5.323,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,54.843,54.843,30.726,30.726,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.643,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2091.6,1623.6,2091.6,25.358,0.0,0.0,3.488,3.648,0.513,7.514,0.632,10.112,-12.683,0.0,0.0,0.0,8.148,-0.067,4.809,0.0,0.73,0.0,6.844,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.672,41.672,41.672,41.672,0.0,0.0,0.0,0.0,0.0,0.0,6.352,0.476,0.0,0.0,3.682,0.87,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.352,0.0,13.86,9.075,0.614,0.0,0.0,0.0,0.0,3507.6,2937.9,3507.6,22.424,17.272,0.0,3.575,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.312,-0.064,4.807,0.0,0.729,0.0,4.317,-8.905,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.106,-0.166,0.0,2.602,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.642,41.642,41.642,41.642,0.0,0.0,0.0,0.0,0.0,0.0,6.341,0.475,0.0,0.0,3.666,0.868,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.346,0.0,13.857,9.075,0.614,0.0,0.0,0.0,0.0,3507.5,2906.8,3507.5,22.473,17.233,0.0,3.575,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.312,-0.064,4.807,0.0,0.729,0.0,4.311,-8.905,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.106,-0.166,0.0,2.599,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.87,33.87,33.87,33.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.336,0.198,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.742,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2953.2,2953.2,0.0,14.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.018,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.021,-0.167,0.0,1.83,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,41.386,41.386,41.386,41.386,0.0,0.0,0.0,0.0,0.0,0.0,8.076,0.201,0.121,0.005,2.597,0.095,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.44,0.126,12.616,9.075,0.614,0.0,0.0,0.0,0.0,4873.7,2791.1,4873.7,19.228,14.111,0.0,3.607,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,3.387,-8.906,-2.499,0.0,0.019,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.103,-0.166,0.0,1.346,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,33.207,33.207,33.207,33.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8,0.07,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.473,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2570.0,2570.0,0.0,13.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.005,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.019,-0.167,0.0,1.548,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -258,7 +258,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,48.473,48.473,36.218,36 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,38.968,38.968,38.968,38.968,0.0,0.0,0.0,0.0,0.0,0.0,6.705,0.036,0.0,0.0,1.932,0.003,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.293,9.075,0.614,0.0,0.0,0.0,0.0,3979.6,2668.3,3979.6,16.439,11.917,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,38.212,38.212,38.212,38.212,0.0,0.0,0.0,0.0,0.0,0.0,5.664,0.051,0.0,0.0,2.199,0.006,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3660.8,2367.3,3660.8,16.439,11.917,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,38.212,38.212,38.212,38.212,0.0,0.0,0.0,0.0,0.0,0.0,5.664,0.051,0.0,0.0,2.199,0.006,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3660.8,2367.3,3660.8,16.439,11.917,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.066,66.066,51.945,51.945,7.001,3.521,3.599,0.0,0.0,0.0,13.455,0.838,0.212,0.009,6.581,0.558,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.599,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.002,0.221,19.498,9.075,0.614,0.0,0.0,0.0,15.0,6457.5,4033.0,6457.5,37.522,22.494,0.0,3.43,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.887,0.0,0.728,0.0,15.028,-8.914,-2.501,0.0,-0.136,-0.456,-0.051,2.714,-0.024,-1.381,11.717,0.0,0.0,0.0,-6.301,-0.058,-1.436,-3.09,-0.164,0.0,8.415,7.863,2.008,1354.8,997.6,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,36744.0,13104.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23818.0,10360.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.036,66.036,51.917,51.917,7.0,3.52,3.598,0.0,0.0,0.0,13.453,0.837,0.212,0.009,6.557,0.557,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.52,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,31.992,0.221,19.493,9.075,0.614,0.0,0.0,0.0,14.0,6423.2,4027.7,6423.2,37.372,22.552,0.0,3.43,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.887,0.0,0.728,0.0,15.018,-8.914,-2.501,0.0,-0.136,-0.456,-0.051,2.714,-0.024,-1.381,11.717,0.0,0.0,0.0,-6.301,-0.058,-1.436,-3.09,-0.164,0.0,8.41,7.863,2.008,1354.8,997.6,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,36744.0,13104.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23818.0,10360.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,19.67,19.67,19.67,19.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,4.539,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,0.0,0.0,4.497,0.33,0.0,0.0,0.0,0.0,1280.4,1085.1,1280.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,1354.8,997.6,8369.8,2062.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1252.0,0.0,452.0,800.0 base-hvac-ptac-with-heating-electricity.xml,50.851,50.851,50.851,50.851,0.0,0.0,0.0,0.0,0.0,0.0,16.19,0.0,0.0,0.0,4.369,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,5913.9,2889.3,5913.9,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-natural-gas.xml,54.899,54.899,34.661,34.661,20.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.369,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2019.7,2889.3,2889.3,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1_bills.csv b/workflow/tests/base_results/results_workflow_simulations1_bills.csv index b831025716..942d7256ae 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -42,7 +42,7 @@ base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,1133.79,144.0,989.79,0.0, base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1293.07,144.0,1149.07,0.0,1293.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,1145.29,144.0,1001.29,0.0,1145.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-generator.xml,1639.83,144.0,960.62,0.0,1104.62,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1180.22,144.0,1036.22,0.0,1180.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 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1179.97,144.0,1035.97,0.0,1179.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1060.16,144.0,613.48,0.0,757.48,144.0,158.68,302.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-laundry-room.xml,1032.79,144.0,606.5,0.0,750.5,144.0,138.29,282.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1624.9,144.0,1124.51,0.0,1268.51,144.0,212.39,356.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 @@ -59,7 +59,7 @@ base-bldgtype-sfa-unit.xml,1514.18,144.0,1094.71,0.0,1238.71,144.0,131.47,275.47 base-dhw-combi-tankless-outside.xml,1388.39,144.0,786.23,0.0,930.23,144.0,314.16,458.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,1401.33,144.0,786.58,0.0,930.58,144.0,326.75,470.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,1319.56,144.0,1175.56,0.0,1319.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 -base-dhw-desuperheater-gshp.xml,1517.54,144.0,1373.54,0.0,1517.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 +base-dhw-desuperheater-gshp.xml,1516.74,144.0,1372.74,0.0,1516.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-hpwh.xml,1659.88,144.0,1089.39,0.0,1233.39,144.0,282.49,426.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-tankless.xml,1379.35,144.0,1235.35,0.0,1379.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-var-speed.xml,1286.91,144.0,1142.91,0.0,1286.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 @@ -229,10 +229,10 @@ base-hvac-furnace-oil-only.xml,2068.01,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1890.8,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,614.34,614.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,1615.94,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.48,339.48,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 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1397.25,144.0,1253.25,0.0,1397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1397.87,144.0,1253.87,0.0,1397.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 base-hvac-ground-to-air-heat-pump-detailed.xml,1623.06,144.0,1479.06,0.0,1623.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 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1464.52,144.0,1320.52,0.0,1464.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 -base-hvac-ground-to-air-heat-pump.xml,1598.51,144.0,1454.51,0.0,1598.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 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1464.34,144.0,1320.34,0.0,1464.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,1597.72,144.0,1453.72,0.0,1597.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1928.51,144.0,1784.51,0.0,1928.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 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1762.82,144.0,1618.82,0.0,1762.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1822.8,144.0,1678.8,0.0,1822.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 @@ -241,7 +241,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1881.0,144.0,1344.7 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1825.44,144.0,1289.14,0.0,1433.14,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1797.25,144.0,1260.95,0.0,1404.95,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,1671.13,144.0,1127.65,0.0,1271.65,144.0,255.48,399.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,1673.37,144.0,1529.37,0.0,1673.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 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1672.29,144.0,1528.29,0.0,1672.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1387.05,144.0,1243.05,0.0,1387.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1662.89,144.0,1518.89,0.0,1662.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 base-hvac-mini-split-air-conditioner-only-ducted.xml,1362.71,144.0,1218.71,0.0,1362.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 @@ -258,7 +258,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1901.83,144.0,1329.22,0 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1574.13,144.0,1430.13,0.0,1574.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1546.39,144.0,1402.39,0.0,1546.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,1546.39,144.0,1402.39,0.0,1546.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,2489.4,144.0,1906.4,0.0,2050.4,144.0,74.17,218.17,0.0,123.13,123.13,0.0,97.7,97.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,2488.31,144.0,1905.37,0.0,2049.37,144.0,74.15,218.15,0.0,123.11,123.11,0.0,97.68,97.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,2513.83,144.0,2369.83,0.0,2513.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-electricity.xml,2010.26,144.0,1866.26,0.0,2010.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 base-hvac-ptac-with-heating-natural-gas.xml,1774.46,144.0,1272.07,0.0,1416.07,144.0,214.39,358.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 From 2670d42c329463b332b3df8484b72787fabb0e42 Mon Sep 17 00:00:00 2001 From: Joe Robertson Date: Wed, 6 Dec 2023 13:52:37 -0700 Subject: [PATCH 211/217] Reference valid configs in build measure. --- BuildResidentialHPXML/measure.rb | 11 ++++------- BuildResidentialHPXML/measure.xml | 6 +++--- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/tests/test_defaults.rb | 24 ++++++++++++------------ 4 files changed, 22 insertions(+), 25 deletions(-) diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index 485e7cc57a..214c046a9c 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -1391,13 +1391,10 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument args << arg geothermal_loop_borefield_configuration_choices = OpenStudio::StringVector.new - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationRectangle - # geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationZonedRectangle - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationOpenRectangle - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationC - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationL - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationU - geothermal_loop_borefield_configuration_choices << HPXML::GeothermalLoopBorefieldConfigurationLopsidedU + valid_bore_configs = HVACSizing.valid_bore_configs + valid_bore_configs.keys.each do |valid_bore_config| + geothermal_loop_borefield_configuration_choices << valid_bore_config + end arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('geothermal_loop_borefield_configuration', geothermal_loop_borefield_configuration_choices, false) arg.setDisplayName('Geothermal Loop: Borefield Configuration') diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index d2f530906c..bb655822e3 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 93c8ea6f-1706-4b2e-8dc9-2b89fd107041 - 2023-11-13T21:18:27Z + 7443a9ed-90c2-4a14-9625-dce0ac6c764e + 2023-12-06T20:52:07Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -7016,7 +7016,7 @@ measure.rb rb script - 4B775B63 + 40D6AE5B geometry.rb diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 79a462387f..9db30af383 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 578c058c-bac6-464a-ab07-6fa36adf6b5d - 2023-12-06T00:21:04Z + ea21a172-8b62-43b6-946b-cd95d6cffb54 + 2023-12-06T20:52:10Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -592,7 +592,7 @@ test_defaults.rb rb test - B55E9CFA + 54C9ADCB test_enclosure.rb diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 96f8e99f24..5bbf5bba2c 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1746,18 +1746,18 @@ def test_geothermal_loops _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, 1, 2, 3, 100, 5, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 6, HPXML::GeothermalLoopGroutOrPipeTypeThermallyEnhanced, 7, 1.0, 9, HPXML::GeothermalLoopBorefieldConfigurationRectangle) # Test defaults - hpxml_bldg.geothermal_loops[0].loop_flow = nil - hpxml_bldg.geothermal_loops[0].num_bore_holes = nil - hpxml_bldg.geothermal_loops[0].bore_spacing = nil - hpxml_bldg.geothermal_loops[0].bore_length = nil - hpxml_bldg.geothermal_loops[0].bore_diameter = nil - hpxml_bldg.geothermal_loops[0].grout_type = nil - hpxml_bldg.geothermal_loops[0].grout_conductivity = nil - hpxml_bldg.geothermal_loops[0].pipe_type = nil - hpxml_bldg.geothermal_loops[0].pipe_conductivity = nil - hpxml_bldg.geothermal_loops[0].pipe_diameter = nil - hpxml_bldg.geothermal_loops[0].shank_spacing = nil - hpxml_bldg.geothermal_loops[0].bore_config = nil + hpxml_bldg.geothermal_loops[0].loop_flow = nil # autosized + hpxml_bldg.geothermal_loops[0].num_bore_holes = nil # autosized + hpxml_bldg.geothermal_loops[0].bore_spacing = nil # 16.4 + hpxml_bldg.geothermal_loops[0].bore_length = nil # autosized + hpxml_bldg.geothermal_loops[0].bore_diameter = nil # 5.0 + hpxml_bldg.geothermal_loops[0].grout_type = nil # standard + hpxml_bldg.geothermal_loops[0].grout_conductivity = nil # 0.4 + hpxml_bldg.geothermal_loops[0].pipe_type = nil # standard + hpxml_bldg.geothermal_loops[0].pipe_conductivity = nil # 0.23 + hpxml_bldg.geothermal_loops[0].pipe_diameter = nil # 1.25 + hpxml_bldg.geothermal_loops[0].shank_spacing = nil # 2.6261 + hpxml_bldg.geothermal_loops[0].bore_config = nil # rectangle XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() _test_default_geothermal_loop_values(default_hpxml_bldg.geothermal_loops[0], HPXML::GeothermalLoopLoopConfigurationVertical, nil, nil, 16.4, nil, 5.0, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.4, HPXML::GeothermalLoopGroutOrPipeTypeStandard, 0.23, 1.25, 2.6261, HPXML::GeothermalLoopBorefieldConfigurationRectangle) From 2d757197ed82499e80e8bf5887e7c6e6e8eb11cb Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 8 Dec 2023 11:31:37 -0700 Subject: [PATCH 212/217] Minor cleanup. Prevent multiple GSHPs from being connected to a geothermal loop and add test. --- HPXMLtoOpenStudio/measure.xml | 14 +++++----- .../resources/data/g_functions/README.md | 2 ++ HPXMLtoOpenStudio/resources/hpxml.rb | 8 +++--- HPXMLtoOpenStudio/tests/test_defaults.rb | 2 +- HPXMLtoOpenStudio/tests/test_hvac.rb | 2 +- HPXMLtoOpenStudio/tests/test_validation.rb | 28 ++++++++++++++----- workflow/hpxml_inputs.json | 2 +- ...ir-heat-pump-detailed-geothermal-loop.xml} | 0 8 files changed, 37 insertions(+), 21 deletions(-) rename workflow/sample_files/{base-hvac-ground-to-air-heat-pump-detailed.xml => base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml} (100%) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index b67a328728..10e49c77e7 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 568347a8-9fb2-4424-b7e2-b08d31e87cf5 - 2023-12-08T16:23:24Z + a7acda08-226c-404c-b64e-d9197023bebc + 2023-12-08T18:19:27Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -250,7 +250,7 @@ data/g_functions/README.md md resource - 3A6546AB + 48D1301C data/g_functions/U_configurations_5m_v1.0.json @@ -304,7 +304,7 @@ hpxml.rb rb resource - E5CF2A9E + 30B5878C hpxml_defaults.rb @@ -592,7 +592,7 @@ test_defaults.rb rb test - 54C9ADCB + F90138B1 test_enclosure.rb @@ -616,7 +616,7 @@ test_hvac.rb rb test - 4586E821 + 50108087 test_hvac_sizing.rb @@ -664,7 +664,7 @@ test_validation.rb rb test - 60DC11BB + CA056491 test_water_heater.rb diff --git a/HPXMLtoOpenStudio/resources/data/g_functions/README.md b/HPXMLtoOpenStudio/resources/data/g_functions/README.md index ad523285f7..471b7bfe53 100644 --- a/HPXMLtoOpenStudio/resources/data/g_functions/README.md +++ b/HPXMLtoOpenStudio/resources/data/g_functions/README.md @@ -1,2 +1,4 @@ G-Function data obtained from G-Function Library for Modeling Vertical Bore Ground Heat Exchanger (https://gdr.openei.org/submissions/1325) Specifically, the contents of https://gdr.openei.org/files/1325/g-function_library_1.0.zip + +JSON files generated by running `openstudio tasks.rb download_g_functions` diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 32bb0ccc21..bd6eba46d4 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -166,8 +166,6 @@ class HPXML < Object GeothermalLoopLoopConfigurationVertical = 'vertical' GeothermalLoopGroutOrPipeTypeStandard = 'standard' GeothermalLoopGroutOrPipeTypeThermallyEnhanced = 'thermally enhanced' - GeothermalLoopPipeTypeStandard = 'standard' - GeothermalLoopPipeTypeThermallyEnhanced = 'thermally enhanced' HeaterTypeElectricResistance = 'electric resistance' HeaterTypeGas = 'gas fired' HeaterTypeHeatPump = 'heat pump' @@ -4436,7 +4434,7 @@ class GeothermalLoop < BaseElement :pipe_conductivity, :pipe_diameter, :shank_spacing] attr_accessor(*ATTRS) - def heat_pumps + def heat_pump list = [] @parent_object.heat_pumps.each do |heat_pump| next if heat_pump.geothermal_loop_idref.nil? @@ -4447,6 +4445,8 @@ def heat_pumps if list.size == 0 fail "Geothermal loop '#{@id}' found but no heat pump attached to it." + elsif list.size > 1 + fail "Multiple heat pumps found attached to geothermal loop '#{@id}'." end end @@ -4461,7 +4461,7 @@ def delete def check_for_errors errors = [] - begin; heat_pumps; rescue StandardError => e; errors << e.message; end + begin; heat_pump; rescue StandardError => e; errors << e.message; end return errors end diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 5bbf5bba2c..af4fc77561 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1727,7 +1727,7 @@ def test_ground_source_heat_pumps def test_geothermal_loops # Test inputs not overridden by defaults - hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') hpxml_bldg.geothermal_loops[0].loop_configuration = HPXML::GeothermalLoopLoopConfigurationVertical hpxml_bldg.geothermal_loops[0].loop_flow = 1 hpxml_bldg.geothermal_loops[0].num_bore_holes = 2 diff --git a/HPXMLtoOpenStudio/tests/test_hvac.rb b/HPXMLtoOpenStudio/tests/test_hvac.rb index fa4648b85d..b832fd166e 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -800,7 +800,7 @@ def test_ground_to_air_heat_pump def test_geothermal_loop args_hash = {} - args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-ground-to-air-heat-pump-detailed.xml')) + args_hash['hpxml_path'] = File.absolute_path(File.join(@sample_files_path, 'base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml')) model, _hpxml, hpxml_bldg = _test_measure(args_hash) # Get HPXML values diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 68d6eb1248..692e3e2446 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -392,16 +392,16 @@ def test_schema_schematron_error_messages hpxml_bldg.heat_pumps[-1].primary_heating_system = false hpxml_bldg.heat_pumps[-1].primary_cooling_system = false elsif ['hvac-gshp-invalid-bore-config'].include? error_case - hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') hpxml_bldg.geothermal_loops[0].bore_config = 'Invalid' elsif ['hvac-gshp-invalid-bore-depth-low'].include? error_case - hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') hpxml_bldg.geothermal_loops[0].bore_length = 78 elsif ['hvac-gshp-invalid-bore-depth-high'].include? error_case - hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') hpxml_bldg.geothermal_loops[0].bore_length = 501 elsif ['hvac-gshp-autosized-count-not-rectangle'].include? error_case - hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') hpxml_bldg.geothermal_loops[0].num_bore_holes = nil puts hpxml_bldg.geothermal_loops elsif ['hvac-location-heating-system'].include? error_case @@ -932,6 +932,7 @@ def test_ruby_error_messages 'emissions-wrong-columns' => ['Emissions File has too few columns. Cannot find column number'], 'emissions-wrong-filename' => ["Emissions File file path 'invalid-wrong-filename.csv' does not exist."], 'emissions-wrong-rows' => ['Emissions File has invalid number of rows'], + 'geothermal-loop-multiple-attached-hps' => ["Multiple heat pumps found attached to geothermal loop 'GeothermalLoop1'."], 'heat-pump-backup-system-load-fraction' => ['Heat pump backup system cannot have a fraction heat load served specified.'], 'hvac-cooling-detailed-performance-incomplete-pair' => ['Cooling detailed performance data for outdoor temperature = 82.0 is incomplete; there must be exactly one minimum and one maximum capacity datapoint.', 'Cooling detailed performance data for outdoor temperature = 81.0 is incomplete; there must be exactly one minimum and one maximum capacity datapoint.'], @@ -1080,6 +1081,19 @@ def test_ruby_error_messages csv_data = CSV.read(File.join(File.dirname(hpxml.hpxml_path), scenario.elec_schedule_filepath)) File.write(@tmp_csv_path, csv_data[0..-2].map(&:to_csv).join) hpxml.header.emissions_scenarios[1].elec_schedule_filepath = @tmp_csv_path + elsif ['geothermal-loop-multiple-attached-hps'].include? error_case + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') + hpxml_bldg.heat_pumps[0].fraction_cool_load_served = 0.5 + hpxml_bldg.heat_pumps[0].fraction_heat_load_served = 0.5 + hpxml_bldg.heat_pumps << hpxml_bldg.heat_pumps[0].dup + hpxml_bldg.heat_pumps[1].id = "HeatPump#{hpxml_bldg.heat_pumps.size}" + hpxml_bldg.heat_pumps[0].primary_heating_system = false + hpxml_bldg.heat_pumps[0].primary_cooling_system = false + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeDSE, + annual_cooling_dse: 1.0, + annual_heating_dse: 1.0) + hpxml_bldg.heat_pumps[1].distribution_system_idref = hpxml_bldg.hvac_distributions[1].id elsif ['heat-pump-backup-system-load-fraction'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml') hpxml_bldg.heating_systems[0].fraction_heat_load_served = 0.5 @@ -1125,7 +1139,7 @@ def test_ruby_error_messages hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') hpxml_bldg.site.ground_conductivity = 0.1 elsif ['hvac-gshp-invalid-num-bore-holes'].include? error_case - hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') hpxml_bldg.geothermal_loops[0].num_bore_holes = 5 elsif ['hvac-gshp-invalid-num-bore-holes-autosized'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') @@ -1245,7 +1259,7 @@ def test_ruby_error_messages hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.windows[0].area = 1000 elsif ['orphaned-geothermal-loop'].include? error_case - hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') hpxml_bldg.heat_pumps[0].geothermal_loop_idref = nil elsif ['orphaned-hvac-distribution'].include? error_case hpxml, hpxml_bldg = _create_hpxml('base-hvac-furnace-gas-room-ac.xml') @@ -1358,7 +1372,7 @@ def test_ruby_error_messages hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.doors[0].wall_idref = 'foobar' elsif ['unattached-gshp'].include? error_case - hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed.xml') + hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml') hpxml_bldg.heat_pumps[0].geothermal_loop_idref = 'foobar' hpxml_bldg.geothermal_loops[0].delete elsif ['unattached-hvac-distribution'].include? error_case diff --git a/workflow/hpxml_inputs.json b/workflow/hpxml_inputs.json index cde0ec88e2..5d05530ef0 100644 --- a/workflow/hpxml_inputs.json +++ b/workflow/hpxml_inputs.json @@ -2016,7 +2016,7 @@ "heat_pump_backup_heating_efficiency": 1, "heat_pump_backup_heating_capacity": 36000 }, - "sample_files/base-hvac-ground-to-air-heat-pump-detailed.xml": { + "sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "geothermal_loop_configuration": "vertical", "geothermal_loop_borefield_configuration": "Lopsided U", diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml similarity index 100% rename from workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed.xml rename to workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml From 12331d4817b121d2352ce4f3629ceb9fea973752 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 8 Dec 2023 12:25:47 -0700 Subject: [PATCH 213/217] Fix CI error --- tasks.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.rb b/tasks.rb index b7b2f356df..197af92e2b 100644 --- a/tasks.rb +++ b/tasks.rb @@ -1936,7 +1936,7 @@ def apply_hpxml_modification(hpxml_file, hpxml) hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = nil hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil end - if hpxml_file.include? 'base-hvac-ground-to-air-heat-pump-detailed.xml' + if hpxml_file.include? 'base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml' hpxml_bldg.geothermal_loops[0].shank_spacing = 2.5 end From 3b4861279a6069ecbd31b484128b7ea644d1c233 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 8 Dec 2023 20:06:32 +0000 Subject: [PATCH 214/217] Latest results. --- workflow/tests/base_results/results_sizing.csv | 12 ++++++------ .../base_results/results_workflow_simulations1.csv | 2 +- .../results_workflow_simulations1_bills.csv | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/workflow/tests/base_results/results_sizing.csv b/workflow/tests/base_results/results_sizing.csv index 4599087682..07947f3b72 100644 --- a/workflow/tests/base_results/results_sizing.csv +++ b/workflow/tests/base_results/results_sizing.csv @@ -95,9 +95,9 @@ denver-hvac-autosize-furnace-x3-dse.xml,23876.0,15265.0,0.0,527.0,635.0 denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,24224.0,0.0,0.0,912.0 denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,18787.0,0.0,0.0,708.0 denver-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,24224.0,0.0,0.0,912.0 -denver-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-ACCA.xml,31565.0,31565.0,31565.0,996.0,1189.0 -denver-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-HERS.xml,31565.0,31565.0,31565.0,996.0,1313.0 -denver-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-MaxLoad.xml,38768.0,38768.0,31565.0,1223.0,1612.0 +denver-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-ACCA.xml,31565.0,31565.0,31565.0,996.0,1189.0 +denver-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-HERS.xml,31565.0,31565.0,31565.0,996.0,1313.0 +denver-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-MaxLoad.xml,38768.0,38768.0,31565.0,1223.0,1612.0 denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,31147.0,0.0,31147.0,982.0,0.0 denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,31147.0,0.0,31147.0,982.0,0.0 denver-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,31147.0,0.0,31147.0,982.0,0.0 @@ -279,9 +279,9 @@ houston-hvac-autosize-furnace-x3-dse.xml,14219.0,18120.0,0.0,260.0,753.0 houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-ACCA.xml,0.0,32400.0,0.0,0.0,972.0 houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-HERS.xml,0.0,25329.0,0.0,0.0,760.0 houston-hvac-autosize-ground-to-air-heat-pump-cooling-only-sizing-methodology-MaxLoad.xml,0.0,32400.0,0.0,0.0,972.0 -houston-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-ACCA.xml,32400.0,32400.0,20288.0,844.0,972.0 -houston-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-HERS.xml,25329.0,25329.0,20288.0,660.0,760.0 -houston-hvac-autosize-ground-to-air-heat-pump-detailed-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20288.0,844.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-ACCA.xml,32400.0,32400.0,20288.0,844.0,972.0 +houston-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-HERS.xml,25329.0,25329.0,20288.0,660.0,760.0 +houston-hvac-autosize-ground-to-air-heat-pump-detailed-geothermal-loop-sizing-methodology-MaxLoad.xml,32400.0,32400.0,20288.0,844.0,972.0 houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-ACCA.xml,20038.0,0.0,20038.0,522.0,0.0 houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-HERS.xml,20038.0,0.0,20038.0,522.0,0.0 houston-hvac-autosize-ground-to-air-heat-pump-heating-only-sizing-methodology-MaxLoad.xml,20038.0,0.0,20038.0,522.0,0.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1.csv b/workflow/tests/base_results/results_workflow_simulations1.csv index 497b57b4c6..e94a70d07c 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -230,7 +230,7 @@ base-hvac-furnace-propane-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,22.632,0. base-hvac-furnace-wood-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,58.355,58.355,36.777,36.777,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.156,0.942,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,16.339,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2105.4,2603.4,2603.4,16.604,11.921,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.165,34.165,34.165,34.165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.009,0.819,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.01,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2810.0,2810.0,0.0,15.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.027,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.079,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-detailed.xml,40.301,40.301,40.301,40.301,0.0,0.0,0.0,0.0,0.0,0.0,5.703,0.53,0.0,0.0,2.854,0.921,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,13.766,9.075,0.615,0.0,0.0,0.0,0.0,3273.8,2729.7,3273.8,22.592,15.972,0.0,3.554,3.603,0.507,7.842,0.622,9.991,-12.705,0.0,0.0,0.0,11.652,-0.065,4.798,0.0,0.727,0.0,3.785,-8.928,-2.504,0.0,0.003,-0.452,-0.05,3.121,-0.022,-1.361,11.708,0.0,0.0,0.0,-6.399,-0.062,-1.155,-3.088,-0.163,0.0,2.043,7.85,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31565.0,7516.0,7508.0,0.0,575.0,7249.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml,40.301,40.301,40.301,40.301,0.0,0.0,0.0,0.0,0.0,0.0,5.703,0.53,0.0,0.0,2.854,0.921,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,13.766,9.075,0.615,0.0,0.0,0.0,0.0,3273.8,2729.7,3273.8,22.592,15.972,0.0,3.554,3.603,0.507,7.842,0.622,9.991,-12.705,0.0,0.0,0.0,11.652,-0.065,4.798,0.0,0.727,0.0,3.785,-8.928,-2.504,0.0,0.003,-0.452,-0.05,3.121,-0.022,-1.361,11.708,0.0,0.0,0.0,-6.399,-0.062,-1.155,-3.088,-0.163,0.0,2.043,7.85,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31565.0,7516.0,7508.0,0.0,575.0,7249.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-heating-only.xml,35.976,35.976,35.976,35.976,0.0,0.0,0.0,0.0,0.0,0.0,4.982,0.725,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3362.0,1621.9,3362.0,22.178,0.0,0.0,3.592,3.648,0.513,7.511,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.895,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump.xml,39.61,39.61,39.61,39.61,0.0,0.0,0.0,0.0,0.0,0.0,4.898,0.464,0.0,0.0,3.043,0.913,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,0.0,13.3,9.075,0.614,0.0,0.0,0.0,0.0,3262.5,2703.7,3262.5,21.397,16.061,0.0,3.608,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.302,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.028,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.624,48.624,48.624,48.624,0.0,0.0,0.0,0.0,0.0,0.0,12.08,0.691,0.618,0.019,4.225,0.698,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.638,13.847,9.075,0.614,0.0,0.0,0.0,0.0,7101.3,3502.4,7101.3,24.716,17.398,0.0,3.475,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.943,-8.906,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.592,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1_bills.csv b/workflow/tests/base_results/results_workflow_simulations1_bills.csv index 942d7256ae..f3ca8f92a3 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -230,7 +230,7 @@ base-hvac-furnace-propane-only.xml,1890.8,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0, base-hvac-furnace-wood-only.xml,1615.94,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.48,339.48,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 base-hvac-ground-to-air-heat-pump-cooling-only.xml,1397.87,144.0,1253.87,0.0,1397.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 -base-hvac-ground-to-air-heat-pump-detailed.xml,1623.06,144.0,1479.06,0.0,1623.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 +base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml,1623.06,144.0,1479.06,0.0,1623.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 base-hvac-ground-to-air-heat-pump-heating-only.xml,1464.34,144.0,1320.34,0.0,1464.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump.xml,1597.72,144.0,1453.72,0.0,1597.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1928.51,144.0,1784.51,0.0,1928.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 From bee16722c222af2aa7f984b24eff135c47dce659 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 8 Dec 2023 14:41:12 -0700 Subject: [PATCH 215/217] Improve handling for when bore depth or # bores (but not both) are defaulted. Simplify docs related to soil inputs. --- HPXMLtoOpenStudio/measure.xml | 8 +- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 55 +++++---- HPXMLtoOpenStudio/tests/test_hvac_sizing.rb | 6 +- docs/source/workflow_inputs.rst | 125 +++++++++++--------- 4 files changed, 106 insertions(+), 88 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 10e49c77e7..7193c22ae2 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - a7acda08-226c-404c-b64e-d9197023bebc - 2023-12-08T18:19:27Z + 779527cf-9f97-4b93-aa6a-c8c2dc92caff + 2023-12-08T21:26:22Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -346,7 +346,7 @@ hvac_sizing.rb rb resource - F6EFF176 + 192E58ED lighting.rb @@ -622,7 +622,7 @@ test_hvac_sizing.rb rb test - 716C37CA + 96372EB2 test_lighting.rb diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 41e5b4daa9..87fa244b52 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -1938,17 +1938,16 @@ def self.apply_hvac_ground_loop(runner, hvac_sizing_values, weather, hvac_coolin end num_bore_holes = geothermal_loop.num_bore_holes - if num_bore_holes.nil? - num_bore_holes = [1, (UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') + 0.5).floor].max - end + bore_depth = geothermal_loop.bore_length min_bore_depth = UnitConversions.convert(24.0, 'm', 'ft').round # based on g-function library # In NY the following is the depth that requires a mining permit, which has been a barrier for Dandelion Energy with installing GSHPs. # Sounds like people are pushing ever deeper but for now we can apply this limit and add a note about where it came from. max_bore_depth = 500 # ft + min_num_boreholes = 1 + max_num_boreholes = 10 - bore_depth = geothermal_loop.bore_length - if bore_depth.nil? + if num_bore_holes.nil? || bore_depth.nil? # Autosize ground loop heat exchanger length hvac_cooling_ap = hvac_cooling.additional_properties grout_conductivity = geothermal_loop.grout_conductivity @@ -1958,35 +1957,45 @@ def self.apply_hvac_ground_loop(runner, hvac_sizing_values, weather, hvac_coolin bore_length_cool = nom_length_cool * hvac_sizing_values.Cool_Capacity / UnitConversions.convert(1.0, 'ton', 'Btu/hr') bore_length = [bore_length_heat, bore_length_cool].max - # Divide length by number of boreholes for average bore depth - bore_depth = (bore_length / num_bore_holes).floor # ft - - active_length = 5 # the active length starts about 5 ft below the surface - for _i in 0..50 - if (bore_depth + active_length < min_bore_depth) || (num_bore_holes > 10) - num_bore_holes -= 1 - bore_depth = (bore_length / num_bore_holes).floor - elsif (bore_depth + active_length > max_bore_depth) - num_bore_holes += 1 - bore_depth = (bore_length / num_bore_holes).floor - end + if num_bore_holes.nil? && bore_depth.nil? + num_bore_holes = [min_num_boreholes, (UnitConversions.convert(hvac_sizing_values.Cool_Capacity, 'Btu/hr', 'ton') + 0.5).floor].max + + # Divide length by number of boreholes for average bore depth + bore_depth = (bore_length / num_bore_holes).floor # ft - if ((num_bore_holes == 1) && (bore_depth < min_bore_depth)) || ((num_bore_holes == 10) && (bore_depth > max_bore_depth)) - break # we can't do any better + # Adjust number of boreholes and bore depth to get within min/max constraints + for _i in 0..50 + if (bore_depth < min_bore_depth) || (num_bore_holes > max_num_boreholes) + num_bore_holes -= 1 + bore_depth = (bore_length / num_bore_holes).floor + elsif (bore_depth > max_bore_depth) || (num_bore_holes < min_num_boreholes) + num_bore_holes += 1 + bore_depth = (bore_length / num_bore_holes).floor + end + + if ((num_bore_holes == min_num_boreholes) && (bore_depth < min_bore_depth)) || ((num_bore_holes == max_num_boreholes) && (bore_depth > max_bore_depth)) + break # we can't do any better + end end + elsif num_bore_holes.nil? + # Calculate number of boreholes to achieve total autosized length + num_bore_holes = (bore_length / bore_depth).floor + num_bore_holes = [num_bore_holes, max_num_boreholes].min + num_bore_holes = [num_bore_holes, min_num_boreholes].max + elsif bore_depth.nil? + # Calculate bore depth to achieve total autosized length + bore_depth = (bore_length / num_bore_holes).floor # ft end - - bore_depth = (bore_length / num_bore_holes).floor + active_length end if bore_depth < min_bore_depth bore_depth = min_bore_depth - runner.registerWarning("Reached a minimum of 1 borehole; setting bore depth to the minimum (#{min_bore_depth} ft).") + runner.registerWarning("Reached a minimum of #{min_num_boreholes} borehole; setting bore depth to the minimum (#{min_bore_depth} ft).") end if bore_depth > max_bore_depth bore_depth = max_bore_depth - runner.registerWarning("Reached a maximum of 10 boreholes; setting bore depth to the maximum (#{max_bore_depth} ft).") + runner.registerWarning("Reached a maximum of #{max_num_boreholes} boreholes; setting bore depth to the maximum (#{max_bore_depth} ft).") end bore_config = geothermal_loop.bore_config diff --git a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb index 9af1531e09..79d816ceef 100644 --- a/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +++ b/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb @@ -477,7 +477,7 @@ def test_ground_loop XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) assert_equal(3, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(688.5 / 3 + 5.0, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) + assert_in_epsilon(688.5 / 3, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) # Bore depth greater than the max -> increase number of boreholes hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') @@ -485,7 +485,7 @@ def test_ground_loop XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) assert_equal(5, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(2062.9 / 5 + 5, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) + assert_in_epsilon(2062.9 / 5, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) # Bore depth greater than the max -> increase number of boreholes until the max, set depth to the max, and issue warning hpxml, hpxml_bldg = _create_hpxml('base-hvac-ground-to-air-heat-pump.xml') @@ -501,7 +501,7 @@ def test_ground_loop XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _model, _test_hpxml, test_hpxml_bldg = _test_measure(args_hash) assert_equal(10, test_hpxml_bldg.geothermal_loops[0].num_bore_holes) - assert_in_epsilon(3187.0 / 10 + 5, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) + assert_in_epsilon(3187.0 / 10, test_hpxml_bldg.geothermal_loops[0].bore_length, 0.01) end def test_g_function_library_linear_interpolation_example diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 567209d292..067305dbb8 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -441,54 +441,66 @@ Site information is entered in ``/HPXML/Building/BuildingDetails/BuildingSummary ================================ ======== =========== =========== ======== ======== ============================================================ ``SiteType`` string See [#]_ No suburban Terrain type for infiltration model ``ShieldingofHome`` string See [#]_ No normal Presence of nearby buildings, trees, obstructions for infiltration model - ``Soil`` element No Soil properties + ``Soil/SoilType`` string See [#]_ No unknown Soil type + ``Soil/MoistureType`` string See [#]_ No mixed Soil moisture type + ``Soil/Conductivity`` double Btu/hr-ft-F > 0 No See [#]_ Soil thermal conductivity + ``Soil/extension/Diffusivity`` double ft2/hr > 0 No See [#]_ Soil thermal diffusivity ``extension/Neighbors`` element No Presence of neighboring buildings for solar shading ================================ ======== =========== =========== ======== ======== ============================================================ .. [#] SiteType choices are "rural", "suburban", or "urban". .. [#] ShieldingofHome choices are "normal", "exposed", or "well-shielded". + .. [#] SoilType choices are "sand", "silt", "clay", "loam", "gravel", or "unknown". + .. [#] MoistureType choices are "dry", "wet", or "mixed". + .. [#] If Conductivity not provided, defaults to Diffusivity / 0.0208 if Diffusivity provided, otherwise defaults based on SoilType and MoistureType: -Soil information is entered in ``Soil``. + \- **unknown, dry/wet/mixed**: 1.0000 - ================================================================== ================ =========== =============== ======== ======== ============================================================ - Element Type Units Constraints Required Default Notes - ================================================================== ================ =========== =============== ======== ======== ============================================================ - ``Conductivity`` or ``SoilType``/``MoistureType`` string or double Btu/hr-ft-F See [#]_ or > 0 No unknown Themal conductivity [#]_ or soil/moisture type - ``extension/Diffusivity`` or ``SoilType``/``MoistureType`` string or double ft2/hr See or > 0 No mixed Thermal diffusivity [#]_ or soil/moisture type - ================================================================== ================ =========== =============== ======== ======== ============================================================ + \- **sand/gravel, dry**: 0.2311 - .. [#] SoilType choices are "sand", "silt", "clay", "loam", "gravel", or "unknown". - - \ MoistureType choices are "dry", "wet", or "mixed". + \- **sand, wet**: 1.3865 + + \- **sand, mixed**: 0.8088 + + \- **silt/clay, dry**: 0.2889 + + \- **silt/clay, wet**: 0.9821 + + \- **silt/clay, mixed**: 0.6355 + + \- **loam, dry/wet/mixed**: 1.2132 + + \- **gravel, wet**: 1.0399 + + \- **gravel, mixed**: 0.6355 + + .. [#] If Diffusivity not provided, defaults to Conductivity * 0.0208 if Conductivity provided, otherwise defaults based on SoilType and MoistureType: + + \- **unknown, dry/wet/mixed**: 0.0208 + + \- **sand/gravel, dry**: 0.0097 + + \- **sand, wet**: 0.0322 + + \- **sand, mixed**: 0.0210 + + \- **silt/clay, dry**: 0.0120 - .. [#] Conductivity used for foundation heat transfer and ground source heat pumps. - .. [#] Diffusivity used for ground source heat pumps. + \- **silt/clay, wet**: 0.0194 -If both Conductivity and extension/Diffusivity not provided, defaults based on SoilType and MoistureType as follows: + \- **silt/clay, mixed**: 0.0157 - ============ ============== ========================== ============= - SoilType MoistureType Conductivity [Btu/hr-ft-F] extension/Diffusivity [ft2/hr] - ============ ============== ========================== ============= - unknown dry/wet/mixed 1.0000 0.0208 - sand/gravel dry 0.2311 0.0097 - sand wet 1.3865 0.0322 - sand mixed 0.8088 0.0210 - silt/clay dry 0.2889 0.0120 - silt/clay wet 0.9821 0.0194 - silt/clay mixed 0.6355 0.0157 - loam dry/wet/mixed 1.2132 0.0353 - gravel wet 1.0399 0.0291 - gravel mixed 0.6355 0.0194 - ============ ============== ========================== ============= + \- **loam, dry/wet/mixed**: 0.0353 -If either Conductivity or extension/Diffusivity not provided, the 1.0/0.0208 relationship is preserved: + \- **gravel, wet**: 0.0291 -- Conductivity = extension/Diffusivity / 0.0208 -- extension/Diffusivity = Conductivity * 0.0208 + \- **gravel, mixed**: 0.0194 .. note:: - Default Conductivity and extension/Diffusivity values based on SoilType/MoistureType provided by Table 1 of `Ground Thermal Diffusivity Calculation by Direct Soil Temperature Measurement. Application to very Low Enthalpy Geothermal Energy Systems `_ (with the exception of "unknown"). + Default Conductivity and Diffusivity values based on SoilType/MoistureType provided by Table 1 of `Ground Thermal Diffusivity Calculation by Direct Soil Temperature Measurement. Application to very Low Enthalpy Geothermal Energy Systems `_ (with the exception of "unknown"). + Conductivity is used for foundation heat transfer and ground source heat pumps. + Diffusivity is used for ground source heat pumps. For each neighboring building defined, additional information is entered in a ``extension/Neighbors/NeighborBuilding``. @@ -2278,25 +2290,24 @@ HPXML Geothermal Loops Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/GeothermalLoop``. - ======================================== ================ =========== =============== ======== ============== =============================================== - Element Type Units Constraints Required Default Notes - ======================================== ================ =========== =============== ======== ============== =============================================== - ``SystemIdentifier`` id Yes Unique identifier - ``LoopConfiguration`` string vertical Yes - ``LoopFlow`` double gal/min > 0 No autosized [#]_ Water flow rate through the geothermal loop - ``BoreholesOrTrenches/Count`` integer >= 1, <= 10 No [#]_ autosized [#]_ - ``BoreholesOrTrenches/Length`` double ft See [#]_ No autosized [#]_ Length (i.e., average depth) of each borehole - ``BoreholesOrTrenches/Spacing`` double ft > 0 No 16.4 Distance between boreholes - ``BoreholesOrTrenches/Diameter`` double in > 0 No 5.0 - ``Grout/Type`` or ``Grout/Conductivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No standard Grout type or conductivity [#]_ - ``Pipe/Type`` or ``Pipe/Conductivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No standard Pipe type or conductivity [#]_ - ``Pipe/Diameter`` double in See [#]_ No 1.25 - ``Pipe/ShankSpacing`` double in > 0 No See [#]_ Center-to-center distance between two branches of a vertical U-tube - ``extension/BorefieldConfiguration`` string See [#]_ No Rectangle - ======================================== ================ =========== =============== ======== ============== =============================================== - - .. [#] LoopFlow autosized by calculating 3 times the maximum of the ground source heat pump's heating/cooling capacity in tons. - The LoopFlow minimum autosized value is 3 gal/min. + ======================================== ================ =========== ================== ======== ============== =============================================== + Element Type Units Constraints Required Default Notes + ======================================== ================ =========== ================== ======== ============== =============================================== + ``SystemIdentifier`` id Yes Unique identifier + ``LoopConfiguration`` string vertical Yes Geothermal loop configuration + ``LoopFlow`` double gal/min > 0 No See [#]_ Water flow rate through the geothermal loop + ``BoreholesOrTrenches/Count`` integer >= 1, <= 10 No [#]_ See [#]_ Number of boreholes + ``BoreholesOrTrenches/Length`` double ft >= 79, <= 500 [#]_ No See [#]_ Length (i.e., average depth) of each borehole + ``BoreholesOrTrenches/Spacing`` double ft > 0 No 16.4 Distance between boreholes + ``BoreholesOrTrenches/Diameter`` double in > 0 No 5.0 Borehole diameter + ``Grout/Type`` or ``Grout/Conductivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No standard Grout type or conductivity [#]_ + ``Pipe/Type`` or ``Pipe/Conductivity`` string or double Btu/hr-ft-F See [#]_ or > 0 No standard Pipe type or conductivity [#]_ + ``Pipe/Diameter`` double in See [#]_ No 1.25 Pipe diameter + ``Pipe/ShankSpacing`` double in > 0 No See [#]_ Center-to-center distance between two branches of a vertical U-tube + ``extension/BorefieldConfiguration`` string See [#]_ No Rectangle Configuration of boreholes + ======================================== ================ =========== ================== ======== ============== =============================================== + + .. [#] LoopFlow autosized by calculating 3 times the maximum of the ground source heat pump's heating/cooling capacity in tons, with a minimum of 3 gal/min. .. [#] If extension/BorefieldConfiguration provided, and it is not **Rectangle**, a valid BoreholesOrTrenches/Count must also be provided: \- **Rectangle**: 1, 2, 3, 4, 5, 6, 7, 8, 9, or 10 @@ -2311,12 +2322,10 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ \- **Lopsided U**: 6, 7, 8, 9, or 10 - .. [#] BoreholesOrTrenches/Count autosized by assuming 1 for every ton of ground source heat pump cooling capacity (max of 10). - .. [#] BoreholesOrTrenches/Length must be between 79.0 ft and 500.0 ft. - To permit interpolation, each borefield configuration in the library has g-function values corresponding to heights of 24, 48, 96, 192, and 384 m. - BoreholesOrTrenches/Length therefore has a minimum of 24 m (or 79 ft) to avoid extrapolation. - BoreholesOrTrenches/Length, on the other hand, has a maximum of 500 ft; bore depths exceeding this value are unlikely to be used in residential applications. - .. [#] BoreholesOrTrenches/Length autosized based on the required total length of the ground heat exchanger (calculated during sizing) and the total number of boreholes, with the total length evenly distributed across each borehole. + .. [#] BoreholesOrTrenches/Count calculated as the required total length of the ground heat exchanger (calculated during sizing) divided by BoreholesOrTrenches/Length if BoreholesOrTrenches/Length is provided, otherwise autosized by assuming 1 for every ton of ground source heat pump cooling capacity (max of 10). + .. [#] 79 ft is the minimum depth in the g-function library. + 500 ft is the maximum realistic depth to be used in residential applications. + .. [#] BoreholesOrTrenches/Length calculated as the required total length of the ground heat exchanger (calculated during sizing) divided by the total number of boreholes. .. [#] Grout/Type choices are "standard" or "thermally enhanced". .. [#] If Grout/Conductivity not provided, defaults based on Grout/Type: @@ -2331,7 +2340,7 @@ Each geothermal loop is entered as an ``/HPXML/Building/BuildingDetails/Systems/ \- **thermally enhanced**: 0.40 Btu/hr-ft-F - .. [#] Pipe diameter must be either 3/4", 1", or 1-1/4" (i.e, 0.75, 1.0, or 1.25). + .. [#] Pipe diameter must be either 0.75, 1.0, or 1.25. .. [#] ShankSpacing defaults to sum of U-tube spacing (assumed to be 0.9661 in) and pipe outer diameter, where pipe outer diameter is assumed to be: \- **0.75 in pipe**: 1.050 in From 1f78126a8b26f2fa249892f80aa6b22da04a8df8 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 8 Dec 2023 14:50:49 -0700 Subject: [PATCH 216/217] Move Changelog items to v1.8 [ci skip] --- Changelog.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Changelog.md b/Changelog.md index 2131f6a9fd..8f7a65681d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,13 @@ ## OpenStudio-HPXML v1.8.0 __New Features__ +- Replaces `BuildingSummary/Site/extension/GroundConductivity` with `BuildingSummary/Site/Soil/Conductivity`. +- Ground source heat pump enhancements: + - Allows optional detailed inputs related to geothermal loop (`HVACPlant/GeothermalLoop`). + - Allows optional ground diffusivity input. + - Updates to using G-Functions from the [G-Function Library for Modeling Vertical Bore Ground Heat Exchanger](https://gdr.openei.org/submissions/1325). +- BuildResidentialHPXML measure: + - Add soil and moisture type arguments (for determining ground conductivity and diffusivity) and optional geothermal loop arguments for ground source heat pumps. - Adds more error-checking for inappropriate inputs (e.g., HVAC SHR=0 or clothes washer IMEF=0). __Bugfixes__ @@ -15,7 +22,6 @@ __New Features__ - Replaces "living space" with "conditioned space", which better represents what is modeled. - Replaces `HotTubs/HotTub` with `Spas/PermanentSpa`. - Replaces `PortableHeater` and `FixedHeater` with `SpaceHeater`. - - Replaces `BuildingSummary/Site/extension/GroundConductivity` with `BuildingSummary/Site/Soil/Conductivity`. - Allows simulating whole multifamily (MF) buildings in a single combined simulation: - **Breaking change**: Multiple elements move from `SoftwareInfo/extension` to `BuildingDetails/BuildingSummary/extension` to allow variation across units: - `HVACSizingControl` @@ -38,7 +44,6 @@ __New Features__ - Allow duct area fractions (as an alternative to duct areas in ft^2). - Allow duct locations to be provided while defaulting duct areas (i.e., without providing duct area/fraction inputs). - Add generic "attic" and "crawlspace" location choices for supply/return ducts, water heater, and battery. - - Add soil and moisture type arguments (for determining ground conductivity and diffusivity) and optional geothermal loop arguments for ground source heat pumps. - Always validate the HPXML file before applying defaults and only optionally validate the final HPXML file. - Adds manufactured home belly as a foundation type and allows modeling ducts in a manufactured home belly. - Battery losses now split between charging and discharging. @@ -47,10 +52,6 @@ __New Features__ - Allows above-grade basements/crawlspaces defined solely with Wall (not FoundationWall) elements. - Updates to 2022 EIA energy costs. - Added README.md documentation for all OpenStudio measures. -- Ground source heat pump enhancements: - - Allows optional detailed inputs related to geothermal loop (`HVACPlant/GeothermalLoop`). - - Allows optional ground diffusivity input. - - Updates to using G-Functions from the [G-Function Library for Modeling Vertical Bore Ground Heat Exchanger](https://gdr.openei.org/submissions/1325). __Bugfixes__ - Fixes battery resilience output to properly incorporate battery losses. From 7347e1efb4293e502b64182335bbed32aea79cd4 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 8 Dec 2023 22:21:49 +0000 Subject: [PATCH 217/217] Latest results. --- .../base_results/results_workflow_simulations1.csv | 14 +++++++------- .../results_workflow_simulations1_bills.csv | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/workflow/tests/base_results/results_workflow_simulations1.csv b/workflow/tests/base_results/results_workflow_simulations1.csv index e94a70d07c..0d1ad6e5c2 100644 --- a/workflow/tests/base_results/results_workflow_simulations1.csv +++ b/workflow/tests/base_results/results_workflow_simulations1.csv @@ -42,7 +42,7 @@ base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,26.97,26.97,26.97,26.97,0 base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,31.309,31.309,31.309,31.309,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.758,0.935,9.535,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,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1991.4,3070.5,3070.5,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,27.283,27.283,27.283,27.283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.731,0.935,9.535,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,0.0,0.0,10.386,9.374,0.584,0.0,0.0,0.0,10.0,1724.1,2162.9,2162.9,0.0,8.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.008,-1.068,0.0,0.0,-0.049,-1.148,5.527,0.0,0.0,-0.004,0.0,-0.343,-0.514,-1.338,-0.381,0.0,1.247,7.349,1.24,1354.8,997.6,11171.6,3093.4,0.0,0.0,8994.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,7961.0,910.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-generator.xml,40.97,34.146,26.175,19.35,0.629,0.0,14.167,0.0,0.0,0.0,0.0,0.005,0.0,0.0,3.012,0.548,9.527,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,-6.824,0.0,0.629,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.581,0.0,9.236,9.374,0.576,0.0,0.0,0.0,0.0,1655.4,2001.6,2001.6,3.449,7.707,0.0,-0.016,2.473,0.0,0.0,0.424,3.936,-2.551,0.0,0.0,-0.012,0.0,-0.395,1.279,0.0,0.677,0.0,0.0,-4.566,-0.771,0.0,-0.011,-1.11,0.0,0.0,-0.044,-1.142,5.651,0.0,0.0,-0.007,0.0,-0.385,-0.518,-1.333,-0.392,0.0,0.0,7.4,1.256,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.228,28.228,28.228,28.228,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.254,0.0,0.0,2.251,2.96,9.527,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,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,0.0,1716.6,1944.1,1944.1,3.449,7.707,0.0,-0.016,2.483,0.0,0.0,0.426,3.954,-2.567,0.0,0.0,-0.012,0.0,-0.391,1.284,0.0,0.681,0.0,0.0,-4.595,-0.776,0.0,-0.011,-1.1,0.0,0.0,-0.042,-1.124,5.636,0.0,0.0,-0.007,0.0,-0.381,-0.513,-1.333,-0.388,0.0,0.0,7.371,1.25,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.233,28.233,28.233,28.233,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.254,0.0,0.0,2.256,2.96,9.527,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,0.581,0.0,9.235,9.374,0.576,0.0,0.0,0.0,0.0,1716.6,1945.8,1945.8,3.449,7.707,0.0,-0.016,2.483,0.0,0.0,0.426,3.954,-2.567,0.0,0.0,-0.012,0.0,-0.391,1.284,0.0,0.681,0.0,0.0,-4.595,-0.776,0.0,-0.011,-1.1,0.0,0.0,-0.042,-1.124,5.636,0.0,0.0,-0.007,0.0,-0.381,-0.513,-1.333,-0.388,0.0,0.0,7.371,1.25,1354.8,997.6,11171.5,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,31.695,31.695,16.716,16.716,14.979,0.0,0.0,0.0,0.0,0.0,0.0,0.004,0.0,0.0,3.066,0.563,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.0,0.572,0.0,14.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.527,0.0,9.528,9.374,2.261,0.0,0.0,0.0,0.0,1020.3,1539.8,1539.8,3.498,7.734,0.0,-0.017,2.437,0.0,0.0,0.425,3.915,-2.473,0.0,0.0,-0.013,0.0,-0.417,2.025,0.0,0.0,0.0,0.0,-4.705,-0.753,0.0,-0.012,-1.156,0.0,0.0,-0.045,-1.18,5.73,0.0,0.0,-0.007,0.0,-0.407,-0.941,-1.35,0.0,0.0,0.0,7.748,1.273,1354.8,997.6,11171.8,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-laundry-room.xml,29.58,29.58,16.526,16.526,13.054,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,2.915,0.523,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.0,0.742,0.0,12.313,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,8.806,9.374,0.568,0.0,0.0,0.0,0.0,1011.4,1528.4,1528.4,3.655,7.615,0.0,-0.017,2.498,0.0,0.0,0.426,3.976,-2.663,0.0,0.0,-0.014,0.0,-0.395,2.062,0.0,0.0,0.0,0.0,-4.478,-0.8,0.0,-0.012,-1.052,0.0,0.0,-0.036,-1.051,5.54,0.0,0.0,-0.009,0.0,-0.386,-0.862,-1.313,0.0,0.0,0.0,6.883,1.227,1354.8,997.6,11171.7,3093.4,0.0,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,7051.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,3320.0,520.0,0.0,-280.0,800.0 base-bldgtype-mf-unit-shared-mechvent-multiple.xml,50.689,50.689,30.64,30.64,20.049,0.0,0.0,0.0,0.0,0.0,0.0,0.057,0.0,0.0,2.791,0.303,9.565,0.0,0.0,2.026,0.0,0.206,3.73,0.946,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,0.0,7.888,0.0,0.0,0.0,0.0,12.161,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.308,0.0,5.091,9.374,0.615,0.0,0.0,0.0,0.0,1867.2,2259.4,2259.4,7.584,8.979,0.0,-0.017,2.791,0.0,0.0,0.407,4.196,-4.234,0.0,0.0,-0.021,0.0,-0.264,0.076,0.0,12.34,0.0,0.0,-6.693,-1.194,0.0,-0.013,-0.143,0.0,0.0,0.06,0.126,3.968,0.0,0.0,-0.017,0.0,-0.258,-0.006,-0.698,-4.225,0.0,0.0,5.312,0.832,1354.8,997.6,11171.5,3093.4,0.0,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,7972.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,3320.0,0.0,0.0,0.0,0.0 @@ -59,7 +59,7 @@ base-bldgtype-sfa-unit.xml,42.239,42.239,29.828,29.828,12.411,0.0,0.0,0.0,0.0,0. base-dhw-combi-tankless-outside.xml,51.079,51.079,21.423,21.423,29.656,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,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,0.0,19.363,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.322,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1375.5,1017.3,1375.5,16.511,0.0,0.0,3.746,3.646,0.513,7.505,0.631,10.104,-12.69,0.0,0.0,0.0,8.142,-0.067,4.808,0.0,0.73,0.0,0.0,-8.575,-2.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,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,52.277,52.277,21.432,21.432,30.845,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.551,0.0,10.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,0.0,0.0,9.177,0.0,0.0,0.0,0.0,0.0,1376.9,1017.3,1376.9,17.068,0.0,0.0,3.743,3.642,0.513,7.499,0.631,10.099,-12.691,0.0,0.0,0.0,8.145,-0.067,5.887,0.0,0.729,0.0,0.0,-8.581,-2.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,1070.1,777.1,8412.0,1930.3,0.0,36000.0,0.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,32.031,32.031,32.031,32.031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.255,0.74,6.76,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.208,9.074,0.661,2.903,0.0,0.0,0.0,2067.2,2821.5,2821.5,0.0,19.702,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.093,-0.469,-0.052,2.672,-0.032,-1.448,11.85,0.0,0.0,0.0,-6.916,-0.064,-1.192,-3.046,-0.166,0.0,3.688,8.629,2.036,1354.8,997.6,11181.6,2565.8,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,37.404,37.404,37.404,37.404,0.0,0.0,0.0,0.0,0.0,0.0,4.986,0.473,0.0,0.0,3.174,0.959,6.537,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.705,0.0,13.999,9.074,0.613,2.952,0.0,0.0,0.0,3239.2,2348.2,3239.2,21.51,16.441,0.0,3.605,3.642,0.513,7.524,0.63,10.096,-12.683,0.0,0.0,0.0,8.307,-0.064,4.805,0.0,0.729,0.0,3.355,-8.59,-2.499,0.0,-0.01,-0.463,-0.052,2.69,-0.026,-1.403,11.73,0.0,0.0,0.0,-6.345,-0.06,-1.169,-3.129,-0.165,0.0,2.098,8.505,2.01,1354.8,997.6,11185.4,2566.7,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,37.42,37.42,37.42,37.42,0.0,0.0,0.0,0.0,0.0,0.0,4.992,0.473,0.0,0.0,3.182,0.96,6.536,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.708,0.0,14.0,9.074,0.613,2.953,0.0,0.0,0.0,3242.0,2353.6,3242.0,21.526,16.446,0.0,3.605,3.642,0.513,7.524,0.63,10.096,-12.683,0.0,0.0,0.0,8.307,-0.064,4.805,0.0,0.729,0.0,3.358,-8.59,-2.499,0.0,-0.01,-0.463,-0.052,2.69,-0.026,-1.403,11.73,0.0,0.0,0.0,-6.345,-0.06,-1.169,-3.129,-0.165,0.0,2.099,8.505,2.01,1354.8,997.6,11185.2,2566.7,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-hpwh.xml,56.35,56.35,29.683,29.683,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.44,0.0,0.0,4.46,0.854,2.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,26.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.972,0.0,14.893,9.085,1.809,3.024,0.0,0.0,0.0,1884.0,3131.6,3131.6,25.892,19.515,0.0,3.522,3.634,0.511,7.504,0.628,10.066,-12.724,0.0,0.0,0.0,8.331,-0.052,4.794,0.0,0.727,0.0,5.64,-5.456,-2.509,0.0,-0.019,-0.422,-0.046,2.83,-0.015,-1.277,11.689,0.0,0.0,0.0,-6.115,-0.048,-1.121,-2.944,-0.156,0.0,3.19,7.659,2.001,1354.7,997.5,11162.8,2561.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-tankless.xml,33.66,33.66,33.66,33.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.458,1.184,6.742,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.585,9.08,0.0,2.936,0.0,0.0,0.0,1932.8,3243.5,3243.5,0.0,19.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.068,-0.464,-0.051,2.687,-0.03,-1.43,11.85,0.0,0.0,0.0,-6.908,-0.064,-1.186,-3.017,-0.165,0.0,3.23,8.361,2.036,1354.8,997.6,11131.9,2554.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-var-speed.xml,31.142,31.142,31.142,31.142,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.826,0.295,6.744,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.992,9.074,0.661,2.927,0.0,0.0,0.0,2066.9,2630.1,2630.1,0.0,19.354,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.134,-0.469,-0.052,2.673,-0.032,-1.447,11.85,0.0,0.0,0.0,-6.915,-0.064,-1.192,-3.051,-0.166,0.0,4.519,8.636,2.036,1354.8,997.6,11184.2,2566.4,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -229,10 +229,10 @@ base-hvac-furnace-oil-only.xml,53.489,53.489,30.857,30.857,0.0,22.632,0.0,0.0,0. base-hvac-furnace-propane-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,22.632,0.0,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,53.489,53.489,30.857,30.857,0.0,0.0,0.0,22.632,0.0,0.0,0.0,0.588,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.41,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2123.2,1622.9,2123.2,24.046,0.0,0.0,3.534,3.648,0.513,7.513,0.632,10.111,-12.683,0.0,0.0,0.0,8.147,-0.067,4.809,0.0,0.73,0.0,5.572,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-furnace-x3-dse.xml,58.355,58.355,36.777,36.777,21.578,0.0,0.0,0.0,0.0,0.0,0.0,0.386,0.0,0.0,5.156,0.942,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,16.339,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2105.4,2603.4,2603.4,16.604,11.921,0.0,3.778,3.677,0.518,7.599,0.636,10.197,-12.796,0.0,0.0,0.0,8.381,-0.067,4.854,0.0,0.737,0.0,0.0,-8.991,-2.523,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.165,34.165,34.165,34.165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.009,0.819,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.01,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2810.0,2810.0,0.0,15.916,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.027,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.079,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,34.177,34.177,34.177,34.177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.02,0.82,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.012,9.075,0.661,0.0,0.0,0.0,0.0,2020.7,2815.0,2815.0,0.0,15.921,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.027,-0.472,-0.052,2.665,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.919,-0.064,-1.194,-3.019,-0.167,0.0,2.08,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml,40.301,40.301,40.301,40.301,0.0,0.0,0.0,0.0,0.0,0.0,5.703,0.53,0.0,0.0,2.854,0.921,9.017,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.221,0.0,13.766,9.075,0.615,0.0,0.0,0.0,0.0,3273.8,2729.7,3273.8,22.592,15.972,0.0,3.554,3.603,0.507,7.842,0.622,9.991,-12.705,0.0,0.0,0.0,11.652,-0.065,4.798,0.0,0.727,0.0,3.785,-8.928,-2.504,0.0,0.003,-0.452,-0.05,3.121,-0.022,-1.361,11.708,0.0,0.0,0.0,-6.399,-0.062,-1.155,-3.088,-0.163,0.0,2.043,7.85,2.005,1354.8,997.6,11171.5,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31565.0,7516.0,7508.0,0.0,575.0,7249.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,35.976,35.976,35.976,35.976,0.0,0.0,0.0,0.0,0.0,0.0,4.982,0.725,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3362.0,1621.9,3362.0,22.178,0.0,0.0,3.592,3.648,0.513,7.511,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.895,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,39.61,39.61,39.61,39.61,0.0,0.0,0.0,0.0,0.0,0.0,4.898,0.464,0.0,0.0,3.043,0.913,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.363,0.0,13.3,9.075,0.614,0.0,0.0,0.0,0.0,3262.5,2703.7,3262.5,21.397,16.061,0.0,3.608,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.302,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.028,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,35.98,35.98,35.98,35.98,0.0,0.0,0.0,0.0,0.0,0.0,4.986,0.726,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.782,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,3364.0,1621.9,3364.0,22.187,0.0,0.0,3.592,3.648,0.513,7.511,0.632,10.113,-12.683,0.0,0.0,0.0,8.146,-0.069,4.809,0.0,0.73,0.0,3.897,-8.906,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,39.627,39.627,39.627,39.627,0.0,0.0,0.0,0.0,0.0,0.0,4.903,0.465,0.0,0.0,3.053,0.914,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.367,0.0,13.301,9.075,0.614,0.0,0.0,0.0,0.0,3265.4,2707.6,3265.4,21.413,16.066,0.0,3.608,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.729,0.0,3.305,-8.906,-2.499,0.0,-0.007,-0.465,-0.052,2.684,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.35,-0.061,-1.17,-3.104,-0.166,0.0,2.029,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.624,48.624,48.624,48.624,0.0,0.0,0.0,0.0,0.0,0.0,12.08,0.691,0.618,0.019,4.225,0.698,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,0.638,13.847,9.075,0.614,0.0,0.0,0.0,0.0,7101.3,3502.4,7101.3,24.716,17.398,0.0,3.475,3.645,0.513,7.531,0.631,10.105,-12.683,0.0,0.0,0.0,8.318,-0.065,4.807,0.0,0.729,0.0,6.943,-8.906,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.592,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.109,44.109,44.109,44.109,0.0,0.0,0.0,0.0,0.0,0.0,9.216,0.568,0.555,0.017,2.885,0.576,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.109,0.573,14.194,9.075,0.614,0.0,0.0,0.0,0.0,7082.4,3118.0,7082.4,24.712,18.774,0.0,3.428,3.646,0.513,7.533,0.631,10.106,-12.683,0.0,0.0,0.0,8.32,-0.065,4.808,0.0,0.729,0.0,8.186,-8.906,-2.499,0.0,-0.045,-0.464,-0.052,2.684,-0.026,-1.406,11.73,0.0,0.0,0.0,-6.349,-0.061,-1.17,-3.106,-0.166,0.0,2.944,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,45.743,45.743,45.743,45.743,0.0,0.0,0.0,0.0,0.0,0.0,10.976,0.524,0.312,0.01,3.456,0.173,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.437,0.321,15.438,9.075,0.614,0.0,0.0,0.0,0.0,7073.3,4237.7,7073.3,24.71,18.727,0.0,3.34,3.648,0.513,7.536,0.631,10.103,-12.695,0.0,0.0,0.0,8.327,-0.061,4.807,0.0,0.729,0.0,10.604,-8.908,-2.5,0.0,-0.101,-0.462,-0.052,2.688,-0.026,-1.408,11.718,0.0,0.0,0.0,-6.341,-0.057,-1.171,-3.111,-0.165,0.0,4.252,7.87,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -241,7 +241,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.079,60.079,36.64 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,58.565,58.565,35.126,35.126,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.902,0.65,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,15.757,9.075,0.614,0.0,0.0,0.0,3.0,2098.9,3203.2,3203.2,24.074,18.898,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.116,-0.464,-0.052,2.686,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.349,-0.059,-1.172,-3.109,-0.166,0.0,4.538,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,57.797,57.797,34.358,34.358,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.282,0.0,0.0,3.404,0.381,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.439,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.843,0.0,16.486,9.075,0.614,0.0,0.0,0.0,0.0,2098.9,3154.3,3154.3,24.074,19.166,0.0,3.52,3.645,0.513,7.53,0.631,10.099,-12.683,0.0,0.0,0.0,8.314,-0.063,4.806,0.0,0.729,0.0,5.856,-8.903,-2.499,0.0,-0.157,-0.464,-0.052,2.687,-0.026,-1.408,11.73,0.0,0.0,0.0,-6.348,-0.059,-1.172,-3.116,-0.166,0.0,5.323,7.875,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,54.843,54.843,30.726,30.726,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.457,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.117,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.643,0.0,0.0,9.075,0.588,0.0,0.0,0.0,0.0,2091.6,1623.6,2091.6,25.358,0.0,0.0,3.488,3.648,0.513,7.514,0.632,10.112,-12.683,0.0,0.0,0.0,8.148,-0.067,4.809,0.0,0.73,0.0,6.844,-8.905,-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,1354.8,997.6,11171.6,2563.5,0.0,36000.0,0.0,0.0,6.8,91.76,32235.0,8595.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.642,41.642,41.642,41.642,0.0,0.0,0.0,0.0,0.0,0.0,6.341,0.475,0.0,0.0,3.666,0.868,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.346,0.0,13.857,9.075,0.614,0.0,0.0,0.0,0.0,3507.5,2906.8,3507.5,22.473,17.233,0.0,3.575,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.312,-0.064,4.807,0.0,0.729,0.0,4.311,-8.905,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.106,-0.166,0.0,2.599,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.662,41.662,41.662,41.662,0.0,0.0,0.0,0.0,0.0,0.0,6.348,0.476,0.0,0.0,3.677,0.869,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.35,0.0,13.858,9.075,0.614,0.0,0.0,0.0,0.0,3510.7,2912.2,3510.7,22.49,17.239,0.0,3.575,3.645,0.513,7.529,0.631,10.1,-12.683,0.0,0.0,0.0,8.312,-0.064,4.807,0.0,0.729,0.0,4.315,-8.905,-2.499,0.0,-0.031,-0.464,-0.052,2.684,-0.026,-1.409,11.73,0.0,0.0,0.0,-6.351,-0.06,-1.171,-3.106,-0.166,0.0,2.6,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,31147.0,7507.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,18787.0,5329.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.87,33.87,33.87,33.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.336,0.198,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.742,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2953.2,2953.2,0.0,14.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.018,-0.472,-0.052,2.664,-0.032,-1.455,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.021,-0.167,0.0,1.83,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,41.386,41.386,41.386,41.386,0.0,0.0,0.0,0.0,0.0,0.0,8.076,0.201,0.121,0.005,2.597,0.095,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.44,0.126,12.616,9.075,0.614,0.0,0.0,0.0,0.0,4873.7,2791.1,4873.7,19.228,14.111,0.0,3.607,3.644,0.513,7.528,0.631,10.102,-12.683,0.0,0.0,0.0,8.312,-0.065,4.807,0.0,0.73,0.0,3.387,-8.906,-2.499,0.0,0.019,-0.465,-0.052,2.683,-0.026,-1.407,11.73,0.0,0.0,0.0,-6.351,-0.061,-1.17,-3.103,-0.166,0.0,1.346,7.871,2.01,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,36000.0,6.8,91.76,26181.0,2541.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,33.207,33.207,33.207,33.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.8,0.07,9.061,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.473,9.075,0.661,0.0,0.0,0.0,0.0,2070.7,2570.0,2570.0,0.0,13.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.005,-0.472,-0.052,2.664,-0.032,-1.456,11.85,0.0,0.0,0.0,-6.92,-0.064,-1.194,-3.019,-0.167,0.0,1.548,8.007,2.036,1354.8,997.6,11171.5,2563.5,0.0,0.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,15306.0,1848.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 @@ -258,7 +258,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,48.473,48.473,36.218,36 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,38.968,38.968,38.968,38.968,0.0,0.0,0.0,0.0,0.0,0.0,6.705,0.036,0.0,0.0,1.932,0.003,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.293,9.075,0.614,0.0,0.0,0.0,0.0,3979.6,2668.3,3979.6,16.439,11.917,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,38.212,38.212,38.212,38.212,0.0,0.0,0.0,0.0,0.0,0.0,5.664,0.051,0.0,0.0,2.199,0.006,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3660.8,2367.3,3660.8,16.439,11.917,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,38.212,38.212,38.212,38.212,0.0,0.0,0.0,0.0,0.0,0.0,5.664,0.051,0.0,0.0,2.199,0.006,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.294,9.075,0.614,0.0,0.0,0.0,0.0,3660.8,2367.3,3660.8,16.439,11.917,0.0,3.742,3.642,0.513,7.524,0.631,10.099,-12.677,0.0,0.0,0.0,8.302,-0.066,4.807,0.0,0.73,0.0,0.0,-8.905,-2.499,0.0,0.034,-0.465,-0.052,2.683,-0.026,-1.407,11.737,0.0,0.0,0.0,-6.354,-0.062,-1.171,-3.096,-0.166,0.0,0.0,7.873,2.011,1354.8,997.6,11171.6,2563.5,0.0,36000.0,36000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,66.036,66.036,51.917,51.917,7.0,3.52,3.598,0.0,0.0,0.0,13.453,0.837,0.212,0.009,6.557,0.557,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.52,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,31.992,0.221,19.493,9.075,0.614,0.0,0.0,0.0,14.0,6423.2,4027.7,6423.2,37.372,22.552,0.0,3.43,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.887,0.0,0.728,0.0,15.018,-8.914,-2.501,0.0,-0.136,-0.456,-0.051,2.714,-0.024,-1.381,11.717,0.0,0.0,0.0,-6.301,-0.058,-1.436,-3.09,-0.164,0.0,8.41,7.863,2.008,1354.8,997.6,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,36744.0,13104.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23818.0,10360.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,66.063,66.063,51.94,51.94,7.002,3.521,3.6,0.0,0.0,0.0,13.46,0.838,0.212,0.009,6.571,0.558,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,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.002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.521,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.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,32.007,0.221,19.494,9.075,0.614,0.0,0.0,0.0,14.0,6440.2,4030.1,6440.2,37.46,22.524,0.0,3.43,3.644,0.513,7.527,0.631,10.097,-12.695,0.0,0.0,0.0,8.325,-0.062,5.887,0.0,0.728,0.0,15.033,-8.914,-2.501,0.0,-0.136,-0.456,-0.051,2.714,-0.024,-1.381,11.717,0.0,0.0,0.0,-6.301,-0.058,-1.436,-3.09,-0.164,0.0,8.412,7.863,2.008,1354.8,997.6,11171.6,2563.5,0.0,59200.0,36799.2,10236.0,6.8,91.76,36744.0,13104.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,23818.0,10360.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,19.67,19.67,19.67,19.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,4.539,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,0.0,0.0,4.497,0.33,0.0,0.0,0.0,0.0,1280.4,1085.1,1280.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,1354.8,997.6,8369.8,2062.4,0.0,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,13002.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,3320.0,1252.0,0.0,452.0,800.0 base-hvac-ptac-with-heating-electricity.xml,50.851,50.851,50.851,50.851,0.0,0.0,0.0,0.0,0.0,0.0,16.19,0.0,0.0,0.0,4.369,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,5913.9,2889.3,5913.9,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-natural-gas.xml,54.899,54.899,34.661,34.661,20.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.369,0.0,9.016,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,16.177,0.0,11.294,9.075,0.614,0.0,0.0,0.0,0.0,2019.7,2889.3,2889.3,16.439,11.921,0.0,3.741,3.641,0.512,7.524,0.63,10.096,-12.669,0.0,0.0,0.0,8.298,-0.066,4.806,0.0,0.729,0.0,0.0,-8.902,-2.498,0.0,0.032,-0.467,-0.052,2.683,-0.027,-1.409,11.744,0.0,0.0,0.0,-6.357,-0.063,-1.172,-3.096,-0.166,0.0,0.0,7.876,2.012,1354.8,997.6,11171.6,2563.5,0.0,36000.0,24000.0,0.0,6.8,91.76,23640.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1949.0,2171.0,4597.0,13458.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,3320.0,0.0,0.0,0.0,0.0 diff --git a/workflow/tests/base_results/results_workflow_simulations1_bills.csv b/workflow/tests/base_results/results_workflow_simulations1_bills.csv index f3ca8f92a3..25b22f5f82 100644 --- a/workflow/tests/base_results/results_workflow_simulations1_bills.csv +++ b/workflow/tests/base_results/results_workflow_simulations1_bills.csv @@ -42,7 +42,7 @@ base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,1133.79,144.0,989.79,0.0, base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1293.07,144.0,1149.07,0.0,1293.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,1145.29,144.0,1001.29,0.0,1145.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-generator.xml,1639.83,144.0,960.62,0.0,1104.62,144.0,6.66,150.66,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1179.97,144.0,1035.97,0.0,1179.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1180.17,144.0,1036.17,0.0,1180.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 base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1060.16,144.0,613.48,0.0,757.48,144.0,158.68,302.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-laundry-room.xml,1032.79,144.0,606.5,0.0,750.5,144.0,138.29,282.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1624.9,144.0,1124.51,0.0,1268.51,144.0,212.39,356.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 @@ -59,7 +59,7 @@ base-bldgtype-sfa-unit.xml,1514.18,144.0,1094.71,0.0,1238.71,144.0,131.47,275.47 base-dhw-combi-tankless-outside.xml,1388.39,144.0,786.23,0.0,930.23,144.0,314.16,458.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-combi-tankless.xml,1401.33,144.0,786.58,0.0,930.58,144.0,326.75,470.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-2-speed.xml,1319.56,144.0,1175.56,0.0,1319.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 -base-dhw-desuperheater-gshp.xml,1516.74,144.0,1372.74,0.0,1516.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,1517.32,144.0,1373.32,0.0,1517.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-hpwh.xml,1659.88,144.0,1089.39,0.0,1233.39,144.0,282.49,426.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-tankless.xml,1379.35,144.0,1235.35,0.0,1379.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-dhw-desuperheater-var-speed.xml,1286.91,144.0,1142.91,0.0,1286.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 @@ -229,10 +229,10 @@ base-hvac-furnace-oil-only.xml,2068.01,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0 base-hvac-furnace-propane-only.xml,1890.8,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,614.34,614.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-wood-only.xml,1615.94,144.0,1132.46,0.0,1276.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.48,339.48,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 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1397.87,144.0,1253.87,0.0,1397.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 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1398.3,144.0,1254.3,0.0,1398.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml,1623.06,144.0,1479.06,0.0,1623.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 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1464.34,144.0,1320.34,0.0,1464.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,1597.72,144.0,1453.72,0.0,1597.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1464.49,144.0,1320.49,0.0,1464.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,1598.32,144.0,1454.32,0.0,1598.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1928.51,144.0,1784.51,0.0,1928.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 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1762.82,144.0,1618.82,0.0,1762.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1822.8,144.0,1678.8,0.0,1822.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 @@ -241,7 +241,7 @@ base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1881.0,144.0,1344.7 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1825.44,144.0,1289.14,0.0,1433.14,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1797.25,144.0,1260.95,0.0,1404.95,144.0,248.3,392.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-only.xml,1671.13,144.0,1127.65,0.0,1271.65,144.0,255.48,399.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,1672.29,144.0,1528.29,0.0,1672.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1673.02,144.0,1529.02,0.0,1673.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 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1387.05,144.0,1243.05,0.0,1387.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1662.89,144.0,1518.89,0.0,1662.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 base-hvac-mini-split-air-conditioner-only-ducted.xml,1362.71,144.0,1218.71,0.0,1362.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 @@ -258,7 +258,7 @@ base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1901.83,144.0,1329.22,0 base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1574.13,144.0,1430.13,0.0,1574.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1546.39,144.0,1402.39,0.0,1546.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,1546.39,144.0,1402.39,0.0,1546.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-multiple.xml,2488.31,144.0,1905.37,0.0,2049.37,144.0,74.15,218.15,0.0,123.11,123.11,0.0,97.68,97.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,2489.26,144.0,1906.22,0.0,2050.22,144.0,74.18,218.18,0.0,123.15,123.15,0.0,97.71,97.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-none.xml,2513.83,144.0,2369.83,0.0,2513.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-electricity.xml,2010.26,144.0,1866.26,0.0,2010.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 base-hvac-ptac-with-heating-natural-gas.xml,1774.46,144.0,1272.07,0.0,1416.07,144.0,214.39,358.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